/* ─────────────────────────────────────────────────────────────
   Drais — Apple-style landing
   Built on Drais design tokens (colors_and_type.css)
   ───────────────────────────────────────────────────────────── */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input { font-family: inherit; }
img { display: block; max-width: 100%; }
.tabular { font-variant-numeric: tabular-nums; font-feature-settings: 'tnum'; }
.material-symbols-rounded { font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24; vertical-align: middle; }
.filled { font-variation-settings: 'FILL' 1, 'wght' 400; }

/* ── Layout ────────────────────────────────────────────────── */
.page { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.page-tight { max-width: 1080px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) {
  .page, .page-tight { padding: 0 20px; }
}

/* ── Theme regions ─────────────────────────────────────────── */
section[data-theme='light'],
section.light {
  background: #F5F5F5;
  color: #0A0A0A;
  --bg: #F5F5F5;
  --surface: #FAFAFA;
  --card: #FFFFFF;
  --card-hover: #F0F0F0;
  --surface-raised: #FFFFFF;
  --surface-pressed: #E5E5E5;
  --text: #0A0A0A;
  --text-secondary: #555555;
  --text-muted: #8A8A8A;
  --border: #D6D6D6;
  --border-subtle: #E4E4E4;
  --border-strong: #BBBBBB;
  --divider: #DDDDDD;
}

/* ── Top sticky product nav (Apple style) ──────────────────── */
.subnav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(10,10,10,0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: #fff;
}
.subnav-inner {
  display: flex; align-items: center;
  height: 48px; gap: 32px;
}
.subnav-brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 18px; font-weight: 500; letter-spacing: -0.4px;
  color: #fff;
  flex-shrink: 0;
}
.subnav-brand img { height: 18px; width: auto; }
.subnav-links {
  display: flex; flex: 1;
  justify-content: center;
  gap: 28px;
}
.subnav-links a {
  font-size: 14px; font-weight: 400;
  color: rgba(255,255,255,0.78);
  letter-spacing: -0.1px;
  text-decoration: none;
  transition: color var(--motion-fast) var(--ease);
}
.subnav-links a:hover { color: #fff; }
.subnav-cta {
  display: inline-flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.subnav-lang {
  display: inline-flex; gap: 0;
  font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.4px;
}
.subnav-lang a { padding: 0 6px; }
.subnav-lang a[aria-current='page'] { color: #fff; }
.subnav-lang .sep { color: rgba(255,255,255,0.25); }
.subnav-link-cta {
  display: inline-flex; align-items: center; gap: 4px;
  height: 28px; padding: 0 14px;
  background: var(--primary);
  font-size: 13px; font-weight: 600;
  letter-spacing: -0.05px;
  border-radius: 999px;
  text-decoration: none !important;
  transition: background var(--motion-fast) var(--ease);
}
.subnav-link-cta,
.subnav-link-cta:visited,
.subnav-link-cta:hover,
.subnav-link-cta:active { color: #fff !important; }
.subnav-link-cta:hover { background: var(--primary-dim); }
@media (max-width: 880px) {
  .subnav-links { display: none; }
  .subnav-inner { justify-content: space-between; }
}

/* ── Top brand nav (the real header above subnav) ──────────── */
.topnav {
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: #fff;
}
.topnav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 56px;
}
.topnav-brand img { height: 22px; width: auto; }

/* ── Type system extensions ────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--primary);
}
.eyebrow .num { color: var(--text-muted); margin-right: 4px; }
.eyebrow.muted { color: var(--text-muted); }
.eyebrow .dot {
  width: 5px; height: 5px;
  background: var(--primary);
  display: inline-block;
}

.kicker {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.1px;
  color: var(--text-secondary);
}

.display-hero {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 132px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.94;
}
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.6vw, 96px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.02;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.06;
}
.lede {
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.42;
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 56ch;
}
.lede strong { color: var(--text); font-weight: 500; }
.accent-fg { color: var(--primary); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 48px; padding: 0 22px;
  font-size: 15px; font-weight: 500;
  letter-spacing: -0.1px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--motion-fast) var(--ease),
              color var(--motion-fast) var(--ease),
              border-color var(--motion-fast) var(--ease),
              transform var(--motion-fast) var(--ease);
}
.btn:active { transform: scale(0.985); }
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { background: var(--primary-dim); }
.btn-link {
  background: transparent;
  color: var(--primary);
  padding: 0;
  height: auto;
  font-size: 16px;
  font-weight: 500;
  border-radius: 0;
}
.btn-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.btn-link::after {
  content: '›';
  display: inline-block;
  margin-left: 2px;
  transition: transform var(--motion-fast) var(--ease);
}
.btn-link:hover::after { transform: translateX(3px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.18);
}
section.light .btn-ghost {
  border-color: rgba(0,0,0,0.18);
  color: #0A0A0A;
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); }
section.light .btn-ghost:hover { background: rgba(0,0,0,0.04); }
.btn-sm { height: 38px; padding: 0 16px; font-size: 13px; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: #000;
  overflow: hidden;
  padding: 88px 0 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 90%;
  background:
    radial-gradient(60% 50% at 80% 30%, rgba(255,107,53,0.18) 0%, transparent 60%),
    radial-gradient(50% 60% at 15% 60%, rgba(255,107,53,0.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - 104px);
  padding-bottom: 80px;
}
@media (max-width: 960px) {
  .hero { padding: 56px 0 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding-bottom: 56px; min-height: 0; }
}
.hero-copy { max-width: 640px; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; letter-spacing: 0.4px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}
.hero-kicker .pulse {
  position: relative;
  width: 7px; height: 7px;
  background: var(--primary);
}
.hero-kicker .pulse::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid var(--primary);
  opacity: 0.5;
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.6); opacity: 0.7; }
  100% { transform: scale(1.8); opacity: 0; }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7.8vw, 116px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.93;
  color: #fff;
  margin-bottom: 28px;
}
.hero h1 .accent { color: var(--primary); }
.hero-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  color: rgba(255,255,255,0.72);
  max-width: 52ch;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  align-items: center;
}
.hero-meta {
  margin-top: 36px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  display: flex; align-items: center; gap: 8px;
  letter-spacing: 0.2px;
}
.hero-meta .material-symbols-rounded { font-size: 14px; color: #88bf6c; }

/* Hero device */
.hero-device {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 420px;
}
@media (max-width: 960px) {
  .hero-device { justify-self: center; max-width: 320px; }
}
.hero-device .glow {
  position: absolute;
  inset: -10% -20% -10% -20%;
  background:
    radial-gradient(50% 60% at 50% 50%, rgba(255,107,53,0.32) 0%, transparent 70%);
  filter: blur(10px);
  z-index: 0;
}

/* ── iPhone frame ─────────────────────────────────────────── */
.iphone {
  position: relative;
  background: #0a0a0a;
  border: 1px solid #2a2a2a;
  border-radius: 44px;
  padding: 8px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.04),
    0 24px 64px rgba(0,0,0,0.55),
    0 4px 14px rgba(0,0,0,0.4);
  width: 100%;
  aspect-ratio: 9 / 19.5;
  overflow: hidden;
}
.iphone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: #000;
}
.iphone-screen picture {
  width: 100%;
  height: 100%;
}
.iphone-screen img,
.iphone-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.iphone::after {
  content: '';
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 88px; height: 26px;
  background: #000;
  border-radius: 999px;
  z-index: 4;
}
.iphone.small { border-radius: 36px; padding: 6px; }
.iphone.small .iphone-screen { border-radius: 30px; }
.iphone.small::after { top: 14px; width: 70px; height: 20px; }

/* ── Highlights strip ─────────────────────────────────────── */
.highlights {
  background: #0A0A0A;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 80px 0 96px;
  position: relative;
}
.highlights-head {
  margin-bottom: 48px;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}
@media (max-width: 1100px) { .highlights-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .highlights-grid { grid-template-columns: 1fr 1fr; } }
.hl-card {
  background: #0A0A0A;
  padding: 28px 24px;
  display: flex; flex-direction: column;
  gap: 16px;
  min-height: 240px;
  transition: background var(--motion-fast) var(--ease);
}
.hl-card:hover { background: #141414; }
.hl-icon {
  width: 36px; height: 36px;
  background: rgba(255,107,53,0.10);
  border: 1px solid rgba(255,107,53,0.22);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.hl-icon .material-symbols-rounded { font-size: 20px; }
.hl-num {
  font-size: 11px; font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.8px;
}
.hl-card h3 {
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.08;
  color: #fff;
}
.hl-card p {
  font-size: 13px; line-height: 1.5;
  color: rgba(255,255,255,0.6);
  margin-top: auto;
}

/* ── Section base ─────────────────────────────────────────── */
section.chapter {
  padding: 128px 0;
  position: relative;
}
@media (max-width: 720px) { section.chapter { padding: 80px 0; } }
section.chapter.tight { padding: 96px 0; }

.chapter-head {
  display: flex; flex-direction: column;
  gap: 16px;
  margin-bottom: 64px;
  max-width: 920px;
}

/* ── Problem section ──────────────────────────────────────── */
.problem {
  background: #000;
  padding: 144px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 720px) { .problem { padding: 88px 0; } }
.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.6vw, 88px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
  color: #fff;
  max-width: 18ch;
  margin-bottom: 56px;
}
.problem h2 .a { color: var(--primary); }
.problem-stack {
  display: flex; flex-wrap: wrap;
  gap: 10px 12px;
  max-width: 920px;
  margin-bottom: 56px;
}
.problem-stack span {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  background: rgba(255,255,255,0.02);
  transition: all var(--motion-fast) var(--ease);
}
.problem-stack span::before {
  content: '';
  width: 5px; height: 5px;
  background: rgba(255,255,255,0.35);
  border-radius: 50%;
}
.problem-stack span:hover {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.22);
}
.problem-bridge {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 900px;
}
.problem-bridge .a { color: var(--primary); }

/* ── Chapter: split with sticky text + visual ─────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; gap: 56px; }
}
.split.reverse > :first-child { order: 2; }
.split.reverse > :last-child { order: 1; }
@media (max-width: 960px) { .split.reverse > * { order: 0; } }

.split-copy { max-width: 540px; }
.split-copy .eyebrow { margin-bottom: 24px; }
.split-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.0;
  margin-bottom: 24px;
}
.split-copy .lede { margin-bottom: 32px; }
.split-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.split-visual .iphone { max-width: 360px; }

/* feature list */
.feat-list {
  display: flex; flex-direction: column;
  gap: 4px;
  margin-top: 24px;
}
.feat-list > div {
  padding: 18px 0;
  border-top: 1px solid var(--border-subtle);
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: flex-start;
}
.feat-list > div:last-child { border-bottom: 1px solid var(--border-subtle); }
.feat-list .ic {
  width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.feat-list .ic .material-symbols-rounded { font-size: 20px; }
.feat-list .body strong {
  display: block;
  font-size: 15px; font-weight: 600;
  letter-spacing: -0.15px;
  color: var(--text);
  margin-bottom: 2px;
}
.feat-list .body p {
  font-size: 14px; line-height: 1.5;
  color: var(--text-secondary);
}

/* ── Workshop big visual section (light) ──────────────────── */
.workshop-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 960px) {
  .workshop-grid { grid-template-columns: 1fr; gap: 56px; }
}

.service-card {
  background: #0A0A0A;
  color: #fff;
  border: 1px solid #1A1A1A;
  padding: 0;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
section.light .service-card { box-shadow: 0 30px 80px rgba(0,0,0,0.12); }
.sc-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #1A1A1A;
}
.sc-head .t { font-size: 14px; font-weight: 500; }
.sc-head .km { font-size: 11px; color: #666; letter-spacing: 0.5px; font-variant-numeric: tabular-nums; }
.sc-row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 14px; align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #1A1A1A;
}
.sc-row:last-of-type { border-bottom: 0; }
.sc-row .ic {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid #2a2a2a;
  color: #888;
}
.sc-row .ic .material-symbols-rounded { font-size: 18px; }
.sc-row.due .ic { color: var(--danger); border-color: rgba(239,68,68,0.4); background: rgba(239,68,68,0.08); }
.sc-row.alert .ic { color: var(--warning); border-color: rgba(245,158,11,0.4); background: rgba(245,158,11,0.08); }
.sc-row.ok .ic { color: var(--accent); border-color: rgba(61,139,55,0.4); background: rgba(61,139,55,0.08); }
.sc-body .name { font-size: 14px; font-weight: 500; margin-bottom: 2px; }
.sc-body .sub { font-size: 11px; color: #666; font-variant-numeric: tabular-nums; letter-spacing: 0.3px; }
.sc-right {
  font-size: 11px; letter-spacing: 0.6px; text-transform: uppercase;
  padding: 5px 10px; border: 1px solid #2a2a2a; color: #888;
  font-variant-numeric: tabular-nums;
}
.sc-row.due .sc-right { color: var(--danger); border-color: rgba(239,68,68,0.4); }
.sc-row.alert .sc-right { color: var(--warning); border-color: rgba(245,158,11,0.4); }
.sc-row.ok .sc-right { color: var(--accent); border-color: rgba(61,139,55,0.4); }
.sc-foot {
  padding: 14px 20px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid #1A1A1A;
  font-size: 11px; color: #666; text-transform: uppercase; letter-spacing: 0.6px;
}
.sc-foot .cta { color: var(--primary); display: inline-flex; align-items: center; gap: 4px; }

/* ── Rides chapter — map cinematic ────────────────────────── */
.rides {
  background: #000;
}
.rides-stage {
  position: relative;
  margin-top: 64px;
  background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
  border: 1px solid #1A1A1A;
  overflow: hidden;
}
@media (min-width: 721px) {
  .rides-stage {
    max-height: 560px;
  }
}
.rides-stage img.map {
  width: 100%;
  display: block;
  opacity: 0.85;
  filter: brightness(1.05) contrast(1.05);
}
.rides-stats {
  position: absolute;
  inset: auto 0 0 0;
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 50%, #000 100%);
}
@media (max-width: 720px) { .rides-stats { grid-template-columns: repeat(2, 1fr); padding: 20px; row-gap: 16px; } }
.rides-stats > div { padding: 8px 0 8px 16px; border-left: 1px solid rgba(255,255,255,0.12); }
.rides-stats .l { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.55); margin-bottom: 8px; }
.rides-stats .v { font-size: clamp(22px, 2.4vw, 34px); font-weight: 500; letter-spacing: -0.6px; color: #fff; font-variant-numeric: tabular-nums; }
.rides-stats .v .u { font-size: 12px; color: rgba(255,255,255,0.5); margin-left: 4px; font-weight: 400; }

.flywheel-mini {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 80px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 800px) { .flywheel-mini { grid-template-columns: 1fr 1fr; } }
.fw-cell {
  padding: 28px 24px;
  border-left: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
}
.fw-cell:first-child { border-left: 0; }
.fw-cell .step { font-size: 11px; color: var(--primary); letter-spacing: 1.4px; text-transform: uppercase; margin-bottom: 12px; }
.fw-cell .h { font-size: 17px; font-weight: 500; letter-spacing: -0.2px; margin-bottom: 6px; color: #fff; }
.fw-cell .p { font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.55); }

/* ── Insights chart card (light) ──────────────────────────── */
.chart-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  padding: 32px;
  display: flex; flex-direction: column;
  gap: 22px;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
}
.chart-top { display: flex; justify-content: space-between; align-items: baseline; }
.chart-top .lbl { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.chart-top .val { font-size: 44px; font-weight: 500; letter-spacing: -1.4px; font-variant-numeric: tabular-nums; }
.chart-top .val .u { font-size: 16px; color: var(--text-muted); margin-left: 6px; font-weight: 400; letter-spacing: -0.2px; }
.chart-top .delta {
  font-size: 12px; font-weight: 600;
  color: #117A4F;
  padding: 5px 10px;
  border: 1px solid rgba(17,122,79,0.25);
  background: rgba(17,122,79,0.08);
  font-variant-numeric: tabular-nums;
}
.chart-bars {
  display: flex; align-items: flex-end; gap: 8px;
  height: 140px;
}
.chart-bars .bar {
  flex: 1;
  background: #EAEAEA;
  position: relative;
  transition: transform var(--motion-normal) var(--ease);
}
.chart-bars .bar.now { background: var(--primary); }
.chart-bars .bar.proj { background: #117A4F; }
.chart-bars .bar.proj::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, rgba(255,255,255,0.18) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.18) 50%, rgba(255,255,255,0.18) 75%, transparent 75%);
  background-size: 6px 6px;
}
.chart-axis {
  display: flex; justify-content: space-between;
  font-size: 10px; letter-spacing: 0.5px; color: var(--text-muted);
  padding-top: 6px; border-top: 1px solid var(--border-subtle);
  font-variant-numeric: tabular-nums;
}
.chart-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border-subtle);
}
.chart-foot .cell {
  padding: 14px 16px;
  border-left: 1px solid var(--border-subtle);
}
.chart-foot .cell:first-child { border-left: 0; }
.chart-foot .k { font-size: 10px; text-transform: uppercase; letter-spacing: 0.7px; color: var(--text-muted); margin-bottom: 4px; }
.chart-foot .v { font-size: 16px; font-weight: 500; font-variant-numeric: tabular-nums; }

