/* ═══════════════════════════════════════════════════════════
   MAVRO PITCH DECK — STYLES
   Brand: #34F7C5 (teal) ↔ #F63BF3 (magenta) | Dark: #001632
   Fonts: Syne (display) + Plus Jakarta Sans (body)
═══════════════════════════════════════════════════════════ */

:root {
  --teal: #34F7C5;
  --magenta: #F63BF3;
  --blue: #29BCFF;
  --dark: #001632;
  --dark-2: #001f45;
  --dark-3: #002a5c;
  --glass: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.12);
  --text-primary: #ffffff;
  --text-secondary: rgba(255,255,255,0.72);
  --text-muted: rgba(255,255,255,0.45);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --slide-w: 1280px;
  --slide-h: 720px;
  --radius: 16px;
  --radius-sm: 8px;
}

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

html, body {
  width: 100%;
  height: 100%;
  background: #000a1a;
  font-family: var(--font-body);
  overflow: hidden;
}

/* ─── GRADIENT TEXT ─────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(90deg, var(--teal) 0%, var(--magenta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* ─── NAVIGATION ────────────────────────────────────────── */
.deck-nav {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 1000;
  background: rgba(0,22,50,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 10px 24px;
}

.nav-btn {
  background: linear-gradient(135deg, var(--teal), var(--magenta));
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, opacity 0.2s;
  font-family: var(--font-body);
}
.nav-btn:hover { transform: scale(1.1); }
.nav-btn:disabled { opacity: 0.3; cursor: not-allowed; transform: none; }

.slide-counter {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  min-width: 50px;
  text-align: center;
}

/* ─── PROGRESS BAR ──────────────────────────────────────── */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.1);
  z-index: 1000;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--magenta));
  transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
}

/* ─── SLIDE BASE ────────────────────────────────────────── */
.slide {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;
  background: var(--dark);
  overflow: hidden;
}
.slide.active { display: flex; }

