/* ==========================================================================
   GenioPrep — Landing System
   Glow-orb brand · dark + light themes
   Fonts: Sora (display) · Plus Jakarta Sans (body) · JetBrains Mono (numbers)
   ========================================================================== */

/* ---------- Tokens ---------- */
:root,
[data-theme="dark"] {
  color-scheme: dark;

  /* surfaces */
  --bg: #0A1026;
  --bg-alt: #0C1230;
  --surface: #0E1530;
  --surface-2: #141C3A;
  --surface-3: #1B2549;
  --ink-sq: #1A1A2E;

  /* lines */
  --border: rgba(255,255,255,0.08);
  --border-hi: rgba(255,255,255,0.15);

  /* text */
  --text: #F6F8FF;
  --text-mid: #C4CDEA;
  --text-dim: #8F9CC4;
  --text-faint: #5C6890;

  /* brand */
  --gold: #F0A500;
  --gold-bright: #FFD56A;
  --gold-core: #FFF6E0;
  --gold-deep: #8A5400;
  --gold-text: #FFD56A;          /* gold used as text/accents */
  --blue: #2E6BFF;
  --blue-hi: #4D82FF;
  --cyan: #38BDF8;
  --indigo: #6366F1;

  /* signal (scores only) */
  --green: #22C55E;
  --amber: #F59E0B;
  --red: #F4595B;

  /* gradients */
  --grad-gold: linear-gradient(135deg, #FFD56A 0%, #F0A500 100%);
  --grad-brand: linear-gradient(135deg, #38BDF8 0%, #2E6BFF 55%, #6366F1 100%);

  /* effects */
  --shadow-card: 0 24px 70px rgba(0,0,0,0.45);
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.30);
  --glow-gold: 0 0 50px rgba(240,165,0,0.16);
  --hero-glow: rgba(240,165,0,0.16);
  --hero-glow-2: rgba(46,107,255,0.12);

  /* tint fills */
  --tint-gold: rgba(240,165,0,0.10);
  --tint-gold-line: rgba(240,165,0,0.28);
  --tint-cyan: rgba(56,189,248,0.10);
  --tint-cyan-line: rgba(56,189,248,0.26);
  --tint-blue: rgba(46,107,255,0.12);
  --tint-blue-line: rgba(46,107,255,0.30);
  --tint-neutral: rgba(255,255,255,0.05);
}

[data-theme="light"] {
  color-scheme: light;

  --bg: #F6F8FF;
  --bg-alt: #ECEFFB;
  --surface: #FFFFFF;
  --surface-2: #F4F6FC;
  --surface-3: #ECEFFB;
  --ink-sq: #11162C;

  --border: rgba(16,24,56,0.10);
  --border-hi: rgba(16,24,56,0.18);

  --text: #0A1026;
  --text-mid: #34406A;
  --text-dim: #5A6485;
  --text-faint: #8A92AC;

  --gold-text: #8A5600;          /* deep gold for AA text on light */
  --blue: #1F5FE0;
  --blue-hi: #1750C4;

  --shadow-card: 0 24px 60px rgba(16,24,56,0.12);
  --shadow-soft: 0 8px 24px rgba(16,24,56,0.08);
  --glow-gold: 0 0 50px rgba(240,165,0,0.12);
  --hero-glow: rgba(240,165,0,0.16);
  --hero-glow-2: rgba(46,107,255,0.10);

  --tint-gold: rgba(240,165,0,0.12);
  --tint-gold-line: rgba(185,116,0,0.30);
  --tint-cyan: rgba(46,107,255,0.08);
  --tint-cyan-line: rgba(31,95,224,0.28);
  --tint-blue: rgba(46,107,255,0.10);
  --tint-blue-line: rgba(31,95,224,0.30);
  --tint-neutral: rgba(16,24,56,0.04);
}

/* radius scale */
:root {
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --container: 1180px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--text);
}
p { margin: 0; }
img, svg { display: block; max-width: 100%; }
.mono { font-family: "JetBrains Mono", monospace; font-variant-numeric: tabular-nums; }

.container { width: min(calc(100% - 44px), var(--container)); margin-inline: auto; }

