/* ═══════════════════════════════════════════════════════════════
   ANTON PAYMENTS — INVESTOR DECK — SHARED STYLES
   Version: 0.3
   ═══════════════════════════════════════════════════════════════ */

/* ── Brand tokens ── */
:root {
  --ink: #0B0E17;
  --navy: #111827;
  --blue: #1B4FD8;
  --accent: #4F8EF7;
  --light-blue: #7CB8FF;
  --slate: #64748B;
  --muted: #94A3B8;
  --border: #E2E8F0;
  --surface: #F8FAFC;
  --font: 'DM Sans', -apple-system, sans-serif;
  --mono: 'DM Mono', monospace;

  /* Slide dimensions (16:9) */
  --slide-w: 960px;
  --slide-h: 540px;
}

/* ── Reset ── */
* { box-sizing: border-box; margin: 0; padding: 0; }


/* ═══════════════════════════════════════════════════════════════
   SLIDE FRAME
   ═══════════════════════════════════════════════════════════════ */

.slide {
  width: var(--slide-w);
  height: var(--slide-h);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  font-family: var(--font);
}

/* Noise texture — shared across dark slides */
.slide-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}


/* ═══════════════════════════════════════════════════════════════
   GEOMETRIC PATTERN — Reusable orbital circles
   ═══════════════════════════════════════════════════════════════ */

.geo-pattern {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.geo-pattern.top-right    { top: -60px; right: -40px; opacity: 0.045; }
.geo-pattern.bottom-right { bottom: -80px; right: -60px; opacity: 0.035; }
.geo-pattern.bottom-left  { bottom: -70px; left: -50px; opacity: 0.035; }
.geo-pattern.center-right { top: 50%; right: -100px; transform: translateY(-50%); opacity: 0.03; }


/* ═══════════════════════════════════════════════════════════════
   ANTON MARK — SVG paths for inline use
   ═══════════════════════════════════════════════════════════════ */

/* Use data attributes for sizing, colors handled via fill on the SVG */


/* ═══════════════════════════════════════════════════════════════
   SLIDE TYPE: COVER
   ═══════════════════════════════════════════════════════════════ */

.slide-cover {
  background: var(--ink);
}

.cover-glow {
  position: absolute;
  top: 46%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 450px;
  background: radial-gradient(ellipse at center, rgba(27,79,216,0.12) 0%, rgba(79,142,247,0.04) 40%, transparent 70%);
  z-index: 2;
  pointer-events: none;
}

.cover-glow-secondary {
  position: absolute;
  top: 40%; left: 55%;
  transform: translate(-50%, -50%);
  width: 400px; height: 300px;
  background: radial-gradient(ellipse at center, rgba(79,142,247,0.06) 0%, transparent 60%);
  z-index: 2;
  pointer-events: none;
}

/* Centered orbital behind logo */
.cover-orbital {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -52%);
  z-index: 3;
  pointer-events: none;
  animation: orbital-spin 120s linear infinite;
}

@keyframes orbital-spin {
  from { transform: translate(-50%, -52%) rotate(0deg); }
  to   { transform: translate(-50%, -52%) rotate(360deg); }
}

.cover-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.cover-confidential {
  font-family: var(--mono);
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #4F6A85;
  display: flex; align-items: center; gap: 8px;
}
.cover-confidential::before {
  content: ''; width: 5px; height: 5px;
  border-radius: 50%; background: #4F6A85;
}

.cover-doc-tag {
  font-family: var(--mono);
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(79,142,247,0.1);
  border: 1px solid rgba(79,142,247,0.2);
  padding: 5px 14px; border-radius: 4px;
}

.cover-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 10;
  padding-bottom: 20px;
}

.cover-mark { margin-bottom: 24px; opacity: 0.95; }

.cover-wordmark {
  font-size: 42px; font-weight: 600;
  color: #fff; letter-spacing: -0.025em;
  margin-bottom: 6px; text-align: center;
}

.cover-rule {
  width: 52px; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  border-radius: 2px;
  margin: 22px 0;
  position: relative;
  overflow: visible;
}

.cover-rule::after {
  content: '';
  position: absolute;
  top: -1px; left: -20%;
  width: 140%;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(79,142,247,0.4), transparent);
  border-radius: 4px;
  animation: rule-shimmer 4s ease-in-out infinite;
}

@keyframes rule-shimmer {
  0%, 100% { opacity: 0; transform: translateX(-30%); }
  50%      { opacity: 1; transform: translateX(30%); }
}

.cover-subtitle {
  font-size: 13.5px; font-weight: 400;
  color: #6B7F99; letter-spacing: 0.03em;
  text-align: center;
}

.cover-tagline {
  font-size: 14px; font-weight: 400;
  color: rgba(79,142,247,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 10px;
}

.cover-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 48px;
  display: flex; align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.05);
  z-index: 10;
}

.cover-bottom-left {
  display: flex; align-items: center; gap: 16px;
}

.cover-bottom-mark {
  flex-shrink: 0;
}

.cover-meta {
  display: flex; gap: 28px;
}

.cover-meta-item,
.cover-copyright {
  font-family: var(--mono);
  font-size: 9px; color: #3A4F65;
  letter-spacing: 0.06em;
}


/* ═══════════════════════════════════════════════════════════════
   SLIDE TYPE: ACT DIVIDER
   ═══════════════════════════════════════════════════════════════ */

.slide-act {
  background: var(--ink);
}

/* Top accent gradient bar */
.act-top-bar {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--accent), transparent 60%);
  z-index: 20;
}

.act-glow {
  position: absolute;
  top: 42%; left: 30%;
  transform: translate(-50%, -50%);
  width: 600px; height: 420px;
  background: radial-gradient(ellipse at center, rgba(27,79,216,0.1) 0%, rgba(79,142,247,0.03) 45%, transparent 70%);
  z-index: 2;
  pointer-events: none;
}

