/* ============================================================
   PMPass — Main Site Stylesheet
   Design System v2.0 (Geni-informed, PMI-anchored)
   ============================================================ */

/* ---------- Fonts (Manrope display + Inter body, Cyrillic) ---------- */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap&subset=cyrillic');

/* ---------- Tokens ---------- */
:root{
  --primary-900:#2B1655; --primary-700:#45278F; --primary-600:#5A34B8;
  --primary-500:#6D46CF; --primary-100:#EDE7FB; --primary-50:#F7F4FD;
  --surface-warm:#F6F5F1; --surface-card:#FAF9F6; --surface-app:#F8F7F4;
  --surface-active:#EFEDE7; --surface-50:#FAFAFC; --white:#FFFFFF;
  --gold-600:#B8860B; --gold-400:#E0B94E; --gold-100:#FBF3DC;
  --exam-800:#14335B; --exam-600:#1F4E8C; --exam-50:#EEF4FB;
  --band-above:#1E8E5A; --band-above-bg:#E4F5EC;
  --band-near:#C77414;  --band-near-bg:#FBF0DF;
  --band-below:#C93C3C; --band-below-bg:#FBE9E9;
  --ink-900:#1B1B29; --ink-700:#3E3E52; --ink-500:#6E6E85; --ink-300:#B9B9C9;
  --line-200:#E4E4EC;
  --r-sm:6px; --r-md:10px; --r-lg:16px; --r-card:24px; --r-hero:40px; --r-pill:9999px;
  --sh-card:0 1px 3px rgba(27,27,41,.08);
  --sh-raised:0 4px 16px rgba(27,27,41,.10);
  --sh-modal:0 12px 40px rgba(27,27,41,.18);
  --font-display:'Manrope',system-ui,sans-serif;
  --font-body:'Inter',system-ui,sans-serif;
  --max-w:1200px;
}

/* ---------- Reset / base ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:var(--font-body);font-size:16px;line-height:26px;color:var(--ink-900);
  background:var(--white);overflow-x:hidden;
}
img,svg{display:block;max-width:100%}
a{color:var(--primary-700);text-decoration:none}
a:hover{color:var(--primary-600)}
button{font-family:inherit;cursor:pointer;border:none;background:none}
ul{list-style:none}
::selection{background:var(--primary-100);color:var(--primary-900)}

h1,h2,h3,h4{font-family:var(--font-display);color:var(--ink-900)}

.container{max-width:var(--max-w);margin:0 auto;padding:0 24px;position:relative;z-index:1}

/* ---------- Typography scale ---------- */
.t-hero{font-family:var(--font-display);font-weight:800;font-size:64px;line-height:68px;letter-spacing:-.02em}
.t-display{font-family:var(--font-display);font-weight:800;font-size:40px;line-height:48px;letter-spacing:-.01em}
.t-display-num{font-family:var(--font-display);font-weight:800;font-size:104px;line-height:1;letter-spacing:-.03em;font-variant-numeric:tabular-nums}
.t-h1{font-family:var(--font-display);font-weight:700;font-size:32px;line-height:40px;letter-spacing:-.01em}
.t-h2{font-family:var(--font-display);font-weight:700;font-size:28px;line-height:36px;letter-spacing:-.01em}
.t-h3{font-family:var(--font-display);font-weight:600;font-size:20px;line-height:28px}
.t-body-lg{font-size:18px;line-height:30px}
.t-body-sm{font-size:14px;line-height:22px}
.t-caption{font-size:12px;line-height:16px;font-weight:500}
.muted{color:var(--ink-500)}

