/* ═══════════════════════════════════════════════════════════
   CIP PRESENTATION — DESIGN SYSTEM
   Dark Navy + Electric Blue + Cyan Accent
   Syne (Display) + Plus Jakarta Sans (Body)
═══════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-deep:      #050A18;
  --bg-card:      #0C1428;
  --bg-card-2:    #0F1A35;
  --bg-elevated:  #162040;
  --border:       rgba(59, 130, 246, 0.15);
  --border-bright:rgba(59, 130, 246, 0.35);
  --blue:         #3B82F6;
  --blue-light:   #60A5FA;
  --blue-dim:     rgba(59, 130, 246, 0.12);
  --cyan:         #06B6D4;
  --cyan-dim:     rgba(6, 182, 212, 0.12);
  --white:        #F0F4FF;
  --white-70:     rgba(240, 244, 255, 0.7);
  --white-40:     rgba(240, 244, 255, 0.4);
  --white-20:     rgba(240, 244, 255, 0.2);
  --white-10:     rgba(240, 244, 255, 0.08);
  --font-display: 'Syne', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;
  --slide-w:      1280px;
  --slide-h:      720px;
  --radius:       12px;
  --radius-lg:    20px;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #020509;
  font-family: var(--font-body);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ─── DECK ─── */
.deck {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── SLIDE BASE ─── */
.slide {
  position: absolute;
  width: var(--slide-w);
  height: var(--slide-h);
  background: var(--bg-deep);
  border-radius: var(--radius-lg);
  overflow: hidden;
  opacity: 0;
  transform: translateX(60px) scale(0.97);
  transition: opacity 0.55s cubic-bezier(0.4,0,0.2,1),
              transform 0.55s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
  box-shadow: 0 40px 120px rgba(0,0,0,0.8), 0 0 0 1px var(--border);
}

.slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: all;
}

.slide.exit-left {
  opacity: 0;
  transform: translateX(-60px) scale(0.97);
}

/* Responsive scaling */
@media (max-width: 1340px) {
  .deck { transform: scale(0.9); }
}
@media (max-width: 1180px) {
  .deck { transform: scale(0.78); }
}
@media (max-width: 1020px) {
  .deck { transform: scale(0.66); }
}
@media (max-width: 860px) {
  .deck { transform: scale(0.54); }
}

/* ─── SLIDE INNER ─── */
.slide__inner {
  position: relative;
  z-index: 2;
  padding: 52px 64px 48px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ─── SLIDE LABEL ─── */
.slide-label {
  position: absolute;
  top: 24px;
  right: 32px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-40);
  z-index: 10;
}

/* ─── SLIDE HEADER ─── */
.slide-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 5px 12px;
  background: var(--blue-dim);
  border: 1px solid var(--border-bright);
  border-radius: 100px;
  width: fit-content;
}

.slide-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.02em;
}

.accent-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── GEOMETRIC DECORATIONS ─── */
.geo {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.geo--circle-lg {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 70%);
  top: -150px;
  right: -100px;
}

.geo--ring {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(59,130,246,0.1);
  bottom: -80px;
  left: -60px;
}

.geo--ring::after {
  content: '';
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  border: 1px solid rgba(6,182,212,0.08);
}

.geo--line-v {
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(59,130,246,0.15), transparent);
  right: 380px;
  top: 0;
}

.geo--dots-grid {
  width: 200px;
  height: 200px;
  background-image: radial-gradient(circle, rgba(59,130,246,0.2) 1px, transparent 1px);
  background-size: 20px 20px;
  bottom: 40px;
  right: 40px;
  opacity: 0.5;
}

.geo--circle-sm {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,0.07) 0%, transparent 70%);
  top: -60px;
  right: 200px;
}

.geo--cross-lines::before,
.geo--cross-lines::after {
  content: '';
  position: absolute;
  background: rgba(59,130,246,0.06);
}
.geo--cross-lines::before {
  width: 100%;
  height: 1px;
  top: 50%;
}
.geo--cross-lines::after {
  width: 1px;
  height: 100%;
  left: 50%;
}

.geo--hex-pattern {
  width: 300px;
  height: 300px;
  background-image:
    linear-gradient(60deg, rgba(59,130,246,0.05) 25%, transparent 25%),
    linear-gradient(-60deg, rgba(59,130,246,0.05) 25%, transparent 25%),
    linear-gradient(60deg, transparent 75%, rgba(59,130,246,0.05) 75%),
    linear-gradient(-60deg, transparent 75%, rgba(59,130,246,0.05) 75%);
  background-size: 40px 70px;
  top: 0;
  right: 0;
  opacity: 0.6;
}

