/* =====================================================
   EditSwitch — stylesheet
   Editorial / cinematic / post-production studio voice
   ===================================================== */

:root {
  /* Palette: deep ink, warm cream, cinematic amber */
  --ink-900: #0E0E10;       /* primary background */
  --ink-800: #14141A;       /* card / surface */
  --ink-700: #1C1C24;       /* subtle surface */
  --ink-600: #2A2A33;       /* lines */
  --ink-500: #3A3A45;       /* muted lines */
  --paper:   #F6F1E7;       /* warm cream text */
  --paper-dim: #C9C2B3;     /* secondary text */
  --paper-mute: #8A8579;    /* muted text */
  --amber:   #E8A24C;       /* accent: timeline / playhead / highlight */
  --amber-deep: #C8862F;
  --rule:    rgba(246, 241, 231, 0.12);

  /* Type */
  --ff-display: "Fraunces", "Iowan Old Style", "Georgia", serif;
  --ff-body:    "Inter Tight", "Inter", system-ui, -apple-system, sans-serif;
  --ff-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Scale */
  --text-xs:   12px;
  --text-sm:   14px;
  --text-base: 16px;
  --text-lg:   18px;
  --text-xl:   clamp(22px, 2.4vw, 28px);
  --text-2xl:  clamp(28px, 3.6vw, 44px);
  --text-3xl:  clamp(40px, 5.4vw, 68px);
  --text-hero: clamp(44px, 6.6vw, 88px);

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  --radius-sm: 4px;
  --radius:    8px;

  --container: 1200px;
  --container-narrow: 880px;
}

:root[data-theme="light"] {
  --ink-900: #FFFFFF;
  --ink-800: #F7F4EF;
  --ink-700: #EEE8DF;
  --ink-600: #D8D0C3;
  --ink-500: #BEB4A6;
  --paper: #191817;
  --paper-dim: #4D4943;
  --paper-mute: #777166;
  --amber: #BF6B20;
  --amber-deep: #985017;
  --rule: rgba(25, 24, 23, 0.14);
}

/* =====================================================
   Reset & base
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: var(--text-base);
  line-height: 1.55;
  color: var(--paper);
  background: var(--ink-900);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.theme-ready {
  transition: background-color .28s ease, color .28s ease;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.text-link {
  color: var(--amber);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}
.text-link:hover {
  color: #F1B362;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.max-prose { max-width: 62ch; }

/* =====================================================
   Typography utilities
   ===================================================== */
.kicker {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
}
.reel-mark {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper-mute);
}
.section-num {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--amber);
  display: inline-block;
}
.section-name {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--paper-mute);
  text-transform: uppercase;
}

