:root {
  --field: #F3F6FF;
  --paper: #FFFFFF;
  --ink: #1B1F4B;
  --ink-2: #474D7E;
  --muted: #6F76A0;
  --line: #D9DFF2;
  --band: #FF8A1F;
  --band-deep: #D9680A;
  --earn: #13995F;
  --earn-soft: #DDF3E8;
  --spend: #6B52F2;
  --spend-soft: #E9E5FF;
  --display: "Unbounded", "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  --body: "Figtree", "Segoe UI", system-ui, sans-serif;
  --gutter: clamp(20px, 5vw, 48px);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--field);
  color: var(--ink);
  font: 400 18px/1.55 var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--band); outline-offset: 3px; border-radius: 6px; }

h1, h2, h3 { font-family: var(--display); font-weight: 600; letter-spacing: -0.02em; margin: 0; }
h1 { font-size: clamp(2.6rem, 6.4vw, 5.4rem); line-height: 0.98; font-weight: 700; }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); line-height: 1.04; }
h3 { font-size: 1.15rem; line-height: 1.25; }
p { margin: 0; }

.wrap { max-width: var(--max); margin: 0 auto; padding-inline: var(--gutter); }
.lede { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--ink-2); max-width: 36ch; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font: 600 1rem/1 var(--body);
  padding: 16px 24px; border-radius: 999px;
  text-decoration: none; cursor: pointer; border: 0;
  transition: transform .15s ease, background-color .15s ease;
}
.btn-primary { background: var(--band); color: var(--ink); box-shadow: inset 0 -3px 0 var(--band-deep); }
.btn-primary:hover { background: #FF9A3D; }
.btn-primary:active { transform: translateY(1px); box-shadow: inset 0 -1px 0 var(--band-deep); }
.btn-quiet { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px var(--ink); }
.btn-quiet:hover { background: var(--ink); color: var(--field); }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  padding-top: env(safe-area-inset-top, 0px);
  transition: background-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { background: rgba(243, 246, 255, .9); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--line); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font: 700 1.05rem/1 var(--display); letter-spacing: -0.02em; }
.brand svg { width: 30px; height: 30px; }
.nav { display: flex; align-items: center; gap: 28px; font-weight: 600; font-size: .98rem; }
.nav a { text-decoration: none; }
.nav a:not(.btn):hover { text-decoration: underline; text-underline-offset: 4px; }
.nav .btn { padding: 11px 18px; }
@media (max-width: 860px) { .nav a:not(.btn) { display: none; } }
.brand, .nav .btn { white-space: nowrap; }
@media (max-width: 420px) { .brand { font-size: .95rem; } .nav .btn { padding: 10px 14px; font-size: .9rem; } }

/* ---------- hero / exploded view ---------- */
.hero { position: relative; height: 340vh; }
.hero-sticky { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; }
.stage { position: absolute; inset: 0; }
.stage-ground {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 55% at 62% 60%, #FFFFFF 0%, rgba(255,255,255,0) 70%),
    radial-gradient(circle at 1px 1px, rgba(27,31,75,.09) 1px, transparent 1.5px) 0 0 / 26px 26px;
}
.scene { position: absolute; inset: 0; perspective: 2000px; perspective-origin: 50% 20%; }
.world { position: absolute; left: 0; top: 0; width: 0; height: 0; transform-style: preserve-3d; will-change: transform; }
.arm-plane { position: absolute; left: -560px; top: -210px; width: 880px; height: 420px; transform-style: preserve-3d; }
.arm-plane svg { display: block; width: 880px; height: 420px; max-width: none; overflow: visible; }
.pod-shadow {
  position: absolute; left: -70px; top: -84px; width: 140px; height: 168px; border-radius: 50px;
  background: radial-gradient(closest-side, rgba(27,31,75,.35), rgba(27,31,75,0));
  transform: translateZ(1px);
}
.layer {
  position: absolute; left: -55px; top: -68px; width: 110px; height: 136px;
  border-radius: 36px; transform-style: preserve-3d;
}
.layer::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: var(--edge, #9AA3C7); transform: translateZ(-7px);
}
.layer > .face { position: absolute; inset: 0; border-radius: inherit; overflow: hidden; }
.layer .anchor { position: absolute; top: 50%; width: 2px; height: 2px; }
.layer .anchor.a-l { left: 0; }
.layer .anchor.a-r { right: 0; }
.layer svg { display: block; width: 100%; height: 100%; }