/* skip link */
.skip-link {
  position: absolute; left: 14px; top: -60px;
  background: var(--surface); color: var(--text);
  border: 1px solid var(--border-hi);
  padding: 10px 18px; border-radius: 10px;
  font-weight: 600; font-size: .9rem; z-index: 1000;
  transition: top .2s ease;
}
.skip-link:focus { top: 14px; }

/* focus visibility */
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 6px;
}
[data-theme="light"] :focus-visible { outline-color: var(--blue); }

/* ---------- Logo mark (glow orb) ---------- */
.orb {
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, var(--gold-core) 0%, var(--gold-bright) 20%, var(--gold) 48%, #C97E00 74%, var(--gold-deep) 100%);
  box-shadow: 0 0 16px 1px rgba(240,165,0,.5), 0 0 40px 5px rgba(240,165,0,.24),
              inset 0 -4px 11px rgba(120,72,0,.45), inset 0 4px 9px rgba(255,246,224,.55);
}
.sq {
  background: var(--ink-sq);
  border-radius: 28%;
  display: grid; place-items: center;
  flex: none; position: relative; overflow: hidden;
}
.sq::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 42%, rgba(240,165,0,.22), transparent 62%);
}
.wordmark {
  font-family: "Sora", sans-serif; font-weight: 700;
  letter-spacing: -0.03em; color: var(--text);
}
.wordmark b { color: var(--gold-text); font-weight: 700; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px; border-radius: 999px;
  font-family: "Sora", sans-serif; font-size: .95rem; font-weight: 600;
  cursor: pointer; border: 1px solid transparent; white-space: nowrap; line-height: 1;
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--grad-gold); color: #3A2600;
  box-shadow: 0 8px 24px rgba(240,165,0,.30);
}
.btn-primary:hover { box-shadow: 0 14px 34px rgba(240,165,0,.42); }
.btn-outline {
  background: transparent; color: var(--text); border-color: var(--border-hi);
}
.btn-outline:hover { border-color: var(--text-dim); background: var(--tint-neutral); }
.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 8px 24px rgba(46,107,255,.3); }
.btn-sm { padding: 10px 18px; font-size: .85rem; }
.btn-full { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand .sq { width: 34px; height: 34px; }
.brand .orb { width: 21px; height: 21px; }
.brand .wordmark { font-size: 1.18rem; }
.nav-links {
  display: flex; align-items: center; gap: 30px;
  font-size: .9rem; font-weight: 600; color: var(--text-dim);
}
.nav-links a { transition: color .18s ease; }
.nav-links a:hover { color: var(--text); }
.nav-badge {
  display: inline-block; margin-left: 5px; padding: 2px 8px; border-radius: 999px;
  background: var(--tint-cyan); color: var(--cyan); font-size: .68rem; font-weight: 700;
  vertical-align: middle;
}
.nav-right { display: inline-flex; align-items: center; gap: 14px; }
.nav-auth { display: inline-flex; align-items: center; gap: 14px; }
.nav-login { color: var(--text-dim); font-weight: 600; font-size: .9rem; transition: color .18s; }
.nav-login:hover { color: var(--text); }

/* hamburger */
.nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; padding: 9px; background: none; border: none; cursor: pointer; color: var(--text); border-radius: 8px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .22s ease, opacity .22s ease; }
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile nav drawer */
.mobile-nav { display: none; }
.mobile-nav-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.45); opacity: 0; pointer-events: none; transition: opacity .25s; z-index: 98; }
.mobile-nav-panel { position: fixed; top: 0; right: 0; bottom: 0; width: min(300px, 85vw); background: var(--bg); border-left: 1px solid var(--border); padding: 90px 28px 40px; transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1); z-index: 99; display: flex; flex-direction: column; overflow-y: auto; }
.mobile-nav[aria-hidden="false"] .mobile-nav-backdrop { opacity: 1; pointer-events: auto; }
.mobile-nav[aria-hidden="false"] .mobile-nav-panel { transform: translateX(0); }