/* =====================================================
   Header
   ===================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 14, 16, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.is-scrolled {
  background: rgba(14, 14, 16, 0.92);
}
:root[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.84);
}
:root[data-theme="light"] .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: var(--space-6);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  min-width: 0;
}
.brand-logo-img {
  width: 46px;
  height: 40px;
  object-fit: contain;
  flex: 0 0 auto;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}
.brand-line-1 {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.035em;
  color: var(--paper);
}
.brand-line-1 span {
  color: #8F7BE4;
}
.brand-line-2 {
  font-family: var(--ff-body);
  font-size: 11px;
  letter-spacing: 0.015em;
  text-transform: none;
  color: var(--paper-mute);
  max-width: 360px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 32px);
  font-size: var(--text-sm);
}
.primary-nav a {
  color: var(--paper-dim);
  transition: color .2s ease;
}
.primary-nav a:hover { color: var(--paper); }

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  color: var(--paper-dim);
  font-size: var(--text-sm);
  white-space: nowrap;
}
.theme-toggle-track {
  width: 42px;
  height: 22px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: rgba(246, 241, 231, 0.08);
  position: relative;
  transition: background .22s ease, border-color .22s ease;
}
.theme-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--amber);
  box-shadow: 0 0 0 1px rgba(0,0,0,.1);
  transition: transform .22s ease, background .22s ease;
}
.theme-toggle[aria-pressed="true"] .theme-toggle-track {
  background: rgba(191, 107, 32, 0.15);
  border-color: rgba(191, 107, 32, 0.45);
}
.theme-toggle[aria-pressed="true"] .theme-toggle-thumb {
  transform: translateX(20px);
}
.theme-toggle:hover {
  color: var(--paper);
}

.nav-cta {
  border: 1px solid var(--amber);
  color: var(--amber) !important;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: background .2s ease, color .2s ease;
}
.nav-cta:hover {
  background: var(--amber);
  color: var(--ink-900) !important;
}

.menu-toggle {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--paper);
  transition: transform .25s ease, opacity .2s ease;
}

@media (max-width: 860px) {
  .brand-logo-img {
    width: 40px;
    height: 36px;
  }
  .brand-line-1 {
    font-size: 18px;
  }
  .brand-line-2 {
    max-width: 190px;
  }
  .primary-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: var(--space-6);
    background: var(--ink-900);
    border-bottom: 1px solid var(--rule);
    transform: translateY(-130%);
    transition: transform .35s cubic-bezier(0.16,1,0.3,1);
  }
  .primary-nav.is-open { transform: translateY(0); }
  .primary-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--rule);
    font-size: var(--text-base);
  }
  .primary-nav .nav-cta {
    margin-top: var(--space-4);
    width: auto;
    border-bottom: 1px solid var(--amber);
  }
  .theme-toggle {
    margin-left: auto;
  }
  .theme-toggle-text {
    display: none;
  }
  .menu-toggle { display: flex; }
}

@media (max-width: 430px) {
  .brand-line-2 {
    display: none;
  }
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform .18s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber);
  color: var(--ink-900);
  border-color: var(--amber);
}
.btn-primary:hover {
  background: #F1B362;
  border-color: #F1B362;
  transform: translateY(-1px);
}
.btn-ghost {
  border-color: var(--ink-500);
  color: var(--paper);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--paper);
}
.btn-large { padding: 16px 26px; font-size: var(--text-base); }

/* =====================================================
   Hero
   ===================================================== */
.hero {
  position: relative;
  padding: clamp(80px, 12vw, 160px) 0 clamp(60px, 9vw, 120px);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.hero::before {
  /* faint grain / film texture overlay */
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 60% 80% at 80% 10%, rgba(232,162,76,0.08), transparent 60%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(232,162,76,0.04), transparent 70%);
  pointer-events: none;
}
:root[data-theme="light"] .hero::before {
  background-image:
    radial-gradient(ellipse 60% 80% at 80% 10%, rgba(143,123,228,0.12), transparent 62%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(191,107,32,0.08), transparent 70%);
}
.hero-inner { position: relative; z-index: 1; }
.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-10);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--rule);
}
.hero-title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: var(--text-hero);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 var(--space-8) 0;
  max-width: 18ch;
  color: var(--paper);
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--paper-dim);
}
.hero-lede {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: var(--paper-dim);
  max-width: 60ch;
  margin: 0 0 var(--space-10) 0;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.hero-credibility {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-6);
  max-width: 860px;
  margin-bottom: var(--space-16);
  padding: var(--space-5) var(--space-6);
  border: 1px solid var(--rule);
  background:
    linear-gradient(90deg, rgba(232,162,76,0.08), transparent 46%),
    rgba(246, 241, 231, 0.025);
}
:root[data-theme="light"] .hero-credibility {
  background:
    linear-gradient(90deg, rgba(143,123,228,0.08), transparent 48%),
    rgba(255, 255, 255, 0.62);
}
.hero-credibility-mark {
  min-width: 78px;
  padding-right: var(--space-5);
  border-right: 1px solid var(--rule);
}
.hero-credibility-mark span {
  display: block;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-mute);
}
.hero-credibility-mark strong {
  display: block;
  font-family: var(--ff-display);
  font-size: var(--text-xl);
  line-height: 1;
  color: var(--paper);
  font-weight: 500;
}
.hero-credibility p {
  margin: 0;
  color: var(--paper-dim);
  line-height: 1.5;
  max-width: 62ch;
}
.hero-credibility-link {
  color: var(--amber);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-credibility-link:hover {
  color: var(--paper);
}

.hero-strip {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--space-8);
  align-items: center;
  padding-top: var(--space-8);
  border-top: 1px solid var(--rule);
}
.strip-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-mute);
}
.platform-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.strip-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  list-style: none;
  padding: 0; margin: 0;
}
.strip-list li {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: var(--text-lg);
  color: var(--paper);
  position: relative;
}
.strip-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: calc(var(--space-8) * -0.5 - 2px);
  top: 50%;
  width: 4px; height: 4px;
  background: var(--amber);
  transform: translateY(-50%);
  border-radius: 50%;
}
.platform-icons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}
.app-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: rgba(246, 241, 231, 0.035);
  border: 1px solid rgba(246, 241, 231, 0.14);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}
