*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #140d1e;
  --bg-2:       #1a1128;
  --bg-card:    #201530;
  --border:     rgba(255,255,255,0.08);
  --border-m:   rgba(255,255,255,0.13);
  --accent:     #b066f8;
  --accent-dim: rgba(176,102,248,0.14);
  --accent-glow:rgba(176,102,248,0.32);
  --gold:       #e8b84b;
  --gold-dim:   rgba(232,184,75,0.14);
  --gold-glow:  rgba(232,184,75,0.32);
  --red:        #ff5c5c;
  --red-dim:    rgba(255,92,92,0.12);
  --text:       #f5f0ff;
  --muted:      #9085a8;
  /* --dim is used for real visitor-facing copy, so it must clear WCAG AA (4.5:1)
     on every background above: 5.27 on --bg, 5.05 on --bg-2, 4.82 on --bg-card. */
  --dim:        #907fae;
}

html { scroll-behavior: smooth; }
/* fixed nav would otherwise cover anything an in-page anchor jumps to */
[id] { scroll-margin-top: 96px; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--gold); color: #0a0608;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px;
  padding: 12px 20px; border-radius: 8px;
}
.skip-link:focus { top: 16px; }
body {
  background: var(--bg);
  background-image: radial-gradient(ellipse at 0% 0%, rgba(176,102,248,0.08) 0%, transparent 40%), radial-gradient(ellipse at 100% 100%, rgba(232,184,75,0.06) 0%, transparent 40%);
  background-attachment: fixed;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }
h1,h2,h3,h4 { font-family: 'Poppins', sans-serif; line-height: 1.15; }
a { color: inherit; text-decoration: none; }
section { padding: 88px 0; }

.label {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 15px;
  padding: 14px 28px; border-radius: 8px;
  cursor: pointer; border: none; transition: all 0.2s ease;
  white-space: nowrap; text-decoration: none;
}
.btn-primary { background: linear-gradient(135deg, var(--accent), #7c3aed); color: #fff; box-shadow: 0 0 24px var(--accent-glow); }
.btn-primary:hover { background: linear-gradient(135deg, #b87af9, #8b45f0); box-shadow: 0 0 40px rgba(168,85,247,0.5); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border-m); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px;
  padding: 12px 22px; border-radius: 8px; border: none; cursor: pointer;
  white-space: nowrap; flex-shrink: 0; text-decoration: none;
  background: var(--gold); color: #0a0608;
  box-shadow: 0 0 20px rgba(232,184,75,0.3); transition: all 0.2s ease;
}
.btn-gold:hover { background: #f0c96a; box-shadow: 0 0 32px rgba(232,184,75,0.5); transform: translateY(-1px); }
.btn-gold svg { width: 14px; height: 14px; }

.text-link {
  display: inline-flex; align-items: center;
  color: var(--gold); font-size: 15px; font-weight: 500;
  text-decoration: underline; text-decoration-color: rgba(232,184,75,0.4);
  text-underline-offset: 4px; transition: text-decoration-color 0.2s;
}
.text-link:hover { text-decoration-color: var(--gold); }

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(232,184,75,0.28) 30%, rgba(176,102,248,0.28) 70%, transparent 100%);
}

/* NAV */
nav {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 40px); max-width: 1100px;
  background: rgba(20,13,30,0.92);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border); border-radius: 12px;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 100;
}
.nav-logo { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 19px; letter-spacing: -0.5px; text-decoration: none; color: var(--text); }
.nav-logo span { color: var(--gold); }
.nav-tabs { display: flex; gap: 4px; }
.nav-tab {
  display: inline-flex; align-items: center;
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500;
  padding: 8px 14px; border-radius: 7px;
  color: var(--muted); transition: color 0.2s, background 0.2s;
  white-space: nowrap; text-decoration: none;
}
.nav-tab:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-tab.active { color: var(--gold); background: rgba(232,184,75,0.1); font-weight: 600; }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none; background: transparent; border: 1px solid var(--border-m); border-radius: 8px;
  width: 38px; height: 38px; cursor: pointer; color: var(--text);
  align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-toggle svg { width: 18px; height: 18px; }
