/* ═══════════════════════════════════════════════════════════════
   MAVRO ASSET ECOSYSTEM — PREMIUM PITCH DECK
   Dark Luxury Black + Gold · Web3 Futuristic
═══════════════════════════════════════════════════════════════ */

/* ── BRAND TOKENS ─────────────────────────────────────────── */
:root {
  /* Core brand colors from App.css */
  --mavro-magenta:   #f63bf3;
  --mavro-cyan:      #34f7c5;
  --mavro-blue:      #29bcff;
  --mavro-purple:    #d42dff;
  --mavro-navy:      #001632;

  /* Dark luxury palette */
  --bg-void:         #020408;
  --bg-deep:         #060c14;
  --bg-card:         #0a1220;
  --bg-card-hover:   #0f1a2e;
  --bg-glass:        rgba(255,255,255,0.04);
  --bg-glass-hover:  rgba(255,255,255,0.07);

  /* Gold accent */
  --gold-bright:     #ffd700;
  --gold-warm:       #f0b429;
  --gold-muted:      #c9922a;
  --gold-dark:       #7a5a1a;

  /* Text */
  --text-primary:    #f0f4ff;
  --text-secondary:  #8899bb;
  --text-muted:      #445577;

  /* Borders */
  --border-subtle:   rgba(255,255,255,0.06);
  --border-gold:     rgba(240,180,41,0.3);
  --border-cyan:     rgba(52,247,197,0.25);
  --border-magenta:  rgba(246,59,243,0.25);

  /* Gradients */
  --grad-brand:      linear-gradient(90deg, var(--mavro-magenta) 0%, var(--mavro-cyan) 100%);
  --grad-brand-v:    linear-gradient(180deg, var(--mavro-magenta) 0%, var(--mavro-cyan) 100%);
  --grad-gold:       linear-gradient(90deg, var(--gold-warm) 0%, var(--gold-bright) 50%, var(--gold-warm) 100%);
  --grad-dark:       linear-gradient(135deg, #060c14 0%, #0a1220 100%);
  --grad-card:       linear-gradient(135deg, rgba(246,59,243,0.08) 0%, rgba(52,247,197,0.08) 100%);

  /* Typography */
  --font-display:    'Syne', sans-serif;
  --font-body:       'Plus Jakarta Sans', sans-serif;

  /* Spacing */
  --slide-pad:       clamp(2rem, 5vw, 5rem);
  --slide-pad-v:     clamp(2rem, 4vh, 4rem);

  /* Transitions */
  --ease-out:        cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:     cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg-void);
  color: var(--text-primary);
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  cursor: default;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── PROGRESS BAR ─────────────────────────────────────────── */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--grad-brand);
  z-index: 1000;
  transition: width 0.5s var(--ease-out);
  box-shadow: 0 0 12px var(--mavro-cyan);
}

/* ── SLIDE COUNTER ────────────────────────────────────────── */
.slide-counter {
  position: fixed;
  bottom: 2rem;
  left: var(--slide-pad);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  z-index: 100;
  transition: color 0.3s;
}
#currentSlide {
  font-size: 1.1rem;
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.counter-sep { color: var(--text-muted); }

/* ── NAV DOTS ─────────────────────────────────────────────── */
.nav-dots {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  z-index: 100;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: all 0.3s var(--ease-out);
  position: relative;
}
.dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}
.dot.active {
  background: var(--mavro-cyan);
  box-shadow: 0 0 8px var(--mavro-cyan);
  transform: scale(1.4);
}
.dot.active::before { border-color: rgba(52,247,197,0.4); }
.dot:hover { background: var(--mavro-magenta); transform: scale(1.3); }