/* ── Trust section ────────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  margin-top: 56px;
}
@media (max-width: 720px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-cell {
  background: #0A0A0A;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
}
.trust-cell .ic {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: 4px;
}
.trust-cell .ic .material-symbols-rounded { font-size: 24px; }
.trust-cell h4 {
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 1.15;
  color: #fff;
}
.trust-cell p {
  font-size: 14px; line-height: 1.55;
  color: rgba(255,255,255,0.6);
}

/* ── Founder (light) ──────────────────────────────────────── */
.founder-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 800px) {
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
}
.founder-grid .photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.founder-grid .photo picture {
  width: 100%;
  height: 100%;
}
.founder-grid .photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.founder-quote h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.18;
  margin-bottom: 24px;
}
.founder-quote p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-top: 14px;
}
.founder-sig {
  margin-top: 28px;
  display: flex; align-items: center; gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}
.founder-sig strong { color: var(--text); font-weight: 500; }

/* ── Comparison ───────────────────────────────────────────── */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  margin-top: 56px;
}
@media (max-width: 880px) { .compare-grid { grid-template-columns: 1fr; } }
.compare-cell {
  background: #0A0A0A;
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 280px;
}
.compare-cell .tag {
  font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--text-muted);
}
.compare-cell h4 {
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.4px; line-height: 1.2;
  color: #fff;
  margin-bottom: 4px;
}
.compare-cell p {
  font-size: 14px; line-height: 1.6;
  color: rgba(255,255,255,0.65);
}
.compare-cell p strong { color: #fff; font-weight: 500; }
.compare-cell .verdict {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px; color: var(--primary); letter-spacing: 0.4px;
  display: flex; align-items: center; gap: 6px;
}

/* ── FAQ (light) ──────────────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 860px) {
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-aside { position: static; top: auto; }
}
.faq-aside { position: sticky; top: 110px; }
.faq-aside p {
  font-size: 16px; line-height: 1.6;
  color: var(--text-secondary);
  margin-top: 16px;
}
.faq-aside p strong { color: var(--text); font-weight: 500; }
.faq-list { display: flex; flex-direction: column; }
details.q {
  border-top: 1px solid var(--border-subtle);
}
details.q:last-child { border-bottom: 1px solid var(--border-subtle); }
details.q > summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 14px;
  font-size: 18px; font-weight: 500;
  letter-spacing: -0.15px;
  line-height: 1.4;
  color: var(--text);
  transition: color var(--motion-fast) var(--ease);
}
details.q > summary::-webkit-details-marker { display: none; }
details.q > summary:hover { color: var(--primary); }
details.q .toggle {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  transition: all var(--motion-fast) var(--ease);
}
details.q .toggle .material-symbols-rounded { font-size: 18px; transition: transform var(--motion-fast) var(--ease); }
details.q[open] .toggle { color: var(--primary); border-color: var(--primary); background: rgba(255,107,53,0.10); }
details.q[open] .toggle .material-symbols-rounded { transform: rotate(45deg); }
details.q[open] > summary { color: var(--primary); }
.q-body {
  padding: 0 42px 32px 0;
  font-size: 16px; line-height: 1.7;
  color: var(--text-secondary);
  max-width: 70ch;
}
.q-body p + p { margin-top: 12px; }

/* ── Final CTA ────────────────────────────────────────────── */
.final-cta {
  background: #000;
  padding: 160px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 720px) { .final-cta { padding: 96px 0; } }
.final-cta::before {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255,107,53,0.20) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta > .page { position: relative; z-index: 1; }
.final-cta .eyebrow { color: var(--primary); margin-bottom: 24px; }
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 104px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.96;
  color: #fff;
  margin-bottom: 32px;
  max-width: 18ch;
  margin-left: auto; margin-right: auto;
}
.final-cta h2 .a { color: var(--primary); }
.final-cta p.lede {
  margin: 0 auto 48px;
  color: rgba(255,255,255,0.65);
}
.final-form {
  display: inline-flex;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 6px;
  max-width: 480px;
  width: 100%;
}
.final-form input {
  flex: 1;
  height: 50px;
  background: transparent;
  border: 0; outline: 0;
  color: #fff;
  font-size: 15px;
  padding: 0 20px;
}
.final-form input::placeholder { color: rgba(255,255,255,0.4); }
.final-form button {
  height: 50px;
  padding: 0 24px;
  border: 0;
  background: var(--primary);
  color: #fff;
  font-size: 14px; font-weight: 600;
  letter-spacing: -0.05px;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--motion-fast) var(--ease);
}
.final-form button:hover { background: var(--primary-dim); }
.final-meta {
  margin-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.42);
  display: flex; gap: 24px; flex-wrap: wrap; justify-content: center;
}
.final-meta span { display: inline-flex; align-items: center; gap: 6px; }
.final-meta .material-symbols-rounded { font-size: 14px; color: #88bf6c; }

/* ── Footer ───────────────────────────────────────────────── */
footer.foot {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  padding: 64px 0 36px;
  font-size: 12px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 720px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.foot-grid h5 {
  font-size: 11px; font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}
.foot-grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-grid li a { color: rgba(255,255,255,0.55); transition: color var(--motion-fast) var(--ease); }
.foot-grid li a:hover { color: #fff; }
.foot-brand img { height: 22px; margin-bottom: 16px; }
.foot-brand p { max-width: 260px; line-height: 1.55; }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap; gap: 16px;
}

/* ── Scroll-reveal animations ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 80ms; }
.reveal-d2 { transition-delay: 160ms; }
.reveal-d3 { transition-delay: 240ms; }
.reveal-d4 { transition-delay: 320ms; }
.reveal-d5 { transition-delay: 400ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-kicker .pulse::after { animation: none; }
}

/* ═════════════════════════════════════════════════════════════
   SUBPAGES (FAQ, About) — shared chrome + page-specific styles
   ═════════════════════════════════════════════════════════════ */

/* ── Page hero (subpages, more compact than landing hero) ─── */
.page-hero {
  background: #000;
  padding: 96px 0 96px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 80%;
  background: radial-gradient(60% 50% at 80% 30%, rgba(255,107,53,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero > .page { position: relative; z-index: 1; }
@media (max-width: 720px) { .page-hero { padding: 64px 0 64px; } }

.crumbs {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 36px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.crumbs a { color: rgba(255,255,255,0.55); transition: color var(--motion-fast) var(--ease); }
.crumbs a:hover { color: #fff; }
.crumbs .sep { color: rgba(255,255,255,0.2); }
.crumbs .here { color: var(--primary); }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.96;
  color: #fff;
  max-width: 18ch;
}
.page-hero h1 .accent { color: var(--primary); }

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: end;
  margin-top: 48px;
}
@media (max-width: 920px) {
  .page-hero-grid { grid-template-columns: 1fr; gap: 32px; }
}
.page-hero-grid .lede { color: rgba(255,255,255,0.7); max-width: 56ch; }
.page-hero-grid .lede strong { color: #fff; }
.page-hero-aside {
  border-left: 1px solid rgba(255,255,255,0.12);
  padding-left: 32px;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 920px) {
  .page-hero-aside { border-left: 0; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; }
}
.page-hero-aside strong {
  display: block;
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin-bottom: 14px;
}

/* ── FAQ search card (in hero) ────────────────────────────── */
.search-card {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  padding: 20px;
}
.search-label {
  display: flex; justify-content: space-between;
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}
.search-label .count { color: #fff; font-variant-numeric: tabular-nums; }
.search-input {
  display: flex; align-items: center; gap: 12px;
  background: #0A0A0A;
  border: 1px solid rgba(255,255,255,0.16);
  padding: 16px 18px;
  transition: border-color var(--motion-fast) var(--ease), background var(--motion-fast) var(--ease);
}
.search-input:focus-within {
  border-color: var(--primary);
  background: rgba(255,107,53,0.06);
}
.search-input .material-symbols-rounded { color: rgba(255,255,255,0.5); font-size: 20px; }
.search-input input {
  flex: 1; background: transparent; border: 0; outline: 0;
  color: #fff; font-family: inherit; font-size: 15px;
}
.search-input input::placeholder { color: rgba(255,255,255,0.35); }
.kbd {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 22px; height: 22px; padding: 0 6px;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.55);
  font-size: 11px;
}

/* ── FAQ body (light section with TOC + cats) ─────────────── */
.faq-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  padding: 96px 0;
}
@media (max-width: 960px) {
  .faq-body { grid-template-columns: 1fr; gap: 40px; padding: 64px 0; }
}
aside.toc {
  position: sticky;
  top: 96px;
  align-self: start;
  border-left: 1px solid var(--border-subtle);
  padding-left: 24px;
}
@media (max-width: 960px) {
  aside.toc { position: static; border-left: 0; padding: 0; border-top: 1px solid var(--border-subtle); padding-top: 24px; }
}
.toc-label {
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 1.4px;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.toc ol {
  list-style: none;
  counter-reset: toc;
  display: flex; flex-direction: column; gap: 2px;
}
.toc ol li { counter-increment: toc; }
.toc ol a {
  display: flex; gap: 12px; justify-content: space-between;
  padding: 8px 0;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
  transition: color var(--motion-fast) var(--ease);
}
.toc ol a .lbl { display: flex; gap: 12px; }
.toc ol a .lbl::before {
  content: counter(toc, decimal-leading-zero);
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  font-size: 11px;
  letter-spacing: 0.5px;
  padding-top: 2px;
  flex-shrink: 0;
}
.toc ol a .n { color: var(--text-muted); font-size: 11px; padding-top: 2px; font-variant-numeric: tabular-nums; }
.toc ol a:hover, .toc ol a.active { color: var(--primary); }
.toc ol a.active .lbl::before { color: var(--primary); }

.faq-content { max-width: 820px; }

section.cat {
  padding: 24px 0 56px;
  border-bottom: 1px solid var(--border-subtle);
  scroll-margin-top: 100px;
}
section.cat:last-child { border-bottom: 0; }
section.cat:first-child { padding-top: 0; }
.cat-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 28px;
  gap: 24px;
}
.cat-head .left { display: flex; align-items: baseline; gap: 18px; }
.cat-num {
  font-size: 12px; font-weight: 500;
  color: var(--primary);
  letter-spacing: 1.4px;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  min-width: 28px;
}
.cat h2 {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 500;
  letter-spacing: -0.7px; line-height: 1.1;
}
.cat-meta { font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--text-muted); font-variant-numeric: tabular-nums; }

.qa { padding-left: 46px; }
@media (max-width: 600px) { .qa { padding-left: 0; } }

.qa details.q {
  border-top: 1px solid var(--border-subtle);
}
.qa details.q:last-child { border-bottom: 1px solid var(--border-subtle); }
.qa details.q > summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex; align-items: flex-start; gap: 16px;
  transition: color var(--motion-fast) var(--ease);
}
.qa details.q > summary::-webkit-details-marker { display: none; }
.qa details.q > summary:hover { color: var(--primary); }
.qa details.q > summary:hover .q-icon { color: var(--primary); border-color: rgba(255,107,53,0.4); }
.qa .q-icon {
  width: 28px; height: 28px; flex-shrink: 0; margin-top: 1px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-strong);
  color: var(--text-secondary);
  transition: all var(--motion-fast) var(--ease);
}
.qa .q-icon .material-symbols-rounded { font-size: 18px; transition: transform var(--motion-fast) var(--ease); }
.qa details.q[open] .q-icon { color: var(--primary); border-color: var(--primary); background: rgba(255,107,53,0.10); }
.qa details.q[open] .q-icon .material-symbols-rounded { transform: rotate(45deg); }
.qa .q-text {
  flex: 1;
  font-size: 17px; font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 1.42;
}
.qa details.q[open] > summary { color: var(--primary); }
.qa .q-tag {
  flex-shrink: 0;
  font-size: 10px; letter-spacing: 0.8px; text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 4px;
  font-variant-numeric: tabular-nums;
}
.qa .a {
  padding: 0 0 28px 44px;
  font-size: 16px; line-height: 1.7;
  color: var(--text-secondary);
  max-width: 70ch;
}
@media (max-width: 600px) { .qa .a { padding-left: 0; } }
.qa .a strong { color: var(--text); font-weight: 500; }
.qa .a a { color: var(--primary); }
.qa .a a:hover { text-decoration: underline; text-underline-offset: 2px; }
.qa .a p + p { margin-top: 12px; }

.pill-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--border-subtle);
  background: var(--card);
  color: var(--text-secondary);
  font-size: 11px;
  letter-spacing: 0.4px;
}
.pill .material-symbols-rounded { font-size: 14px; color: var(--text-muted); }
.pill.on { border-color: rgba(61,139,55,0.45); color: #2F6F2B; background: rgba(61,139,55,0.08); }
.pill.on .material-symbols-rounded { color: #2F6F2B; }

.hidden { display: none !important; }

/* ── Contact strip (dark) ─────────────────────────────────── */
.contact-strip {
  background: #0A0A0A;
  padding: 96px 0;
  color: #fff;
}
.contact-strip > .page > .eyebrow { margin-bottom: 32px; }
.contact-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.04;
  color: #fff;
  max-width: 22ch;
  margin-bottom: 48px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: #0A0A0A;
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 240px;
}
.contact-card .ic {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,107,53,0.10);
  border: 1px solid rgba(255,107,53,0.22);
  color: var(--primary);
}
.contact-card .ic .material-symbols-rounded { font-size: 20px; }
.contact-card h4 {
  font-size: 20px; font-weight: 500;
  letter-spacing: -0.3px;
  color: #fff;
}
.contact-card p {
  font-size: 14px; line-height: 1.55;
  color: rgba(255,255,255,0.6);
}
.contact-card a.cta {
  margin-top: auto;
  font-size: 14px; font-weight: 500;
  color: var(--primary);
  display: inline-flex; align-items: center; gap: 6px;
}
.contact-card a.cta::after {
  content: '›';
  transition: transform var(--motion-fast) var(--ease);
}
.contact-card a.cta:hover::after { transform: translateX(3px); }

