/* =================================================================
   Summit AI — v5 — Brand Green + Motion Heavy
   Summit green palette, Fraunces + Manrope mix, scroll-driven motion,
   full testimonial set, animated dashboards.
   ================================================================= */

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

:root {
  /* Summit brand DNA */
  --ink: #050505;
  --ink-02: #0a0a0a;
  --ink-03: #0e0e0e;
  --ink-04: #141414;
  --paper: #f5efe5;
  --paper-02: #ebe4d6;
  --paper-muted: #e6e0d3;
  --paper-dim: #a8a198;
  --paper-faint: rgba(245, 239, 229, 0.5);

  --rule: rgba(245, 239, 229, 0.08);
  --rule-strong: rgba(245, 239, 229, 0.18);
  --rule-green: rgba(103, 175, 68, 0.30);

  --green: #67af44;
  --green-bright: #8cff2e;
  --green-mid: #28bb67;
  --green-dark: #1a5c0e;
  --green-glow: rgba(103, 175, 68, 0.08);
  --green-glow-strong: rgba(103, 175, 68, 0.18);

  --display: 'Funnel Display', -apple-system, system-ui, sans-serif;
  --serif: 'Funnel Display', -apple-system, system-ui, sans-serif;
  --sans: 'Manrope', -apple-system, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;

  --col: 1180px;
  --col-narrow: 720px;
  --col-wide: 1360px;
  --gap: 140px;
  --gap-sm: 100px;
  --radius: 6px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'cv11';
}

/* Dot grid foundation */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(245, 239, 229, 0.02) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 1;
}

/* (Film grain overlay removed — was causing rendering issues on some browsers) */

/* ==================== SCROLL PROGRESS BAR (top thin bar) ==================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--green), var(--green-bright));
  z-index: 300;
  box-shadow: 0 0 8px var(--green-bright);
  transition: width 0.08s linear;
}

/* (Left-edge path thread replaced with centered section connectors — see .flow-connector below) */
.path-thread { display: none !important; }

/* ==================== CENTERED FLOW CONNECTORS (between sections) ==================== */
.flow-connector {
  position: relative;
  display: flex; justify-content: center;
  padding: 0;
  z-index: 5;
  pointer-events: none;
}
.flow-connector-inner {
  position: relative;
  width: 2px;
  height: 120px;
  background: linear-gradient(180deg,
    rgba(103, 175, 68, 0) 0%,
    rgba(103, 175, 68, 0.18) 20%,
    rgba(103, 175, 68, 0.35) 50%,
    rgba(103, 175, 68, 0.18) 80%,
    rgba(103, 175, 68, 0) 100%);
  border-radius: 100px;
  overflow: visible;
}
.flow-connector-pulse {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 18px var(--green-bright), 0 0 4px #fff;
  animation: flowPulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes flowPulse {
  0% { top: -10px; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: calc(100% + 10px); opacity: 0; }
}
/* Smaller connectors on mobile */
@media (max-width: 768px) {
  .flow-connector-inner { height: 80px; }
  .flow-connector-pulse { width: 6px; height: 6px; }
}

/* (Cursor glow removed — pointer-events were intermittently blocking taps on some devices) */
.cursor-glow { display: none !important; }

/* (Section rail removed — was creating visual artifacts) */
.section-rail { display: none !important; }
.section-rail-unused {
  position: fixed;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  z-index: 50;
  display: flex; flex-direction: column; gap: 18px;
  opacity: 0;
  transition: opacity 0.4s;
}
.section-rail.visible { opacity: 1; }
.rail-dot {
  display: flex; flex-direction: row-reverse; align-items: center; gap: 10px;
  color: var(--paper-dim);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.25s, gap 0.25s;
}
.rail-dot::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rule-strong);
  transition: background 0.25s, box-shadow 0.25s, transform 0.25s;
  flex-shrink: 0;
}
.rail-label {
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.25s, transform 0.25s;
  white-space: nowrap;
  background: rgba(5, 5, 5, 0.85);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--rule);
  backdrop-filter: blur(8px);
  pointer-events: none;
}
.rail-dot:hover { color: var(--paper); }
.rail-dot:hover .rail-label { opacity: 1; transform: translateX(0); }
.rail-dot.active::before { background: var(--green); box-shadow: 0 0 10px var(--green); transform: scale(1.3); }
.rail-dot.active { color: var(--green); }
/* (Label only shows on hover — not on active — keeps rail clean) */

@media (max-width: 1024px) { .section-rail { display: none; } }

.container {
  max-width: var(--col);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}
.container.narrow { max-width: var(--col-narrow); }
.container.wide { max-width: var(--col-wide); }

a { color: inherit; cursor: pointer; }

/* ==================== TICKER ==================== */
.ticker {
  overflow: hidden;
  padding: 14px 0;
  background: var(--green);
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  position: relative;
  z-index: 101;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: tickScroll 55s linear infinite;
  gap: 48px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 12px; }
.ticker-track span::before {
  content: '▲';
  font-size: 9px;
  color: var(--ink);
}
@keyframes tickScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==================== NAV ==================== */
nav {
  position: fixed;
  top: 42px; left: 0; right: 0;
  z-index: 90;
  padding: 18px 0;
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border-bottom: 1px solid var(--rule);
  transition: padding 0.3s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s;
}
nav.shrink {
  padding: 10px 0;
  background: rgba(5, 5, 5, 0.92);
}
nav.shrink .logo-text { font-size: 18px; }
nav.shrink .nav-cta { padding: 8px 16px; font-size: 12px; }
nav .container {
  max-width: var(--col-wide);
  display: flex; justify-content: space-between; align-items: center;
}

/* LOGO */
.logo {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--paper);
  text-decoration: none;
  transition: opacity 0.2s;
}
.logo:hover { opacity: 0.8; }
.logo-mark {
  width: 30px; height: 30px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(103, 175, 68, 0.25));
}
.logo-text {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  
  line-height: 1;
}
.logo-text em {
  font-style: normal;
  font-weight: 300;
  color: var(--green);
  margin-left: 3px;
}

.nav-right { display: flex; align-items: center; gap: 28px; }
.nav-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--paper-dim);
  text-transform: uppercase;
}
.nav-cta {
  font-family: var(--sans);
  font-size: 13px; font-weight: 600;
  color: var(--ink);
  background: var(--green);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 100px;
  transition: all 0.2s;
  letter-spacing: 0.01em;
  box-shadow: 0 0 20px rgba(103, 175, 68, 0.25);
}
.nav-cta:hover {
  background: var(--green-bright);
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(140, 255, 47, 0.35);
}

/* ==================== HERO ==================== */
.hero {
  padding: 200px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -300px; left: 40%;
  width: 1000px; height: 1000px;
  background: radial-gradient(circle, rgba(103, 175, 68, 0.10) 0%, rgba(103, 175, 68, 0.03) 40%, transparent 70%);
  pointer-events: none;
  animation: floatOrb 18s ease-in-out infinite;
  z-index: 0;
}
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-60px, 40px); }
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--paper-dim);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 36px;
  display: inline-flex; align-items: center; gap: 12px;
}
.hero-meta .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: pulseDot 2.5s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 12px var(--green); }
  50% { box-shadow: 0 0 22px var(--green-bright), 0 0 6px var(--green-bright); }
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 6.5vw, 100px);
  font-weight: 400;
  
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}
.hero h1 em {
  font-style: normal;
  font-weight: 400;
  color: var(--paper);
  opacity: 0.82;
}
.hero h1 .green-text {
  color: var(--green);
  font-style: normal;
  font-weight: 300;
  text-shadow: 0 0 50px rgba(103, 175, 68, 0.35);
}
.hero-sub {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--paper);
  opacity: 0.92;
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.hero-sub strong { color: var(--green); font-weight: 600; opacity: 1; }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  background: var(--green);
  color: var(--ink);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 15px; font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: all 0.25s;
  border: none; cursor: pointer;
  box-shadow: 0 0 30px rgba(103, 175, 68, 0.25), 0 4px 12px rgba(0,0,0,0.3);
}
.btn-primary:hover {
  background: var(--green-bright);
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(140, 255, 47, 0.4), 0 6px 18px rgba(0,0,0,0.4);
}
.btn-primary svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.25s; }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--rule-strong);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 15px; font-weight: 500;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-ghost:hover {
  border-color: var(--green);
  background: var(--green-glow);
  color: var(--green);
}
.hero-aside {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--paper-dim);
  text-transform: uppercase;
  margin-top: 20px;
  display: flex; align-items: center; gap: 10px;
}
.hero-aside::before { content: ''; width: 20px; height: 1px; background: var(--rule-strong); }

