/* ═══════════════════════════════════════════════════════════════════════════
   CIVALENT — Pitch Deck Presentation Styles
   Aesthetic: Style C "Stripe" — Premium, gradients, layered shadows
   Palette: Indigo + Copper (dark-first)
   Typography: Inter + JetBrains Mono
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────────
   DESIGN TOKENS
   ───────────────────────────────────────────────────────────────────────────── */

:root {
  /* Indigo + Copper Dark Palette */
  --bg-root: #07091a;
  --bg-surface: #0b0f22;
  --bg-elevated: #10152b;
  --bg-overlay: #161c34;
  --bg-hover: #1b223e;
  --bg-active: #222a4c;

  --border-default: #1d2548;
  --border-subtle: #141a38;
  --border-strong: #2c3462;

  --accent-primary: #d4845e;
  --accent-primary-hover: #e29a78;
  --accent-primary-muted: #5a3020;
  --accent-primary-subtle: #3a1f14;

  --accent-secondary: #8690f8;
  --accent-secondary-hover: #a8b0fc;
  --accent-secondary-muted: #2e2c80;
  --accent-secondary-subtle: #1c1a4e;

  --text-primary: #e6ebf5;
  --text-secondary: #8892b0;
  --text-muted: #586380;
  --text-inverse: #07091a;

  --status-compliant: #34d399;
  --status-warning: #fbbf24;
  --status-violation: #f87171;
  --status-info: #60a5fa;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'SF Mono', monospace;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-2xl: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 40px rgba(212, 132, 94, 0.15);

  /* Gradients */
  --gradient-copper: linear-gradient(135deg, #d4845e 0%, #e29a78 50%, #d4845e 100%);
  --gradient-indigo: linear-gradient(135deg, #8690f8 0%, #a8b0fc 50%, #8690f8 100%);
  --gradient-surface: linear-gradient(180deg, #0b0f22 0%, #10152b 100%);
  --gradient-hero: radial-gradient(ellipse at 30% 20%, rgba(134, 144, 248, 0.08) 0%, transparent 50%),
                    radial-gradient(ellipse at 70% 80%, rgba(212, 132, 94, 0.06) 0%, transparent 50%);
  --gradient-orb-copper: radial-gradient(circle, rgba(212, 132, 94, 0.12) 0%, transparent 70%);
  --gradient-orb-indigo: radial-gradient(circle, rgba(134, 144, 248, 0.1) 0%, transparent 70%);

  /* Animation */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 600ms;
}

/* ─── Light Mode Override ─── */

[data-theme="light"] {
  --bg-root: #f7f8fc;
  --bg-surface: #ffffff;
  --bg-elevated: #ffffff;
  --bg-overlay: #eceef6;
  --bg-hover: #dde0ed;
  --bg-active: #c5cade;

  --border-default: #dde0ed;
  --border-subtle: #eceef6;
  --border-strong: #c5cade;

  --accent-primary: #b45e3a;
  --accent-primary-hover: #9a4f30;
  --accent-primary-muted: #fde8db;
  --accent-primary-subtle: #fef5ef;

  --accent-secondary: #4f46e5;
  --accent-secondary-hover: #4338ca;
  --accent-secondary-muted: #e0e7ff;
  --accent-secondary-subtle: #eef2ff;

  --text-primary: #0f1629;
  --text-secondary: #4a5066;
  --text-muted: #8892b0;
  --text-inverse: #ffffff;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
  --shadow-glow: 0 0 40px rgba(180, 94, 58, 0.08);

  --gradient-copper: linear-gradient(135deg, #b45e3a 0%, #d4845e 50%, #b45e3a 100%);
  --gradient-indigo: linear-gradient(135deg, #4f46e5 0%, #6366f1 50%, #4f46e5 100%);
  --gradient-surface: linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
  --gradient-hero: radial-gradient(ellipse at 30% 20%, rgba(79, 70, 229, 0.05) 0%, transparent 50%),
                    radial-gradient(ellipse at 70% 80%, rgba(180, 94, 58, 0.04) 0%, transparent 50%);
  --gradient-orb-copper: radial-gradient(circle, rgba(180, 94, 58, 0.06) 0%, transparent 70%);
  --gradient-orb-indigo: radial-gradient(circle, rgba(79, 70, 229, 0.05) 0%, transparent 70%);
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESET & BASE
   ───────────────────────────────────────────────────────────────────────────── */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-root);
  color: var(--text-primary);
  overflow: hidden;
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────────────────────
   PRESENTATION CONTAINER
   ───────────────────────────────────────────────────────────────────────────── */

.presentation {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* ─────────────────────────────────────────────────────────────────────────────
   PROGRESS BAR
   ───────────────────────────────────────────────────────────────────────────── */

.progress-container {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--border-subtle);
  z-index: 1000;
}

.progress-bar {
  height: 100%;
  background: var(--gradient-copper);
  transition: width 0.4s var(--ease-out);
  width: 0%;
}

.progress-text {
  position: fixed;
  bottom: 12px;
  right: 24px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  z-index: 1001;
  letter-spacing: 0.05em;
}

/* ─────────────────────────────────────────────────────────────────────────────
   THEME TOGGLE
   ───────────────────────────────────────────────────────────────────────────── */

.theme-toggle {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  color: var(--text-secondary);
  cursor: pointer;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.theme-toggle:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: var(--bg-hover);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
}

.icon-sun { display: none; }
.icon-moon { display: block; }

[data-theme="dark"] .icon-sun { display: block; }
[data-theme="dark"] .icon-moon { display: none; }

/* ─────────────────────────────────────────────────────────────────────────────
   SLIDES — Core Layout
   ───────────────────────────────────────────────────────────────────────────── */

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
  pointer-events: none;
  will-change: opacity, transform;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 10;
}

.slide-content {
  width: 100%;
  max-width: 1200px;
  padding: var(--space-3xl) var(--space-2xl);
  position: relative;
  z-index: 2;
}

/* ─── Background Elements ─── */

.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}

.bg-orb.copper {
  background: var(--gradient-orb-copper);
}

.bg-orb.indigo {
  background: var(--gradient-orb-indigo);
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(134, 144, 248, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(134, 144, 248, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

[data-theme="light"] .bg-grid {
  background-image:
    linear-gradient(rgba(79, 70, 229, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 70, 229, 0.04) 1px, transparent 1px);
}

/* ─────────────────────────────────────────────────────────────────────────────
   TYPOGRAPHY
   ───────────────────────────────────────────────────────────────────────────── */

.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: var(--space-md);
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 680px;
}

.accent-text {
  color: var(--accent-primary);
}

.accent-text-secondary {
  color: var(--accent-secondary);
}

.mono {
  font-family: var(--font-mono);
}

/* ─────────────────────────────────────────────────────────────────────────────
   SLIDE 1: TITLE
   ───────────────────────────────────────────────────────────────────────────── */

.title-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  padding: var(--space-3xl);
}

.title-brand-mark {
  width: 80px;
  height: 80px;
  margin-bottom: var(--space-2xl);
  position: relative;
}

.brand-hexagon {
  width: 80px;
  height: 80px;
}

.brand-hexagon .hex-border {
  fill: none;
  stroke: var(--accent-primary);
  stroke-width: 2;
}

.brand-hexagon .hex-letter {
  fill: var(--accent-primary);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 32px;
  text-anchor: middle;
  dominant-baseline: central;
}

.title-main {
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-tagline {
  font-size: 1.375rem;
  color: var(--text-secondary);
  font-weight: 400;
  letter-spacing: -0.01em;
  max-width: 600px;
  margin-bottom: var(--space-3xl);
  line-height: 1.5;
}

.title-divider {
  width: 64px;
  height: 2px;
  background: var(--gradient-copper);
  margin-bottom: var(--space-2xl);
  border-radius: 1px;
}

.title-meta {
  display: flex;
  gap: var(--space-xl);
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

.title-meta span {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.scroll-hint {
  position: absolute;
  bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-muted);
  font-size: 0.8125rem;
  animation: pulse 2s ease-in-out infinite;
}

.scroll-arrow {
  font-size: 1.25rem;
  animation: bounceRight 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes bounceRight {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

/* ─────────────────────────────────────────────────────────────────────────────
   SLIDE 2: PROBLEM
   ───────────────────────────────────────────────────────────────────────────── */

.problem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.stat-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-copper);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-primary);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.stat-sublabel {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: var(--space-xs);
  font-family: var(--font-mono);
}

/* ─────────────────────────────────────────────────────────────────────────────
   SLIDE 3: VISION (Before/After)
   ───────────────────────────────────────────────────────────────────────────── */

.vision-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-top: var(--space-2xl);
}

.vision-side {
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-default);
}

.vision-side.before {
  background: rgba(248, 113, 113, 0.04);
  border-color: rgba(248, 113, 113, 0.15);
}

.vision-side.after {
  background: rgba(52, 211, 153, 0.04);
  border-color: rgba(52, 211, 153, 0.15);
}

.vision-side h3 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-lg);
}

.vision-side.before h3 { color: var(--status-violation); }
.vision-side.after h3 { color: var(--status-compliant); }

.vision-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.vision-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.vision-list li .icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.vision-side.before .vision-list .icon { color: var(--status-violation); }
.vision-side.after .vision-list .icon { color: var(--status-compliant); }

.vision-arrow {
  font-size: 2rem;
  color: var(--accent-primary);
  display: flex;
  align-items: center;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SLIDE 4: AUDIENCE / PERSONAS
   ───────────────────────────────────────────────────────────────────────────── */

.persona-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.persona-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  transition: all 0.3s ease;
  position: relative;
}

.persona-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.persona-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background: var(--accent-primary-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.25rem;
}

.persona-card:nth-child(2) .persona-icon { background: var(--accent-secondary-subtle); }
.persona-card:nth-child(4) .persona-icon { background: rgba(52, 211, 153, 0.1); }

.persona-role {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.persona-pain {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SLIDES 5-6: COMPETITIVE LANDSCAPE
   ───────────────────────────────────────────────────────────────────────────── */

.positioning-map {
  display: flex;
  justify-content: center;
  margin-top: var(--space-xl);
}

.quadrant-chart {
  position: relative;
  width: 600px;
  height: 460px;
  border-left: 2px solid var(--border-strong);
  border-bottom: 2px solid var(--border-strong);
}

.axis-label {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.axis-label.x-axis {
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
}

.axis-label.y-axis {
  left: -28px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  white-space: nowrap;
}

.quadrant-label {
  position: absolute;
  font-size: 0.6875rem;
  color: var(--text-muted);
  opacity: 0.5;
  font-style: italic;
}

.quadrant-label.top-right { top: 8px; right: 8px; }
.quadrant-label.top-left { top: 8px; left: 8px; }
.quadrant-label.bottom-right { bottom: 8px; right: 8px; }
.quadrant-label.bottom-left { bottom: 8px; left: 8px; }

.competitor-dot {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.competitor-dot .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid;
  transition: all 0.3s ease;
}

.competitor-dot.us .dot {
  width: 20px;
  height: 20px;
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  box-shadow: 0 0 16px rgba(212, 132, 94, 0.4);
}

.competitor-dot.threat-high .dot { border-color: var(--status-violation); background: rgba(248, 113, 113, 0.2); }
.competitor-dot.threat-med .dot { border-color: var(--status-warning); background: rgba(251, 191, 36, 0.15); }
.competitor-dot.threat-low .dot { border-color: var(--text-muted); background: rgba(88, 99, 128, 0.15); }

.competitor-dot .label {
  font-size: 0.6875rem;
  color: var(--text-secondary);
  white-space: nowrap;
  font-weight: 500;
}

.competitor-dot.us .label {
  color: var(--accent-primary);
  font-weight: 700;
  font-size: 0.75rem;
}

/* Feature Matrix */

.feature-matrix {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-xl);
  font-size: 0.8125rem;
}

.feature-matrix th {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: var(--space-sm) var(--space-md);
  border-bottom: 1px solid var(--border-strong);
  text-align: center;
  white-space: nowrap;
}

.feature-matrix th:first-child {
  text-align: left;
}

.feature-matrix td {
  padding: var(--space-sm) var(--space-md);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
  color: var(--text-secondary);
}

.feature-matrix td:first-child {
  text-align: left;
  color: var(--text-primary);
  font-weight: 500;
}

.feature-matrix .check { color: var(--status-compliant); }
.feature-matrix .partial { color: var(--status-warning); }
.feature-matrix .miss { color: var(--text-muted); opacity: 0.4; }

.feature-matrix tr:hover td {
  background: var(--bg-hover);
}

.feature-matrix .col-us {
  background: rgba(212, 132, 94, 0.05);
}

/* ─────────────────────────────────────────────────────────────────────────────
   SLIDES 7-8: CORE CAPABILITIES
   ───────────────────────────────────────────────────────────────────────────── */

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.capability-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.capability-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-copper);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.capability-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.capability-card:hover::after {
  opacity: 1;
}

.capability-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
  background: var(--accent-primary-subtle);
  color: var(--accent-primary);
}

.capability-card:nth-child(even) .capability-icon {
  background: var(--accent-secondary-subtle);
  color: var(--accent-secondary);
}

.capability-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.capability-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SLIDES 9-12: FEATURE DEEP DIVES
   ───────────────────────────────────────────────────────────────────────────── */

.feature-dive {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  margin-top: var(--space-xl);
}

.feature-visual {
  background: var(--bg-elevated);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.feature-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-copper);
}

.feature-detail h3 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.feature-detail p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.feature-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.feature-highlight {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.feature-highlight .bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-primary);
  flex-shrink: 0;
}