.act-accent-line {
  position: absolute;
  left: 48px; top: 50%;
  transform: translateY(-50%);
  width: 2px; height: 180px;
  background: linear-gradient(180deg, transparent 0%, var(--blue) 25%, var(--accent) 75%, transparent 100%);
  z-index: 5;
  border-radius: 2px;
  animation: accent-pulse 3s ease-in-out infinite;
}

@keyframes accent-pulse {
  0%, 100% { opacity: 0.7; height: 180px; }
  50%      { opacity: 1; height: 200px; }
}

/* Large faded watermark number */
.act-watermark {
  position: absolute;
  right: 80px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font);
  font-size: 280px;
  font-weight: 700;
  color: rgba(255,255,255,0.035);
  z-index: 3;
  pointer-events: none;
  letter-spacing: -0.04em;
  line-height: 1;
  user-select: none;
}

.act-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: center;
  padding-left: 80px; padding-right: 120px;
  z-index: 10;
}

.act-overline {
  font-family: var(--mono);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(79,142,247,0.08);
  border: 1px solid rgba(79,142,247,0.15);
  padding: 5px 14px 5px 0;
  border-radius: 4px;
  width: fit-content;
}
.act-overline::before {
  content: ''; width: 20px; height: 1.5px;
  background: var(--accent); display: inline-block;
  margin-left: 14px;
}

.act-title {
  font-size: 54px; font-weight: 600;
  color: #fff; letter-spacing: -0.03em;
  line-height: 1.08; margin-bottom: 22px;
  text-shadow: 0 2px 30px rgba(27,79,216,0.15);
}

.act-subtitle {
  font-size: 16px; font-weight: 400;
  color: #6B7F99; line-height: 1.6;
  max-width: 480px;
}

/* ── Shared bottom bar (dark slides) ── */
.slide-bottom-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 48px;
  display: flex; align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.04);
  z-index: 10;
}

.bottom-logo {
  display: flex; align-items: center; gap: 8px;
}

.bottom-logo-text {
  font-size: 11px; font-weight: 500;
  color: #3A4F65; letter-spacing: 0.01em;
}

.bottom-slide-num {
  font-family: var(--mono);
  font-size: 9px; color: #3A4F65;
  letter-spacing: 0.08em;
}


/* ═══════════════════════════════════════════════════════════════
   SLIDE TYPE: CONTENT (Light background)
   ═══════════════════════════════════════════════════════════════ */

.slide-content-light {
  background: #fff;
}

/* ── Top bar (light) ── */
.content-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 28px 52px;
  display: flex; align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.content-top-label {
  font-family: var(--mono);
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; gap: 8px;
}

.content-top-label::before {
  content: ''; width: 5px; height: 5px;
  border-radius: 50%; background: var(--accent);
}

/* ── Content area ── */
.content-body {
  position: absolute;
  inset: 0;
  padding: 72px 52px 68px;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

/* ── Section overline ── */
.content-overline {
  font-family: var(--mono);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}

.content-overline::before {
  content: ''; width: 18px; height: 1.5px;
  background: var(--accent); display: inline-block;
}

/* ── Headline ── */
.content-headline {
  font-size: 28px; font-weight: 600;
  color: var(--ink); letter-spacing: -0.025em;
  line-height: 1.2; margin-bottom: 24px;
}

/* ── Sub-headline / section label ── */
.content-section-label {
  font-size: 13px; font-weight: 600;
  color: var(--ink); margin-bottom: 10px;
  margin-top: 4px;
}

/* ── Body text ── */
.content-text {
  font-size: 13px; color: #374151;
  line-height: 1.65; margin-bottom: 10px;
}

/* ── Bullet point ── */
.content-point {
  font-size: 13px; color: #374151;
  line-height: 1.6; margin-bottom: 8px;
  padding-left: 18px; position: relative;
}

.content-point::before {
  content: ''; position: absolute;
  left: 0; top: 9px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* ── Emphasized / highlighted point ── */
.content-point-highlight {
  font-size: 13px; color: #1E3A6E;
  line-height: 1.6; margin-bottom: 8px;
  padding: 10px 14px 10px 18px;
  background: #EEF4FF;
  border-left: 3px solid var(--blue);
  border-radius: 0 5px 5px 0;
  position: relative;
}

/* ── Quote / thesis line ── */
.content-quote {
  font-size: 18px; font-weight: 500;
  font-style: italic; color: var(--blue);
  border-left: 3px solid var(--blue);
  padding-left: 18px; margin: 16px 0;
  line-height: 1.45;
}

/* ── Kicker line ── */
.content-kicker {
  font-size: 14px; font-weight: 600;
  color: var(--ink); margin-top: 10px;
}

/* ── Three-column grid ── */
.content-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px; margin: 8px 0;
}

/* ── Grid card ── */
.content-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 16px 18px;
}

.content-card-label {
  font-family: var(--mono);
  font-size: 8px; font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.content-card-text {
  font-size: 12px; color: #374151;
  line-height: 1.6;
}

/* ── Divider line ── */
.content-divider {
  width: 100%; height: 1px;
  background: var(--border);
  margin: 14px 0;
}

/* ── Light slide bottom bar ── */
.slide-bottom-bar-light {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 52px;
  display: flex; align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  z-index: 10;
}

.bottom-logo-text-light {
  font-size: 11px; font-weight: 500;
  color: var(--muted); letter-spacing: 0.01em;
}

.bottom-slide-num-light {
  font-family: var(--mono);
  font-size: 9px; color: var(--muted);
  letter-spacing: 0.08em;
}

/* ── Subtle accent decoration for light slides ── */
.content-accent-bar {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--accent), transparent 60%);
  z-index: 20;
}


