:root {
  --brand: #DA97DB;
  --accent: #B45EC1;
  --accent-dark: #7A3B86;
  --accent-soft: #FBEFFA;
  --text: #0a0a0a;
  --muted: #5b6472;
  --bg: #ffffff;
  --bg-soft: #F7F9FC;
  --border: #E5E7EB;
  --success: #10B981;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 12px 40px rgba(180, 94, 193, 0.12);
  --shadow-lg: 0 30px 80px rgba(180, 94, 193, 0.18);
  --radius: 18px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { letter-spacing: -0.025em; }

/* ─── NAV — liquid-glass floating pill ─── */
.nav-wrap {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 980px;
  z-index: 100;
  pointer-events: none;
}
.nav {
  pointer-events: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px 10px 20px;
  gap: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 10px 36px rgba(15, 23, 42, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
/* When scrolled off hero, switch to light glass so text is readable */
body.nav-light .nav {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(229, 231, 235, 0.8);
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  color: white;
  letter-spacing: -0.01em;
}
.brand img { filter: brightness(0) invert(1); transition: filter .25s ease; }
body.nav-light .brand { color: var(--text); }
body.nav-light .brand img { filter: none; }
.brand:hover { text-decoration: none; }
.nav-links {
  display: flex;
  gap: 24px;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  font-size: 14px;
  transition: color .2s ease;
}
.nav-links a:hover { color: white; text-decoration: none; }
body.nav-light .nav-links a { color: #2a2f3a; }
body.nav-light .nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: white;
  color: var(--accent);
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  transition: transform .15s ease, background .15s ease;
}
.nav-cta:hover { background: white; text-decoration: none; transform: translateY(-1px); }
body.nav-light .nav-cta { background: var(--text); color: white; }
body.nav-light .nav-cta:hover { background: var(--accent); }

main { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* Shared dotted-grid texture — mirrors the SwiftUI OnboardingBackground Canvas */
.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.14) 1.4px, transparent 1.6px);
  background-size: 26px 26px;
  background-position: -13px -13px;
  pointer-events: none;
}

/* ─── HERO (BLUE + BUBBLES) — centered content, bubbles as decoration ─── */
.hero-blue {
  position: relative;
  min-height: 100vh;
  padding: 140px 32px 80px;
  background: var(--brand);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
}
.hero-blue::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.10) 100%);
  pointer-events: none;
  z-index: 0;
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.14) 1.4px, transparent 1.6px);
  background-size: 26px 26px;
  background-position: -13px -13px;
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Bubble cluster — scattered decorations across the hero, behind the copy */
.bubbles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.bubble {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 14px 34px rgba(0,0,0,0.28));
  --mx: 0px;
  --my: 0px;
  will-change: transform;
}
/* Scattered around the centered copy — two top corners, two bottom, one far edge */
.b3 { top: -4%;  left:  6%;  width: 400px; height: 400px; animation: floatC 2.4s ease-in-out infinite alternate; }
.b1 { top: -2%;  right: -2%; width: 440px; height: 440px; animation: floatA 2.8s ease-in-out infinite alternate; }
.b5 { top: 30%;  left: -6%;  width: 360px; height: 360px; animation: floatE 2.6s ease-in-out infinite alternate; }
.b2 { bottom: -6%; left: 14%; width: 340px; height: 340px; animation: floatB 3.4s ease-in-out infinite alternate; }
.b4 { bottom: -4%; right: -2%; width: 460px; height: 460px; animation: floatD 3.0s ease-in-out infinite alternate; }

@keyframes floatA { from { transform: translate(var(--mx), calc(var(--my) + 10px)) rotate(6deg); }  to { transform: translate(var(--mx), calc(var(--my) - 10px)) rotate(6deg); } }
@keyframes floatB { from { transform: translate(var(--mx), calc(var(--my) + 8px))  rotate(10deg); } to { transform: translate(var(--mx), calc(var(--my) - 8px))  rotate(10deg); } }
@keyframes floatC { from { transform: translate(var(--mx), calc(var(--my) + 10px)) rotate(-8deg); } to { transform: translate(var(--mx), calc(var(--my) - 10px)) rotate(-8deg); } }
@keyframes floatD { from { transform: translate(var(--mx), calc(var(--my) + 11px)) rotate(-6deg); } to { transform: translate(var(--mx), calc(var(--my) - 11px)) rotate(-6deg); } }
@keyframes floatE { from { transform: translate(var(--mx), calc(var(--my) + 14px)) rotate(-4deg); } to { transform: translate(var(--mx), calc(var(--my) - 14px)) rotate(-4deg); } }

