/* Committee Boat HQ — marketing site
   Brand tokens lifted directly from the iOS design system (cb-ui.jsx) */

:root {
  /* Navy ramp */
  --navy-900: #0A2342;
  --navy-800: #0E2C52;
  --navy-700: #13396A;
  --navy-600: #1B4A86;
  /* Page bases (darkest at the floor, matching onboarding gradient) */
  --bg:        #08182C;
  --bg-deep:   #06121F;
  --bg-band:   #0B2140;
  /* Sea / sky blue */
  --blue-600: #2C6FB5;
  --blue-500: #3D86CF;
  --blue-400: #5BA3E0;
  --blue-200: #AED4F2;
  /* Signal coral */
  --signal:   #FF5E3A;
  --signal-d: #E8492A;
  --signal-l: #FF8A6E;
  /* Marine / semantic */
  --water:    #D4E6F1;
  --water-d:  #1A3A5C;
  --buoy:     #FFC93C;
  --green:    #1FB85B;
  /* Ink on dark */
  --ink:   #FFFFFF;
  --ink2:  rgba(255,255,255,0.66);
  --ink3:  rgba(255,255,255,0.40);
  --line:  rgba(255,255,255,0.10);
  --line2: rgba(255,255,255,0.06);
  /* Surfaces */
  --card:  #102E55;
  --card2: #0E2747;

  --font: -apple-system, "SF Pro Text", "SF Pro Display", "SF Pro", system-ui, "Segoe UI", Roboto, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --maxw: 1180px;
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
::selection { background: rgba(255,94,58,0.32); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ───────────────────── Brand mark (The Sequence) ───────────────────── */
.mark {
  border-radius: 22.4%;
  background: linear-gradient(160deg, var(--navy-700), var(--navy-900));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; flex-shrink: 0;
  box-shadow: 0 8px 22px rgba(6,18,31,0.5), inset 0 1px 0 rgba(255,255,255,0.12);
}
.mark svg { width: 60%; height: 60%; }
.mark .ring-track { stroke: rgba(255,255,255,0.25); }
.mark .ring-prog  { stroke: var(--signal); stroke-linecap: round; }
.mark .core { fill: var(--signal); }

.brand-lock { display: flex; align-items: center; gap: 11px; }
.brand-lock .wordmark {
  font-weight: 800; letter-spacing: -0.4px; font-size: 18px; color: var(--ink);
  white-space: nowrap;
}
.brand-lock .wordmark .hq { color: var(--signal); }

/* ───────────────────── Nav ───────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 16px 28px;
  max-width: var(--maxw); margin: 0 auto;
  transition: padding .25s ease;
}
.nav-shell {
  position: sticky; top: 0; z-index: 50;
  background: transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.nav-shell.scrolled {
  background: rgba(8,24,44,0.78);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--line);
}
.nav-links { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--ink2); letter-spacing: -0.1px;
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta { margin-left: 8px; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
  color: var(--ink);
}

/* ───────────────────── Buttons ───────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 52px; padding: 0 26px; border-radius: 15px; border: none; cursor: pointer;
  font-family: var(--font); font-size: 17px; font-weight: 600; letter-spacing: -0.3px;
  white-space: nowrap; transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary {
  background: var(--signal); color: #fff;
  box-shadow: 0 8px 22px rgba(255,94,58,0.34);
}
.btn-primary:hover { background: #ff6f4f; box-shadow: 0 10px 28px rgba(255,94,58,0.44); }
.btn-ghost {
  background: rgba(255,255,255,0.06); color: #fff;
  border: 1.5px solid rgba(255,255,255,0.18);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-sm { height: 42px; padding: 0 18px; font-size: 15px; border-radius: 12px; }

/* App Store badge (built, not imported) */
.appstore {
  display: inline-flex; align-items: center; gap: 12px;
  height: 56px; padding: 0 22px 0 20px; border-radius: 14px;
  background: #000; border: 1px solid rgba(255,255,255,0.2); cursor: pointer;
  transition: background .2s ease;
}
.appstore:hover { background: #111; }
.appstore .as-sub { font-size: 11px; color: rgba(255,255,255,0.7); letter-spacing: 0.2px; }
.appstore .as-main { font-size: 19px; font-weight: 600; letter-spacing: -0.3px; margin-top: -2px; }
.appstore.is-soon { opacity: 0.55; cursor: default; }

/* ───────────────────── Pills / tags ───────────────────── */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  height: 32px; padding: 0 14px 0 12px; border-radius: 99px;
  background: rgba(255,94,58,0.12); border: 1px solid rgba(255,94,58,0.34);
  color: var(--signal-l); font-size: 13px; font-weight: 700;
  letter-spacing: 0.4px; text-transform: uppercase;
}
.pill .dot {
  width: 8px; height: 8px; border-radius: 99px; background: var(--signal);
  box-shadow: 0 0 0 0 rgba(255,94,58,0.6); animation: cbpulse 1.8s infinite;
}
@keyframes cbpulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,94,58,0.55); }
  70%  { box-shadow: 0 0 0 7px rgba(255,94,58,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,94,58,0); }
}