/* ==================== HERO VISUAL — FLOATING UI MOCKUPS ==================== */
.hero-visual {
  position: relative;
  height: 580px;
  perspective: 1200px;
}
.mock {
  position: absolute;
  background: var(--ink-02);
  border: 1px solid var(--rule-strong);
  border-radius: 12px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    0 0 40px rgba(103, 175, 68, 0.04),
    0 0 0 1px rgba(245,239,229,0.04) inset;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.mock-crm {
  top: 20px; left: 0;
  width: 380px;
  padding: 18px;
  animation: floatA 8s ease-in-out infinite;
  z-index: 3;
}
.mock-notion {
  top: 200px; right: 0;
  width: 340px;
  padding: 16px;
  animation: floatB 9s ease-in-out infinite;
  z-index: 2;
}
.mock-slack {
  bottom: 0; left: 60px;
  width: 360px;
  padding: 16px;
  animation: floatC 10s ease-in-out infinite;
  z-index: 4;
}
@keyframes floatA {
  0%, 100% { transform: translate(0, 0) rotate(-2deg); }
  50% { transform: translate(0, -14px) rotate(-2deg); }
}
@keyframes floatB {
  0%, 100% { transform: translate(0, 0) rotate(2deg); }
  50% { transform: translate(0, -10px) rotate(2deg); }
}
@keyframes floatC {
  0%, 100% { transform: translate(0, 0) rotate(-1deg); }
  50% { transform: translate(0, -8px) rotate(-1deg); }
}
.mock-header {
  display: flex; align-items: center; gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 14px;
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot.r { background: #e76e44; }
.mock-dot.y { background: #d7b66a; }
.mock-dot.g { background: var(--green); box-shadow: 0 0 6px var(--green); }
.mock-title {
  margin-left: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--paper-dim);
  text-transform: uppercase;
}
.mock-title strong { color: var(--green); font-weight: 600; }
.mock-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 11px;
  margin-bottom: 6px;
  background: var(--ink);
  border-radius: 6px;
  font-size: 11px;
  color: var(--paper-muted);
  border: 1px solid var(--rule);
  transition: transform 0.4s, border-color 0.4s;
  animation: fadeRow 0.6s cubic-bezier(0.22,1,0.36,1) backwards;
}
.mock-row:nth-child(2) { animation-delay: 0.1s; }
.mock-row:nth-child(3) { animation-delay: 0.2s; }
.mock-row:nth-child(4) { animation-delay: 0.3s; }
.mock-row:nth-child(5) { animation-delay: 0.4s; }
.mock-row:nth-child(6) { animation-delay: 0.5s; }
@keyframes fadeRow {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.mock-row.hot { border-color: rgba(231,110,68,0.35); color: #f09070; }
.mock-row.live { border-color: var(--rule-green); }
.mock-row .tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}
.mock-row.live .tag { color: var(--green); opacity: 0.9; }
.mock-metric {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 12px 10px;
  border-bottom: 1px solid var(--rule);
}
.mock-metric:last-child { border-bottom: none; }
.mock-metric .k {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--paper-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mock-metric .v {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--paper);
  font-weight: 500;
  
}
.mock-metric .v em { font-style: normal; color: var(--green); font-weight: 300; }
.mock-msg {
  display: grid; grid-template-columns: 24px 1fr; gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 11px;
  line-height: 1.4;
}
.mock-msg:last-child { border-bottom: none; }
.mock-avatar {
  width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: var(--ink);
}
.mock-avatar.o { background: linear-gradient(135deg, #e76e44, #a44020); color: var(--paper); }
.mock-msg-who { font-weight: 600; color: var(--paper); margin-right: 6px; }
.mock-msg-when { font-family: var(--mono); font-size: 9px; color: var(--paper-dim); letter-spacing: 0.1em; }
.mock-msg-body { color: var(--paper-muted); display: block; margin-top: 2px; }

/* ==================== BYLINE ROW w/ counters ==================== */
.byline {
  padding: 34px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--ink-02);
  position: relative;
  z-index: 5;
}
.byline .container {
  max-width: var(--col-wide);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.byline-item { text-align: center; position: relative; }
.byline-item:not(:last-child)::after {
  content: ''; position: absolute; right: -12px; top: 20%; bottom: 20%;
  width: 1px; background: var(--rule);
}
.byline-num {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  
  color: var(--green);
  line-height: 1;
  letter-spacing: -0.03em;
  text-shadow: 0 0 30px rgba(103, 175, 68, 0.25);
  margin-bottom: 8px;
}
.byline-num em { font-style: normal; font-weight: 500; }
.byline-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--paper-dim);
  text-transform: uppercase;
}

/* ==================== CHAPTER MARKERS ==================== */
.chapter { padding: var(--gap) 0; position: relative; }
.chapter-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.chapter-label::after {
  content: ''; flex: 1; height: 1px;
  background: var(--rule); max-width: 80px;
}
.chapter-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5.2vw, 72px);
  font-weight: 400;
  
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
  max-width: 880px;
}
.chapter-title em { font-style: normal; font-weight: 500; color: var(--paper); opacity: 0.82; }
.chapter-title .green-text {
  color: var(--green);
  font-style: normal;
  font-weight: 300;
  text-shadow: 0 0 40px rgba(103, 175, 68, 0.25);
}
.chapter-lede {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
  color: var(--paper);
  opacity: 0.82;
  max-width: 680px;
  font-weight: 400;
  margin-bottom: 44px;
  font-style: normal;
  letter-spacing: -0.005em;
}

/* ==================== MANIFESTO (cream breakout) ==================== */
.manifesto {
  padding: var(--gap) 0;
  background: var(--paper);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.05'/></svg>");
  pointer-events: none;
  mix-blend-mode: multiply;
}
.manifesto-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.manifesto-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--green-dark);
  text-transform: uppercase;
  margin-bottom: 32px;
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 600;
}
.manifesto-label::before,
.manifesto-label::after {
  content: '';
  width: 40px; height: 1px;
  background: var(--green-dark);
  opacity: 0.5;
}
.manifesto h2 {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 400;
  
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 40px;
}
.manifesto h2 em { font-style: normal; font-weight: 500; color: var(--green-dark); }
.manifesto-body {
  font-family: var(--sans);
  font-size: 19px;
  line-height: 1.6;
  color: rgba(5, 5, 5, 0.88);
  max-width: 720px;
  margin: 0 auto 24px;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.manifesto-body strong { color: var(--ink); font-weight: 600; }
.manifesto-sig {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(5, 5, 5, 0.6);
  margin-top: 20px;
}
.manifesto-sig strong { color: var(--ink); font-weight: 500; }

/* Operator-built video + copy split */
.op-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}
.op-video {
  aspect-ratio: 16 / 10;
  max-height: 360px;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(103, 175, 68, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(103, 175, 68, 0.18) 0%, transparent 55%),
    linear-gradient(135deg, #1a1d16 0%, #242920 50%, #12160f 100%);
  border: 1px solid rgba(103, 175, 68, 0.4);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 60px rgba(103, 175, 68, 0.2);
}
.op-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(245, 239, 229, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.op-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  z-index: 2;
}
.op-video-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.op-video-chip {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--paper);
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(5, 5, 5, 0.7);
  border: 1px solid rgba(245, 239, 229, 0.12);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}
.op-video-chip.ghost { color: var(--paper-dim); }
.op-video-chip:first-child { color: var(--green-bright); }
.op-play {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  border: none;
  cursor: pointer;
  transition: transform 0.25s, background 0.2s, box-shadow 0.25s;
  box-shadow: 0 0 50px rgba(103, 175, 68, 0.45), 0 0 0 6px rgba(103, 175, 68, 0.15);
  margin: auto;
}
.op-play:hover {
  background: var(--green-bright);
  transform: scale(1.08);
  box-shadow: 0 0 70px rgba(140, 255, 47, 0.6), 0 0 0 8px rgba(140, 255, 47, 0.2);
}
.op-play svg { width: 28px; height: 28px; margin-left: 4px; fill: currentColor; }
.op-video-bottombar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.op-video-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--paper);
  text-transform: uppercase;
  padding: 5px 12px;
  background: rgba(5, 5, 5, 0.7);
  border: 1px solid rgba(245, 239, 229, 0.12);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-weight: 500;
}
.op-video-time {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--paper);
  font-weight: 600;
  padding: 5px 10px;
  background: rgba(5, 5, 5, 0.7);
  border-radius: 6px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.op-play {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  border: none; cursor: pointer;
  transition: transform 0.25s, background 0.2s, box-shadow 0.25s;
  box-shadow: 0 0 50px rgba(103, 175, 68, 0.45);
}
.op-play:hover {
  background: var(--green-bright);
  transform: scale(1.08);
  box-shadow: 0 0 70px rgba(140, 255, 47, 0.55);
}
.op-play svg { width: 30px; height: 30px; margin-left: 4px; fill: currentColor; }
.op-video-tag {
  position: absolute; bottom: 18px; left: 20px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; color: var(--paper-faint);
  text-transform: uppercase; z-index: 3;
  padding: 6px 12px;
  background: rgba(5, 5, 5, 0.65);
  border: 1px solid var(--rule);
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
.op-copy .manifesto-label {
  color: var(--green-dark);
  margin-bottom: 20px;
}
.op-copy h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 20px;
}
.op-copy h2 em {
  color: var(--green-dark);
  font-style: normal;
  font-weight: 500;
}
.op-lede {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.55;
  color: rgba(5, 5, 5, 0.82);
  max-width: 480px;
  margin-bottom: 28px;
  font-weight: 400;
  letter-spacing: -0.003em;
}
.op-lede strong { color: var(--green-dark); font-weight: 700; }
.op-copy .manifesto-sig { margin-top: 12px; }

/* ==================== EXTRAS — 4 blocks ==================== */
.extras {
  padding: var(--gap-sm) 0 var(--gap);
  border-top: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.extras::before {
  content: '';
  position: absolute;
  top: 30%; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(103, 175, 68, 0.05) 0%, transparent 65%);
  pointer-events: none;
}
.extras-header {
  max-width: var(--col-narrow);
  margin: 0 auto 56px;
  text-align: center;
}
.extras-header .chapter-label { justify-content: center; }
.extras-header .chapter-label::before,
.extras-header .chapter-label::after {
  content: ''; flex: 1; height: 1px; background: var(--rule); max-width: 80px;
}
.extras-header .chapter-label::before { margin-right: 12px; margin-left: 0; }

.extras-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.extra-block {
  background: var(--ink-02);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s;
}
.extra-block::before {
  content: '';
  position: absolute;
  top: 0; left: 26px; right: 26px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.extra-block:hover {
  transform: translateY(-4px);
  border-color: var(--rule-green);
}
.extra-block:hover::before { opacity: 1; }
.extra-icon {
  width: 48px; height: 48px;
  background: var(--ink);
  border: 1px solid var(--rule);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  margin-bottom: 20px;
  transition: transform 0.4s, background 0.4s;
}
.extra-block:hover .extra-icon {
  transform: scale(1.06) rotate(-3deg);
  background: rgba(103, 175, 68, 0.08);
}
.extra-icon svg { width: 24px; height: 24px; }
.extra-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--paper-dim);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}
.extra-block h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--paper);
  margin-bottom: 10px;
  line-height: 1.15;
}
.extra-block p {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--paper);
  opacity: 0.82;
  letter-spacing: -0.003em;
}

/* ==================== SUMMIT OS SHOWCASE ==================== */
.summitos {
  padding: var(--gap) 0;
  border-top: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.summitos::before {
  content: '';
  position: absolute;
  top: 30%; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(103, 175, 68, 0.07) 0%, transparent 65%);
  pointer-events: none;
}
.summitos-header { max-width: var(--col-narrow); margin: 0 auto 80px; text-align: center; }
.summitos-header .chapter-label { justify-content: center; }
.summitos-header .chapter-label::before,
.summitos-header .chapter-label::after {
  content: ''; flex: 1; height: 1px; background: var(--rule); max-width: 80px;
}
.summitos-header .chapter-label::before { margin-right: 12px; margin-left: 0; }
.summitos-header .chapter-lede { margin: 0 auto; }
.summitos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.summitos-card {
  background: var(--ink-02);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s;
}
.summitos-card::before {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0; transition: opacity 0.35s;
}
.summitos-card:hover {
  transform: translateY(-6px);
  border-color: var(--rule-green);
}
.summitos-card:hover::before { opacity: 1; }
.summitos-card .tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600;
}
.summitos-card .tag::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}
.summitos-card h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  
  color: var(--paper);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.summitos-card h3 em { font-style: normal; font-weight: 500; color: var(--green); }
.summitos-card .sub {
  font-size: 15px;
  color: var(--paper);
  opacity: 0.82;
  line-height: 1.65;
  margin-bottom: 20px;
}
.summitos-card .ui {
  margin-top: 20px;
  padding: 14px;
  background: var(--ink);
  border: 1px solid var(--rule);
  border-radius: 8px;
}
.includes {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}
.includes-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--paper-dim);
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 600;
}
.includes ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.includes li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
  color: var(--paper);
  opacity: 0.84;
  letter-spacing: -0.003em;
}
.includes li strong {
  color: var(--paper);
  font-weight: 600;
  opacity: 1;
}
.i-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  font-size: 9px;
  font-weight: 700;
  margin-top: 1px;
  box-shadow: 0 0 8px rgba(103, 175, 68, 0.3);
}

