/* ─────────────────────────────────────────────────────────────────────────
   ENZZIRO — Cinematic dark studio
   Synthesis of ORYZO (dark theatre), Apple (typographic precision),
   Jeton (confident outlined accent).
   ───────────────────────────────────────────────────────────────────────── */

:root {
  /* Light theme (default) — clean modern, Slack/Apple/Vercel lane */
  --bg: #ffffff;
  --bg-raised: #fafafa;
  --fg: #0a0a0a;
  --fg-muted: #6b7280;
  --accent: #ffc107;
  --accent-deep: #b8860b;
  --action: #0a0a0a;
  --action-fg: #ffffff;
  --divider: #e5e5e5;
  --grid-line: rgba(10, 10, 10, 0.05);
}

html[data-theme="dark"] {
  --bg: #0a0a0a;
  --bg-raised: #161616;
  --fg: #fafafa;
  --fg-muted: #8a8a8a;
  --accent: #ffc107;
  --accent-deep: #ffd54f;
  --action: #ffffff;
  --action-fg: #0a0a0a;
  --divider: #1f1f1f;
  --grid-line: rgba(250, 250, 250, 0.06);
}

:root {

  /* Type — single variable family + mono for caption labels */
  --font-display: 'DM Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  /* Type scale — ORYZO/Apple hybrid */
  --t-mono: 10px;
  --t-body: 14px;
  --t-body-lg: 18px;
  --t-h-sm: 24px;
  --t-h: 29px;
  --t-h-lg: 41px;
  --t-display: 51px;
  --t-display-xl: 72px;

  /* Spacing — ORYZO scale */
  --s-1: 6px;
  --s-2: 10px;
  --s-3: 14px;
  --s-4: 18px;
  --s-5: 24px;
  --s-6: 31px;
  --s-7: 45px;
  --s-8: 68px;
  --s-9: 96px;
  --s-10: 128px;

  /* Layout */
  --max-w: 1280px;
  --gutter: 32px;

  /* Radii — Vercel/Slack lane */
  --r-pill: 999px;
  --r-pill-sm: 999px;
  --r-card: 14px;
  --r-btn: 10px;
  --r-btn-pill: 999px;
}

@media (max-width: 768px) {
  :root {
    --t-h-lg: 32px;
    --t-display: 38px;
    --t-display-xl: 48px;
    --gutter: 20px;
  }
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--t-body);
  line-height: 1.33;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  transition: background-color 300ms ease, color 300ms ease;
}

html.theme-changing *,
html.theme-changing *::before,
html.theme-changing *::after {
  transition: background-color 300ms ease, color 300ms ease, border-color 300ms ease, fill 300ms ease, stroke 300ms ease !important;
}

::selection { background: var(--accent); color: var(--fg); }

a { color: inherit; }

/* ─── Accessibility ─────────────────────────────────────────────────────── */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: var(--fg);
  padding: 8px 16px; z-index: 9999; text-decoration: none;
  font-family: var(--font-mono); font-size: var(--t-mono);
  text-transform: uppercase; letter-spacing: 0.12em;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: 4px;
}

/* ─── Container ─────────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

/* ─── Mono caption labels ───────────────────────────────────────────────── */
.mono-label {
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--fg);
  display: inline-block;
}
.mono-label.muted { color: var(--fg-muted); }
.mono-label.accent { color: var(--accent-deep); }

/* ─── Navigation ────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background-color 300ms ease, border-color 300ms ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.85);
  border-bottom-color: var(--divider);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
}
html[data-theme="dark"] .nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--s-4) var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wordmark {
  font-family: 'Silkscreen', monospace;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0;
  color: var(--fg);
  text-decoration: none;
  text-transform: lowercase;
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
}
.wordmark .i-glyph {
  position: relative;
  display: inline-block;
}
.wordmark .i-glyph::after {
  content: "";
  position: absolute;
  width: 0.3em;
  height: 0.3em;
  background: var(--accent);
  top: -0.55em;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links {
  display: flex;
  gap: var(--s-5);
  align-items: center;
}
.nav-link {
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--fg);
  text-decoration: none;
  transition: color 200ms ease;
}
.nav-link:hover { color: var(--accent); }
@media (max-width: 640px) {
  .nav-links .nav-link:not(.nav-cta) { display: none; }
}

/* ─── Buttons (Vercel/Slack lane) ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: var(--r-btn);
  border: 1px solid transparent;
  cursor: pointer;
  transition: border-color 200ms ease, color 200ms ease, background-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  background: transparent;
  line-height: 1.2;
}
.btn-primary {
  color: var(--action-fg);
  background: var(--action);
  border-color: var(--action);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px rgba(10, 10, 10, 0.3);
}
.btn-ghost {
  color: var(--fg);
  border-color: var(--divider);
  background: var(--bg);
}
.btn-ghost:hover {
  border-color: var(--fg);
  background: var(--bg-raised);
}
.btn-large {
  font-size: 16px;
  padding: 14px 28px;
  border-radius: var(--r-btn);
}
.btn .arrow { display: inline-block; transition: transform 240ms ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ─── Vertical rotated label (ORYZO signature) ──────────────────────────── */
.vertical-label {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  z-index: 50;
  pointer-events: none;
  white-space: nowrap;
}
@media (max-width: 900px) { .vertical-label { display: none; } }

