/* ═══════════════════════════════════════════════════════════
   GREENPACE ELECTRICITY — PITCH DECK STYLES
   Design System: Retro-Futuristic · Dark · Neon Accents
   Fonts: Syne (Display) + Outfit (Body) + Space Mono (Code)
═══════════════════════════════════════════════════════════ */

/* ── CSS VARIABLES ── */
:root {
  --bg-deep:       #050d2a;
  --bg-mid:        #0a1535;
  --bg-card:       #0d1e45;
  --bg-card-hover: #112258;
  --green:         #00c853;
  --green-dim:     #00c85340;
  --green-glow:    #00c85320;
  --pink:          #ff4081;
  --pink-dim:      #ff408140;
  --pink-glow:     #ff408120;
  --purple:        #6200ea;
  --purple-dim:    #6200ea40;
  --purple-glow:   #6200ea20;
  --orange:        #ff9800;
  --orange-dim:    #ff980040;
  --white:         #ffffff;
  --white-80:      rgba(255,255,255,0.8);
  --white-60:      rgba(255,255,255,0.6);
  --white-40:      rgba(255,255,255,0.4);
  --white-20:      rgba(255,255,255,0.2);
  --white-10:      rgba(255,255,255,0.1);
  --white-05:      rgba(255,255,255,0.05);
  --font-display:  'Syne', sans-serif;
  --font-body:     'Outfit', sans-serif;
  --font-mono:     'Space Mono', monospace;
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     32px;
  --transition:    all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  background: var(--bg-deep);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--green-dim); border-radius: 2px; }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.deck-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: linear-gradient(180deg, rgba(5,13,42,0.95) 0%, transparent 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--white-05);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
}

.logo-icon {
  font-size: 22px;
  filter: drop-shadow(0 0 8px var(--green));
}

.logo-text {
  background: linear-gradient(135deg, var(--green), #69f0ae);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--white-20);
  background: var(--white-05);
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}

.nav-btn:hover {
  border-color: var(--green);
  background: var(--green-glow);
  color: var(--green);
  box-shadow: 0 0 12px var(--green-dim);
}

.slide-counter {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--white-60);
  min-width: 50px;
  text-align: center;
}

#currentSlide { color: var(--green); font-weight: 700; }

.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: var(--transition);
}

.nav-dot.active {
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  width: 20px;
  border-radius: 3px;
}

.nav-dot:hover { background: var(--white-60); }

/* ── PROGRESS BAR ── */
.progress-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--white-10);
  z-index: 200;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--purple), var(--pink));
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px var(--green);
}

/* ══════════════════════════════════════════
   SLIDE BASE
══════════════════════════════════════════ */
.slide {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-deep);
  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);
}

.slide-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  padding: 90px 60px 40px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}

/* ── GRID BACKGROUND ── */
.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,200,83,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,83,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ── ENERGY ORBS ── */
.energy-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,200,83,0.15) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(98,0,234,0.12) 0%, transparent 70%);
  bottom: -80px; right: -80px;
  animation-delay: -3s;
}

.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,64,129,0.1) 0%, transparent 70%);
  top: 50%; right: 20%;
  animation-delay: -6s;
}

.orb-green-center {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,200,83,0.08) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.orb-purple-right {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(98,0,234,0.12) 0%, transparent 70%);
  top: 0; right: -100px;
}

.orb-green-left {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,200,83,0.1) 0%, transparent 70%);
  bottom: 0; left: -100px;
}

.orb-cta-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,200,83,0.12) 0%, transparent 70%);
  top: -200px; left: -200px;
  animation-delay: 0s;
}

.orb-cta-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(98,0,234,0.15) 0%, transparent 70%);
  bottom: -150px; right: -150px;
  animation-delay: -4s;
}

.orb-cta-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,64,129,0.1) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -2s;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

/* ── SLIDE HEADER ── */
.slide-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.slide-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--green);
  letter-spacing: 0.15em;
  opacity: 0.8;
}

.slide-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-40);
  padding: 4px 12px;
  border: 1px solid var(--white-10);
  border-radius: 20px;
  background: var(--white-05);
}

/* ── SLIDE TITLE ── */
.slide-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 32px;
  color: var(--white);
}