/* Mock UI elements */

.mock-chat {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  width: 100%;
}

.mock-message {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.mock-message.user {
  align-items: flex-end;
}

.mock-message .author {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mock-message .bubble {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  line-height: 1.5;
  max-width: 90%;
}

.mock-message.user .bubble {
  background: var(--accent-primary-muted);
  color: var(--accent-primary-hover);
  border-bottom-right-radius: var(--radius-sm);
}

.mock-message.ai .bubble {
  background: var(--bg-overlay);
  border: 1px solid var(--border-default);
  color: var(--text-secondary);
  border-bottom-left-radius: var(--radius-sm);
}

.mock-citation {
  display: inline;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-secondary);
  background: var(--accent-secondary-subtle);
  padding: 1px 6px;
  border-radius: var(--radius-sm);
  cursor: default;
}

/* Mock compliance matrix */

.mock-matrix {
  width: 100%;
  font-size: 0.8125rem;
}

.mock-matrix-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1px;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border-subtle);
  align-items: center;
}

.mock-matrix-row.header {
  border-bottom: 1px solid var(--border-strong);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mock-matrix-row .code-ref {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-secondary);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.status-badge.compliant {
  color: var(--status-compliant);
  background: rgba(52, 211, 153, 0.1);
}

.status-badge.review {
  color: var(--status-warning);
  background: rgba(251, 191, 36, 0.1);
}

.status-badge.pending {
  color: var(--text-muted);
  background: var(--bg-overlay);
}

/* Mock alert feed */

.mock-alerts {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mock-alert {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-default);
  background: var(--bg-surface);
}

.mock-alert .severity {
  width: 4px;
  border-radius: 2px;
  flex-shrink: 0;
}

.mock-alert .severity.high { background: var(--status-violation); }
.mock-alert .severity.medium { background: var(--status-warning); }
.mock-alert .severity.low { background: var(--status-info); }

.mock-alert .alert-content {
  flex: 1;
}

.mock-alert .alert-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.mock-alert .alert-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* Mock intake */

.mock-intake {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.intake-step {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-default);
  background: var(--bg-surface);
}

.intake-step .step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}