/* ─── Hero (two-column on desktop, stacked on mobile) ───────────────────── */
.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  align-items: center;
  padding: 140px var(--gutter) var(--s-9);
  position: relative;
  overflow: hidden;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 960px) {
  .hero {
    grid-template-columns: 1.05fr 1fr;
    gap: var(--s-8);
    padding: 160px var(--gutter) var(--s-10);
    align-items: center;
  }
  .hero-content {
    align-items: flex-start;
    text-align: left;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: var(--s-5);
  background: none;
  border: none;
  padding: 0;
}
.hero-eyebrow .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; display: inline-block; position: relative; flex-shrink: 0; }
.hero-eyebrow .dot.live::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.45;
  animation: livePulse 2.2s ease-out infinite;
  z-index: -1;
}
@keyframes livePulse {
  0%   { transform: scale(0.6); opacity: 0.5; }
  70%  { transform: scale(2.4); opacity: 0; }
  100% { transform: scale(2.4); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow .dot.live::after { animation: none; opacity: 0; }
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 var(--s-5);
  color: var(--fg);
  max-width: 16ch;
}
.hero h1 .line { display: block; }
@media (min-width: 1200px) {
  .hero h1 { font-size: 84px; letter-spacing: -0.04em; }
}
.hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.45;
  color: var(--fg-muted);
  max-width: 50ch;
  margin: 0 0 var(--s-7);
}
@media (max-width: 959px) {
  .hero-sub { margin-left: auto; margin-right: auto; }
}
.hero-actions {
  display: flex;
  gap: var(--s-2);
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 959px) {
  .hero-actions { justify-content: center; }
}

/* ─── Hero scene (Spline robot, frameless / seamless) ───────────────────── */
.hero-scene-card {
  position: relative;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}
@media (min-width: 960px) {
  .hero-scene-card { aspect-ratio: 1 / 1; max-width: none; }
}
.hero-scene-card spline-viewer,
.hero-scene-card .hero-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: transparent !important;
}
.hero-scene-card spline-viewer::part(canvas) { background: transparent !important; }

@media (max-width: 640px) {
  .hero-scene-card { aspect-ratio: 1 / 1; max-width: 360px; }
}

/* ─── Section base ──────────────────────────────────────────────────────── */
.section {
  padding: var(--s-9) var(--gutter);
  border-bottom: 1px solid var(--divider);
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-5);
  align-items: baseline;
  margin-bottom: var(--s-7);
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.section-head .num {
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.section-head .label {
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg);
}

/* ─── Stats strip ───────────────────────────────────────────────────────── */
.stats {
  padding: var(--s-7) var(--gutter);
  border-bottom: 1px solid var(--divider);
}
.stats-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  max-width: var(--max-w);
  margin: 0 auto;
}
@media (min-width: 720px) {
  .stats-row { grid-template-columns: 1fr 1fr 1fr; gap: var(--s-7); }
}
.stat {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  border-left: 1px solid var(--divider);
  padding-left: var(--s-4);
}
@media (min-width: 720px) {
  .stat:first-child { border-left: none; padding-left: 0; }
}
@media (max-width: 719px) {
  .stat { border-left: none; padding-left: 0; border-top: 1px solid var(--divider); padding-top: var(--s-4); }
  .stat:first-child { border-top: none; padding-top: 0; }
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--t-h-lg);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.stat-label {
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ─── Product moment / Telegram card ────────────────────────────────────── */
.product-moment {
  padding: var(--s-9) var(--gutter);
  border-bottom: 1px solid var(--divider);
}
.pm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: center;
}
@media (min-width: 900px) {
  .pm-grid { grid-template-columns: 1fr 1fr; gap: var(--s-8); }
}
.pm-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--t-display);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: var(--s-4) 0 var(--s-4);
  color: var(--fg);
}
.pm-body {
  font-size: var(--t-body-lg);
  line-height: 1.5;
  color: var(--fg);
  opacity: 0.85;
  max-width: 42ch;
  margin: 0;
}
.telegram-card {
  background: transparent;
  border: 1px solid var(--fg);
  border-radius: var(--r-card);
  padding: var(--s-5);
}
.tg-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--s-3);
  padding-bottom: var(--s-2);
  border-bottom: 1px solid var(--divider);
}
.tg-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--t-body-lg);
  letter-spacing: -0.01em;
}
.tg-time {
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.tg-body {
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 var(--s-4);
}
.tg-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--s-4);
  padding: var(--s-3);
  border: 1px solid var(--divider);
  border-radius: 6px;
}
.tg-item {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.tg-actions { display: flex; gap: var(--s-2); }
.tg-btn {
  flex: 1;
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 10px 16px;
  border-radius: var(--r-pill-sm);
  border: 1px solid var(--fg);
  background: transparent;
  color: var(--fg);
  cursor: default;
}
.tg-review { background: var(--fg); color: var(--bg); }
.moment-caption {
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: var(--s-4) 0 0;
  display: inline-block;
}

/* ─── Cinematic stack (what-it-does items) ──────────────────────────────── */
.cine {
  padding: var(--s-8) var(--gutter);
  border-bottom: 1px solid var(--divider);
}
.cine-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  max-width: var(--max-w);
  margin: 0 auto;
}
@media (min-width: 900px) {
  .cine-grid {
    grid-template-columns: 90px 1fr 1fr;
    gap: var(--s-7);
    align-items: start;
  }
}
.cine-num {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 400;
  color: var(--accent-deep);
  line-height: 1;
  letter-spacing: 0.04em;
}
.cine-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--t-h-lg);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--fg);
}
@media (min-width: 900px) {
  .cine-headline { font-size: var(--t-display); line-height: 0.95; }
}
.cine-body {
  font-size: var(--t-body-lg);
  line-height: 1.5;
  color: var(--fg);
  opacity: 0.85;
  margin: 0;
  max-width: 38ch;
}
@media (max-width: 899px) {
  .cine-body { margin-top: var(--s-3); }
}