/* ==================== INSTALL ==================== */
.install {
  padding: var(--gap) 0;
  border-top: 1px solid var(--rule);
}
.install-header { max-width: var(--col-narrow); margin: 0 auto 72px; text-align: center; }
.install-header .chapter-label { justify-content: center; }
.install-header .chapter-label::before,
.install-header .chapter-label::after {
  content: ''; flex: 1; height: 1px; background: var(--rule); max-width: 80px;
}
.install-header .chapter-label::before { margin-right: 12px; margin-left: 0; }
.install-header .chapter-lede { margin: 0 auto; }

.install-list {
  max-width: 980px; margin: 0 auto;
  border-top: 1px solid var(--rule-strong);
}
.install-item {
  display: grid;
  grid-template-columns: 56px 60px 1fr 180px;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
  transition: background 0.3s, padding-left 0.3s;
  position: relative;
}
.install-item:hover { background: rgba(103, 175, 68, 0.03); padding-left: 14px; }
.install-item::before {
  content: '';
  position: absolute;
  left: 0; top: 40%; height: 20%;
  width: 3px;
  background: var(--green);
  opacity: 0;
  transition: opacity 0.3s;
}
.install-item:hover::before { opacity: 1; box-shadow: 0 0 12px var(--green); }
.install-icon {
  width: 48px; height: 48px;
  background: var(--ink-02);
  border: 1px solid var(--rule);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--paper-dim);
  transition: color 0.4s, border-color 0.4s, background 0.4s, transform 0.4s;
  margin-top: 4px;
}
.install-item:hover .install-icon {
  color: var(--green-bright);
  border-color: var(--rule-green);
  background: rgba(103, 175, 68, 0.08);
  transform: scale(1.06) rotate(-3deg);
}
.install-icon svg { width: 26px; height: 26px; }
.install-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--paper-dim);
  text-transform: uppercase;
  padding-top: 18px;
}
.install-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--ink-02);
  border: 1px solid var(--rule-strong);
  color: var(--paper-dim);
  font-size: 10px;
  margin-right: 8px;
  transition: background 0.5s, border-color 0.5s, color 0.5s, transform 0.5s, box-shadow 0.5s;
  font-weight: 700;
  vertical-align: middle;
}
.install-item.in-view .install-check {
  background: var(--green);
  border-color: var(--green);
  color: var(--ink);
  transform: scale(1.05);
  box-shadow: 0 0 14px rgba(103, 175, 68, 0.5);
}
.install-item.in-view .install-icon {
  color: var(--green);
  border-color: var(--rule-green);
}

/* Install progress bar (above list) */
.install-progress {
  max-width: 720px;
  margin: 40px auto 0;
  text-align: left;
}
.install-progress-label {
  display: flex; justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--paper-dim);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.install-progress-count strong { color: var(--green); font-weight: 700; }
.install-progress-track {
  height: 8px;
  background: var(--ink-02);
  border: 1px solid var(--rule);
  border-radius: 100px;
  position: relative;
  overflow: hidden;
}
.install-progress-bar {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--green-dark), var(--green), var(--green-bright));
  border-radius: 100px;
  box-shadow: 0 0 14px rgba(103, 175, 68, 0.4);
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.install-progress-ticks {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-top: 14px;
  position: relative;
}
.install-progress-ticks .tick {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ink-02);
  border: 1px solid var(--rule-strong);
  transition: all 0.4s;
  justify-self: center;
}
.install-progress-ticks .tick.on {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 10px var(--green);
}
.install-body h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  
  color: var(--paper);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 10px;
}
.install-body h3 em { font-style: normal; font-weight: 500; color: var(--green); }
.install-body .desc {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--paper);
  opacity: 0.82;
  max-width: 560px;
  letter-spacing: -0.003em;
}
.install-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--green);
  text-transform: uppercase;
  padding-top: 10px;
  text-align: right;
  font-weight: 600;
}

/* ==================== THE TAPE — live revenue section ==================== */
.tape {
  padding: var(--gap) 0;
  border-top: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.tape::before {
  content: '';
  position: absolute;
  top: 20%; left: -300px;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(103, 175, 68, 0.1) 0%, transparent 65%);
  pointer-events: none;
  animation: floatOrb 22s ease-in-out infinite;
}
.tape-header {
  max-width: var(--col-narrow);
  margin: 0 auto 60px;
  text-align: center;
}
.tape-header .chapter-label { justify-content: center; }
.tape-header .chapter-label::before,
.tape-header .chapter-label::after {
  content: ''; flex: 1; height: 1px; background: var(--rule); max-width: 80px;
}
.tape-header .chapter-label::before { margin-right: 12px; margin-left: 0; }
.tape-header .chapter-lede { margin: 0 auto; }

.tape-frame {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--ink-02);
  border: 1px solid var(--rule-green);
  border-radius: 16px;
  padding: 48px 44px;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 100px rgba(103, 175, 68, 0.08);
  overflow: hidden;
}
.tape-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-bright), transparent);
  opacity: 0.6;
  animation: scanlineTop 6s ease-in-out infinite;
}
@keyframes scanlineTop {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}
.tape-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 28px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule);
}
.tape-title-block { flex: 1; min-width: 280px; }
.tape-mini-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--green);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-flex; align-items: center; gap: 8px;
}
.tape-mini-label::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulseDot 2s ease-in-out infinite;
}
.tape-big {
  font-family: var(--serif);
  font-size: clamp(64px, 8vw, 120px);
  font-weight: 400;
  
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--paper);
  margin-bottom: 12px;
}
.tape-big em {
  font-style: normal;
  font-weight: 300;
  color: var(--green);
  text-shadow: 0 0 60px rgba(103, 175, 68, 0.4);
}
.tape-big-sub {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--paper);
  opacity: 0.7;
  letter-spacing: -0.003em;
}
.tape-right {
  text-align: right;
  display: flex; flex-direction: column; gap: 18px;
  min-width: 200px;
}
.tape-stat {
  padding: 14px 18px;
  background: var(--ink);
  border: 1px solid var(--rule);
  border-radius: 8px;
}
.tape-stat .k {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--paper-dim);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.tape-stat .v {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--paper);
  font-weight: 400;
  
  letter-spacing: -0.03em;
  line-height: 1;
}
.tape-stat .v em { font-style: normal; color: var(--green); font-weight: 300; }

/* Progress bar */
.tape-bar-wrap {
  margin-bottom: 32px;
}
.tape-bar-head {
  display: flex; justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--paper-dim);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.tape-bar-head .now { color: var(--green); font-weight: 600; }
.tape-bar {
  height: 14px;
  background: var(--ink);
  border: 1px solid var(--rule);
  border-radius: 100px;
  position: relative;
  overflow: hidden;
}
.tape-bar-fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--green-dark), var(--green), var(--green-bright));
  border-radius: 100px;
  box-shadow: 0 0 20px rgba(103, 175, 68, 0.4);
  transition: width 2.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.tape-bar-fill::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 30px;
  background: linear-gradient(90deg, transparent, rgba(140, 255, 47, 0.8));
  animation: barPulse 2.4s ease-in-out infinite;
}
@keyframes barPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.9; }
}
.tape-timeline {
  margin-top: 14px;
  display: flex; justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--paper-dim);
  text-transform: uppercase;
}

/* Client contribution bars */
.tape-clients {
  display: grid;
  gap: 12px;
}
.tape-client {
  display: grid;
  grid-template-columns: 200px 1fr 100px;
  gap: 20px;
  align-items: center;
  padding: 10px 0;
}
.tape-client-name {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--paper);
  opacity: 0.9;
  letter-spacing: -0.003em;
  font-weight: 500;
}
.tape-client-bar {
  height: 8px;
  background: var(--ink);
  border: 1px solid var(--rule);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}
.tape-client-bar-fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  border-radius: 100px;
  transition: width 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.tape-client-bar.hero .tape-client-bar-fill {
  background: linear-gradient(90deg, var(--green), var(--green-bright));
  box-shadow: 0 0 10px rgba(140, 255, 47, 0.3);
}
.tape-client-value {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--green);
  letter-spacing: 0.06em;
  text-align: right;
  font-weight: 600;
}

.tape-footer {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px dashed var(--rule);
  text-align: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--paper-dim);
  text-transform: uppercase;
}
.tape-footer strong { color: var(--green); font-weight: 600; }

/* ==================== CASE FILES (FULL — 5 featured) ==================== */
.casefiles {
  padding: var(--gap) 0;
  border-top: 1px solid var(--rule);
  background: var(--ink-02);
  position: relative;
  overflow: hidden;
}
.casefiles::before {
  content: '';
  position: absolute;
  top: 10%; right: -300px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(103, 175, 68, 0.06) 0%, transparent 65%);
  pointer-events: none;
}
.casefiles-header { max-width: var(--col-narrow); margin: 0 auto 72px; }
.casefiles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 32px;
}
.casefiles-grid-wide {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.casefile {
  border: 1px solid var(--rule);
  padding: 40px 36px;
  background: var(--ink);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s, box-shadow 0.4s;
  border-radius: 10px;
  overflow: hidden;
}
.casefile:hover {
  transform: translateY(-4px);
  border-color: var(--rule-green);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(103, 175, 68, 0.08);
}
.casefile::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--green);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.casefile:hover::before { transform: scaleY(1); }
.casefile-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--paper-dim);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex; justify-content: space-between;
}
.casefile-meta .tag-green {
  color: var(--green);
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600;
}
.casefile-meta .tag-green::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}
.casefile-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--paper);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.casefile-stat {
  font-family: var(--serif);
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 400;
  
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--paper);
  margin-bottom: 22px;
}
.casefile-stat em {
  font-style: normal;
  font-weight: 300;
  color: var(--green);
  text-shadow: 0 0 30px rgba(103, 175, 68, 0.3);
}
.casefile-note {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--paper);
  opacity: 0.85;
  line-height: 1.65;
  font-weight: 400;
  border-top: 1px solid var(--rule);
  padding-top: 22px;
}
.casefile-note strong { color: var(--paper); font-weight: 500; }

/* Wide featured case (5th one, full-width) */
.casefile-wide {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  padding: 48px 44px;
}
.casefile-wide .casefile-stat { font-size: clamp(40px, 4.5vw, 60px); }

/* Logos / remaining clients row */
.client-logos {
  padding: 64px 0 40px;
  text-align: center;
}
.client-logos-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--paper-dim);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.client-logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 48px;
}
.client-logo-name {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--paper-muted);
  font-weight: 400;
  
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 0;
  transition: color 0.2s;
  cursor: default;
}
.client-logo-name:hover { color: var(--green); }
.client-logo-name::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--green);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

/* ==================== RECEIPT / OFFER ==================== */
.receipt {
  padding: var(--gap) 0;
  border-top: 1px solid var(--rule);
}
.receipt-header {
  max-width: var(--col-narrow);
  margin: 0 auto 72px;
  text-align: center;
}
.receipt-header .chapter-label { justify-content: center; }
.receipt-header .chapter-label::before,
.receipt-header .chapter-label::after {
  content: ''; flex: 1; height: 1px; background: var(--rule); max-width: 80px;
}
.receipt-header .chapter-label::before { margin-right: 12px; margin-left: 0; }
.receipt-header .chapter-lede { margin: 0 auto; }