/* ─── SLIDE BACKGROUND ──────────────────────────────────── */
.slide-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.orb-1 { width: 500px; height: 500px; background: var(--teal); top: -150px; left: -100px; }
.orb-2 { width: 400px; height: 400px; background: var(--magenta); bottom: -100px; right: -80px; }
.orb-3 { width: 350px; height: 350px; background: var(--blue); top: 50%; right: 10%; opacity: 0.2; }
.orb-4 { width: 300px; height: 300px; background: var(--teal); bottom: 10%; left: 30%; opacity: 0.15; }

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(52,247,197,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52,247,197,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ─── SLIDE CONTENT ─────────────────────────────────────── */
.slide-content {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  max-width: var(--slide-w);
  margin: 0 auto;
  padding: 40px 60px 80px;
  display: flex;
  flex-direction: column;
}

/* ─── SLIDE LABEL ───────────────────────────────────────── */
.slide-label {
  position: absolute;
  bottom: 20px;
  right: 40px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  z-index: 20;
}

/* ─── BRAND LOCKUP ──────────────────────────────────────── */
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cover-logo { width: 52px; height: 52px; object-fit: contain; }
.brand-name {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-lockup-sm {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-logo { width: 32px; height: 32px; object-fit: contain; }
.brand-name-sm {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* ─── SLIDE HEADER ──────────────────────────────────────── */
.slide-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.slide-number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  letter-spacing: -0.02em;
}

/* ─── SECTION TITLE ─────────────────────────────────────── */
.section-title-block {
  margin-bottom: 28px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 8px;
}
.section-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 700px;
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 1 — COVER
═══════════════════════════════════════════════════════════ */
.cover-layout {
  flex-direction: row !important;
  align-items: center;
  gap: 60px;
  padding-top: 60px !important;
}
.cover-left { flex: 1; }
.cover-right {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cover-title {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.05;
  margin: 20px 0 16px;
  letter-spacing: -0.02em;
}
.cover-title-accent {
  background: linear-gradient(90deg, var(--teal), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cover-sub {
  font-size: 18px;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 10px;
}
.cover-tagline {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}
.cover-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.badge {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

/* Ring Visual */
.cover-ring-visual, .cta-ring-visual {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
  animation: spin linear infinite;
}
.ring-outer {
  width: 280px; height: 280px;
  border-color: rgba(246,59,243,0.4);
  animation-duration: 12s;
}
.ring-mid {
  width: 210px; height: 210px;
  border-color: rgba(52,247,197,0.5);
  animation-duration: 8s;
  animation-direction: reverse;
}
.ring-inner {
  width: 140px; height: 140px;
  border-color: rgba(41,188,255,0.4);
  animation-duration: 5s;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.ring-center {
  position: relative;
  z-index: 5;
  width: 80px; height: 80px;
  background: var(--glass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-border);
}
.ring-logo { width: 50px; height: 50px; object-fit: contain; }

.cover-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 2 — VISION & MISSION
═══════════════════════════════════════════════════════════ */
.vm-layout {
  display: flex;
  gap: 0;
  flex: 1;
  align-items: stretch;
}
.vm-card {
  flex: 1;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(20px);
  transition: transform 0.3s;
}
.vm-card:hover { transform: translateY(-4px); }
.vm-card-vision { border-left: 3px solid var(--teal); }
.vm-card-mission { border-left: 3px solid var(--magenta); }
.vm-divider { width: 32px; flex-shrink: 0; }
.vm-icon { width: 52px; height: 52px; }
.vm-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
}
.vm-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 3 — PROBLEM & OPPORTUNITY
═══════════════════════════════════════════════════════════ */
.po-layout {
  display: flex;
  gap: 0;
  flex: 1;
  align-items: stretch;
}
.po-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.po-divider-v {
  width: 1px;
  background: var(--glass-border);
  margin: 0 40px;
  flex-shrink: 0;
}
.po-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  width: fit-content;
}
.problem-tag { background: rgba(246,59,59,0.15); color: #ff6b6b; border: 1px solid rgba(246,59,59,0.3); }
.opportunity-tag { background: rgba(52,247,197,0.12); color: var(--teal); border: 1px solid rgba(52,247,197,0.3); }
.po-heading {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
}
.po-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.po-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.po-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.problem-dot { background: #ff6b6b; box-shadow: 0 0 8px rgba(255,107,107,0.5); }
.opportunity-dot { background: var(--teal); box-shadow: 0 0 8px rgba(52,247,197,0.5); }

.stat-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  backdrop-filter: blur(10px);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}
.stat-label { font-size: 13px; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════
   SLIDE 4 — SOLUTION
═══════════════════════════════════════════════════════════ */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  flex: 1;
}
.highlight-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  backdrop-filter: blur(20px);
  transition: transform 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.highlight-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--magenta));
  opacity: 0;
  transition: opacity 0.3s;
}
.highlight-card:hover { transform: translateY(-6px); border-color: rgba(52,247,197,0.3); }
.highlight-card:hover::before { opacity: 1; }
.hc-icon { width: 40px; height: 40px; }
.hc-icon img { width: 100%; height: 100%; object-fit: contain; }
.hc-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}
.hc-text { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════
   SLIDE 5 — FEATURES
═══════════════════════════════════════════════════════════ */
.features-layout {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  flex: 1;
}
.feature-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  backdrop-filter: blur(20px);
  transition: transform 0.3s;
}
.feature-item:hover { transform: translateX(4px); }
.feature-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.8;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.feature-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   SLIDE 6 — TOKENOMICS
═══════════════════════════════════════════════════════════ */
.tokenomics-layout {
  display: flex;
  gap: 32px;
  flex: 1;
  align-items: flex-start;
}
.token-info-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.token-alloc-col {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.token-info-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(20px);
}
.ti-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ti-row:last-child { border-bottom: none; }
.ti-label { font-size: 13px; color: var(--text-muted); }
.ti-value { font-size: 14px; font-weight: 600; color: var(--text-primary); }

.utility-card {
  background: linear-gradient(135deg, rgba(52,247,197,0.08), rgba(246,59,243,0.08));
  border: 1px solid rgba(52,247,197,0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.utility-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.utility-text { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

.alloc-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  align-self: flex-start;
}
.alloc-chart-wrap {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chart-center-label {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
.chart-supply {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
}
.chart-supply-label { font-size: 12px; color: var(--text-muted); }

.alloc-legend {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  width: 100%;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
}
.legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   SLIDE 7 — DISTRIBUTION TABLE
═══════════════════════════════════════════════════════════ */
.vesting-table-wrap {
  flex: 1;
  overflow: auto;
}
.vesting-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.vesting-table thead tr {
  background: linear-gradient(90deg, rgba(52,247,197,0.15), rgba(246,59,243,0.15));
}
.vesting-table th {
  padding: 14px 16px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  border-bottom: 1px solid var(--glass-border);
}
.vesting-table td {
  padding: 13px 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  vertical-align: middle;
}
.vesting-table tbody tr:hover { background: rgba(255,255,255,0.03); }
.highlight-row { background: rgba(52,247,197,0.05) !important; }
.highlight-row td { color: var(--text-primary); }

.pct-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
}
.pct-highlight {
  background: linear-gradient(90deg, rgba(52,247,197,0.2), rgba(246,59,243,0.2));
  border-color: rgba(52,247,197,0.4);
  color: var(--teal);
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 8 — IDO
═══════════════════════════════════════════════════════════ */
.ido-layout {
  display: flex;
  gap: 32px;
  flex: 1;
  align-items: flex-start;
}
.ido-metrics-col {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ido-alloc-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ido-metric-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  backdrop-filter: blur(10px);
}
.ido-metric-label { font-size: 11px; color: var(--text-muted); letter-spacing: 0.05em; }
.ido-metric-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
}

.fund-bar-list { display: flex; flex-direction: column; gap: 10px; }
.fund-bar-item { display: flex; flex-direction: column; gap: 5px; }
.fund-bar-label { font-size: 12px; color: var(--text-secondary); }
.fund-bar-track {
  height: 28px;
  background: rgba(255,255,255,0.06);
  border-radius: 50px;
  overflow: hidden;
}
.fund-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--magenta));
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  min-width: 40px;
}
.fund-bar-fill span { font-size: 11px; font-weight: 700; color: #001632; }

.staking-rewards-mini {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 16px 20px;
  backdrop-filter: blur(10px);
}
.sr-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
}
.sr-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.sr-item {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
  min-width: 70px;
}
.sr-period { font-size: 11px; color: var(--text-muted); }
.sr-pct { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--text-primary); }

/* ═══════════════════════════════════════════════════════════
   SLIDE 9 — ROADMAP
═══════════════════════════════════════════════════════════ */
.roadmap-layout {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 20px;
}
.roadmap-phase {
  flex: 1;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(20px);
}
.roadmap-connector {
  flex: 0 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
  gap: 4px;
}
.connector-line { width: 1px; height: 20px; background: var(--glass-border); }
.connector-arrow { color: var(--teal); font-size: 18px; }
.phase-header { margin-bottom: 14px; }
.phase-tag {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: linear-gradient(90deg, rgba(52,247,197,0.15), rgba(246,59,243,0.15));
  border: 1px solid rgba(52,247,197,0.3);
  color: var(--teal);
  margin-bottom: 8px;
}
.phase-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}
.phase-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.phase-list li {
  font-size: 13px;
  color: var(--text-secondary);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.phase-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 10px;
  top: 2px;
}

.gtm-strategy {
  display: flex;
  gap: 12px;
}
.gtm-item {
  flex: 1;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}
.gtm-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 10 — TEAM
═══════════════════════════════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.team-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  backdrop-filter: blur(20px);
  transition: transform 0.3s, border-color 0.3s;
}
.team-card:hover { transform: translateY(-6px); border-color: rgba(52,247,197,0.3); }
.team-avatar {
  position: relative;
  width: 80px; height: 80px;
}
.avatar-ring {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(52,247,197,0.2), rgba(246,59,243,0.2));
  border: 2px solid;
  border-color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.avatar-initials {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--teal), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.team-badge {
  position: absolute;
  bottom: -4px; right: -4px;
  width: 28px; height: 28px;
  object-fit: contain;
}
.team-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}
.team-role { font-size: 13px; font-weight: 600; }
.team-desc { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

.partners-strip {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}
.partners-label {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--teal);
  white-space: nowrap;
}
.partners-text { color: var(--text-secondary); }