.intake-step.done .step-num {
  background: rgba(52, 211, 153, 0.15);
  color: var(--status-compliant);
  font-size: 0.875rem;
}

.intake-step.active .step-num {
  background: var(--accent-primary-subtle);
  color: var(--accent-primary);
  animation: pulse-step 1.5s ease-in-out infinite;
}

@keyframes pulse-step {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 132, 94, 0.3); }
  50% { box-shadow: 0 0 0 6px rgba(212, 132, 94, 0); }
}

.intake-step .step-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.intake-step.done .step-text {
  color: var(--text-primary);
}

/* ─────────────────────────────────────────────────────────────────────────────
   SLIDES 13-14: BRAND IDENTITY
   ───────────────────────────────────────────────────────────────────────────── */

.brand-showcase {
  margin-top: var(--space-xl);
}

.color-palette {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.color-group {
  flex: 1;
}

.color-group h4 {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.color-swatches {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.color-swatch {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.swatch-circle {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-default);
  flex-shrink: 0;
}

.swatch-info {
  display: flex;
  flex-direction: column;
}

.swatch-name {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-primary);
}

.swatch-value {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-muted);
}

/* Typography showcase */

.type-showcase {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.type-sample {
  display: flex;
  align-items: baseline;
  gap: var(--space-xl);
}

.type-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: 120px;
  flex-shrink: 0;
}

.type-display {
  color: var(--text-primary);
}

.type-display.display-lg {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.type-display.body-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.type-display.mono-text {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--accent-secondary);
}

.type-display.code-ref-text {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--accent-primary);
  background: var(--accent-primary-subtle);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
}