.receipt-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--paper);
  color: var(--ink);
  padding: 64px 56px;
  position: relative;
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(103, 175, 68, 0.12);
  transform: rotate(-0.5deg);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.receipt-card:hover { transform: rotate(0deg) translateY(-4px); }
.receipt-card::before,
.receipt-card::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 14px;
  background:
    repeating-linear-gradient(-45deg, var(--paper) 0 8px, var(--ink) 8px 10px);
}
.receipt-card::before { top: -7px; }
.receipt-card::after { bottom: -7px; }
.receipt-head {
  display: flex; justify-content: space-between;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 16px;
  margin-bottom: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.receipt-head strong { font-weight: 700; color: var(--ink); }
.receipt-title {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: var(--ink);
}
.receipt-title em { font-style: normal; font-weight: 500; color: var(--green-dark); }
.receipt-list { list-style: none; margin-bottom: 32px; }
.receipt-list li {
  display: flex; justify-content: space-between; gap: 24px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(5, 5, 5, 0.2);
  font-size: 15px;
  color: var(--ink);
  align-items: baseline;
}
.receipt-list li:last-child { border-bottom: none; }
.receipt-list li .item { max-width: 440px; }
.receipt-list li .mark {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--green-dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  flex-shrink: 0;
  font-weight: 600;
}
.receipt-total {
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 18px 0;
  margin-bottom: 28px;
}
.receipt-total .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}
.receipt-total .price {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 400;
  
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}
.receipt-total .price em { font-style: normal; font-weight: 500; color: var(--green-dark); }
.receipt-terms {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(5, 5, 5, 0.5);
  text-align: center;
  margin-bottom: 24px;
}
.receipt-cta {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  border-radius: 6px;
  transition: all 0.25s;
}
.receipt-cta:hover {
  background: var(--green);
  color: var(--ink);
  box-shadow: 0 0 30px rgba(103, 175, 68, 0.4);
}

/* ==================== GUARANTEE ==================== */
.guarantee {
  padding: var(--gap-sm) 0;
  text-align: center;
  border-top: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.guarantee::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1200px; height: 500px;
  background: radial-gradient(ellipse, rgba(103, 175, 68, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.guarantee-mark {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600;
  position: relative;
}
.guarantee-mark::before,
.guarantee-mark::after {
  content: ''; width: 40px; height: 1px;
  background: var(--green); opacity: 0.6;
}
.guarantee-copy {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  max-width: 880px;
  margin: 0 auto 24px;
  font-weight: 400;
  
  position: relative;
}
.guarantee-copy em {
  font-style: normal;
  font-weight: 300;
  color: var(--green);
  text-shadow: 0 0 50px rgba(103, 175, 68, 0.3);
}
.guarantee-aside {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--paper);
  opacity: 0.72;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  line-height: 1.65;
}

/* ==================== TIMELINE (v2 — rich cards, scroll-linked thread) ==================== */
.timeline {
  padding: var(--gap) 0;
  border-top: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.timeline-header { max-width: var(--col-narrow); margin: 0 auto 64px; text-align: center; }
.timeline-header .chapter-label { justify-content: center; }
.timeline-header .chapter-label::before,
.timeline-header .chapter-label::after {
  content: ''; flex: 1; height: 1px; background: var(--rule); max-width: 80px;
}
.timeline-header .chapter-label::before { margin-right: 12px; margin-left: 0; }
.timeline-header .chapter-lede { margin: 0 auto; }

.tl-wrap {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0 40px;
}

/* Thread (horizontal on desktop) */
.tl-thread {
  position: absolute;
  top: 56px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: var(--rule-strong);
  border-radius: 100px;
  overflow: hidden;
  z-index: 0;
}
.tl-thread-fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--green-dark), var(--green), var(--green-bright));
  box-shadow: 0 0 12px rgba(103, 175, 68, 0.5);
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.tl-thread-pulse {
  position: absolute;
  top: -1px; left: 0;
  width: 50px; height: 4px;
  background: var(--green-bright);
  filter: blur(3px);
  animation: tlPulse 4.5s ease-in-out infinite;
  border-radius: 100px;
}
@keyframes tlPulse {
  0% { left: 0%; opacity: 0.9; }
  85% { opacity: 0.6; }
  100% { left: calc(100% - 50px); opacity: 0; }
}

.tl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.tl-step {
  display: flex; flex-direction: column; gap: 14px;
}
.tl-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}
.tl-node {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--ink-02);
  border: 2px solid var(--green);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px var(--ink), 0 0 30px rgba(103, 175, 68, 0.2);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.tl-step:hover .tl-node {
  transform: scale(1.06);
  box-shadow: 0 0 0 6px var(--ink), 0 0 50px rgba(103, 175, 68, 0.45);
}
.tl-node-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--green);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2px;
}
.tl-node-num {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--paper);
  line-height: 1;
  letter-spacing: -0.04em;
}
.tl-status {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 100px;
  font-weight: 600;
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px;
  position: relative;
  z-index: 2;
  isolation: isolate;
}
.tl-status::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  border-radius: inherit;
  z-index: -1;
}
.tl-status::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
}
.tl-status.done { color: var(--paper-dim); background: rgba(245,239,229,0.04); border: 1px solid var(--rule-strong); }
.tl-status.done::before { background: var(--paper-dim); }
.tl-status.live { color: var(--green); background: rgba(103, 175, 68, 0.08); border: 1px solid var(--rule-green); }
.tl-status.live::before { background: var(--green); box-shadow: 0 0 8px var(--green); animation: pulseDot 2s ease-in-out infinite; }
.tl-status.action { color: var(--green-bright); background: rgba(140, 255, 47, 0.08); border: 1px solid rgba(140, 255, 47, 0.3); }
.tl-status.action::before { background: var(--green-bright); box-shadow: 0 0 10px var(--green-bright); animation: pulseDot 1.6s ease-in-out infinite; }
.tl-status.check { color: var(--paper); background: rgba(245,239,229,0.06); border: 1px solid var(--rule-strong); }
.tl-status.check::before { background: var(--paper); }

.tl-card {
  background: var(--ink-02);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 20px 18px;
  transition: border-color 0.35s, transform 0.35s, background 0.35s;
  flex: 1;
  display: flex; flex-direction: column;
}
.tl-step:hover .tl-card {
  border-color: var(--rule-green);
  background: var(--ink-03);
}
.tl-week {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--green);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}
.tl-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 10px;
  line-height: 1.05;
}
.tl-desc {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.55;
  color: var(--paper);
  opacity: 0.78;
  margin-bottom: 16px;
  letter-spacing: -0.003em;
}
.tl-checks {
  list-style: none;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--rule);
  display: flex; flex-direction: column; gap: 8px;
}
.tl-checks li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 8px;
  align-items: center;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--paper);
  opacity: 0.8;
  line-height: 1.3;
}
.tl-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  font-size: 8px;
  font-weight: 700;
  box-shadow: 0 0 6px rgba(103, 175, 68, 0.4);
}

/* OLD timeline track (unused now — keeping variables as safe no-ops) */
.timeline-track {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  display: none;
}
.timeline-line {
  position: absolute;
  top: 40px; left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--green) 0%, rgba(103, 175, 68, 0.5) 50%, rgba(103, 175, 68, 0.12) 100%);
}
.timeline-pulse {
  position: absolute;
  top: 39px; left: 8%;
  width: 60px; height: 4px;
  background: var(--green-bright);
  filter: blur(3px);
  animation: pulseLine 5s ease-in-out infinite;
}
@keyframes pulseLine {
  0% { left: 8%; opacity: 0.9; }
  100% { left: calc(92% - 60px); opacity: 0; }
}
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}
.timeline-step { text-align: center; padding: 0 16px; }
.timeline-node {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  
  color: var(--paper);
  letter-spacing: -0.02em;
  box-shadow: 0 0 0 8px var(--ink), 0 0 40px rgba(103, 175, 68, 0.2);
  position: relative;
  transition: transform 0.35s;
  animation: dotPulse 3s ease-in-out infinite;
}
.timeline-step:nth-child(2) .timeline-node { animation-delay: 0.5s; }
.timeline-step:nth-child(3) .timeline-node { animation-delay: 1s; }
.timeline-step:nth-child(4) .timeline-node { animation-delay: 1.5s; }
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 8px var(--ink), 0 0 0 0 rgba(103,175,68,0.3); }
  50% { box-shadow: 0 0 0 8px var(--ink), 0 0 0 10px rgba(103,175,68,0); }
}
.timeline-step:hover .timeline-node {
  transform: scale(1.08);
}
.timeline-node em { font-style: normal; font-weight: 500; color: var(--green); }
.timeline-step-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}
.timeline-step-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--paper);
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.timeline-step-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--paper);
  opacity: 0.8;
  max-width: 200px;
  margin: 0 auto;
}

/* ==================== QUALIFIER ==================== */
.qualifier {
  padding: var(--gap) 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  position: relative;
}
.qualifier::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.04'/></svg>");
  pointer-events: none;
  mix-blend-mode: multiply;
}
.qualifier-header { max-width: var(--col-narrow); margin: 0 auto 64px; text-align: center; position: relative; }
.qualifier-header .chapter-label { color: var(--green-dark); justify-content: center; font-weight: 600; }
.qualifier-header .chapter-label::before,
.qualifier-header .chapter-label::after {
  content: ''; flex: 1; height: 1px; background: rgba(5,5,5,0.2); max-width: 80px;
}
.qualifier-header .chapter-label::before { margin-right: 12px; margin-left: 0; }
.qualifier-header .chapter-title { color: var(--ink); margin-left: auto; margin-right: auto; }
.qualifier-header .chapter-title em { color: rgba(5,5,5,0.55); }
.qualifier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  position: relative;
}
.qualifier-col {
  padding: 40px 36px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.qualifier-col h3 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 600;
}
.qualifier-col.yes h3 { color: var(--green-dark); }
.qualifier-col.no h3 { color: rgba(5,5,5,0.5); }
.qualifier-col ul { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.qualifier-col li {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 400;
}
.qualifier-col.no li { color: rgba(5,5,5,0.7); }

/* ==================== QUALIFICATION FORM ==================== */
.qualify-form-section {
  padding: var(--gap) 0;
  border-top: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.qualify-form-section::before {
  content: '';
  position: absolute;
  top: 20%; right: -300px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(103, 175, 68, 0.08) 0%, transparent 65%);
  pointer-events: none;
  animation: floatOrb 18s ease-in-out infinite;
}
.qualify-header {
  max-width: var(--col-narrow);
  margin: 0 auto 56px;
  text-align: center;
}
.qualify-header .chapter-label { justify-content: center; }
.qualify-header .chapter-label::before,
.qualify-header .chapter-label::after {
  content: ''; flex: 1; height: 1px; background: var(--rule); max-width: 80px;
}
.qualify-header .chapter-label::before { margin-right: 12px; margin-left: 0; }
.qualify-header .chapter-lede { margin: 0 auto; }

.qualify-form {
  max-width: 680px;
  margin: 0 auto;
  background: var(--ink-02);
  border: 1px solid var(--rule-strong);
  border-radius: 14px;
  padding: 48px 44px;
  display: grid; gap: 20px;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
}
.qualify-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.qf-field { display: grid; gap: 8px; }
.qf-field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--paper-dim);
  text-transform: uppercase;
  font-weight: 600;
}
.qf-field input,
.qf-field select,
.qf-field textarea {
  background: var(--ink);
  border: 1px solid var(--rule-strong);
  border-radius: 6px;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--paper);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.qf-field input:focus,