/* ── HIGHLIGHT COLORS ── */
.highlight-green {
  background: linear-gradient(135deg, var(--green), #69f0ae);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-pink {
  background: linear-gradient(135deg, var(--pink), #ff80ab);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-purple {
  background: linear-gradient(135deg, var(--purple), #b388ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── REVEAL ANIMATIONS ── */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1) var(--delay, 0s),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) var(--delay, 0s);
}

.slide.active .reveal-up {
  opacity: 1;
  transform: translateY(0);
}

/* ── BLINK ANIMATIONS ── */
.blink { animation: blink 1.5s ease-in-out infinite; }
.blink-slow { animation: blink 2.5s ease-in-out infinite; }

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

/* ══════════════════════════════════════════
   SLIDE 1 — COVER
══════════════════════════════════════════ */
.slide-cover { background: var(--bg-deep); }

.city-skyline {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 320px;
  overflow: hidden;
  opacity: 0.7;
}

.city-skyline svg {
  width: 100%;
  height: 100%;
}

.cover-content {
  justify-content: center;
  align-items: flex-start;
  padding-top: 80px;
  padding-bottom: 340px;
}

.cover-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--white-60);
  padding: 6px 16px;
  border: 1px solid var(--white-10);
  border-radius: 20px;
  background: var(--white-05);
  margin-bottom: 28px;
}

.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: blink 2s ease-in-out infinite;
}

.badge-dot-pink {
  background: var(--pink);
  box-shadow: 0 0 8px var(--pink);
}

.cover-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 800;
  line-height: 0.95;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.title-green {
  background: linear-gradient(135deg, var(--green) 0%, #69f0ae 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(0,200,83,0.4));
}

.title-white { color: var(--white); }

.title-outline {
  -webkit-text-stroke: 2px rgba(255,255,255,0.3);
  color: transparent;
  font-size: clamp(40px, 6vw, 88px);
}

.cover-tagline {
  font-family: var(--font-body);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
  color: var(--white-80);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.cover-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--purple));
  margin-bottom: 20px;
  box-shadow: 0 0 10px var(--green-dim);
}

.cover-sub {
  font-size: 15px;
  color: var(--white-60);
  margin-bottom: 36px;
  line-height: 1.8;
}

.mono-text {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--green);
  letter-spacing: 0.05em;
}

.cover-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.stat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 24px;
  border: 1px solid var(--white-10);
  border-radius: var(--radius-md);
  background: var(--white-05);
  backdrop-filter: blur(10px);
  min-width: 100px;
  transition: var(--transition);
}

.stat-pill:hover {
  border-color: var(--green-dim);
  background: var(--green-glow);
  transform: translateY(-2px);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: var(--white-60);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════
   SLIDE 2 — PROBLEM
══════════════════════════════════════════ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.problem-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--white-10);
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

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

.card-red::before { background: linear-gradient(90deg, var(--pink), transparent); }
.card-purple::before { background: linear-gradient(90deg, var(--purple), transparent); }
.card-orange::before { background: linear-gradient(90deg, var(--orange), transparent); }

.problem-card:hover {
  transform: translateY(-4px);
  border-color: var(--white-20);
}

.problem-icon { margin-bottom: 16px; }

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.problem-card p {
  font-size: 14px;
  color: var(--white-60);
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-stat {
  padding: 14px;
  border-radius: var(--radius-sm);
  background: var(--white-05);
  border: 1px solid var(--white-10);
}

.stat-big {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.card-red .stat-big { color: var(--pink); }
.card-purple .stat-big { color: var(--purple); }
.card-orange .stat-big { color: var(--orange); }

.stat-desc {
  font-size: 12px;
  color: var(--white-50);
  line-height: 1.4;
}

.problem-bottom {
  padding: 16px 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(0,200,83,0.08), rgba(98,0,234,0.08));
  border: 1px solid var(--white-10);
}

.bottom-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--white-80);
}

.bottom-icon { font-size: 20px; }
.bottom-line strong { color: var(--green); }

/* ══════════════════════════════════════════
   SLIDE 3 — SOLUTION
══════════════════════════════════════════ */
.solution-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Energy Diagram */
.energy-diagram {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto;
}

.energy-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.core-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 3s ease-in-out infinite;
}

.ring-1 {
  width: 80px; height: 80px;
  border-color: rgba(0,200,83,0.6);
  animation-delay: 0s;
}

.ring-2 {
  width: 130px; height: 130px;
  border-color: rgba(0,200,83,0.3);
  animation-delay: 0.5s;
}