.nav-toggle .icon-close { display: none; }
nav.open .nav-toggle .icon-close { display: block; }
nav.open .nav-toggle .icon-open { display: none; }

/* STICKY MOBILE CTA */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 99;
  background: rgba(20,13,30,0.97);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--border-m);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  gap: 10px; align-items: center;
}
.sticky-cta .btn-primary { flex: 1; justify-content: center; padding: 15px 20px; font-size: 16px; }

/* HERO */
#hero { min-height: 92vh; display: flex; align-items: center; padding-top: 120px; padding-bottom: 56px; position: relative; overflow: hidden; text-align: center; }
.hero-glow { position: absolute; top: -180px; left: 50%; transform: translateX(-50%); width: 900px; height: 700px; background: radial-gradient(ellipse at 40% 50%, rgba(176,102,248,0.18) 0%, transparent 55%), radial-gradient(ellipse at 65% 50%, rgba(232,184,75,0.12) 0%, transparent 50%); pointer-events: none; }
#hero .container { position: relative; z-index: 1; }
h1 { font-size: clamp(34px, 5.2vw, 60px); font-weight: 900; letter-spacing: -2px; margin-bottom: 22px; max-width: 800px; margin-left: auto; margin-right: auto; }
h1 em { font-style: normal; color: var(--gold); }
.hero-sub { font-size: 18px; color: var(--muted); line-height: 1.75; max-width: 580px; margin: 0 auto 36px; }
.hero-btns { display: flex; gap: 12px; justify-content: center; align-items: center; flex-wrap: wrap; margin-bottom: 22px; }
.hero-note { font-size: 13px; color: var(--dim); }
.hero-note strong { color: var(--muted); }

.pill-row { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 28px; }
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; color: var(--muted);
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 999px; padding: 7px 14px;
}
.pill svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }

.hero-loss-banner {
  margin-top: 40px;
  background: linear-gradient(135deg, rgba(232,184,75,0.08) 0%, rgba(176,102,248,0.06) 100%);
  border: 1px solid rgba(232,184,75,0.22); border-radius: 14px; padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; max-width: 720px; margin-left: auto; margin-right: auto; text-align: left;
}
.hero-loss-left { display: flex; align-items: flex-start; gap: 14px; flex: 1; }
.hero-loss-left svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.hero-loss-title { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 4px; line-height: 1.5; }
.hero-loss-sub { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* PAGE HERO */
.page-hero { padding: 150px 0 72px; text-align: center; position: relative; overflow: hidden; }
.page-hero-glow { position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 800px; height: 500px; background: radial-gradient(ellipse at 40% 50%, rgba(176,102,248,0.12) 0%, transparent 55%), radial-gradient(ellipse at 65% 50%, rgba(232,184,75,0.08) 0%, transparent 50%); pointer-events: none; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(30px, 4.5vw, 52px); font-weight: 900; letter-spacing: -1.5px; margin-bottom: 18px; max-width: 760px; margin-left: auto; margin-right: auto; }
.page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero p { font-size: 17px; color: var(--muted); max-width: 580px; margin: 0 auto; line-height: 1.75; }

/* SECTION HEADER */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; letter-spacing: -1px; margin-bottom: 14px; }
.section-header h2 em { font-style: normal; color: var(--gold); }
.section-header p { font-size: 16px; color: var(--muted); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* PROSE BLOCK */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; letter-spacing: -0.8px; margin-bottom: 16px; }
.prose h2 em { font-style: normal; color: var(--gold); }
.prose h3 { font-size: 19px; font-weight: 700; margin: 32px 0 10px; }
.prose p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.prose p strong { color: var(--text); font-weight: 600; }
.prose ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.prose li { font-size: 16px; color: var(--muted); line-height: 1.7; padding-left: 26px; position: relative; }
.prose li::before { content: ''; position: absolute; left: 6px; top: 11px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* CARD GRIDS (shared) */
.wppl-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.wppl-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 28px; display: flex; gap: 20px; align-items: flex-start; transition: border-color 0.2s, transform 0.2s; }
.wppl-card:hover { border-color: rgba(232,184,75,0.25); transform: translateY(-2px); }
.wppl-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px; background: var(--accent-dim); border: 1px solid rgba(176,102,248,0.18); display: flex; align-items: center; justify-content: center; }
.wppl-icon svg { width: 20px; height: 20px; color: var(--accent); }
.wppl-icon.leak { background: var(--red-dim); border-color: rgba(255,92,92,0.2); }
.wppl-icon.leak svg { color: var(--red); }
.wppl-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.wppl-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.wppl-card .leak-cost { display: block; margin-top: 10px; font-size: 13px; font-weight: 600; color: var(--gold); }