.noise-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

/* ─── ANIMATE IN ─── */
.animate-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: var(--delay, 0s);
}

.slide.active .animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 1 — TITLE
═══════════════════════════════════════════════════════════ */
.slide--title {
  background: linear-gradient(135deg, #050A18 0%, #080F22 50%, #050A18 100%);
}

.slide__inner--title {
  padding: 56px 64px;
  justify-content: center;
  gap: 20px;
  max-width: 700px;
}

.title-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-light);
  padding: 6px 14px;
  background: var(--blue-dim);
  border: 1px solid var(--border-bright);
  border-radius: 100px;
  width: fit-content;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.title-main {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
}

.title-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 2px;
}

.title-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  background: var(--white-10);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  width: fit-content;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.meta-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-40);
}

.meta-value {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.meta-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.title-org {
  display: flex;
  align-items: center;
  gap: 12px;
}

.org-logo-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--blue-dim);
  border: 1px solid var(--border-bright);
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-light);
}

.org-role {
  font-size: 13px;
  color: var(--white-40);
  font-weight: 500;
}

/* Title right panel */
.title-right-panel {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 200px;
}

.panel-stat {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.panel-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--blue), var(--cyan));
}

.panel-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--blue-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.panel-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--white-40);
  line-height: 1.4;
}

.panel-divider {
  height: 1px;
  background: var(--border);
  margin: 0 16px;
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 2 — OVERVIEW
═══════════════════════════════════════════════════════════ */
.overview-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  flex: 1;
  align-items: start;
}

.ov-role-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.ov-role-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.role-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--blue-dim);
  border: 1px solid var(--border-bright);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.role-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.role-org {
  font-size: 12px;
  color: var(--blue-light);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--white-10);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--white-70);
}

.ov-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.ov-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white-10);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, background 0.3s;
}

.ov-point:hover {
  border-color: var(--border-bright);
  background: var(--blue-dim);
}

.ov-point-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ov-point-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--white-70);
}

.ov-point-text strong {
  color: var(--white);
  font-weight: 600;
}

/* Bottom strip */
.ov-strip {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: auto;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 500;
  color: var(--white-70);
  flex: 1;
  justify-content: center;
}

.strip-icon { font-size: 16px; }

.strip-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 3 — WORKSTREAMS
═══════════════════════════════════════════════════════════ */
.quad-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  flex: 1;
}

.quad-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  cursor: default;
}

.quad-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-2px);
}

.quad-card--1::before { background: linear-gradient(135deg, var(--blue), #1D4ED8); }
.quad-card--2::before { background: linear-gradient(135deg, var(--cyan), #0891B2); }
.quad-card--3::before { background: linear-gradient(135deg, var(--blue), var(--cyan)); }
.quad-card--4::before { background: linear-gradient(135deg, #7C3AED, var(--blue)); }

.quad-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.quad-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
}

.quad-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white-20);
}

.quad-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-dim);
  border: 1px solid var(--border-bright);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quad-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.quad-desc {
  font-size: 12px;
  color: var(--white-40);
  line-height: 1.5;
  flex: 1;
}

.quad-tag {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-light);
  padding: 4px 10px;
  background: var(--blue-dim);
  border: 1px solid var(--border-bright);
  border-radius: 100px;
  width: fit-content;
  margin-top: auto;
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 4 — LEAD GENERATION
═══════════════════════════════════════════════════════════ */
.leads-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  flex: 1;
  align-items: start;
}

.funnel-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.funnel-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-40);
}

.funnel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.funnel-stage {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid var(--border);
  width: 100%;
  transition: border-color 0.3s;
}

.funnel-stage--1 { background: rgba(59,130,246,0.18); border-color: rgba(59,130,246,0.4); width: 100%; }
.funnel-stage--2 { background: rgba(59,130,246,0.14); border-color: rgba(59,130,246,0.3); width: 90%; }
.funnel-stage--3 { background: rgba(59,130,246,0.10); border-color: rgba(59,130,246,0.2); width: 80%; }
.funnel-stage--4 { background: rgba(6,182,212,0.12); border-color: rgba(6,182,212,0.3); width: 70%; }

.funnel-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--white-70);
}

.funnel-count {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--blue-light);
}