/* ── ARROW NAVIGATION ─────────────────────────────────────── */
.nav-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  z-index: 100;
  transition: all 0.3s var(--ease-out);
  backdrop-filter: blur(10px);
}
.nav-arrow svg { width: 18px; height: 18px; }
.nav-prev { left: 1rem; }
.nav-next { right: 3rem; }
.nav-arrow:hover {
  background: rgba(52,247,197,0.1);
  border-color: var(--mavro-cyan);
  color: var(--mavro-cyan);
  box-shadow: 0 0 20px rgba(52,247,197,0.2);
}
.nav-arrow:disabled { opacity: 0.2; pointer-events: none; }

/* ── SLIDES WRAPPER ───────────────────────────────────────── */
.slides-wrapper {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* ── SLIDE BASE ───────────────────────────────────────────── */
.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  will-change: transform, opacity;
}
.slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 10;
}
.slide.prev {
  opacity: 0;
  transform: translateX(-100%);
  z-index: 5;
}

.slide-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  padding: var(--slide-pad-v) var(--slide-pad);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── BACKGROUND ELEMENTS ──────────────────────────────────── */
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(52,247,197,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52,247,197,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 2;
  pointer-events: none;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(246,59,243,0.12) 0%, transparent 70%);
  top: -150px; left: -100px;
  animation: orbFloat1 8s ease-in-out infinite;
}
.orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(52,247,197,0.1) 0%, transparent 70%);
  bottom: -200px; right: -150px;
  animation: orbFloat2 10s ease-in-out infinite;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(41,188,255,0.08) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat3 12s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, 40px); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-40px, -30px); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.1); }
}

/* ── PARTICLE CANVAS ──────────────────────────────────────── */
.particle-canvas {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

/* ── HEX OVERLAY ──────────────────────────────────────────── */
.hex-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='52' viewBox='0 0 60 52'%3E%3Cpolygon points='30,2 58,17 58,35 30,50 2,35 2,17' fill='none' stroke='rgba(52,247,197,0.04)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 52px;
  opacity: 0.5;
}

/* ── REVEAL ANIMATIONS ────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.slide.active .reveal-up,
.slide.active .reveal-left,
.slide.active .reveal-right { opacity: 1; transform: none; }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.35s; }
.delay-4 { transition-delay: 0.5s; }
.delay-5 { transition-delay: 0.65s; }
.delay-6 { transition-delay: 0.8s; }

/* ── SHARED COMPONENTS ────────────────────────────────────── */
.gradient-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slide-header { margin-bottom: clamp(1.5rem, 3vh, 3rem); }
.slide-tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mavro-cyan);
  margin-bottom: 0.75rem;
  opacity: 0.8;
}
.slide-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.title-underline {
  width: 60px;
  height: 3px;
  background: var(--grad-brand);
  border-radius: 2px;
  box-shadow: 0 0 12px var(--mavro-cyan);
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 1 — COVER
═══════════════════════════════════════════════════════════ */
.slide-cover {
  background: radial-gradient(ellipse at 20% 50%, rgba(246,59,243,0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 50%, rgba(52,247,197,0.12) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 100%, rgba(41,188,255,0.1) 0%, transparent 50%),
              var(--bg-void);
}

.cover-inner {
  align-items: center;
  text-align: center;
  gap: 0;
}

.cover-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  border: 1px solid var(--border-cyan);
  background: rgba(52,247,197,0.06);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--mavro-cyan);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mavro-cyan);
  box-shadow: 0 0 8px var(--mavro-cyan);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.cover-logo-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
}
.logo-glow-ring {
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--mavro-magenta), var(--mavro-cyan), var(--mavro-blue), var(--mavro-magenta));
  animation: spinRing 4s linear infinite;
  opacity: 0.6;
  filter: blur(4px);
}
@keyframes spinRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.cover-logo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(52,247,197,0.4));
  animation: logoFloat 4s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.cover-title {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.title-line-1 {
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: 0.15em;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(246,59,243,0.4));
}
.title-line-2 {
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  letter-spacing: 0.2em;
  color: var(--text-primary);
}