/* ═══════════════════════════════════════════════════════════════
   SLIDE TYPE: PROBLEM (Dark cinematic)
   ═══════════════════════════════════════════════════════════════ */

.slide-problem {
  background: var(--ink);
}

.problem-glow {
  position: absolute;
  top: 55%; left: 40%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(27,79,216,0.08) 0%, transparent 65%);
  z-index: 2;
  pointer-events: none;
}

.problem-body-v2 {
  position: absolute;
  inset: 0;
  padding: 38px 64px 80px;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

/* ── The obvious problem — compact, muted, dismissed ── */
.problem-known {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
}

.problem-known-num {
  font-family: var(--mono);
  font-size: 10px; font-weight: 600;
  color: #4F6A85;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 5px;
  padding: 4px 8px;
  flex-shrink: 0;
  margin-top: 1px;
}

.problem-known-text {
  font-size: 12.5px; color: #5A6F85;
  line-height: 1.6;
}

.problem-known-label {
  font-weight: 600;
  color: #7B8FA5;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.1em;
  font-family: var(--mono);
}

.problem-known-sep {
  color: #3A4F65;
  margin: 0 8px;
}

/* ── Divider ── */
.problem-divider-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06) 20%, rgba(79,142,247,0.12) 50%, rgba(255,255,255,0.06) 80%, transparent);
  margin: 20px 0;
}

/* ── The hidden problem — the hero reveal ── */
.problem-reveal {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.problem-reveal-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.problem-num {
  width: 26px; height: 26px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 10px; font-weight: 600;
  color: #6B7F99;
  flex-shrink: 0;
}

.problem-num-accent {
  background: rgba(79,142,247,0.12);
  border-color: rgba(79,142,247,0.25);
  color: var(--accent);
}

.problem-reveal-label {
  font-size: 11px; font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--mono);
}

.problem-reveal-hero {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 18px;
}

.problem-reveal-stat {
  font-size: 88px;
  font-weight: 700;
  color: rgba(239,68,68,0.18);
  letter-spacing: -0.04em;
  line-height: 1;
  flex-shrink: 0;
  font-family: var(--font);
  text-shadow: 0 0 60px rgba(239,68,68,0.1);
}

.problem-reveal-insight {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.problem-reveal-line {
  font-size: 20px;
  font-weight: 500;
  color: #C8D6E5;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.problem-reveal-line em {
  font-style: normal;
  color: #F87171;
  font-weight: 600;
}

.problem-reveal-sub {
  font-size: 14px;
  color: #5A6F85;
  line-height: 1.65;
  max-width: 620px;
}

/* ── Kicker ── */
.problem-kicker-v2 {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: rgba(248,113,113,0.7);
  letter-spacing: 0.01em;
  padding-top: 16px;
  border-top: 1px solid rgba(239,68,68,0.1);
}


/* ═══════════════════════════════════════════════════════════════
   SLIDE TYPE: WHY NOW (Dark three-column convergence)
   ═══════════════════════════════════════════════════════════════ */

.slide-whynow {
  background: var(--ink);
}

.whynow-glow {
  position: absolute;
  top: 60%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse at center, rgba(27,79,216,0.08) 0%, transparent 65%);
  z-index: 2;
  pointer-events: none;
}

.whynow-body {
  position: absolute;
  inset: 0;
  padding: 38px 52px 80px;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

.whynow-headline {
  font-size: 30px; font-weight: 600;
  color: #fff; letter-spacing: -0.025em;
  line-height: 1.2; margin-bottom: 28px;
}

.whynow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  flex: 1;
}

.whynow-force {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 22px 20px 18px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.whynow-force-center {
  background: rgba(79,142,247,0.04);
  border-color: rgba(79,142,247,0.12);
}

.whynow-force-num {
  font-family: var(--mono);
  font-size: 10px; font-weight: 600;
  color: var(--accent);
  background: rgba(79,142,247,0.1);
  border: 1px solid rgba(79,142,247,0.2);
  border-radius: 5px;
  padding: 4px 8px;
  width: fit-content;
  margin-bottom: 14px;
}

.whynow-force-tag {
  font-family: var(--mono);
  font-size: 8.5px; font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.whynow-force-title {
  font-size: 15px; font-weight: 600;
  color: #E2E8F0;
  line-height: 1.35;
  margin-bottom: 10px;
}

.whynow-force-text {
  font-size: 11.5px;
  color: #5A6F85;
  line-height: 1.6;
  flex: 1;
}

.whynow-force-arrow {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

/* ── Convergence kicker ── */
.whynow-convergence {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.whynow-convergence-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79,142,247,0.2), transparent);
}

.whynow-convergence-text {
  font-size: 14px;
  font-weight: 600;
  color: #C8D6E5;
  white-space: nowrap;
  letter-spacing: -0.01em;
}


/* ═══════════════════════════════════════════════════════════════
   SLIDE TYPE: PRODUCT (Dark architecture flow)
   ═══════════════════════════════════════════════════════════════ */

.slide-product { background: var(--ink); }

.product-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(27,79,216,0.06) 0%, transparent 65%);
  z-index: 2; pointer-events: none;
}

.product-body {
  position: absolute; inset: 0;
  padding: 34px 44px 72px;
  z-index: 10;
  display: flex; flex-direction: column;
}

.product-headline {
  font-size: 26px; font-weight: 600;
  color: #fff; letter-spacing: -0.025em;
  margin-bottom: 18px;
}

.product-flow {
  flex: 1;
  display: flex; flex-direction: column;
  gap: 0;
}

.product-layer {
  display: flex; align-items: center; gap: 12px;
}

.product-layer-label {
  font-family: var(--mono);
  font-size: 8px; font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5A6F85;
  width: 64px; text-align: right;
  flex-shrink: 0;
}

