/* =====================================================================
   TRAE VAULT — styles.css
   Premium minimalist funnel. Apple / Vercel / Linear inspired.
   Dark premium theme (near-black surfaces, light text) + one electric-blue accent.
   Mobile-first. No frameworks. No bloat.
   ===================================================================== */

/* ------------------------------------------------------------------
   1. DESIGN TOKENS
------------------------------------------------------------------ */
:root {
  /* Neutrals — dark theme */
  --bg:            #0a0a0b;   /* page background (near-black) */
  --bg-soft:       #0f0f12;   /* alternating section wash */
  --bg-sunk:       #17171c;   /* sunken panels / inputs */
  --surface:       #131317;   /* card background */
  --surface-2:     #1c1c22;   /* elevated card / offer panel */
  --ink:           #f4f4f6;   /* near-white primary text */
  --ink-2:         #c3c4cc;   /* strong secondary */
  --muted:         #9193a0;   /* muted body / captions */
  --muted-2:       #696b78;   /* faint */
  --line:          rgba(255, 255, 255, 0.10);  /* hairline borders */
  --line-strong:   rgba(255, 255, 255, 0.18);

  /* Accent — one restrained electric blue, brightened for dark */
  --accent:        #4d7cff;
  --accent-hover:  #5f8bff;
  --accent-press:  #3f6ae0;
  --accent-soft:   rgba(77, 124, 255, 0.14);
  --accent-ring:   rgba(77, 124, 255, 0.40);

  /* Radii */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadows — deep for dark theme */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.55), 0 2px 6px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 24px 60px -14px rgba(0, 0, 0, 0.7), 0 6px 18px rgba(0, 0, 0, 0.5);
  --shadow-accent: 0 8px 28px -6px rgba(77, 124, 255, 0.5);

  /* Typography */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --fs-eyebrow: 0.8125rem;
  --tracking-tight: -0.02em;
  --tracking-tighter: -0.035em;

  /* Layout */
  --maxw: 1120px;
  --maxw-narrow: 760px;
  --gutter: clamp(20px, 5vw, 40px);
  --section-y: clamp(72px, 11vw, 132px);
  --nav-h: 64px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.45s;
}

/* ------------------------------------------------------------------
   2. RESET / BASE
------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input { font-family: inherit; }

::selection { background: rgba(77, 124, 255, 0.35); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ------------------------------------------------------------------
   3. LAYOUT PRIMITIVES
------------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--maxw-narrow); }

.section { padding-block: var(--section-y); }
.section--soft { background: var(--bg-soft); }
.section--tight { padding-block: clamp(48px, 8vw, 88px); }

.section-head {
  max-width: 680px;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.section-head--center .eyebrow { justify-content: center; }

/* ------------------------------------------------------------------
   4. TYPOGRAPHY SCALE
------------------------------------------------------------------ */
h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: 1.1;
  color: var(--ink);
  text-wrap: balance;
}
.h-display {
  font-size: clamp(2.4rem, 6.2vw, 4.15rem);
  font-weight: 800;
  letter-spacing: var(--tracking-tighter);
  line-height: 1.03;
}
.h1 { font-size: clamp(2rem, 4.6vw, 3.05rem); font-weight: 800; letter-spacing: var(--tracking-tighter); }
.h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); font-weight: 700; }
.h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 650; letter-spacing: -0.01em; }
h3.h3, .h3 { font-weight: 600; }

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.55;
  color: var(--muted);
  font-weight: 400;
}
.muted { color: var(--muted); }
.balance { text-wrap: balance; }
.accent-text { color: var(--accent); }

/* ------------------------------------------------------------------
   5. BUTTONS
------------------------------------------------------------------ */
.btn {
  --_pad-y: 13px;
  --_pad-x: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: var(--_pad-y) var(--_pad-x);
  font-size: 0.975rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: var(--r-pill);
  transition: transform 0.15s var(--ease), background 0.2s var(--ease),
              box-shadow 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
  will-change: transform;
}
.btn:active { transform: translateY(1px) scale(0.995); }