/* ─────────────────────────────────────────────────────────────────────────────
   SLIDE 15: ARCHITECTURE
   ───────────────────────────────────────────────────────────────────────────── */

.arch-diagram {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
}

.arch-layer {
  display: flex;
  gap: var(--space-md);
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.arch-box {
  background: var(--bg-elevated);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  text-align: center;
  min-width: 140px;
  transition: all 0.3s ease;
}

.arch-box:hover {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-md);
}

.arch-box .box-title {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.arch-box .box-tech {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.arch-box.primary {
  border-color: var(--accent-primary);
  background: var(--accent-primary-subtle);
}

.arch-box.primary .box-title { color: var(--accent-primary); }

.arch-box.secondary {
  border-color: var(--accent-secondary-muted);
  background: var(--accent-secondary-subtle);
}

.arch-box.secondary .box-title { color: var(--accent-secondary); }

.arch-connector {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.25rem;
  padding: var(--space-xs) 0;
}

.arch-legend {
  display: flex;
  gap: var(--space-xl);
  justify-content: center;
  margin-top: var(--space-lg);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-sm);
}

.legend-dot.core { background: var(--accent-primary); }
.legend-dot.infra { background: var(--accent-secondary); }
.legend-dot.ext { background: var(--text-muted); }

/* ─────────────────────────────────────────────────────────────────────────────
   SLIDE 16: PRICING
   ───────────────────────────────────────────────────────────────────────────── */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.pricing-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card.featured {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-glow);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-copper);
  color: var(--text-inverse);
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-tier {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.pricing-amount {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-primary);
}