/* ─── Pull quote ────────────────────────────────────────────────────────── */
.pull-quote {
  padding: var(--s-9) var(--gutter);
  border-bottom: 1px solid var(--divider);
  text-align: left;
}
.pq-inner {
  max-width: 900px;
  margin: 0 auto;
}
.pq-mark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 96px;
  line-height: 1;
  color: var(--accent-deep);
  display: block;
  margin-bottom: 0;
}
.pq-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--t-h-lg);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin: 0 0 var(--s-4);
}
@media (min-width: 900px) {
  .pq-text { font-size: var(--t-display); line-height: 1.05; }
}
.pq-attr {
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ─── Why now ───────────────────────────────────────────────────────────── */
.why {
  padding: var(--s-9) var(--gutter);
  border-bottom: 1px solid var(--divider);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  max-width: var(--max-w);
  margin: 0 auto;
}
@media (min-width: 900px) {
  .why-grid { grid-template-columns: 1fr 1.4fr; gap: var(--s-9); }
}
.why-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--t-h-lg);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: var(--s-4) 0 0;
  color: var(--fg);
}
@media (min-width: 900px) {
  .why-headline { font-size: var(--t-display); line-height: 0.95; }
}
.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--s-5);
}
.why-item {
  border-top: 1px solid var(--divider);
  padding-top: var(--s-4);
}
.why-item-num {
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: var(--s-2);
}
.why-item-text {
  font-size: var(--t-body-lg);
  line-height: 1.5;
  color: var(--fg);
  margin: 0;
  opacity: 0.9;
}

/* ─── Trust ─────────────────────────────────────────────────────────────── */
.trust {
  padding: var(--s-9) var(--gutter);
  border-bottom: 1px solid var(--divider);
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  max-width: var(--max-w);
  margin: 0 auto;
}
@media (min-width: 900px) {
  .trust-grid { grid-template-columns: 1fr 1.4fr; gap: var(--s-9); }
}
.trust-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--t-h-lg);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: var(--s-4) 0 0;
  color: var(--fg);
}
@media (min-width: 900px) {
  .trust-headline { font-size: var(--t-display); line-height: 0.95; }
}
.trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}
.trust-list li {
  font-size: var(--t-body-lg);
  line-height: 1.5;
  color: var(--fg);
  padding: var(--s-4) 0;
  border-top: 1px solid var(--divider);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: var(--s-3);
  align-items: baseline;
}
.trust-list li::before {
  content: counter(trust-counter, decimal-leading-zero);
  counter-increment: trust-counter;
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: 0.16em;
  color: var(--accent);
}
.trust-list { counter-reset: trust-counter; }

/* ─── Audience ──────────────────────────────────────────────────────────── */
.audience {
  padding: var(--s-9) var(--gutter);
  border-bottom: 1px solid var(--divider);
}
.aud-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  max-width: var(--max-w);
  margin: 0 auto;
}
@media (min-width: 900px) {
  .aud-grid { grid-template-columns: 1fr 1.4fr; gap: var(--s-9); }
}
.aud-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--t-h-lg);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: var(--s-4) 0 0;
  color: var(--fg);
}
@media (min-width: 900px) {
  .aud-headline { font-size: var(--t-display); line-height: 0.95; }
}
.aud-blocks { display: grid; gap: var(--s-5); }
.aud-block { border-top: 1px solid var(--divider); padding-top: var(--s-4); }
.aud-block-label {
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: var(--s-2);
}
.aud-block.not .aud-block-label { color: var(--fg-muted); }
.aud-block p {
  font-size: var(--t-body-lg);
  line-height: 1.5;
  margin: 0;
  color: var(--fg);
  opacity: 0.9;
}
.aud-block.not p { opacity: 0.7; }

/* ─── Meet the founder ──────────────────────────────────────────────────── */
.founder {
  padding: var(--s-9) var(--gutter);
  border-bottom: 1px solid var(--divider);
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  max-width: var(--max-w);
  margin: 0 auto;
}
@media (min-width: 900px) {
  .founder-grid { grid-template-columns: 1fr 1.4fr; gap: var(--s-9); }
}
.founder-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--t-h-lg);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: var(--s-4) 0 0;
  color: var(--fg);
}
@media (min-width: 900px) {
  .founder-headline { font-size: var(--t-display); line-height: 0.95; }
}
.founder-body p {
  font-size: var(--t-body-lg);
  line-height: 1.6;
  margin: 0 0 var(--s-4);
  color: var(--fg);
  opacity: 0.9;
}
.founder-body p:last-child { margin-bottom: 0; }
.founder-marks {
  margin-top: var(--s-5);
  border-top: 1px solid var(--divider);
  padding-top: var(--s-4);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
.founder-mark {
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
  line-height: 1.6;
}
.founder-mark strong { color: var(--fg); display: block; font-weight: 400; }

/* ─── Waitlist ──────────────────────────────────────────────────────────── */
.waitlist {
  padding: var(--s-9) var(--gutter) var(--s-8);
  border-bottom: 1px solid var(--divider);
}
.wl-inner { max-width: 720px; margin: 0 auto; }
.wl-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--t-display);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: var(--s-4) 0 var(--s-4);
  color: var(--fg);
}
@media (min-width: 900px) {
  .wl-headline { font-size: 80px; }
}
.wl-intro {
  font-size: var(--t-body-lg);
  line-height: 1.5;
  color: var(--fg);
  opacity: 0.85;
  max-width: 50ch;
  margin: 0 0 var(--s-7);
}
.tally-wrap iframe { display: block; background: transparent; }

/* ─── Footer ────────────────────────────────────────────────────────────── */
footer {
  padding: var(--s-5) var(--gutter);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-3);
}
.footer-line {
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0;
}
.footer-line a {
  color: var(--fg-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--divider);
  transition: color 200ms ease, border-color 200ms ease;
}
.footer-line a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* ─── Legal pages ───────────────────────────────────────────────────────── */
.legal { max-width: 720px; margin: 0 auto; padding: 140px var(--gutter) var(--s-9); }
.legal h1 { font-family: var(--font-display); font-weight: 500; font-size: var(--t-display); line-height: 1; letter-spacing: -0.02em; margin: 0 0 var(--s-4); }
.legal .updated { font-family: var(--font-mono); font-size: var(--t-mono); letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: var(--s-7); display: block; }
.legal h2 { font-family: var(--font-display); font-weight: 500; font-size: var(--t-h-sm); margin: var(--s-7) 0 var(--s-3); }
.legal p, .legal li { font-size: var(--t-body-lg); line-height: 1.6; color: var(--fg); opacity: 0.9; }
.legal ul { padding-left: 20px; }
.legal .back { font-family: var(--font-mono); font-size: var(--t-mono); letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-muted); text-decoration: none; }
.legal .back:hover { color: var(--accent); }