/* Primary = the one place accent lives */
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn--primary:hover { background: var(--accent-hover); box-shadow: 0 10px 30px -8px rgba(77,124,255,0.55); }
.btn--primary:active { background: var(--accent-press); }

/* Solid light — secondary emphasis without accent (reads strong on dark) */
.btn--dark {
  background: #f4f4f6;
  color: #0a0a0b;
  box-shadow: var(--shadow-sm);
}
.btn--dark:hover { background: #ffffff; }

/* Ghost / outline */
.btn--ghost {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-xs);
}
.btn--ghost:hover { border-color: var(--muted-2); background: var(--bg-soft); }

.btn--lg { --_pad-y: 16px; --_pad-x: 30px; font-size: 1.05rem; }
.btn--sm { --_pad-y: 9px; --_pad-x: 16px; font-size: 0.9rem; }
.btn--block { display: flex; width: 100%; }

.btn__arrow { transition: transform 0.2s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ------------------------------------------------------------------
   6. STICKY NAV
------------------------------------------------------------------ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  background: rgba(10, 10, 11, 0.68);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(10, 10, 11, 0.82);
}
.nav__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
  color: var(--ink);
}
.brand__mark {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  padding: 0;
}
.nav__links a {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: color 0.2s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__cta { display: flex; align-items: center; gap: 12px; }

@media (max-width: 860px) {
  .nav__links { display: none; }
}
@media (max-width: 480px) {
  .nav__cta .btn { --_pad-x: 15px; --_pad-y: 10px; font-size: 0.875rem; }
}

/* ------------------------------------------------------------------
   7. HERO
------------------------------------------------------------------ */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(48px, 9vw, 104px));
  padding-bottom: clamp(56px, 9vw, 104px);
  text-align: center;
  overflow: hidden;
}
/* faint background: radial wash + fine grid, no "AI" imagery */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 55% at 50% -8%, rgba(11,92,255,0.06), transparent 70%),
    linear-gradient(to bottom, var(--bg-sunk), var(--bg) 62%);
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(70% 60% at 50% 0%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 0%, #000 0%, transparent 72%);
  z-index: -1;
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-2);
  box-shadow: var(--shadow-xs);
  margin-bottom: 26px;
}
.hero__pill b { color: var(--ink); font-weight: 600; }
.hero__pill .tag {
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--r-pill);
}
.hero h1 { margin-inline: auto; max-width: 15ch; }
.hero__sub {
  margin: 24px auto 0;
  max-width: 60ch;
}
.hero__actions {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__trust {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--muted);
}
.hero__trust .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted-2); }

/* ------------------------------------------------------------------
   8. FREE GUIDE OPT-IN
------------------------------------------------------------------ */
.optin {
  position: relative;
  margin-top: clamp(-40px, -4vw, -20px);
}
.optin__card {
  max-width: 720px;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: clamp(28px, 4vw, 48px);
  text-align: center;
}
.optin__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}
.optin__card p.lead { margin-top: 14px; margin-inline: auto; max-width: 52ch; }

.lead-form {
  margin-top: 28px;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr auto;
  align-items: start;
  text-align: left;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  padding-left: 2px;
}
.field input {
  height: 50px;
  padding: 0 16px;
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg-sunk);
  border: 1px solid transparent;
  border-radius: var(--r-md);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input::placeholder { color: var(--muted-2); }
.field input:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-ring);
}
.lead-form .btn { height: 50px; align-self: end; }
.lead-form__foot {
  grid-column: 1 / -1;
  margin-top: 6px;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}
.form-note { display: inline-flex; align-items: center; gap: 6px; }

@media (max-width: 620px) {
  .lead-form { grid-template-columns: 1fr; }
  .lead-form .btn { align-self: stretch; }
}