.funnel-arrow {
  font-size: 12px;
  color: var(--white-20);
  padding: 4px 0;
}

.leads-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.leads-stat {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
  border-left: 4px solid var(--blue);
}

.stat-big {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--blue-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-desc {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.5;
}

.leads-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bullet-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 7px;
}

.bullet-dot--cyan { background: var(--cyan); }

.bullet-text {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.6;
}

.bullet-text strong {
  color: var(--white);
  font-weight: 600;
}

.leads-outcome {
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(6,182,212,0.08));
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.outcome-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
}

.outcome-text {
  font-size: 13px;
  color: var(--white-70);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 5 — CONTENT
═══════════════════════════════════════════════════════════ */
.content-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  flex: 1;
  align-items: start;
}

.deliverable-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.del-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.del-card:hover { border-color: var(--border-bright); }

.del-card--podcast::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
}

.del-card--reel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), #67E8F9);
}

.del-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.del-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-dim);
  border: 1px solid var(--border-bright);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.del-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 8px;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 100px;
  color: #4ADE80;
}

.del-badge--cyan {
  background: var(--cyan-dim);
  border-color: rgba(6,182,212,0.3);
  color: var(--cyan);
}

.del-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.del-subtitle {
  font-size: 12px;
  color: var(--white-40);
}

.del-tools {
  display: flex;
  gap: 6px;
}

.tool-chip {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  background: var(--white-10);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--white-70);
}

.content-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.tools-used {
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.tools-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-40);
}

.tools-row {
  display: flex;
  gap: 20px;
}

.tool-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--white-70);
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 6 — AI
═══════════════════════════════════════════════════════════ */
.ai-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  flex: 1;
  align-items: center;
}

.ai-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.ai-core {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-core-inner {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
  border: 2px solid var(--border-bright);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  z-index: 2;
  box-shadow: 0 0 30px rgba(59,130,246,0.2);
}

.ai-core-inner span {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  color: var(--blue-light);
  letter-spacing: 0.1em;
}

.ai-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(59,130,246,0.2);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.ai-orbit--1 { width: 120px; height: 120px; animation: orbit1 8s linear infinite; }
.ai-orbit--2 { width: 160px; height: 160px; animation: orbit2 12s linear infinite; }
.ai-orbit--3 { width: 200px; height: 200px; animation: orbit3 16s linear infinite; }

@keyframes orbit1 { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes orbit2 { from { transform: rotate(120deg); } to { transform: rotate(480deg); } }
@keyframes orbit3 { from { transform: rotate(240deg); } to { transform: rotate(600deg); } }

.ai-node {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: 100px;
  color: var(--blue-light);
  white-space: nowrap;
  transform: translateY(-50%);
  margin-top: -1px;
}

.ai-badge-wrap { display: flex; justify-content: center; }

.ai-badge {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--blue-dim), var(--cyan-dim));
  border: 1px solid var(--border-bright);
  border-radius: 100px;
  color: var(--blue-light);
}

.ai-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}

.tg-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s;
}

.tg-item:hover { border-color: var(--border-bright); }

.tg-icon { font-size: 18px; }

.tg-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.tg-use {
  font-size: 11px;
  color: var(--white-40);
  margin-left: auto;
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 7 — BRANDING
═══════════════════════════════════════════════════════════ */
.branding-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.branding-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.brand-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.brand-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
}

.brand-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.brand-card-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-dim);
  border: 1px solid var(--border-bright);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-card-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}

.brand-card-desc {
  font-size: 13px;
  color: var(--white-40);
  line-height: 1.6;
}

.branding-outcome {
  padding: 20px 28px;
  background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(6,182,212,0.06));
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bo-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
}

.bo-text {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.6;
}

.bo-text strong { color: var(--white); }

.bo-pillars {
  display: flex;
  gap: 24px;
}

.bo-pillar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white-70);
}

.bp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 8 — INDUSTRY
═══════════════════════════════════════════════════════════ */
.industry-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  flex: 1;
  align-items: center;
}

.ecosystem {
  position: relative;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eco-center {
  position: absolute;
  z-index: 3;
}

.eco-center-inner {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  box-shadow: 0 0 30px rgba(59,130,246,0.4);
}

.eco-center-inner span {
  font-size: 10px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.1em;
}

.eco-node {
  position: absolute;
  z-index: 2;
}

.eco-node--1 { top: 10px; left: 50%; transform: translateX(-50%); }
.eco-node--2 { bottom: 20px; right: 10px; }
.eco-node--3 { bottom: 20px; left: 10px; }

.eco-node-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 600;
  color: var(--white-70);
  white-space: nowrap;
}