/* ─── Motion layer ──────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {

  .hero h1 .line {
    display: block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 500ms ease, transform 500ms ease;
  }
  .hero h1 .line.is-visible { opacity: 1; transform: translateY(0); }

  .hero-sub, .hero-actions, .hero-foot {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 400ms ease, transform 400ms ease;
  }
  .hero-sub.is-visible,
  .hero-actions.is-visible,
  .hero-foot.is-visible { opacity: 1; transform: translateY(0); }

  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 500ms ease, transform 500ms ease;
  }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }

  .stats-row .stat {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 400ms ease, transform 400ms ease;
  }
  .stats-row.is-visible .stat:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0ms; }
  .stats-row.is-visible .stat:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 80ms; }
  .stats-row.is-visible .stat:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 160ms; }

  .tg-header, .tg-body, .tg-meta, .tg-actions {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 300ms ease, transform 300ms ease;
  }
  .telegram-card.is-visible .tg-header  { opacity: 1; transform: translateY(0); transition-delay: 0ms; }
  .telegram-card.is-visible .tg-body    { opacity: 1; transform: translateY(0); transition-delay: 100ms; }
  .telegram-card.is-visible .tg-meta    { opacity: 1; transform: translateY(0); transition-delay: 200ms; }
  .telegram-card.is-visible .tg-actions { opacity: 1; transform: translateY(0); transition-delay: 300ms; }
}

/* ─── Theme toggle ──────────────────────────────────────────────────────── */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: transparent;
  border: 1px solid var(--divider);
  border-radius: 50%;
  cursor: pointer;
  color: var(--fg);
  padding: 0;
  transition: border-color 200ms ease, color 200ms ease;
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); }
.theme-toggle svg { width: 16px; height: 16px; display: block; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
html[data-theme="light"] .theme-toggle .icon-sun { display: block; }
html[data-theme="light"] .theme-toggle .icon-moon { display: none; }

/* ─── Hero canvas: grid + pulsing nodes + spotlight gradient ────────────── */
.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 193, 7, 0.12), transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(10, 10, 10, 0.04), transparent 70%);
}
html[data-theme="dark"] .hero-canvas {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 193, 7, 0.18), transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(255, 255, 255, 0.03), transparent 70%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hero-grid .grid-line { stroke: var(--grid-line); stroke-width: 1; }
.hero-grid .node {
  fill: var(--accent);
  opacity: 0;
  transform-origin: center;
  animation: nodeBlink 4.2s ease-in-out infinite;
}
.hero-grid .node:nth-child(7n+1) { animation-delay: 0s; }
.hero-grid .node:nth-child(7n+2) { animation-delay: 0.6s; }
.hero-grid .node:nth-child(7n+3) { animation-delay: 1.2s; }
.hero-grid .node:nth-child(7n+4) { animation-delay: 1.8s; }
.hero-grid .node:nth-child(7n+5) { animation-delay: 2.4s; }
.hero-grid .node:nth-child(7n+6) { animation-delay: 3.0s; }
.hero-grid .node:nth-child(7n)   { animation-delay: 3.6s; }
@keyframes nodeBlink {
  0%, 100% { opacity: 0; }
  50%      { opacity: 0.55; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-grid .node { animation: none; opacity: 0.35; }
}
.hero > *:not(.hero-canvas) { position: relative; z-index: 1; }

/* ─── Cine icons (line-art SVGs) ────────────────────────────────────────── */
.cine-icon {
  width: 56px; height: 56px;
  color: var(--accent-deep);
  margin-bottom: var(--s-3);
}
.cine-icon svg { width: 100%; height: 100%; display: block; stroke: currentColor; fill: none; stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; }

/* ─── Video placeholder card ────────────────────────────────────────────── */
.video-card {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-raised);
  border: 1px solid var(--divider);
  border-radius: var(--r-card);
  margin-top: var(--s-5);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 240ms ease;
}
.video-card:hover { border-color: var(--accent); border-style: solid; }
.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 12px, var(--grid-line) 12px 13px);
  pointer-events: none;
}
.video-play {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg);
}
.video-play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  transition: background-color 240ms ease, color 240ms ease;
}
.video-card:hover .video-play-btn { background: var(--accent); color: var(--bg); }
.video-play-btn svg { width: 16px; height: 16px; fill: currentColor; margin-left: 2px; }