:root[data-theme="light"] .app-icon {
  background: #FFFFFF;
  border-color: rgba(25, 24, 23, 0.12);
  box-shadow: 0 12px 28px rgba(25, 24, 23, 0.10);
}
.app-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
@media (max-width: 720px) {
  .hero-strip { grid-template-columns: 1fr; gap: var(--space-4); }
  .platform-content { gap: var(--space-4); }
  .app-icon { width: 48px; height: 48px; border-radius: 12px; }
  .hero-credibility {
    grid-template-columns: 1fr;
    align-items: start;
    gap: var(--space-4);
  }
  .hero-credibility-mark {
    border-right: none;
    padding-right: 0;
    display: flex;
    align-items: baseline;
    gap: var(--space-2);
  }
}

/* timecode rail across bottom of hero */
.timecode-rail {
  margin-top: var(--space-12);
  display: flex;
  justify-content: space-between;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--paper-mute);
  border-top: 1px dashed var(--rule);
  padding-top: var(--space-3);
  padding-left: clamp(20px, 4vw, 48px);
  padding-right: clamp(20px, 4vw, 48px);
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 720px) {
  .timecode-rail span:nth-child(n+5) { display: none; }
}

/* =====================================================
   Generic section
   ===================================================== */
.section {
  padding: clamp(72px, 10vw, 140px) 0;
  border-bottom: 1px solid var(--rule);
  scroll-margin-top: 96px;
}
.section-title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: var(--text-2xl);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin: 0 0 var(--space-6) 0;
  max-width: 22ch;
}
.section-title.big {
  font-size: var(--text-3xl);
  max-width: 24ch;
}
.lede {
  font-size: var(--text-lg);
  line-height: 1.55;
  color: var(--paper-dim);
  margin: 0 0 var(--space-8) 0;
}

.section-head {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-bottom: var(--space-6);
  margin-bottom: var(--space-8);
  border-bottom: 1px solid var(--rule);
}

/* two-col layout for problem / outcomes / about */
.two-col {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.col-label {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding-top: var(--space-2);
}
.col-label .section-num,
.col-label .section-name { display: block; }
.col-label::before {
  content: "";
  display: block;
  width: 40px; height: 1px;
  background: var(--amber);
  margin-bottom: var(--space-3);
}
@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; gap: var(--space-8); }
  .col-label { position: static; }
}

/* =====================================================
   Problem section
   ===================================================== */
.problem-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr;
}
.problem-list li {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: var(--space-6);
  padding: var(--space-6) 0;
  border-top: 1px solid var(--rule);
}
.problem-list li:last-child { border-bottom: 1px solid var(--rule); }
.problem-tag {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  padding-top: 2px;
}
.problem-list li p {
  margin: 0;
  font-size: var(--text-base);
  color: var(--paper-dim);
  line-height: 1.6;
}
@media (max-width: 720px) {
  .problem-list li { grid-template-columns: 1fr; gap: var(--space-2); }
}

/* =====================================================
   Program grid
   ===================================================== */
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: var(--space-10);
}
.prog-card {
  background: var(--ink-900);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  min-height: 200px;
  transition: background .25s ease;
}
.prog-card:hover { background: var(--ink-800); }
.prog-card h3 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: var(--text-xl);
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--paper);
}
.prog-card p {
  margin: 0;
  font-size: var(--text-base);
  color: var(--paper-dim);
  line-height: 1.55;
}
@media (max-width: 960px) { .program-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .program-grid { grid-template-columns: 1fr; } }

/* =====================================================
   Migration paths
   ===================================================== */
.paths-list {
  list-style: none;
  padding: 0;
  margin: var(--space-10) 0 0;
  counter-reset: pathitem;
}
.path-row {
  padding: var(--space-8) 0;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: start;
  position: relative;
  counter-increment: pathitem;
  transition: background .25s ease;
}
.path-row::before {
  content: "0" counter(pathitem);
  position: absolute;
  top: var(--space-8);
  left: 0;
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--paper-mute);
  letter-spacing: 0.18em;
  display: none; /* keep clean on small; visible on wider */
}
.path-row:last-child { border-bottom: 1px solid var(--rule); }
.path-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: var(--text-2xl);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--paper);
}
.path-from { color: var(--paper); }
.path-arrow {
  color: var(--amber);
  font-weight: 400;
}
.path-to { color: var(--paper); }
.path-row-soft .path-from,
.path-row-soft .path-to { color: var(--paper-dim); }
.path-body {
  margin: 0;
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--paper-dim);
}