/* ── About page tiles ─────────────────────────────────────── */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
}
@media (max-width: 960px) { .tile-grid { grid-template-columns: 1fr; } }
.tile {
  background: var(--bg);
  padding: 36px 32px;
  display: flex; flex-direction: column;
  min-height: 280px;
  transition: background var(--motion-fast) var(--ease);
}
.tile:hover { background: var(--card-hover); }
.tile .num {
  font-size: 11px; letter-spacing: 1.4px; color: var(--text-muted);
  margin-bottom: 28px;
}
.tile .icon {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--primary);
  background: rgba(255,107,53,0.10);
  border: 1px solid rgba(255,107,53,0.22);
  margin-bottom: 24px;
}
.tile .icon .material-symbols-rounded { font-size: 20px; }
.tile h3 {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.12;
  margin-bottom: 14px;
}
.tile p {
  font-size: 14px; line-height: 1.6;
  color: var(--text-secondary);
}

/* About — mission split */
.mission-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
}
@media (max-width: 820px) { .mission-split { grid-template-columns: 1fr; } }
.mission-panel {
  background: var(--bg);
  padding: 40px 36px;
}
.mission-panel h3 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.08;
  margin-bottom: 18px;
}
.mission-panel p {
  font-size: 15px; line-height: 1.65;
  color: var(--text-secondary);
}