.ring-3 {
  width: 180px; height: 180px;
  border-color: rgba(0,200,83,0.15);
  animation-delay: 1s;
}

@keyframes ringPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.7; }
}

.core-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,83,0.3), rgba(0,200,83,0.05));
  border: 2px solid var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(0,200,83,0.4), inset 0 0 20px rgba(0,200,83,0.1);
}

.core-icon { font-size: 20px; line-height: 1; }
.core-label { font-size: 8px; color: var(--green); font-family: var(--font-mono); letter-spacing: 0.1em; }

.energy-nodes {
  position: absolute;
  inset: 0;
}

.e-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--white-10);
  font-size: 11px;
  color: var(--white-60);
  transition: var(--transition);
  cursor: default;
}

.e-node:hover {
  border-color: var(--green-dim);
  color: var(--white);
  transform: scale(1.05);
}

.node-icon { font-size: 18px; }
.node-text { font-size: 10px; white-space: nowrap; }

.node-top    { top: 0; left: 50%; transform: translateX(-50%); }
.node-right  { right: 0; top: 50%; transform: translateY(-50%); }
.node-bottom { bottom: 0; left: 50%; transform: translateX(-50%); }
.node-left   { left: 0; top: 50%; transform: translateY(-50%); }

/* Solution Points */
.solution-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sol-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--white-10);
  transition: var(--transition);
}

.sol-point:hover {
  border-color: var(--green-dim);
  background: var(--bg-card-hover);
  transform: translateX(4px);
}

.sol-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--green);
  opacity: 0.7;
  min-width: 24px;
  padding-top: 2px;
}

.sol-text h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.sol-text p {
  font-size: 13px;
  color: var(--white-60);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   SLIDE 4 — TECHNOLOGY
══════════════════════════════════════════ */
.tech-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.tech-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--white-10);
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.tech-card:hover {
  transform: translateY(-4px);
  border-color: var(--white-20);
}

.tc-main {
  grid-row: span 1;
}

.tc-glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,83,0.15), transparent 70%);
  pointer-events: none;
}

.tc-glow-purple {
  background: radial-gradient(circle, rgba(98,0,234,0.15), transparent 70%);
}

.tc-glow-pink {
  background: radial-gradient(circle, rgba(255,64,129,0.15), transparent 70%);
}

.tc-icon { margin-bottom: 16px; }

.tech-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.tech-card p {
  font-size: 13px;
  color: var(--white-60);
  line-height: 1.6;
  margin-bottom: 16px;
}

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

.tag {
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--green-glow);
  border: 1px solid var(--green-dim);
  color: var(--green);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

.tag-purple {
  background: var(--purple-glow);
  border-color: var(--purple-dim);
  color: #b388ff;
}

.tag-pink {
  background: var(--pink-glow);
  border-color: var(--pink-dim);
  color: var(--pink);
}

.tech-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  background: var(--white-05);
  border: 1px solid var(--white-10);
}

.tf-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--white-70);
}

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

.tf-divider {
  width: 1px;
  height: 24px;
  background: var(--white-10);
}

/* ══════════════════════════════════════════
   SLIDE 5 — ADVANTAGE
══════════════════════════════════════════ */
.comparison-table {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--white-10);
  margin-bottom: 24px;
}

.ct-header, .ct-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  align-items: center;
}

.ct-header {
  background: var(--bg-card);
  padding: 14px 20px;
  border-bottom: 1px solid var(--white-10);
}

.ct-header .ct-feature {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--white-40);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ct-header .ct-col {
  text-align: center;
  font-size: 13px;
  color: var(--white-60);
  font-weight: 600;
}

.ct-header .ct-gp {
  color: var(--green);
  font-family: var(--font-display);
  font-weight: 700;
}

.ct-row {
  padding: 12px 20px;
  border-bottom: 1px solid var(--white-05);
  transition: var(--transition);
}

.ct-row:last-child { border-bottom: none; }

.ct-row:hover { background: var(--white-05); }

.ct-feature {
  font-size: 14px;
  color: var(--white-80);
}

.ct-col {
  text-align: center;
  font-size: 18px;
}

.ct-col.ct-gp {
  background: linear-gradient(135deg, rgba(0,200,83,0.08), rgba(0,200,83,0.03));
  border-left: 1px solid var(--green-dim);
  border-right: 1px solid var(--green-dim);
  margin: -12px 0;
  padding: 12px 0;
}