.eco-line {
  position: absolute;
  background: linear-gradient(to right, rgba(59,130,246,0.3), rgba(6,182,212,0.3));
  height: 1px;
  transform-origin: left center;
  z-index: 1;
}

.eco-line--1 { width: 80px; top: 50px; left: 50%; transform: translateX(-50%) rotate(-90deg); }
.eco-line--2 { width: 80px; bottom: 60px; right: 30px; transform: rotate(-30deg); }
.eco-line--3 { width: 80px; bottom: 60px; left: 30px; transform: rotate(30deg); }

.industry-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.itag {
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  background: var(--blue-dim);
  border: 1px solid var(--border-bright);
  border-radius: 100px;
  color: var(--blue-light);
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 9 — IMPACT
═══════════════════════════════════════════════════════════ */
.impact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  flex: 1;
}

.impact-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-40);
  margin-bottom: 12px;
}

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

.metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.metric-card:hover { border-color: var(--border-bright); }

.metric-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.metric-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--blue-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-unit {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-40);
}

.metric-desc {
  font-size: 11px;
  color: var(--white-40);
  line-height: 1.4;
  margin-top: 4px;
}

.skills-section {
  display: flex;
  flex-direction: column;
}

.skills-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.skill-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.skill-icon {
  width: 32px;
  height: 32px;
  background: var(--blue-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.skill-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white-70);
  width: 200px;
  flex-shrink: 0;
}

.skill-bar {
  flex: 1;
  height: 6px;
  background: var(--white-10);
  border-radius: 100px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 100px;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1) 0.5s;
}

.slide.active .skill-fill {
  width: var(--w);
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 10 — CONCLUSION
═══════════════════════════════════════════════════════════ */
.slide--conclusion {
  background: linear-gradient(135deg, #050A18 0%, #080F22 50%, #050A18 100%);
}

.slide__inner--conclusion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 52px 64px;
  align-items: center;
}

.conclusion-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.learnings-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.learning-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 18px;
  background: var(--white-10);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s;
}

.learning-item:hover { border-color: var(--border-bright); }

.li-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
  flex-shrink: 0;
  width: 24px;
}

.li-text {
  font-size: 13px;
  color: var(--white-70);
  line-height: 1.5;
}

.li-text strong { color: var(--white); }

.conclusion-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.closing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.closing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.closing-quote {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  line-height: 0.6;
  color: var(--blue);
  opacity: 0.4;
}

.closing-text {
  font-size: 15px;
  color: var(--white-70);
  line-height: 1.7;
  font-style: italic;
}

.closing-divider {
  height: 1px;
  background: var(--border);
}

.closing-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cm-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.cm-role {
  font-size: 12px;
  color: var(--white-40);
}

.closing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ctag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--blue-dim);
  border: 1px solid var(--border-bright);
  border-radius: 100px;
  color: var(--blue-light);
}

.final-stats {
  display: flex;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.fs-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px;
  border-right: 1px solid var(--border);
}

.fs-item:last-child { border-right: none; }

.fs-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fs-label {
  font-size: 11px;
  color: var(--white-40);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
.nav-bar {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 20px;
  background: rgba(12, 20, 40, 0.9);
  border: 1px solid var(--border);
  border-radius: 100px;
  backdrop-filter: blur(20px);
  z-index: 100;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white-10);
  color: var(--white-70);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.nav-btn:hover:not(:disabled) {
  background: var(--blue-dim);
  border-color: var(--border-bright);
  color: var(--white);
}

.nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.nav-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white-20);
  cursor: pointer;
  transition: all 0.3s;
}

.nav-dot.active {
  width: 20px;
  border-radius: 3px;
  background: var(--blue);
}

.nav-counter {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--white-40);
  min-width: 40px;
  text-align: center;
}

/* ─── PROGRESS BAR ─── */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.05);
  z-index: 200;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
  border-radius: 0 2px 2px 0;
}

/* ─── KEYBOARD HINT ─── */
.keyboard-hint {
  position: fixed;
  bottom: 28px;
  right: 32px;
  font-size: 11px;
  color: var(--white-20);
  font-weight: 500;
  letter-spacing: 0.05em;
  z-index: 100;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { display: none; }