/* ═══════════════════════════════════════════════════════
   ClawBank — Investor Deck Styles
═══════════════════════════════════════════════════════ */

@font-face {
  font-family: 'PP Nikkei Pacific';
  src: url('fonts/PPNikkeiPacific-Regular.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Tiempos Headline';
  src: url('fonts/TiemposHeadline-Medium.otf') format('opentype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Tiempos Headline';
  src: url('fonts/TiemposHeadline-MediumItalic.otf') format('opentype');
  font-weight: 500; font-style: italic; font-display: swap;
}

:root {
  --bg:          #080808;
  --surface:     #111111;
  --surface-2:   #141210;
  --well:        #0c0b0a;
  --text:        #f0ede6;
  --text-muted:  #9D948D;
  --text-dim:    #6a6259;
  --accent:      #EB6E12;
  --accent-dim:  rgba(235, 110, 18, 0.10);
  --accent-glow: rgba(235, 110, 18, 0.22);
  --border:      rgba(240, 237, 230, 0.07);
  --border-hi:   rgba(240, 237, 230, 0.14);
  --status-green:#4ade80;
  --font-display:'PP Nikkei Pacific', Georgia, serif;
  --font-italic: 'Tiempos Headline', Georgia, serif;
  --font-mono:   'IBM Plex Mono', 'Courier New', monospace;
  --italic-scale: 0.93;
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: #000; color: var(--text); }

deck-stage { background: #000; }

/* Slide canvas — every section is 1920×1080 */
section.slide {
  width: 1920px; height: 1080px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-mono); font-weight: 300;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow: hidden;
  padding: 132px 96px 96px;
  display: flex; flex-direction: column;
}
section.slide.surface-2 { background: var(--bg); } /* unified bg per request */

/* Grain overlay on every slide */
section.slide::after {
  content:''; position:absolute; inset:0; pointer-events:none; z-index:9000;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  font-size: calc(1em * var(--italic-scale, 0.93));
  color: var(--accent);
}

/* ── Chrome (top + bottom strips) ───────────────────── */
.chrome {
  position: absolute; left: 96px; right: 96px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono); font-size: 15px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
  z-index: 50;
}
.chrome--top    { top: 56px; }
.chrome--bottom { bottom: 52px; }
.chrome .logo   { height: 40px; width: auto; opacity: 0.52; filter: saturate(0.4); }
.chrome .tag    { color: var(--text-muted); }
.chrome .tag.accent { color: var(--accent); }
.chrome .dot    { color: var(--text-dim); opacity: 0.6; padding: 0 14px; }
.chrome .num    { color: var(--text-muted); font-variant-numeric: tabular-nums; }

/* ── Section label / kicker ─────────────────────────── */
.kicker {
  font-family: var(--font-mono); font-size: 14px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 38px;
}
.kicker .num { color: var(--text-muted); font-variant-numeric: tabular-nums; }
.kicker::before {
  content: ''; display: inline-block; width: 28px; height: 1px;
  background: var(--accent);
}

/* ── Display headlines ──────────────────────────────── */
.h-display {
  font-family: var(--font-display); font-weight: 400;
  font-size: 168px; line-height: 0.96; letter-spacing: -0.03em;
  color: var(--text);
}
.h-xl {
  font-family: var(--font-display); font-weight: 400;
  font-size: 132px; line-height: 1.0; letter-spacing: -0.028em;
  color: var(--text);
}
.h-lg {
  font-family: var(--font-display); font-weight: 400;
  font-size: 96px; line-height: 1.04; letter-spacing: -0.024em;
  color: var(--text);
}
.h-md {
  font-family: var(--font-display); font-weight: 400;
  font-size: 64px; line-height: 1.08; letter-spacing: -0.02em;
  color: var(--text);
}
.h-sm {
  font-family: var(--font-display); font-weight: 400;
  font-size: 40px; line-height: 1.12; letter-spacing: -0.018em;
  color: var(--text);
}

.numeral {
  font-family: var(--font-display); font-weight: 400;
  font-size: 168px; line-height: 0.86; letter-spacing: -0.03em;
  color: var(--text);
}

/* ── Body / sub copy ────────────────────────────────── */
.lead {
  font-family: var(--font-mono); font-weight: 300;
  font-size: 28px; line-height: 1.55;
  color: var(--text-muted);
  max-width: 1080px;
}
.body {
  font-family: var(--font-mono); font-weight: 300;
  font-size: 22px; line-height: 1.7;
  color: var(--text-muted);
}
.body--bright { color: var(--text); }

.eyebrow {
  font-family: var(--font-mono); font-weight: 500;
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-muted);
}
.eyebrow--accent { color: var(--accent); }

/* ── Quote block ────────────────────────────────────── */
.t-quote {
  font-family: var(--font-italic); font-style: italic; font-weight: 500;
  font-size: 56px; line-height: 1.3; color: var(--text);
  max-width: 1500px;
}

/* ── Cards (used in product / traction / etc) ───────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 40px;
  display: flex; flex-direction: column;
}
.card .card-num {
  font-family: var(--font-display); font-weight: 400;
  font-size: 28px; color: var(--accent); margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.card .card-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: 40px; line-height: 1.1; letter-spacing: -0.018em;
  margin-bottom: 22px; color: var(--text);
}
.card .card-body { font-size: 20px; line-height: 1.65; color: var(--text-muted); }

/* ── Bullet list ────────────────────────────────────── */
.list { list-style: none; padding: 0; margin: 0; }
.list li {
  position: relative;
  padding: 14px 0 14px 32px;
  font-family: var(--font-mono); font-weight: 300;
  font-size: 22px; line-height: 1.55;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.list li::before {
  content:''; position: absolute; left: 0; top: 26px;
  width: 16px; height: 1px; background: var(--accent);
}
.list li:last-child { border-bottom: none; }
.list--muted li { color: var(--text-muted); }
.list--tight li { padding: 8px 0 8px 32px; font-size: 20px; border-bottom: none; }
.list--tight li::before { top: 20px; }

/* ── Inline grid utilities ──────────────────────────── */
.row { display: flex; gap: 0; }
.col { flex: 1; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }

/* "Border-gap" joined card grid */
.border-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 2px;
}
.border-grid > .cell {
  background: var(--surface);
  padding: 36px 40px;
}

/* ── Tables ─────────────────────────────────────────── */
table.cb-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 22px;
}
table.cb-table th {
  text-align: left;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 18px 0;
  border-bottom: 1px solid var(--border-hi);
}
table.cb-table td {
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-weight: 300;
  vertical-align: top;
}
table.cb-table td.surface-label {
  font-family: var(--font-display); font-weight: 400; font-size: 32px;
  letter-spacing: -0.015em;
  color: var(--text);
  width: 30%;
}
table.cb-table td.mechanic { color: var(--text-muted); font-size: 22px; line-height: 1.5; }
table.cb-table tr:last-child td { border-bottom: none; }