/* ------------------------------------------------------------------
   9. GENERIC CARD GRID
------------------------------------------------------------------ */
.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}
.card__icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--bg-sunk);
  color: var(--ink);
  margin-bottom: 18px;
}
.card__icon svg { width: 20px; height: 20px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.95rem; }

/* index number chip (how it works / problem) */
.numchip {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: grid; place-items: center;
  background: var(--accent);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
}

/* ------------------------------------------------------------------
   10. PROBLEM SECTION
------------------------------------------------------------------ */
.problem-cards .card { text-align: left; }
.problem-cards .card__icon { background: var(--surface); border: 1px solid var(--line); }

/* ------------------------------------------------------------------
   11. THREE PATHS
------------------------------------------------------------------ */
.path-card { position: relative; display: flex; flex-direction: column; }
.path-card--featured {
  border-color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.path-card__badge {
  position: absolute;
  top: -12px; left: 26px;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-pill);
}
.path-card__num {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted-2);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.path-card h3 { margin-bottom: 10px; font-size: 1.22rem; }
.path-card p { flex: 1; }
.path-card__foot {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.path-card--featured .path-card__foot { color: var(--accent); }

/* ------------------------------------------------------------------
   12. WHY FIRST — split feature
------------------------------------------------------------------ */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

.checklist { list-style: none; padding: 0; margin-top: 26px; display: grid; gap: 14px; }
.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.975rem;
  color: var(--ink-2);
}
.checklist .tick {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  margin-top: 1px;
}
.checklist .tick svg { width: 13px; height: 13px; }

.panel {
  background: var(--bg-sunk);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(26px, 4vw, 40px);
}
.panel__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.panel__row:last-child { border-bottom: none; }
.panel__row .k { font-weight: 600; color: var(--ink); font-size: 0.95rem; }
.panel__row .v { font-size: 0.9rem; color: var(--muted); text-align: right; }
.panel__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 4px;
}