.eyebrow {
  font-size: 13px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--signal); margin: 0 0 14px;
}

/* ───────────────────── Section scaffolding ───────────────────── */
section { position: relative; }
.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head h2 {
  font-size: clamp(30px, 4.4vw, 46px); font-weight: 800; letter-spacing: -1.2px;
  line-height: 1.05; margin: 0; text-wrap: balance;
}
.section-head p {
  font-size: 18px; line-height: 1.55; color: var(--ink2); margin: 18px 0 0;
  text-wrap: pretty;
}

/* faint chart grid backdrop */
.chartbg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }

/* ───────────────────── Hero ───────────────────── */
.hero {
  background:
    radial-gradient(circle at 80% 8%, rgba(255,94,58,0.22), transparent 46%),
    linear-gradient(168deg, var(--navy-700) 0%, var(--navy-900) 58%, var(--bg-deep) 100%);
  overflow: hidden;
  padding: 40px 0 0;
}
.hero-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 56px 28px 0;
  display: grid; grid-template-columns: 1.06fr 0.94fr; gap: 40px; align-items: center;
  position: relative;
}
.hero-icon { width: 76px; height: 76px; margin-bottom: 26px; }
.hero h1 {
  font-size: clamp(42px, 6.4vw, 78px); font-weight: 800; letter-spacing: -2px;
  line-height: 0.98; margin: 20px 0 0; text-wrap: balance;
}
.hero h1 .coral { color: var(--signal); }
.hero .lede {
  font-size: clamp(17px, 1.5vw, 20px); line-height: 1.55; color: rgba(255,255,255,0.78);
  margin: 22px 0 0; max-width: 480px; text-wrap: pretty;
}
.hero-form { margin-top: 32px; }
.hero .micro {
  margin-top: 16px; font-size: 13.5px; color: var(--ink3);
  display: flex; align-items: center; gap: 8px;
}
.hero .micro .sep { opacity: 0.5; }