.ct-yes { color: var(--green); font-size: 20px; }
.ct-no { color: var(--pink); font-size: 20px; opacity: 0.7; }
.ct-partial { color: var(--orange); font-size: 20px; }

.advantage-tagline {
  text-align: center;
  padding: 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(0,200,83,0.08), rgba(98,0,234,0.08));
  border: 1px solid var(--white-10);
}

.at-text {
  font-size: 16px;
  color: var(--white-80);
}

.at-text em {
  font-style: normal;
  color: var(--green);
  font-weight: 700;
}

/* ══════════════════════════════════════════
   SLIDE 6 — MARKET
══════════════════════════════════════════ */
.market-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.market-circles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}

.market-circle {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition);
}

.market-circle:hover { transform: scale(1.03); }

.mc-tam {
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(0,200,83,0.15), rgba(0,200,83,0.03));
  border: 2px solid rgba(0,200,83,0.4);
  box-shadow: 0 0 40px rgba(0,200,83,0.15), inset 0 0 40px rgba(0,200,83,0.05);
  z-index: 3;
}

.mc-sam {
  width: 170px; height: 170px;
  background: radial-gradient(circle, rgba(98,0,234,0.15), rgba(98,0,234,0.03));
  border: 2px solid rgba(98,0,234,0.4);
  box-shadow: 0 0 30px rgba(98,0,234,0.15);
  margin-top: -20px;
  z-index: 2;
}

.mc-som {
  width: 130px; height: 130px;
  background: radial-gradient(circle, rgba(255,64,129,0.15), rgba(255,64,129,0.03));
  border: 2px solid rgba(255,64,129,0.4);
  box-shadow: 0 0 20px rgba(255,64,129,0.15);
  margin-top: -15px;
  z-index: 1;
}

.mc-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mc-value {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
}

.mc-tam .mc-value { font-size: 26px; color: var(--green); }
.mc-sam .mc-value { font-size: 20px; color: #b388ff; }
.mc-som .mc-value { font-size: 16px; color: var(--pink); }

.mc-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--white-60);
  margin-top: 2px;
}

.mc-desc {
  font-size: 10px;
  color: var(--white-40);
  margin-top: 2px;
  text-align: center;
  max-width: 100px;
  line-height: 1.3;
}

.market-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mstat-card {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--white-10);
  transition: var(--transition);
}

.mstat-card:hover {
  border-color: var(--green-dim);
  transform: translateX(4px);
}

.mstat-icon { font-size: 28px; }

.mstat-content {
  display: flex;
  flex-direction: column;
}

.mstat-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.mstat-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-top: 2px;
}

.mstat-sub {
  font-size: 12px;
  color: var(--white-50);
  margin-top: 2px;
  line-height: 1.4;
}

/* ══════════════════════════════════════════
   SLIDE 7 — TARGET CITIES
══════════════════════════════════════════ */
.cities-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.city-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--white-10);
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.city-card:hover {
  transform: translateY(-4px);
  border-color: var(--white-20);
}

.city-primary {
  border-color: rgba(0,200,83,0.3);
  background: linear-gradient(135deg, rgba(0,200,83,0.08), var(--bg-card));
}

.city-glow {
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,83,0.2), transparent 70%);
  pointer-events: none;
}

.city-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 20px;
  background: var(--green-glow);
  border: 1px solid var(--green-dim);
  color: var(--green);
  width: fit-content;
}

.city-badge-purple {
  background: var(--purple-glow);
  border-color: var(--purple-dim);
  color: #b388ff;
}

.city-badge-pink {
  background: var(--pink-glow);
  border-color: var(--pink-dim);
  color: var(--pink);
}

.city-badge-orange {
  background: var(--orange-dim);
  border-color: rgba(255,152,0,0.4);
  color: var(--orange);
}

.city-icon { font-size: 28px; }

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

.city-state {
  font-size: 11px;
  color: var(--white-40);
  font-family: var(--font-mono);
}

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

.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.ctag {
  font-size: 9px;
  padding: 2px 8px;
  border-radius: 20px;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  color: var(--white-60);
}

.ctag-purple { border-color: var(--purple-dim); color: #b388ff; background: var(--purple-glow); }
.ctag-pink   { border-color: var(--pink-dim); color: var(--pink); background: var(--pink-glow); }
.ctag-orange { border-color: var(--orange-dim); color: var(--orange); background: rgba(255,152,0,0.08); }

.city-opportunity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: var(--white-05);
  border: 1px solid var(--white-10);
  margin-top: 4px;
}