/* ------------------------------------------------------------------
   13. PAID OFFER
------------------------------------------------------------------ */
.offer {
  background: var(--surface-2);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(32px, 5vw, 64px);
  position: relative;
  overflow: hidden;
}
.offer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 90% 0%, rgba(11,92,255,0.28), transparent 60%);
  pointer-events: none;
}
.offer > * { position: relative; }
.offer .eyebrow { color: #7fa8ff; }
.offer .eyebrow::before { background: #7fa8ff; }
.offer h2 { color: #fff; max-width: 20ch; }
.offer__lead { color: rgba(255,255,255,0.72); margin-top: 18px; max-width: 58ch; font-size: 1.08rem; }
.offer__price {
  margin-top: 30px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.offer__price .now { font-size: clamp(2.6rem, 6vw, 3.6rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.offer__price .later {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
}
.offer__price .later s { color: rgba(255,255,255,0.45); }
.offer__price .founding {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #7fa8ff;
  border: 1px solid rgba(127,168,255,0.4);
  padding: 5px 11px;
  border-radius: var(--r-pill);
}
.offer__actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.offer__meta { margin-top: 18px; font-size: 0.85rem; color: rgba(255,255,255,0.55); }

/* ------------------------------------------------------------------
   14. FIVE AGENTS
------------------------------------------------------------------ */
.agent-card { display: flex; flex-direction: column; }
.agent-card__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.agent-card h3 { font-size: 1.08rem; margin-bottom: 8px; }

/* ------------------------------------------------------------------
   15. HOW IT WORKS (steps)
------------------------------------------------------------------ */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step {
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
}
.step .numchip { background: var(--accent); }
.step h3 { font-size: 1.02rem; }

/* ------------------------------------------------------------------
   16. WHAT YOU GET (deliverables grid)
------------------------------------------------------------------ */
.deliver { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 820px) { .deliver { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .deliver { grid-template-columns: 1fr; } }
.deliver__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.deliver__item .tick {
  flex: none;
  width: 24px; height: 24px;
  border-radius: 7px;
  background: var(--bg-sunk);
  color: var(--ink);
  display: grid; place-items: center;
}
.deliver__item .tick svg { width: 14px; height: 14px; }
.deliver__item h3 { font-size: 0.98rem; margin-bottom: 3px; }
.deliver__item p { font-size: 0.85rem; color: var(--muted); }

/* ------------------------------------------------------------------
   17. PRICING CARD
------------------------------------------------------------------ */
.pricing { display: flex; justify-content: center; }
.price-card {
  width: 100%;
  max-width: 460px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: clamp(28px, 4vw, 40px);
  position: relative;
}
.price-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.price-card__name { font-size: 1.05rem; font-weight: 650; }
.price-card__flag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 5px 11px;
  border-radius: var(--r-pill);
}
.price-card__price { display: flex; align-items: baseline; gap: 12px; margin: 12px 0 4px; }
.price-card__price .amt { font-size: 3.1rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.price-card__price .later { font-size: 0.95rem; color: var(--muted); }
.price-card__price .later s { color: var(--muted-2); }
.price-card__sub { font-size: 0.9rem; color: var(--muted); margin-bottom: 24px; }
.price-list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 12px; }
.price-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.95rem; color: var(--ink-2); }
.price-list .tick {
  flex: none; width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; margin-top: 1px;
}
.price-list .tick svg { width: 12px; height: 12px; }
.price-card__foot { margin-top: 16px; text-align: center; font-size: 0.82rem; color: var(--muted); }

/* ------------------------------------------------------------------
   18. CREDIBILITY / FOUNDER
------------------------------------------------------------------ */
.cred { text-align: center; }
.cred__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}
.cred__logo {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-2);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
}
.placeholder-note {
  display: inline-block;
  margin-top: 22px;
  font-size: 0.78rem;
  color: var(--muted-2);
  font-style: italic;
}

.quote-card {
  max-width: 720px;
  margin: 34px auto 0;
  background: var(--bg-sunk);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 40px);
  text-align: center;
}
.quote-card__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 12px;
}
.quote-card p { font-size: 1.05rem; color: var(--ink-2); font-style: italic; }
.quote-card__by { margin-top: 14px; font-size: 0.85rem; color: var(--muted); font-style: normal; }

/* ------------------------------------------------------------------
   19. FAQ ACCORDION
------------------------------------------------------------------ */
.faq { max-width: 780px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 550;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq-question span { font-weight: 550; }
.faq-icon {
  flex: none;
  width: 24px; height: 24px;
  position: relative;
  transition: transform 0.35s var(--ease);
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--muted);
  border-radius: 2px;
}
.faq-icon::before { width: 13px; height: 2px; }
.faq-icon::after { width: 2px; height: 13px; transition: transform 0.35s var(--ease); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-item.open .faq-icon::before { background: var(--accent); }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer__inner { overflow: hidden; }
.faq-answer p {
  padding: 0 4px 24px;
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 68ch;
}

/* ------------------------------------------------------------------
   20. DISCLAIMER
------------------------------------------------------------------ */
.disclaimer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
.disclaimer__inner {
  max-width: var(--maxw-narrow);
  margin-inline: auto;
  text-align: center;
}
.disclaimer p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.7;
}
.disclaimer .label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 12px;
}

/* ------------------------------------------------------------------
   21. FOOTER
------------------------------------------------------------------ */
.footer {
  border-top: 1px solid var(--line);
  padding-block: 48px calc(48px + var(--sticky-pad, 0px));
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer__brand { display: flex; flex-direction: column; gap: 8px; }
.footer__brand .brand { font-size: 1rem; }
.footer__brand small { color: var(--muted); font-size: 0.82rem; }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; list-style: none; padding: 0; }
.footer__links a { font-size: 0.88rem; color: var(--muted); transition: color 0.2s var(--ease); }
.footer__links a:hover { color: var(--ink); }
.footer__copy { width: 100%; margin-top: 8px; font-size: 0.8rem; color: var(--muted-2); }

