/* ============================================================
   Hourvest marketing site
   Tokens mirror the app (constants/onboarding-theme.ts).
   Brand indigo #6155F5 · Plus Jakarta Sans · light premium.
   Signature: every TIME / money value is set in a monospace
   "ledger" face — the page's one consistent, subject-grounded idea.
   ============================================================ */
:root {
  --primary: #6155F5;
  --primary-dark: #4B3CDE;
  --primary-deep: #3A2EC0;
  --primary-soft: #EEECFE;
  --primary-softer: #F5F4FF;
  --lavender: #A89FF8;

  --screen-bg: #FBFAFF;
  --card: #FFFFFF;
  --card-alt: #F4F3FB;
  --border: #ECEAF4;
  --border-strong: #E0DCEE;

  --text-heading: #14131C;
  --text-body: #45434F;
  --text-muted: #6A6677;
  --text-faint: #9C99A8;

  --success: #16B364;
  --success-soft: #E7F8EF;
  --warning: #F5A623;
  --pink: #F76C9C;
  --teal: #2DC6C6;

  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --shadow-xs: 0 1px 2px rgba(24, 18, 56, .05);
  --shadow-sm: 0 4px 16px rgba(24, 18, 56, .06);
  --shadow-md: 0 18px 44px rgba(24, 18, 56, .10);
  --shadow-lg: 0 36px 90px rgba(58, 46, 192, .24);
  --shadow-indigo: 0 20px 44px rgba(97, 85, 245, .26);

  --radius: 22px;
  --radius-sm: 14px;
  --maxw: 1140px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 88px; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--screen-bg);
  color: var(--text-body);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3 { color: var(--text-heading); line-height: 1.08; letter-spacing: -0.03em; margin: 0; text-wrap: balance; }