.cover-symbol {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
}
.symbol-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.symbol-value {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.cover-tagline {
  font-size: clamp(0.9rem, 1.5vw, 1.15rem);
  font-weight: 400;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.6;
}

.cover-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}
.meta-item svg { width: 14px; height: 14px; color: var(--mavro-cyan); }
.meta-divider {
  width: 1px;
  height: 20px;
  background: var(--border-subtle);
}

.cover-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-arrow {
  animation: bounceDown 2s ease-in-out infinite;
}
.scroll-arrow svg { width: 16px; height: 16px; color: var(--mavro-cyan); }
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 2 — ABOUT
═══════════════════════════════════════════════════════════ */
.slide-about {
  background: radial-gradient(ellipse at 70% 30%, rgba(52,247,197,0.08) 0%, transparent 50%),
              var(--bg-deep);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-logo-wrap {
  position: relative;
  width: 80px;
  height: 80px;
}
.about-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(52,247,197,0.3));
}
.about-logo-glow {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52,247,197,0.2) 0%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.about-lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
  line-height: 1.6;
  color: var(--text-primary);
}
.about-body {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.pillar-card {
  padding: 1.25rem;
  border-radius: 12px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-card);
  opacity: 0;
  transition: opacity 0.3s;
}
.pillar-card:hover {
  border-color: var(--border-cyan);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(52,247,197,0.1);
}
.pillar-card:hover::before { opacity: 1; }
.pillar-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(52,247,197,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.pillar-icon svg { width: 18px; height: 18px; color: var(--mavro-cyan); }
.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.pillar-card p {
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 3 — PROBLEM & SOLUTION
═══════════════════════════════════════════════════════════ */
.slide-problem {
  background: radial-gradient(ellipse at 30% 70%, rgba(246,59,243,0.08) 0%, transparent 50%),
              var(--bg-deep);
}

.ps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
}

.ps-col-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}
.ps-col-header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
}
.problem-header h3 { color: #ff6b6b; }
.solution-header h3 { color: var(--mavro-cyan); }

.ps-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ps-icon svg { width: 20px; height: 20px; }
.problem-icon { background: rgba(255,107,107,0.15); }
.problem-icon svg { color: #ff6b6b; }
.solution-icon { background: rgba(52,247,197,0.15); }
.solution-icon svg { color: var(--mavro-cyan); }

.ps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.ps-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.ps-bullet {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.4rem;
}
.problem-bullet { background: #ff6b6b; box-shadow: 0 0 8px rgba(255,107,107,0.5); }
.solution-bullet { background: var(--mavro-cyan); box-shadow: 0 0 8px rgba(52,247,197,0.5); }

.ps-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}
.ps-item p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.ps-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 3rem;
}
.vs-circle {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: #000;
  box-shadow: 0 0 20px rgba(52,247,197,0.3);
  flex-shrink: 0;
}
.vs-line {
  width: 1px;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--border-subtle), transparent);
}

.problem-col {
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(255,107,107,0.04);
  border: 1px solid rgba(255,107,107,0.15);
}
.solution-col {
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(52,247,197,0.04);
  border: 1px solid var(--border-cyan);
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 4 — TOKEN INFORMATION
═══════════════════════════════════════════════════════════ */
.slide-token {
  background: radial-gradient(ellipse at 50% 50%, rgba(41,188,255,0.08) 0%, transparent 60%),
              var(--bg-deep);
}

.token-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

.token-card-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.token-card-glow {
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: conic-gradient(from 0deg, var(--mavro-magenta), var(--mavro-cyan), var(--mavro-blue), var(--mavro-magenta));
  animation: spinRing 4s linear infinite;
  z-index: 0;
}
.token-card-inner {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border-radius: 18px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  margin: 2px;
}

.token-logo-wrap {
  position: relative;
  width: 100px; height: 100px;
}
.token-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(52,247,197,0.4));
  animation: logoFloat 4s ease-in-out infinite;
}
.token-logo-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(52,247,197,0.3);
  animation: spinRing 6s linear infinite reverse;
}