/* About — section head shared */
.chapter-twocol-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 800px) {
  .chapter-twocol-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 40px; }
}
.chapter-twocol-head h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 60px);
  font-weight: 500;
  letter-spacing: -0.032em;
  line-height: 1.02;
}
.chapter-twocol-head p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 56ch;
  margin-top: 22px;
}
.chapter-twocol-head p strong { color: var(--text); font-weight: 500; }

/* ── Float-up phone in hero (subtle) ──────────────────────── */
.hero-device .iphone {
  transform: translateY(0);
  transition: transform 1200ms var(--ease);
}
.hero.loaded .hero-device .iphone {
  animation: floaty 8s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ═════════════════════════════════════════════════════════════
   SUBPAGES — forms, legal, channels, phases
   ═════════════════════════════════════════════════════════════ */

/* ── Form card (beta, newsletter, contact, unsubscribe) ───── */
.form-card {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-card h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 1.2;
  color: #fff;
}
.form-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin: 0;
}
.form-grid {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}
.form-grid label {
  display: grid;
  gap: 6px;
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.form-grid input,
.form-grid textarea {
  width: 100%;
  background: #0A0A0A;
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  padding: 14px 16px;
  outline: 0;
  transition: border-color var(--motion-fast) var(--ease), background var(--motion-fast) var(--ease);
}
.form-grid input:focus,
.form-grid textarea:focus {
  border-color: var(--primary);
  background: rgba(255,107,53,0.06);
}
.form-grid textarea {
  min-height: 112px;
  resize: vertical;
  line-height: 1.5;
}
.form-grid button[type='submit'] {
  margin-top: 4px;
  height: 50px;
  border: 0;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.05px;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--motion-fast) var(--ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.form-grid button[type='submit']:hover { background: var(--primary-dim); }
.form-status {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  min-height: 1.4em;
}
.subscribe-inline {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  border: 1px solid rgba(255,255,255,0.16);
  background: #0A0A0A;
}
.subscribe-inline input {
  border: 0;
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 18px;
  padding: 0 20px;
  height: 60px;
  outline: 0;
}
.subscribe-inline input::placeholder { color: rgba(255,255,255,0.35); }
.subscribe-inline button {
  height: 60px;
  padding: 0 28px;
  border: 0;
  background: var(--primary);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--motion-fast) var(--ease);
}
.subscribe-inline button:hover { background: var(--primary-dim); }
@media (max-width: 540px) {
  .subscribe-inline { grid-template-columns: 1fr; }
  .subscribe-inline button { width: 100%; }
}

/* ── Tile grid variant (for short marketing rows) ─────────── */
.tile-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
}
@media (max-width: 800px) { .tile-row { grid-template-columns: 1fr; } }
.tile-row .tile {
  background: var(--bg);
  padding: 32px 28px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tile-row .tile .num {
  font-size: 11px;
  letter-spacing: 1.4px;
  color: var(--text-muted);
}
.tile-row .tile h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 1.12;
}
.tile-row .tile p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ── Page-hero variants for dark forms (right column shows form) */
.page-hero-form {
  border-left: 1px solid rgba(255,255,255,0.12);
  padding-left: 0;
}
@media (max-width: 920px) {
  .page-hero-form { border-left: 0; }
}