/* ─── Integrations strip ────────────────────────────────────────────────── */
.integrations {
  padding: var(--s-9) var(--gutter);
  border-bottom: 1px solid var(--divider);
}
.int-head {
  max-width: var(--max-w);
  margin: 0 auto var(--s-7);
  display: grid;
  gap: var(--s-3);
}
.int-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--t-h-lg);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: var(--s-4) 0 0;
  color: var(--fg);
  max-width: 22ch;
}
@media (min-width: 900px) {
  .int-headline { font-size: var(--t-display); line-height: 0.95; }
}
.int-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--divider);
}
@media (min-width: 640px)  { .int-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { .int-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1200px) { .int-grid { grid-template-columns: repeat(6, 1fr); } }
.int-cell {
  padding: var(--s-5) var(--s-4);
  border-bottom: 1px solid var(--divider);
  border-right: 1px solid var(--divider);
  display: flex;
  align-items: center;
  gap: var(--s-3);
  min-height: 80px;
  transition: background-color 200ms ease;
}
.int-cell:hover { background: var(--grid-line); }
.int-mark {
  width: 22px; height: 22px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.int-mark img, .int-mark svg { width: 100%; height: 100%; display: block; object-fit: contain; }
.int-mark svg { stroke: currentColor; fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; color: var(--accent-deep); }
html[data-theme="dark"] .int-mark img { filter: brightness(1.15); }
.int-cell.coming .int-mark img { opacity: 0.55; }
.int-cell.coming .int-mark { color: var(--fg-muted); }
.int-name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
}
.int-cell.coming .int-name { color: var(--fg-muted); }
.int-cell.coming::after {
  content: "soon";
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-left: auto;
}

/* ─── Founder avatar ────────────────────────────────────────────────────── */
.founder-grid { align-items: start; }
.founder-aside { display: flex; flex-direction: column; gap: var(--s-5); }
.founder-avatar {
  width: 120px; height: 120px;
  border: 1px solid var(--fg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: var(--fg);
  background: transparent;
  margin-top: var(--s-4);
}
@media (min-width: 900px) {
  .founder-avatar { width: 160px; height: 160px; font-size: 48px; }
}

/* ─── Image-friendly card frame ─────────────────────────────────────────── */
.frame {
  border: 1px solid var(--divider);
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--bg-raised);
}
.frame img, .frame video {
  display: block;
  width: 100%;
  height: auto;
}

/* ═══════════════════════════════════════════════════════════════════════
   VERCEL/SLACK/APPLE LANE — clean modern overrides
   ═══════════════════════════════════════════════════════════════════════ */

/* Section eyebrow — plain mono caps label, no pill, no dot */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: var(--s-4);
  background: none;
  border: none;
  padding: 0;
}

/* Button small variant for nav */
.btn-sm {
  font-size: 14px;
  padding: 8px 14px;
  font-weight: 500;
}

/* Nav refinement */
.nav-link {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.005em;
  color: var(--fg);
  opacity: 0.7;
  transition: opacity 200ms ease;
}
.nav-link:hover { opacity: 1; color: var(--fg); }
.nav-links { gap: var(--s-3); }
@media (max-width: 900px) {
  .nav-links .nav-link:not(.nav-cta) { display: none; }
  .nav-links .btn { padding: 8px 12px; font-size: 13px; }
}
@media (max-width: 640px) {
  .nav-links .btn.btn-ghost { display: none; }
}

/* Theme toggle refinement */
.theme-toggle {
  width: 32px; height: 32px;
  border: 1px solid var(--divider);
  background: var(--bg-raised);
}

/* Stats refinement — cleaner */
.stats {
  padding: var(--s-8) var(--gutter);
  border-bottom: 1px solid var(--divider);
  background: var(--bg-raised);
}
.stat {
  border-left: none;
  padding: 0;
  text-align: center;
}
@media (min-width: 720px) {
  .stat:first-child { padding-left: 0; }
  .stats-row .stat { border-left: none; }
}
@media (max-width: 719px) {
  .stat { border-top: 1px solid var(--divider); padding-top: var(--s-4); text-align: left; }
  .stat:first-child { border-top: none; padding-top: 0; }
}
.stat-num {
  font-size: clamp(48px, 6vw, 64px);
  font-weight: 600;
  letter-spacing: -0.03em;
}

/* Product moment — cleaner */
.product-moment {
  padding: var(--s-10) var(--gutter);
  border-bottom: 1px solid var(--divider);
}
.pm-grid { gap: var(--s-8); align-items: center; }
.pm-headline {
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
}
.pm-body { color: var(--fg-muted); font-size: 18px; opacity: 1; }

/* Telegram card — Vercel-style clean frame */
.telegram-card {
  background: var(--bg-raised);
  border: 1px solid var(--divider);
  border-radius: var(--r-card);
  padding: var(--s-5);
  box-shadow: 0 4px 24px -8px rgba(10, 10, 10, 0.08);
}
html[data-theme="dark"] .telegram-card {
  box-shadow: 0 4px 24px -8px rgba(0, 0, 0, 0.6);
}
.tg-header {
  border-bottom: 1px solid var(--divider);
}
.tg-meta {
  border: 1px solid var(--divider);
  background: var(--bg);
  border-radius: 8px;
}
.tg-btn {
  border-radius: 8px;
  border: 1px solid var(--divider);
  font-family: var(--font-display);
  text-transform: none;
  letter-spacing: -0.005em;
  font-weight: 500;
  font-size: 13px;
}
.tg-review { background: var(--action); color: var(--action-fg); border-color: var(--action); }

/* Video card — cleaner */
.video-card {
  background: var(--bg-raised);
  border: 1px solid var(--divider);
  border-style: solid;
}
.video-card::before { display: none; }
.video-card:hover { border-style: solid; }
.video-play-btn {
  border: 1px solid var(--fg);
  color: var(--fg);
}
.video-card:hover .video-play-btn { background: var(--fg); color: var(--bg); }
.video-play {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.005em;
  color: var(--fg);
}

