:root {
  --ink: #07060a;
  --ink-soft: #0d0a12;
  --panel: #121018;
  --panel-light: #1a1622;
  --line: rgba(255,255,255,.10);
  --line-strong: rgba(255,255,255,.18);
  --text: #f7f4fb;
  --muted: #aaa3b4;
  --purple: #b86cff;
  --purple-soft: #d8b4fe;
  --pink: #fb7185;
  --mint: #b9fbc0;
  --nav-height: 88px;
  --shadow: 0 30px 80px rgba(0,0,0,.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  background: radial-gradient(circle at 15% 0%, rgba(161,84,255,.09), transparent 30rem), var(--ink);
}
body.menu-open { overflow: hidden; }
::selection { color: #09060d; background: var(--purple); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #060509; }
::-webkit-scrollbar-thumb { border-radius: 20px; background: #352443; }
::-webkit-scrollbar-thumb:hover { background: var(--purple); }
a, button { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 100;
  padding: 10px 16px; border-radius: 8px;
  color: #000; background: #fff; font-weight: 700;
  transform: translateY(-160%); transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }
.scroll-progress {
  position: fixed; inset: 0 0 auto; z-index: 80; height: 2px;
  background: linear-gradient(90deg,var(--purple),var(--pink));
  box-shadow: 0 0 14px rgba(184,108,255,.7);
  transform: scaleX(var(--scroll-progress,0)); transform-origin: left center;
  will-change: transform;
}

.site-ambient { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.ambient-orb { position: absolute; border-radius: 999px; filter: blur(110px); opacity: .26; }
.ambient-orb-one { width: 520px; height: 520px; top: -280px; right: 6%; background: #7c3aed; animation: ambientDriftOne 14s ease-in-out infinite alternate; }
.ambient-orb-two { width: 440px; height: 440px; left: -280px; top: 48%; background: #5b21b6; opacity: .13; animation: ambientDriftTwo 18s ease-in-out infinite alternate; }
@keyframes ambientDriftOne { to { transform: translate3d(-70px,90px,0) scale(1.14); } }
@keyframes ambientDriftTwo { to { transform: translate3d(100px,-70px,0) scale(.9); } }
.ambient-grid {
  position: absolute; inset: 0; opacity: .035;
  background-image: linear-gradient(rgba(255,255,255,.7) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.7) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 65%);
}

/* Navigation */
.site-nav {
  position: fixed; inset: 0 0 auto; z-index: 50; height: var(--nav-height);
  border-bottom: 1px solid transparent; background: rgba(7,6,10,.68);
  backdrop-filter: blur(20px) saturate(145%);
  transition: height 250ms ease, border-color 250ms ease, background 250ms ease, box-shadow 250ms ease;
  animation: navEnter 700ms cubic-bezier(.22,.8,.24,1) both;
}
@keyframes navEnter { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
.site-nav.is-scrolled {
  height: 76px; border-color: var(--line); background: rgba(7,6,10,.91);
  box-shadow: 0 14px 40px rgba(0,0,0,.24);
}
.nav-shell {
  width: min(100% - 48px, 1280px); height: 100%; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px;
}
.brand { display: inline-flex; align-items: center; justify-self: start; gap: 12px; color: var(--text); text-decoration: none; }
.brand-mark {
  position: relative; width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid rgba(184,108,255,.34); border-radius: 13px;
  color: var(--purple-soft); background: linear-gradient(145deg, rgba(184,108,255,.18), rgba(255,255,255,.025));
  box-shadow: 0 0 24px rgba(184,108,255,.15); transition: transform 260ms ease;
}
.brand-mark::after {
  content: ""; position: absolute; inset: -1px; border: 1px solid rgba(216,180,254,.35);
  border-radius: inherit; animation: brandPulse 2.8s ease-out infinite;
}
@keyframes brandPulse { 0% { opacity: .7; transform: scale(1); } 70%,100% { opacity: 0; transform: scale(1.35); } }
.brand:hover .brand-mark { transform: rotate(-7deg) scale(1.04); }
.brand-mark .material-symbols-outlined { font-size: 22px; font-variation-settings: "FILL" 1; }
.brand-name { font-size: 1.2rem; font-weight: 800; letter-spacing: -.04em; }
.brand-name span { margin-left: 2px; color: var(--purple-soft); font-family: "Playfair Display", serif; font-style: italic; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 34px; }
.nav-links a {
  position: relative; padding: 8px 0; color: var(--muted);
  font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-decoration: none;
  transition: color 180ms ease;
}
.nav-links a::after {
  content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 1px;
  background: var(--purple); transform: scaleX(0); transform-origin: right; transition: transform 220ms ease;
}
.nav-links a:hover, .nav-links a:focus-visible, .nav-links a[aria-current="page"] { color: var(--text); }
.nav-links a:hover::after, .nav-links a:focus-visible::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  min-height: 44px; padding: 0 18px; display: inline-flex; align-items: center; justify-self: end; gap: 9px;
  border: 1px solid var(--line-strong); border-radius: 999px;
  color: var(--text); background: rgba(255,255,255,.045);
  font-size: .78rem; font-weight: 800; text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.nav-cta:hover { transform: translateY(-2px); border-color: rgba(184,108,255,.55); background: rgba(184,108,255,.1); }
.nav-cta svg { width: 17px; height: 17px; color: var(--purple-soft); }
.status-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--mint);
  box-shadow: 0 0 0 4px rgba(185,251,192,.09), 0 0 12px rgba(185,251,192,.45);
}
.menu-toggle {
  display: none; width: 44px; height: 44px; padding: 0;
  border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.04);
}
.menu-toggle span { display: block; width: 17px; height: 1px; margin: 5px auto; background: #fff; transition: transform 200ms ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }

/* Hero */
.hero-section {
  position: relative; min-height: min(900px, 100vh); padding: calc(var(--nav-height) + 70px) 24px 76px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-shell {
  position: relative; z-index: 1; width: min(100%, 1280px); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0,.98fr) minmax(420px,.82fr); align-items: center;
  gap: clamp(44px, 7vw, 100px);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 30px; padding: 7px 13px 7px 7px;
  border: 1px solid rgba(184,108,255,.26); border-radius: 999px;
  color: var(--purple-soft); background: rgba(184,108,255,.07);
  font-size: .68rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
}
.eyebrow-icon { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; color: #0a0610; background: var(--purple); }
.eyebrow-icon .material-symbols-outlined { font-size: 16px; font-variation-settings: "FILL" 1; }
.hero-copy h1 {
  max-width: 740px; margin: 0 0 26px; color: var(--text);
  font-family: "Playfair Display", serif; font-size: clamp(3.4rem, 6vw, 6.7rem);
  font-weight: 900; letter-spacing: -.06em; line-height: .91;
}
.hero-copy h1 > span {
  display: inline-block; padding-bottom: .09em;
  color: transparent; background: linear-gradient(110deg, #fff 3%, var(--purple-soft) 40%, #c879ff 68%, #ff8ca2 100%);
  -webkit-background-clip: text; background-clip: text;
}
.hero-lead { max-width: 650px; margin: 0 0 38px; color: var(--muted); font-size: clamp(1rem,1.4vw,1.14rem); line-height: 1.85; }
.hero-lead strong { color: #fff; font-weight: 650; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.button {
  min-height: 56px; padding: 0 25px; display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  border: 1px solid transparent; border-radius: 14px;
  font-size: .9rem; font-weight: 800; text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}
.button { position: relative; overflow: hidden; isolation: isolate; }
.button::before {
  content: ""; position: absolute; inset: -80% -30%; z-index: -1;
  background: linear-gradient(100deg,transparent 38%,rgba(255,255,255,.38) 50%,transparent 62%);
  transform: translateX(-70%) rotate(8deg); transition: transform 650ms ease;
}
.button:hover::before { transform: translateX(70%) rotate(8deg); }
.button svg, .button .material-symbols-outlined { width: 20px; height: 20px; font-size: 20px; }
.button-primary { color: #100a14; background: #f7f3fa; box-shadow: 0 16px 36px rgba(184,108,255,.2); }
.button-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(184,108,255,.3); }
.button-secondary { border-color: var(--line-strong); color: #fff; background: rgba(255,255,255,.025); }
.button-secondary:hover { transform: translateY(-3px); border-color: rgba(184,108,255,.5); background: rgba(184,108,255,.07); }
.hero-assurance {
  max-width: 660px; margin-top: 48px; padding-top: 26px;
  display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-top: 1px solid var(--line);
}
.hero-assurance > div { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 10px; padding-right: 16px; }
.hero-assurance .material-symbols-outlined { grid-row: 1 / 3; align-self: start; color: var(--purple-soft); font-size: 19px; }
.hero-assurance strong { font-size: .78rem; line-height: 1.3; }
.hero-assurance small { color: #777080; font-size: .65rem; line-height: 1.45; }

.hero-visual { position: relative; min-height: 600px; display: grid; place-items: center; isolation: isolate; }
.hero-visual::before {
  content: ""; position: absolute; z-index: -2; width: 80%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(142,72,255,.25), rgba(142,72,255,.03) 52%, transparent 72%); filter: blur(18px);
}
.visual-frame {
  position: relative; width: min(100%,540px); min-height: 600px; display: grid; place-items: center;
  transform: perspective(1100px) rotateX(var(--tilt-x,0deg)) rotateY(var(--tilt-y,0deg));
  transform-style: preserve-3d; transition: transform 300ms ease-out; will-change: transform;
}
.visual-frame::before {
  content: ""; position: absolute; inset: 8% 6%; z-index: -1; border: 1px solid rgba(184,108,255,.13); border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, rgba(184,108,255,.09), transparent 62%);
}
.visual-frame > img {
  position: relative; z-index: 1; width: 100%; height: 590px; object-fit: contain;
  filter: drop-shadow(0 35px 45px rgba(0,0,0,.45)) drop-shadow(0 0 34px rgba(151,75,255,.12));
  animation: heroFloat 6s ease-in-out infinite;
}
.visual-orbit { position: absolute; z-index: 0; border: 1px solid rgba(216,180,254,.16); border-radius: 50%; will-change: transform; }
.visual-orbit-one { width: 92%; height: 36%; animation: orbitOne 17s linear infinite; }
.visual-orbit-two { width: 70%; height: 27%; border-color: rgba(251,113,133,.12); animation: orbitTwo 13s linear infinite reverse; }
@keyframes orbitOne { from { transform: rotate(-18deg); } to { transform: rotate(342deg); } }
@keyframes orbitTwo { from { transform: rotate(38deg); } to { transform: rotate(398deg); } }
@keyframes heroFloat { 0%,100% { transform: translateY(0) rotate(.4deg); } 50% { transform: translateY(-12px) rotate(-.4deg); } }
.floating-card {
  position: absolute; z-index: 3; min-width: 210px; padding: 14px 15px;
  display: grid; grid-template-columns: auto auto auto; align-items: center; gap: 12px;
  border: 1px solid rgba(255,255,255,.15); border-radius: 16px;
  background: rgba(13,10,18,.76); backdrop-filter: blur(16px); box-shadow: 0 16px 34px rgba(0,0,0,.32);
}
.floating-card > .material-symbols-outlined {
  width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px;
  color: var(--purple-soft); background: rgba(184,108,255,.14); font-size: 21px;
}
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { margin-bottom: 2px; font-size: .75rem; }
.floating-card small { color: var(--muted); font-size: .63rem; }
.floating-card-top { top: 80px; left: -8px; animation: cardFloatOne 4.8s ease-in-out infinite; }
.floating-card-bottom { right: 4px; bottom: 92px; min-width: 180px; grid-template-columns: auto auto; animation: cardFloatTwo 5.6s ease-in-out infinite; }
@keyframes cardFloatOne { 0%,100% { transform: translate3d(0,0,0) rotate(-1deg); } 50% { transform: translate3d(0,-10px,0) rotate(1deg); } }
@keyframes cardFloatTwo { 0%,100% { transform: translate3d(0,0,0) rotate(1deg); } 50% { transform: translate3d(0,9px,0) rotate(-1deg); } }
.live-badge { margin-left: auto; padding: 4px 7px; border-radius: 999px; color: var(--mint); background: rgba(185,251,192,.1); font-size: .56rem; font-weight: 800; text-transform: uppercase; animation: livePulse 2s ease-in-out infinite; }
@keyframes livePulse { 50% { color: #fff; background: rgba(185,251,192,.2); box-shadow: 0 0 16px rgba(185,251,192,.22); } }
.visual-index { position: absolute; right: 38px; bottom: 42px; z-index: 3; color: rgba(255,255,255,.45); font-size: .56rem; font-weight: 800; letter-spacing: .18em; }
.scroll-cue {
  position: absolute; bottom: 24px; left: max(24px,calc((100vw - 1280px)/2));
  display: inline-flex; align-items: center; gap: 12px; color: #777080;
  font-size: .58rem; font-weight: 800; letter-spacing: .18em; text-decoration: none; text-transform: uppercase;
}
.scroll-line { display: block; width: 50px; height: 1px; overflow: hidden; background: rgba(255,255,255,.15); }
.scroll-line::after { content: ""; display: block; width: 50%; height: 100%; background: var(--purple); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { transform: translateX(-100%); } 50% { transform: translateX(200%); } }

/* Marquee */
.trust-marquee {
  border-color: var(--line) !important; background: #0d0a12 !important;
  -webkit-mask-image: linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent);
  mask-image: linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent);
}
@keyframes marqueeScroll { from { transform: translate3d(0,0,0); } to { transform: translate3d(calc(-50% - 2rem),0,0); } }
.marquee-container {
  width: max-content; display: flex; gap: 4rem;
  animation: marqueeScroll 28s linear infinite; will-change: transform;
}
.marquee-content { min-width: max-content; display: flex; flex: 0 0 auto; align-items: center; justify-content: flex-start; gap: 4rem; }
.marquee-content > div { color: #8e8798; font-size: .7rem; }
.marquee-content > div > span:first-child { animation: tickerDot 1.8s ease-in-out infinite alternate; }
.marquee-content > div:nth-child(even) > span:first-child { animation-delay: -.9s; }
@keyframes tickerDot { to { transform: scale(1.65); box-shadow: 0 0 12px currentColor; } }

*:focus-visible { outline: 2px solid var(--purple-soft); outline-offset: 4px; }

/* Section framework */
section { scroll-margin-top: 76px; }
#how-it-works, #tiers, #benefits, #faq { position: relative; padding-top: 128px !important; padding-bottom: 128px !important; }
#how-it-works > div, #tiers > div { max-width: 1280px; }
#how-it-works h2, #tiers h2, #benefits h2, #faq h2, footer h2 {
  color: var(--text); font-family: "Playfair Display", serif; letter-spacing: -.045em; line-height: 1.05;
}
#how-it-works > div > div:first-child, #tiers > div > div:first-child {
  margin-bottom: 64px !important; padding-bottom: 28px;
  display: grid; grid-template-columns: .38fr 1fr; align-items: end; gap: 40px;
  border-bottom: 1px solid var(--line);
}
#how-it-works > div > div:first-child > span, #tiers > div > div:first-child > span {
  margin: 0 !important; align-self: start; color: var(--purple-soft) !important;
  font-size: .64rem !important; letter-spacing: .18em;
}
#how-it-works > div > div:first-child > span::before, #tiers > div > div:first-child > span::before {
  content: "01"; display: block; margin-bottom: 12px; color: rgba(255,255,255,.3);
  font-family: "Playfair Display", serif; font-size: 1.3rem; letter-spacing: 0;
}
#tiers > div > div:first-child > span::before { content: "02"; }
#how-it-works h2, #tiers h2 { font-size: clamp(2.6rem,5vw,4.5rem) !important; }

/* Process */
#how-it-works > div > .grid { gap: 16px !important; }
#how-it-works > div > .grid > div {
  position: relative; min-height: 310px; padding: 32px !important; overflow: hidden;
  border: 1px solid var(--line) !important; border-radius: 28px;
  background: linear-gradient(150deg,rgba(255,255,255,.045),rgba(255,255,255,.012));
  transition: transform 300ms ease, border-color 300ms ease, background 300ms ease;
}
#how-it-works > div > .grid > div::before, .glass-card::before {
  content: ""; position: absolute; z-index: 0; top: -45%; left: -70%; width: 48%; height: 190%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.075),transparent);
  transform: rotate(18deg); transition: left 750ms cubic-bezier(.2,.8,.2,1); pointer-events: none;
}
#how-it-works > div > .grid > div:hover::before, .glass-card:hover::before { left: 135%; }
#how-it-works > div > .grid > div > *, .glass-card > *:not(.absolute) { position: relative; z-index: 1; }
#how-it-works > div > .grid > div::after {
  content: ""; position: absolute; right: -110px; bottom: -110px; width: 180px; height: 180px;
  border-radius: 50%; background: rgba(184,108,255,.16); filter: blur(35px); transition: transform 400ms ease;
}
#how-it-works > div > .grid > div:hover {
  transform: translateY(-7px); border-color: rgba(184,108,255,.35) !important;
  background: linear-gradient(150deg,rgba(184,108,255,.075),rgba(255,255,255,.014));
}
#how-it-works > div > .grid > div:hover::after { transform: scale(1.35); }
#how-it-works .grid > div > div:first-child {
  width: 54px !important; height: 54px !important; margin-bottom: auto !important;
  border-color: rgba(184,108,255,.22) !important; border-radius: 15px !important;
  background: rgba(184,108,255,.08) !important; box-shadow: none !important;
}
#how-it-works .grid h3 { margin-top: 52px; margin-bottom: 12px !important; font-size: 1.22rem !important; letter-spacing: -.025em; }
#how-it-works .grid p { max-width: 320px; color: var(--muted) !important; font-size: .9rem; line-height: 1.75; }