.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.benefit-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 28px 24px; transition: border-color 0.2s; }
.benefit-card:hover { border-color: rgba(232,184,75,0.25); }
.benefit-icon { width: 42px; height: 42px; border-radius: 9px; background: var(--accent-dim); border: 1px solid rgba(192,132,252,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.benefit-icon svg { width: 19px; height: 19px; color: var(--accent); }
.benefit-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.benefit-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* STEPS */
.steps-list { display: flex; flex-direction: column; max-width: 720px; margin: 0 auto; }
.step-row { display: grid; grid-template-columns: 64px 1fr; gap: 28px; padding: 40px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.step-row:last-child { border-bottom: none; }
.step-num-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.step-num-badge { width: 48px; height: 48px; border-radius: 12px; background: var(--gold); color: #0a0608; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 20px; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 20px rgba(232,184,75,0.3); flex-shrink: 0; }
.step-line { width: 1px; height: 100%; min-height: 40px; background: var(--border); flex: 1; }
.step-row:last-child .step-line { display: none; }
.step-icon-wrap { width: 48px; height: 48px; border-radius: 11px; background: var(--bg-card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.step-icon-wrap svg { width: 22px; height: 22px; color: var(--accent); }
.step-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.step-content h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.step-content p { font-size: 15px; color: var(--muted); line-height: 1.75; }

/* FUNNEL GRAPHIC */
.funnel-wrap { max-width: 820px; margin: 0 auto; }
.funnel { display: flex; flex-direction: column; gap: 4px; }
.funnel-stage { display: grid; grid-template-columns: 108px 1fr 86px; gap: 16px; align-items: center; }
.funnel-name { font-size: 13px; font-weight: 600; color: var(--text); text-align: right; }
.funnel-track { height: 46px; display: flex; align-items: center; }
.funnel-bar {
  height: 46px; border-radius: 8px;
  background: linear-gradient(135deg, rgba(176,102,248,0.55), rgba(124,58,237,0.4));
  border: 1px solid rgba(176,102,248,0.35);
  display: flex; align-items: center; padding-left: 14px;
}
.funnel-bar span { font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 700; color: var(--text); white-space: nowrap; }
.funnel-stage:last-of-type .funnel-bar { background: linear-gradient(135deg, rgba(232,184,75,0.5), rgba(232,184,75,0.28)); border-color: rgba(232,184,75,0.4); }
.funnel-val { font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 700; color: var(--muted); }
.funnel-leak { display: grid; grid-template-columns: 108px 1fr 86px; gap: 16px; align-items: center; }
.funnel-leak-inner { display: flex; align-items: center; gap: 9px; padding: 7px 0; }
.funnel-leak-inner svg { width: 15px; height: 15px; color: var(--red); flex-shrink: 0; }
.funnel-leak-inner p { font-size: 13px; color: var(--muted); line-height: 1.5; }
.funnel-leak-inner p strong { color: var(--red); font-weight: 600; }
.funnel-drop { font-size: 12px; font-weight: 700; color: var(--red); font-family: 'Poppins', sans-serif; }
.funnel-caption { font-size: 13px; color: var(--dim); text-align: center; margin-top: 28px; line-height: 1.7; max-width: 620px; margin-left: auto; margin-right: auto; }
/* standalone explanatory paragraphs that sit under a section; real body copy, so they scale up on mobile */
.note-line { text-align: center; font-size: 15px; color: var(--muted); line-height: 1.75; max-width: 620px; margin: 0 auto; }

/* ROUTE / COMPARISON CARDS */
.route-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; align-items: start; }
.route-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 32px 28px; height: 100%; display: flex; flex-direction: column; }
.route-card.featured { border-color: rgba(232,184,75,0.35); background: linear-gradient(160deg, #1f1530 0%, #17102a 100%); }
.route-tag { display: inline-block; align-self: flex-start; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 9px; border-radius: 4px; margin-bottom: 16px; }
.route-tag.bad { background: var(--red-dim); color: var(--red); border: 1px solid rgba(255,92,92,0.22); }
.route-tag.good { background: var(--gold-dim); color: var(--gold); border: 1px solid rgba(232,184,75,0.22); }
.route-card h3 { font-size: 21px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 8px; }
.route-price { font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700; color: var(--gold); margin-bottom: 6px; }
.route-price.plain { color: var(--muted); }
.route-who { font-size: 14px; color: var(--muted); line-height: 1.7; padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--border); }
.route-list { list-style: none; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.route-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; color: var(--muted); line-height: 1.65; }
.route-list li .dot { flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 1px; font-size: 11px; font-weight: 700; }
.dot-good { background: var(--gold-dim); color: var(--gold); }
.dot-bad { background: var(--red-dim); color: var(--red); }
.route-card .btn { margin-top: 24px; justify-content: center; }

/* RISK REVERSAL LINE */
.risk-line {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(232,184,75,0.06); border: 1px solid rgba(232,184,75,0.2);
  border-radius: 12px; padding: 18px 20px;
  max-width: 640px; margin: 0 auto;
}
.risk-line svg { width: 19px; height: 19px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.risk-line p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.risk-line p strong { color: var(--text); font-weight: 600; }

/* PRICE BOX */
.price-box { background: var(--bg-card); border: 1px solid rgba(232,184,75,0.2); border-radius: 16px; padding: 36px 32px; text-align: center; max-width: 560px; margin: 0 auto; }
.price-num { font-family: 'Poppins', sans-serif; font-weight: 900; font-size: clamp(40px, 6vw, 60px); letter-spacing: -2.5px; color: var(--gold); line-height: 1; margin-bottom: 10px; }
.price-name { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 18px; }
.price-note { font-size: 14px; color: var(--muted); line-height: 1.7; }
.price-note strong { color: var(--text); font-weight: 600; }
.price-box .btn { margin-top: 26px; }

/* LEAK MATH */
.math-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 32px 28px; max-width: 720px; margin: 0 auto; }
.math-formula {
  font-family: 'Poppins', sans-serif; font-size: clamp(13px, 2vw, 16px); font-weight: 600;
  line-height: 1.9; text-align: center; color: var(--text);
  padding: 22px 18px; margin-bottom: 26px;
  background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 12px;
  overflow-x: auto;
}
.math-formula em { font-style: normal; color: var(--gold); }
.math-formula .op { color: var(--dim); padding: 0 4px; }
.math-rows { display: flex; flex-direction: column; gap: 14px; }
.math-row { display: grid; grid-template-columns: 130px 1fr; gap: 16px; align-items: baseline; }
.math-term { font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 700; color: var(--gold); }
.math-def { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* FIT LISTS */
.fit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.fit-col { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 30px 28px; }
.fit-col.good { border-color: rgba(232,184,75,0.25); }
.fit-col h3 { font-size: 17px; font-weight: 700; margin-bottom: 20px; }
.fit-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.fit-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; color: var(--muted); line-height: 1.65; }
.fit-list svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; }
.fit-col.good .fit-list svg { color: var(--gold); }
.fit-col.bad .fit-list svg { color: var(--red); }

/* DELIVERABLES CHECKLIST */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 14px; max-width: 620px; margin: 0 auto; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 15px; color: var(--muted); line-height: 1.7; }
.check-list svg { width: 19px; height: 19px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.check-list strong { color: var(--text); font-weight: 600; }

/* REVIEWS */
.proof-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 920px; margin: 0 auto; }
.proof-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
  padding: 30px 28px; margin: 0;
  display: flex; flex-direction: column; gap: 18px;
  transition: border-color 0.2s;
}
.proof-card:hover { border-color: rgba(232,184,75,0.25); }
.proof-card blockquote { font-size: 16px; color: var(--text); line-height: 1.8; margin: 0; }
.proof-who { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600; color: var(--gold); margin-top: auto; }
.proof-who span { display: block; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 400; color: var(--muted); margin-top: 3px; }
.placeholder-note {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 13px; color: var(--dim); line-height: 1.7;
  border: 1px dashed var(--border-m); border-radius: 10px; padding: 14px 16px;
  max-width: 620px; margin: 28px auto 0;
}
.placeholder-note svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--dim); }