.pricing-period {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pricing-desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.5;
  min-height: 40px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.pricing-features li .check-icon {
  color: var(--status-compliant);
  flex-shrink: 0;
  font-size: 0.875rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SLIDE 17: FINANCIAL PROJECTIONS
   ───────────────────────────────────────────────────────────────────────────── */

.chart-container {
  margin-top: var(--space-xl);
  display: flex;
  gap: var(--space-2xl);
  align-items: flex-end;
}

.chart-area {
  flex: 1;
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: var(--space-xl);
  height: 280px;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border-default);
}

.bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  height: 100%;
  justify-content: flex-end;
}

.bar {
  width: 100%;
  max-width: 80px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
  min-height: 4px;
  transition: height 1s var(--ease-out);
}

.bar.y1 {
  background: var(--accent-secondary-muted);
  border: 1px solid var(--accent-secondary);
  border-bottom: none;
}

.bar.y2 {
  background: var(--accent-primary-subtle);
  border: 1px solid var(--accent-primary);
  border-bottom: none;
}

.bar.y3 {
  background: linear-gradient(180deg, var(--accent-primary) 0%, var(--accent-primary-muted) 100%);
  border: 1px solid var(--accent-primary);
  border-bottom: none;
}

.bar-value {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
}

.bar-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  font-weight: 500;
}