/* Copy column — centered */
.hero-copy {
  position: relative;
  z-index: 3;
  color: white;
  text-align: center;
  animation: fadeUp .7s ease-out .1s both;
  width: 100%;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero-brand img { filter: brightness(0) invert(1); width: 68px; height: 68px; }
.hero-blue h1 {
  font-size: 76px;
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 0 0 22px;
  color: white;
}
.hero-lede {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  max-width: 520px;
  margin: 0 auto 32px;
}
.hero-copy .store-row { justify-content: center; }
.store-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000;
  color: white;
  padding: 10px 20px;
  min-height: 54px;
  border-radius: 12px;
  text-align: left;
  line-height: 1;
  transition: transform .15s ease, box-shadow .15s ease;
}
.store-btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0,0,0,0.22); }
.store-btn-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  line-height: 1;
}
.store-btn small {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.01em;
  opacity: 0.85;
  line-height: 1;
}
.store-btn strong {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
}
/* On blue hero: keep black badge (Apple's recommended style works on any bg) */
.store-btn-light {
  background: #000;
  color: white;
}

.proof {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.stars { color: #FFD54A; letter-spacing: 2px; font-size: 14px; }
.proof-text { font-size: 14px; color: rgba(255,255,255,0.92); }
.proof-text strong { color: white; }

/* ─── $7B COUNTER ─── */
.billion-section {
  position: relative;
  margin: 48px -32px 0;
  padding: 120px 32px;
  background: var(--brand);
  color: white;
  text-align: center;
  overflow: hidden;
  border-radius: 40px;
}
.billion-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.12) 1.4px, transparent 1.6px);
  background-size: 26px 26px;
  background-position: -13px -13px;
  pointer-events: none;
}
.billion-inner { position: relative; max-width: 880px; margin: 0 auto; }
.billion-amount {
  font-size: 88px;
  font-weight: 800;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
  margin-bottom: 24px;
  transition: transform .3s ease;
}
.billion-amount.landed { transform: scale(1.02); }
.billion-section h2 {
  color: white;
  font-size: 40px;
  margin: 0 0 16px;
  line-height: 1.15;
  font-weight: 800;
}
.billion-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

/* ─── WHERE THE MONEY IS HIDING ─── */
.hiding-section {
  position: relative;
  margin: 24px -32px 0;
  padding: 100px 32px;
  background: var(--brand);
  color: white;
  overflow: hidden;
  border-radius: 40px;
}
.hiding-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.10) 1.4px, transparent 1.6px);
  background-size: 26px 26px;
  background-position: -13px -13px;
  pointer-events: none;
}
.hiding-inner { position: relative; max-width: 880px; margin: 0 auto; }
.hiding-section h2 {
  color: white;
  font-size: 48px;
  text-align: center;
  margin: 0 0 48px;
}
.hiding-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hiding-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  border-radius: 20px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform .2s ease, background .2s ease;
}
.hiding-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.20);
}
.hiding-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.22);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hiding-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 4px;
  color: white;
}
.hiding-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  margin: 0;
  line-height: 1.5;
}