@media(max-width:768px){
  .t-hero{font-size:40px;line-height:44px}
  .t-display{font-size:32px;line-height:38px}
  .t-display-num{font-size:64px}
  .t-h2{font-size:24px;line-height:32px}
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  font-family:var(--font-display);font-weight:700;font-size:16px;line-height:1;
  border-radius:var(--r-pill);padding:16px 30px;transition:all .22s cubic-bezier(.4,0,.2,1);
  white-space:nowrap;position:relative;
}
.btn-primary{background:var(--primary-700);color:#fff}
.btn-primary:hover{background:var(--primary-600);color:#fff;transform:translateY(-2px);box-shadow:0 8px 24px rgba(69,39,143,.28)}
.btn-secondary{background:var(--white);color:var(--ink-900);border:1.5px solid var(--line-200)}
.btn-secondary:hover{border-color:var(--ink-300);color:var(--ink-900);transform:translateY(-2px);box-shadow:var(--sh-raised)}
.btn-ghost{background:transparent;color:var(--ink-700);padding:12px 20px;font-weight:600}
.btn-ghost:hover{color:var(--primary-700)}
.btn-dark{background:var(--primary-900);color:#fff}
.btn-dark:hover{background:var(--primary-700);color:#fff;transform:translateY(-2px)}
.btn-lg{padding:19px 38px;font-size:17px}
.btn-sm{padding:11px 22px;font-size:14px}
.btn-block{width:100%}
.btn .arrow-circle{
  width:26px;height:26px;border-radius:50%;background:rgba(255,255,255,.18);
  display:inline-flex;align-items:center;justify-content:center;font-size:13px;
  transition:transform .22s ease;
}
.btn:hover .arrow-circle{transform:translate(2px,-2px)}

/* ---------- Pills / badges / chips ---------- */
.label-pill{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--font-display);font-weight:700;font-size:13px;letter-spacing:.04em;
  color:var(--primary-700);background:var(--primary-100);
  border-radius:var(--r-pill);padding:8px 18px;text-transform:uppercase;
}
.badge-dark{display:inline-flex;align-items:center;gap:8px;background:var(--primary-900);color:#fff;
  border-radius:var(--r-pill);padding:8px 16px;font-size:13px;font-weight:600}
.badge-outline{display:inline-flex;align-items:center;gap:8px;background:var(--white);color:var(--ink-700);
  border:1.5px solid var(--line-200);border-radius:var(--r-pill);padding:8px 16px;font-size:13px;font-weight:600}
.badge-gold{display:inline-flex;align-items:center;background:var(--gold-100);color:var(--gold-600);
  border-radius:var(--r-pill);padding:4px 12px;font-size:12px;font-weight:700}
.band-chip{display:inline-flex;align-items:center;gap:6px;border-radius:var(--r-pill);
  padding:5px 12px;font-size:12px;font-weight:600;line-height:16px}
.band-chip::before{content:'';width:7px;height:7px;border-radius:50%;background:currentColor}
.band-chip.above{color:var(--band-above);background:var(--band-above-bg)}
.band-chip.near{color:var(--band-near);background:var(--band-near-bg)}
.band-chip.below{color:var(--band-below);background:var(--band-below-bg)}

/* ---------- Announcement bar ---------- */
.announce{background:var(--primary-900);color:#fff;position:relative;z-index:60}
.announce .container{display:flex;align-items:center;justify-content:center;gap:12px;padding:10px 24px;font-size:13.5px}
.announce .new-pill{background:var(--gold-400);color:var(--primary-900);font-weight:800;font-size:11px;
  letter-spacing:.06em;border-radius:var(--r-pill);padding:3px 10px;text-transform:uppercase}
.announce a{color:#fff;text-decoration:underline;text-underline-offset:3px;opacity:.85}
.announce a:hover{opacity:1}

/* ---------- Navigation ---------- */
.site-nav{
  position:sticky;top:0;z-index:50;background:rgba(255,255,255,.85);
  backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid transparent;transition:border-color .25s ease, box-shadow .25s ease;
}
.site-nav.scrolled{border-bottom-color:var(--line-200);box-shadow:0 1px 12px rgba(27,27,41,.05)}
.site-nav .container{display:flex;align-items:center;justify-content:space-between;height:76px}
.logo{display:flex;align-items:center;gap:10px;font-family:var(--font-display);font-weight:800;
  font-size:22px;color:var(--ink-900);letter-spacing:-.02em}
.logo .logo-mark{width:34px;height:34px;border-radius:10px;background:var(--primary-700);
  display:flex;align-items:center;justify-content:center;color:#fff;font-size:16px;font-weight:800;
  box-shadow:0 4px 12px rgba(69,39,143,.25)}
.logo em{font-style:normal;color:var(--primary-700)}
.nav-pill-group{
  display:flex;align-items:center;gap:2px;background:var(--surface-warm);
  border-radius:var(--r-pill);padding:5px;
}
.nav-pill-group a{
  font-family:var(--font-display);font-weight:600;font-size:14.5px;color:var(--ink-700);
  border-radius:var(--r-pill);padding:9px 18px;transition:all .18s ease;white-space:nowrap;
}
.nav-pill-group a:hover{color:var(--primary-700);background:rgba(255,255,255,.7)}
.nav-pill-group a.active{background:var(--white);color:var(--primary-700);box-shadow:var(--sh-card)}
.nav-right{display:flex;align-items:center;gap:8px}

/* language toggle */
.lang-toggle{display:flex;align-items:center;background:var(--surface-warm);border-radius:var(--r-pill);padding:3px}
.lang-toggle button{
  font-family:var(--font-display);font-weight:700;font-size:12.5px;color:var(--ink-500);
  border-radius:var(--r-pill);padding:6px 11px;transition:all .18s ease;
}
.lang-toggle button.active{background:var(--primary-700);color:#fff;box-shadow:0 2px 8px rgba(69,39,143,.3)}

/* mobile nav */
.nav-burger{display:none;flex-direction:column;gap:5px;padding:8px}
.nav-burger span{width:22px;height:2px;background:var(--ink-900);border-radius:2px;transition:all .25s ease}
.mobile-menu{display:none;position:fixed;inset:0;top:0;background:rgba(255,255,255,.98);z-index:49;
  padding:120px 32px 40px;flex-direction:column;gap:8px}
.mobile-menu.open{display:flex}
.mobile-menu a{font-family:var(--font-display);font-weight:700;font-size:24px;color:var(--ink-900);padding:12px 0;
  border-bottom:1px solid var(--line-200)}
@media(max-width:960px){
  .nav-pill-group{display:none}
  .nav-right .btn-ghost{display:none}
  .nav-burger{display:flex}
  body.menu-open{overflow:hidden}
  body.menu-open .nav-burger span:nth-child(1){transform:translateY(7px) rotate(45deg)}
  body.menu-open .nav-burger span:nth-child(2){opacity:0}
  body.menu-open .nav-burger span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
}

/* ---------- Sections ---------- */
.section{padding:130px 0;position:relative}
.section.tight{padding:90px 0}
.section.warm{background:var(--surface-warm)}
.section.brand{background:var(--primary-50)}
.section-head{max-width:720px;margin:0 auto 64px;text-align:center;position:relative;z-index:1}
.section-head .label-pill{margin-bottom:20px}
.section-head h2{margin-bottom:16px}
.section-head p{color:var(--ink-500);font-size:17px;line-height:28px}
@media(max-width:768px){.section{padding:80px 0}.section-head{margin-bottom:44px}}

/* ---------- Hero ---------- */
.hero-wrap{padding:28px 24px 0;max-width:1440px;margin:0 auto}
.hero{
  position:relative;background:var(--surface-warm);border-radius:var(--r-hero);
  padding:110px 24px 0;overflow:hidden;isolation:isolate;
}
.hero-inner{max-width:860px;margin:0 auto;text-align:center;position:relative;z-index:2}
.hero-badges{display:flex;justify-content:center;gap:10px;margin-bottom:28px;flex-wrap:wrap}
.hero h1{margin-bottom:24px}
.hero h1 .accent{color:var(--primary-700);position:relative;display:inline-block}
.hero h1 .accent svg{position:absolute;left:0;bottom:-6px;width:100%;height:12px}
.hero-sub{font-size:19px;line-height:31px;color:var(--ink-500);max-width:640px;margin:0 auto 36px}
.hero-ctas{display:flex;justify-content:center;gap:14px;flex-wrap:wrap;margin-bottom:28px}
.trust-strip{display:flex;justify-content:center;align-items:center;gap:10px;flex-wrap:wrap;
  color:var(--ink-500);font-size:14px;margin-bottom:64px}
.trust-strip .dot{width:4px;height:4px;border-radius:50%;background:var(--ink-300)}
.trust-strip strong{color:var(--ink-700);font-weight:600}

/* hero product visual */
.hero-visual{position:relative;z-index:2;max-width:980px;margin:0 auto;transform:translateY(2px)}
.hero-visual .browser-frame{margin-bottom:-2px}

/* blobs — soft primary tinted circles that bleed off edges, mouse-parallax targets */
.blob{position:absolute;border-radius:50%;pointer-events:none;z-index:0;
  will-change:transform;transition:transform .6s cubic-bezier(.22,1,.36,1)}
.blob.b1{width:560px;height:560px;background:radial-gradient(circle,rgba(109,70,207,.16),rgba(109,70,207,0) 68%);top:-180px;left:-140px}
.blob.b2{width:640px;height:640px;background:radial-gradient(circle,rgba(224,185,78,.14),rgba(224,185,78,0) 66%);top:-120px;right:-200px}
.blob.b3{width:460px;height:460px;background:radial-gradient(circle,rgba(69,39,143,.12),rgba(69,39,143,0) 70%);bottom:-160px;left:24%}
.blob.small{width:320px;height:320px}

/* floating decorative chips in hero */
.float-chip{
  position:absolute;z-index:1;background:var(--white);border-radius:var(--r-lg);
  box-shadow:var(--sh-raised);padding:12px 16px;display:flex;align-items:center;gap:10px;
  font-size:13px;font-weight:600;color:var(--ink-700);
  animation:floaty 6s ease-in-out infinite;will-change:transform;
}
.float-chip .num{font-family:var(--font-display);font-weight:800;font-size:20px;color:var(--primary-700)}
@keyframes floaty{0%,100%{transform:translateY(0) rotate(var(--tilt,0deg))}50%{transform:translateY(-14px) rotate(var(--tilt,0deg))}}
@media(max-width:1080px){.float-chip{display:none}}

/* ---------- Browser frame (mock product screenshot) ---------- */
.browser-frame{
  background:var(--white);border-radius:var(--r-card) var(--r-card) 0 0;box-shadow:var(--sh-modal);
  border:1px solid var(--line-200);border-bottom:none;overflow:hidden;
}
.browser-frame.rounded{border-radius:var(--r-card);border-bottom:1px solid var(--line-200)}
.browser-bar{display:flex;align-items:center;gap:8px;padding:13px 18px;border-bottom:1px solid var(--line-200);background:var(--surface-50)}
.browser-bar .b-dot{width:10px;height:10px;border-radius:50%;background:var(--line-200)}
.browser-bar .b-dot:nth-child(1){background:#F4A9A9}
.browser-bar .b-dot:nth-child(2){background:var(--gold-400)}
.browser-bar .b-dot:nth-child(3){background:#9ED8B8}
.browser-bar .b-url{flex:1;max-width:300px;margin:0 auto;background:var(--white);border:1px solid var(--line-200);
  border-radius:var(--r-pill);font-size:11.5px;color:var(--ink-500);padding:4px 14px;text-align:center}
.browser-body{padding:0;background:var(--white)}

/* ---------- Mock UI pieces ---------- */
.mock-dash{display:grid;grid-template-columns:200px 1fr;min-height:340px;text-align:left}
.mock-side{background:var(--surface-app);padding:20px 14px;border-right:1px solid var(--line-200)}
.mock-side .m-logo{font-family:var(--font-display);font-weight:800;font-size:15px;color:var(--ink-900);margin-bottom:18px;padding:0 8px}
.mock-side .m-logo em{font-style:normal;color:var(--primary-700)}
.m-nav-row{display:flex;align-items:center;gap:9px;font-size:12.5px;font-weight:500;color:var(--ink-700);
  padding:8px 10px;border-radius:10px;margin-bottom:2px}
.m-nav-row.active{background:var(--surface-active);color:var(--ink-900);font-weight:600}
.m-nav-row .ico{width:15px;height:15px;border-radius:4px;background:var(--ink-300);opacity:.55;flex:none}
.m-nav-row.active .ico{background:var(--primary-700);opacity:1}
.mock-main{padding:22px 24px;background:var(--surface-50)}
.mock-main .m-title{font-family:var(--font-display);font-weight:700;font-size:16px;margin-bottom:14px}
.m-stat-row{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-bottom:16px}
.m-stat{background:var(--surface-card);border:1px solid var(--line-200);border-radius:14px;padding:14px 16px}
.m-stat .k{font-size:11px;color:var(--ink-500);margin-bottom:4px}
.m-stat .v{font-family:var(--font-display);font-weight:800;font-size:24px;letter-spacing:-.02em}
.m-stat .v small{font-size:12px;color:var(--ink-500);font-weight:600}

/* domain progress bars */
.domain-bar{margin-bottom:12px}
.domain-bar .db-head{display:flex;justify-content:space-between;font-size:12px;font-weight:600;color:var(--ink-700);margin-bottom:6px}
.domain-bar .db-head span:last-child{color:var(--ink-500);font-weight:500;font-variant-numeric:tabular-nums}
.db-track{height:6px;border-radius:3px;background:var(--surface-active);overflow:hidden}
.db-fill{height:100%;border-radius:3px;width:0;transition:width 1.2s cubic-bezier(.22,1,.36,1)}
.db-fill.above{background:var(--band-above)}
.db-fill.near{background:var(--band-near)}
.db-fill.below{background:var(--band-below)}

/* readiness donut */
.donut-wrap{display:flex;flex-direction:column;align-items:center;gap:10px}
.donut{position:relative;width:150px;height:150px}
.donut svg{transform:rotate(-90deg)}
.donut .donut-track{fill:none;stroke:var(--surface-active);stroke-width:12}
.donut .donut-fill{fill:none;stroke:var(--primary-700);stroke-width:12;stroke-linecap:round;
  stroke-dasharray:377;stroke-dashoffset:377;transition:stroke-dashoffset 1.4s cubic-bezier(.22,1,.36,1)}
.donut .donut-num{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;
  font-family:var(--font-display);font-weight:800;font-size:32px;letter-spacing:-.02em}
.donut .donut-num small{font-size:11px;color:var(--ink-500);font-weight:600;letter-spacing:0}

/* answer option rows (exam mock) */
.answer-row{display:flex;align-items:flex-start;gap:12px;border:1px solid var(--line-200);border-radius:var(--r-md);
  padding:12px 14px;font-size:13.5px;line-height:20px;color:var(--ink-700);margin-bottom:8px;background:var(--white);
  transition:all .18s ease}
.answer-row .letter{font-family:var(--font-display);font-weight:700;font-size:12px;color:var(--ink-500);
  width:22px;height:22px;border:1.5px solid var(--line-200);border-radius:50%;display:flex;align-items:center;justify-content:center;flex:none;margin-top:-1px}
.answer-row.selected{background:var(--primary-100);border:2px solid var(--primary-700);padding:11px 13px}
.answer-row.selected .letter{border-color:var(--primary-700);background:var(--primary-700);color:#fff}
.answer-row.correct{background:var(--band-above-bg);border-color:var(--band-above);color:var(--ink-900)}
.answer-row.correct .letter{border-color:var(--band-above);background:var(--band-above);color:#fff}
.answer-row.struck{color:var(--ink-300);text-decoration:line-through}

/* MN explanation card */
.mn-card{background:var(--primary-50);border-left:3px solid var(--primary-700);border-radius:0 var(--r-lg) var(--r-lg) 0;
  padding:16px 18px;font-size:13.5px;line-height:22px;color:var(--ink-700)}
.mn-card .mn-badge{display:inline-block;font-size:10.5px;font-weight:800;letter-spacing:.08em;color:var(--primary-700);
  background:var(--primary-100);border-radius:5px;padding:2px 8px;margin-bottom:8px}

/* exam chrome mock */
.exam-mock{border-radius:var(--r-lg);overflow:hidden;border:1px solid var(--line-200);box-shadow:var(--sh-raised);background:#fff;text-align:left}
.exam-topbar{background:var(--exam-800);color:#fff;display:flex;align-items:center;justify-content:space-between;
  padding:11px 18px;font-size:12.5px;font-weight:600}
.exam-topbar .timer{font-family:var(--font-body);font-variant-numeric:tabular-nums;font-weight:600;font-size:15px;letter-spacing:.03em}
.exam-topbar .flag{opacity:.85}
.exam-body{padding:20px 22px}
.exam-body .q-meta{font-size:11px;font-weight:700;letter-spacing:.06em;color:var(--exam-600);text-transform:uppercase;margin-bottom:8px}
.exam-body .q-stem{font-size:14.5px;line-height:23px;color:var(--ink-900);margin-bottom:14px}

/* score report card (shareable) */
.score-card{background:var(--white);border-radius:var(--r-card);box-shadow:var(--sh-raised);border:1px solid var(--line-200);
  padding:32px;text-align:center;position:relative;overflow:hidden}
.score-card .sc-logo{font-family:var(--font-display);font-weight:800;font-size:14px;color:var(--ink-500);margin-bottom:14px}
.score-card .sc-logo em{font-style:normal;color:var(--primary-700)}
.score-card .sc-score{font-family:var(--font-display);font-weight:800;font-size:72px;line-height:1;letter-spacing:-.03em;margin-bottom:6px}
.score-card .sc-date{font-size:12px;color:var(--ink-300);margin-top:16px}
.score-card .sc-chips{display:flex;justify-content:center;gap:8px;flex-wrap:wrap;margin-top:14px}

/* ---------- Feature cards ---------- */
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:28px}
@media(max-width:960px){.grid-3{grid-template-columns:1fr;max-width:480px;margin:0 auto}.grid-2{grid-template-columns:1fr}}

.feature-card{
  background:var(--surface-card);border-radius:var(--r-card);padding:38px 34px;
  border:1px solid transparent;transition:transform .3s cubic-bezier(.22,1,.36,1),box-shadow .3s ease,border-color .3s ease;
  position:relative;
}
.section.warm .feature-card,.section.brand .feature-card{background:var(--white)}
.feature-card:hover{transform:translateY(-6px);box-shadow:var(--sh-raised);border-color:var(--line-200)}
.feature-card .f-icon{
  width:52px;height:52px;border-radius:16px;background:var(--primary-100);color:var(--primary-700);
  display:flex;align-items:center;justify-content:center;margin-bottom:22px;
  transition:transform .3s ease;
}
.feature-card:hover .f-icon{transform:scale(1.08) rotate(-4deg)}
.feature-card .f-icon svg{width:24px;height:24px}
.feature-card h3{margin-bottom:10px}
.feature-card p{color:var(--ink-500);font-size:15px;line-height:24px}
.feature-card .f-more{display:inline-flex;align-items:center;gap:6px;font-weight:600;font-size:14px;margin-top:16px}

/* ---------- Dark stat card ---------- */
.dark-card{
  background:var(--primary-900);border-radius:var(--r-card);padding:44px 40px;color:#fff;
  position:relative;overflow:hidden;
}
.dark-card h3,.dark-card .t-h2{color:#fff}
.dark-card p{color:rgba(255,255,255,.72)}
.dark-card::after{content:'';position:absolute;width:340px;height:340px;border-radius:50%;
  background:radial-gradient(circle,rgba(109,70,207,.5),transparent 70%);bottom:-160px;right:-100px;pointer-events:none}

/* big numeral card */
.numeral-card{background:var(--white);border:1px solid var(--line-200);border-radius:var(--r-card);
  padding:44px 40px;display:flex;flex-direction:column;justify-content:center;box-shadow:var(--sh-card)}
.numeral-card .t-display-num{color:var(--primary-700)}
.numeral-card .num-label{font-size:16px;color:var(--ink-500);margin-top:8px}

/* stats band */
.stats-band{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;text-align:center}
.stats-band .stat .n{font-family:var(--font-display);font-weight:800;font-size:56px;line-height:1.05;
  letter-spacing:-.03em;color:var(--primary-700);font-variant-numeric:tabular-nums}
.stats-band .stat .n small{font-size:28px}
.stats-band .stat .l{color:var(--ink-500);font-size:14.5px;margin-top:8px}
@media(max-width:860px){.stats-band{grid-template-columns:repeat(2,1fr);gap:36px 20px}.stats-band .stat .n{font-size:42px}}

/* ---------- How-it-works tabs ---------- */
.hiw-tabs{display:flex;justify-content:center;gap:10px;margin-bottom:44px;flex-wrap:wrap}
.hiw-tab{
  display:flex;align-items:center;gap:10px;border-radius:var(--r-pill);
  border:1.5px solid var(--line-200);background:var(--white);padding:12px 24px;
  font-family:var(--font-display);font-weight:700;font-size:15px;color:var(--ink-700);
  transition:all .22s ease;
}
.hiw-tab .num{font-size:12px;font-weight:800;color:var(--ink-300)}
.hiw-tab:hover{border-color:var(--primary-500);color:var(--primary-700)}
.hiw-tab.active{background:var(--primary-700);border-color:var(--primary-700);color:#fff}
.hiw-tab.active .num{color:rgba(255,255,255,.6)}
.hiw-panel{display:none;animation:fadeUp .45s cubic-bezier(.22,1,.36,1)}
.hiw-panel.active{display:grid;grid-template-columns:1fr 1.1fr;gap:48px;align-items:center}
@media(max-width:960px){.hiw-panel.active{grid-template-columns:1fr}}
.hiw-text h3{font-size:24px;line-height:32px;margin-bottom:14px}
.hiw-text>p{color:var(--ink-500);margin-bottom:22px}
.hiw-list li{display:flex;gap:12px;margin-bottom:14px;font-size:15px;color:var(--ink-700)}
.hiw-list .check{width:22px;height:22px;border-radius:50%;background:var(--band-above-bg);color:var(--band-above);
  display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:800;flex:none;margin-top:1px}

/* ---------- Pricing ---------- */
.price-toggle{display:inline-flex;background:var(--white);border:1.5px solid var(--line-200);
  border-radius:var(--r-pill);padding:5px;margin:0 auto 48px;position:relative}
.price-toggle button{font-family:var(--font-display);font-weight:700;font-size:14.5px;color:var(--ink-500);
  border-radius:var(--r-pill);padding:10px 22px;display:flex;align-items:center;gap:8px;transition:all .2s ease}
.price-toggle button.active{background:var(--primary-700);color:#fff;box-shadow:0 4px 12px rgba(69,39,143,.25)}
.price-toggle .mini-pill{background:var(--band-above-bg);color:var(--band-above);font-size:11px;font-weight:700;
  border-radius:var(--r-pill);padding:2px 8px}
.price-toggle button.active .mini-pill{background:rgba(255,255,255,.2);color:#fff}

.price-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;align-items:stretch}
@media(max-width:960px){.price-grid{grid-template-columns:1fr;max-width:440px;margin:0 auto}}
.price-card{
  background:var(--white);border:1.5px solid var(--line-200);border-radius:var(--r-card);
  padding:38px 34px;display:flex;flex-direction:column;position:relative;
  transition:transform .3s cubic-bezier(.22,1,.36,1),box-shadow .3s ease;
}
.price-card:hover{transform:translateY(-6px);box-shadow:var(--sh-raised)}
.price-card.featured{background:var(--primary-50);border:1.5px solid var(--primary-700)}
.price-card .plan-label{display:flex;align-items:center;gap:8px;font-family:var(--font-display);
  font-weight:700;font-size:15px;color:var(--ink-700);margin-bottom:18px}
.price-card.featured .plan-label{color:var(--primary-700)}
.price-card .plan-label .dot{width:8px;height:8px;border-radius:50%;background:var(--primary-700)}
.price-card .amount{font-family:var(--font-display);font-weight:800;font-size:52px;line-height:1;
  letter-spacing:-.03em;font-variant-numeric:tabular-nums;margin-bottom:4px}
.price-card .amount small{font-size:20px;font-weight:700;color:var(--ink-500)}
.price-card .per{font-size:14px;color:var(--ink-500);margin-bottom:26px}
.price-card .plist{flex:1;margin-bottom:28px}
.price-card .plist li{display:flex;gap:11px;font-size:14.5px;line-height:21px;color:var(--ink-700);margin-bottom:13px}
.price-card .plist .check{width:20px;height:20px;border-radius:50%;background:var(--band-above-bg);color:var(--band-above);
  display:flex;align-items:center;justify-content:center;font-size:11px;font-weight:800;flex:none;margin-top:1px}
.price-card .plist li.off{color:var(--ink-300)}
.price-card .plist li.off .check{background:var(--surface-warm);color:var(--ink-300)}
.guarantee-note{background:var(--gold-100);border-radius:var(--r-lg);padding:14px 16px;font-size:13px;
  line-height:20px;color:var(--gold-600);font-weight:600;margin-bottom:24px;display:flex;gap:10px;align-items:flex-start}
.qpay-strip{display:flex;align-items:center;justify-content:center;gap:10px;margin-top:44px;color:var(--ink-500);font-size:14px}
.qpay-badge{display:inline-flex;align-items:center;gap:7px;border:1px solid var(--line-200);background:var(--white);
  border-radius:var(--r-md);padding:7px 14px;font-family:var(--font-display);font-weight:800;font-size:14px;color:var(--exam-800)}
.qpay-badge .q-ico{width:18px;height:18px;border-radius:5px;background:var(--exam-800);color:#fff;font-size:10px;
  display:flex;align-items:center;justify-content:center;font-weight:800}

/* ---------- Founder card ---------- */
.founder-card{background:var(--white);border-radius:var(--r-card);box-shadow:var(--sh-raised);
  padding:48px;display:grid;grid-template-columns:auto 1fr;gap:40px;align-items:center;max-width:880px;margin:0 auto}
@media(max-width:760px){.founder-card{grid-template-columns:1fr;text-align:center;padding:36px 28px}}
.founder-avatar{width:132px;height:132px;border-radius:50%;background:linear-gradient(135deg,var(--primary-100),var(--primary-50));
  border:4px solid var(--white);box-shadow:var(--sh-raised);display:flex;align-items:center;justify-content:center;
  font-family:var(--font-display);font-weight:800;font-size:40px;color:var(--primary-700);margin:0 auto}
.founder-quote{font-family:var(--font-display);font-weight:600;font-size:21px;line-height:32px;color:var(--ink-900);margin-bottom:18px}
.founder-name{font-weight:700;font-size:15px}
.founder-role{color:var(--ink-500);font-size:14px}

/* ---------- Resource / blog cards ---------- */
.res-card{background:var(--white);border:1px solid var(--line-200);border-radius:var(--r-card);overflow:hidden;
  display:flex;flex-direction:column;transition:transform .3s cubic-bezier(.22,1,.36,1),box-shadow .3s ease}
.res-card:hover{transform:translateY(-6px);box-shadow:var(--sh-raised)}
.res-thumb{height:190px;position:relative;overflow:hidden;display:flex;align-items:center;justify-content:center}
.res-thumb.v-purple{background:linear-gradient(135deg,var(--primary-100),var(--primary-50))}
.res-thumb.v-gold{background:linear-gradient(135deg,var(--gold-100),#FDF8EA)}
.res-thumb.v-navy{background:linear-gradient(135deg,var(--exam-50),#F5F9FE)}
.res-thumb.v-green{background:linear-gradient(135deg,var(--band-above-bg),#F1FAF5)}
.res-thumb .glyph{font-family:var(--font-display);font-weight:800;font-size:56px;opacity:.9}
.res-body{padding:26px 28px 30px;flex:1;display:flex;flex-direction:column}
.res-body .res-meta{display:flex;align-items:center;gap:10px;margin-bottom:14px}
.res-body .cat-pill{font-size:11.5px;font-weight:700;color:var(--primary-700);background:var(--primary-100);
  border-radius:var(--r-pill);padding:4px 11px}
.res-body .res-date{font-size:12.5px;color:var(--ink-300)}
.res-body h3{font-size:18px;line-height:26px;margin-bottom:8px}
.res-body h3 a{color:inherit}
.res-body h3 a:hover{color:var(--primary-700)}
.res-body p{font-size:14px;line-height:22px;color:var(--ink-500);flex:1}

/* ---------- B2B strip ---------- */
.b2b-strip{background:var(--primary-50);border-radius:var(--r-card);padding:40px 48px;
  display:flex;align-items:center;justify-content:space-between;gap:28px;flex-wrap:wrap}
.b2b-strip h3{font-size:22px;margin-bottom:6px}
.b2b-strip p{color:var(--ink-500);font-size:15px}

/* ---------- CTA band ---------- */
.cta-band{position:relative;overflow:hidden;background:var(--primary-900);border-radius:var(--r-hero);
  padding:90px 48px;text-align:center;color:#fff;isolation:isolate}
.cta-band h2{color:#fff;margin-bottom:14px}
.cta-band p{color:rgba(255,255,255,.72);max-width:520px;margin:0 auto 34px;font-size:17px}
.cta-band .blob{opacity:.9}
.cta-band .cb1{width:520px;height:520px;background:radial-gradient(circle,rgba(109,70,207,.45),transparent 70%);top:-200px;left:-140px}
.cta-band .cb2{width:460px;height:460px;background:radial-gradient(circle,rgba(224,185,78,.22),transparent 70%);bottom:-200px;right:-120px}
.cta-band .btn-primary{background:#fff;color:var(--primary-900)}
.cta-band .btn-primary:hover{background:var(--primary-50);box-shadow:0 8px 28px rgba(0,0,0,.3)}
.cta-band .btn-secondary{background:transparent;color:#fff;border-color:rgba(255,255,255,.35)}
.cta-band .btn-secondary:hover{border-color:#fff;color:#fff}

/* ---------- FAQ accordion ---------- */
.faq-list{max-width:760px;margin:0 auto}
.faq-item{background:var(--white);border:1px solid var(--line-200);border-radius:var(--r-lg);
  margin-bottom:12px;overflow:hidden;transition:box-shadow .25s ease}
.faq-item.open{box-shadow:var(--sh-card)}
.faq-q{width:100%;display:flex;align-items:center;justify-content:space-between;gap:16px;text-align:left;
  font-family:var(--font-display);font-weight:700;font-size:16.5px;color:var(--ink-900);padding:22px 26px}
.faq-q .chev{width:28px;height:28px;border-radius:50%;background:var(--surface-warm);color:var(--ink-700);
  display:flex;align-items:center;justify-content:center;flex:none;transition:transform .3s ease,background .3s ease;font-size:13px}
.faq-item.open .chev{transform:rotate(180deg);background:var(--primary-100);color:var(--primary-700)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .4s cubic-bezier(.22,1,.36,1)}
.faq-a-inner{padding:0 26px 24px;color:var(--ink-500);font-size:15px;line-height:25px}
.faq-cat{font-family:var(--font-display);font-weight:700;font-size:14px;letter-spacing:.05em;text-transform:uppercase;
  color:var(--ink-300);margin:40px 0 16px}
.faq-list .faq-cat:first-child{margin-top:0}

/* ---------- Forms ---------- */
.field{margin-bottom:20px}
.field label{display:block;font-weight:600;font-size:14px;color:var(--ink-700);margin-bottom:8px}
.field input,.field textarea,.field select{
  width:100%;font-family:var(--font-body);font-size:15px;color:var(--ink-900);
  background:var(--white);border:1.5px solid var(--line-200);border-radius:var(--r-md);
  padding:13px 16px;outline:none;transition:border-color .2s ease,box-shadow .2s ease;
}
.field input:focus,.field textarea:focus,.field select:focus{border-color:var(--primary-700);box-shadow:0 0 0 4px var(--primary-100)}
.field textarea{min-height:130px;resize:vertical;line-height:24px}
.field .hint{font-size:12.5px;color:var(--ink-500);margin-top:6px}

/* ---------- Auth pages ---------- */
.auth-wrap{min-height:calc(100vh - 76px);display:grid;grid-template-columns:1fr 1fr;position:relative}
@media(max-width:960px){.auth-wrap{grid-template-columns:1fr}}
.auth-left{display:flex;align-items:center;justify-content:center;padding:70px 32px}
.auth-card{width:100%;max-width:420px}
.auth-card h1{font-size:30px;line-height:38px;margin-bottom:10px}
.auth-card .auth-sub{color:var(--ink-500);font-size:15px;margin-bottom:34px}
.auth-side{background:var(--surface-warm);position:relative;overflow:hidden;display:flex;
  align-items:center;justify-content:center;padding:60px 48px;isolation:isolate}
@media(max-width:960px){.auth-side{display:none}}
.auth-divider{display:flex;align-items:center;gap:14px;margin:26px 0;color:var(--ink-300);font-size:13px}
.auth-divider::before,.auth-divider::after{content:'';flex:1;height:1px;background:var(--line-200)}
.auth-foot{text-align:center;font-size:14.5px;color:var(--ink-500);margin-top:28px}
.auth-foot a{font-weight:600}

/* ---------- Article / legal pages ---------- */
.article{max-width:760px;margin:0 auto}
.article h2{font-size:26px;line-height:34px;margin:52px 0 16px}
.article h3{font-size:19px;margin:34px 0 12px}
.article p{color:var(--ink-700);margin-bottom:16px;line-height:27px}
.article ul,.article ol{margin:0 0 18px 22px;color:var(--ink-700)}
.article ul{list-style:disc}
.article ul li,.article ol li{margin-bottom:8px;line-height:26px}
.article .note-card{background:var(--primary-50);border-left:3px solid var(--primary-700);border-radius:0 var(--r-lg) var(--r-lg) 0;
  padding:20px 22px;margin:24px 0;font-size:15px;color:var(--ink-700)}
.article .warn-card{background:var(--band-near-bg);border-left:3px solid var(--band-near);border-radius:0 var(--r-lg) var(--r-lg) 0;
  padding:20px 22px;margin:24px 0;font-size:15px;color:var(--ink-700)}
.page-hero{padding:90px 0 70px;text-align:center;position:relative;overflow:hidden}
.page-hero .label-pill{margin-bottom:20px}
.page-hero h1{margin-bottom:16px}
.page-hero p{color:var(--ink-500);font-size:18px;max-width:620px;margin:0 auto}
.legal-updated{font-size:13.5px;color:var(--ink-300);margin-top:14px}

/* steps (guide page) */
.step-row{display:grid;grid-template-columns:64px 1fr;gap:24px;margin-bottom:36px}
.step-num{width:52px;height:52px;border-radius:16px;background:var(--primary-100);color:var(--primary-700);
  font-family:var(--font-display);font-weight:800;font-size:20px;display:flex;align-items:center;justify-content:center}
.step-row h3{margin:12px 0 8px;font-size:19px}
.step-row p{color:var(--ink-500);font-size:15px;line-height:25px}

/* ---------- Contact ---------- */
.contact-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:56px;align-items:start}
@media(max-width:960px){.contact-grid{grid-template-columns:1fr}}
.contact-info-card{display:flex;gap:16px;align-items:flex-start;padding:22px 0;border-bottom:1px solid var(--line-200)}
.contact-info-card:last-child{border-bottom:none}
.contact-info-card .ci-icon{width:44px;height:44px;border-radius:14px;background:var(--primary-100);color:var(--primary-700);
  display:flex;align-items:center;justify-content:center;flex:none}
.contact-info-card h3{font-size:16px;margin-bottom:3px}
.contact-info-card p{color:var(--ink-500);font-size:14.5px}

/* ---------- Footer ---------- */
.site-footer{background:var(--white);border-top:1px solid var(--line-200);padding:72px 0 0;position:relative}
.footer-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:40px;padding-bottom:56px}
@media(max-width:860px){.footer-grid{grid-template-columns:1fr 1fr}}
@media(max-width:560px){.footer-grid{grid-template-columns:1fr}}
.footer-grid .f-brand p{color:var(--ink-500);font-size:14.5px;line-height:23px;margin-top:16px;max-width:280px}
.footer-grid h4{font-family:var(--font-display);font-weight:700;font-size:14px;letter-spacing:.04em;
  text-transform:uppercase;color:var(--ink-300);margin-bottom:18px}
.footer-grid ul li{margin-bottom:11px}
.footer-grid ul a{color:var(--ink-700);font-size:14.5px}
.footer-grid ul a:hover{color:var(--primary-700)}
.footer-bottom{border-top:1px solid var(--line-200);padding:24px 0;display:flex;align-items:center;
  justify-content:space-between;gap:16px;flex-wrap:wrap;font-size:13.5px;color:var(--ink-500)}
.footer-bottom .disclaimer{font-size:12px;color:var(--ink-300);max-width:640px;line-height:18px}

/* ---------- 404 ---------- */
.nf-wrap{min-height:70vh;display:flex;align-items:center;justify-content:center;text-align:center;
  position:relative;overflow:hidden;padding:80px 24px}
.nf-num{font-family:var(--font-display);font-weight:800;font-size:160px;line-height:1;letter-spacing:-.04em;
  color:var(--primary-100);position:relative}
.nf-num span{color:var(--primary-700)}

/* ============================================================
   MOTION & EFFECTS
   ============================================================ */

/* cursor glow — soft radial light that tracks the mouse */
#cursor-glow{
  position:fixed;top:0;left:0;width:520px;height:520px;border-radius:50%;
  background:radial-gradient(circle,rgba(109,70,207,.07) 0%,rgba(109,70,207,.03) 40%,transparent 70%);
  pointer-events:none;z-index:5;transform:translate(-50%,-50%);
  transition:opacity .4s ease;opacity:0;will-change:left,top;
}
body.mouse-active #cursor-glow{opacity:1}

/* cursor dot trail */
.trail-dot{position:fixed;top:0;left:0;width:6px;height:6px;border-radius:50%;
  background:var(--primary-500);pointer-events:none;z-index:6;opacity:0;
  transform:translate(-50%,-50%)}

/* scroll reveal */
.reveal{opacity:0;transform:translateY(34px);transition:opacity .8s cubic-bezier(.22,1,.36,1),transform .8s cubic-bezier(.22,1,.36,1)}
.reveal.in{opacity:1;transform:none}
.reveal.d1{transition-delay:.08s}.reveal.d2{transition-delay:.16s}.reveal.d3{transition-delay:.24s}
.reveal.d4{transition-delay:.32s}.reveal.d5{transition-delay:.4s}

@keyframes fadeUp{from{opacity:0;transform:translateY(22px)}to{opacity:1;transform:none}}

/* tilt cards (mouse-track 3D) */
.tilt{transform-style:preserve-3d;will-change:transform}
.tilt .tilt-inner{transform:translateZ(24px)}

/* marquee (logo / trust strip) */
.marquee{overflow:hidden;position:relative;--gap:56px}
.marquee .marquee-track{display:flex;gap:var(--gap);width:max-content;animation:marquee 30s linear infinite}
.marquee:hover .marquee-track{animation-play-state:paused}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(calc(-50% - var(--gap)/2))}}
.marquee .m-item{display:flex;align-items:center;gap:10px;color:var(--ink-300);font-family:var(--font-display);
  font-weight:700;font-size:15px;white-space:nowrap}
.marquee .m-item .m-dot{width:6px;height:6px;border-radius:50%;background:var(--gold-400)}
.marquee-fade{position:absolute;top:0;bottom:0;width:120px;z-index:2;pointer-events:none}
.marquee-fade.left{left:0;background:linear-gradient(90deg,var(--surface-warm),transparent)}
.marquee-fade.right{right:0;background:linear-gradient(-90deg,var(--surface-warm),transparent)}
.section:not(.warm) .marquee-fade.left{background:linear-gradient(90deg,var(--white),transparent)}
.section:not(.warm) .marquee-fade.right{background:linear-gradient(-90deg,var(--white),transparent)}

/* counting numbers */
[data-count]{font-variant-numeric:tabular-nums}

/* reduced motion */
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.001s!important;transition-duration:.001s!important}
  .reveal{opacity:1;transform:none}
  #cursor-glow,.trail-dot{display:none}
}