p { margin: 0; }
a { color: var(--primary); text-decoration: none; }
img, svg { display: block; max-width: 100%; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.muted { color: var(--text-muted); }

/* numeric / time "ledger" treatment — the signature */
.mat-result .time, .mat-result .price, .mat-row, .float-badge {
  font-family: var(--mono); font-feature-settings: "tnum" 1; letter-spacing: -.02em;
}

/* Eyebrow as a monospace "ledger tag" — a deliberate brand system tied to the
   money→time signature, not the generic all-caps tracked kicker. */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12.5px; font-weight: 600; letter-spacing: 0; text-transform: none; color: var(--primary);
}
.eyebrow::before { content: "→"; font-weight: 700; color: var(--primary); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 15px; font-family: inherit;
  border: 0; cursor: pointer; border-radius: 999px;
  padding: 15px 24px; transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s;
}
.btn-primary {
  color: #fff; background: linear-gradient(135deg, #6E62FF, var(--primary-deep));
  box-shadow: var(--shadow-indigo), inset 0 1px 0 rgba(255, 255, 255, .25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 26px 50px rgba(97, 85, 245, .42), inset 0 1px 0 rgba(255, 255, 255, .25); }
.btn-primary .arrow { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 999px; background: rgba(255, 255, 255, .22); transition: transform .18s var(--ease); }
.btn-primary:hover .arrow { transform: translateX(3px); }
.btn-ghost { color: var(--text-heading); background: var(--card); border: 1px solid var(--border-strong); box-shadow: var(--shadow-xs); }
.btn-ghost:hover { background: var(--card-alt); transform: translateY(-2px); }
.btn-light { color: var(--primary-deep); background: #fff; box-shadow: 0 10px 26px rgba(0, 0, 0, .14); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(0, 0, 0, .18); }
.btn-lg { padding: 16px 26px; font-size: 16px; }
.btn[disabled] { opacity: .55; cursor: default; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 250, 255, .72); backdrop-filter: saturate(180%) blur(18px); -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent; transition: border-color .25s, box-shadow .25s, background .25s;
}
.nav.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); background: rgba(251, 250, 255, .9); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; color: var(--text-heading); letter-spacing: -0.02em; }
.brand .mark { height: 22px; width: auto; position: relative; top: -1px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--text-body); font-weight: 600; font-size: 14.5px; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; border-radius: 2px; background: var(--primary); transition: right .28s var(--ease); }
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { right: 0; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 4px; }
.nav-menu-cta { display: none; }
.nav-links a.nav-menu-cta { color: #fff; }
.nav-links a.nav-menu-cta:hover { color: #fff; }

/* Hero */
.hero { position: relative; padding: 84px 0 56px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; z-index: 0; inset: -10% -20% auto -20%; height: 760px;
  background:
    radial-gradient(640px 440px at 78% 18%, rgba(122, 110, 255, .26), transparent 60%),
    radial-gradient(540px 420px at 8% 8%, rgba(168, 159, 248, .22), transparent 60%),
    radial-gradient(700px 500px at 60% 90%, rgba(45, 198, 198, .10), transparent 60%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center; }
.hero h1 { font-size: clamp(42px, 6.4vw, 70px); font-weight: 800; letter-spacing: -0.04em; }
.hero h1 .grad { color: var(--primary); }
.hero-sub { margin-top: 22px; font-size: 18.5px; line-height: 1.6; max-width: 31em; color: var(--text-body); }
.hero-cta { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note { margin-top: 22px; font-size: 13.5px; color: var(--text-muted); display: flex; align-items: center; gap: 9px; font-weight: 500; }
.hero-note svg { stroke: var(--success); flex: none; }

/* Waitlist form */
.waitlist { display: flex; gap: 10px; flex-wrap: wrap; }
.waitlist input[type=email] {
  flex: 1; min-width: 220px; height: 54px; padding: 0 20px; font-size: 15px; font-family: inherit;
  border: 1px solid var(--border-strong); border-radius: 999px; background: var(--card); color: var(--text-heading);
  transition: border-color .15s, box-shadow .15s;
}
.waitlist input[type=email]:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-soft); }
.form-success { display: none; align-items: center; gap: 10px; color: var(--success); font-weight: 700; }
.form-success.show { display: flex; }

/* Phone mockup */
.phone {
  position: relative; justify-self: center; width: 300px; height: 664px; border-radius: 48px; padding: 13px;
  background: linear-gradient(155deg, #2a2640, #0c0a18); box-shadow: var(--shadow-lg);
}
.phone::before {
  content: ""; position: absolute; inset: -50px; z-index: -1; border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, rgba(97, 85, 245, .34), transparent 66%); filter: blur(34px);
}
.phone::after { content: ""; position: absolute; inset: 13px; border-radius: 33px; box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .08); pointer-events: none; z-index: 3; }
/* High-fidelity app dashboard mockup (mirrors the real light app UI) */
.appscreen { width: 100%; height: 100%; border-radius: 33px; background: var(--screen-bg); overflow: hidden; position: relative; padding: 0 14px; display: flex; flex-direction: column; }
.appscreen::before { content: ""; position: absolute; top: 9px; left: 50%; transform: translateX(-50%); width: 92px; height: 24px; background: #0c0a18; border-radius: 13px; z-index: 5; }
.app-statusbar { display: flex; justify-content: space-between; align-items: center; padding: 13px 8px 4px; font-family: var(--mono); font-size: 11px; font-weight: 700; color: var(--text-heading); }
.app-sig { display: inline-flex; align-items: center; gap: 3px; }
.app-sig i { width: 3px; height: 9px; background: var(--text-heading); border-radius: 1px; }
.app-sig i:nth-child(1) { height: 5px; } .app-sig i:nth-child(2) { height: 7px; }
.app-sig b { width: 17px; height: 9px; border: 1.4px solid var(--text-heading); border-radius: 3px; display: inline-block; }
.app-head { display: flex; align-items: center; justify-content: space-between; padding: 4px 2px 0; }
.app-brand { display: flex; align-items: center; gap: 7px; font-weight: 800; font-size: 15px; color: var(--text-heading); letter-spacing: -.02em; }
.app-logo { width: 15px; height: 16px; }
.app-av { width: 30px; height: 30px; border-radius: 50%; background: var(--primary); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 13px; }
.app-greet { margin-top: 13px; font-size: 16px; font-weight: 800; color: var(--text-heading); letter-spacing: -.02em; }
.app-name { display: inline-block; color: var(--primary); transition: opacity .42s var(--ease), transform .42s var(--ease), filter .42s var(--ease); will-change: opacity, transform; }
.app-name.swap { opacity: 0; transform: translateY(-7px); filter: blur(5px); }
.app-sub { font-size: 11.5px; color: var(--text-muted); margin-top: 1px; }
.app-bal { margin-top: 13px; border-radius: 18px; padding: 15px; color: #fff; background: linear-gradient(140deg, #6E62FF, var(--primary-deep)); box-shadow: 0 14px 26px rgba(97, 85, 245, .28); }
.ab-top { display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: rgba(255, 255, 255, .85); }
.ab-top svg { width: 15px; height: 15px; }
.ab-amt { font-family: var(--mono); font-size: 26px; font-weight: 700; letter-spacing: -1px; margin-top: 5px; }
.ab-cols { display: flex; gap: 14px; align-items: center; margin-top: 12px; }
.ab-cols span { font-size: 9.5px; color: rgba(255, 255, 255, .72); display: block; }
.ab-cols b { font-family: var(--mono); font-size: 12.5px; font-weight: 700; }
.ab-div { width: 1px; height: 24px; background: rgba(255, 255, 255, .22); }
.app-tiles { display: flex; gap: 10px; margin-top: 11px; }
.app-tile { flex: 1; background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 11px; }
.at-ic { width: 28px; height: 28px; border-radius: 9px; display: grid; place-items: center; }
.at-ic svg { width: 14px; height: 14px; }
.app-tile b { display: block; font-family: var(--mono); font-size: 17px; font-weight: 700; color: var(--text-heading); margin-top: 8px; }
.app-tile small { font-size: 10px; color: var(--text-muted); }
.app-week { margin-top: 11px; background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 13px; }
.aw-top { display: flex; justify-content: space-between; align-items: flex-start; }
.aw-top small { font-size: 10.5px; color: var(--text-muted); }
.aw-top b { display: block; font-family: var(--mono); font-size: 17px; font-weight: 700; color: var(--text-heading); margin-top: 1px; }
.aw-pill { display: inline-flex; align-items: center; gap: 2px; background: var(--primary-soft); color: var(--primary); font-family: var(--mono); font-size: 10.5px; font-weight: 700; border-radius: 8px; padding: 3px 7px; }
.aw-pill svg { width: 11px; height: 11px; }
.aw-bars { display: flex; align-items: flex-end; gap: 5px; height: 46px; margin-top: 11px; }
.aw-bars span { flex: 1; border-radius: 4px 4px 2px 2px; background: var(--primary-soft); }
.aw-bars span.hi { background: linear-gradient(180deg, #6E62FF, var(--primary-deep)); }
.aw-foot { display: flex; align-items: center; gap: 5px; margin-top: 10px; font-size: 10.5px; color: var(--text-muted); }
.aw-foot b { font-family: var(--mono); color: var(--primary); }
.aw-foot svg { width: 12px; height: 12px; }
.app-tabs { margin-top: auto; display: flex; justify-content: space-between; align-items: flex-start; padding: 14px 26px 30px; border-top: 1px solid var(--border); background: var(--card); }
.app-tab { display: grid; place-items: center; }
.app-tab svg { width: 22px; height: 22px; stroke: var(--text-faint); }
.app-tab.on svg { stroke: var(--primary); }
/* iOS home indicator */
.appscreen::after { content: ""; position: absolute; bottom: 9px; left: 50%; transform: translateX(-50%); width: 110px; height: 4px; border-radius: 3px; background: var(--text-heading); opacity: .26; z-index: 6; }
.float-badge {
  position: absolute; z-index: 4; background: var(--card); color: var(--text-heading); box-shadow: var(--shadow-md);
  border: 1px solid var(--border); border-radius: 15px; padding: 11px 15px; font-weight: 700; font-size: 13px;
  display: flex; align-items: center; gap: 9px; animation: floaty 5.5s var(--ease) infinite;
}
.float-badge svg { width: 16px; height: 16px; flex: none; }
.fb-1 { top: 52px; left: -34px; }
.fb-2 { bottom: 76px; right: -28px; animation-delay: 1.6s; }
@keyframes floaty { 0%, 100% { transform: translateY(0) } 50% { transform: translateY(-9px) } }

/* Trust strip */
.trust { margin-top: 36px; position: relative; z-index: 1; }
.trust-row { display: flex; flex-wrap: wrap; gap: 12px 30px; justify-content: center; padding: 20px 24px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.trust-item { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: 14px; color: var(--text-body); }
.trust-item svg { width: 18px; height: 18px; stroke: var(--success); flex: none; }

/* Sections */
section { padding: 92px 0; }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 52px; }
.section-head .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(30px, 4.2vw, 44px); font-weight: 800; margin-top: 14px; }
.section-head p { margin-top: 16px; font-size: 17.5px; color: var(--text-muted); }

/* Feature bento — varied panel sizes break the identical-card-grid tell */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-xs); transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s; display: flex; flex-direction: column; }
.feature.wide { grid-column: span 2; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.feature .fi { width: 50px; height: 50px; border-radius: 15px; background: linear-gradient(150deg, var(--primary-soft), #fff); border: 1px solid var(--border); display: grid; place-items: center; margin-bottom: 16px; flex: none; }
.feature .fi svg { width: 23px; height: 23px; stroke: var(--primary); }
.feature h3 { font-size: 18.5px; font-weight: 700; }
.feature p { margin-top: 8px; font-size: 14.5px; color: var(--text-muted); }
.feat-head { display: flex; gap: 16px; align-items: flex-start; }
.feat-head .fi { margin-bottom: 0; }
.feat-head h3 { font-size: 19px; }
.feat-head p { margin-top: 4px; }
/* ledger visual */
.ledger { margin-top: 20px; display: grid; gap: 8px; }
.ledger-row { display: grid; grid-template-columns: 10px 1fr auto auto; align-items: center; gap: 12px; padding: 11px 14px; border: 1px solid var(--border); border-radius: 12px; background: var(--card-alt); }
.ledger-row.hi { border-color: var(--primary-soft); background: var(--primary-softer); }
.lg-dot { width: 9px; height: 9px; border-radius: 50%; }
.lg-name { font-weight: 600; font-size: 14px; color: var(--text-heading); }
.lg-amt { font-family: var(--mono); font-size: 13px; color: var(--text-muted); }
.lg-time { font-family: var(--mono); font-size: 13.5px; font-weight: 700; color: var(--primary); min-width: 56px; text-align: right; }
/* savings goal ring */
.mini-goal { margin-top: auto; padding-top: 18px; display: flex; align-items: center; gap: 14px; }
.ring { width: 64px; height: 64px; border-radius: 50%; flex: none; display: grid; place-items: center; background: conic-gradient(var(--primary) 62%, var(--primary-soft) 0); }
.ring span { width: 48px; height: 48px; border-radius: 50%; background: var(--card); display: grid; place-items: center; font-family: var(--mono); font-weight: 700; font-size: 14px; color: var(--primary); }
.mini-goal-t { font-size: 13px; color: var(--text-muted); }
.mini-goal-t b { color: var(--text-heading); font-size: 13.5px; }
/* report mini bars */
.mini-bars { margin-top: 20px; display: flex; align-items: flex-end; gap: 8px; height: 92px; }
.mini-bars span { flex: 1; border-radius: 6px 6px 4px 4px; background: var(--primary-soft); }
.mini-bars span.hi { background: linear-gradient(180deg, #6E62FF, var(--primary-deep)); }

/* Money as time */
.mat { background: var(--card); border: 1px solid var(--border); border-radius: 24px; box-shadow: var(--shadow-md); padding: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.mat-demo { background: linear-gradient(160deg, var(--card-alt), #fff); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; }
.mat-demo label { font-weight: 700; font-size: 14px; color: var(--text-heading); }
.mat-demo input[type=range] { width: 100%; margin: 18px 0 6px; accent-color: var(--primary); height: 6px; }
.mat-row { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-muted); }
.mat-result { margin-top: 24px; padding: 24px; border-radius: var(--radius-sm); background: linear-gradient(135deg, #6E62FF, var(--primary-deep)); color: #fff; text-align: center; box-shadow: var(--shadow-indigo); position: relative; overflow: hidden; }
.mat-result::after { content: ""; position: absolute; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 255, 255, .16), transparent 70%); top: -100px; right: -60px; }
.mat-result .price { font-size: 13px; opacity: .85; position: relative; }
.mat-result .time { font-size: 38px; font-weight: 700; letter-spacing: -1.5px; margin-top: 3px; position: relative; }
.mat-pills { display: flex; gap: 8px; justify-content: center; margin-top: 16px; flex-wrap: wrap; }
.mat-pill { background: var(--card); border: 1px solid var(--border-strong); border-radius: 999px; padding: 8px 15px; font-size: 13px; font-weight: 700; cursor: pointer; transition: .15s; color: var(--text-body); }
.mat-pill:hover { border-color: var(--primary); color: var(--primary); }
.mat-pill.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Steps — a real 3-step sequence, so numbered markers earn their place */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-xs); transition: transform .22s var(--ease), box-shadow .22s var(--ease); }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step .num { width: 50px; height: 50px; border-radius: 16px; margin: 0 0 18px; display: grid; place-items: center; font-family: var(--mono); font-weight: 700; font-size: 19px; color: #fff; background: linear-gradient(135deg, #6E62FF, var(--primary-deep)); box-shadow: var(--shadow-indigo); }
.step h3 { font-size: 18.5px; font-weight: 700; }
.step p { margin-top: 9px; font-size: 14.5px; color: var(--text-muted); }
.step-viz { margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--border-strong); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.sv { font-family: var(--mono); font-size: 15px; font-weight: 700; color: var(--text-heading); }
.sv small { font-size: 11px; color: var(--text-muted); font-weight: 600; }
.sv-hi { color: var(--primary); }
.sv-dot { color: var(--text-faint); }
.sv-arrow { font-family: var(--mono); color: var(--primary); font-weight: 700; }
.sv-chip { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 12px; font-weight: 600; color: var(--text-body); background: var(--card-alt); border: 1px solid var(--border); border-radius: 8px; padding: 5px 10px; }
.sv-chip svg { width: 13px; height: 13px; }
/* security badges */
.sec-badges { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 20px; }
.sec-badges span { font-family: var(--mono); font-size: 11.5px; font-weight: 700; color: var(--primary); background: var(--primary-soft); border-radius: 999px; padding: 6px 13px; }
/* faq footer line */
.faq-more { text-align: center; margin-top: 24px; font-size: 14.5px; color: var(--text-muted); }
.faq-more a { font-weight: 700; }
/* CTA extras */
.cta-tag { display: inline-flex; align-items: center; gap: 7px; position: relative; font-family: var(--mono); font-size: 12px; font-weight: 700; color: #fff; background: rgba(255, 255, 255, .16); border: 1px solid rgba(255, 255, 255, .26); border-radius: 999px; padding: 6px 14px; margin-bottom: 18px; }
.cta-tag::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #8FF0C0; box-shadow: 0 0 0 3px rgba(143, 240, 192, .3); }
.cta-fine { position: relative; margin-top: 16px; font-size: 12.5px; color: rgba(255, 255, 255, .72); }

/* Security */
.security { background: linear-gradient(180deg, var(--primary-softer), var(--screen-bg)); }
.sec-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: center; }
.sec-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 16px; }
.sec-list li { display: flex; gap: 14px; align-items: flex-start; }
.sec-list .ck { flex: none; width: 30px; height: 30px; border-radius: 10px; background: var(--success-soft); display: grid; place-items: center; }
.sec-list .ck svg { width: 16px; height: 16px; stroke: var(--success); }
.sec-list b { color: var(--text-heading); }
.sec-card { background: var(--card); border: 1px solid var(--border); border-radius: 24px; box-shadow: var(--shadow-md); padding: 40px; text-align: center; }
.sec-card .lock { width: 76px; height: 76px; border-radius: 24px; margin: 0 auto 20px; display: grid; place-items: center; background: linear-gradient(135deg, #6E62FF, var(--primary-deep)); box-shadow: var(--shadow-indigo); }
.sec-card .lock svg { width: 33px; height: 33px; stroke: #fff; }

/* FAQ */
.faq { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 2px 22px; box-shadow: var(--shadow-xs); transition: box-shadow .2s, border-color .2s; }
.faq details[open] { box-shadow: var(--shadow-sm); border-color: var(--border-strong); }
.faq summary { list-style: none; cursor: pointer; font-weight: 700; color: var(--text-heading); font-size: 16px; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { transition: transform .25s var(--ease); color: var(--primary); font-size: 24px; line-height: 1; flex: none; }
.faq details[open] summary .plus { transform: rotate(45deg); }
.faq details p { padding: 0 0 20px; color: var(--text-muted); font-size: 14.5px; }

/* CTA band */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(135deg, #6E62FF, var(--primary-deep)); border-radius: 26px; padding: 64px 40px; text-align: center; color: #fff; box-shadow: var(--shadow-lg); }
.cta-band::before { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 255, 255, .16), transparent 70%); top: -180px; right: -90px; }
.cta-band::after { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(45, 198, 198, .18), transparent 70%); bottom: -200px; left: -100px; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 4vw, 42px); font-weight: 800; position: relative; }
.cta-band p { color: rgba(255, 255, 255, .86); margin-top: 14px; font-size: 17.5px; position: relative; }
.cta-band .waitlist { max-width: 500px; margin: 28px auto 0; position: relative; }
.cta-band .waitlist input[type=email] { border-color: transparent; box-shadow: 0 8px 20px rgba(0, 0, 0, .1); }
.cta-band .waitlist .btn-ghost { color: var(--primary-deep); }
.cta-band .form-success { color: #C9F7DE; justify-content: center; }

/* Footer */
.footer { padding: 70px 0 40px; border-top: 1px solid var(--border); margin-top: 40px; background: var(--card); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand p { margin-top: 16px; color: var(--text-muted); font-size: 14.5px; max-width: 27em; }
.footer h4 { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-faint); margin-bottom: 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer ul a { color: var(--text-body); font-size: 14.5px; }
.footer ul a:hover { color: var(--primary); }
.footer-bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--text-muted); font-size: 13px; }
.disclaimer { max-width: 62em; }

/* Legal pages */
.legal { padding: 60px 0 90px; }
.legal-wrap { max-width: 780px; }
.legal h1 { font-size: 40px; font-weight: 800; }
.legal .updated { color: var(--text-muted); font-size: 14px; margin-top: 8px; }
.legal h2 { font-size: 21px; font-weight: 700; margin-top: 38px; }
.legal p, .legal li { font-size: 15.5px; color: var(--text-body); }
.legal ul { padding-left: 22px; }
.legal a { font-weight: 600; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.features .feature:nth-child(2), .steps .step:nth-child(2) { transition-delay: .08s; }
.features .feature:nth-child(3), .steps .step:nth-child(3) { transition-delay: .16s; }
.features .feature:nth-child(5) { transition-delay: .08s; }
.features .feature:nth-child(6) { transition-delay: .16s; }

/* Responsive */
@media (max-width: 920px) {
  .hero-grid, .mat, .sec-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr 1fr; }
  .phone { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: 56px; }
  section { padding: 70px 0; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column; align-items: stretch; background: var(--card); padding: 20px 24px 24px; gap: 18px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); }
  .nav-links.open a { font-size: 16px; }
  .nav-desktop-cta { display: none; }
  .nav-menu-cta { display: inline-flex; justify-content: center; margin-top: 4px; }
  .nav-toggle { display: block; }
  .bento, .steps, .footer-grid { grid-template-columns: 1fr; }
  .feature.wide { grid-column: span 1; }
  section { padding: 58px 0; }
  .mat, .cta-band { padding: 30px 22px; }
  .hero h1 { font-size: clamp(38px, 11vw, 52px); }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; }
  .reveal { transition: none; opacity: 1; transform: none; }
}