.token-name-block { text-align: center; }
.token-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.1em;
}
.token-symbol {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.token-network-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  background: rgba(240,180,41,0.1);
  border: 1px solid var(--border-gold);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-warm);
  letter-spacing: 0.05em;
}

.token-details { display: flex; flex-direction: column; gap: 1rem; }
.token-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.token-detail-card {
  padding: 1.25rem;
  border-radius: 12px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  transition: border-color 0.3s;
}
.token-detail-card:hover { border-color: var(--border-cyan); }
.td-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.td-value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}
.bsc-value {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.bsc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-warm);
  box-shadow: 0 0 8px var(--gold-warm);
  animation: pulse 2s ease-in-out infinite;
}

.token-contract-card {
  padding: 1.25rem;
  border-radius: 12px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
}
.contract-address {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border-subtle);
}
.contract-text {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  color: var(--mavro-cyan);
  word-break: break-all;
  flex: 1;
}
.copy-btn {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 6px;
  background: rgba(52,247,197,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mavro-cyan);
  transition: all 0.2s;
}
.copy-btn:hover { background: rgba(52,247,197,0.2); transform: scale(1.1); }
.copy-btn svg { width: 14px; height: 14px; }

.token-lock-card {
  padding: 1.25rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s;
}
.lp-lock {
  background: rgba(52,247,197,0.06);
  border: 1px solid var(--border-cyan);
}
.team-lock {
  background: rgba(246,59,243,0.06);
  border: 1px solid var(--border-magenta);
}
.lock-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp-lock .lock-icon { background: rgba(52,247,197,0.15); }
.lp-lock .lock-icon svg { color: var(--mavro-cyan); width: 20px; height: 20px; }
.team-lock .lock-icon { background: rgba(246,59,243,0.15); }
.team-lock .lock-icon svg { color: var(--mavro-magenta); width: 20px; height: 20px; }
.lock-text { flex: 1; }
.lock-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}
.lock-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.lock-badge {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.6rem;
  border-radius: 100px;
}
.lp-lock .lock-badge {
  background: rgba(52,247,197,0.15);
  color: var(--mavro-cyan);
  border: 1px solid var(--border-cyan);
}
.team-lock .lock-badge {
  background: rgba(246,59,243,0.15);
  color: var(--mavro-magenta);
  border: 1px solid var(--border-magenta);
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 5 — SECURITY
═══════════════════════════════════════════════════════════ */
.slide-security {
  background: radial-gradient(ellipse at 20% 80%, rgba(52,247,197,0.08) 0%, transparent 50%),
              var(--bg-deep);
}

.security-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: center;
}

.shield-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.shield-outer {
  position: relative;
  width: 180px; height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shield-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: spinRing 6s linear infinite;
}
.shield-ring-1 {
  inset: 0;
  border-color: rgba(52,247,197,0.3);
  animation-duration: 8s;
}
.shield-ring-2 {
  inset: 15px;
  border-color: rgba(246,59,243,0.25);
  animation-duration: 6s;
  animation-direction: reverse;
}
.shield-ring-3 {
  inset: 30px;
  border-color: rgba(41,188,255,0.2);
  animation-duration: 10s;
}
.shield-core {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52,247,197,0.2) 0%, rgba(52,247,197,0.05) 100%);
  border: 1px solid var(--border-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(52,247,197,0.2), inset 0 0 20px rgba(52,247,197,0.1);
}
.shield-icon { width: 36px; height: 36px; color: var(--mavro-cyan); }
.shield-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.shield-score {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.security-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.sec-card {
  padding: 1.25rem;
  border-radius: 14px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.sec-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.sec-card:hover::after { transform: scaleX(1); }
.sec-card:hover {
  border-color: var(--border-cyan);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(52,247,197,0.1);
}
.sec-card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(52,247,197,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec-card-icon svg { width: 20px; height: 20px; color: var(--mavro-cyan); }
.sec-card-content h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}
.sec-card-content p {
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--text-secondary);
}
.sec-card-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  align-self: flex-start;
}
.certik-badge { background: rgba(52,247,197,0.15); color: var(--mavro-cyan); border: 1px solid var(--border-cyan); }
.kyc-badge { background: rgba(246,59,243,0.15); color: var(--mavro-magenta); border: 1px solid var(--border-magenta); }
.contract-badge { background: rgba(41,188,255,0.15); color: var(--mavro-blue); border: 1px solid rgba(41,188,255,0.3); }
.transparency-badge { background: rgba(240,180,41,0.15); color: var(--gold-warm); border: 1px solid var(--border-gold); }