/* =====================================================
   Legacy Final Cut Pro page
   ===================================================== */
.legacy-hero {
  position: relative;
  padding: clamp(88px, 12vw, 168px) 0 clamp(64px, 9vw, 128px);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(14,14,16,0.98), rgba(14,14,16,0.78)),
    repeating-linear-gradient(
      90deg,
      rgba(246,241,231,0.045) 0,
      rgba(246,241,231,0.045) 1px,
      transparent 1px,
      transparent 72px
    ),
    radial-gradient(ellipse 70% 90% at 82% 18%, rgba(232,162,76,0.12), transparent 64%),
    var(--ink-900);
}
:root[data-theme="light"] .legacy-hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98), rgba(255,255,255,0.72)),
    repeating-linear-gradient(
      90deg,
      rgba(25,24,23,0.04) 0,
      rgba(25,24,23,0.04) 1px,
      transparent 1px,
      transparent 72px
    ),
    radial-gradient(ellipse 70% 90% at 82% 18%, rgba(143,123,228,0.11), transparent 64%),
    var(--ink-900);
}
.legacy-hero::after {
  content: "FCP 7";
  position: absolute;
  right: clamp(20px, 8vw, 110px);
  bottom: clamp(24px, 6vw, 72px);
  font-family: var(--ff-mono);
  font-size: clamp(64px, 15vw, 180px);
  letter-spacing: -0.08em;
  line-height: 0.8;
  color: rgba(246, 241, 231, 0.035);
  pointer-events: none;
}
:root[data-theme="light"] .legacy-hero::after {
  color: rgba(25, 24, 23, 0.045);
}
.legacy-hero-inner {
  position: relative;
  z-index: 1;
}
.legacy-title {
  max-width: 16ch;
}
.legacy-section-alt {
  background: var(--ink-800);
}
.legacy-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: var(--space-10);
}
.legacy-proof-card {
  background: var(--ink-900);
  padding: var(--space-8);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.proof-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
}
.legacy-proof-card h3 {
  font-family: var(--ff-display);
  font-size: var(--text-xl);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin: 0;
}
.legacy-proof-card p {
  margin: 0;
  color: var(--paper-dim);
  line-height: 1.6;
}
.legacy-proof-card .text-link {
  margin-top: auto;
  font-size: var(--text-sm);
}
.legacy-consult-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: var(--space-10);
}
.legacy-card {
  background: var(--ink-800);
}
.legacy-section-alt .legacy-card {
  background: var(--ink-900);
}
.legacy-cta {
  border-top: 1px solid var(--rule);
}
@media (max-width: 960px) {
  .legacy-consult-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .legacy-proof-grid,
  .legacy-consult-grid { grid-template-columns: 1fr; }
  .legacy-proof-card { min-height: auto; }
  .legacy-hero::after { opacity: 0.8; }
}

@media (max-width: 860px) {
  .path-row { grid-template-columns: 1fr; gap: var(--space-3); }
  .path-head { font-size: var(--text-xl); }
}

/* =====================================================
   How it works
   ===================================================== */
.how-list {
  list-style: none;
  padding: 0;
  margin: var(--space-10) 0 0;
}
.how-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(24px, 5vw, 80px);
  padding: var(--space-8) 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.how-row:last-child { border-bottom: 1px solid var(--rule); }
.how-week {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  padding-top: 6px;
}
.how-detail h3 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: var(--text-xl);
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-3) 0;
  color: var(--paper);
}
.how-detail p {
  margin: 0;
  color: var(--paper-dim);
  line-height: 1.6;
  max-width: 64ch;
}
@media (max-width: 720px) {
  .how-row { grid-template-columns: 1fr; gap: var(--space-2); }
}

/* =====================================================
   Outcomes
   ===================================================== */