.qf-field select:focus,
.qf-field textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--ink-03);
  box-shadow: 0 0 0 3px rgba(103, 175, 68, 0.15);
}
.qf-field textarea { resize: vertical; min-height: 80px; }
.qf-submit {
  margin-top: 8px;
  padding: 16px 28px;
  background: var(--green);
  color: var(--ink);
  border: none;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 0 40px rgba(103, 175, 68, 0.25);
}
.qf-submit:hover {
  background: var(--green-bright);
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(140, 255, 47, 0.4);
}
.qf-submit svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.qf-note {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--paper-dim);
  text-transform: uppercase;
  text-align: center;
  margin-top: 8px;
}

/* ==================== FINAL CLOSE ==================== */
.close {
  padding: var(--gap) 0 120px;
  border-top: 1px solid var(--rule);
  text-align: center;
  position: relative;
}
.close-ornament {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--green);
  margin-bottom: 32px;
  letter-spacing: 0.6em;
  opacity: 0.5;
}
.close-title {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--paper);
  max-width: 880px;
  margin: 0 auto 32px;
}
.close-title em {
  font-style: normal;
  font-weight: 300;
  color: var(--green);
  text-shadow: 0 0 50px rgba(103, 175, 68, 0.3);
}
.close-body {
  font-family: var(--sans);
  font-size: 17px;
  color: var(--paper);
  opacity: 0.85;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: -0.005em;
}

/* ==================== FOOTER ==================== */
footer {
  padding: 56px 0 40px;
  border-top: 1px solid var(--rule);
  background: var(--ink-02);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
footer .container {
  max-width: var(--col-wide);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px;
  color: var(--paper-dim);
}
footer a { color: var(--paper-dim); text-decoration: none; margin-left: 32px; transition: color 0.2s; }
footer a:hover { color: var(--green); }
footer .logo-text { font-size: 16px; }
.status-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: rgba(103, 175, 68, 0.08);
  border: 1px solid var(--rule-green);
  border-radius: 100px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.status-pill::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulseDot 2s ease-in-out infinite;
}

/* Tape — live feed + last booking */
.tape-feed {
  margin-top: 24px;
  padding: 12px 18px;
  background: var(--ink);
  border: 1px solid var(--rule);
  border-radius: 100px;
  display: flex; align-items: center; gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--paper-muted);
}
.tape-feed::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulseDot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
.tape-feed-ts {
  font-size: 10px;
  color: var(--paper-dim);
  margin-left: auto;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.tape-feed-body { flex: 1; overflow: hidden; min-width: 0; }
.tape-feed-body strong { color: var(--green); font-weight: 600; margin-right: 6px; }

/* Mockup sparklines */
.spark {
  width: 100%; height: 26px;
  margin-top: 6px;
}
.spark path.line {
  fill: none;
  stroke: var(--green);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(103, 175, 68, 0.4));
}
.spark path.area { fill: url(#sparkGrad); opacity: 0.35; }
.spark circle { fill: var(--green-bright); filter: drop-shadow(0 0 8px var(--green-bright)); }

/* Case file mini-chart (revealed on hover) */
.casefile-chart {
  margin-top: 16px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s, margin-top 0.4s;
}
.casefile:hover .casefile-chart {
  max-height: 80px;
  opacity: 1;
  margin-top: 18px;
}
.casefile-chart svg { width: 100%; height: 48px; display: block; }
.casefile-chart-foot {
  display: flex; justify-content: space-between;
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--paper-dim);
  text-transform: uppercase;
}

/* Hero cursor badge over mockups */
.hero-visual {
  transform-style: preserve-3d;
}
.mock {
  transform-origin: center center;
  backface-visibility: hidden;
}

/* ==================== ADD-ONS (4 small blocks below Summit OS modules) ==================== */
.addons-wrap {
  margin-top: 56px;
  max-width: 1080px;
  margin-left: auto; margin-right: auto;
}
.addons-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--paper-dim);
  text-transform: uppercase;
  margin-bottom: 18px;
  text-align: center;
  display: inline-flex; align-items: center; gap: 14px;
  width: 100%;
  justify-content: center;
}
.addons-label::before, .addons-label::after {
  content: '';
  flex: 1; max-width: 100px;
  height: 1px;
  background: var(--rule);
}
.addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.addon {
  background: var(--ink-02);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 16px 14px;
  display: flex; align-items: center; gap: 12px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.addon:hover {
  border-color: var(--rule-green);
  background: var(--ink-03);
  transform: translateY(-2px);
}
.addon-icon {
  width: 32px; height: 32px;
  background: var(--ink);
  border: 1px solid var(--rule);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.addon-icon svg { width: 16px; height: 16px; }
.addon-name {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--paper);
  letter-spacing: -0.003em;
}

/* D90 card — guarantee accent */
.tl-step-guarantee .tl-card.guarantee-card {
  border-color: var(--rule-green);
  background: rgba(103, 175, 68, 0.04);
  box-shadow: 0 0 40px rgba(103, 175, 68, 0.08);
}
.tl-step-guarantee .tl-node.guarantee-node {
  border-color: var(--green-bright);
  box-shadow: 0 0 0 6px var(--ink), 0 0 40px rgba(140, 255, 47, 0.35);
}
.tl-step-guarantee .tl-node.guarantee-node .tl-node-num,
.tl-step-guarantee .tl-node.guarantee-node .tl-node-label { color: var(--green-bright); }
.tl-step-guarantee .tl-title { color: var(--green-bright); }
.tl-step-guarantee .tl-desc strong { color: var(--paper); font-weight: 600; opacity: 1; }

/* ==================== SECTION CTAs (simple centered button) ==================== */
.section-cta {
  margin: 64px auto 0;
  display: flex; align-items: center; justify-content: center;
}
.section-cta .btn-primary {
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
  position: relative;
  animation: ctaPulse 2.6s ease-in-out infinite;
}
.section-cta .btn-primary::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(140, 255, 47, 0.4), rgba(103, 175, 68, 0.2));
  filter: blur(14px);
  opacity: 0.55;
  z-index: -1;
  animation: ctaGlow 2.6s ease-in-out infinite;
}
.section-cta .btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  animation-play-state: paused;
  box-shadow:
    0 0 70px rgba(140, 255, 47, 0.6),
    0 8px 24px rgba(0, 0, 0, 0.45);
}
.section-cta .btn-primary:hover::before {
  opacity: 0.9;
  animation-play-state: paused;
}
@keyframes ctaPulse {
  0%, 100% {
    box-shadow:
      0 0 30px rgba(103, 175, 68, 0.25),
      0 4px 12px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow:
      0 0 56px rgba(140, 255, 47, 0.5),
      0 6px 18px rgba(0, 0, 0, 0.4);
  }
}
@keyframes ctaGlow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(1.04); }
}

/* CTA on light-paper sections (manifesto VSL): swap glow tones for contrast */
.manifesto .section-cta .btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.manifesto .section-cta .btn-primary:hover {
  background: #0a0a0a;
  box-shadow:
    0 0 70px rgba(103, 175, 68, 0.4),
    0 8px 24px rgba(0, 0, 0, 0.45);
}
.manifesto .section-cta .btn-primary::before {
  background: linear-gradient(135deg, rgba(103, 175, 68, 0.45), rgba(5, 5, 5, 0.2));
}

@media (prefers-reduced-motion: reduce) {
  .section-cta .btn-primary,
  .section-cta .btn-primary::before { animation: none; }
}

/* ==================== BOOKING — AUDIT COVERS ==================== */
.audit-covers {
  padding: 16px 0 80px;
  position: relative;
}
.audit-covers-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}
.audit-covers-header .chapter-label {
  justify-content: center;
}
.audit-covers-header .chapter-title {
  margin-top: 14px;
  font-size: clamp(28px, 3.4vw, 40px);
}
.audit-covers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1040px;
  margin: 0 auto;
}
.audit-cover-card {
  position: relative;
  padding: 32px 28px 28px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.audit-cover-card:hover {
  transform: translateY(-3px);
  border-color: rgba(103, 175, 68, 0.35);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.4),
    0 0 36px rgba(103, 175, 68, 0.1);
}
.audit-cover-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 14px;
}
.audit-cover-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.95);
}
.audit-cover-card p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
}
@media (max-width: 880px) {
  .audit-covers-grid { grid-template-columns: 1fr; gap: 14px; max-width: 520px; }
  .audit-covers { padding: 8px 0 56px; }
  .audit-cover-card { padding: 26px 22px 22px; }
  .audit-cover-card h3 { font-size: 20px; }
}

/* ==================== THANK-YOU — BEFORE THE CALL ==================== */
.before-call {
  padding: 24px 0 96px;
  position: relative;
}
.before-call-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.before-call-header .chapter-label { justify-content: center; }
.before-call-header .chapter-title {
  margin-top: 14px;
  font-size: clamp(28px, 3.4vw, 40px);
}
.before-call-header .chapter-lede {
  margin-top: 18px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
}
.before-call-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
}
.bc-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  align-items: start;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.bc-item:hover {
  border-color: rgba(103, 175, 68, 0.3);
  background: rgba(103, 175, 68, 0.04);
}
.bc-num {
  font-family: var(--mono);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--green);
  line-height: 1;
}
.bc-body h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.95);
}
.bc-body p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
}
@media (max-width: 720px) {
  .before-call { padding: 16px 0 64px; }
  .before-call-list { padding: 0 16px; }
  .bc-item {
    grid-template-columns: 56px 1fr;
    gap: 14px;
    padding: 20px 22px;
  }
  .bc-num { font-size: 22px; }
  .bc-body h3 { font-size: 17px; }
}

/* ==================== CASE-STUDY STUB — PREVIEW LIST ==================== */
.case-preview {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 620px;
}
.case-preview-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  margin-bottom: 18px;
}
.case-preview-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.case-preview-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}
.case-preview-list li::before {
  content: '→';
  color: var(--green, #67af44);
  flex: 0 0 auto;
  font-weight: 600;
}

/* ==================== FLOATING MOBILE CTA ==================== */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 80;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: var(--green);
  color: var(--ink);
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35), 0 0 30px rgba(103, 175, 68, 0.4);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s, transform 0.35s, background 0.2s;
}
.floating-cta.visible { opacity: 1; transform: translateY(0); }
.floating-cta:active, .floating-cta:hover { background: var(--green-bright); }
.floating-cta svg {
  width: 14px; height: 14px;
}