/* ═══════════════════════════════════════════════════════════
   SLIDE 6 — NFT NODE
═══════════════════════════════════════════════════════════ */
.slide-nft {
  background: radial-gradient(ellipse at 80% 20%, rgba(246,59,243,0.1) 0%, transparent 50%),
              var(--bg-deep);
}

.nft-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: center;
}

.nft-visual { display: flex; justify-content: center; }
.nft-card-3d {
  perspective: 1000px;
  width: 240px;
}
.nft-card-face {
  width: 240px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0f1a2e 0%, #1a0f2e 100%);
  border: 1px solid rgba(246,59,243,0.3);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(246,59,243,0.2), 0 0 0 1px rgba(246,59,243,0.1);
  animation: cardFloat 5s ease-in-out infinite;
  transform-style: preserve-3d;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0) rotateY(-5deg); }
  50% { transform: translateY(-10px) rotateY(5deg); }
}
.nft-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(246,59,243,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.nft-card-logo {
  width: 80px; height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(246,59,243,0.5));
}
.nft-card-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--mavro-magenta);
  text-transform: uppercase;
}
.nft-card-id {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}
.nft-card-stats {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(246,59,243,0.2);
}
.nft-stat { text-align: center; }
.nft-stat-label {
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.2rem;
}
.nft-stat-value {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
}

.nft-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.nft-benefit-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: 12px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  transition: all 0.3s var(--ease-out);
}
.nft-benefit-item:hover {
  border-color: var(--border-magenta);
  background: rgba(246,59,243,0.04);
  transform: translateX(5px);
}
.nft-benefit-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
  min-width: 2rem;
}
.nft-benefit-content h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.nft-benefit-content p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 7 — ECOSYSTEM FEATURES
═══════════════════════════════════════════════════════════ */
.slide-ecosystem {
  background: radial-gradient(ellipse at 50% 50%, rgba(41,188,255,0.06) 0%, transparent 60%),
              var(--bg-deep);
}

.ecosystem-center {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.eco-hub {
  position: relative;
  width: 100px; height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eco-hub-logo {
  width: 60px; height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(52,247,197,0.4));
  position: relative;
  z-index: 2;
  animation: logoFloat 4s ease-in-out infinite;
}
.eco-hub-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: spinRing linear infinite;
}
.eco-ring-1 { inset: -10px; border-color: rgba(52,247,197,0.3); animation-duration: 8s; }
.eco-ring-2 { inset: -25px; border-color: rgba(246,59,243,0.2); animation-duration: 12s; animation-direction: reverse; }
.eco-ring-3 { inset: -40px; border-color: rgba(41,188,255,0.15); animation-duration: 16s; }