.outcomes-list {
  list-style: none;
  padding: 0; margin: 0;
}
.outcomes-list li {
  position: relative;
  padding: var(--space-4) 0 var(--space-4) 32px;
  border-top: 1px solid var(--rule);
  font-size: var(--text-lg);
  color: var(--paper);
  line-height: 1.5;
  font-family: var(--ff-display);
  font-weight: 400;
  letter-spacing: -0.005em;
}
.outcomes-list li:last-child { border-bottom: 1px solid var(--rule); }
.outcomes-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: var(--space-4);
  color: var(--amber);
  font-family: var(--ff-mono);
  font-size: var(--text-sm);
  line-height: 1.5;
}

/* =====================================================
   Who it's for
   ===================================================== */
.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: var(--space-10);
}
.who-card {
  background: var(--ink-900);
  padding: var(--space-8);
}
.who-card h3 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: var(--text-xl);
  margin: 0 0 var(--space-3) 0;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.who-card p {
  margin: 0;
  color: var(--paper-dim);
  font-size: var(--text-base);
  line-height: 1.6;
}
@media (max-width: 720px) { .who-grid { grid-template-columns: 1fr; } }

/* =====================================================
   About
   ===================================================== */
.section-about p {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--paper-dim);
  max-width: 62ch;
}
.authority-block {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: var(--space-8);
  margin: var(--space-8) 0;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--rule);
  border-radius: 2px;
  background:
    linear-gradient(135deg, rgba(232,162,76,0.08), transparent 34%),
    radial-gradient(ellipse 70% 100% at 100% 0%, rgba(143,123,228,0.08), transparent 58%),
    var(--ink-800);
}
:root[data-theme="light"] .authority-block {
  background:
    linear-gradient(135deg, rgba(191,107,32,0.08), transparent 34%),
    radial-gradient(ellipse 70% 100% at 100% 0%, rgba(143,123,228,0.12), transparent 58%),
    var(--ink-800);
}
.authority-copy .kicker {
  display: inline-block;
  margin-bottom: var(--space-4);
}
.authority-copy h3 {
  font-family: var(--ff-display);
  font-size: var(--text-xl);
  line-height: 1.16;
  font-weight: 500;
  color: var(--paper);
  margin: 0 0 var(--space-4) 0;
  max-width: 20ch;
}
.experience-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  margin: 0 0 var(--space-6) 0;
  background: transparent;
  border: 0;
}
.experience-stats span {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-4);
  min-height: 112px;
  background: rgba(14, 14, 16, 0.34);
  border: 1px solid var(--rule);
  color: var(--paper-mute);
  font-size: var(--text-sm);
  line-height: 1.35;
}
:root[data-theme="light"] .experience-stats span {
  background: rgba(255,255,255,0.58);
}
.experience-stats strong {
  color: var(--paper);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.section-about .authority-copy p {
  margin: 0 0 var(--space-4) 0;
  max-width: 58ch;
}
.section-about .authority-copy p:last-child {
  margin-bottom: 0;
}
.authority-links {
  display: grid;
  gap: var(--space-3);
  align-self: stretch;
  background: transparent;
  border: 0;
}
.authority-link {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-2);
  min-height: 110px;
  padding: var(--space-6) 56px var(--space-6) var(--space-8);
  background: rgba(14, 14, 16, 0.42);
  border: 1px solid var(--rule);
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
:root[data-theme="light"] .authority-link {
  background: rgba(255,255,255,0.64);
}
.authority-link:hover {
  background: var(--ink-700);
  border-color: rgba(232,162,76,0.45);
  transform: translateY(-1px);
}
.authority-link span {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-mute);
}
.authority-link strong {
  font-family: var(--ff-display);
  font-size: var(--text-lg);
  line-height: 1.15;
  font-weight: 500;
  color: var(--paper);
}
.authority-link em {
  position: absolute;
  right: var(--space-6);
  top: var(--space-5);
  color: var(--amber);
  font-style: normal;
  font-family: var(--ff-mono);
}
@media (max-width: 860px) {
  .authority-block {
    grid-template-columns: 1fr;
    padding: var(--space-6);
  }
  .experience-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .authority-link {
    min-height: 92px;
    padding-left: var(--space-6);
  }
}
@media (max-width: 560px) {
  .experience-stats {
    grid-template-columns: 1fr;
  }
  .experience-stats span {
    min-height: auto;
  }
}
.about-meta {
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid var(--rule);
  color: var(--paper-mute) !important;
  font-size: var(--text-sm) !important;
}