/* ------------------------------------------------------------------
   22. MOBILE STICKY CTA
------------------------------------------------------------------ */
.sticky-cta {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 90;
  padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(10,10,11,0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-top: 1px solid var(--line);
  transform: translateY(120%);
  transition: transform 0.4s var(--ease);
  display: none;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
  max-width: 560px;
  margin-inline: auto;
}
.sticky-cta__price { font-size: 0.82rem; color: var(--muted); line-height: 1.3; }
.sticky-cta__price b { display: block; color: var(--ink); font-size: 0.95rem; font-weight: 650; }

@media (max-width: 720px) {
  .sticky-cta { display: block; }
  body.has-sticky { --sticky-pad: 68px; }
}

/* ------------------------------------------------------------------
   23. UTILITIES / MOTION
------------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.center { text-align: center; }
.mt-s { margin-top: 14px; }
.mt-m { margin-top: 26px; }
[hidden] { display: none !important; }

/* ------------------------------------------------------------------
   24. THANK-YOU PAGE
------------------------------------------------------------------ */
.ty {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  padding-block: clamp(56px, 10vw, 100px);
  background:
    radial-gradient(55% 45% at 50% 0%, rgba(11,92,255,0.06), transparent 70%),
    var(--bg);
}
.ty__inner { text-align: center; }
.ty__check {
  width: 66px; height: 66px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: var(--shadow-accent);
  animation: pop 0.5s var(--ease) both;
}
.ty__check svg { width: 30px; height: 30px; }
@keyframes pop {
  0% { transform: scale(0.6); opacity: 0; }
  60% { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}
.ty h1 { max-width: 18ch; margin-inline: auto; }
.ty__inner > .lead { max-width: 56ch; margin: 18px auto 0; }
.ty__bridge {
  max-width: 620px;
  margin: 40px auto 0;
  text-align: left;
  padding: clamp(26px, 4vw, 36px);
}
.ty__bridge h2 { margin-bottom: 10px; }
.ty__bridge p { color: var(--muted); }
.ty__actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 520px) {
  .ty__actions .btn { width: 100%; }
}

/* ------------------------------------------------------------------
   25. THREE-TIER PRICING GRID
------------------------------------------------------------------ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .price-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
}

.tier-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 32px);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.tier-card--featured {
  border-color: var(--ink);
  box-shadow: var(--shadow-lg);
}
@media (min-width: 901px) {
  .tier-card--featured { transform: translateY(-8px); }
}
.tier-card__badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  box-shadow: var(--shadow-accent);
}
.tier-card__name {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.tier-card__price { display: flex; align-items: baseline; gap: 7px; margin: 12px 0 2px; }
.tier-card__price .amt { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.tier-card__price .cur { font-size: 0.82rem; font-weight: 600; color: var(--muted-2); letter-spacing: 0.03em; }
.tier-card__sub { font-size: 0.92rem; color: var(--muted); margin-bottom: 22px; }
.tier-list { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 11px; flex: 1 1 auto; }
.tier-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: var(--ink-2); }
.tier-list .tick {
  flex: none; width: 19px; height: 19px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; margin-top: 1px;
}
.tier-list .tick svg { width: 11px; height: 11px; }
.tier-card .btn { width: 100%; margin-top: auto; }

/* ------------------------------------------------------------------
   26. GUARANTEE + PROMO
------------------------------------------------------------------ */
.promo-note {
  text-align: center;
  margin: 26px auto 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.guarantee {
  max-width: 720px;
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.guarantee__icon {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
}
.guarantee__icon svg { width: 24px; height: 24px; }
.guarantee h3 { font-size: 1.02rem; margin-bottom: 4px; }
.guarantee p { font-size: 0.92rem; color: var(--muted); }
.guarantee a { color: var(--accent); }
@media (max-width: 520px) {
  .guarantee { flex-direction: column; text-align: center; }
}