/* theme toggle */
.theme-toggle {
  width: 44px; height: 44px; border-radius: 999px;
  display: grid; place-items: center; cursor: pointer;
  background: var(--tint-neutral); border: 1px solid var(--border);
  color: var(--text-mid); transition: color .2s, border-color .2s, background-color .2s;
}
.theme-toggle:hover { color: var(--text); border-color: var(--border-hi); }
.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle .icon-moon { display: none; }
.theme-toggle .icon-sun { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: block; }
[data-theme="light"] .theme-toggle .icon-sun { display: none; }

/* Auth slot (injected by genioprep-auth.js) */
.gp-auth-slot { display: inline-flex; align-items: center; }

/* ---------- Eyebrow pills ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 15px; border-radius: 999px;
  font-size: .74rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
}
.eyebrow.gold { color: var(--gold-text); background: var(--tint-gold); border: 1px solid var(--tint-gold-line); }
.eyebrow.cyan { color: var(--cyan); background: var(--tint-cyan); border: 1px solid var(--tint-cyan-line); }
[data-theme="light"] .eyebrow.cyan { color: var(--blue); }
.eyebrow.gold::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 7px var(--gold); }
.eyebrow.cyan::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 7px var(--cyan); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 104px 0 96px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -240px; right: -120px;
  width: 760px; height: 620px; pointer-events: none;
  background: radial-gradient(ellipse at 60% 40%, var(--hero-glow) 0%, transparent 68%);
}
.hero::after {
  content: ""; position: absolute; top: 80px; left: -200px;
  width: 620px; height: 560px; pointer-events: none;
  background: radial-gradient(ellipse at 40% 40%, var(--hero-glow-2) 0%, transparent 66%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 470px; gap: 64px; align-items: center; position: relative; }
.hero h1 {
  font-size: clamp(2.5rem, 5.4vw, 4rem); font-weight: 800;
  letter-spacing: -0.04em; line-height: 1.05; margin: 22px 0;
}
.hero h1 .accent {
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub { font-size: 1.15rem; color: var(--text-mid); line-height: 1.65; max-width: 540px; margin-bottom: 34px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 20px; font-size: .85rem; color: var(--text-dim); }
.hero-note strong { color: var(--text); font-weight: 600; }

/* ---------- Score card ---------- */
.score-card {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-hi);
  border-radius: var(--r-lg); padding: 30px;
  box-shadow: var(--shadow-card), var(--glow-gold);
  position: relative; overflow: hidden;
}
.score-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--grad-gold); }
.score-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.score-card-label { font-size: .72rem; font-weight: 700; color: var(--text-dim); letter-spacing: .12em; text-transform: uppercase; }
.score-card-live { font-size: .72rem; color: var(--gold-text); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.score-card-live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: pulse 1.6s infinite; }
.score-ring-wrap { display: flex; align-items: center; gap: 20px; margin-bottom: 26px; }
.ring { width: 84px; height: 84px; flex: none; position: relative; }
.ring svg { transform: rotate(-90deg); }
.ring-track { fill: none; stroke: var(--surface-3); stroke-width: 7; }
.ring-fill { fill: none; stroke: url(#goldGrad); stroke-width: 7; stroke-linecap: round; }
.ring-num { position: absolute; inset: 0; display: grid; place-items: center; font-family: "JetBrains Mono", monospace; font-size: 1.3rem; font-weight: 700; color: var(--text); }
.score-ring-info .score-ring-title { font-family: "Sora", sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 5px; }
.score-ring-info p { font-size: .84rem; color: var(--text-dim); line-height: 1.5; }
.score-dims { display: flex; flex-direction: column; gap: 12px; }
.dim-row { display: flex; align-items: center; gap: 12px; }
.dim-label { flex: 0 0 122px; font-size: .8rem; font-weight: 500; color: var(--text-mid); white-space: nowrap; }
.dim-track { flex: 1; height: 6px; border-radius: 999px; background: var(--surface-3); overflow: hidden; }
.dim-fill { display: block; height: 100%; border-radius: 999px; background: var(--grad-gold); }
.w-62 { width: 62%; } .w-71 { width: 71%; } .w-79 { width: 79%; } .w-81 { width: 81%; } .w-84 { width: 84%; }
.section-top { padding-top: 64px; }
.dim-val { flex: 0 0 30px; text-align: right; font-family: "JetBrains Mono", monospace; font-size: .82rem; font-weight: 500; color: var(--text); }
.score-card-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 20px;
  padding: 8px 14px; border-radius: 999px;
  background: var(--tint-cyan); border: 1px solid var(--tint-cyan-line);
  color: var(--cyan); font-size: .78rem; font-weight: 600;
}
[data-theme="light"] .score-card-badge { color: var(--blue); }
.score-card-badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--bg-alt); border-block: 1px solid var(--border); padding: 26px 0; }
.trust-items { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 18px 36px; }
.trust-item { display: inline-flex; align-items: center; gap: 10px; font-size: .86rem; color: var(--text-mid); font-weight: 500; }
.trust-item svg { width: 18px; height: 18px; stroke: var(--gold-text); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* ---------- Section base ---------- */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }
.section-heading { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-heading h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 16px 0; }
.section-heading p { color: var(--text-dim); font-size: 1.05rem; line-height: 1.65; }