/* =====================================================
   Checklist (lead magnet)
   ===================================================== */
.section-checklist {
  background: var(--ink-800);
}
.checklist-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}
.checklist-art {
  color: var(--paper-mute);
  width: 200px;
  max-width: 100%;
}
.checklist-body .kicker { display: inline-block; margin-bottom: var(--space-4); }
.checklist-body .reel-mark {
  display: block;
  margin-bottom: var(--space-3);
}
.checklist-body .section-title { margin-bottom: var(--space-4); }
.checklist-body .lede { margin-bottom: var(--space-6); max-width: 56ch; }

.signup-form {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  align-items: stretch;
  max-width: 520px;
}
.signup-form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 16px;
  background: var(--ink-900);
  border: 1px solid var(--ink-600);
  border-radius: var(--radius-sm);
  color: var(--paper);
  font-size: var(--text-base);
  transition: border-color .2s ease;
}
.signup-form input:focus {
  outline: none;
  border-color: var(--amber);
}
.form-note {
  margin: var(--space-3) 0 0 0;
  font-size: var(--text-sm);
  color: var(--paper-mute);
}
.form-success {
  margin-top: var(--space-4);
  font-family: var(--ff-mono);
  font-size: var(--text-sm);
  color: var(--amber);
}
@media (max-width: 720px) {
  .checklist-inner { grid-template-columns: 1fr; gap: var(--space-8); }
  .checklist-art { width: 140px; }
}

/* =====================================================
   CTA / contact
   ===================================================== */
.section-cta {
  background:
    radial-gradient(ellipse 80% 100% at 80% 0%, rgba(232,162,76,0.10), transparent 60%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(232,162,76,0.05), transparent 70%),
    var(--ink-900);
  border-bottom: none;
}
:root[data-theme="light"] .section-cta {
  background:
    radial-gradient(ellipse 80% 100% at 80% 0%, rgba(143,123,228,0.11), transparent 60%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(191,107,32,0.08), transparent 70%),
    var(--ink-900);
}
.cta-inner {
  text-align: left;
  max-width: var(--container-narrow);
}
.cta-inner .reel-mark { display: block; margin-bottom: var(--space-4); }
.cta-title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: var(--text-3xl);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 var(--space-6) 0;
  color: var(--paper);
}
.cta-lede {
  font-size: var(--text-lg);
  color: var(--paper-dim);
  line-height: 1.55;
  margin: 0 0 var(--space-10) 0;
  max-width: 60ch;
}
.contact-form {
  display: grid;
  gap: var(--space-4);
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.grid-2 > * { min-width: 0; }
@media (max-width: 600px) { .grid-2 { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-mute);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  padding: 12px 14px;
  background: var(--ink-800);
  border: 1px solid var(--ink-600);
  border-radius: var(--radius-sm);
  color: var(--paper);
  font-size: var(--text-base);
  font-family: var(--ff-body);
  transition: border-color .2s ease;
}
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--amber);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23E8A24C' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.contact-form .btn { justify-self: start; margin-top: var(--space-2); }

/* =====================================================
   Footer
   ===================================================== */
.site-footer {
  background: var(--ink-900);
  border-top: 1px solid var(--rule);
  padding: var(--space-16) 0 var(--space-10);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-12);
  align-items: start;
}
.foot-brand { display: flex; flex-direction: column; gap: var(--space-4); }
.footer-logo-img {
  width: 58px;
  height: 52px;
  object-fit: contain;
}
.foot-tag {
  margin: 0;
  color: var(--paper-mute);
  font-size: var(--text-sm);
  max-width: 50ch;
  line-height: 1.55;
}
.foot-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  font-size: var(--text-sm);
  justify-content: flex-end;
}
.foot-nav a { color: var(--paper-dim); transition: color .2s ease; }
.foot-nav a:hover { color: var(--paper); }
.foot-meta {
  grid-column: 1 / -1;
  border-top: 1px solid var(--rule);
  padding-top: var(--space-6);
  margin-top: var(--space-6);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper-mute);
  display: flex;
  justify-content: space-between;
}
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; gap: var(--space-8); }
  .foot-nav { justify-content: flex-start; }
}

/* =====================================================
   Selection
   ===================================================== */
::selection { background: var(--amber); color: var(--ink-900); }

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