.eco-features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.eco-feature-card {
  padding: 1.25rem 1rem;
  border-radius: 14px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  text-align: center;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.eco-feature-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.eco-feature-card:hover::before { transform: scaleX(1); }
.eco-feature-card:hover {
  border-color: var(--border-cyan);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(52,247,197,0.1);
  background: var(--bg-glass-hover);
}
.eco-feat-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(52,247,197,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  transition: background 0.3s;
}
.eco-feature-card:hover .eco-feat-icon { background: rgba(52,247,197,0.2); }
.eco-feat-icon svg { width: 20px; height: 20px; color: var(--mavro-cyan); }
.eco-feature-card h3 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.eco-feature-card p {
  font-size: 0.7rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 8 — ROADMAP
═══════════════════════════════════════════════════════════ */
.slide-roadmap {
  background: radial-gradient(ellipse at 50% 100%, rgba(52,247,197,0.08) 0%, transparent 50%),
              var(--bg-deep);
}

.roadmap-timeline { position: relative; }
.timeline-line {
  position: absolute;
  top: 28px;
  left: calc(50% - 1px);
  width: 2px;
  height: calc(100% - 28px);
  background: var(--border-subtle);
  display: none;
}

.roadmap-phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.roadmap-phases::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.67% + 28px);
  right: calc(16.67% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--mavro-cyan), var(--mavro-magenta));
  opacity: 0.3;
}

.roadmap-phase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.phase-dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  z-index: 2;
}
.phase-dot-inner {
  width: 20px; height: 20px;
  border-radius: 50%;
}
.active-dot {
  background: rgba(52,247,197,0.15);
  border: 2px solid var(--mavro-cyan);
  box-shadow: 0 0 20px rgba(52,247,197,0.3);
}
.active-dot .phase-dot-inner { background: var(--mavro-cyan); box-shadow: 0 0 10px var(--mavro-cyan); }
.phase-dot-pulse {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(52,247,197,0.3);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0; }
}
.upcoming-dot {
  background: rgba(246,59,243,0.1);
  border: 2px solid rgba(246,59,243,0.4);
}
.upcoming-dot .phase-dot-inner { background: rgba(246,59,243,0.5); }
.future-dot {
  background: rgba(255,255,255,0.05);
  border: 2px solid var(--border-subtle);
}
.future-dot .phase-dot-inner { background: var(--text-muted); }

.phase-card {
  width: 100%;
  padding: 1.5rem;
  border-radius: 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  transition: all 0.3s var(--ease-out);
}
.phase-active .phase-card {
  border-color: var(--border-cyan);
  background: rgba(52,247,197,0.04);
  box-shadow: 0 0 30px rgba(52,247,197,0.08);
}
.phase-upcoming .phase-card {
  border-color: var(--border-magenta);
  background: rgba(246,59,243,0.04);
}
.phase-card:hover { transform: translateY(-3px); }

.phase-quarter {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}
.phase-active .phase-quarter { color: var(--mavro-cyan); }
.phase-upcoming .phase-quarter { color: var(--mavro-magenta); }
.phase-future .phase-quarter { color: var(--text-secondary); }

.phase-status {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 0.75rem;
}
.active-status { background: rgba(52,247,197,0.15); color: var(--mavro-cyan); border: 1px solid var(--border-cyan); }
.upcoming-status { background: rgba(246,59,243,0.15); color: var(--mavro-magenta); border: 1px solid var(--border-magenta); }
.future-status { background: rgba(255,255,255,0.05); color: var(--text-muted); border: 1px solid var(--border-subtle); }