/* ── Legal pages (privacy, terms, delete-account) — TOC + clauses */
.legal-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  padding: 96px 0;
}
@media (max-width: 960px) {
  .legal-body { grid-template-columns: 1fr; gap: 40px; padding: 64px 0; }
}
.legal-content { max-width: 820px; }

.callout {
  border: 1px solid rgba(255,107,53,0.25);
  background: rgba(255,107,53,0.06);
  padding: 20px 24px;
  margin-bottom: 56px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.callout .icon-wrap {
  width: 36px; height: 36px;
  background: var(--bg);
  border: 1px solid rgba(255,107,53,0.30);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.callout .icon-wrap .material-symbols-rounded { font-size: 18px; }
.callout .body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}
.callout .body strong { font-weight: 600; }
.callout .body a { color: var(--primary); }
.callout .body a:hover { text-decoration: underline; text-underline-offset: 2px; }

section.clause {
  padding: 40px 0;
  border-bottom: 1px solid var(--border-subtle);
  scroll-margin-top: 100px;
}
section.clause:last-child { border-bottom: 0; }
.clause-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 24px;
}
.clause-num {
  font-size: 12px;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 1.4px;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  min-width: 28px;
}
.clause h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.6px;
  line-height: 1.15;
}
.clause-body {
  padding-left: 46px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}
