/* ============================================
   ZOHO SERIES B PITCH DECK — STYLES
   Palette: Copper & Slate / Indigo Ink
   Fonts: Cormorant Garamond + Manrope + Space Mono
   ============================================ */

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

:root {
  --gold: #C9A87C;
  --gold-light: #E8D5B0;
  --orange: #E67E22;
  --orange-light: #F39C12;
  --deep: #0D0D1A;
  --deep2: #12122A;
  --slate: #1E2035;
  --slate2: #252840;
  --indigo: #3D1E7C;
  --purple: #7B68EE;
  --teal: #4A6670;
  --text-primary: #F0EDE8;
  --text-secondary: #A8A4B8;
  --text-muted: #6B6880;
  --border: rgba(201,168,124,0.15);
  --border-bright: rgba(201,168,124,0.35);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Manrope', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  background: var(--deep);
  font-family: var(--font-body);
  color: var(--text-primary);
}

/* ============ SLIDE SYSTEM ============ */
.slide {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateX(60px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
}
.slide.active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
.slide.exit-left {
  opacity: 0;
  transform: translateX(-60px);
}

/* ============ BACKGROUNDS ============ */
.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,124,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,124,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.orb-1 { width: 500px; height: 500px; background: var(--indigo); top: -150px; left: -100px; }
.orb-2 { width: 350px; height: 350px; background: var(--orange); bottom: -100px; right: 200px; opacity: 0.12; }
.orb-3 { width: 250px; height: 250px; background: var(--gold); top: 40%; right: -80px; opacity: 0.1; }
.orb-4 { width: 450px; height: 450px; background: #1B0A3C; top: -100px; right: -100px; }
.orb-5 { width: 300px; height: 300px; background: var(--teal); bottom: -80px; left: 100px; opacity: 0.15; }
.orb-6 { width: 400px; height: 400px; background: var(--indigo); bottom: -120px; right: -80px; }
.orb-7 { width: 280px; height: 280px; background: var(--orange); top: -60px; left: 200px; opacity: 0.1; }

/* ============ LAYOUT ============ */
.slide-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  flex: 1;
  overflow: hidden;
}
.col-left {
  padding: 32px 28px 24px 36px;
  border-right: 1px solid var(--border);
  overflow-y: auto;
  scrollbar-width: none;
}
.col-left::-webkit-scrollbar { display: none; }
.col-right {
  padding: 32px 36px 24px 28px;
  overflow-y: auto;
  scrollbar-width: none;
}
.col-right::-webkit-scrollbar { display: none; }

/* ============ FOOTER ============ */
.slide-footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 36px;
  border-top: 1px solid var(--border);
  background: rgba(13,13,26,0.8);
  backdrop-filter: blur(10px);
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
.slide-num { color: var(--gold); font-weight: 700; }

/* ============ SLIDE 1 — COVER ============ */
.confidential-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--orange);
  background: rgba(230,126,34,0.1);
  border: 1px solid rgba(230,126,34,0.3);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.logo-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--deep);
  flex-shrink: 0;
}
.logo-name {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  display: block;
  line-height: 1;
}
.logo-sub {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 22px;
  font-weight: 400;
}
.raise-pill-row {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.raise-pill {
  background: rgba(201,168,124,0.08);
  border: 1px solid var(--border-bright);
  border-radius: 6px;
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pill-label {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}
.pill-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.founder-block {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(201,168,124,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.founder-avatar {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--indigo), var(--purple));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.founder-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
}
.founder-title {
  font-size: 10px;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}

/* Right col — slide 1 */
.section-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--orange);
  margin-bottom: 6px;
}
.section-label-right {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 6px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-title-lg {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-title-lg em { font-style: italic; color: var(--gold); }

.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
.metric-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.metric-card:hover {
  border-color: var(--border-bright);
  background: rgba(201,168,124,0.06);
}
.metric-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.metric-lbl {
  font-size: 9px;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.3;
}
.metric-delta {
  font-family: var(--font-mono);
  font-size: 8px;
  color: #4CAF50;
  margin-top: 2px;
}

.thesis-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.thesis-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 10px;
  background: rgba(255,255,255,0.02);
  border-left: 2px solid var(--border-bright);
  border-radius: 0 4px 4px 0;
}
.thesis-num {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.thesis-text {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.4;
}
.thesis-text strong { color: var(--text-primary); }

.team-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.team-chip {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  background: rgba(123,104,238,0.08);
  border: 1px solid rgba(123,104,238,0.2);
  padding: 4px 8px;
  border-radius: 3px;
}

/* ============ SLIDE 2 — MARKET/FINANCIALS ============ */
.market-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.market-bar {
  position: relative;
  height: 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.bar-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  border-radius: 3px;
  transition: width 1s ease;
}
.tam .bar-fill { background: linear-gradient(90deg, rgba(61,30,124,0.6), rgba(123,104,238,0.3)); }
.sam .bar-fill { background: linear-gradient(90deg, rgba(74,102,112,0.6), rgba(74,102,112,0.3)); }
.som .bar-fill { background: linear-gradient(90deg, rgba(201,168,124,0.5), rgba(201,168,124,0.2)); }
.zoho .bar-fill { background: linear-gradient(90deg, var(--orange), rgba(230,126,34,0.4)); }
.bar-info {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 10px;
}
.bar-label { font-size: 9px; font-weight: 600; color: var(--text-primary); }
.bar-val { font-family: var(--font-mono); font-size: 8px; color: var(--gold); }

.product-grid-label {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.product-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}
.pchip {
  font-size: 9px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 3px;
  border: 1px solid;
}
.pchip.crm { color: #7B68EE; border-color: rgba(123,104,238,0.3); background: rgba(123,104,238,0.08); }
.pchip.fin { color: #4CAF50; border-color: rgba(76,175,80,0.3); background: rgba(76,175,80,0.08); }
.pchip.hr  { color: #E67E22; border-color: rgba(230,126,34,0.3); background: rgba(230,126,34,0.08); }
.pchip.mkt { color: #E91E63; border-color: rgba(233,30,99,0.3); background: rgba(233,30,99,0.08); }
.pchip.collab { color: #00BCD4; border-color: rgba(0,188,212,0.3); background: rgba(0,188,212,0.08); }
.pchip.it  { color: #C9A87C; border-color: rgba(201,168,124,0.3); background: rgba(201,168,124,0.08); }
.pchip.ai  { color: #F39C12; border-color: rgba(243,156,18,0.3); background: rgba(243,156,18,0.08); }
.pchip.bi  { color: #9C27B0; border-color: rgba(156,39,176,0.3); background: rgba(156,39,176,0.08); }
.pchip.dev { color: #4A6670; border-color: rgba(74,102,112,0.3); background: rgba(74,102,112,0.08); }
.pchip.sup { color: #FF5722; border-color: rgba(255,87,34,0.3); background: rgba(255,87,34,0.08); }

.zoho-one-box {
  background: rgba(201,168,124,0.05);
  border: 1px solid var(--border-bright);
  border-radius: 8px;
  padding: 12px;
}
.zo-label {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 10px;
}
.zo-compare {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.zo-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 6px;
  flex: 1;
  min-width: 100px;
}
.zo-item.zo-winner {
  border-color: var(--gold);
  background: rgba(201,168,124,0.08);
}
.zo-name { font-size: 9px; font-weight: 700; color: var(--text-primary); }
.zo-price { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--gold); line-height: 1; }
.zo-price.zo-expensive { color: #EF5350; }
.zo-price small { font-size: 9px; font-family: var(--font-body); color: var(--text-muted); }
.zo-apps { font-size: 8px; color: var(--text-muted); }
.zo-vs {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
}
.zo-saving {
  font-size: 10px;
  color: var(--text-secondary);
  text-align: center;
  padding-top: 6px;
  border-top: 1px solid var(--border);
}
.zo-saving strong { color: #4CAF50; }

/* Revenue chart */
.rev-chart {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 12px;
}
.chart-title {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100px;
}
.cbar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  height: 100%;
}
.cbar::before {
  content: '';
  display: block;
  width: 100%;
  height: var(--h);
  background: linear-gradient(180deg, rgba(74,102,112,0.8), rgba(74,102,112,0.3));
  border-radius: 3px 3px 0 0;
  transition: height 1s ease;
}
.cbar.highlight::before {
  background: linear-gradient(180deg, var(--gold), rgba(201,168,124,0.4));
}
.cbar.projected::before {
  background: linear-gradient(180deg, var(--orange), rgba(230,126,34,0.3));
  opacity: 0.7;
  border: 1px dashed rgba(230,126,34,0.5);
}
.cbar-val {
  font-family: var(--font-mono);
  font-size: 7px;
  color: var(--text-muted);
  text-align: center;
  order: -1;
}
.cbar.highlight .cbar-val { color: var(--gold); }
.cbar.projected .cbar-val { color: var(--orange); }
.cbar-yr {
  font-family: var(--font-mono);
  font-size: 7px;
  color: var(--text-muted);
}

.unit-econ-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 6px;
  margin-bottom: 12px;
}
.ue-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}
.ue-val {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.ue-lbl { font-size: 8px; color: var(--text-secondary); font-weight: 600; }
.ue-bench { font-family: var(--font-mono); font-size: 7px; color: #4CAF50; }

.geo-rev { margin-bottom: 12px; }
.geo-title {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.geo-bars { display: flex; flex-direction: column; gap: 5px; }
.geo-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.geo-name { font-size: 9px; font-weight: 600; color: var(--text-secondary); width: 52px; flex-shrink: 0; }
.geo-bar-wrap {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  overflow: hidden;
}
.geo-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), rgba(74,102,112,0.4));
  border-radius: 4px;
  transition: width 1s ease;
}
.geo-fill.geo-hot {
  background: linear-gradient(90deg, var(--orange), rgba(230,126,34,0.4));
}
.geo-pct { font-family: var(--font-mono); font-size: 8px; color: var(--text-muted); width: 90px; flex-shrink: 0; }

.comp-table { }
.comp-title {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.comp-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 10px;
}
.comp-table th {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-align: left;
  padding: 5px 8px;
  border-bottom: 1px solid var(--border);
}
.comp-table td {
  padding: 5px 8px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.comp-table .zoho-row td {
  background: rgba(201,168,124,0.06);
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-bright);
}
.comp-table .no { color: #EF5350; }
.comp-table .yes { color: #4CAF50; font-weight: 700; }
.comp-note {
  font-size: 9px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 6px;
  padding: 6px 8px;
  background: rgba(76,175,80,0.05);
  border-left: 2px solid rgba(76,175,80,0.3);
}

/* ============ SLIDE 3 — CAP TABLE / TERMS ============ */
.cap-intro {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 14px;
}
.cap-table-wrap {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 14px;
}
.cap-title {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 12px;
}
.cap-donut-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.donut-wrap { width: 100px; flex-shrink: 0; }
.donut-svg { width: 100%; height: auto; }
.donut-center-val {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  fill: var(--gold);
}
.donut-center-lbl {
  font-family: var(--font-body);
  font-size: 6px;
  fill: var(--text-muted);
}
.donut-legend { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
}
.leg-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.leg-name { flex: 1; color: var(--text-secondary); }
.leg-pct { font-family: var(--font-mono); font-size: 9px; color: var(--text-primary); font-weight: 700; width: 38px; text-align: right; }
.leg-val { font-family: var(--font-mono); font-size: 8px; color: var(--gold); width: 42px; text-align: right; }

.dilution-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
  background: rgba(201,168,124,0.04);
  border-radius: 6px;
  border: 1px solid var(--border);
  flex-wrap: wrap;
}
.dil-item { display: flex; flex-direction: column; align-items: center; gap: 2px; flex: 1; }
.dil-label { font-family: var(--font-mono); font-size: 7px; color: var(--text-muted); letter-spacing: 0.08em; }
.dil-val { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--text-primary); }
.dil-val.orange { color: var(--orange); }
.dil-arrow { font-size: 14px; color: var(--text-muted); flex-shrink: 0; }

.use-funds-wrap {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
}
.uf-title {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 10px;
}
.uf-bars { display: flex; flex-direction: column; gap: 7px; }
.uf-row { display: flex; align-items: center; gap: 8px; }
.uf-label { font-size: 9px; font-weight: 600; color: var(--text-secondary); width: 130px; flex-shrink: 0; }
.uf-bar-wrap {
  flex: 1;
  height: 10px;
  background: rgba(255,255,255,0.05);
  border-radius: 5px;
  overflow: hidden;
}
.uf-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), rgba(201,168,124,0.4));
  border-radius: 5px;
  transition: width 1s ease;
}
.uf-fill.uf-ai { background: linear-gradient(90deg, var(--purple), rgba(123,104,238,0.4)); }
.uf-fill.uf-infra { background: linear-gradient(90deg, var(--teal), rgba(74,102,112,0.4)); }
.uf-fill.uf-ma { background: linear-gradient(90deg, var(--orange), rgba(230,126,34,0.4)); }
.uf-amt { font-family: var(--font-mono); font-size: 8px; color: var(--text-muted); width: 70px; flex-shrink: 0; }

/* Terms grid */
.terms-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.term-row {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  gap: 10px;
}
.term-row:last-child { border-bottom: none; }
.term-row.highlight-row { background: rgba(201,168,124,0.05); }
.term-k {
  font-family: var(--font-mono);
  font-size: 8px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  width: 130px;
  flex-shrink: 0;
}
.term-v {
  font-size: 10px;
  color: var(--text-secondary);
  flex: 1;
}
.term-v.orange { color: var(--orange); font-weight: 700; font-family: var(--font-display); font-size: 13px; }

.outcomes-box {
  background: rgba(230,126,34,0.06);
  border: 1px solid rgba(230,126,34,0.25);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
}
.out-title {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 10px;
}
.out-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 8px;
}
.out-item { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.out-val {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--orange);
  line-height: 1;
}
.out-lbl { font-size: 8px; color: var(--text-muted); text-align: center; }

.cta-block {
  background: linear-gradient(135deg, rgba(61,30,124,0.3), rgba(201,168,124,0.1));
  border: 1px solid var(--border-bright);
  border-radius: 8px;
  padding: 14px 16px;
  text-align: center;
}
.cta-text {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.4;
}
.cta-contact {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.08em;
}

/* ============ NAVIGATION ============ */
.nav-controls {
  position: fixed;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 100;
  background: rgba(13,13,26,0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-bright);
  border-radius: 40px;
  padding: 8px 18px;
}
.nav-btn {
  background: none;
  border: 1px solid var(--border-bright);
  color: var(--gold);
  width: 30px; height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.nav-btn:hover:not(:disabled) {
  background: rgba(201,168,124,0.15);
  border-color: var(--gold);
}
.nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.nav-dots { display: flex; gap: 8px; align-items: center; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 4px;
}

/* ============ KEYBOARD HINT ============ */
.key-hint {
  position: fixed;
  bottom: 44px;
  right: 36px;
  font-family: var(--font-mono);
  font-size: 8px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  z-index: 100;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.slide.active .col-left > * { animation: fadeUp 0.5s ease both; }
.slide.active .col-left > *:nth-child(1) { animation-delay: 0.05s; }
.slide.active .col-left > *:nth-child(2) { animation-delay: 0.1s; }
.slide.active .col-left > *:nth-child(3) { animation-delay: 0.15s; }
.slide.active .col-left > *:nth-child(4) { animation-delay: 0.2s; }
.slide.active .col-left > *:nth-child(5) { animation-delay: 0.25s; }
.slide.active .col-left > *:nth-child(6) { animation-delay: 0.3s; }
.slide.active .col-right > * { animation: fadeUp 0.5s ease both; }
.slide.active .col-right > *:nth-child(1) { animation-delay: 0.15s; }
.slide.active .col-right > *:nth-child(2) { animation-delay: 0.2s; }
.slide.active .col-right > *:nth-child(3) { animation-delay: 0.25s; }
.slide.active .col-right > *:nth-child(4) { animation-delay: 0.3s; }
.slide.active .col-right > *:nth-child(5) { animation-delay: 0.35s; }
.slide.active .col-right > *:nth-child(6) { animation-delay: 0.4s; }