/* waitlist input group */
.waitlist {
  display: flex; gap: 10px; max-width: 480px; flex-wrap: wrap;
}
.waitlist .field {
  flex: 1 1 240px; min-width: 0; height: 52px; border-radius: 14px;
  background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.16);
  display: flex; align-items: center; padding: 0 16px;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.waitlist .field:focus-within {
  border-color: var(--signal); background: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 4px rgba(255,94,58,0.16);
}
.waitlist input {
  flex: 1; min-width: 0; border: none; outline: none; background: transparent;
  font-family: var(--font); font-size: 16.5px; color: #fff; letter-spacing: -0.2px;
}
.waitlist input::placeholder { color: rgba(255,255,255,0.46); }
.waitlist .btn { flex: 0 0 auto; }
.waitlist.sent { justify-content: flex-start; }
.waitlist-done {
  display: none; align-items: center; gap: 11px;
  font-size: 16.5px; font-weight: 600; color: #fff;
  background: rgba(31,184,91,0.14); border: 1px solid rgba(31,184,91,0.4);
  border-radius: 14px; padding: 14px 20px; max-width: 480px;
}
.waitlist-done.show { display: flex; }
.waitlist-done .check {
  width: 24px; height: 24px; border-radius: 99px; background: var(--green);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* hero art */
.hero-art {
  position: relative; display: flex; justify-content: center; align-items: flex-end;
  padding-top: 24px; min-height: 540px;
}
.hero-art .phone { transform: rotate(-3deg); }
.hero-art .phone::after {
  content: ""; position: absolute; inset: -60px -40px -120px;
  background: radial-gradient(ellipse at center, rgba(91,163,224,0.22), transparent 62%);
  z-index: -1;
}

/* ───────────────────── Phone mockups ───────────────────── */
.phone {
  --pw: 256px;
  width: var(--pw);
  border-radius: 14%/6.4%;
  background: #06070a;
  padding: calc(var(--pw) * 0.043);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
  position: relative; flex-shrink: 0;
}
.phone .screen {
  width: 100%; aspect-ratio: 393 / 852; border-radius: 11%/5.1%; overflow: hidden;
  position: relative; background: #000;
}
/* dynamic island */
.phone .island {
  position: absolute; top: calc(var(--pw) * 0.045); left: 50%; transform: translateX(-50%);
  width: 32%; height: calc(var(--pw) * 0.072); background: #000; border-radius: 99px; z-index: 6;
}
/* full screen scaled to 393 logical width */
.scr {
  position: absolute; top: 0; left: 0;
  width: 393px; height: 852px;
  transform: scale(0.5954);
  transform-origin: top left;
  font-family: var(--font);
}

/* dark app screen surfaces (matches app dark mode) */
.scr { background: #000; color: #fff; }
.scr .s-status {
  height: 54px; display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0 26px 8px; font-size: 15px; font-weight: 600;
}
.scr .s-head {
  display: flex; align-items: center; justify-content: space-between; padding: 6px 18px 4px;
}
.scr .s-head .s-title { font-size: 30px; font-weight: 800; letter-spacing: -0.6px; }
.scr .s-head .s-brand { display: flex; align-items: center; gap: 8px; font-size: 17px; font-weight: 800; }
.scr .s-icons { display: flex; gap: 10px; }
.scr .s-iconbtn {
  width: 36px; height: 36px; border-radius: 99px; background: rgba(118,118,128,0.24);
  display: flex; align-items: center; justify-content: center;
}
.scr .s-seg {
  display: flex; gap: 2px; margin: 12px 18px; padding: 2px; border-radius: 11px;
  background: rgba(120,120,128,0.32);
}
.scr .s-seg span {
  flex: 1; text-align: center; height: 34px; line-height: 34px; border-radius: 9px;
  font-size: 14.5px; font-weight: 500; color: #fff;
}
.scr .s-seg span.on { background: #48484F; font-weight: 600; box-shadow: 0 1px 3px rgba(0,0,0,0.3); }

.scr .s-cards { padding: 4px 18px; display: flex; flex-direction: column; gap: 14px; }
.scr .s-card { background: #16181C; border-radius: 18px; overflow: hidden; border: 0.5px solid rgba(120,120,128,0.32); }
.scr .s-chart { height: 118px; position: relative; }
.scr .s-card-body { padding: 13px 15px 15px; }
.scr .s-card-t { font-size: 17px; font-weight: 700; letter-spacing: -0.3px; }
.scr .s-card-m { font-size: 13.5px; color: rgba(235,235,245,0.62); margin-top: 4px; display: flex; align-items: center; gap: 6px; }
.scr .s-card-time { display: flex; align-items: center; gap: 7px; margin-top: 11px; font-size: 14px; font-weight: 600; color: var(--signal); }
.scr .s-tags { display: flex; gap: 7px; margin-top: 10px; }
.scr .s-badge {
  position: absolute; top: 10px; left: 12px; z-index: 3;
  display: inline-flex; align-items: center; gap: 5px; height: 24px; padding: 0 10px;
  border-radius: 8px; font-size: 12.5px; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase;
}
.scr .s-badge.live { background: var(--signal); color: #fff; }
.scr .s-badge.soon { background: #FFF3D6; color: #9A6B00; }
.scr .s-badge .b-dot { width: 7px; height: 7px; border-radius: 99px; background: #fff; }
.scr .s-tag {
  display: inline-flex; align-items: center; gap: 4px; height: 22px; padding: 0 9px; border-radius: 7px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.3px; text-transform: uppercase; white-space: nowrap;
}
.scr .s-tag.neutral { background: rgba(120,120,128,0.26); color: rgba(235,235,245,0.62); }
.scr .s-tag.mine { background: #2B5896; color: #fff; }
.scr .s-tag.practice { color: #F0C24A; border: 1px dashed rgba(240,194,74,0.55); }

.scr .s-tabbar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 83px;
  display: flex; justify-content: space-around; padding-top: 10px;
  background: rgba(20,22,26,0.86); backdrop-filter: blur(22px);
  border-top: 0.5px solid rgba(120,120,128,0.32);
}
.scr .s-tab { display: flex; flex-direction: column; align-items: center; gap: 3px; flex: 1; }
.scr .s-tab .s-tlabel { font-size: 10.5px; font-weight: 500; }

/* countdown screen */
.scr.center { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 0 28px; }
.scr .s-count {
  font-family: var(--mono); font-size: 96px; font-weight: 700; letter-spacing: 2px;
  font-variant-numeric: tabular-nums; line-height: 1;
}
.scr .s-count-label { font-size: 15px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--signal-l); margin-bottom: 22px; }
.scr .s-count-sub { font-size: 16px; color: rgba(235,235,245,0.62); margin-top: 18px; }

/* results screen */
.scr .s-results { padding: 6px 18px; display: flex; flex-direction: column; gap: 0; }
.scr .s-rrow { display: flex; align-items: center; gap: 13px; padding: 14px 4px; border-bottom: 0.5px solid rgba(120,120,128,0.32); }
.scr .s-place {
  width: 30px; height: 30px; border-radius: 99px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; font-family: var(--mono);
  background: rgba(120,120,128,0.26); color: #fff;
}
.scr .s-place.p1 { background: var(--buoy); color: #4a3500; }
.scr .s-place.p2 { background: #C7CDD6; color: #2a3240; }
.scr .s-place.p3 { background: #D89B6A; color: #3a2410; }
.scr .s-rname { font-size: 16px; font-weight: 600; }
.scr .s-rsub { font-size: 12.5px; color: rgba(235,235,245,0.62); margin-top: 2px; }
.scr .s-rtime { margin-left: auto; font-family: var(--mono); font-size: 15px; font-weight: 700; font-variant-numeric: tabular-nums; }

/* showcase */
.showcase { background: var(--bg-band); padding: 100px 0; }
.phones-row {
  display: flex; gap: 30px; justify-content: center; align-items: flex-start;
  flex-wrap: wrap;
}
.phone-cell { display: flex; flex-direction: column; align-items: center; max-width: 256px; }
.phone-cell .caption { margin-top: 26px; text-align: center; }
.phone-cell .caption .c-step {
  font-family: var(--mono); font-size: 12px; font-weight: 700; color: var(--signal); letter-spacing: 1px;
}
.phone-cell .caption h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.4px; margin: 8px 0 0; }
.phone-cell .caption p { font-size: 14.5px; line-height: 1.5; color: var(--ink2); margin: 8px 0 0; }

/* how it works */
.how { padding: 100px 0; background: var(--bg); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step {
  background: var(--card2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 30px 34px; position: relative; overflow: hidden;
}
.step .step-num {
  font-family: var(--mono); font-size: 14px; font-weight: 700; color: var(--signal);
  letter-spacing: 1px;
}
.step .step-ico {
  width: 56px; height: 56px; border-radius: 16px; margin: 18px 0 20px;
  background: rgba(255,94,58,0.12); border: 1px solid rgba(255,94,58,0.28);
  display: flex; align-items: center; justify-content: center;
}
.step h3 { font-size: 21px; font-weight: 700; letter-spacing: -0.4px; margin: 0; }
.step p { font-size: 15.5px; line-height: 1.55; color: var(--ink2); margin: 12px 0 0; }

/* faq */
.faq { padding: 100px 0; background: var(--bg-band); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line); padding: 4px 0;
}
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 18px;
  padding: 24px 4px; font-size: 19px; font-weight: 600; letter-spacing: -0.3px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .q-mark {
  margin-left: auto; flex-shrink: 0; width: 24px; height: 24px; position: relative;
  transition: transform .25s ease;
}
.faq-item summary .q-mark::before,
.faq-item summary .q-mark::after {
  content: ""; position: absolute; background: var(--signal); border-radius: 2px;
  top: 11px; left: 4px; width: 16px; height: 2.4px;
}
.faq-item summary .q-mark::after { transform: rotate(90deg); }
.faq-item[open] summary .q-mark { transform: rotate(45deg); }
.faq-item .faq-body {
  padding: 0 46px 26px 4px; font-size: 16px; line-height: 1.6; color: var(--ink2);
  text-wrap: pretty;
}
.faq-item .faq-body a { color: var(--signal-l); font-weight: 600; }

/* cta band */
.cta {
  background:
    radial-gradient(circle at 18% 120%, rgba(255,94,58,0.28), transparent 50%),
    radial-gradient(circle at 86% -20%, rgba(91,163,224,0.22), transparent 46%),
    linear-gradient(160deg, var(--navy-700), var(--navy-900));
  overflow: hidden;
  padding: 96px 0;
}
.cta-inner { text-align: center; max-width: 620px; margin: 0 auto; position: relative; }
.cta .mark { margin: 0 auto 26px; width: 72px; height: 72px; }
.cta h2 { font-size: clamp(32px, 4.6vw, 48px); font-weight: 800; letter-spacing: -1.3px; line-height: 1.04; margin: 0; text-wrap: balance; }
.cta p { font-size: 18px; line-height: 1.55; color: rgba(255,255,255,0.78); margin: 18px 0 30px; }
.cta .waitlist { margin: 0 auto; }
.cta .waitlist-done { margin: 0 auto; }

/* footer */
.footer { background: var(--bg-deep); padding: 64px 0 40px; border-top: 1px solid var(--line); }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 48px;
}
.footer-brand .blurb { font-size: 14.5px; line-height: 1.55; color: var(--ink2); margin: 16px 0 0; max-width: 280px; }
.footer-col h4 { font-size: 12px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; color: var(--ink3); margin: 0 0 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 15px; color: var(--ink2); transition: color .15s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; border-top: 1px solid var(--line); flex-wrap: wrap; gap: 16px;
}
.footer-bottom .copy { font-size: 13.5px; color: var(--ink3); }
.footer-bottom .flags { display: flex; gap: 6px; }
.footer-bottom .flag { width: 26px; height: 18px; border-radius: 3px; overflow: hidden; box-shadow: inset 0 0 0 0.5px rgba(255,255,255,0.4); }

/* ───────────────────── Inner-page (support / privacy) ───────────────────── */
.page-hero {
  background: linear-gradient(168deg, var(--navy-700) 0%, var(--navy-900) 100%);
  padding: 72px 0 64px; text-align: center; position: relative; overflow: hidden;
}
.page-hero .eyebrow { text-align: center; }
.page-hero h1 { font-size: clamp(34px, 5vw, 54px); font-weight: 800; letter-spacing: -1.4px; margin: 0; line-height: 1.04; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.78); margin: 16px auto 0; max-width: 560px; line-height: 1.55; }

.doc { max-width: 760px; margin: 0 auto; padding: 64px 28px 96px; }
.doc h2 { font-size: 26px; font-weight: 800; letter-spacing: -0.6px; margin: 44px 0 14px; }
.doc h2:first-child { margin-top: 0; }
.doc h3 { font-size: 18px; font-weight: 700; margin: 28px 0 8px; }
.doc p, .doc li { font-size: 16.5px; line-height: 1.65; color: var(--ink2); }
.doc ul { padding-left: 22px; }
.doc li { margin: 8px 0; }
.doc strong { color: var(--ink); font-weight: 600; }
.doc a { color: var(--signal-l); font-weight: 600; }
.doc .updated { font-size: 14px; color: var(--ink3); font-family: var(--mono); }

.support-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: var(--maxw); margin: -36px auto 0; padding: 0 28px; position: relative; z-index: 2;
}
.support-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; transition: transform .15s ease, border-color .15s ease;
}
.support-card:hover { transform: translateY(-3px); border-color: rgba(255,94,58,0.4); }
.support-card .sc-ico {
  width: 48px; height: 48px; border-radius: 13px; margin-bottom: 18px;
  background: rgba(255,94,58,0.12); border: 1px solid rgba(255,94,58,0.28);
  display: flex; align-items: center; justify-content: center;
}
.support-card h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.3px; margin: 0; }
.support-card p { font-size: 14.5px; line-height: 1.5; color: var(--ink2); margin: 8px 0 0; }

.contact-band {
  max-width: 760px; margin: 16px auto 0; padding: 36px 32px;
  background: var(--card2); border: 1px solid var(--line); border-radius: var(--radius);
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.contact-band .cb-text { flex: 1; min-width: 240px; }
.contact-band h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.4px; margin: 0; }
.contact-band p { font-size: 15.5px; color: var(--ink2); margin: 8px 0 0; line-height: 1.5; }

/* ───────────────────── Reveal on scroll ───────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ───────────────────── Responsive ───────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 8px; padding-top: 36px; }
  .hero-art { min-height: 0; margin-top: 30px; justify-content: center; }
  .hero-art .phone { transform: none; }
  .hero .lede, .waitlist, .waitlist-done { margin-left: auto; margin-right: auto; }
  .hero-copy { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .hero .micro { justify-content: center; }
  .steps { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .nav-links, .nav-cta { display: none; }
  .nav-shell.menu-open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; top: 72px; left: 0; right: 0; margin: 0; padding: 12px 28px 22px;
    background: rgba(8,24,44,0.96); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line);
  }
  .nav-shell.menu-open .nav-links a { padding: 12px 0; font-size: 17px; }
  .nav-shell.menu-open .nav-cta { display: inline-flex; margin: 8px 0 0; }
  .nav-toggle { display: flex; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .nav { padding: 14px 20px; }
  .showcase, .how, .faq { padding: 72px 0; }
  .phones-row { gap: 40px; }
}