/* Product tiers */
#tiers {
  overflow: hidden; border-color: var(--line) !important;
  background: radial-gradient(circle at 50% 18%,rgba(158,82,255,.09),transparent 32rem),#0b0910 !important;
}
#tiers > div > div:first-child { grid-template-columns: .38fr 1.6fr; }
#tiers > div > div:first-child p { grid-column: 2; max-width: 650px; margin-top: -20px; color: var(--muted) !important; line-height: 1.7; }
#tiers > div > .grid { gap: 16px !important; }
.glass-card {
  position: relative; min-height: 480px; padding: 34px !important; display: flex; flex-direction: column; overflow: hidden;
  border: 1px solid var(--line) !important; border-radius: 28px !important;
  background: linear-gradient(155deg,rgba(255,255,255,.05),rgba(255,255,255,.012)) !important;
  backdrop-filter: blur(10px); box-shadow: none !important;
  transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease !important;
}
.glass-card:hover { transform: translateY(-8px); border-color: rgba(184,108,255,.35) !important; box-shadow: 0 24px 50px rgba(0,0,0,.24) !important; }
.glass-card:nth-child(2) {
  transform: translateY(-12px); border-color: rgba(184,108,255,.58) !important;
  background: linear-gradient(150deg,rgba(184,108,255,.13),rgba(255,255,255,.025)) !important;
  box-shadow: 0 28px 70px rgba(59,21,86,.32) !important;
}
.glass-card:nth-child(2):hover { transform: translateY(-20px); }
.glass-card h3 {
  align-self: flex-start; padding: 6px 10px; border: 1px solid var(--line); border-radius: 999px;
  font-size: .66rem !important; letter-spacing: .1em; text-transform: uppercase;
}
.glass-card > div.text-4xl, .glass-card > div.text-5xl {
  margin-top: 18px; margin-bottom: 30px !important; font-family: "Playfair Display", serif;
  font-size: 2.75rem !important; letter-spacing: -.045em;
}
.glass-card ul { margin-bottom: 34px !important; }
.glass-card li { padding-bottom: 13px; border-bottom: 1px solid rgba(255,255,255,.06); color: #c8c2cd; font-size: .82rem; }
.glass-card li .material-symbols-outlined { font-size: 18px; }
.glass-card > a { margin-top: auto; border-radius: 13px !important; font-size: .82rem; }
.glass-card:nth-child(2) > a { color: #110b15 !important; background: #f4ecf8 !important; }
.glass-card > .absolute {
  position: absolute; z-index: 2; top: 22px !important; right: 22px; left: auto !important; color: #0b0710 !important;
  background: var(--purple) !important; font-size: .53rem !important;
}

/* Editorial benefits */
#benefits { padding-right: 24px !important; padding-left: 24px !important; }
#benefits::before, #faq::before {
  content: "03"; position: absolute; top: 135px; left: max(24px,calc((100vw - 960px)/2));
  color: rgba(255,255,255,.14); font-family: "Playfair Display", serif; font-size: 1.25rem;
}
#benefits > div { max-width: 960px !important; display: grid; grid-template-columns: minmax(260px,.72fr) minmax(0,1.2fr); gap: clamp(48px,8vw,100px); }
#benefits h2 {
  position: sticky; top: 120px; align-self: start; margin: 48px 0 0 !important;
  font-size: clamp(2.6rem,4vw,4.1rem) !important;
}
#benefits .prose { position: relative; max-width: none; padding: 36px 0 36px 38px; border-left: 1px solid var(--line); color: var(--muted) !important; }
#benefits .prose::before {
  content: "Why it works"; display: block; margin-bottom: 32px; color: var(--purple-soft);
  font-size: .62rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
}
#benefits .prose p { margin-bottom: 26px !important; font-size: .98rem; line-height: 1.9; }
#benefits .prose strong { color: #f1eaf5; font-weight: 650; }
#benefits .prose a { color: var(--purple-soft); text-decoration: underline; text-decoration-color: rgba(216,180,254,.35); text-underline-offset: 4px; }
#benefits .prose a:hover { color: #fff; text-decoration-color: var(--purple); }
#benefits .prose h3 {
  position: relative; margin-top: 52px !important; margin-bottom: 14px !important;
  color: #fff !important; font-family: "Playfair Display", serif; font-size: 1.58rem !important; letter-spacing: -.025em;
}
#benefits .prose h3::before {
  content: ""; position: absolute; top: .55em; left: -42px; width: 7px; height: 7px;
  border-radius: 50%; background: var(--purple); box-shadow: 0 0 0 5px rgba(184,108,255,.08);
}