/* ---------- Feature trio ---------- */
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 36px; }
.trio-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 30px 26px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.trio-card:hover { border-color: var(--border-hi); box-shadow: var(--shadow-soft); transform: translateY(-3px); }
.trio-ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 18px; background: var(--tint-gold); }
.trio-ico svg { width: 24px; height: 24px; stroke: var(--gold-text); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.trio-card h3 { font-size: 1.1rem; margin-bottom: 9px; }
.trio-card p { font-size: .9rem; color: var(--text-dim); line-height: 1.6; }
.center { text-align: center; }
.link-btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border-hi); color: var(--text-mid);
  padding: 11px 24px; border-radius: 999px; font-weight: 600; font-size: .9rem;
  transition: color .18s, border-color .18s, background-color .18s;
}
.link-btn:hover { color: var(--text); border-color: var(--text-dim); background: var(--tint-neutral); }

/* ---------- Pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pillar {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 34px 30px; position: relative;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.pillar:hover { border-color: var(--border-hi); box-shadow: var(--shadow-soft); transform: translateY(-3px); }
.pillar.featured { border-color: var(--tint-gold-line); box-shadow: 0 0 0 1px var(--tint-gold-line), var(--glow-gold); }
.pillar-ico { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 20px; background: var(--tint-gold); }
.pillar-ico svg { width: 26px; height: 26px; stroke: var(--gold-text); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.pillar-ico.cyan { background: var(--tint-cyan); }
.pillar-ico.cyan svg { stroke: var(--cyan); }
[data-theme="light"] .pillar-ico.cyan svg { stroke: var(--blue); }
.pillar-ico.blue { background: var(--tint-blue); }
.pillar-ico.blue svg { stroke: var(--blue-hi); }
.pillar h3 { font-size: 1.15rem; margin-bottom: 11px; }
.pillar p { font-size: .9rem; color: var(--text-dim); line-height: 1.62; margin-bottom: 22px; }
.tag { display: inline-block; padding: 5px 12px; border-radius: 999px; font-size: .74rem; font-weight: 600; }
.tag-cyan { background: var(--tint-cyan); color: var(--cyan); border: 1px solid var(--tint-cyan-line); }
[data-theme="light"] .tag-cyan { color: var(--blue); }
.tag-gold { background: var(--tint-gold); color: var(--gold-text); border: 1px solid var(--tint-gold-line); }
.tag-neutral { background: var(--tint-neutral); color: var(--text-dim); border: 1px solid var(--border); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 38px; left: calc(16.66% + 26px); right: calc(16.66% + 26px); height: 2px;
  background: linear-gradient(90deg, var(--tint-gold-line), var(--tint-cyan-line));
}
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 34px 28px; text-align: center; position: relative; }
.step-num {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%;
  background: var(--grad-gold); color: #3A2600; font-family: "JetBrains Mono", monospace;
  font-size: 1.05rem; font-weight: 700; margin: 0 auto 20px;
  box-shadow: 0 0 0 7px var(--tint-gold);
}
.step h3 { font-size: 1.05rem; margin-bottom: 10px; }
.step p { font-size: .9rem; color: var(--text-dim); line-height: 1.6; }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-copy h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin: 18px 0 16px; }
.split-copy > p { font-size: .98rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 20px; }
.bullets { list-style: none; padding: 0; margin: 0 0 30px; display: flex; flex-direction: column; gap: 12px; }
.bullets li { display: flex; align-items: flex-start; gap: 11px; font-size: .92rem; color: var(--text-mid); }
.bullets li svg { width: 20px; height: 20px; flex: none; margin-top: 1px; stroke: var(--gold-text); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Dim cards ---------- */
.dims { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dim-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 24px 20px; text-align: center; transition: border-color .2s, transform .2s; }
.dim-card:hover { border-color: var(--border-hi); transform: translateY(-2px); }
.dim-ring { width: 66px; height: 66px; margin: 0 auto 14px; position: relative; }
.dim-ring svg { transform: rotate(-90deg); }
.dim-ring-track { fill: none; stroke: var(--surface-3); stroke-width: 6; }
.dim-ring-fill { fill: none; stroke-width: 6; stroke-linecap: round; }
.dim-ring-num { position: absolute; inset: 0; display: grid; place-items: center; font-family: "JetBrains Mono", monospace; font-size: .95rem; font-weight: 700; color: var(--text); }
.dim-card h4 { font-size: .86rem; font-weight: 700; margin-bottom: 6px; }
.dim-card p { font-size: .78rem; color: var(--text-dim); line-height: 1.5; }