/* ── Code window (used on narrative + traction) ─────── */
.code-win {
  background: var(--well);
  border: 1px solid var(--border-hi);
  border-radius: 4px;
  overflow: hidden;
}
.code-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.code-dots { display: flex; gap: 8px; }
.code-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--border-hi); }
.code-file {
  font-family: var(--font-mono); font-size: 14px; font-weight: 400;
  color: var(--text-muted); letter-spacing: 0.04em;
}
.code-body {
  padding: 28px 32px;
  font-family: var(--font-mono); font-size: 18px; line-height: 1.85;
  color: var(--text);
}
.c-key { color: var(--text-muted); }
.c-acc { color: var(--accent); }
.c-str { color: #c8a97e; }
.c-br  { color: #5a5248; }
.c-mute { color: var(--text-dim); }

/* ── Stat block ─────────────────────────────────────── */
.stat {
  display: flex; flex-direction: column; gap: 18px;
}
.stat .stat-num {
  font-family: var(--font-display); font-weight: 400;
  font-size: 168px; line-height: 0.86; letter-spacing: -0.03em;
  color: var(--text);
}
.stat .stat-num em { color: var(--accent); }
.stat .stat-label {
  font-family: var(--font-mono); font-size: 14px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Live indicator ─────────────────────────────────── */
.live {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 13px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted);
}
.live .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--status-green);
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.18);
  animation: pulse 1.7s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:.55} 50%{opacity:1} }

/* ── Title-slide — centered, simplified ─────────────── */
.title-slide {
  padding: 0;
  align-items: center;
  justify-content: center;
}

.title-slide .title-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(240,237,230,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,237,230,.045) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 88%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 88%);
}