/* ─── FEATURES section (replaces cine) ──────────────────────────────────── */
.features {
  padding: var(--s-10) var(--gutter);
  border-bottom: 1px solid var(--divider);
}
.features-head {
  max-width: var(--max-w);
  margin: 0 auto var(--s-8);
  text-align: center;
}
.features-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0 auto;
  max-width: 22ch;
  color: var(--fg);
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  max-width: var(--max-w);
  margin: 0 auto;
}
@media (min-width: 720px)  { .features-grid { grid-template-columns: 1fr 1fr; gap: var(--s-5); } }
@media (min-width: 1100px) { .features-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.feature {
  padding: var(--s-5);
  background: var(--bg-raised);
  border: 1px solid var(--divider);
  border-radius: var(--r-card);
  transition: border-color 200ms ease, transform 200ms ease;
}
.feature:hover {
  border-color: var(--fg);
  transform: translateY(-2px);
}
.feature-icon {
  width: 56px; height: 56px;
  margin-bottom: var(--s-4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 193, 7, 0.14);
  border: 1px solid rgba(255, 193, 7, 0.35);
  border-radius: 14px;
  color: var(--accent-deep);
  transition: transform 240ms ease, background-color 240ms ease;
}
html[data-theme="dark"] .feature-icon {
  background: rgba(255, 193, 7, 0.10);
  border-color: rgba(255, 193, 7, 0.25);
}
.feature:hover .feature-icon { transform: scale(1.06); background: rgba(255, 193, 7, 0.22); }
.feature-icon svg {
  width: 28px; height: 28px; display: block;
  stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.feature-icon svg .fill-accent { fill: var(--accent); stroke: none; }
.feature-icon svg .stroke-deep { stroke: var(--fg); }
.feature-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0 0 var(--s-2);
  color: var(--fg);
}
.feature-body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0;
}

/* ─── Integrations refinement ───────────────────────────────────────────── */
.integrations { padding: var(--s-10) var(--gutter); }
.int-head { text-align: center; margin-bottom: var(--s-8); }
.int-head .section-eyebrow { margin-left: auto; margin-right: auto; }
.int-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 auto;
  max-width: 24ch;
}
.int-grid {
  border: 1px solid var(--divider);
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--bg-raised);
  max-width: var(--max-w);
  margin: 0 auto;
}
.int-cell {
  border-bottom: 1px solid var(--divider);
  border-right: 1px solid var(--divider);
  background: var(--bg-raised);
}
.int-cell:hover { background: var(--bg); }
.int-mark { color: var(--accent-deep); }
.int-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-transform: none;
}
.int-cell.coming::after {
  content: "soon";
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--accent-deep);
  text-transform: lowercase;
}

/* ─── Pull quote refinement ─────────────────────────────────────────────── */
.pull-quote {
  padding: var(--s-10) var(--gutter);
  border-bottom: 1px solid var(--divider);
  text-align: center;
}
.pq-inner { max-width: 760px; margin: 0 auto; }
.pq-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 3.5vw, 40px);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

/* ─── Why now refinement ────────────────────────────────────────────────── */
.why { padding: var(--s-10) var(--gutter); }
.why-headline, .trust-headline, .aud-headline, .founder-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.why-item {
  border-top: 1px solid var(--divider);
}
.why-item-num {
  color: var(--accent-deep);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-transform: none;
}
.why-item-text { color: var(--fg-muted); opacity: 1; }

/* Trust list */
.trust { padding: var(--s-10) var(--gutter); }
.trust-list li {
  border-top: 1px solid var(--divider);
  color: var(--fg);
  grid-template-columns: 32px 1fr;
}
.trust-list li::before {
  color: var(--accent-deep);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -0.005em;
}

/* Audience refinement */
.audience { padding: var(--s-10) var(--gutter); }
.aud-block { border-top: 1px solid var(--divider); }
.aud-block-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--accent-deep);
}
.aud-block.not .aud-block-label { color: var(--fg-muted); }
.aud-block p { color: var(--fg-muted); opacity: 1; }

/* Founder refinement */
.founder { padding: var(--s-10) var(--gutter); }
.founder-avatar {
  border: 1px solid var(--divider);
  background: var(--bg-raised);
}
.founder-body p { color: var(--fg-muted); opacity: 1; }
.founder-marks { border-top: 1px solid var(--divider); }
.founder-mark {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--fg-muted);
}
.founder-mark strong {
  color: var(--fg);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
}

/* Waitlist refinement */
.waitlist { padding: var(--s-10) var(--gutter); background: var(--bg-raised); border-bottom: none; text-align: center; }
.wl-inner { text-align: center; }
.wl-inner .section-eyebrow { margin-left: auto; margin-right: auto; }
.wl-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.wl-intro {
  color: var(--fg-muted);
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
}
.tally-wrap {
  background: var(--bg);
  border: 1px solid var(--divider);
  border-radius: var(--r-card);
  padding: var(--s-4);
  max-width: 520px;
  margin: 0 auto;
}

/* Footer refinement */
footer {
  padding: var(--s-7) var(--gutter);
  border-top: 1px solid var(--divider);
  background: var(--bg);
}
.footer-line {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--fg-muted);
}
.footer-line a {
  border-bottom: none;
  text-decoration: underline;
  text-decoration-color: var(--divider);
  text-underline-offset: 4px;
}
.footer-line a:hover { color: var(--fg); text-decoration-color: var(--fg); }

/* Section base padding cleanup */
.section { border-bottom: 1px solid var(--divider); }

/* ─── Vision section (canonical Paragraph 2) ────────────────────────────── */
.vision {
  padding: var(--s-10) var(--gutter);
  border-bottom: 1px solid var(--divider);
  text-align: center;
  background: var(--bg);
}
.vision-inner {
  max-width: 880px;
  margin: 0 auto;
}
.vision-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0 auto var(--s-5);
  max-width: 18ch;
  color: var(--fg);
}
.vision-body {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0 auto;
  max-width: 60ch;
}
.vision .section-eyebrow { margin-left: auto; margin-right: auto; }

/* Reveal-on-scroll motion */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(12px); transition: opacity 500ms ease, transform 500ms ease; }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }
}