.metrics-sidebar {
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border-subtle);
}

.metric-label {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.metric-value {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* ─────────────────────────────────────────────────────────────────────────────
   SLIDE 18: MARKET OPPORTUNITY
   ───────────────────────────────────────────────────────────────────────────── */

.tam-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.tam-circles {
  position: relative;
  width: 420px;
  height: 420px;
}

.tam-circle {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 0.3s ease;
}

.tam-circle.tam {
  width: 420px;
  height: 420px;
  border: 2px solid var(--accent-secondary-muted);
  background: var(--accent-secondary-subtle);
  top: 0;
  left: 0;
}

.tam-circle.sam {
  width: 280px;
  height: 280px;
  border: 2px solid var(--accent-primary-muted);
  background: var(--accent-primary-subtle);
  top: 70px;
  left: 70px;
}

.tam-circle.som {
  width: 140px;
  height: 140px;
  border: 2px solid var(--accent-primary);
  background: var(--accent-primary-muted);
  top: 140px;
  left: 140px;
}

.tam-circle .circle-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.tam-circle .circle-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.tam-circle.som .circle-value {
  color: var(--accent-primary);
  font-size: 1.25rem;
}

.tam-legend {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-md);
}

.tam-legend-item {
  text-align: center;
}

.tam-legend-item .legend-title {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.tam-legend-item .legend-desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  max-width: 200px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SLIDE 19: TIMELINE
   ───────────────────────────────────────────────────────────────────────────── */

.timeline {
  display: flex;
  gap: 0;
  margin-top: var(--space-2xl);
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border-default);
}

.timeline-phase {
  flex: 1;
  position: relative;
  padding-top: var(--space-3xl);
}

.timeline-marker {
  position: absolute;
  top: 16px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--accent-primary);
  background: var(--bg-root);
  z-index: 2;
}

.timeline-phase:first-child .timeline-marker {
  background: var(--accent-primary);
}

.timeline-phase-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-primary);
  margin-bottom: var(--space-xs);
}

.timeline-phase-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.timeline-phase-duration {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.timeline-tasks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.timeline-tasks li {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  padding-left: var(--space-md);
  position: relative;
}

.timeline-tasks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-primary);
}

/* ─────────────────────────────────────────────────────────────────────────────
   SLIDE 20: WHY NOW
   ───────────────────────────────────────────────────────────────────────────── */

.why-now-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.why-now-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.why-now-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent-primary);
  border-radius: 0 2px 2px 0;
}

.why-now-card:nth-child(2)::before { background: var(--accent-secondary); }
.why-now-card:nth-child(3)::before { background: var(--status-compliant); }
.why-now-card:nth-child(4)::before { background: var(--status-warning); }

.why-now-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.why-now-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.why-now-stat {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--accent-primary);
}

/* ─────────────────────────────────────────────────────────────────────────────
   SLIDE 21: NEXT STEPS / CTA
   ───────────────────────────────────────────────────────────────────────────── */

.cta-slide {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: var(--space-3xl);
  line-height: 1.6;
}

.cta-steps {
  display: flex;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.cta-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  width: 200px;
}

.cta-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--accent-primary);
  font-size: 1.125rem;
}

.cta-step-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.5;
}

.cta-contact {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--accent-primary);
  letter-spacing: 0.02em;
}