/* ---------- Builder teaser ---------- */
.teaser { text-align: center; max-width: 740px; margin-inline: auto; }
.teaser h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin: 16px 0 18px; }
.teaser h2 .accent { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.teaser > p { color: var(--text-dim); font-size: 1.06rem; line-height: 1.7; margin-bottom: 30px; }
.chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 34px; }
.chip { padding: 9px 17px; border: 1px solid var(--border-hi); border-radius: 999px; font-size: .84rem; color: var(--text-mid); }

/* ---------- Interview preview ---------- */
.interview {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-hi); border-radius: var(--r-lg);
  padding: 34px; box-shadow: var(--shadow-card);
}
.interview-head { display: flex; align-items: center; gap: 13px; margin-bottom: 24px; }
.mic { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--tint-gold); border: 1px solid var(--tint-gold-line); }
.mic svg { width: 22px; height: 22px; stroke: var(--gold-text); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.interview-head h4 { font-size: .95rem; margin-bottom: 3px; }
.live-badge { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 600; color: var(--green); }
.live-badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 1.5s infinite; }
.transcript { display: flex; flex-direction: column; gap: 15px; margin-bottom: 22px; }
.t-line { display: flex; gap: 12px; }
.t-who { flex: none; padding: 3px 10px; border-radius: 999px; font-size: .68rem; font-weight: 700; height: fit-content; }
.t-ai { background: var(--tint-gold); color: var(--gold-text); }
.t-user { background: var(--tint-neutral); color: var(--text-dim); }
.t-line p { font-size: .88rem; color: var(--text-mid); line-height: 1.55; }
.wave { display: flex; align-items: center; gap: 12px; }
.wave-bars { display: flex; align-items: center; gap: 4px; height: 28px; }
.wave-bar { width: 3px; border-radius: 999px; background: var(--gold); animation: wave .9s ease-in-out infinite; }
.wave-bar:nth-child(1) { height: 12px; animation-delay: 0s; }
.wave-bar:nth-child(2) { height: 22px; animation-delay: .1s; }
.wave-bar:nth-child(3) { height: 16px; animation-delay: .2s; }
.wave-bar:nth-child(4) { height: 26px; animation-delay: .15s; }
.wave-bar:nth-child(5) { height: 14px; animation-delay: .25s; }
.wave-bar:nth-child(6) { height: 20px; animation-delay: .05s; }
.wave span { font-size: .78rem; color: var(--text-dim); }
@keyframes wave { 0%,100% { transform: scaleY(1); } 50% { transform: scaleY(.4); } }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.price {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 30px 24px; display: flex; flex-direction: column; transition: border-color .2s, transform .2s;
}
.price:hover { border-color: var(--border-hi); transform: translateY(-3px); }
.price.featured { border-color: var(--tint-gold-line); box-shadow: 0 0 0 1px var(--tint-gold-line), var(--glow-gold); position: relative; }
.price.featured::before {
  content: "Most Popular"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--grad-gold); color: #3A2600; font-size: .7rem; font-weight: 700;
  padding: 5px 14px; border-radius: 999px; white-space: nowrap;
}
.price-label { font-size: .76rem; font-weight: 700; color: var(--text-dim); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; }
.price-amt { font-family: "JetBrains Mono", monospace; font-size: 2.1rem; font-weight: 700; color: var(--text); letter-spacing: -.03em; margin-bottom: 3px; }
.price-amt sup { font-size: 1.1rem; top: -.5em; }
.price-per { font-size: .8rem; color: var(--text-dim); margin-bottom: 20px; }
.price-feat { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.price-feat li { font-size: .82rem; color: var(--text-mid); display: flex; align-items: flex-start; gap: 9px; line-height: 1.45; }
.price-feat li svg { width: 16px; height: 16px; flex: none; margin-top: 2px; stroke: var(--gold-text); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.price .btn { margin-top: auto; }
.pricing-note { text-align: center; margin-top: 26px; font-size: .85rem; color: var(--text-dim); }
.pricing-note a { color: var(--gold-text); font-weight: 600; }
[data-theme="light"] .pricing-note a { color: var(--blue); }

/* ---------- FAQ ---------- */
.faq { display: grid; max-width: 760px; margin-inline: auto; gap: 12px; }
.faq details { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 0 22px; transition: border-color .2s; }
.faq details[open] { border-color: var(--border-hi); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  min-height: 66px; cursor: pointer; font-family: "Sora", sans-serif; font-weight: 600;
  font-size: .98rem; color: var(--text); list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--tint-neutral); position: relative; transition: transform .25s ease;
  background-image: linear-gradient(var(--text-dim),var(--text-dim)), linear-gradient(var(--text-dim),var(--text-dim));
  background-size: 11px 2px, 2px 11px; background-position: center; background-repeat: no-repeat;
}
.faq details[open] summary::after { transform: rotate(135deg); }
.faq details p { margin: 0 0 22px; color: var(--text-dim); font-size: .92rem; line-height: 1.65; }
.faq details p a { color: var(--gold-text); font-weight: 600; }
[data-theme="light"] .faq details p a { color: var(--blue); }

/* ---------- Final CTA ---------- */
.final-cta { padding: 60px 0 110px; }
.cta-panel {
  background: linear-gradient(140deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid var(--tint-gold-line); border-radius: var(--r-lg);
  padding: 84px 40px; text-align: center; position: relative; overflow: hidden;
  box-shadow: var(--glow-gold);
}
.cta-panel::before { content: ""; position: absolute; top: -180px; right: -120px; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle at 50% 50%, rgba(240,165,0,.18), transparent 66%); pointer-events: none; }
.cta-panel::after { content: ""; position: absolute; bottom: -220px; left: -120px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle at 50% 50%, rgba(46,107,255,.12), transparent 66%); pointer-events: none; }
.cta-panel h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); max-width: 640px; margin: 0 auto 16px; position: relative; }
.cta-panel p { max-width: 540px; margin: 0 auto 34px; color: var(--text-mid); font-size: 1.05rem; line-height: 1.65; position: relative; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 64px 0 40px; background: var(--bg-alt); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px 48px; padding-bottom: 40px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { color: var(--text-dim); font-size: .85rem; line-height: 1.6; margin-bottom: 20px; }
.footer-email { display: block; font-size: .84rem; color: var(--text-dim); font-weight: 500; margin-bottom: 16px; transition: color .18s; }
.footer-email:hover { color: var(--text); }
.footer-social { display: flex; gap: 8px; }
.footer-social-link { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 8px; background: var(--tint-neutral); color: var(--text-dim); transition: color .18s, background .18s; }
.footer-social-link:hover { color: var(--text); background: var(--border-hi); }
.footer-cols { display: contents; }
.footer-col-toggle { background: none; border: none; padding: 0 0 18px; cursor: default; color: var(--text); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; display: flex; align-items: center; font-family: inherit; width: 100%; outline: none; }
.footer-col-toggle:focus-visible { outline: 2px solid var(--border-hi); outline-offset: 2px; border-radius: 3px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
.footer-col ul a { color: var(--text-dim); font-size: .86rem; font-weight: 500; transition: color .18s; }
.footer-col ul a:hover { color: var(--text); }
.line-gap { display: inline-block; margin-top: .5em; }
.footer-soon { opacity: .45; pointer-events: none; }
.footer-soon span { font-size: .82em; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; color: var(--text-faint); font-size: .82rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-made span { color: var(--gold-text, #F8AF18); }
.back-to-top { position: fixed; bottom: 28px; right: 28px; width: 42px; height: 42px; border-radius: 50%; background: var(--tint-neutral); border: 1px solid var(--border-hi); color: var(--text); cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s, background .18s; z-index: 90; }
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--border-hi); transform: translateY(-2px); }

[data-theme="light"] .hero h1 .accent,
[data-theme="light"] .teaser h2 .accent {
  background: linear-gradient(135deg, #B07100 0%, #7A4B00 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ---------- Reveal ---------- */
/* Content visible by default — no entrance animation (safe for print, PDF, reduced-motion) */
.reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .wave-bar, .live-badge::before, .score-card-live::before { animation: none !important; }
  .btn:hover, .pillar:hover, .trio-card:hover, .price:hover, .dim-card:hover { transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .pillars, .trio { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: repeat(2, 1fr); }
  .dims { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr 400px; gap: 44px; }
  .footer-top { gap: 24px 36px; }
  .trio > :last-child:nth-child(odd),
  .pillars > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 10px);
    margin-inline: auto;
  }
}
@media (max-width: 900px) {
  .hero-grid, .split { grid-template-columns: 1fr; gap: 48px; }
  .split.reverse > *:first-child { order: 2; }
  .nav-links { display: none; }
  .nav-auth { display: none !important; }
  .nav-right .btn-sm { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-nav { display: block; }
  .mobile-nav-panel > a:not(.btn) { display: block; padding: 18px 0; font-size: 1.05rem; font-weight: 600; color: var(--text); border-bottom: 1px solid var(--border); transition: color .18s; }
  .mobile-nav-panel > a:not(.btn):hover { color: var(--gold, #c8900a); }
  .mobile-nav-login { color: var(--text-dim) !important; margin-top: 24px; }
  .mobile-nav-signup { color: var(--text) !important; font-weight: 600; }
  .mobile-nav-panel .btn { margin-top: 16px; width: 100%; text-align: center; justify-content: center; }
}
@media (max-width: 720px) {
  .hero { padding: 76px 0 76px; }
  .section { padding: 76px 0; }
  .trio, .pillars { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 16px; }
  .steps::before { display: none; }
  .pricing { grid-template-columns: 1fr; }
  .site-footer { padding: 44px 0 28px; }
  .footer-top { display: flex; flex-direction: column; gap: 24px; padding-bottom: 0; }
  .footer-cols { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border); margin-top: 8px; }
  .footer-col-toggle { cursor: pointer; padding: 18px 0; border-bottom: 1px solid var(--border); justify-content: space-between; }
  .footer-col-toggle::after { content: ''; display: block; width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(-135deg); transition: transform .2s; flex-shrink: 0; margin-left: auto; }
  .footer-col-toggle[aria-expanded="false"]::after { transform: rotate(45deg); }
  .footer-col ul { gap: 0; padding: 4px 0 8px; }
  .footer-col ul a { display: block; padding: 11px 0; }
  .footer-col-toggle[aria-expanded="false"] + ul { display: none; }

  .cta-panel { padding: 58px 24px; }
}
@media (max-width: 480px) {
  .dims { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .score-ring-wrap { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .back-to-top { bottom: 16px; right: 16px; width: 38px; height: 38px; }
}