.phase-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.phase-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.phase-items li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.phase-items li svg { width: 14px; height: 14px; flex-shrink: 0; }
.phase-active .phase-items li svg { color: var(--mavro-cyan); }
.phase-upcoming .phase-items li svg { color: rgba(246,59,243,0.5); }
.phase-future .phase-items li svg { color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════
   SLIDE 9 — COMMUNITY
═══════════════════════════════════════════════════════════ */
.slide-community {
  background: radial-gradient(ellipse at 30% 30%, rgba(246,59,243,0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 70%, rgba(52,247,197,0.08) 0%, transparent 50%),
              var(--bg-deep);
}

.community-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.community-lead {
  font-size: clamp(0.9rem, 1.3vw, 1.1rem);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 700px;
}

.social-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.social-card {
  padding: 1.5rem;
  border-radius: 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.social-card-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.website-card .social-card-glow { background: radial-gradient(ellipse at 50% 0%, rgba(52,247,197,0.15) 0%, transparent 70%); }
.twitter-card .social-card-glow { background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.08) 0%, transparent 70%); }
.telegram-card .social-card-glow { background: radial-gradient(ellipse at 50% 0%, rgba(41,188,255,0.15) 0%, transparent 70%); }
.email-card .social-card-glow { background: radial-gradient(ellipse at 50% 0%, rgba(246,59,243,0.15) 0%, transparent 70%); }

.social-card:hover .social-card-glow { opacity: 1; }
.website-card:hover { border-color: var(--border-cyan); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(52,247,197,0.15); }
.twitter-card:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(255,255,255,0.05); }
.telegram-card:hover { border-color: rgba(41,188,255,0.3); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(41,188,255,0.15); }
.email-card:hover { border-color: var(--border-magenta); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(246,59,243,0.15); }

.social-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.website-card .social-icon { background: rgba(52,247,197,0.1); color: var(--mavro-cyan); }
.twitter-card .social-icon { background: rgba(255,255,255,0.08); color: var(--text-primary); }
.telegram-card .social-icon { background: rgba(41,188,255,0.1); color: var(--mavro-blue); }
.email-card .social-icon { background: rgba(246,59,243,0.1); color: var(--mavro-magenta); }
.social-icon svg { width: 22px; height: 22px; }

.social-platform {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.social-handle {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}
.social-arrow {
  margin-top: auto;
  color: var(--text-muted);
  transition: all 0.3s;
}
.social-arrow svg { width: 16px; height: 16px; }
.social-card:hover .social-arrow { color: var(--mavro-cyan); transform: translateX(4px); }

.community-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  justify-content: center;
}
.comm-stat { text-align: center; }
.comm-stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.comm-stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.comm-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 10 — FINAL
═══════════════════════════════════════════════════════════ */
.slide-final {
  background: radial-gradient(ellipse at 50% 50%, rgba(246,59,243,0.15) 0%, rgba(52,247,197,0.1) 50%, transparent 70%),
              var(--bg-void);
  overflow: hidden;
}

.final-inner {
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 0;
}

.final-logo-wrap {
  position: relative;
  width: 130px; height: 130px;
  margin: 0 auto 2rem;
}
.final-logo-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--mavro-magenta), var(--mavro-cyan), var(--mavro-blue), var(--mavro-magenta));
  animation: spinRing 3s linear infinite;
  opacity: 0.7;
  filter: blur(6px);
}
.final-logo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(52,247,197,0.5));
  animation: logoFloat 4s ease-in-out infinite;
}

.final-tagline-wrap { margin-bottom: 1.5rem; }
.final-pre {
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.final-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.final-web3 {
  color: var(--text-primary);
  text-shadow: 0 0 40px rgba(255,255,255,0.2);
}
.final-innovation {
  filter: drop-shadow(0 0 20px rgba(52,247,197,0.4));
}

.final-brand {
  margin-bottom: 2.5rem;
}
.final-brand-name {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.final-brand-symbol {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
}

.final-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
}
.cta-btn svg { width: 16px; height: 16px; transition: transform 0.3s; }
.cta-btn:hover svg { transform: translateX(4px); }
.primary-cta {
  background: var(--grad-brand);
  color: #000;
  box-shadow: 0 0 30px rgba(52,247,197,0.3);
}
.primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(52,247,197,0.4);
}
.secondary-cta {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-cyan);
  backdrop-filter: blur(10px);
}
.secondary-cta:hover {
  background: rgba(52,247,197,0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(52,247,197,0.15);
}

.final-contract {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
}
.final-contract-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  flex-shrink: 0;
}
.final-contract-addr {
  font-family: 'Courier New', monospace;
  font-size: 0.7rem;
  color: var(--mavro-cyan);
  opacity: 0.8;
}