/* ─── More moments (first-person brain scenarios) ───────────────────────── */
.moments {
  padding: var(--s-10) var(--gutter);
  border-bottom: 1px solid var(--divider);
}
.moments-head {
  max-width: var(--max-w);
  margin: 0 auto var(--s-8);
  text-align: center;
}
.moments-head .section-eyebrow { margin-left: auto; margin-right: auto; }
.moments-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0 auto;
  max-width: 24ch;
  color: var(--fg);
}
.moments-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  max-width: var(--max-w);
  margin: 0 auto;
}
@media (min-width: 720px) { .moments-grid { grid-template-columns: 1fr 1fr; } }
.moment {
  padding: var(--s-5);
  background: var(--bg-raised);
  border: 1px solid var(--divider);
  border-radius: var(--r-card);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  transition: border-color 200ms ease, transform 200ms ease;
}
.moment:hover { border-color: var(--fg); transform: translateY(-2px); }
.moment-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 4px 10px;
  border: 1px solid var(--divider);
  border-radius: var(--r-btn-pill);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--fg-muted);
  background: var(--bg);
}
.moment-tag::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--accent);
  display: inline-block;
}
.moment-msg {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin: 0;
}
.moment-foot {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
  border-top: 1px solid var(--divider);
  padding-top: var(--s-3);
  margin-top: auto;
}

/* ─── Trust ladder · radial orbital timeline ────────────────────────────── */
.orbital-section {
  padding: var(--s-10) var(--gutter);
  border-bottom: 1px solid var(--divider);
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.orbital-head {
  max-width: 760px;
  margin: 0 auto var(--s-8);
  position: relative;
  z-index: 5;
}
.orbital-head .section-eyebrow { margin-left: auto; margin-right: auto; }
.orbital-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0 auto var(--s-3);
  max-width: 22ch;
  color: var(--fg);
}
.orbital-sub {
  font-size: 15px;
  color: var(--fg-muted);
  margin: 0 auto;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.orbital-stage {
  position: relative;
  width: 520px;
  height: 520px;
  margin: 0 auto;
  max-width: 100%;
}
@media (max-width: 640px) {
  .orbital-stage { width: 340px; height: 340px; }
}

/* Center brain — yellow core with pulsing rings */
.orbital-center {
  position: absolute;
  top: 50%; left: 50%;
  width: 56px; height: 56px;
  margin: -28px;
  z-index: 10;
}
.orbital-core {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: orbital-corePulse 2.6s ease-in-out infinite;
}
.orbital-core-inner {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--bg);
  opacity: 0.85;
}
.orbital-ping {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0.6;
  animation: orbital-ping 2.6s ease-out infinite;
}
.orbital-ping-2 { inset: -22px; animation-delay: 1s; opacity: 0.4; }
@keyframes orbital-ping {
  0%   { transform: scale(0.5); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes orbital-corePulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(0.94); }
}

/* Orbit ring outline */
.orbital-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 420px; height: 420px;
  margin: -210px;
  border-radius: 50%;
  border: 1px dashed var(--divider);
}
@media (max-width: 640px) {
  .orbital-ring { width: 280px; height: 280px; margin: -140px; }
}

/* Nodes positioned by JS */
.orbital-nodes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.orbital-node {
  position: absolute;
  top: 50%; left: 50%;
  pointer-events: auto;
  cursor: pointer;
  transition: opacity 700ms ease, transform 700ms ease;
}
.orbital-node-circle {
  position: relative;
  width: 44px; height: 44px;
  margin: -22px;
  border-radius: 50%;
  background: var(--bg-raised);
  border: 1.5px solid var(--divider);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg);
  transition: background-color 300ms ease, border-color 300ms ease, color 300ms ease, transform 300ms ease;
}
.orbital-node-circle svg {
  width: 18px; height: 18px;
  stroke: currentColor; fill: none; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}
.orbital-node.is-related .orbital-node-circle {
  border-color: var(--accent);
  background: rgba(255, 193, 7, 0.08);
}
.orbital-node.is-expanded .orbital-node-circle {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0a;
  transform: scale(1.35);
  box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.2);
}
.orbital-node-label {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  white-space: nowrap;
  transition: color 300ms ease, transform 300ms ease;
}
.orbital-node.is-expanded .orbital-node-label {
  color: var(--fg);
  transform: translateX(-50%) scale(1.2);
}

/* Expanded card */
.orbital-card {
  position: absolute;
  top: 56px;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  width: 280px;
  background: var(--bg-raised);
  border: 1px solid var(--divider);
  border-radius: var(--r-card);
  padding: var(--s-4);
  text-align: left;
  opacity: 0;
  pointer-events: none;
  z-index: 200;
  box-shadow: 0 8px 24px -8px rgba(10, 10, 10, 0.18);
  transition: opacity 280ms ease, transform 280ms ease;
}
html[data-theme="dark"] .orbital-card {
  box-shadow: 0 8px 32px -8px rgba(0, 0, 0, 0.6);
}
.orbital-node.is-expanded .orbital-card {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.orbital-card-stem {
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 8px;
  background: var(--accent);
}
.orbital-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  margin-bottom: var(--s-3);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--divider);
}
.orbital-card-status {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid var(--divider);
  color: var(--fg-muted);
}
.orbital-card-status.s-active {
  color: var(--accent-deep);
  border-color: var(--accent);
  background: rgba(255, 193, 7, 0.08);
}
.orbital-card-week {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.orbital-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin: 0 0 var(--s-2);
}
.orbital-card-body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0 0 var(--s-3);
}
.orbital-card-meter {
  margin-top: var(--s-3);
  padding-top: var(--s-3);
  border-top: 1px solid var(--divider);
}
.orbital-card-meter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.orbital-card-meter-bar {
  width: 100%;
  height: 4px;
  background: var(--divider);
  border-radius: 2px;
  overflow: hidden;
}
.orbital-card-meter-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 600ms ease;
}

@media (prefers-reduced-motion: reduce) {
  .orbital-core,
  .orbital-ping,
  .orbital-node { animation: none !important; transition: none !important; }
}