/* Guide resource grid */
.resource-section {
  overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 85% 10%,rgba(184,108,255,.08),transparent 26rem),#09070d;
}
.resource-section > div { max-width: 1280px; }
.resource-heading { max-width: 760px; margin-bottom: 54px; }
.resource-kicker, .footer-cta-kicker {
  display: inline-flex; margin-bottom: 16px; color: var(--purple-soft);
  font-size: .64rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
}
.resource-heading h2 {
  margin: 0 0 18px; font-family: "Playfair Display",serif;
  font-size: clamp(2.7rem,5vw,4.5rem); font-weight: 900; letter-spacing: -.045em; line-height: 1.05;
}
.resource-heading p { max-width: 640px; margin: 0; color: var(--muted); line-height: 1.8; }
.resource-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.resource-card {
  position: relative; min-height: 290px; padding: 32px; display: flex; flex-direction: column; overflow: hidden;
  border: 1px solid var(--line); border-radius: 24px;
  color: var(--text); background: linear-gradient(145deg,rgba(255,255,255,.046),rgba(255,255,255,.012));
  text-decoration: none; transition: transform 280ms ease,border-color 280ms ease,background 280ms ease;
}
.resource-card::after {
  content: ""; position: absolute; right: -80px; bottom: -100px; width: 190px; height: 190px;
  border-radius: 50%; background: rgba(184,108,255,.13); filter: blur(36px); transition: transform 400ms ease;
}
.resource-card:hover { transform: translateY(-7px); border-color: rgba(184,108,255,.38); background: linear-gradient(145deg,rgba(184,108,255,.075),rgba(255,255,255,.014)); }
.resource-card:hover::after { transform: scale(1.4); }
.resource-card > .material-symbols-outlined {
  width: 50px; height: 50px; margin-bottom: 28px; display: grid; place-items: center;
  border: 1px solid rgba(184,108,255,.2); border-radius: 15px; color: var(--purple-soft); background: rgba(184,108,255,.08);
}
.resource-card small { margin-bottom: 10px; color: #817989; font-size: .6rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.resource-card h3 { margin: 0 0 12px; font-family: "Playfair Display",serif; font-size: 1.65rem; letter-spacing: -.03em; }
.resource-card p { max-width: 480px; margin: 0 0 26px; color: var(--muted); font-size: .87rem; line-height: 1.75; }
.resource-card strong { margin-top: auto; color: var(--purple-soft); font-size: .76rem; }

/* FAQ */
#faq { overflow: hidden; border-color: var(--line) !important; background: #0d0a12 !important; }
#faq::before { content: "04"; left: max(24px,calc((100vw - 768px)/2)); }
#faq > div { max-width: 768px; }
#faq > div > div:first-child { margin-bottom: 48px !important; padding-top: 46px; }
#faq h2 { font-size: clamp(2.7rem,5vw,4.3rem) !important; }
.faq-item {
  border: 1px solid var(--line) !important; border-radius: 18px !important;
  background: rgba(255,255,255,.022) !important; transition: border-color 250ms ease, background 250ms ease !important;
}
.faq-item.active { border-color: rgba(184,108,255,.34) !important; background: rgba(184,108,255,.045) !important; }
.faq-btn { min-height: 80px; padding: 22px 26px !important; color: #f2edf5; font-size: .98rem !important; }
.faq-btn[aria-expanded="true"] { color: var(--purple-soft) !important; }
.faq-btn[aria-expanded="true"] .material-symbols-outlined { transform: rotate(45deg); }
.faq-content { padding-right: 26px !important; padding-left: 26px !important; color: var(--muted) !important; font-size: .9rem; line-height: 1.8; }
.faq-content p { opacity: 0; transform: translateY(-8px); transition: opacity 260ms ease 70ms, transform 260ms ease 70ms; }
.faq-item.active .faq-content p { opacity: 1; transform: translateY(0); }

/* Footer */
.site-footer { padding: 110px 24px 32px !important; background: linear-gradient(180deg,var(--ink),#09070c); }
.footer-cta {
  max-width: 1280px !important; min-height: 340px; margin-bottom: 110px !important; padding: 64px !important;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center; overflow: hidden;
  border-color: rgba(184,108,255,.24) !important; border-radius: 32px !important;
  background:
    radial-gradient(circle at 88% 20%,rgba(192,113,255,.24),transparent 18rem),
    linear-gradient(135deg,rgba(184,108,255,.1),rgba(255,255,255,.015)) !important;
  box-shadow: var(--shadow);
}
.footer-cta::after {
  content: ""; position: absolute; top: -45%; right: -5%; width: 380px; height: 380px;
  border: 1px solid rgba(216,180,254,.14); border-radius: 50%; box-shadow: 0 0 0 55px rgba(216,180,254,.025),0 0 0 110px rgba(216,180,254,.018);
  animation: footerOrbit 12s ease-in-out infinite alternate;
}
@keyframes footerOrbit { to { transform: translate3d(-45px,35px,0) scale(1.12); } }
.footer-cta h2 { max-width: 650px; font-size: clamp(2.7rem,5vw,4.6rem) !important; }
.footer-cta a { border-radius: 14px !important; box-shadow: 0 16px 36px rgba(0,0,0,.26) !important; }
.footer-cta-actions { position: relative; z-index: 1; display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
.footer-telegram-link { color: var(--purple-soft) !important; font-size: .82rem !important; box-shadow: none !important; text-decoration: underline; text-underline-offset: 4px; }
.footer-grid { max-width: 1280px; padding-top: 58px !important; border-color: var(--line) !important; }
.footer-grid h3 { color: #817989 !important; letter-spacing: .16em !important; }
.footer-grid a { text-decoration: none; }
.footer-grid p, .footer-grid li { color: var(--muted) !important; }
.footer-grid > div:first-child > a span { font-size: 1.55rem !important; }
.footer-bottom { max-width: 1280px; border-color: rgba(255,255,255,.07) !important; color: #766f7d !important; }
.footer-legal { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.footer-legal a { color: #928a9b; text-decoration: none; }
.footer-legal a:hover { color: var(--purple-soft); }

/* Legal pages */
.legal-body { background: var(--ink); }
.legal-page { position: relative; z-index: 1; min-height: 70vh; padding: calc(var(--nav-height) + 78px) 24px 120px; }
.legal-shell { width: min(100%,920px); margin: 0 auto; }
.legal-header { margin-bottom: 54px; padding-bottom: 42px; border-bottom: 1px solid var(--line); }
.legal-kicker { display: inline-flex; margin-bottom: 22px; color: var(--purple-soft); font-size: .65rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.legal-header h1 { margin: 0 0 18px; font-family: "Playfair Display",serif; font-size: clamp(3.2rem,7vw,6rem); font-weight: 900; letter-spacing: -.055em; line-height: .95; }
.legal-header p { max-width: 640px; margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.8; }
.legal-updated { display: inline-flex; margin-top: 22px; padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: #8f8798; font-size: .68rem; }
.legal-content { display: grid; gap: 18px; }
.legal-section { padding: 30px 32px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.022); }
.legal-section h2 { margin: 0 0 13px; color: #f5f0f7; font-family: "Playfair Display",serif; font-size: 1.55rem; letter-spacing: -.025em; }
.legal-section p, .legal-section li { color: var(--muted); font-size: .92rem; line-height: 1.85; }
.legal-section p + p { margin-top: 14px; }
.legal-section ul { margin: 12px 0 0; padding-left: 20px; }
.legal-section li + li { margin-top: 8px; }
.legal-section a { color: var(--purple-soft); }
.legal-note { border-color: rgba(184,108,255,.25); background: rgba(184,108,255,.055); }
.legal-footer { padding: 32px 24px; border-top: 1px solid var(--line); }
.legal-footer-inner { width: min(100%,1280px); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: #766f7d; font-size: .75rem; }
.legal-footer-links { display: flex; flex-wrap: wrap; gap: 12px 20px; }
.legal-footer a { color: #9e96a7; text-decoration: none; }
.legal-footer a:hover { color: var(--purple-soft); }

/* Editorial and category pages */
.content-page { position: relative; z-index: 1; min-height: 70vh; padding: calc(var(--nav-height) + 54px) 24px 110px; }
.content-shell { width: min(100%,1120px); margin: 0 auto; }
.breadcrumbs { margin-bottom: 44px; display: flex; flex-wrap: wrap; align-items: center; gap: 9px; color: #766f7d; font-size: .7rem; }
.breadcrumbs a { color: #a49cab; text-decoration: none; }
.breadcrumbs a:hover { color: var(--purple-soft); }
.content-hero { max-width: 900px; margin-bottom: 62px; }
.content-kicker { display: inline-flex; margin-bottom: 20px; color: var(--purple-soft); font-size: .64rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.content-hero h1 { margin: 0 0 22px; font-family: "Playfair Display",serif; font-size: clamp(3.1rem,7vw,6rem); font-weight: 900; letter-spacing: -.055em; line-height: .95; }
.content-lead { max-width: 760px; margin: 0; color: var(--muted); font-size: clamp(1rem,1.5vw,1.16rem); line-height: 1.85; }
.content-meta { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px; }
.content-meta span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: #8f8798; font-size: .66rem; }
.content-layout { display: grid; grid-template-columns: 230px minmax(0,1fr); align-items: start; gap: clamp(40px,7vw,82px); }
.article-toc { position: sticky; top: 108px; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.018); }
.article-toc strong { display: block; margin-bottom: 14px; color: #f2edf5; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; }
.article-toc a { display: block; padding: 8px 0; color: #8f8798; font-size: .72rem; line-height: 1.45; text-decoration: none; transition: color 180ms ease,transform 180ms ease; }
.article-toc a:hover { color: var(--purple-soft); transform: translateX(3px); }
.article-body { min-width: 0; }
.article-body > section { padding: 0 0 42px; margin-bottom: 42px; border-bottom: 1px solid var(--line); }
.article-body > section:last-child { border-bottom: 0; }
.article-body h2 { scroll-margin-top: 110px; margin: 0 0 18px; font-family: "Playfair Display",serif; font-size: clamp(2rem,4vw,3rem); letter-spacing: -.035em; line-height: 1.1; }
.article-body h3 { margin: 30px 0 12px; color: #f2edf5; font-size: 1.15rem; letter-spacing: -.02em; }
.article-body p, .article-body li { color: var(--muted); font-size: .94rem; line-height: 1.9; }
.article-body strong { color: #f2edf5; }
.article-body p + p { margin-top: 16px; }
.article-body ul, .article-body ol { margin: 18px 0 0; padding-left: 22px; }
.article-body li + li { margin-top: 9px; }
.article-body a { color: var(--purple-soft); text-decoration: underline; text-decoration-color: rgba(216,180,254,.35); text-underline-offset: 4px; }
.article-body a:hover { color: #fff; text-decoration-color: var(--purple); }
.article-callout { margin: 22px 0; padding: 22px 24px; border: 1px solid rgba(184,108,255,.26); border-radius: 18px; background: rgba(184,108,255,.055); }
.article-callout.warning { border-color: rgba(251,113,133,.26); background: rgba(251,113,133,.045); }
.article-callout strong { display: block; margin-bottom: 7px; color: #f4edf8; font-size: .78rem; }
.article-callout p { margin: 0; font-size: .85rem; }
.comparison-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; margin-top: 22px; }
.comparison-card { padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.022); }
.comparison-card h3 { margin-top: 0; }
.comparison-card p { font-size: .85rem; }
.detail-list { list-style: none; padding: 0 !important; }
.detail-list li { position: relative; padding: 15px 0 15px 30px; border-bottom: 1px solid rgba(255,255,255,.06); }
.detail-list li::before { content: "check"; position: absolute; top: 17px; left: 0; color: var(--purple-soft); font-family: "Material Symbols Outlined"; font-size: 18px; }
.detail-list li:last-child { border-bottom: 0; }
.step-list { list-style: none; counter-reset: steps; padding: 0 !important; }
.step-list li { position: relative; min-height: 60px; padding: 0 0 24px 62px; counter-increment: steps; }
.step-list li::before { content: counter(steps,decimal-leading-zero); position: absolute; top: 0; left: 0; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(184,108,255,.26); border-radius: 13px; color: var(--purple-soft); background: rgba(184,108,255,.06); font-size: .68rem; font-weight: 800; }
.source-note { color: #777080 !important; font-size: .76rem !important; }
.content-cta { margin-top: 54px; padding: 34px; border: 1px solid rgba(184,108,255,.25); border-radius: 24px; background: linear-gradient(135deg,rgba(184,108,255,.09),rgba(255,255,255,.016)); }
.content-cta h2 { margin-bottom: 12px; font-size: clamp(1.8rem,4vw,2.7rem); }
.content-cta p { max-width: 650px; }
.content-actions { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; }
.content-button { min-height: 48px; padding: 0 18px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 1px solid var(--line-strong); border-radius: 12px; color: #fff !important; background: rgba(255,255,255,.035); font-size: .76rem; font-weight: 800; text-decoration: none !important; }
.content-button.primary { border-color: transparent; color: #100a14 !important; background: #f5eff8; }
.related-links { margin-top: 60px; }
.related-links > h2 { margin-bottom: 22px; font-size: 1.8rem; }
.related-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; }
.related-grid a { padding: 20px; border: 1px solid var(--line); border-radius: 16px; color: #f0eaf3; background: rgba(255,255,255,.018); font-size: .78rem; font-weight: 700; text-decoration: none; transition: transform 220ms ease,border-color 220ms ease; }
.related-grid a:hover { transform: translateY(-4px); border-color: rgba(184,108,255,.32); }

/* Motion */
.fade-in-section {
  opacity: 0; filter: blur(7px); transform: translate3d(0,34px,0) scale(.985);
  transition: opacity 800ms cubic-bezier(.22,.8,.24,1), transform 800ms cubic-bezier(.22,.8,.24,1), filter 800ms ease;
  transition-delay: var(--reveal-delay,0ms); will-change: opacity,transform,filter;
}
.fade-in-section.is-visible { opacity: 1; filter: blur(0); transform: translate3d(0,0,0) scale(1); }
.slide-up { animation: none; }
.hero-copy .eyebrow, .hero-copy h1, .hero-copy .hero-lead, .hero-copy .hero-actions, .hero-copy .hero-assurance {
  opacity: 0; animation: heroItemIn 760ms cubic-bezier(.22,.8,.24,1) forwards;
}
.hero-copy .eyebrow { animation-delay: 100ms; }
.hero-copy h1 { animation-delay: 220ms; }
.hero-copy .hero-lead { animation-delay: 360ms; }
.hero-copy .hero-actions { animation-delay: 500ms; }
.hero-copy .hero-assurance { animation-delay: 640ms; }
.hero-visual { opacity: 0; animation: heroVisualIn 1100ms cubic-bezier(.22,.8,.24,1) 240ms forwards; }
@keyframes heroItemIn { from { opacity: 0; transform: translate3d(0,24px,0); } to { opacity: 1; transform: translate3d(0,0,0); } }
@keyframes heroVisualIn { from { opacity: 0; transform: translate3d(42px,18px,0) scale(.94); } to { opacity: 1; transform: translate3d(0,0,0) scale(1); } }

@media (max-width: 1100px) {
  .nav-shell { grid-template-columns: 1fr auto auto; }
  .nav-links {
    position: fixed; top: var(--nav-height); right: 20px; left: 20px;
    flex-direction: column; align-items: stretch; gap: 0; padding: 14px;
    border: 1px solid var(--line); border-radius: 20px; background: rgba(13,10,18,.98); box-shadow: var(--shadow);
    opacity: 0; pointer-events: none; transform: translateY(-12px) scale(.98); transform-origin: top;
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .nav-links.is-open { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
  .nav-links a { padding: 15px 14px; border-bottom: 1px solid rgba(255,255,255,.06); font-size: .86rem; }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links a::after { display: none; }
  .menu-toggle { display: block; grid-column: 3; grid-row: 1; }
  .nav-cta { grid-column: 2; grid-row: 1; }
  .hero-shell { grid-template-columns: minmax(0,1fr) minmax(350px,.72fr); gap: 38px; }
  .hero-assurance { grid-template-columns: 1fr; gap: 15px; }
  .hero-visual, .visual-frame { min-height: 530px; }
  .visual-frame > img { height: 530px; }
}

@media (max-width: 820px) {
  :root { --nav-height: 76px; }
  .nav-shell { width: min(100% - 32px,1280px); }
  .nav-cta { display: none; }
  .hero-section { min-height: auto; padding: 130px 20px 90px; }
  .hero-shell { grid-template-columns: 1fr; gap: 34px; }
  .hero-copy h1 { font-size: clamp(3.25rem,13vw,5.7rem); }
  .hero-lead { max-width: 620px; }
  .hero-visual { width: min(100%,600px); min-height: 500px; margin: 0 auto; }
  .visual-frame { min-height: 500px; }
  .visual-frame > img { height: 500px; }
  .floating-card-top { left: 18px; }
  .scroll-cue { display: none; }
  #how-it-works, #tiers, #benefits, #faq { padding-top: 94px !important; padding-bottom: 94px !important; }
  #how-it-works > div > div:first-child, #tiers > div > div:first-child { grid-template-columns: 1fr; gap: 18px; }
  #tiers > div > div:first-child p { grid-column: 1; margin-top: 0; }
  #benefits::before, #faq::before { top: 96px; }
  #benefits > div { grid-template-columns: 1fr; gap: 30px; }
  #benefits h2 { position: static; margin-top: 45px !important; }
  #benefits .prose { padding-left: 28px; }
  .resource-grid { grid-template-columns: 1fr; }
  .content-layout { grid-template-columns: 1fr; }
  .article-toc { position: static; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-cta { padding: 48px !important; }
}

@media (max-width: 640px) {
  .brand-name { font-size: 1.05rem; }
  .brand-mark { width: 38px; height: 38px; }
  .eyebrow { margin-bottom: 24px; font-size: .58rem; }
  .hero-copy h1 { margin-bottom: 22px; font-size: clamp(3rem,15vw,4.5rem); line-height: .94; }
  .hero-lead { font-size: .95rem; line-height: 1.75; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .hero-assurance { grid-template-columns: repeat(3,1fr); gap: 8px; }
  .hero-assurance > div { grid-template-columns: 1fr; grid-template-rows: auto auto auto; gap: 5px; padding: 0 8px; text-align: center; }
  .hero-assurance .material-symbols-outlined { grid-row: auto; }
  .hero-assurance small { display: none; }
  .hero-visual, .visual-frame { min-height: 410px; }
  .visual-frame > img { height: 410px; }
  .floating-card { min-width: 180px; padding: 11px; }
  .floating-card-top { top: 54px; left: 0; }
  .floating-card-bottom { right: 0; bottom: 62px; min-width: 158px; }
  .visual-index { right: 18px; bottom: 20px; }
  #how-it-works, #tiers, #benefits, #faq { padding-right: 20px !important; padding-left: 20px !important; }
  #how-it-works > div > .grid > div, .glass-card { padding: 26px !important; }
  #how-it-works > div > .grid > div { min-height: 280px; }
  .glass-card { min-height: 460px; }
  .glass-card:nth-child(2) { transform: none; }
  .glass-card:nth-child(2):hover { transform: translateY(-8px); }
  #benefits .prose { padding: 24px 0 24px 22px; }
  #benefits .prose h3::before { left: -26px; }
  .resource-section { padding: 84px 20px !important; }
  .resource-card { min-height: 270px; padding: 26px; }
  .footer-cta-actions { align-items: stretch; }
  .footer-cta-actions > a { width: 100%; justify-content: center; text-align: center; }
  .faq-btn { padding: 20px !important; font-size: .88rem !important; }
  .faq-content { padding-right: 20px !important; padding-left: 20px !important; }
  .site-footer { padding-top: 76px !important; padding-right: 20px !important; padding-left: 20px !important; }
  .footer-cta { min-height: 390px; margin-bottom: 76px !important; padding: 30px !important; }
  .footer-legal { justify-content: center; }
  .legal-page { padding: 126px 20px 84px; }
  .content-page { padding: 120px 20px 84px; }
  .content-hero { margin-bottom: 44px; }
  .content-hero h1 { font-size: clamp(2.9rem,14vw,4.4rem); }
  .comparison-grid { grid-template-columns: 1fr; }
  .content-cta { padding: 26px 22px; }
  .content-actions { display: grid; }
  .legal-section { padding: 24px 22px; }
  .legal-footer-inner { flex-direction: column; align-items: flex-start; }
}