@media (max-width: 540px) { .clause-body { padding-left: 0; } }
.clause-body p { margin-bottom: 14px; max-width: 70ch; }
.clause-body p:last-child { margin-bottom: 0; }
.clause-body p strong, .clause-body li strong { color: var(--text); font-weight: 500; }
.clause-body a { color: var(--primary); }
.clause-body a:hover { text-decoration: underline; text-underline-offset: 2px; }
.clause-body ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
  margin-bottom: 14px;
}
.clause-body ul li {
  background: var(--bg);
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.6;
  display: flex;
  gap: 14px;
}
.clause-body ul li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--primary);
  margin-top: 9px;
  flex-shrink: 0;
}
.clause-body ol.steps {
  list-style: none;
  padding: 0;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
  margin-bottom: 14px;
}
.clause-body ol.steps li {
  counter-increment: step;
  background: var(--bg);
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.6;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.clause-body ol.steps li::before {
  content: counter(step, decimal-leading-zero);
  color: var(--primary);
  font-variant-numeric: tabular-nums;
  font-size: 11px;
  letter-spacing: 1.2px;
  padding-top: 3px;
  flex-shrink: 0;
  width: 22px;
}

.sla-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border-subtle);
  margin-bottom: 14px;
}
@media (max-width: 540px) { .sla-grid { grid-template-columns: 1fr; } }
.sla-cell { padding: 20px 22px; }
.sla-cell + .sla-cell { border-left: 1px solid var(--border-subtle); }
@media (max-width: 540px) {
  .sla-cell + .sla-cell { border-left: 0; border-top: 1px solid var(--border-subtle); }
}
.sla-cell .label {
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.sla-cell .value {
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
}

/* Meta row under hero on legal pages */
.meta-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.meta-row .pair {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.meta-row .pair .v {
  color: #fff;
  letter-spacing: 0.3px;
}
.meta-row .material-symbols-rounded { font-size: 14px; color: #88bf6c; }

/* ── Channels grid (contact page) ─────────────────────────── */
.channels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
}
@media (max-width: 720px) { .channels-grid { grid-template-columns: 1fr; } }
.channel-cell {
  background: var(--bg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  transition: background var(--motion-fast) var(--ease);
}
.channel-cell:hover { background: var(--card-hover); }
.channel-cell .topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.channel-cell .ic {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,107,53,0.10);
  color: var(--primary);
  border: 1px solid rgba(255,107,53,0.22);
}
.channel-cell .ic .material-symbols-rounded { font-size: 22px; }
.channel-cell .num {
  font-size: 11px;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}
.channel-cell h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 1.2;
}
.channel-cell p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}
.channel-cell p strong { color: var(--text); font-weight: 500; }
.channel-cell .subject {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px dashed var(--border);
  background: var(--surface);
  font-size: 12px;
  color: var(--text-secondary);
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  letter-spacing: 0.2px;
  width: fit-content;
}
.channel-cell .channel-link {
  margin-top: auto;
  padding-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
}
.channel-cell .channel-link::after {
  content: '›';
  transition: transform var(--motion-fast) var(--ease);
}
.channel-cell:hover .channel-link::after { transform: translateX(3px); }