/* ─── MARQUEE ─── */
.marquee-section {
  padding: 60px 0 80px;
  text-align: center;
}
.marquee-label {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin: 0 0 28px;
  font-weight: 600;
}
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: scroll 40s linear infinite;
}
.marquee-track span {
  font-weight: 600;
  font-size: 18px;
  color: #333;
  white-space: nowrap;
}
.marquee-track em {
  color: var(--accent);
  font-style: normal;
  font-weight: 700;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── SECTION HEADINGS ─── */
section h2 {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  text-align: center;
  line-height: 1.1;
}
.section-lede {
  font-size: 19px;
  color: var(--muted);
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

/* ─── WHY ─── */
.why { padding: 80px 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.why-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.why-card h3 { font-size: 19px; margin: 0 0 8px; font-weight: 700; }
.why-card p { color: var(--muted); margin: 0; font-size: 15px; }

/* ─── HOW ─── */
.how { padding: 100px 0; background: var(--bg-soft); margin: 60px -32px 0; padding-left: 32px; padding-right: 32px; border-radius: 32px; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
.how-step {
  text-align: center;
}
.phone {
  width: 240px;
  height: 480px;
  margin: 0 auto 28px;
  background: #1a1a1a;
  border-radius: 38px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.phone::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #1a1a1a;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone-screen {
  background: white;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* ── Phone 1 · Onboarding step (matches OnboardingStepTemplate) ── */
.screen-onboard {
  background: var(--brand);
  padding: 34px 18px 14px;
}
.screen-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.14) 1.2px, transparent 1.4px);
  background-size: 18px 18px;
  background-position: -9px -9px;
  pointer-events: none;
}
.screen-topbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.chev-back {
  color: white;
  font-size: 22px;
  font-weight: 700;
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
}
.ob-title {
  position: relative;
  z-index: 1;
  color: white;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.ob-subtitle {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.78);
  font-size: 11px;
  text-align: center;
  margin-bottom: 22px;
  font-weight: 500;
}
.ob-field {
  position: relative;
  z-index: 1;
  color: white;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 18px;
  background: rgba(255,255,255,0.18);
  border-radius: 999px;
  margin-bottom: 18px;
}
.ob-cta {
  position: relative;
  z-index: 1;
  margin-top: auto;
  background: white;
  color: var(--accent);
  text-align: center;
  padding: 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

/* ── Phone 2 · Swipe card (matches ScholarshipCardView) ── */
.screen-swipe {
  background: #F7F9FC;
  padding: 22px 16px 16px;
}
.sc-card {
  background: white;
  border-radius: 20px;
  padding: 10px 0 16px;
  box-shadow: 0 8px 22px rgba(15,23,42,0.08);
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}
.sc-bar {
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0 28px 14px;
}
.sc-amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  text-align: center;
  line-height: 1;
  margin-bottom: 4px;
}
.sc-deadline {
  font-size: 11px;
  font-weight: 600;
  color: var(--success);
  text-align: center;
  margin-bottom: 12px;
}
.sc-clock { margin-right: 3px; }
.sc-divider {
  height: 1px;
  background: rgba(107,114,128,0.15);
  margin: 0 18px 14px;
}
.sc-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  padding: 0 18px;
  line-height: 1.22;
}
.sc-provider {
  font-size: 11px;
  color: var(--muted);
  padding: 2px 18px 0;
}
.sc-chips {
  display: flex;
  gap: 6px;
  padding: 10px 18px 0;
  flex-wrap: wrap;
}
.sc-chip {
  font-size: 9px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.sc-chip-success { color: var(--success); background: rgba(16,185,129,0.15); }
.sc-chip-accent  { color: var(--accent);  background: rgba(180,94,193,0.12); }
.sc-bolt { font-size: 9px; }
.sc-facts {
  padding: 10px 18px 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sc-fact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
}
.sc-ico { color: var(--accent); font-size: 8px; }
.sc-flabel { color: var(--muted); font-weight: 500; }
.sc-fval { color: var(--text); font-weight: 600; }
.sc-tags {
  margin-top: auto;
  padding: 12px 18px 0;
  display: flex;
  gap: 5px;
}
.sc-tag {
  font-size: 9px;
  font-weight: 600;
  color: var(--accent);
  border: 1px solid rgba(180,94,193,0.3);
  padding: 3px 8px;
  border-radius: 999px;
}
.sc-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  padding: 0 4px;
}
.sc-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  background: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.sc-btn-x { color: var(--danger, #EF4444); border: 1.5px solid rgba(239,68,68,0.3); }
.sc-btn-check { color: var(--accent); border: 1.5px solid var(--accent); }

/* ── Phone 3 · Applications list (matches ApplicationsListView) ── */
.screen-apps {
  background: white;
  padding: 30px 0 16px;
}
.apps-topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 15px;
  color: var(--text);
  padding: 0 16px 12px;
  letter-spacing: -0.01em;
}
.apps-filters {
  display: flex;
  gap: 6px;
  padding: 0 16px 10px;
}
.apps-filter {
  font-size: 10px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  background: #F3F4F6;
  color: var(--text);
}
.apps-filter-active {
  background: var(--accent);
  color: white;
}
.apps-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: #F3F4F6;
  border-radius: 12px;
  margin: 0 12px 6px;
  padding: 10px 12px;
}
.apps-row-action {
  background: rgba(245,158,11,0.10);
  border: 1px solid rgba(245,158,11,0.3);
}
.apps-row-main { min-width: 0; flex: 1; }
.apps-row-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}
.apps-row-prov {
  font-size: 9px;
  color: var(--muted);
  margin-top: 2px;
}
.apps-row-missing {
  font-size: 9px;
  color: #F59E0B;
  margin-top: 4px;
  line-height: 1.3;
}
.apps-row-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.apps-amount {
  font-size: 11px;
  font-weight: 700;
  color: var(--success);
}
.apps-badge {
  font-size: 8px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.apps-badge-applied { background: rgba(16,185,129,0.15); color: var(--success); }
.apps-badge-pending { background: rgba(180,94,193,0.12); color: var(--accent); }
.apps-badge-action  { background: rgba(245,158,11,0.18); color: #B45309; }

.step-num {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.how-step h3 { font-size: 22px; margin: 0 0 8px; font-weight: 700; }
.how-step p { color: var(--muted); font-size: 15px; max-width: 280px; margin: 0 auto; }

/* ─── TESTIMONIALS ─── */
.testimonials { padding: 120px 0 80px; }
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.t-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.t-stars { color: #FFB800; font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.t-card p {
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 24px;
  color: var(--text);
}
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 17px;
}
.t-author small { color: var(--muted); }

/* ─── FAQ ─── */
.faq { padding: 80px 0 120px; max-width: 780px; margin: 0 auto; }
.faq-list { margin-top: 48px; }
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq summary {
  font-size: 19px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 28px;
  font-weight: 300;
  color: var(--accent);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

/* ─── FINAL CTA ─── */
.final-cta {
  position: relative;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  color: white;
  text-align: center;
  border-radius: 32px;
  padding: 80px 32px;
  margin: 40px 0 80px;
  overflow: hidden;
}
.final-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.12) 1.4px, transparent 1.6px);
  background-size: 26px 26px;
  background-position: -13px -13px;
  pointer-events: none;
}
.final-inner { position: relative; }
.final-cta img { margin-bottom: 8px; }
.final-cta h2 {
  color: white;
  font-size: 56px;
  margin: 0 0 16px;
  text-align: center;
}
.final-cta p {
  color: rgba(255,255,255,0.92);
  font-size: 19px;
  max-width: 540px;
  margin: 0 auto 36px;
}
.final-cta .store-row { justify-content: center; }

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 64px 32px 40px;
  background: white;
}
.foot-cols {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.foot-cols h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 16px;
  font-weight: 700;
}
.foot-cols a {
  display: block;
  color: var(--text);
  font-size: 15px;
  margin-bottom: 10px;
}
.foot-cols a:hover { color: var(--accent); text-decoration: none; }
.muted { color: var(--muted); margin: 12px 0 0; font-size: 14px; line-height: 1.6; }
.copyright {
  max-width: 1240px;
  margin: 56px auto 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

/* ─── LEGAL PAGES ─── */
.legal {
  max-width: 760px;
  margin: 60px auto 100px;
  padding: 0 32px;
}
.legal h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
}
.legal .updated {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 32px;
}
.legal h2 {
  font-size: 22px;
  margin: 36px 0 12px;
  font-weight: 700;
}
.legal p, .legal li {
  color: #333;
  font-size: 16px;
  line-height: 1.7;
}
.legal h3 {
  font-size: 18px;
  margin: 24px 0 10px;
  font-weight: 700;
  text-align: left;
}
.legal ul { padding-left: 22px; }
.legal a { color: var(--accent); }