.title-slide .title-claw-bg {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  height: 980px; width: 980px;
  opacity: 0.55;
  mix-blend-mode: screen;
  filter: saturate(1.15) contrast(1.05);
  pointer-events: none;
  z-index: 1;
}

.title-slide .title-glow {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 1100px; height: 1100px;
  background: radial-gradient(circle, rgba(235,110,18,0.16) 0%, transparent 62%);
  pointer-events: none;
  z-index: 2;
  animation: pulse-glow 4s ease-in-out infinite;
}
@keyframes pulse-glow { 0%,100%{opacity:.7} 50%{opacity:1} }

.title-slide .title-stack {
  position: absolute;
  top: 50%; left: 0; right: 0;
  transform: translateY(-50%);
  z-index: 5;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}

.title-slide .title-brand {
  position: absolute;
  bottom: 100%;
  margin-bottom: 32px;
  display: flex; justify-content: center;
}
.title-slide .title-brand img {
  height: 88px; width: auto;
  opacity: 0.96;
}

.title-slide .title-head {
  font-family: var(--font-display); font-weight: 400;
  font-size: 200px; line-height: 0.98; letter-spacing: -0.03em;
  color: var(--text);
  margin: 0;
}
.title-slide .title-head em { color: var(--accent); }

.title-slide .title-date {
  position: absolute;
  top: 100%;
  font-family: var(--font-mono); font-weight: 500;
  font-size: 15px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 32px;
  white-space: nowrap;
}

.title-slide .title-foot {
  position: absolute;
  left: 96px; right: 96px; bottom: 52px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-weight: 500;
  font-size: 15px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  z-index: 50;
  white-space: nowrap;
}
.title-slide .title-foot > * { white-space: nowrap; }

/* ── Section-divider slide ──────────────────────────── */
.divider {
  background: var(--bg);
}
.divider .divider-inner {
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
}

/* ── Team avatars (placeholder circles) ──────────── */
/* ── Manfred portrait placeholder (vision slide) ─── */
.manfred-frame {
  width: 520px; height: 520px;
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.manfred-frame::before {
  content:'';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(235,110,18,0.04) 0 2px, transparent 2px 5px),
    radial-gradient(ellipse at 50% 40%, rgba(235,110,18,0.10), transparent 65%);
  pointer-events: none;
}
.manfred-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
}
.manfred-label {
  font-family: var(--font-display); font-weight: 400;
  font-size: 56px; letter-spacing: -0.02em;
  color: var(--text-muted);
}
.manfred-sub {
  font-family: var(--font-mono); font-weight: 500;
  font-size: 13px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.team-cell { padding: 40px 28px; display:flex; flex-direction:column; align-items:flex-start; }
.avatar {
  width: 132px; height: 132px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-hi);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.avatar::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(235,110,18,0.08), transparent 70%);
}
.avatar > span {
  position: relative;
  font-family: var(--font-display); font-weight: 400;
  font-size: 58px; line-height: 1;
  color: var(--text-muted);
  letter-spacing: -0.02em;
}
.mt-1  { margin-top: 8px; }
.mt-2  { margin-top: 16px; }
.mt-3  { margin-top: 24px; }
.mt-4  { margin-top: 32px; }
.mt-5  { margin-top: 48px; }
.mt-6  { margin-top: 64px; }
.mt-7  { margin-top: 96px; }
.mb-3  { margin-bottom: 24px; }
.mb-4  { margin-bottom: 32px; }
.mb-5  { margin-bottom: 48px; }
.flex-1 { flex: 1; }
.accent { color: var(--accent); }
.muted  { color: var(--text-muted); }
.dim    { color: var(--text-dim); }
.bright { color: var(--text); }
.tabular { font-variant-numeric: tabular-nums; }

/* ── Watermark mark on closing slide ───────────────── */
.mark-watermark {
  position: absolute;
  right: -120px; bottom: -120px;
  width: 900px;
  opacity: 0.04;
  pointer-events: none;
  filter: invert(1);
}

/* ── v2 additions: cover / vision / signal / momentum ───────── */

/* Bigger display for the cover line */
.h-mega {
  font-family: var(--font-display); font-weight: 400;
  font-size: 232px; line-height: 0.94; letter-spacing: -0.032em;
  color: var(--text);
}
.h-mega em { color: var(--accent); }