.l-sensor { --edge: #111428; }
.l-sensor .face { background: #262B45; }
.l-battery { --edge: #8B96B8; }
.l-battery .face { background: #C5CDE6; }
.l-board { --edge: #121845; }
.l-board .face { background: #22306B; }
.l-display { --edge: #06081A; }
.l-display .face { background: #0C0F24; }
.l-glass { --edge: rgba(217, 104, 10, .95); }
.l-glass::after { background: transparent; box-shadow: inset 0 0 0 9px var(--band-deep); }
.l-glass .face {
  background:
    linear-gradient(135deg, rgba(255,255,255,.7) 0%, rgba(210,225,255,.18) 34%, rgba(255,255,255,.04) 58%, rgba(255,255,255,.3) 100%);
  box-shadow: inset 0 0 0 9px var(--band), inset 0 0 0 11px rgba(0,0,0,.12);
}

.leaders { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; overflow: visible; }
.leaders path { fill: none; stroke: var(--ink); stroke-width: 1.25; }
.leaders circle { fill: var(--paper); stroke: var(--ink); stroke-width: 1.5; }

.callout {
  position: absolute; left: 0; top: 0; width: 272px;
  opacity: 0; pointer-events: none;
  will-change: transform, opacity;
  padding: 8px 10px; border-radius: 12px;
  background: rgba(243, 246, 255, .86);
}
.callout h3 { font-size: .98rem; margin-bottom: 4px; }
.callout p { font-size: .9rem; line-height: 1.4; color: var(--ink-2); }
.callout .part { display: block; margin-top: 6px; font-size: .78rem; font-weight: 700; color: var(--band-deep); }
.callout.right { text-align: left; }
.callout.left { text-align: right; }

.inside-title {
  position: absolute; left: 0; right: 0; top: calc(96px + env(safe-area-inset-top, 0px));
  text-align: center; opacity: 0; pointer-events: none;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  padding-inline: var(--gutter); text-wrap: balance;
}

.hero-copy {
  position: absolute; left: 0; right: 0; top: 0; bottom: 0;
  display: flex; align-items: center; pointer-events: none;
}
.hero-copy .wrap { width: 100%; }
.hero-copy .inner { max-width: 520px; pointer-events: auto; }
.hero-copy h1 { margin-bottom: 24px; }
.hero-copy .lede { margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.scroll-hint {
  position: absolute; left: 50%; bottom: calc(24px + env(safe-area-inset-bottom, 0px)); transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .9rem; color: var(--muted); font-weight: 600;
}
.scroll-hint .track { width: 22px; height: 34px; border-radius: 12px; box-shadow: inset 0 0 0 2px var(--muted); position: relative; }
.scroll-hint .track::after {
  content: ""; position: absolute; left: 50%; top: 7px; width: 4px; height: 8px; margin-left: -2px; border-radius: 2px;
  background: var(--muted); animation: nudge 1.8s ease-in-out infinite;
}
@keyframes nudge { 0%, 100% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(10px); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .scroll-hint .track::after { animation: none; } }

@media (max-width: 800px) {
  .hero { height: 300vh; }
  .hero-copy { align-items: flex-start; padding-top: calc(104px + env(safe-area-inset-top, 0px)); }
  .hero-copy h1 { margin-bottom: 16px; }
  .hero-copy .lede { margin-bottom: 20px; font-size: 1.02rem; }
  .btn { padding: 14px 20px; }
  .callout { width: 150px; }
  .callout p, .callout .part { display: none; }
  .callout h3 { font-size: .82rem; }
  .scroll-hint { display: none; }
}

/* ---------- sections ---------- */
.section { padding-block: clamp(88px, 12vw, 168px); }
.section-head { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 32px 64px; align-items: end; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head .lede { max-width: 44ch; }
@media (max-width: 860px) { .section-head { grid-template-columns: 1fr; } }

/* ---------- day simulator ---------- */
.day { background: var(--paper); border-block: 1px solid var(--line); }
.sim { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: 48px 64px; align-items: start; }
@media (max-width: 960px) { .sim { grid-template-columns: 1fr; } }

.chart-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 24px; margin-bottom: 12px; }
.legend { display: flex; gap: 18px; font-size: .9rem; color: var(--ink-2); }
.legend span { display: inline-flex; align-items: center; gap: 8px; }
.legend i { width: 14px; height: 14px; border-radius: 4px; display: inline-block; }
.legend .k-earn i { background: var(--earn-soft); box-shadow: inset 0 0 0 1.5px var(--earn); }
.legend .k-spend i { background: var(--spend-soft); box-shadow: inset 0 0 0 1.5px var(--spend); }
.play { padding: 10px 18px; font-size: .95rem; }
.play svg { width: 14px; height: 14px; }

.chart { position: relative; touch-action: pan-y; }
.chart svg { display: block; width: 100%; height: auto; overflow: visible; }
.chart .grid line { stroke: var(--line); stroke-width: 1; }
.chart .grid text, .chart .xaxis text { fill: var(--muted); font: 400 13px var(--body); }
.chart .zero { stroke: var(--ink); stroke-width: 1.5; }
.chart .bal { fill: none; stroke: var(--ink); stroke-width: 2.5; stroke-linejoin: round; stroke-linecap: round; }
.chart .span-earn { fill: var(--earn-soft); }
.chart .span-spend { fill: var(--spend-soft); }
.chart .span-blocked { fill: url(#hatch); }
.chart .cursor { stroke: var(--ink); stroke-width: 1; stroke-dasharray: 3 4; }
.chart .dot { fill: var(--paper); stroke: var(--ink); stroke-width: 2.5; }
.chart .lockline { stroke: var(--spend); stroke-width: 2; }
.chart .locklabel { fill: var(--ink); font: 700 13px var(--body); }
.tip {
  position: absolute; top: 0; left: 0; transform: translate(-50%, -120%);
  background: var(--ink); color: var(--field); padding: 6px 10px; border-radius: 8px;
  font-size: .85rem; font-weight: 700; white-space: nowrap; pointer-events: none;
}
.scrub { width: 100%; margin: 14px 0 0; accent-color: var(--band); height: 28px; cursor: pointer; }
.sim-summary { margin-top: 18px; font-size: 1.05rem; min-height: 3.2em; }
.sim-summary strong { font-family: var(--display); font-weight: 600; letter-spacing: -0.01em; }

.events { list-style: none; margin: 32px 0 0; padding: 0; border-top: 1px solid var(--line); }
.events li { display: grid; grid-template-columns: auto 88px minmax(0, 1fr) auto; align-items: center; gap: 14px; padding: 12px 2px; border-bottom: 1px solid var(--line); }
.events li.off { color: var(--muted); }
.events li.off .what { text-decoration: line-through; }
.events .when { font-size: .88rem; color: var(--muted); font-variant-numeric: tabular-nums; }
.events .what { font-size: 1rem; }
.events .delta { font-family: var(--display); font-weight: 600; font-size: .95rem; font-variant-numeric: tabular-nums; }
.events .earn .delta { color: var(--earn); }
.events .spend .delta { color: var(--spend); }
.events li.off .delta { color: var(--muted); }
@media (max-width: 520px) { .events li { grid-template-columns: auto minmax(0, 1fr) auto; } .events .when { grid-column: 2; grid-row: 2; margin-top: -8px; } }

.switch { position: relative; width: 42px; height: 24px; flex: none; }
.switch input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; }
.switch span { position: absolute; inset: 0; border-radius: 999px; background: var(--line); transition: background-color .15s ease; pointer-events: none; }
.switch span::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: var(--paper); box-shadow: 0 1px 2px rgba(27,31,75,.3); transition: transform .15s ease; }
.switch input:checked + span { background: var(--ink); }
.switch input:checked + span::after { transform: translateX(18px); }
.switch input:disabled { cursor: not-allowed; }
.switch input:disabled + span { opacity: .45; }
.switch input:focus-visible + span { outline: 3px solid var(--band); outline-offset: 2px; }

/* device pair */
.devices { position: sticky; top: 104px; display: flex; align-items: flex-end; justify-content: center; gap: 28px; }
.phone {
  width: 236px; aspect-ratio: 236 / 480; border-radius: 40px; background: var(--ink); padding: 10px; flex: none;
  box-shadow: 0 30px 60px -30px rgba(27,31,75,.45);
}
.phone .screen { position: relative; height: 100%; border-radius: 31px; overflow: hidden; background: #EEF1FB; }
.phone .status { position: absolute; top: 12px; left: 22px; right: 22px; display: flex; justify-content: space-between; font-size: .75rem; font-weight: 700; z-index: 2; }
.phone .notch { position: absolute; top: 10px; left: 50%; width: 70px; height: 20px; margin-left: -35px; background: var(--ink); border-radius: 12px; z-index: 3; }
.scr { position: absolute; inset: 0; padding: 52px 18px 18px; display: flex; flex-direction: column; opacity: 0; transition: opacity .2s ease; }
.phone[data-state="idle"] .scr-idle,
.phone[data-state="using"] .scr-using,
.phone[data-state="locked"] .scr-locked { opacity: 1; }
.scr-idle .apps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px 10px; margin-top: 18px; }
.scr-idle .apps i { aspect-ratio: 1; border-radius: 12px; display: block; }
.scr-idle .clock { font: 600 2.6rem/1 var(--display); text-align: center; margin-top: 18px; letter-spacing: -0.03em; }
.scr-idle .date { text-align: center; font-size: .82rem; color: var(--ink-2); margin-top: 6px; }
.scr-using { background: #0E1024; color: #fff; }
.scr-using .video { margin-top: 8px; aspect-ratio: 16 / 10; border-radius: 12px; background: linear-gradient(135deg, #6B52F2, #FF8A1F); position: relative; }
.scr-using .video::after { content: ""; position: absolute; left: 50%; top: 50%; margin: -14px 0 0 -9px; border-left: 22px solid rgba(255,255,255,.9); border-top: 14px solid transparent; border-bottom: 14px solid transparent; }
.scr-using .app-name { margin-top: 14px; font-weight: 700; font-size: .95rem; }
.scr-using .meter { margin-top: auto; background: rgba(255,255,255,.08); border-radius: 14px; padding: 12px 14px; font-size: .82rem; line-height: 1.35; }
.scr-using .meter b { font-family: var(--display); font-size: 1.3rem; display: block; margin-top: 2px; }
.scr-locked { background: var(--ink); color: var(--field); align-items: center; text-align: center; justify-content: center; gap: 12px; }
.scr-locked svg { width: 54px; height: 54px; }
.scr-locked .big { font: 600 1.25rem/1.15 var(--display); }
.scr-locked .small { font-size: .85rem; color: #C6CBEA; max-width: 18ch; }
.scr-locked .call { margin-top: 10px; padding: 9px 16px; border-radius: 999px; background: var(--earn); color: #fff; font-weight: 700; font-size: .85rem; }

.band-mini { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.band-mini .strap { width: 64px; height: 190px; border-radius: 18px; background: var(--band); position: relative; display: flex; align-items: center; justify-content: center; box-shadow: inset -6px 0 0 rgba(0,0,0,.08); }
.band-mini .pod { width: 90px; height: 108px; border-radius: 30px; background: #0C0F24; box-shadow: 0 0 0 7px var(--band), 0 16px 30px -12px rgba(27,31,75,.5); display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; }
.band-mini .pts { font: 700 1.6rem/1 var(--display); font-variant-numeric: tabular-nums; letter-spacing: -0.03em; }
.band-mini .unit { font-size: .72rem; color: #AEB4DA; margin-top: 4px; }
.band-mini .cap { font-size: .85rem; color: var(--muted); }
@media (max-width: 960px) { .devices { position: static; } }
@media (max-width: 420px) { .phone { width: 200px; } .devices { gap: 16px; } }

/* ---------- rates ---------- */
.ledger { display: grid; grid-template-columns: 1fr 1fr; gap: 48px 72px; }
@media (max-width: 860px) { .ledger { grid-template-columns: 1fr; } }
.ledger h3 { font-size: 1.5rem; display: flex; align-items: center; gap: 12px; padding-bottom: 18px; border-bottom: 3px solid currentColor; }
.ledger .col-earn h3 { color: var(--earn); }
.ledger .col-spend h3 { color: var(--spend); }
.ledger h3 svg { width: 28px; height: 28px; }
.ledger dl { margin: 0; }
.ledger .row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 4px 24px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.ledger dt { font-weight: 700; font-size: 1.08rem; }
.ledger dd { margin: 0; }
.ledger .rate { font: 600 1rem/1.4 var(--display); letter-spacing: -0.01em; text-align: right; white-space: nowrap; }
.ledger .note { grid-column: 1 / -1; color: var(--ink-2); font-size: .98rem; }
.rates-foot { margin-top: 40px; color: var(--ink-2); max-width: 60ch; }

/* ---------- lockout ---------- */
.lockout { background: var(--ink); color: var(--field); }
.lockout .lede { color: #C6CBEA; }
.lock-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 56px 96px; align-items: center; }
@media (max-width: 860px) { .lock-grid { grid-template-columns: 1fr; } }
.lock-grid h2 { margin-bottom: 24px; }
.lock-rules { list-style: none; margin: 40px 0 0; padding: 0; display: grid; gap: 22px; }
.lock-rules li { display: grid; grid-template-columns: 28px minmax(0, 1fr); gap: 14px; }
.lock-rules svg { width: 26px; height: 26px; margin-top: 2px; }
.lock-rules b { display: block; font-size: 1.08rem; margin-bottom: 2px; }
.lock-rules span { color: #C6CBEA; }
.lock-visual { display: flex; justify-content: center; }
.lock-visual .phone { width: 280px; background: #0B0E27; box-shadow: 0 0 0 1px rgba(255,255,255,.12), 0 50px 90px -40px rgba(0,0,0,.8); }
.lock-visual .scr-locked { opacity: 1; background: linear-gradient(180deg, #2A2F6B, #1B1F4B); }
.lock-visual .progress { width: 150px; height: 8px; border-radius: 4px; background: rgba(255,255,255,.15); overflow: hidden; margin-top: 6px; }
.lock-visual .progress i { display: block; height: 100%; width: 38%; background: var(--band); border-radius: 4px; }

/* ---------- vision ---------- */
.vision-statement { font: 600 clamp(1.8rem, 4vw, 3.3rem)/1.12 var(--display); letter-spacing: -0.025em; max-width: 22ch; }
.vision-sub { margin-top: 28px; }
.pillars { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px 56px; margin-top: clamp(56px, 8vw, 96px); }
@media (max-width: 860px) { .pillars { grid-template-columns: 1fr; } }
.pillars svg { width: 44px; height: 44px; margin-bottom: 18px; }
.pillars h3 { margin-bottom: 10px; font-size: 1.2rem; }
.pillars p { color: var(--ink-2); }

.facts { margin-top: clamp(72px, 10vw, 120px); padding-top: 40px; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px 56px; }
@media (max-width: 860px) { .facts { grid-template-columns: 1fr; } }
.facts p { font-size: 1.05rem; }
.facts b { font: 600 1.45rem/1.2 var(--display); letter-spacing: -0.02em; display: block; margin-bottom: 8px; }
.facts cite { display: block; margin-top: 10px; font-style: normal; font-size: .85rem; color: var(--muted); }

/* ---------- story ---------- */
.story { background: var(--paper); border-top: 1px solid var(--line); }
.timeline { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; position: relative; }
.timeline::before { content: ""; position: absolute; left: 0; right: 0; top: 11px; height: 3px; background: var(--line); border-radius: 2px; }
.timeline li { position: relative; padding-top: 44px; }
.timeline li::before { content: ""; position: absolute; top: 0; left: 0; width: 25px; height: 25px; border-radius: 50%; background: var(--paper); box-shadow: inset 0 0 0 4px var(--ink); }
.timeline li.now::before { background: var(--band); box-shadow: inset 0 0 0 4px var(--band-deep); }
.timeline li.next::before { box-shadow: inset 0 0 0 3px var(--muted); }
.timeline .when { font: 700 1.5rem/1 var(--display); letter-spacing: -0.02em; margin-bottom: 12px; display: block; }
.timeline p { color: var(--ink-2); max-width: 34ch; }
@media (max-width: 860px) {
  .timeline { grid-template-columns: 1fr; gap: 32px; padding-left: 44px; }
  .timeline::before { left: 11px; right: auto; top: 0; bottom: 0; width: 3px; height: auto; }
  .timeline li { padding-top: 0; }
  .timeline li::before { left: -44px; }
}
.founders { margin-top: clamp(64px, 9vw, 112px); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px 64px; }
@media (max-width: 960px) { .founders { grid-template-columns: 1fr; } }
.founder { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 28px; align-items: start; max-width: 560px; }
.founder a { font-weight: 700; text-underline-offset: 3px; }
.founder:nth-child(2) .mono { background: var(--ink); color: var(--band); box-shadow: inset 0 -4px 0 #0E1130; }
.founder .mono { width: 88px; height: 88px; border-radius: 28px; background: var(--band); display: grid; place-items: center; font: 700 1.6rem/1 var(--display); box-shadow: inset 0 -4px 0 var(--band-deep); }
.founder h3 { font-size: 1.25rem; }
.founder .role { color: var(--muted); font-weight: 700; margin: 2px 0 10px; }
.founder p:last-child { color: var(--ink-2); }
@media (max-width: 520px) { .founder { grid-template-columns: 1fr; } }

/* ---------- waitlist ---------- */
.waitlist { background: var(--band); }
.waitlist .wrap { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px 80px; align-items: center; }
@media (max-width: 860px) { .waitlist .wrap { grid-template-columns: 1fr; } }
.waitlist .lede { color: var(--ink); margin-top: 20px; }
.wl-form { display: grid; gap: 14px; }
.wl-form label { font-weight: 700; font-size: .95rem; display: grid; gap: 6px; }
.wl-form input, .wl-form select {
  font: 400 1.05rem/1.2 var(--body); color: var(--ink);
  padding: 15px 16px; border-radius: 14px; border: 2px solid var(--ink); background: #FFF6EC; width: 100%;
}
.wl-form input:focus-visible, .wl-form select:focus-visible { outline: 3px solid var(--ink); outline-offset: 2px; }
.wl-form .btn { justify-self: start; background: var(--ink); color: var(--field); margin-top: 6px; }
.wl-form .btn:hover { background: #2C3270; }
.wl-form .hint { font-size: .9rem; }
.wl-form .error { font-weight: 700; font-size: .95rem; min-height: 1.4em; }

/* ---------- footer ---------- */
.site-footer { padding-block: 48px calc(48px + env(safe-area-inset-bottom, 0px)); font-size: .95rem; color: var(--ink-2); }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 16px 40px; justify-content: space-between; align-items: center; }
.site-footer nav { display: flex; gap: 24px; flex-wrap: wrap; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