/* ─────────────────────────────────────────────────────────────────────────────
   ANIMATIONS
   ───────────────────────────────────────────────────────────────────────────── */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes countUp {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.slide.active [data-delay] {
  animation: fadeInUp var(--duration-slow) var(--ease-out) both;
}

.slide.active [data-delay="1"] { animation-delay: 0.1s; }
.slide.active [data-delay="2"] { animation-delay: 0.2s; }
.slide.active [data-delay="3"] { animation-delay: 0.3s; }
.slide.active [data-delay="4"] { animation-delay: 0.4s; }
.slide.active [data-delay="5"] { animation-delay: 0.5s; }
.slide.active [data-delay="6"] { animation-delay: 0.6s; }
.slide.active [data-delay="7"] { animation-delay: 0.7s; }
.slide.active [data-delay="8"] { animation-delay: 0.8s; }

/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────────────────────── */

@media (max-width: 1440px) {
  .slide-content {
    max-width: 1100px;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .title-main {
    font-size: 4rem;
  }
}

@media (max-width: 1024px) {
  .slide-content {
    max-width: 900px;
    padding: var(--space-2xl) var(--space-lg);
  }

  .section-title {
    font-size: 2rem;
  }

  .title-main {
    font-size: 3.25rem;
  }

  .problem-stats {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .persona-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-dive {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .vision-layout {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .vision-arrow {
    transform: rotate(90deg);
    justify-content: center;
  }

  .chart-container {
    flex-direction: column;
  }

  .metrics-sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .tam-circles {
    width: 300px;
    height: 300px;
  }

  .tam-circle.tam { width: 300px; height: 300px; }
  .tam-circle.sam { width: 200px; height: 200px; top: 50px; left: 50px; }
  .tam-circle.som { width: 100px; height: 100px; top: 100px; left: 100px; }

  .timeline {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .timeline::before {
    top: 0;
    bottom: 0;
    left: 8px;
    width: 2px;
    height: 100%;
    right: auto;
  }

  .timeline-phase {
    padding-top: 0;
    padding-left: var(--space-2xl);
  }

  .timeline-marker {
    top: 0;
    left: 0;
  }

  .quadrant-chart {
    width: 100%;
    max-width: 500px;
    height: 380px;
  }

  .why-now-grid {
    grid-template-columns: 1fr;
  }

  .cta-steps {
    flex-direction: column;
    align-items: center;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   PRINT STYLES
   ───────────────────────────────────────────────────────────────────────────── */

@media print {
  body {
    background: white;
    color: #1a1a2e;
    overflow: visible;
  }

  .presentation {
    width: auto;
    height: auto;
    overflow: visible;
  }

  .slide {
    position: relative;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    page-break-after: always;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .slide:last-child {
    page-break-after: avoid;
  }

  .progress-container,
  .progress-text,
  .theme-toggle,
  .scroll-hint,
  .slide-bg {
    display: none !important;
  }

  .slide-content {
    max-width: 100%;
    padding: 40px;
  }

  [data-delay] {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }

  .bg-orb,
  .bg-grid {
    display: none;
  }

  .stat-card,
  .persona-card,
  .capability-card,
  .pricing-card,
  .why-now-card,
  .arch-box {
    border: 1px solid #ddd;
    box-shadow: none;
    background: white;
  }

  .section-title,
  .title-main,
  .cta-title {
    -webkit-text-fill-color: #1a1a2e;
    background: none;
  }

  .accent-text,
  .stat-number,
  .pricing-amount {
    color: #b45e3a !important;
    -webkit-text-fill-color: #b45e3a;
  }
}

/* --- Business Term Tooltips --- */
abbr.term {
  text-decoration: none;
  border-bottom: 1px dotted currentColor;
  opacity: 0.85;
  cursor: help;
  position: relative;
}

abbr.term::after {
  content: attr(data-def);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--bg-elevated, #10152b);
  color: var(--text-secondary, #8892b0);
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: normal;
  text-transform: none;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid var(--border-strong, #2c3462);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  white-space: nowrap;
  max-width: 280px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 100;
}

abbr.term:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* For terms near left edge */
abbr.term.tip-right::after {
  left: 0;
  transform: translateX(0) translateY(4px);
}
abbr.term.tip-right:hover::after {
  transform: translateX(0) translateY(0);
}