/* BOOKING EMBED (Calendly) */
.calendly-inline-widget { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }

/* TIMELINE (sessions) */
.timeline-item { display: grid; grid-template-columns: 80px 1fr; gap: 24px; padding: 32px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.timeline-item:last-child { border-bottom: none; }
.timeline-num { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.timeline-badge { width: 48px; height: 48px; border-radius: 12px; background: var(--gold); color: #0a0608; font-family: 'Poppins', sans-serif; font-weight: 900; font-size: 20px; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 20px rgba(232,184,75,0.3); flex-shrink: 0; }
.timeline-vline { width: 1px; flex: 1; min-height: 40px; background: var(--border); }
.timeline-item:last-child .timeline-vline { display: none; }
.timeline-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.timeline-content h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.timeline-content p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 10px; }
.timeline-detail { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 16px 18px; margin-top: 12px; font-size: 13px; color: var(--muted); line-height: 1.7; }
.timeline-detail strong { color: var(--accent); display: block; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }

/* FAQ */
/* FAQ section background is set per page inline, since it depends on the surrounding order */
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: border-color 0.2s; }
.faq-item:hover { border-color: var(--border-m); }
.faq-q { width: 100%; background: none; border: none; color: var(--text); padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; text-align: left; transition: color 0.2s; }
.faq-q:hover { color: var(--gold); }
.faq-item.open .faq-q { color: var(--gold); }
.faq-chevron { flex-shrink: 0; width: 18px; height: 18px; transition: transform 0.25s ease; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; visibility: hidden; transition: max-height 0.3s ease, visibility 0.3s; }
.faq-a p { padding: 0 24px 20px; font-size: 15px; color: var(--muted); line-height: 1.75; }
.faq-item.open .faq-a { max-height: 600px; visibility: visible; }

/* CTA */
#cta { text-align: center; position: relative; overflow: hidden; }
.cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 700px; height: 400px; background: radial-gradient(ellipse at 40% 50%, rgba(176,102,248,0.15) 0%, transparent 55%), radial-gradient(ellipse at 65% 50%, rgba(232,184,75,0.10) 0%, transparent 50%); pointer-events: none; }
#cta .container { position: relative; z-index: 1; }
.cta-h2 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; }
.cta-h2 em { font-style: normal; color: var(--gold); }
.cta-sub { font-size: 17px; color: var(--muted); max-width: 520px; margin: 0 auto 32px; line-height: 1.75; }
.cta-fine { font-size: 15px; color: var(--muted); margin-top: 18px; }