/* ==================== TESTIMONIAL VIDEOS ==================== */
.testimonial-videos {
  padding: var(--gap-sm) 0 var(--gap-sm);
  border-top: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.testimonial-videos::before {
  content: '';
  position: absolute;
  top: -100px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(103, 175, 68, 0.06) 0%, transparent 65%);
  pointer-events: none;
}
.tv-header { max-width: var(--col-narrow); margin: 0 auto 56px; text-align: center; }
.tv-header .chapter-label { justify-content: center; }
.tv-header .chapter-label::before,
.tv-header .chapter-label::after {
  content: ''; flex: 1; height: 1px; background: var(--rule); max-width: 80px;
}
.tv-header .chapter-label::before { margin-right: 12px; margin-left: 0; }
.tv-header .chapter-lede { margin: 0 auto; }

.tv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.tv-card {
  background: var(--ink-02);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s, box-shadow 0.4s;
}
.tv-card:hover {
  transform: translateY(-4px);
  border-color: var(--rule-green);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(103, 175, 68, 0.08);
}
.tv-box {
  aspect-ratio: 9 / 13;
  background: var(--ink);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.tv-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(103, 175, 68, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, rgba(245, 239, 229, 0.02) 0%, transparent 50%);
  pointer-events: none;
}
.tv-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(245, 239, 229, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.tv-play {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  z-index: 2;
  border: none;
  cursor: pointer;
  transition: transform 0.25s, background 0.2s, box-shadow 0.25s;
  box-shadow: 0 0 40px rgba(103, 175, 68, 0.35);
}
.tv-play:hover {
  background: var(--green-bright);
  transform: scale(1.08);
  box-shadow: 0 0 60px rgba(140, 255, 47, 0.5);
}
.tv-play svg { width: 22px; height: 22px; margin-left: 3px; fill: currentColor; }
.tv-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--ink);
  z-index: 4;
  border: 0;
  display: block;
}
.tv-tag {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--paper-dim);
  text-transform: uppercase;
  padding: 5px 10px;
  background: rgba(5, 5, 5, 0.7);
  border: 1px solid var(--rule);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  z-index: 3;
}
.tv-meta { padding: 18px 20px 22px; }
.tv-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--paper);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.tv-co {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--paper-dim);
  text-transform: uppercase;
}
.tv-stat {
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--paper-dim);
  text-transform: uppercase;
  padding-top: 10px;
  border-top: 1px solid var(--rule);
}
.tv-stat-num {
  color: var(--green-bright);
  font-weight: 500;
}

/* ==================== BOOKING PAGE ==================== */
.booking-hero { padding: 200px 0 60px; text-align: center; position: relative; }
.booking-hero::before {
  content: '';
  position: absolute;
  top: 100px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(103, 175, 68, 0.1) 0%, transparent 60%);
  pointer-events: none;
  animation: floatOrb 14s ease-in-out infinite;
}
.booking-hero .hero-meta { justify-content: center; margin-bottom: 32px; }
.booking-hero h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 400;
  
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  max-width: 900px; margin-left: auto; margin-right: auto;
}
.booking-hero h1 em { font-style: normal; font-weight: 500; color: var(--green); }
.booking-hero .sub {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
  color: var(--paper);
  opacity: 0.88;
  max-width: 720px;
  margin: 0 auto 48px;
  font-weight: 400;
}
.cal-wrapper { max-width: 1040px; margin: 0 auto; padding: 0 32px 120px; }
.cal-box {
  background: var(--ink-02);
  border: 1px solid var(--rule-strong);
  overflow: hidden;
  min-height: 700px;
  border-radius: 14px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.4), 0 0 80px rgba(103,175,68,0.05);
}
.cal-box iframe { width: 100%; height: 700px; border: 0; display: block; }
.cal-pledges {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 48px; margin-top: 40px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--paper-dim);
  text-transform: uppercase;
}
.cal-pledges span { display: inline-flex; align-items: center; gap: 10px; }
.cal-pledges svg { width: 12px; height: 12px; stroke: var(--green); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ==================== THANK-YOU PAGE ==================== */
.ty-hero { padding: 200px 0 40px; text-align: center; position: relative; }
.ty-hero::before {
  content: '';
  position: absolute;
  top: 100px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(103, 175, 68, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.ty-hero h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 400;
  
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  max-width: 820px; margin-left: auto; margin-right: auto;
}
.ty-hero h1 em { font-style: normal; font-weight: 500; color: var(--green); }
.ty-hero .sub {
  font-family: var(--sans);
  font-size: 18px;
  color: var(--paper);
  opacity: 0.88;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.65;
  font-weight: 400;
}
.ty-video { max-width: 920px; margin: 0 auto 100px; padding: 0 32px; }
.ty-video-box {
  aspect-ratio: 16 / 9;
  background: var(--ink-02);
  border: 1px solid var(--rule-green);
  border-radius: 14px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(103,175,68,0.08);
}
.ty-video-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(103, 175, 68, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.ty-play {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--green); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  box-shadow: 0 0 60px rgba(103, 175, 68, 0.35);
  cursor: pointer; border: none;
  transition: transform 0.2s, background 0.2s;
}
.ty-play:hover { transform: scale(1.08); background: var(--green-bright); }
.ty-play svg { width: 28px; height: 28px; margin-left: 5px; fill: currentColor; }
.ty-caption {
  position: absolute; bottom: 20px; left: 24px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--paper-faint);
  text-transform: uppercase;
  z-index: 3;
}

/* ==================== FAQ ==================== */
.faq { padding: var(--gap) 0 var(--gap-sm); border-top: 1px solid var(--rule); }
.faq-header { max-width: var(--col-narrow); margin: 0 auto 64px; text-align: center; }
.faq-header .chapter-label { justify-content: center; }
.faq-header .chapter-label::before,
.faq-header .chapter-label::after {
  content: ''; flex: 1; height: 1px; background: var(--rule); max-width: 80px;
}
.faq-header .chapter-label::before { margin-right: 12px; margin-left: 0; }
.faq-list { max-width: 840px; margin: 0 auto; border-top: 1px solid var(--rule-strong); }
.faq-item { border-bottom: 1px solid var(--rule); padding: 0; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 32px 0;
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  gap: 24px;
  align-items: center;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  
  letter-spacing: -0.015em;
  color: var(--paper);
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--green); }
.faq-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--green);
  text-transform: uppercase;
  font-weight: 600;
}
.faq-plus {
  justify-self: end;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 300;
  color: var(--paper-dim);
  transition: transform 0.25s, color 0.25s;
  line-height: 1;
}
.faq-item[open] .faq-plus { transform: rotate(45deg); color: var(--green); }
.faq-answer {
  padding: 0 0 32px 84px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--paper);
  opacity: 0.85;
  max-width: 640px;
}