/* ── Checklist (contact, delete-account) ──────────────────── */
.checklist {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-subtle);
}
.check-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 16px;
  padding: 18px 20px;
  align-items: center;
  border-bottom: 1px solid var(--border-subtle);
}
.check-row:last-child { border-bottom: 0; }
.check-row .n {
  font-size: 11px;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}
.check-row .body {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.check-row .body em {
  color: var(--text-muted);
  font-style: normal;
  font-size: 13px;
}
.check-row .ic {
  width: 24px; height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.check-row .ic .material-symbols-rounded { font-size: 18px; }

/* ── Rights / summary split (privacy, delete-account, terms) */
.split-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  margin-top: 56px;
}
@media (max-width: 800px) { .split-card { grid-template-columns: 1fr; } }
.split-card .col {
  background: #0A0A0A;
  color: #fff;
  padding: 36px;
}
.split-card .col .tag {
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.split-card .col h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.18;
  color: #fff;
  margin-bottom: 16px;
}
.split-card .col p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}
.split-card .col p:last-child { margin-bottom: 0; }
.split-card .col p strong { color: #fff; font-weight: 500; }
.split-card .col p a { color: var(--primary); }
.split-card .actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.split-card .summary-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.split-card .summary-list .item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
}
.split-card .summary-list .item .material-symbols-rounded {
  font-size: 18px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.split-card .summary-list .item strong { color: #fff; font-weight: 500; }

/* ── Roadmap phases ───────────────────────────────────────── */
.phases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
}
@media (max-width: 880px) { .phases-grid { grid-template-columns: 1fr; } }
.phase-cell {
  background: var(--bg);
  padding: 36px 32px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
.phase-cell .label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.phase-cell .label .dot {
  width: 6px; height: 6px;
}
.phase-cell.now .label { color: var(--primary); }
.phase-cell.now .label .dot { background: var(--primary); box-shadow: 0 0 0 3px rgba(255,107,53,0.25); }
.phase-cell.next .label { color: var(--cyan); }
.phase-cell.next .label .dot { background: var(--cyan); }
.phase-cell.later .label { color: var(--text-muted); }
.phase-cell.later .label .dot { background: var(--text-muted); }
.phase-cell h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.6px;
  line-height: 1.06;
  margin-bottom: 18px;
}
.phase-cell .when {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.4px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}
.phase-cell ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
}
.phase-cell ul li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
  padding-left: 16px;
  position: relative;
}
.phase-cell ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 4px; height: 4px;
  background: var(--text-muted);
}
.phase-cell.now ul li::before { background: var(--primary); }
.phase-cell.next ul li::before { background: var(--cyan); }
.phase-cell ul li strong { color: var(--text); font-weight: 500; }