.co-label {
  font-size: 10px;
  color: var(--white-40);
  font-family: var(--font-mono);
}

.co-value {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--green);
}

.cities-total {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(0,200,83,0.1), rgba(98,0,234,0.1));
  border: 1px solid var(--white-10);
}

.ct-label {
  font-size: 13px;
  color: var(--white-60);
}

.ct-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--green);
}

.ct-sub {
  font-size: 12px;
  color: var(--white-40);
  font-family: var(--font-mono);
}

/* ══════════════════════════════════════════
   SLIDE 8 — BUSINESS MODEL
══════════════════════════════════════════ */
.biz-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: start;
}

.biz-streams {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.biz-stream {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--white-10);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.biz-stream::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
}

.bs-1::before { background: var(--green); }
.bs-2::before { background: var(--purple); }
.bs-3::before { background: var(--pink); }

.biz-stream:hover {
  transform: translateX(4px);
  border-color: var(--white-20);
}

.bs-icon { font-size: 28px; min-width: 36px; }

.bs-content { flex: 1; }

.bs-content h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.bs-content p {
  font-size: 13px;
  color: var(--white-60);
  line-height: 1.5;
  margin-bottom: 10px;
}

.bs-metrics {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bsm {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 20px;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  color: var(--white-60);
  font-family: var(--font-mono);
}

.bs-revenue {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: var(--white-05);
  border: 1px solid var(--white-10);
}

.bsr-label {
  font-size: 9px;
  color: var(--white-40);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

.bsr-value {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  margin-top: 2px;
}

.biz-financials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bf-card {
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--white-10);
}

.bf-label {
  display: block;
  font-size: 12px;
  color: var(--white-60);
  margin-bottom: 6px;
}

.bf-value {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 8px;
}

.bf-bar {
  height: 6px;
  border-radius: 3px;
  background: var(--white-10);
  overflow: hidden;
}

.bf-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--green), #69f0ae);
  box-shadow: 0 0 8px var(--green-dim);
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}

.bf-fill-purple {
  background: linear-gradient(90deg, var(--purple), #b388ff);
  box-shadow: 0 0 8px var(--purple-dim);
}

.bf-fill-pink {
  background: linear-gradient(90deg, var(--pink), #ff80ab);
  box-shadow: 0 0 8px var(--pink-dim);
}

.bf-highlight {
  padding: 20px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(0,200,83,0.12), rgba(98,0,234,0.08));
  border: 1px solid rgba(0,200,83,0.3);
  text-align: center;
}

.bfh-label {
  display: block;
  font-size: 12px;
  color: var(--white-60);
  margin-bottom: 6px;
}

.bfh-value {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--green);
  text-shadow: 0 0 20px rgba(0,200,83,0.4);
}

/* ══════════════════════════════════════════
   SLIDE 9 — IMPLEMENTATION
══════════════════════════════════════════ */
.process-timeline {
  position: relative;
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  padding: 20px 0;
}

.process-line {
  position: absolute;
  top: 52px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--purple), var(--pink), var(--orange), var(--green));
  opacity: 0.3;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  padding: 0 8px;
}

.ps-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 16px rgba(0,200,83,0.3);
  transition: var(--transition);
}

.ps-circle:hover {
  box-shadow: 0 0 24px rgba(0,200,83,0.5);
  transform: scale(1.1);
}

.ps-1 .ps-circle { border-color: var(--green); box-shadow: 0 0 16px rgba(0,200,83,0.3); }
.ps-2 .ps-circle { border-color: #69f0ae; box-shadow: 0 0 16px rgba(105,240,174,0.3); }
.ps-3 .ps-circle { border-color: var(--purple); box-shadow: 0 0 16px rgba(98,0,234,0.3); }
.ps-4 .ps-circle { border-color: var(--pink); box-shadow: 0 0 16px rgba(255,64,129,0.3); }
.ps-5 .ps-circle { border-color: var(--orange); box-shadow: 0 0 16px rgba(255,152,0,0.3); }

.ps-circle-final {
  background: linear-gradient(135deg, rgba(255,152,0,0.2), rgba(255,152,0,0.05));
}

.ps-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
}

.ps-content {
  text-align: center;
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--white-10);
  width: 100%;
  transition: var(--transition);
}

.ps-content:hover {
  border-color: var(--white-20);
  transform: translateY(-2px);
}