.product-layer-row {
  flex: 1;
  display: flex; gap: 8px;
}

/* Merchant cards */
.product-merchant-card {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 10px 12px;
  text-align: center;
}

.product-merchant-type {
  font-size: 10.5px; font-weight: 600;
  color: #C8D6E5;
  margin-bottom: 4px;
}

.product-merchant-examples {
  font-family: var(--mono);
  font-size: 7.5px;
  color: #4F6A85;
  letter-spacing: 0.02em;
}

/* Connector arrows */
.product-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 4px 0;
}

.product-connector-text {
  font-family: var(--mono);
  font-size: 8px;
  color: #4F6A85;
  letter-spacing: 0.06em;
}

/* Anton platform layer (hero) */
.product-anton-layer {
  display: flex; align-items: stretch; gap: 12px;
}

.product-anton-inner {
  flex: 1;
  background: rgba(27,79,216,0.06);
  border: 1px solid rgba(79,142,247,0.15);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex; gap: 14px;
}

.product-anton-section {
  display: flex; flex-direction: column;
  gap: 5px;
  min-width: 120px;
}

.product-anton-section-tag {
  font-family: var(--mono);
  font-size: 7px; font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2px;
}

.product-anton-chip {
  font-size: 9.5px; color: #8DA5C0;
  padding: 4px 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
}

/* Engine (center hero) */
.product-anton-engine {
  flex: 1;
  display: flex; flex-direction: column;
  gap: 5px;
}

.product-engine-box {
  flex: 1;
  background: rgba(27,79,216,0.12);
  border: 1px solid rgba(79,142,247,0.25);
  border-radius: 6px;
  padding: 10px 14px;
  display: flex; flex-direction: column;
  justify-content: center;
}

.product-engine-title {
  font-size: 10.5px; font-weight: 600;
  color: var(--accent);
  margin-bottom: 5px;
}

.product-engine-layers {
  font-size: 9px; color: #6B7F99;
  display: flex; align-items: center; gap: 4px;
  flex-wrap: wrap;
}

.product-engine-layer { color: #6B7F99; }
.product-engine-layer-accent { color: var(--accent); font-weight: 600; }
.product-engine-dot { color: #3A4F65; }

/* Graph (core asset) */
.product-graph-box {
  flex: 1;
  background: rgba(79,142,247,0.06);
  border: 1px dashed rgba(79,142,247,0.25);
  border-radius: 6px;
  padding: 10px 14px;
  display: flex; flex-direction: column;
  justify-content: center;
}

.product-graph-title {
  font-size: 10.5px; font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.product-graph-sub {
  font-size: 8.5px; color: #6B7F99;
  line-height: 1.4;
}

/* Rail cards */
.product-rail-card {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 8px 10px;
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2px;
}

.product-rail-logo {
  font-size: 12px; font-weight: 700;
  color: #C8D6E5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font);
}

.product-rail-logo-accent {
  color: var(--accent);
}

.product-rail-sub {
  font-size: 8px; color: #4F6A85;
  font-family: var(--mono);
  letter-spacing: 0.04em;
}


/* ═══════════════════════════════════════════════════════════════
   SLIDE TYPE: FLYWHEEL (Dark two-loop)
   ═══════════════════════════════════════════════════════════════ */

.slide-flywheel { background: var(--ink); }

.flywheel-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(27,79,216,0.06) 0%, transparent 60%);
  z-index: 2; pointer-events: none;
}

.flywheel-body {
  position: absolute; inset: 0;
  padding: 30px 44px 96px;
  z-index: 10;
  display: flex; flex-direction: column;
}

.flywheel-headline {
  font-size: 24px; font-weight: 600;
  color: #fff; letter-spacing: -0.025em;
  margin-bottom: 12px;
}

/* v3 flywheel — horizontal loops stacked */
.fw3-body {
  position: absolute; inset: 0;
  padding: 30px 48px 80px;
  z-index: 10;
  display: flex; flex-direction: column;
  justify-content: space-between;
}

.fw3-headline {
  font-size: 24px; font-weight: 600;
  color: #fff; letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.fw3-loop {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 16px 20px 8px;
}

.fw3-loop-label {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
}

.fw3-loop-tag {
  font-family: var(--mono);
  font-size: 8px; font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(79,142,247,0.1);
  border: 1px solid rgba(79,142,247,0.2);
  padding: 3px 8px;
  border-radius: 4px;
}

.fw3-loop-name {
  font-size: 14px; font-weight: 600;
  color: #E2E8F0;
}

.fw3-ring {
  display: flex;
  align-items: center;
  gap: 6px;
}

.fw3-node {
  flex: 1;
  padding: 9px 8px;
  background: rgba(79,142,247,0.06);
  border: 1px solid rgba(79,142,247,0.15);
  border-radius: 6px;
  font-size: 10.5px; font-weight: 500;
  color: #A0B4CC;
  text-align: center;
  line-height: 1.3;
}

.fw3-node-start {
  background: rgba(27,79,216,0.2);
  border-color: rgba(79,142,247,0.35);
  color: #fff;
  font-weight: 600;
}

.fw3-chevron {
  font-size: 14px;
  color: rgba(79,142,247,0.3);
  flex-shrink: 0;
}

.fw3-return {
  position: relative;
  height: 22px;
  margin-top: 4px;
}

.fw3-return svg {
  position: absolute;
  inset: 0;
}

.fw3-return-label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--mono);
  font-size: 8px;
  color: var(--accent);
  opacity: 0.5;
  background: var(--ink);
  padding: 0 8px;
}

.fw3-kicker {
  padding: 10px 0 0;
  border-top: 1px solid rgba(79,142,247,0.1);
  display: flex; flex-direction: column; gap: 4px;
}

.fw3-kicker-bold {
  font-size: 14px; font-weight: 600;
  color: #fff;
}