/* Centered cover variant of the title slide chrome */
.cover-slide { padding: 0; align-items: stretch; justify-content: stretch; }
.cover-stage {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 132px 132px 132px;
}
.cover-brand {
  position: absolute;
  top: 56px; left: 96px;
  display: flex; align-items: center; gap: 18px;
}
.cover-brand img { height: 38px; width: auto; opacity: 0.88; }
.cover-brand .tag {
  font-family: var(--font-mono); font-weight: 500;
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-muted);
}
.cover-foot {
  position: absolute;
  left: 96px; right: 96px; bottom: 52px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-weight: 500;
  font-size: 15px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  z-index: 50;
  white-space: nowrap;
}
.cover-marker {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--text-muted);
}
.cover-marker::before {
  content: ''; width: 36px; height: 1px; background: var(--accent);
}

/* Epigraph used on Vision slide */
.epigraph {
  display: flex; flex-direction: column; gap: 14px;
  border-left: 1px solid var(--accent);
  padding: 6px 0 6px 32px;
  max-width: 1200px;
}
.epigraph .epigraph-quote {
  font-family: var(--font-italic); font-style: italic; font-weight: 500;
  font-size: 30px; line-height: 1.4; color: var(--text);
  letter-spacing: -0.005em;
}
.epigraph .epigraph-attr {
  font-family: var(--font-mono); font-weight: 500;
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-muted);
}

/* Massive pull-quote for the SIGNAL slide */
.signal-stack {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(160px, 200px) 1fr;
  gap: 88px;
  align-items: center;
}
.signal-meta {
  display: flex; flex-direction: column; gap: 22px;
  border-top: 1px solid var(--accent);
  padding-top: 28px;
}
.signal-meta .signal-eyebrow {
  font-family: var(--font-mono); font-weight: 500;
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
}
.signal-meta .signal-attr {
  font-family: var(--font-display); font-weight: 400;
  font-size: 36px; line-height: 1.05; letter-spacing: -0.015em;
  color: var(--text);
}
.signal-meta .signal-attr-sub {
  font-family: var(--font-mono); font-weight: 300;
  font-size: 16px; letter-spacing: 0.04em;
  color: var(--text-muted);
}
.signal-quote {
  font-family: var(--font-italic); font-style: italic; font-weight: 500;
  font-size: 84px; line-height: 1.22; letter-spacing: -0.015em;
  color: var(--text);
  position: relative;
  max-width: 1400px;
}
.signal-quote em {
  font-size: 1em; /* keep italic emphasis at quote size — no scale-down */
}
.signal-quote::before {
  content: '\201C';
  position: absolute; left: -56px; top: -32px;
  font-family: var(--font-italic);
  font-size: 200px; line-height: 1;
  color: var(--accent); opacity: 0.5;
}

/* Closer line — "Machine City has started." etc. */
.closer {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--accent);
  font-family: var(--font-italic); font-style: italic; font-weight: 500;
  font-size: 44px; line-height: 1.2; color: var(--accent);
  letter-spacing: -0.012em;
  max-width: 1400px;
}

/* Primitive list — solution slide */
.primitives {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 2px;
  margin-top: 56px;
}
.primitive {
  background: var(--surface);
  padding: 28px 32px;
  display: flex; align-items: baseline; gap: 22px;
}
.primitive .p-num {
  font-family: var(--font-display); font-weight: 400;
  font-size: 22px;
  color: var(--accent);
  min-width: 36px;
  font-variant-numeric: tabular-nums;
}
.primitive .p-name {
  font-family: var(--font-display); font-weight: 400;
  font-size: 30px; line-height: 1.1; letter-spacing: -0.018em;
  color: var(--text);
  min-width: 360px;
}
.primitive .p-desc {
  font-family: var(--font-mono); font-weight: 300;
  font-size: 17px; line-height: 1.55;
  color: var(--text-muted);
  flex: 1;
}