.ps-icon { font-size: 22px; margin-bottom: 8px; }

.ps-content h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.ps-content p {
  font-size: 11px;
  color: var(--white-60);
  line-height: 1.5;
  margin-bottom: 10px;
}

.ps-duration {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 20px;
  background: var(--green-glow);
  border: 1px solid var(--green-dim);
  color: var(--green);
}

.process-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  background: var(--white-05);
  border: 1px solid var(--white-10);
}

.pf-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.pf-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
}

.pf-label {
  font-size: 12px;
  color: var(--white-60);
}

.pf-divider {
  width: 1px;
  height: 40px;
  background: var(--white-10);
}

/* ══════════════════════════════════════════
   SLIDE 10 — COMPETITIVE EDGE
══════════════════════════════════════════ */
.edge-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.edge-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--white-10);
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.edge-card:hover {
  transform: translateY(-3px);
  border-color: var(--white-20);
}

.ec-large {
  grid-row: span 2;
  border-color: rgba(0,200,83,0.3);
  background: linear-gradient(135deg, rgba(0,200,83,0.06), var(--bg-card));
}

.ec-glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,83,0.15), transparent 70%);
  pointer-events: none;
}

.ec-number {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--white-30);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.ec-icon { font-size: 32px; margin-bottom: 12px; }

.edge-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.ec-large h3 { font-size: 22px; }

.edge-card p {
  font-size: 13px;
  color: var(--white-60);
  line-height: 1.6;
  margin-bottom: 16px;
}

.ec-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ecp-item {
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--green-glow);
  border: 1px solid var(--green-dim);
  color: var(--green);
  font-family: var(--font-mono);
}

.ec-bar-wrap { margin-top: 8px; }

.ecb-label {
  display: block;
  font-size: 11px;
  color: var(--white-50);
  margin-bottom: 6px;
}

.ec-bar {
  height: 8px;
  border-radius: 4px;
  background: var(--white-10);
  overflow: hidden;
}

.ec-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--green), #69f0ae);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 6px;
  font-size: 9px;
  color: var(--bg-deep);
  font-family: var(--font-mono);
  font-weight: 700;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}

.ec-bar-purple { background: linear-gradient(90deg, var(--purple), #b388ff); }
.ec-bar-pink   { background: linear-gradient(90deg, var(--pink), #ff80ab); }
.ec-bar-green  { background: linear-gradient(90deg, #00c853, #69f0ae); }

/* ══════════════════════════════════════════
   SLIDE 11 — VISION
══════════════════════════════════════════ */
.vision-content {
  justify-content: center;
}

.vision-center {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 28px;
}

.vision-globe {
  position: relative;
  width: 260px;
  height: 260px;
  flex-shrink: 0;
}

.globe-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: globeSpin 20s linear infinite;
}

.gr-1 {
  width: 100px; height: 100px;
  border-color: rgba(0,200,83,0.5);
  animation-duration: 8s;
}

.gr-2 {
  width: 170px; height: 170px;
  border-color: rgba(98,0,234,0.3);
  animation-duration: 15s;
  animation-direction: reverse;
}

.gr-3 {
  width: 240px; height: 240px;
  border-color: rgba(255,64,129,0.2);
  animation-duration: 25s;
}

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

.globe-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70px; height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,83,0.2), rgba(0,200,83,0.05));
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 0 30px rgba(0,200,83,0.3);
  z-index: 5;
}

.globe-dot {
  position: absolute;
  font-size: 14px;
  z-index: 4;
  animation: dotOrbit 12s linear infinite;
}

.gd-1 { top: 10px; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.gd-2 { top: 30%; right: 5px; animation-delay: -2s; }
.gd-3 { bottom: 30%; right: 5px; animation-delay: -4s; }
.gd-4 { bottom: 10px; left: 50%; transform: translateX(-50%); animation-delay: -6s; }
.gd-5 { bottom: 30%; left: 5px; animation-delay: -8s; }
.gd-6 { top: 30%; left: 5px; animation-delay: -10s; }

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

.vision-headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.vision-body {
  font-size: 15px;
  color: var(--white-70);
  line-height: 1.7;
  margin-bottom: 24px;
}

.vision-milestones {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.vm-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--white-10);
  min-width: 100px;
  transition: var(--transition);
}

.vm-item:hover {
  border-color: var(--green-dim);
  transform: translateY(-2px);
}

.vm-year {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
}

.vm-event {
  font-size: 11px;
  color: var(--white-60);
  text-align: center;
  margin-top: 2px;
}

.vm-arrow {
  color: var(--white-30);
  font-size: 18px;
}

.vision-quote {
  text-align: center;
  padding: 20px 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(0,200,83,0.06), rgba(98,0,234,0.06));
  border: 1px solid var(--white-10);
  display: flex;
  align-items: center;
  gap: 16px;
}

.vq-mark {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--green);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
}