.fw3-kicker-sub {
  font-size: 11px;
  color: #5A6F85;
  line-height: 1.4;
}


/* ═══════════════════════════════════════════════════════════════
   SLIDE TYPE: RAILS (Dark map + details)
   ═══════════════════════════════════════════════════════════════ */

.slide-rails { background: var(--ink); }

.rails-body {
  position: absolute; inset: 0;
  padding: 30px 48px 80px;
  z-index: 10;
  display: flex; flex-direction: column;
}

.rails-headline {
  font-size: 24px; font-weight: 600;
  color: #fff; letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.rails-layout {
  flex: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  align-items: center;
}

.rails-map {
  display: flex; align-items: center;
}

.rails-details {
  display: flex; flex-direction: column;
  gap: 8px;
  padding-bottom: 30px;
}

.rails-rail-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
}

.rails-rail-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.rails-rail-name {
  font-size: 12px; font-weight: 600;
  color: #E2E8F0;
}

.rails-rail-desc {
  font-size: 10px; color: #5A6F85;
}

.rails-routing-box {
  padding: 10px 14px;
  background: rgba(79,142,247,0.05);
  border: 1px solid rgba(79,142,247,0.12);
  border-radius: 6px;
  margin-top: 2px;
}

.rails-routing-text {
  font-size: 10.5px; color: #7B8FA5;
  line-height: 1.5;
}

.rails-kicker {
  font-size: 11.5px; font-weight: 600;
  color: #8DA5C0;
  font-style: italic;
  margin-top: 2px;
}


/* ═══════════════════════════════════════════════════════════════
   SLIDE TYPE: TRACTION (Dark stats dashboard)
   ═══════════════════════════════════════════════════════════════ */

.slide-traction { background: var(--ink); }

.traction-body {
  position: absolute; inset: 0;
  padding: 30px 48px 80px;
  z-index: 10;
  display: flex; flex-direction: column;
  justify-content: space-between;
}

.traction-headline {
  font-size: 24px; font-weight: 600;
  color: #fff; letter-spacing: -0.02em;
  margin-bottom: 14px;
}

/* Hero stats strip */
.traction-stats {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 20px 0;
  margin-bottom: 14px;
}