.final-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
}
.final-social-link {
  color: var(--text-secondary);
  transition: color 0.2s;
  font-weight: 500;
}
.final-social-link:hover { color: var(--mavro-cyan); }
.final-social-sep { color: var(--text-muted); }

/* ── LIGHT RAYS ───────────────────────────────────────────── */
.light-rays {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.ray {
  position: absolute;
  bottom: 0;
  width: 2px;
  height: 60%;
  transform-origin: bottom center;
  opacity: 0.06;
  animation: rayPulse 4s ease-in-out infinite;
}
.ray-1 { left: 20%; background: linear-gradient(to top, var(--mavro-cyan), transparent); transform: rotate(-15deg); animation-delay: 0s; }
.ray-2 { left: 35%; background: linear-gradient(to top, var(--mavro-magenta), transparent); transform: rotate(-7deg); animation-delay: 0.5s; }
.ray-3 { left: 50%; background: linear-gradient(to top, var(--mavro-cyan), transparent); transform: rotate(0deg); animation-delay: 1s; }
.ray-4 { left: 65%; background: linear-gradient(to top, var(--mavro-magenta), transparent); transform: rotate(7deg); animation-delay: 1.5s; }
.ray-5 { left: 80%; background: linear-gradient(to top, var(--mavro-blue), transparent); transform: rotate(15deg); animation-delay: 2s; }
@keyframes rayPulse {
  0%, 100% { opacity: 0.04; height: 55%; }
  50% { opacity: 0.1; height: 65%; }
}

/* ── ORBS FINAL ───────────────────────────────────────────── */
.orb-final-1 { width: 700px; height: 700px; top: -200px; left: -200px; }
.orb-final-2 { width: 600px; height: 600px; bottom: -200px; right: -200px; }
.orb-final-3 { width: 500px; height: 500px; }

/* ── TOAST ────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--bg-card);
  border: 1px solid var(--border-cyan);
  color: var(--mavro-cyan);
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 1000;
  transition: transform 0.4s var(--ease-spring);
  backdrop-filter: blur(20px);
  box-shadow: 0 0 20px rgba(52,247,197,0.2);
}
.toast.show { transform: translateX(-50%) translateY(0); }

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

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: repeat(4, 1fr); }
  .token-layout { grid-template-columns: 1fr; }
  .token-card-main { max-width: 300px; margin: 0 auto; }
  .security-layout { grid-template-columns: 1fr; }
  .shield-visual { flex-direction: row; justify-content: center; gap: 2rem; }
  .nft-layout { grid-template-columns: 1fr; }
  .nft-visual { display: none; }
  .eco-features-grid { grid-template-columns: repeat(3, 1fr); }
  .social-cards { grid-template-columns: repeat(2, 1fr); }
  .ps-grid { grid-template-columns: 1fr; }
  .ps-vs { display: none; }
}

@media (max-width: 768px) {
  :root { --slide-pad: 1.5rem; --slide-pad-v: 1.5rem; }
  .slide-title { font-size: 1.8rem; }
  .about-pillars { grid-template-columns: 1fr 1fr; }
  .eco-features-grid { grid-template-columns: repeat(2, 1fr); }
  .roadmap-phases { grid-template-columns: 1fr; }
  .roadmap-phases::before { display: none; }
  .social-cards { grid-template-columns: 1fr 1fr; }
  .community-stats { flex-wrap: wrap; gap: 1rem; }
  .nav-arrow { display: none; }
  .nav-dots { right: 0.5rem; }
  .final-headline { font-size: 2.5rem; }
  .final-contract-addr { font-size: 0.55rem; }
  .token-row { grid-template-columns: 1fr; }
  .security-cards { grid-template-columns: 1fr; }
}