.vq-text {
  font-size: 16px;
  color: var(--white-80);
  font-style: italic;
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   SLIDE 12 — CTA
══════════════════════════════════════════ */
.cta-content {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--white-60);
  padding: 6px 16px;
  border: 1px solid var(--white-10);
  border-radius: 20px;
  background: var(--white-05);
  margin-bottom: 24px;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 18px;
  color: var(--white-70);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.cta-sub .highlight-pink {
  font-weight: 700;
}

/* Use of Funds */
.cta-use-of-funds {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 32px;
  height: 120px;
}

.uof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.uof-bar-wrap {
  width: 48px;
  height: 80px;
  display: flex;
  align-items: flex-end;
  background: var(--white-05);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--white-10);
}

.uof-bar {
  width: 100%;
  background: linear-gradient(180deg, var(--green), rgba(0,200,83,0.4));
  border-radius: var(--radius-sm);
  transition: height 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
  box-shadow: 0 0 10px rgba(0,200,83,0.3);
}

.uof-bar-purple { background: linear-gradient(180deg, var(--purple), rgba(98,0,234,0.4)); box-shadow: 0 0 10px rgba(98,0,234,0.3); }
.uof-bar-pink   { background: linear-gradient(180deg, var(--pink), rgba(255,64,129,0.4)); box-shadow: 0 0 10px rgba(255,64,129,0.3); }
.uof-bar-orange { background: linear-gradient(180deg, var(--orange), rgba(255,152,0,0.4)); box-shadow: 0 0 10px rgba(255,152,0,0.3); }

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

.uof-label {
  font-size: 11px;
  color: var(--white-50);
  font-family: var(--font-mono);
}

/* Contact Card */
.cta-contact {
  margin-bottom: 24px;
}

.contact-card {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 20px 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid rgba(0,200,83,0.3);
  box-shadow: 0 0 30px rgba(0,200,83,0.1);
}

.cc-logo {
  font-size: 36px;
  filter: drop-shadow(0 0 10px var(--green));
}

.cc-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 2px;
}

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

.cc-email, .cc-web {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--green);
}

.cta-final {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cf-text {
  font-size: 15px;
  color: var(--white-60);
}

.cf-bold {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green), var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── CTA PARTICLES ── */
.cta-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: particleFloat linear infinite;
  opacity: 0;
}

@keyframes particleFloat {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

/* ══════════════════════════════════════════
   KEYBOARD HINT
══════════════════════════════════════════ */
.keyboard-hint {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--white-30);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 50;
  transition: opacity 0.5s;
}

.keyboard-hint.hidden { opacity: 0; }

.key {
  padding: 2px 8px;
  border: 1px solid var(--white-20);
  border-radius: 4px;
  background: var(--white-05);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .slide-content { padding: 80px 32px 32px; }
  .problem-grid { grid-template-columns: 1fr; gap: 12px; }
  .solution-layout { grid-template-columns: 1fr; }
  .energy-diagram { width: 240px; height: 240px; }
  .tech-grid { grid-template-columns: 1fr; }
  .comparison-table { overflow-x: auto; }
  .market-layout { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: 1fr 1fr; }
  .biz-layout { grid-template-columns: 1fr; }
  .process-timeline { flex-direction: column; gap: 16px; }
  .process-line { display: none; }
  .edge-grid { grid-template-columns: 1fr 1fr; }
  .ec-large { grid-row: span 1; }
  .vision-center { grid-template-columns: 1fr; }
  .vision-globe { margin: 0 auto; }
}

@media (max-width: 768px) {
  .deck-nav { padding: 12px 20px; }
  .nav-dots { display: none; }
  .slide-content { padding: 70px 20px 20px; }
  .cover-title { font-size: 48px; }
  .cities-grid { grid-template-columns: 1fr; }
  .edge-grid { grid-template-columns: 1fr; }
  .cta-headline { font-size: 32px; }
}