/* ==================== MOTION UTILITIES ==================== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
.reveal.delay-4 { transition-delay: 0.32s; }
.reveal.delay-5 { transition-delay: 0.40s; }

.slide-left { opacity: 0; transform: translateX(-60px); transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1); }
.slide-left.in { opacity: 1; transform: translateX(0); }
.slide-right { opacity: 0; transform: translateX(60px); transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1); }
.slide-right.in { opacity: 1; transform: translateX(0); }

.scale-in { opacity: 0; transform: scale(0.94); transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1); }
.scale-in.in { opacity: 1; transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .slide-left, .slide-right, .scale-in { opacity: 1 !important; transform: none !important; }
  .mock-crm, .mock-notion, .mock-slack { animation: none !important; }
  .hero::before, .qualify-form-section::before { animation: none !important; }
  .ticker-track { animation: none !important; }
  .timeline-node { animation: none !important; }
  .timeline-pulse { display: none; }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  :root { --gap: 110px; --gap-sm: 72px; }
  .hero { padding: 180px 0 100px; }
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { height: 460px; }
  .mock-crm { width: 320px; }
  .mock-notion { width: 300px; }
  .mock-slack { width: 320px; left: 40px; }
  .summitos-grid { grid-template-columns: 1fr; }
  .casefiles-grid { grid-template-columns: 1fr; gap: 20px; }
  .casefile-wide { grid-template-columns: 1fr; gap: 24px; }
  .byline .container { grid-template-columns: repeat(3, 1fr); gap: 28px 18px; }
  .byline-item:not(:last-child)::after { display: none; }
  .install-item { grid-template-columns: 56px 60px 1fr; gap: 18px; }
  .install-tag { grid-column: 2 / -1; text-align: left; padding-top: 16px; }
  .tv-grid { grid-template-columns: repeat(2, 1fr); }
  .op-grid { grid-template-columns: 1fr; gap: 40px; }
  .extras-grid { grid-template-columns: repeat(2, 1fr); }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .timeline-line, .timeline-pulse { display: none; }
  .qualifier-grid { grid-template-columns: 1fr; }
  .qualify-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --gap: 72px; --gap-sm: 48px; }
  .container, .container.wide, .container.narrow { padding: 0 20px; }
  .ticker-track { font-size: 10px; gap: 28px; }
  nav { top: 32px; padding: 12px 0; }
  .nav-meta { display: none; }
  .nav-cta { padding: 8px 14px; font-size: 12px; }
  .logo-text { font-size: 17px; }
  .logo-mark { width: 22px; height: 22px; }

  /* HERO — punchier + compact single-card mock preview */
  .hero { padding: 120px 0 56px; }
  .hero h1 { font-size: 40px; letter-spacing: -0.03em; line-height: 1.02; margin-bottom: 20px; }
  .hero-meta { font-size: 10px; letter-spacing: 0.16em; margin-bottom: 22px; }
  .hero-sub { font-size: 15px; line-height: 1.55; margin-bottom: 24px; }
  .hero-actions { gap: 12px; flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; padding: 15px 22px; font-size: 15px; }
  .hero-aside { font-size: 10px; text-align: center; margin-top: 14px; justify-content: center; }
  .hero-aside::before { display: none; }
  /* Mobile hero: stacked/floating layout — smaller, tighter, cleaner */
  .hero-visual {
    display: block !important;
    position: relative;
    height: 360px;
    margin-top: 32px;
    perspective: 800px;
  }
  .hero-visual .mock {
    display: block !important;
    position: absolute;
    border-radius: 10px;
  }
  .hero-visual .mock-crm {
    top: 0; left: 0; right: auto; bottom: auto;
    width: 64%;
    max-width: 230px;
    padding: 10px;
    z-index: 3;
  }
  .hero-visual .mock-notion {
    top: 110px; right: 0; left: auto; bottom: auto;
    width: 54%;
    max-width: 200px;
    padding: 10px;
    z-index: 2;
  }
  .hero-visual .mock-slack {
    bottom: 0; left: 12%; right: auto; top: auto;
    width: 60%;
    max-width: 215px;
    padding: 10px;
    z-index: 4;
  }
  /* Show only the first 3 rows of CRM on mobile to keep compact */
  .hero-visual .mock-crm .mock-row:nth-child(n+5) { display: none; }
  /* Show only 3 metrics on Dashboard */
  .hero-visual .mock-notion .mock-metric:nth-child(n+5) { display: none; }
  .hero-visual .mock-notion .spark { display: none; }
  /* Show only 2 messages in Coms */
  .hero-visual .mock-slack .mock-msg:nth-child(n+4) { display: none; }
  .hero-visual .mock-row { font-size: 9px; padding: 6px 8px; margin-bottom: 4px; border-radius: 4px; }
  .hero-visual .mock-row .tag { font-size: 8px; }
  .hero-visual .mock-header { padding-bottom: 7px; margin-bottom: 8px; }
  .hero-visual .mock-dot { width: 7px; height: 7px; }
  .hero-visual .mock-title { font-size: 8px; letter-spacing: 0.1em; }
  .hero-visual .mock-metric { padding: 7px 6px; }
  .hero-visual .mock-metric .k { font-size: 8px; letter-spacing: 0.08em; }
  .hero-visual .mock-metric .v { font-size: 14px; }
  .hero-visual .mock-msg { padding: 6px 0; font-size: 9px; line-height: 1.35; gap: 7px; grid-template-columns: 18px 1fr; }
  .hero-visual .mock-avatar { width: 18px; height: 18px; font-size: 8px; }
  .hero-visual .mock-msg-who { font-size: 9px; }
  .hero-visual .mock-msg-when { font-size: 7px; }

  /* BYLINE — 2x2 grid */
  .byline { padding: 24px 0; }
  .byline .container { grid-template-columns: 1fr 1fr; gap: 18px 12px; }
  .byline-item:not(:last-child)::after { display: none; }
  .byline-num { font-size: 26px; margin-bottom: 4px; }
  .byline-label { font-size: 9px; }

  /* OPERATOR-BUILT — stacked, video first, short */
  .manifesto { padding: 64px 0; }
  .op-grid { grid-template-columns: 1fr; gap: 28px; }
  .op-video { aspect-ratio: 16/10; max-height: none; border-radius: 12px; }
  .op-play { width: 64px; height: 64px; }
  .op-play svg { width: 22px; height: 22px; }
  .op-copy h2 { font-size: 32px; line-height: 1.02; margin-bottom: 18px; }
  .op-lede { font-size: 16px; max-width: 100%; margin-bottom: 22px; }
  .manifesto-label { margin-bottom: 16px; font-size: 10px; }

  /* TAPE */
  .tape { padding: 64px 0; }
  .tape-frame { padding: 24px 18px; border-radius: 12px; }
  .tape-top { flex-direction: column; gap: 20px; margin-bottom: 24px; padding-bottom: 22px; }
  .tape-right { text-align: left; flex-direction: row; flex-wrap: wrap; min-width: 0; gap: 10px; }
  .tape-stat { flex: 1; min-width: 90px; padding: 10px 12px; }
  .tape-stat .k { font-size: 8px; letter-spacing: 0.14em; }
  .tape-stat .v { font-size: 22px; }
  .tape-big { font-size: 56px; letter-spacing: -0.04em; line-height: 0.95; margin-bottom: 8px; }
  .tape-big-sub { font-size: 13px; line-height: 1.4; }
  .tape-mini-label { font-size: 9px; letter-spacing: 0.18em; }
  .tape-bar-wrap { margin-bottom: 22px; }
  .tape-bar-head { font-size: 9px; }
  .tape-timeline { font-size: 9px; }
  .tape-client { grid-template-columns: 100px 1fr 68px; gap: 10px; padding: 7px 0; }
  .tape-client-name { font-size: 11px; }
  .tape-client-value { font-size: 10px; }
  .tape-feed { flex-wrap: wrap; gap: 8px 10px; padding: 10px 14px; font-size: 10px; border-radius: 12px; }
  .tape-feed-ts { margin-left: 0; font-size: 9px; }
  .tape-footer { font-size: 9px; }

  /* SUMMIT OS */
  .summitos { padding: 64px 0; }
  .summitos-header { margin-bottom: 36px; }
  .summitos-grid { grid-template-columns: 1fr; gap: 16px; }
  .summitos-card { padding: 26px 22px; }
  .summitos-card h3 { font-size: 24px; }
  .summitos-card .sub { font-size: 14px; }
  .summitos-card .tag { font-size: 9px; }

  /* ADD-ONS (mobile) */
  .addons-wrap { margin-top: 40px; }
  .addons-label { font-size: 9px; margin-bottom: 16px; }
  .addons-label::before, .addons-label::after { max-width: 40px; }
  .addons-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .addon { padding: 12px 12px; gap: 10px; }
  .addon-icon { width: 28px; height: 28px; }
  .addon-icon svg { width: 14px; height: 14px; }
  .addon-name { font-size: 12px; }

  /* CASE FILES — show charts always on mobile (no hover) */
  .casefiles { padding: 64px 0; }
  .casefiles-header { margin-bottom: 36px; }
  .casefiles-grid { grid-template-columns: 1fr; gap: 14px; }
  .casefile { padding: 26px 22px; border-radius: 10px; }
  .casefile:hover { transform: none; }
  .casefile-name { font-size: 13px; margin-bottom: 14px; }
  .casefile-stat { font-size: 26px; margin-bottom: 14px; }
  .casefile-note { font-size: 14px; padding-top: 14px; }
  .casefile-meta { font-size: 9px; margin-bottom: 16px; }
  .casefile-chart { max-height: 70px; opacity: 1; margin-top: 14px; }
  .casefile-chart svg { height: 42px; }
  .casefile-chart-foot { font-size: 8px; }
  .casefile-wide { grid-template-columns: 1fr; gap: 18px; padding: 26px 22px; }
  .casefiles-note { font-size: 9px; margin-top: 36px; }

  /* CLIENT LOGOS */
  .client-logos { padding: 32px 0 16px; }
  .client-logo-name { font-size: 13px; padding: 3px 0; }
  .client-logos-grid { gap: 12px 20px; }
  .client-logos-label { font-size: 10px; margin-bottom: 20px; }

  /* GUARANTEE */
  .guarantee { padding: 56px 0; }
  .guarantee-copy { font-size: 28px; line-height: 1.2; }
  .guarantee-aside { font-size: 14px; }

  /* TIMELINE (v2 — vertical thread on mobile) */
  .timeline { padding: 64px 0; }
  .timeline-header { margin-bottom: 36px; }
  .tl-wrap { padding: 0; }
  .tl-grid { grid-template-columns: 1fr; gap: 22px; padding-left: 36px; }
  .tl-thread {
    top: 20px; bottom: 80px; left: 20px; right: auto;
    width: 2px; height: auto;
    background: var(--rule-strong);
  }
  .tl-thread-fill {
    width: 100%; height: 0%;
    background: linear-gradient(180deg, var(--green-dark), var(--green), var(--green-bright));
    transition: height 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .tl-thread-pulse {
    top: 0; left: -1px;
    width: 4px; height: 40px;
    animation: tlPulseVertical 5s ease-in-out infinite;
  }
  @keyframes tlPulseVertical {
    0% { top: 0%; opacity: 0.9; }
    100% { top: calc(100% - 40px); opacity: 0; }
  }
  .tl-step { position: relative; }
  .tl-top {
    justify-content: flex-start;
    gap: 14px;
    margin-left: -36px;
  }
  .tl-node {
    width: 40px; height: 40px;
    box-shadow: 0 0 0 4px var(--ink), 0 0 18px rgba(103, 175, 68, 0.25);
  }
  .tl-node-label { font-size: 7px; letter-spacing: 0.18em; }
  .tl-node-num { font-size: 15px; }
  .tl-status { font-size: 9px; padding: 4px 8px; }
  .tl-card { padding: 18px 16px; border-radius: 10px; }
  .tl-week { font-size: 9px; }
  .tl-title { font-size: 18px; margin-bottom: 8px; }
  .tl-desc { font-size: 13px; margin-bottom: 14px; }
  .tl-checks { padding-top: 12px; gap: 6px; }
  .tl-checks li { font-size: 12px; }

  /* SECTION CTA — mobile */
  .section-cta { margin-top: 40px; }
  .section-cta .btn-primary { padding: 14px 26px; font-size: 14px; }

  /* SHOW FLOATING CTA ON MOBILE */
  .floating-cta {
    display: inline-flex;
    bottom: 16px;
    right: 16px;
    padding: 11px 18px;
    font-size: 13px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.45), 0 0 22px rgba(103, 175, 68, 0.35);
  }
  .floating-cta svg { width: 12px; height: 12px; }
  /* Reserve scroll space so floating CTA never overlaps body text at end of page */
  body { padding-bottom: 80px; }

  /* APPLY form */
  .qualify-form-section { padding: 64px 0; }
  .qualify-header { margin-bottom: 36px; }
  .qualify-form { padding: 26px 20px; gap: 16px; border-radius: 10px; }
  .qualify-row { grid-template-columns: 1fr; gap: 16px; }
  .qf-field input, .qf-field select, .qf-field textarea { font-size: 16px; padding: 13px 14px; }
  .qf-submit { padding: 15px 22px; font-size: 15px; }
  .qf-field label { font-size: 9px; }

  /* TESTIMONIAL VIDEOS — mobile: 9:16 vertical + horizontal swipe carousel */
  .testimonial-videos { padding: 48px 0 64px; }
  .tv-header { margin-bottom: 28px; padding: 0 20px; }
  .tv-grid,
  .summitos-grid,
  .casefiles-top3 {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    max-width: none;
    margin: 0;
    padding: 4px 20px 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-padding-left: 20px;
  }
  .tv-grid::-webkit-scrollbar,
  .summitos-grid::-webkit-scrollbar,
  .casefiles-top3::-webkit-scrollbar { display: none; }

  /* Snap children for the new swipe grids */
  .summitos-grid > .summitos-card,
  .casefiles-top3 > .casefile {
    flex: 0 0 82%;
    max-width: 340px;
    scroll-snap-align: center;
  }
  .summitos-grid > .summitos-card:first-child,
  .casefiles-top3 > .casefile:first-child { scroll-snap-align: start; }
  .summitos-grid > .summitos-card:last-child,
  .casefiles-top3 > .casefile:last-child { scroll-snap-align: end; }

  /* Swipe affordance hint */
  .summitos::after,
  .casefiles::after {
    content: '← swipe →';
    display: block;
    text-align: center;
    margin-top: -8px;
    margin-bottom: 8px;
    font-family: var(--mono, monospace);
    font-size: 10px;
    letter-spacing: 0.4em;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    pointer-events: none;
  }
  .tv-card {
    flex: 0 0 82%;
    max-width: 340px;
    scroll-snap-align: center;
  }
  .tv-card:first-child { scroll-snap-align: start; }
  .tv-card:last-child { scroll-snap-align: end; }
  .tv-box { aspect-ratio: 9 / 16; }
  .tv-play { width: 56px; height: 56px; }
  .tv-play svg { width: 18px; height: 18px; }
  .tv-name { font-size: 16px; }
  .tv-co { font-size: 9px; }
  .tv-tag { font-size: 8px; padding: 4px 8px; }

  /* CHAPTER TEXT */
  .chapter-label { font-size: 10px; letter-spacing: 0.16em; }
  .chapter-title { font-size: 32px; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 16px; }
  .chapter-lede { font-size: 15px; margin-bottom: 26px; }

  /* FOOTER */
  footer { padding: 36px 0 28px; }
  footer .container { flex-direction: column; align-items: flex-start; gap: 14px; }
  footer > .container > div { display: flex; flex-wrap: wrap; gap: 4px 14px; font-size: 10px; }
  footer a { margin-left: 0; margin-right: 0; font-size: 10px; }
  .status-pill { font-size: 9px; padding: 5px 10px; }

  /* KILL heavy effects on mobile */
  .cursor-glow { display: none; }
  body::before { display: none; } /* dot grid — too noisy on small screens */
}