/* Scale slide — chip → decisions */
.scale-frame {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  flex: 1;
}
.scale-big-num {
  font-family: var(--font-display); font-weight: 400;
  font-size: 280px; line-height: 0.86; letter-spacing: -0.034em;
  color: var(--text);
}
.scale-big-num em { color: var(--accent); }
.scale-equation {
  display: flex; flex-direction: column; gap: 24px;
  font-family: var(--font-mono); font-weight: 300;
  font-size: 22px; line-height: 1.55; color: var(--text-muted);
}
.scale-equation .row-eq {
  display: flex; align-items: baseline; gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.scale-equation .row-eq:last-child { border-bottom: none; }
.scale-equation .eq-key {
  font-family: var(--font-mono); font-size: 13px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-muted); min-width: 200px;
}
.scale-equation .eq-val {
  font-family: var(--font-display); font-weight: 400;
  font-size: 36px; line-height: 1.05; letter-spacing: -0.015em;
  color: var(--text); flex: 1;
}
.scale-equation .eq-val em { color: var(--accent); }

/* Momentum slide — timestamped milestones */
.momentum-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  flex: 1;
  align-items: stretch;
}
.momentum-log {
  border-top: 1px solid var(--border-hi);
}
.momentum-row {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 32px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.momentum-row .m-date {
  font-family: var(--font-mono); font-weight: 500;
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.momentum-row .m-event {
  font-family: var(--font-display); font-weight: 400;
  font-size: 26px; line-height: 1.18; letter-spacing: -0.015em;
  color: var(--text);
}
.momentum-row .m-sub {
  display: block;
  font-family: var(--font-mono); font-weight: 300;
  font-size: 15px; letter-spacing: 0.02em;
  color: var(--text-muted);
  margin-top: 4px;
}
.momentum-row .m-meta {
  font-family: var(--font-mono); font-weight: 500;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
}

.founder-callout {
  align-self: stretch;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 1px solid var(--accent);
  border-radius: 2px;
  padding: 44px 40px;
  display: flex; flex-direction: column; gap: 24px;
  justify-content: center;
}
.founder-callout .fc-eyebrow {
  font-family: var(--font-mono); font-weight: 500;
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
}
.founder-callout .fc-name {
  font-family: var(--font-display); font-weight: 400;
  font-size: 56px; line-height: 1.04; letter-spacing: -0.02em;
  color: var(--text);
}
.founder-callout .fc-line {
  font-family: var(--font-italic); font-style: italic; font-weight: 500;
  font-size: 26px; line-height: 1.4;
  color: var(--text);
}
.founder-callout .fc-meta {
  font-family: var(--font-mono); font-weight: 300;
  font-size: 16px; line-height: 1.55;
  color: var(--text-muted);
}

/* Moat slide — head-start ladder */
.moat-ladder {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 2px;
}
.moat-step {
  background: var(--surface);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 240px;
}
.moat-step .ms-num {
  font-family: var(--font-display); font-weight: 400;
  font-size: 22px; color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.moat-step .ms-name {
  font-family: var(--font-display); font-weight: 400;
  font-size: 24px; line-height: 1.1; letter-spacing: -0.015em;
  color: var(--text);
}
.moat-step .ms-desc {
  font-family: var(--font-mono); font-weight: 300;
  font-size: 13px; line-height: 1.55;
  color: var(--text-muted);
  margin-top: auto;
}
.moat-adjacent {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex; align-items: baseline; gap: 24px;
  font-family: var(--font-mono); font-weight: 300;
  font-size: 16px; line-height: 1.55;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.moat-adjacent .ma-key {
  font-family: var(--font-mono); font-weight: 500;
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-dim);
}

/* Ask slide — statement on top */
.ask-statement {
  font-family: var(--font-display); font-weight: 400;
  font-size: 108px; line-height: 0.98; letter-spacing: -0.026em;
  color: var(--text);
  max-width: 1700px;
  margin-bottom: 48px;
}
.ask-statement em { color: var(--accent); }
.ask-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 88px;
  align-items: start;
  border-top: 1px solid var(--border-hi);
  padding-top: 56px;
}

/* ── "Pill" tag chip ──────────────────────────────── */
.chip {
  display: inline-flex; align-items: center;
  font-family: var(--font-mono); font-weight: 500;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 14px;
  border: 1px solid var(--border-hi);
  border-radius: 2px;
  white-space: nowrap;
}
.chip--accent { color: var(--accent); border-color: rgba(235,110,18,0.38); }
.chip--green  { color: var(--status-green); border-color: rgba(74,222,128,0.30); }

/* Divider line */
.hr {
  height: 1px; background: var(--border-hi); border: 0;
  margin: 0;
}