.foot-legal {
  text-align: center;
  padding: 16px 0;
  font-size: 14px;
}
.foot-legal a { color: var(--muted); margin: 0 4px; }
.foot-legal a:hover { color: var(--accent); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1000px) {
  .hero-blue h1 { font-size: 60px; }
  .b1, .b4 { width: 340px; height: 340px; }
  .b3, .b5 { width: 300px; height: 300px; }
  .b2 { width: 260px; height: 260px; }
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid, .t-grid { grid-template-columns: 1fr; gap: 48px; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .hiding-cards { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .hero-blue { padding: 110px 20px 60px; }
  .hero-blue h1 { font-size: 46px; }
  .hero-lede { font-size: 17px; }
  .hero-inner { min-height: 380px; }
  /* On mobile, pull bubbles to corners so they don't collide with centered copy */
  .b1 { top: -2%; right: -10%; width: 240px; height: 240px; }
  .b3 { top: -2%; left: -10%; width: 220px; height: 220px; }
  .b5 { display: none; }
  .b2 { bottom: -4%; left: -6%; width: 200px; height: 200px; }
  .b4 { bottom: -4%; right: -10%; width: 240px; height: 240px; }
  .billion-amount { font-size: 54px; }
  .billion-section { padding: 80px 24px; }
  .billion-section h2 { font-size: 28px; }
  .hiding-section { padding: 72px 24px; }
  .hiding-section h2 { font-size: 34px; }
  section h2 { font-size: 36px; }
  .final-cta h2 { font-size: 38px; }
  .nav-links { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: 1fr; gap: 32px; }
  .nav-cta { display: none; }
}