/* ─── Writing index (cards) ─────────────────────────────────────────────── */
.writing {
  padding: var(--s-10) var(--gutter);
  border-bottom: 1px solid var(--divider);
}
.writing-head { max-width: var(--max-w); margin: 0 auto var(--s-8); text-align: center; }
.writing-head .section-eyebrow { margin-left: auto; margin-right: auto; }
.writing-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0 auto var(--s-4);
  max-width: 22ch;
  color: var(--fg);
}
.writing-intro {
  font-size: 17px;
  line-height: 1.5;
  color: var(--fg-muted);
  max-width: 52ch;
  margin: 0 auto;
}
.writing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  max-width: var(--max-w);
  margin: 0 auto;
}
@media (min-width: 720px)  { .writing-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .writing-grid { grid-template-columns: 1fr 1fr 1fr; } }
.article-card {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding: var(--s-5);
  background: var(--bg-raised);
  border: 1px solid var(--divider);
  border-radius: var(--r-card);
  text-decoration: none;
  color: inherit;
  transition: border-color 200ms ease, transform 200ms ease, background-color 200ms ease;
  min-height: 240px;
}
.article-card:hover {
  border-color: var(--fg);
  transform: translateY(-2px);
  background: var(--bg);
}
.article-card-coming { opacity: 0.55; cursor: default; pointer-events: none; }
.article-card-meta { display: flex; align-items: center; gap: var(--s-3); }
.article-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid var(--divider);
  border-radius: var(--r-btn-pill);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  color: var(--fg-muted);
  background: var(--bg);
}
.article-card-tag::before { content: ""; width: 5px; height: 5px; background: var(--accent); display: inline-block; }
.article-card-date { font-family: var(--font-display); font-size: 12px; font-weight: 500; color: var(--fg-muted); }
.article-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin: 0;
}
.article-card-dek { font-size: 15px; line-height: 1.55; color: var(--fg-muted); margin: 0; flex-grow: 1; }
.article-card-cta {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
  margin-top: auto;
  padding-top: var(--s-3);
  border-top: 1px solid var(--divider);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 200ms ease;
}
.article-card:hover .article-card-cta { color: var(--accent-deep); }
.article-card-cta-muted { color: var(--fg-muted); }

/* ─── Article page (long-form reading) ──────────────────────────────────── */
.article-page { padding: 120px var(--gutter) var(--s-10); background: var(--bg); }
.article-back {
  display: block;
  max-width: 720px;
  margin: 0 auto var(--s-6);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
}
.article-back:hover { color: var(--fg); }
.article-header {
  max-width: 720px;
  margin: 0 auto var(--s-8);
  padding-bottom: var(--s-7);
  border-bottom: 1px solid var(--divider);
}
.article-meta { display: flex; align-items: center; gap: var(--s-3); margin-bottom: var(--s-5); flex-wrap: wrap; }
.article-meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid var(--divider);
  border-radius: var(--r-btn-pill);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  color: var(--fg-muted);
  background: var(--bg-raised);
}
.article-meta-tag::before { content: ""; width: 5px; height: 5px; background: var(--accent); display: inline-block; }
.article-meta-date,
.article-meta-time { font-family: var(--font-display); font-size: 12px; font-weight: 500; color: var(--fg-muted); }
.article-meta-sep { color: var(--fg-muted); opacity: 0.4; }
.article-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--fg);
  margin: 0 0 var(--s-5);
}
.article-dek {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
  color: var(--fg-muted);
  margin: 0 0 var(--s-6);
  max-width: 60ch;
}
.article-byline { font-family: var(--font-display); font-size: 14px; font-weight: 500; color: var(--fg); margin: 0; }
.article-byline span { color: var(--fg-muted); }
.article-body { max-width: 720px; margin: 0 auto; }
.article-body p { font-size: 18px; line-height: 1.75; color: var(--fg); margin: 0 0 var(--s-5); }
.article-body h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.5vw, 28px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin: var(--s-9) 0 var(--s-4);
  padding-top: var(--s-7);
  border-top: 1px solid var(--divider);
}
.article-body h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.article-body blockquote {
  margin: var(--s-6) 0;
  padding: var(--s-5);
  background: var(--bg-raised);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--fg);
}
.article-body blockquote p { margin: 0; font-size: inherit; line-height: inherit; color: inherit; }
.article-body strong { font-weight: 600; color: var(--fg); }
.article-body em { font-style: italic; color: var(--fg-muted); }
.article-body hr { border: none; border-top: 1px solid var(--divider); margin: var(--s-8) 0; }
.article-end {
  max-width: 720px;
  margin: var(--s-9) auto 0;
  padding-top: var(--s-7);
  border-top: 1px solid var(--divider);
}
.article-end-cta {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding: var(--s-6);
  background: var(--bg-raised);
  border: 1px solid var(--divider);
  border-radius: var(--r-card);
  text-align: center;
}
.article-end-cta h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--fg);
}
.article-end-cta p { font-size: 15px; color: var(--fg-muted); margin: 0; }
.article-end-cta .btn { align-self: center; margin-top: var(--s-2); }

/* ─── FAQ ───────────────────────────────────────────────────────────────── */
.faq {
  padding: var(--s-10) var(--gutter);
  border-bottom: 1px solid var(--divider);
}
.faq-head {
  max-width: var(--max-w);
  margin: 0 auto var(--s-8);
  text-align: center;
}
.faq-head .section-eyebrow { margin-left: auto; margin-right: auto; }
.faq-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0 auto;
  max-width: 22ch;
  color: var(--fg);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--divider);
}
.faq-item {
  border-bottom: 1px solid var(--divider);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--s-5) 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  transition: color 200ms ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  color: var(--fg-muted);
  transition: transform 240ms ease, color 200ms ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary::after { content: "−"; color: var(--fg); }
.faq-item summary:hover { color: var(--accent-deep); }
.faq-item p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0 0 var(--s-5);
  max-width: 64ch;
}