/* FOOTER */
footer { padding: 36px 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-logo { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 17px; letter-spacing: -0.5px; }
.footer-logo span { color: var(--gold); }
.footer-links { display: flex; gap: 20px; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--dim); transition: color 0.2s; }
.footer-links a:hover { color: var(--muted); }
.footer-contact { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.footer-contact a { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--muted); transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-contact svg { width: 14px; height: 14px; color: var(--gold); }
.footer-copy { font-size: 12px; color: var(--dim); text-align: center; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); line-height: 1.8; }

/* LEGAL */
.legal { max-width: 760px; margin: 0 auto; }
.legal h2 { font-size: 22px; font-weight: 700; margin: 40px 0 12px; }
.legal h2:first-of-type { margin-top: 0; }
.legal p { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 14px; }
.legal ul { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 16px; }
.legal li { font-size: 15px; color: var(--muted); line-height: 1.75; padding-left: 24px; position: relative; }
.legal li::before { content: ''; position: absolute; left: 5px; top: 10px; width: 5px; height: 5px; border-radius: 50%; background: var(--dim); }
.legal-updated { font-size: 13px; color: var(--dim); margin-bottom: 36px; }

/* RESPONSIVE */
@media (max-width: 1000px) {
  nav { padding: 12px 18px; }
  .nav-tab { padding: 8px 10px; font-size: 12.5px; }
}
@media (max-width: 960px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .route-grid { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .nav-tabs {
    display: none; position: absolute; top: calc(100% + 8px); left: 0; right: 0;
    flex-direction: column; gap: 2px;
    background: rgba(20,13,30,0.98);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--border); border-radius: 12px; padding: 10px;
  }
  nav.open .nav-tabs { display: flex; }
  .nav-tab { font-size: 15px; padding: 13px 14px; }
  .nav-toggle { display: inline-flex; width: 44px; height: 44px; }
  .nav-logo { display: inline-flex; align-items: center; min-height: 44px; }
  .nav-right .btn-primary { display: none; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 80px; }
}
@media (max-width: 720px) {
  body { font-size: 17px; }
  section { padding: 64px 0; }
  .container, .container-narrow { padding: 0 18px; }
  #hero { padding-top: 112px; min-height: 0; }
  .wppl-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .step-row { grid-template-columns: 52px 1fr; gap: 16px; }
  .timeline-item { grid-template-columns: 52px 1fr; gap: 16px; }
  .hero-sub { font-size: 17px; }
  /* body copy holds the 17px floor on mobile — no reading text drops below it */
  .section-header p, .prose p, .prose li { font-size: 17px; }
  .wppl-card p, .benefit-card p, .route-list li, .fit-list li, .route-who,
  .math-def, .price-note, .risk-line p,
  .legal p, .legal li { font-size: 17px; }
  .faq-q { font-size: 17px; padding: 20px; }
  .faq-a p { font-size: 17px; padding: 0 20px 20px; }
  .step-content p, .timeline-content p, .check-list li { font-size: 17px; }
  /* the credited-fee promise is not fine print */
  .hero-loss-title, .hero-loss-sub, .cta-fine { font-size: 17px; }
  .funnel-caption, .footer-copy { font-size: 15px; }
  .note-line, .route-price, .price-name { font-size: 17px; }
  .wppl-card .leak-cost { font-size: 15px; }
  .page-hero { padding: 130px 0 56px; }
  .page-hero p { font-size: 17px; }
  /* long button labels must wrap rather than push the page wider than the phone */
  .btn { padding: 15px 26px; font-size: 16px; white-space: normal; text-align: center; max-width: 100%; }
  /* the sticky bar CTA is short and always fits, so keep it on one line */
  .sticky-cta .btn-primary { white-space: nowrap; }
  /* the diagram's own labels are chart furniture, sized to fit the bars */
  .funnel-stage, .funnel-leak { grid-template-columns: 74px 1fr 56px; gap: 10px; }
  .funnel-name { font-size: 12px; }
  .funnel-bar { padding-left: 10px; }
  .funnel-val { font-size: 12px; }
  /* bars get narrow enough that in-bar text would overflow; .funnel-name already labels each stage */
  .funnel-bar span { display: none; }
  .funnel-leak-inner p { font-size: 14px; }
  .math-row { grid-template-columns: 1fr; gap: 4px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  /* tap targets: everything reachable by thumb gets at least 44px of height */
  .text-link { min-height: 44px; font-size: 16px; }
  .footer-links { gap: 0 22px; }
  .footer-links a { display: inline-flex; align-items: center; min-height: 44px; font-size: 14px; }
  .footer-contact { gap: 4px 22px; }
  .footer-contact a { min-height: 44px; font-size: 14px; }
  .proof-card blockquote { font-size: 17px; }
}
@media (max-width: 640px) {
  .hero-loss-banner { flex-direction: column; align-items: flex-start; }
  .hero-loss-banner .btn-gold { width: 100%; justify-content: center; }
  .price-box, .math-box, .route-card, .fit-col { padding: 28px 22px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