/* Small phones */
@media (max-width: 420px) {
  .hero h1 { font-size: 34px; }
  .hero-sub { font-size: 14px; }
  .op-copy h2 { font-size: 28px; }
  .chapter-title { font-size: 28px; }
  .tape-big { font-size: 44px; }
  .casefile-stat { font-size: 22px; }
  .guarantee-copy { font-size: 24px; }
  .summitos-card h3 { font-size: 22px; }
  .byline-num { font-size: 22px; }
  .byline-label { font-size: 8px; }
  .tape-stat .v { font-size: 20px; }
  .tape-client { grid-template-columns: 85px 1fr 60px; gap: 8px; }
  .tape-client-name { font-size: 10px; }
}

/* ==================== VSL SECTION ==================== */
.vsl {
  padding: 96px 0 72px;
  position: relative;
}
.vsl-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}
.vsl-frame {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(103, 175, 68, 0.18);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 60px rgba(103, 175, 68, 0.08);
  aspect-ratio: 16 / 9;
}
.vsl-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #0a0a0a;
}
.vsl-foot {
  text-align: center;
  margin-top: 28px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.2px;
}
.vsl-foot strong { color: #8cff2e; font-weight: 600; }
@media (max-width: 768px) {
  .vsl { padding: 72px 0 56px; }
  .vsl-header { margin-bottom: 28px; }
  .vsl-frame { border-radius: 14px; }
}

/* ==================== CASE FILE — CLICKABLE MINI-CARDS ==================== */
.casefiles-grid-mini {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-bottom: 40px;
}
.casefiles-grid-mini .casefile {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
.casefiles-grid-mini .casefile:hover {
  transform: translateY(-4px);
  border-color: rgba(103, 175, 68, 0.45);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(103, 175, 68, 0.25) inset,
    0 0 36px rgba(103, 175, 68, 0.12);
}
.casefiles-grid-mini .casefile:hover .casefile-cta {
  color: #8cff2e;
  transform: translateX(4px);
}
.case-niche {
  font-size: 10.5px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}
.tag-amber {
  background: rgba(245, 180, 60, 0.14);
  color: #f5b43c;
  border: 1px solid rgba(245, 180, 60, 0.35);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-weight: 600;
}
.tag-blue {
  background: rgba(95, 165, 245, 0.14);
  color: #5fa5f5;
  border: 1px solid rgba(95, 165, 245, 0.35);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-weight: 600;
}
.casefiles-grid-mini .casefile-stat {
  font-size: 28px;
  margin-top: 14px;
  margin-bottom: 8px;
  line-height: 1.15;
}
.casefiles-grid-mini .casefile-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.88);
}
.casefiles-grid-mini .casefile-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
  margin-top: auto;
  margin-bottom: 14px;
}
.casefile-cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
}

/* Top 3 grid: 3 across on desktop, wraps */
.casefiles-top3 {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 28px;
}
@media (max-width: 980px) {
  .casefiles-top3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .casefiles-top3 { grid-template-columns: 1fr; }
}

/* See-all toggle */
.casefiles-more {
  margin-bottom: 32px;
}
.casefiles-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.casefiles-more-btn:hover {
  background: rgba(103, 175, 68, 0.08);
  border-color: rgba(103, 175, 68, 0.3);
  color: #8cff2e;
}
.cf-more-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}
.casefiles-more-btn[aria-expanded="true"] .cf-more-icon {
  transform: rotate(180deg);
}

/* Collapsible table */
.casefiles-table {
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.015);
  animation: cfTableIn 0.4s ease-out;
}
.casefiles-table[hidden] { display: none; }
@keyframes cfTableIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.cf-table-head {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 1.6fr 0.8fr 40px;
  gap: 18px;
  padding: 14px 22px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}
.cf-row {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 1.6fr 0.8fr 40px;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s ease;
  cursor: pointer;
}
.cf-row:last-child { border-bottom: none; }
.cf-row:hover {
  background: rgba(103, 175, 68, 0.06);
}
.cf-row:hover .cf-arrow {
  color: #8cff2e;
  transform: translateX(4px);
}
.cf-niche {
  font-size: 10.5px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}
.cf-name {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}
.cf-result {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}
.cf-result strong {
  color: #8cff2e;
  font-weight: 600;
}
.cf-status { display: flex; align-items: center; }
.cf-arrow {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.4);
  text-align: right;
  transition: color 0.2s ease, transform 0.2s ease;
  font-weight: 400;
}

/* Mobile: collapse table to a stacked list */
@media (max-width: 768px) {
  .cf-table-head { display: none; }
  .cf-row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "niche status"
      "name arrow"
      "result result";
    gap: 6px 12px;
    padding: 16px 18px;
  }
  .cf-row .cf-niche { grid-area: niche; }
  .cf-row .cf-name { grid-area: name; font-size: 15px; }
  .cf-row .cf-result { grid-area: result; padding-top: 4px; }
  .cf-row .cf-status { grid-area: status; justify-content: flex-end; }
  .cf-row .cf-arrow { grid-area: arrow; }
}

/* ==================== CASE STUDY DETAIL PAGES ==================== */
.case-coming {
  padding: 140px 0 120px;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.case-coming .chapter-label {
  margin-bottom: 18px;
}
.case-coming h1 {
  font-family: 'Funnel Display', sans-serif;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 14px;
}
.case-niche-line {
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  margin-bottom: 32px;
}
.case-headline-stat {
  font-family: 'Funnel Display', sans-serif;
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 18px;
}
.case-headline-stat em {
  font-style: normal;
  background: linear-gradient(180deg, #8cff2e 0%, #67af44 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.case-tease {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  max-width: 620px;
  margin-bottom: 40px;
}
.case-coming-msg {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
  max-width: 620px;
}
.case-coming-msg strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 10px;
}
.case-coming-msg p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 24px;
}
.case-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin-bottom: 18px;
  transition: color 0.2s ease;
}
.case-back:hover { color: #8cff2e; }
@media (max-width: 768px) {
  .case-coming { padding: 96px 0 72px; }
  .case-coming h1 { font-size: 38px; }
  .case-headline-stat { font-size: 44px; }
  .case-tease { font-size: 15px; }
}

/* =================================================================
   PROGRAM STATEMENT — slim banner between hero & VSL
   ================================================================= */
.program-statement {
  position: relative;
  padding: 56px 0 56px;
  background: linear-gradient(180deg, rgba(103,175,68,0.04), transparent 60%, rgba(103,175,68,0.03));
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
  overflow: hidden;
  text-align: center;
}
.program-statement::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, var(--green-glow), transparent 70%);
  pointer-events: none;
}
.program-statement .container { position: relative; z-index: 1; }

.ps-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.ps-eyebrow {
  color: var(--green-bright);
  font-weight: 500;
}
.ps-divider {
  width: 1px;
  height: 12px;
  background: var(--paper-dim);
  opacity: 0.4;
}
.ps-by {
  color: var(--paper-dim);
  font-weight: 300;
  letter-spacing: 0.18em;
}
.ps-by strong {
  color: var(--paper);
  font-weight: 500;
  letter-spacing: 0.18em;
}

.ps-headline {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 38px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin: 0 auto;
  max-width: 980px;
  text-wrap: balance;
}
.ps-headline em {
  font-style: italic;
  font-weight: 500;
  color: var(--green-bright);
}
.ps-headline .green-text {
  color: var(--green-bright);
  font-style: italic;
  font-weight: 500;
}

@media (max-width: 768px) {
  .program-statement { padding: 36px 0 36px; }
  .ps-mark { font-size: 9px; letter-spacing: 0.18em; margin-bottom: 12px; gap: 8px; }
  .ps-bracket { font-size: 10px; }
  .ps-headline { font-size: clamp(18px, 4.6vw, 24px); line-height: 1.25; }
}

/* =================================================================
   CASE STUDY — fleshed-out content blocks (Lizzy + future builds)
   ================================================================= */
.case-section {
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1px solid var(--rule-strong);
}
.case-section-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}
.case-section-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--paper);
  margin-bottom: 22px;
  max-width: 920px;
  text-wrap: balance;
}
.case-section-title em {
  font-style: italic;
  font-weight: 500;
  color: rgba(245,239,229,0.78);
}
.case-section-title .green-text {
  color: var(--green-bright);
  font-style: italic;
  font-weight: 500;
}
.case-section-body {
  font-size: 17px;
  line-height: 1.65;
  color: var(--paper-muted);
  max-width: 760px;
}
.case-section-body strong { color: var(--paper); font-weight: 500; }

.case-section-feature {
  background: linear-gradient(180deg, rgba(103,175,68,0.05), transparent);
  border-radius: 16px;
  padding: 48px 40px;
  border: 1px solid var(--rule-green);
}

.case-checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  max-width: 720px;
}
.case-checks li {
  font-size: 16px;
  line-height: 1.5;
  color: var(--paper-muted);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.case-check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-glow-strong);
  color: var(--green-bright);
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}

.case-video {
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1px solid var(--rule-strong);
}
.case-video-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 22px;
}
.case-video-box {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--ink-02);
  max-width: 720px;
  aspect-ratio: 9 / 16;
  border: 1px solid var(--rule-strong);
}
.case-video-box video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.case-cta {
  margin-top: 88px;
  padding: 56px 40px;
  background: var(--ink-03);
  border: 1px solid var(--rule-green);
  border-radius: 16px;
  text-align: center;
}
.case-cta-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 12px;
}
.case-cta-sub {
  font-size: 16px;
  color: var(--paper-muted);
  margin-bottom: 28px;
}
.case-cta .btn-primary {
  display: inline-flex;
}
.case-cta-note {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-dim);
}

@media (max-width: 768px) {
  .case-section { margin-top: 56px; padding-top: 40px; }
  .case-section-title { font-size: clamp(22px, 6vw, 28px); }
  .case-section-feature { padding: 32px 24px; }
  .case-checks li { font-size: 15px; }
  .case-video { margin-top: 56px; padding-top: 40px; }
  .case-cta { padding: 40px 24px; margin-top: 64px; }
}