/* ═══════════════════════════════════════════════════════════
   SLIDE 11 — CTA / CONTACT
═══════════════════════════════════════════════════════════ */
.cta-layout {
  flex-direction: row !important;
  align-items: center;
  gap: 60px;
  padding-top: 60px !important;
}
.cta-left { flex: 1; display: flex; flex-direction: column; gap: 20px; }
.cta-right {
  flex: 0 0 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.cta-heading {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}
.cta-sub { font-size: 16px; color: var(--text-secondary); line-height: 1.6; }
.cta-contact-list { display: flex; flex-direction: column; gap: 14px; }
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text-secondary);
}
.cta-contact-icon {
  width: 40px; height: 40px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-tagline {
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
}

/* ─── PRINT / PDF EXPORT ────────────────────────────────── */
@media print {
  body { overflow: visible; background: #001632; }
  .deck-nav, .progress-bar { display: none !important; }
  .slide {
    position: relative !important;
    display: flex !important;
    width: 297mm;
    height: 167mm;
    page-break-after: always;
    break-after: page;
  }
  .ring { animation: none !important; }
}

/* ─── SLIDE TRANSITIONS ─────────────────────────────────── */
.slide.entering {
  animation: slideIn 0.4s cubic-bezier(0.4,0,0.2,1) forwards;
}
.slide.leaving {
  animation: slideOut 0.4s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideOut {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(-40px); }
}