.traction-stat {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.traction-stat-hero {
  position: relative;
}

.traction-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.traction-stat-value {
  font-family: var(--mono);
  font-size: 38px; font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 2px;
}

.traction-stat-value-zero {
  font-size: 46px;
  color: #22C55E;
  text-shadow: 0 0 40px rgba(34,197,94,0.2);
}

.traction-stat-unit {
  font-family: var(--mono);
  font-size: 14px; font-weight: 400;
  color: #4F6A85;
  margin-left: 2px;
}

.traction-stat-label {
  font-size: 10px; color: #7B8FA5;
  margin-top: 4px;
}

.traction-stat-sub {
  font-size: 8.5px; color: #4F6A85;
  margin-top: 2px;
}

/* Details grid */
.traction-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.traction-detail {
  padding: 12px 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
}

.traction-detail-title {
  font-size: 11px; font-weight: 600;
  color: #E2E8F0;
  margin-bottom: 3px;
  line-height: 1.3;
}

.traction-detail-text {
  font-size: 9.5px; color: #5A6F85;
  line-height: 1.5;
}

/* Kicker */
.traction-kicker {
  padding: 10px 16px;
  border-left: 2px solid rgba(79,142,247,0.3);
  font-size: 12.5px; font-weight: 500;
  color: #7B8FA5;
  font-style: italic;
  line-height: 1.5;
}


/* ═══════════════════════════════════════════════════════════════
   SLIDE TYPE: ASK (Dark centered raise)
   ═══════════════════════════════════════════════════════════════ */

.slide-ask { background: var(--ink); }

.ask-body {
  position: absolute; inset: 0;
  padding: 30px 48px 80px;
  z-index: 10;
  display: flex; flex-direction: column;
  justify-content: space-between;
}

/* Hero raise block */
.ask-hero {
  display: flex;
  align-items: center;
  background: rgba(27,79,216,0.06);
  border: 1px solid rgba(79,142,247,0.15);
  border-radius: 10px;
  padding: 22px 32px;
  position: relative;
  margin-bottom: 16px;
}

.ask-hero-left { flex: 1; }

.ask-hero-label {
  font-family: var(--mono);
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.ask-hero-amount {
  font-size: 48px; font-weight: 700;
  color: #fff;
  font-family: var(--mono);
  letter-spacing: -0.03em;
  line-height: 1;
}

.ask-hero-unit {
  font-size: 22px; color: #4F6A85;
  font-weight: 500;
}

.ask-hero-divider {
  width: 1px; height: 50px;
  background: rgba(79,142,247,0.15);
  margin: 0 32px;
}

.ask-hero-right { }

.ask-runway-label {
  font-family: var(--mono);
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.ask-runway-value {
  font-size: 22px; font-weight: 600;
  color: #fff;
}

.ask-hero-tag {
  position: absolute;
  top: 12px; right: 16px;
  font-family: var(--mono);
  font-size: 8px; font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(79,142,247,0.1);
  border: 1px solid rgba(79,142,247,0.2);
  padding: 3px 10px;
  border-radius: 4px;
}

/* Section tag */
.ask-section-tag {
  font-family: var(--mono);
  font-size: 8px; font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

/* Use of funds */
.ask-funds {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.ask-fund {
  padding: 12px 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  position: relative;
}

.ask-fund-hero {
  background: rgba(27,79,216,0.1);
  border-color: rgba(79,142,247,0.2);
}

.ask-fund-title {
  font-size: 11px; font-weight: 600;
  color: #C8D6E5;
  margin-bottom: 4px;
}

.ask-fund-badge {
  position: absolute;
  top: 8px; right: 8px;
  font-family: var(--mono);
  font-size: 6px; font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(79,142,247,0.12);
  padding: 2px 6px;
  border-radius: 3px;
}

.ask-fund-text {
  font-size: 9.5px; color: #5A6F85;
  line-height: 1.5;
}

/* Milestones — horizontal timeline */
.ask-milestones {
  display: flex;
  align-items: center;
  gap: 0;
}

.ask-milestone {
  flex: 1;
  padding: 10px 10px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  text-align: center;
}

.ask-milestone-hero {
  background: rgba(27,79,216,0.1);
  border-color: rgba(79,142,247,0.25);
}

.ask-ms-num {
  font-family: var(--mono);
  font-size: 12px; font-weight: 600;
  color: var(--accent);
  margin-bottom: 4px;
}

.ask-ms-num-hero {
  color: #fff;
  background: var(--blue);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 10px;
}

.ask-ms-title {
  font-size: 9.5px; font-weight: 500;
  color: #8DA5C0;
  line-height: 1.3;
}

.ask-ms-arrow {
  flex-shrink: 0;
  padding: 0 2px;
}


/* ═══════════════════════════════════════════════════════════════
   SLIDE TYPE: MARKET (Dark funnel + vectors)
   ═══════════════════════════════════════════════════════════════ */

.slide-market { background: var(--ink); }

.market-glow {
  position: absolute;
  top: 50%; left: 35%;
  transform: translate(-50%, -50%);
  width: 500px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(27,79,216,0.07) 0%, transparent 60%);
  z-index: 2; pointer-events: none;
}

.market-body {
  position: absolute; inset: 0;
  padding: 30px 48px 80px;
  z-index: 10;
  display: flex; flex-direction: column;
}

.market-headline {
  font-size: 24px; font-weight: 600;
  color: #fff; letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.market-layout {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

/* Funnel — narrowing tiers */
.market-funnel {
  display: flex; flex-direction: column;
  align-items: center;
  gap: 8px;
}

.market-tier {
  width: 100%;
  border-radius: 8px;
  padding: 14px 20px;
}

.market-tier-tam {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  width: 100%;
}

.market-tier-sam {
  background: rgba(79,142,247,0.04);
  border: 1px solid rgba(79,142,247,0.1);
  width: 88%;
}

.market-tier-som {
  background: rgba(27,79,216,0.1);
  border: 1px solid rgba(79,142,247,0.25);
  width: 74%;
}

.market-tier-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.market-tier-value {
  font-size: 32px; font-weight: 700;
  color: #5A6F85;
  font-family: var(--mono);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.market-tier-value-hero { color: #fff; }

.market-tier-unit {
  font-size: 16px; color: #4F6A85;
  font-weight: 500;
}

.market-tier-info { flex: 1; }

.market-tier-label {
  font-family: var(--mono);
  font-size: 8px; font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5A6F85;
  margin-bottom: 2px;
}

.market-tier-desc {
  font-size: 10px; color: #4F6A85;
  line-height: 1.4;
}

.market-sizing-note {
  font-family: var(--mono);
  font-size: 8px; color: #3A4F65;
  font-style: italic;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

/* Growth vectors */
.market-vectors {
  display: flex; flex-direction: column;
  gap: 0;
}

.market-vectors-tag {
  font-family: var(--mono);
  font-size: 8px; font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.market-vector-list {
  display: flex; flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.market-vector {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
}

.market-vector-num {
  font-family: var(--mono);
  font-size: 9px; font-weight: 600;
  color: var(--accent);
  background: rgba(79,142,247,0.1);
  border: 1px solid rgba(79,142,247,0.2);
  padding: 3px 7px;
  border-radius: 4px;
  flex-shrink: 0;
}

.market-vector-name {
  font-size: 12px; font-weight: 600;
  color: #E2E8F0;
}

.market-vector-desc {
  font-size: 10px; color: #5A6F85;
}

.market-thesis {
  padding: 12px 16px;
  border-left: 2px solid rgba(79,142,247,0.3);
  font-size: 13px; font-weight: 600;
  color: #C8D6E5;
  line-height: 1.5;
}


/* ═══════════════════════════════════════════════════════════════
   SLIDE TYPE: GTM (Dark journey + revenue)
   ═══════════════════════════════════════════════════════════════ */

.slide-gtm { background: var(--ink); }

.gtm-body {
  position: absolute; inset: 0;
  padding: 30px 48px 80px;
  z-index: 10;
  display: flex; flex-direction: column;
}

.gtm-headline {
  font-size: 24px; font-weight: 600;
  color: #fff; letter-spacing: -0.02em;
  margin-bottom: 14px;
}

/* Journey — horizontal progression */
.gtm-journey {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.gtm-stage {
  flex: 1;
  padding: 16px 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
}

.gtm-stage-hero {
  background: rgba(27,79,216,0.08);
  border-color: rgba(79,142,247,0.2);
}

.gtm-stage-badge {
  font-family: var(--mono);
  font-size: 9px; font-weight: 600;
  color: var(--accent);
  background: rgba(79,142,247,0.12);
  padding: 3px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gtm-stage-badge-muted {
  color: #6B7F99;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.gtm-stage-title {
  font-size: 13px; font-weight: 600;
  color: #E2E8F0;
  margin-bottom: 6px;
  line-height: 1.3;
}

.gtm-stage-text {
  font-size: 10.5px; color: #5A6F85;
  line-height: 1.55;
}

.gtm-stage-arrow {
  display: flex; align-items: center;
  padding: 0 6px;
  flex-shrink: 0;
}

/* Divider */
.gtm-divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  margin: 16px 0;
}

/* Revenue mechanics */
.gtm-rev-section {
  margin-bottom: 12px;
}

.gtm-rev-tag {
  font-family: var(--mono);
  font-size: 8px; font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.gtm-rev-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.gtm-rev-item {
  padding: 12px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
}

.gtm-rev-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3px;
}

.gtm-rev-name {
  font-size: 12px; font-weight: 600;
  color: #E2E8F0;
}

.gtm-rev-badge {
  font-family: var(--mono);
  font-size: 8px; font-weight: 500;
  color: var(--accent);
  background: rgba(79,142,247,0.1);
  padding: 2px 8px;
  border-radius: 3px;
}

.gtm-rev-badge-muted {
  color: #5A6F85;
  background: rgba(255,255,255,0.04);
}

.gtm-rev-desc {
  font-size: 10px; color: #5A6F85;
}

/* Kicker */
.gtm-kicker {
  padding: 10px 0 0;
  border-top: 1px solid rgba(79,142,247,0.1);
  font-size: 12.5px; font-weight: 600;
  color: #C8D6E5;
  line-height: 1.5;
}


/* ═══════════════════════════════════════════════════════════════
   SLIDE TYPE: FOUNDER (Dark bio)
   ═══════════════════════════════════════════════════════════════ */

.slide-founder { background: var(--ink); }

.founder-body {
  position: absolute; inset: 0;
  padding: 30px 48px 80px;
  z-index: 10;
  display: flex; flex-direction: column;
}

.founder-headline {
  font-size: 24px; font-weight: 600;
  color: #fff; letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.founder-layout {
  flex: 1;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: center;
}

.founder-left {
  display: flex; flex-direction: column;
  gap: 12px;
}

.founder-photo {
  width: 180px; height: 180px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
}

.founder-photo-label {
  font-family: var(--mono);
  font-size: 8px; color: #4F6A85;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.founder-stats {
  display: flex; flex-direction: column;
  gap: 6px;
}

.founder-stat {
  padding: 10px 12px;
  background: rgba(79,142,247,0.06);
  border: 1px solid rgba(79,142,247,0.12);
  border-radius: 6px;
  text-align: center;
}

.founder-stat-num {
  font-family: var(--mono);
  font-size: 22px; font-weight: 600;
  color: var(--accent);
}

.founder-stat-text {
  font-family: var(--mono);
  font-size: 11px; font-weight: 600;
  color: var(--accent);
}

.founder-stat-label {
  font-size: 9px; color: #5A6F85;
  margin-top: 2px;
}

.founder-right {
  display: flex; flex-direction: column;
  gap: 7px;
}

.founder-cred {
  padding: 10px 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 2px solid rgba(79,142,247,0.3);
  border-radius: 0 6px 6px 0;
}

.founder-cred-title {
  font-size: 12px; font-weight: 600;
  color: #E2E8F0;
  margin-bottom: 2px;
}

.founder-cred-text {
  font-size: 10px; color: #5A6F85;
  line-height: 1.5;
}

.founder-quote {
  margin-top: 4px;
  padding: 10px 14px;
  border-left: 2px solid rgba(79,142,247,0.3);
  font-size: 12.5px; font-weight: 500;
  color: #8DA5C0;
  font-style: italic;
  line-height: 1.5;
}


/* ═══════════════════════════════════════════════════════════════
   SLIDE TYPE: INFRA (Dark compliance grid)
   ═══════════════════════════════════════════════════════════════ */

.slide-infra { background: var(--ink); }

.infra-body {
  position: absolute; inset: 0;
  padding: 30px 48px 80px;
  z-index: 10;
  display: flex; flex-direction: column;
  justify-content: space-between;
}

.infra-headline {
  font-size: 24px; font-weight: 600;
  color: #fff; letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.infra-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.infra-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 14px 16px;
}

.infra-card-icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: rgba(79,142,247,0.1);
  border: 1px solid rgba(79,142,247,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
}

.infra-card-tag {
  font-family: var(--mono);
  font-size: 8px; font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2px;
}

.infra-card-title {
  font-size: 12px; font-weight: 600;
  color: #E2E8F0;
  margin-bottom: 4px;
}

.infra-card-text {
  font-size: 10px;
  color: #5A6F85;
  line-height: 1.55;
}

.infra-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.infra-cert-card {
  background: rgba(79,142,247,0.05);
  border: 1px solid rgba(79,142,247,0.12);
  border-radius: 8px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.infra-cert-title {
  font-size: 12px; font-weight: 500;
  color: #E2E8F0;
  margin-bottom: 3px;
}

.infra-cert-sub {
  font-size: 10px;
  color: #5A6F85;
}

.infra-score {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(79,142,247,0.1);
  border: 2px solid rgba(79,142,247,0.3);
  display: flex; align-items: center; justify-content: center;
}

.infra-score-num {
  font-family: var(--mono);
  font-size: 16px; font-weight: 600;
  color: var(--accent);
}

.infra-quote {
  padding: 10px 16px;
  border-left: 2px solid rgba(79,142,247,0.3);
  font-size: 12.5px; font-weight: 500;
  color: #7B8FA5;
  font-style: italic;
  line-height: 1.5;
}


/* ═══════════════════════════════════════════════════════════════
   SLIDE TYPE: ENGINE (Dark layer stack)
   ═══════════════════════════════════════════════════════════════ */

.slide-engine { background: var(--ink); }

.engine-glow {
  position: absolute;
  top: 50%; left: 40%;
  transform: translate(-50%, -50%);
  width: 500px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(27,79,216,0.06) 0%, transparent 60%);
  z-index: 2; pointer-events: none;
}

.engine-body {
  position: absolute; inset: 0;
  padding: 34px 44px 72px;
  z-index: 10;
  display: flex; flex-direction: column;
}

.engine-headline {
  font-size: 24px; font-weight: 600;
  color: #fff; letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.engine-layout {
  flex: 1;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 28px;
}

/* Layer stack */
.engine-stack {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.engine-layer {
  display: flex;
  align-items: stretch;
  gap: 8px;
}

.engine-layer-num {
  width: 24px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 9px; font-weight: 600;
  color: #4F6A85;
  flex-shrink: 0;
}

.engine-layer-num-accent { color: var(--accent); }

.engine-layer-card {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  position: relative;
}

.engine-layer-moat {
  background: rgba(27,79,216,0.08);
  border-color: rgba(79,142,247,0.2);
}

.engine-moat-badge {
  position: absolute;
  top: 8px; right: 8px;
  font-family: var(--mono);
  font-size: 6.5px; font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(79,142,247,0.12);
  padding: 2px 7px;
  border-radius: 3px;
}

.engine-layer-title {
  font-size: 11.5px; font-weight: 600;
  color: #C8D6E5;
  margin-bottom: 2px;
}

.engine-layer-desc {
  font-size: 9.5px;
  color: #5A6F85;
  line-height: 1.5;
}

/* Narrative */
.engine-narrative {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding-bottom: 20px;
}

.engine-narrative-section {
  margin-bottom: 14px;
}

.engine-narrative-tag {
  font-family: var(--mono);
  font-size: 8px; font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5A6F85;
  margin-bottom: 8px;
}

.engine-narrative-text {
  font-size: 12px;
  color: #7B8FA5;
  line-height: 1.6;
  margin-bottom: 4px;
}

.engine-narrative-italic {
  font-size: 12px;
  color: #5A6F85;
  line-height: 1.6;
  font-style: italic;
}

.engine-narrative-divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.06), transparent);
  margin-bottom: 14px;
}

.engine-kicker {
  margin-top: auto;
  padding: 12px 14px;
  background: rgba(79,142,247,0.06);
  border: 1px solid rgba(79,142,247,0.12);
  border-radius: 6px;
  font-size: 12px; font-weight: 600;
  color: #C8D6E5;
  line-height: 1.5;
}


/* ═══════════════════════════════════════════════════════════════
   SLIDE TYPE: GRAPH (Dark two-column with SVG viz)
   ═══════════════════════════════════════════════════════════════ */

.slide-graph { background: var(--ink); }

.graph-glow {
  position: absolute;
  top: 50%; left: 35%;
  transform: translate(-50%, -50%);
  width: 500px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(27,79,216,0.08) 0%, transparent 60%);
  z-index: 2; pointer-events: none;
}

.graph-body {
  position: absolute; inset: 0;
  padding: 34px 44px 72px;
  z-index: 10;
  display: flex; flex-direction: column;
}

.graph-headline {
  font-size: 26px; font-weight: 600;
  color: #fff; letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.graph-layout {
  flex: 1;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 24px;
}

.graph-viz {
  display: flex;
  align-items: center;
}

.graph-enables {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding-bottom: 60px;
}

.graph-enables-tag {
  font-family: var(--mono);
  font-size: 8px; font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.graph-enable-item {
  padding: 10px 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 2px solid rgba(79,142,247,0.3);
  border-radius: 0 6px 6px 0;
}

.graph-enable-title {
  font-size: 12px; font-weight: 600;
  color: #C8D6E5;
  margin-bottom: 2px;
}

.graph-enable-text {
  font-size: 10.5px;
  color: #5A6F85;
  line-height: 1.5;
}

.graph-kicker {
  margin-top: 6px;
  padding: 10px 14px;
  background: rgba(79,142,247,0.06);
  border: 1px solid rgba(79,142,247,0.15);
  border-radius: 6px;
  font-size: 12px; font-weight: 600;
  color: var(--accent);
}


/* ═══════════════════════════════════════════════════════════════
   SLIDE TYPE: INSIGHT (Dark centered thesis)
   ═══════════════════════════════════════════════════════════════ */

.slide-insight {
  background: var(--ink);
}

.insight-glow {
  position: absolute;
  top: 45%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(27,79,216,0.1) 0%, rgba(79,142,247,0.03) 40%, transparent 65%);
  z-index: 2;
  pointer-events: none;
}

.insight-glow-accent {
  position: absolute;
  top: 55%; left: 45%;
  transform: translate(-50%, -50%);
  width: 400px; height: 300px;
  background: radial-gradient(ellipse at center, rgba(79,142,247,0.05) 0%, transparent 60%);
  z-index: 2;
  pointer-events: none;
}

.insight-accent-line {
  position: absolute;
  left: 64px; top: 18%;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(79,142,247,0.18), transparent);
  z-index: 3;
}

.insight-body {
  position: absolute;
  inset: 0;
  z-index: 10;
  padding: 48px 80px 80px 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.insight-quote-block {
  margin: 24px 0;
  position: relative;
}

.insight-quote-mark {
  font-size: 72px;
  font-weight: 700;
  color: rgba(79,142,247,0.12);
  line-height: 0.6;
  margin-bottom: -8px;
  font-family: Georgia, serif;
}

.insight-quote-text {
  font-size: 30px;
  font-weight: 500;
  color: #C8D6E5;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.insight-rule {
  width: 52px; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  border-radius: 2px;
  margin: 22px 0;
  position: relative;
  overflow: visible;
}

.insight-rule::after {
  content: '';
  position: absolute;
  top: -1px; left: -20%;
  width: 140%;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(79,142,247,0.4), transparent);
  border-radius: 4px;
  animation: rule-shimmer 4s ease-in-out infinite;
}

.insight-quote-punch {
  font-size: 34px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.insight-highlight {
  color: var(--accent);
  text-shadow: 0 0 40px rgba(79,142,247,0.25);
}

.insight-supporting {
  font-size: 14px;
  color: #5A6F85;
  line-height: 1.65;
  max-width: 560px;
  margin-top: 8px;
}
