/* ═══════════════════════════════════════════════════════════
   MAVRO ASSET ECOSYSTEM — PITCH DECK STYLES
   Theme: Dark Luxury Black + Gold · Futuristic Web3
   Fonts: Syne (Display) + Outfit (Body)
═══════════════════════════════════════════════════════════ */

/* ─── CSS VARIABLES ─────────────────────────────────────── */
:root {
  --black:        #050507;
  --black-2:      #0A0A0F;
  --black-3:      #0F0F18;
  --black-4:      #141420;
  --black-5:      #1A1A28;
  --gold:         #C9A84C;
  --gold-light:   #F5D78E;
  --gold-dark:    #8B6914;
  --gold-dim:     rgba(201,168,76,0.15);
  --gold-glow:    rgba(201,168,76,0.35);
  --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);
  --red:          #FF4D4D;
  --green:        #4DFF91;
  --font-display: 'Syne', sans-serif;
  --font-body:    'Outfit', sans-serif;
  --slide-w:      100vw;
  --slide-h:      100vh;
  --nav-h:        64px;
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  cursor: default;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; }
button { cursor: pointer; border: none; background: none; }

/* ─── PARTICLE CANVAS ───────────────────────────────────── */
#particleCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ─── NAVIGATION ────────────────────────────────────────── */
.deck-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: linear-gradient(180deg, rgba(5,5,7,0.95) 0%, rgba(5,5,7,0) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px var(--gold-glow));
}

.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

.nav-dot:hover:not(.active) {
  background: var(--white-40);
}

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

.nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.05);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
}

.nav-btn svg { width: 16px; height: 16px; }

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

#currentSlide { color: var(--gold); }

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

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
  overflow: hidden;
}

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

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

.slide-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  padding: calc(var(--nav-h) + 24px) 60px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ─── BACKGROUND ACCENTS ────────────────────────────────── */
.slide-bg-accent {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.accent-tl {
  width: 500px; height: 500px;
  top: -200px; left: -200px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
}

.accent-br {
  width: 600px; height: 600px;
  bottom: -250px; right: -200px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
}

.accent-tr {
  width: 400px; height: 400px;
  top: -150px; right: -100px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
}

.accent-center {
  width: 700px; height: 700px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
}

/* ─── SLIDE HEADER ──────────────────────────────────────── */
.slide-header {
  margin-bottom: 32px;
}

.slide-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.slide-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.02em;
}

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

.title-underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  margin-top: 14px;
  border-radius: 2px;
}

/* ─── REVEAL ANIMATIONS ─────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }
.delay-8 { transition-delay: 0.8s; }

/* ═══════════════════════════════════════════════════════════
   SLIDE 1 — COVER
═══════════════════════════════════════════════════════════ */
.slide-cover {
  background: radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 50%),
              var(--black);
}

.cover-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.cover-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.cover-orb-1 {
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  animation: orbFloat 8s ease-in-out infinite;
}

.cover-orb-2 {
  width: 400px; height: 400px;
  bottom: -150px; left: -100px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  animation: orbFloat 10s ease-in-out infinite reverse;
}

.cover-orb-3 {
  width: 300px; height: 300px;
  top: 50%; left: 40%;
  background: radial-gradient(circle, rgba(245,215,142,0.06) 0%, transparent 70%);
  animation: orbFloat 12s ease-in-out infinite 2s;
}

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

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

.cover-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  background: rgba(201,168,76,0.05);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--gold); }
  50% { opacity: 0.5; box-shadow: 0 0 16px var(--gold); }
}

.cover-logo-wrap { margin-bottom: 20px; }

.cover-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(201,168,76,0.5));
  animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(201,168,76,0.4)); }
  50% { filter: drop-shadow(0 0 40px rgba(201,168,76,0.7)); }
}

.cover-title {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.title-line {
  font-size: clamp(52px, 7vw, 96px);
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, #F5D78E 0%, #C9A84C 40%, #8B6914 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 30px rgba(201,168,76,0.3));
}

.title-sub {
  font-size: clamp(16px, 2.2vw, 28px);
  letter-spacing: 0.3em;
  color: var(--white-60);
  -webkit-text-fill-color: var(--white-60);
  background: none;
  filter: none;
}

.cover-symbol {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

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

.symbol-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cover-tagline {
  font-size: clamp(13px, 1.4vw, 17px);
  font-weight: 300;
  color: var(--white-60);
  font-style: italic;
  letter-spacing: 0.03em;
  margin-bottom: 28px;
}

.cover-divider {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 28px;
}

.cover-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.cover-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}

.stat-val {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.stat-lbl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-40);
  margin-top: 4px;
}

.cover-stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(201,168,76,0.2);
}

/* Hex grid decoration */
.hex-grid {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}

.hex {
  position: absolute;
  width: 60px;
  height: 69px;
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.12);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: hexPulse 4s ease-in-out infinite;
}

.h1 { top: 0; left: 0; animation-delay: 0s; }
.h2 { top: 0; left: 70px; animation-delay: 0.5s; }
.h3 { top: 75px; left: -35px; animation-delay: 1s; }
.h4 { top: 75px; left: 35px; animation-delay: 1.5s; }
.h5 { top: 75px; left: 105px; animation-delay: 2s; }
.h6 { top: 150px; left: 0; animation-delay: 2.5s; }

@keyframes hexPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; border-color: rgba(201,168,76,0.4); }
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 2 — ABOUT
═══════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 28px;
}

.about-lead {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1.7;
  color: var(--white-80);
  margin-bottom: 16px;
}

.about-body {
  font-size: 14px;
  line-height: 1.8;
  color: var(--white-60);
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.pillar-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius);
  padding: 18px;
  transition: all 0.3s ease;
}

.pillar-card:hover {
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-2px);
}

.pillar-icon { width: 40px; height: 40px; margin-bottom: 10px; }

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.pillar-card p {
  font-size: 12px;
  line-height: 1.6;
  color: var(--white-50, rgba(255,255,255,0.5));
}

.about-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.vision-block {
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(201,168,76,0.02) 100%);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  position: relative;
  overflow: hidden;
}

.vision-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
}

.vision-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.vision-block p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--white-70, rgba(255,255,255,0.7));
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 3 — PROBLEM & SOLUTION
═══════════════════════════════════════════════════════════ */
.ps-grid {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  align-items: start;
}

.ps-col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.ps-icon { width: 32px; height: 32px; }

.ps-col-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.problem-title { color: #FF6B6B; }
.solution-title { color: var(--gold); }

.ps-list { display: flex; flex-direction: column; gap: 16px; }

.ps-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ps-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.problem-bullet { background: #FF6B6B; box-shadow: 0 0 8px rgba(255,107,107,0.5); }
.solution-bullet { background: var(--gold); box-shadow: 0 0 8px var(--gold-glow); }

.ps-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white-80);
  margin-bottom: 4px;
}

.ps-item p {
  font-size: 12px;
  line-height: 1.6;
  color: var(--white-50, rgba(255,255,255,0.5));
}

.ps-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}

.ps-arrow { width: 40px; }

/* ═══════════════════════════════════════════════════════════
   SLIDE 4 — TOKEN
═══════════════════════════════════════════════════════════ */
.slide-token {
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.05) 0%, transparent 70%),
              var(--black);
}

.token-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.08);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  animation: ringRotate 20s linear infinite;
}

.token-ring-1 { width: 500px; height: 500px; animation-duration: 20s; }
.token-ring-2 { width: 700px; height: 700px; animation-duration: 30s; animation-direction: reverse; }
.token-ring-3 { width: 900px; height: 900px; animation-duration: 40s; }

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

.token-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: center;
}

.token-coin-wrap {
  display: flex;
  justify-content: center;
}

.token-coin {
  position: relative;
  width: 220px;
  height: 220px;
}

.coin-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #1A1A10 0%, #0A0A05 100%);
  border: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 2;
  box-shadow:
    0 0 40px rgba(201,168,76,0.3),
    0 0 80px rgba(201,168,76,0.1),
    inset 0 0 40px rgba(201,168,76,0.05);
  animation: coinSpin 8s ease-in-out infinite;
}

@keyframes coinSpin {
  0%, 100% { box-shadow: 0 0 40px rgba(201,168,76,0.3), 0 0 80px rgba(201,168,76,0.1); }
  50% { box-shadow: 0 0 60px rgba(201,168,76,0.5), 0 0 120px rgba(201,168,76,0.2); }
}

.coin-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(201,168,76,0.6));
}

.coin-symbol {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.coin-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  z-index: 1;
  animation: coinGlow 3s ease-in-out infinite;
}

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

.token-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.token-info-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.3s ease;
}

.token-info-card:hover {
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.35);
}

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

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

.token-contract {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 20px;
}

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

.contract-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contract-addr {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: var(--gold-light);
  word-break: break-all;
  flex: 1;
}

.copy-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.05);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
}

.copy-btn svg { width: 14px; height: 14px; }

.token-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.token-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}

.locked-badge {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
}

.locked-badge svg { width: 14px; height: 14px; }

.bsc-badge {
  background: rgba(240,185,11,0.1);
  border: 1px solid rgba(240,185,11,0.3);
  color: #F0B90B;
}

.bsc-badge svg { width: 16px; height: 16px; }

/* ═══════════════════════════════════════════════════════════
   SLIDE 5 — SECURITY
═══════════════════════════════════════════════════════════ */
.security-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 28px;
}

.security-shield-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.security-shield {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shield-svg {
  width: 160px;
  height: 192px;
  filter: drop-shadow(0 0 20px rgba(201,168,76,0.3));
  animation: shieldPulse 3s ease-in-out infinite;
}

@keyframes shieldPulse {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(201,168,76,0.3)); }
  50% { filter: drop-shadow(0 0 40px rgba(201,168,76,0.6)); }
}

.shield-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-align: center;
}

.security-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.security-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  position: relative;
  transition: all 0.3s ease;
}

.security-card:hover {
  background: rgba(201,168,76,0.05);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-2px);
}

.sec-card-icon { width: 40px; height: 40px; flex-shrink: 0; }

.sec-card-body { flex: 1; }

.sec-card-body h3 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.sec-card-body p {
  font-size: 11px;
  line-height: 1.6;
  color: var(--white-50, rgba(255,255,255,0.5));
}

.sec-card-badge {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 3px 8px;
  border-radius: 100px;
}

.security-chain {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.chain-node {
  padding: 8px 18px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--white-60);
  background: rgba(255,255,255,0.02);
  white-space: nowrap;
}

.active-node {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 16px rgba(201,168,76,0.3);
}

.chain-link {
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, rgba(201,168,76,0.3), rgba(201,168,76,0.6), rgba(201,168,76,0.3));
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 6 — NFT NODE
═══════════════════════════════════════════════════════════ */
.nft-bg-hex {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='70' viewBox='0 0 60 70' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 2 L58 17 L58 53 L30 68 L2 53 L2 17 Z' stroke='rgba(201,168,76,0.04)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 70px;
  z-index: 1;
  opacity: 0.5;
}

.nft-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

.nft-card-3d {
  perspective: 1000px;
}

.nft-card-face {
  width: 240px;
  background: linear-gradient(135deg, #1A1508 0%, #0D0D05 100%);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 20px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.5),
    0 0 40px rgba(201,168,76,0.15),
    inset 0 1px 0 rgba(201,168,76,0.2);
  animation: cardFloat 4s ease-in-out infinite;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0) rotateY(-5deg); }
  50% { transform: translateY(-10px) rotateY(5deg); }
}

.nft-card-glow {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.nft-card-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 16px;
  filter: drop-shadow(0 0 20px rgba(201,168,76,0.5));
}

.nft-card-info {
  text-align: center;
  margin-bottom: 20px;
}

.nft-card-name {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.nft-card-tier {
  font-size: 11px;
  font-weight: 500;
  color: var(--white-40);
  letter-spacing: 0.1em;
}

.nft-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.nft-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 8px;
  padding: 8px;
  text-align: center;
}

.nft-stat span {
  display: block;
  font-size: 9px;
  color: var(--white-40);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.nft-stat strong {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
}

.nft-benefits { display: flex; flex-direction: column; gap: 20px; }

.nft-benefit {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 18px 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.nft-benefit:hover {
  background: rgba(201,168,76,0.05);
  border-color: rgba(201,168,76,0.25);
}

.benefit-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}

.benefit-body h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}

.benefit-body p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--white-60);
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 7 — ECOSYSTEM FEATURES
═══════════════════════════════════════════════════════════ */
.eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.eco-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: default;
}

.eco-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.eco-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 20px rgba(201,168,76,0.1);
}

.eco-card:hover::before { opacity: 1; }

.eco-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
}

.eco-card h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.eco-card p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--white-50, rgba(255,255,255,0.5));
  margin-bottom: 14px;
}

.eco-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 8 — ROADMAP
═══════════════════════════════════════════════════════════ */
.roadmap-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 20px;
}

.timeline-line {
  position: absolute;
  top: 44px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(201,168,76,0.3) 50%, rgba(201,168,76,0.1) 100%);
  z-index: 1;
}

.roadmap-phase { position: relative; }

.phase-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.phase-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid;
  position: relative;
}

.active-phase {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201,168,76,0.6);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(201,168,76,0.6); }
  50% { box-shadow: 0 0 25px rgba(201,168,76,0.9); }
}

.upcoming-phase {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
}

.future-phase {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.4);
  border-style: dashed;
}

.phase-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s ease;
}

.active-card {
  background: linear-gradient(135deg, rgba(201,168,76,0.1) 0%, rgba(201,168,76,0.03) 100%);
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 0 30px rgba(201,168,76,0.1);
}

.future-card {
  border-style: dashed;
  border-color: rgba(201,168,76,0.2);
}

.phase-quarter {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.phase-status {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.phase-status.upcoming { color: var(--white-40); }
.phase-status.future { color: rgba(201,168,76,0.5); }

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

.phase-items { display: flex; flex-direction: column; gap: 10px; }

.phase-items li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--white-70, rgba(255,255,255,0.7));
}

.phase-items li svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   SLIDE 9 — COMMUNITY
═══════════════════════════════════════════════════════════ */
.community-lead {
  font-size: 16px;
  color: var(--white-60);
  margin-bottom: 32px;
  max-width: 600px;
}

.social-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  cursor: pointer;
}

.social-card:hover {
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.35);
  transform: translateX(6px);
  box-shadow: 0 0 20px rgba(201,168,76,0.1);
}

.social-icon { width: 48px; height: 48px; flex-shrink: 0; }

.social-info { flex: 1; }

.social-platform {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-40);
  margin-bottom: 4px;
}

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

.social-arrow {
  width: 24px;
  height: 24px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.social-card:hover .social-arrow {
  opacity: 1;
  transform: translateX(0);
}

.community-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.comm-stat {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.comm-stat:hover {
  background: rgba(201,168,76,0.05);
  border-color: rgba(201,168,76,0.25);
}

.comm-stat-icon { width: 32px; height: 32px; }

.comm-stat-val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
}

.comm-stat-lbl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-40);
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 10 — FINAL
═══════════════════════════════════════════════════════════ */
.slide-final {
  background: radial-gradient(ellipse at 30% 40%, rgba(201,168,76,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 60%, rgba(201,168,76,0.08) 0%, transparent 50%),
              var(--black);
}

.final-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 1;
}

.final-orb-1 {
  width: 700px; height: 700px;
  top: -300px; left: -200px;
  background: radial-gradient(circle, rgba(201,168,76,0.18) 0%, transparent 70%);
  animation: orbFloat 10s ease-in-out infinite;
}

.final-orb-2 {
  width: 500px; height: 500px;
  bottom: -200px; right: -100px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  animation: orbFloat 8s ease-in-out infinite reverse;
}

.final-orb-3 {
  width: 300px; height: 300px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(245,215,142,0.08) 0%, transparent 70%);
  animation: orbFloat 12s ease-in-out infinite 1s;
}

.final-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 1;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

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

.final-logo-wrap { margin-bottom: 24px; }

.final-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(201,168,76,0.6));
  animation: logoGlow 3s ease-in-out infinite;
}

.final-tagline-wrap { margin-bottom: 20px; }

.final-pre {
  display: block;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 300;
  color: var(--white-60);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.final-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.02em;
}

.gold-shimmer {
  background: linear-gradient(135deg, #8B6914 0%, #C9A84C 30%, #F5D78E 50%, #C9A84C 70%, #8B6914 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  from { background-position: 0% center; }
  to { background-position: 200% center; }
}

.final-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
}

.final-brand-name {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.8vw, 22px);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--white-80);
}

.final-brand-symbol {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.final-divider {
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 24px;
}

.final-links {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.final-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--white-60);
  transition: color 0.3s ease;
}

.final-link:hover { color: var(--gold); }

.final-link-sep { color: rgba(201,168,76,0.3); }

.final-contract {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 100px;
}

.fc-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.fc-addr {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: var(--white-50, rgba(255,255,255,0.5));
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--black);
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(201,168,76,0.3);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201,168,76,0.5);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.cta-btn svg { width: 18px; height: 18px; }

/* ─── PROGRESS BAR ──────────────────────────────────────── */
.progress-bar {
  position: fixed;
  bottom: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  transition: width 0.5s ease;
  z-index: 200;
  box-shadow: 0 0 8px var(--gold-glow);
}

/* ─── TOAST ─────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 300;
  pointer-events: none;
  backdrop-filter: blur(10px);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ─── KEYBOARD HINT ─────────────────────────────────────── */
.keyboard-hint {
  position: fixed;
  bottom: 20px;
  right: 24px;
  font-size: 10px;
  color: var(--white-20);
  letter-spacing: 0.1em;
  z-index: 100;
}

/* ─── SCROLLBAR ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .slide-content { padding: calc(var(--nav-h) + 16px) 32px 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-pillars { grid-template-columns: repeat(4, 1fr); }
  .token-layout { grid-template-columns: 1fr; }
  .token-coin-wrap { display: none; }
  .security-layout { grid-template-columns: 1fr; }
  .security-shield-wrap { display: none; }
  .nft-layout { grid-template-columns: 1fr; }
  .nft-visual { display: none; }
  .eco-grid { grid-template-columns: repeat(2, 1fr); }
  .roadmap-timeline { grid-template-columns: 1fr; }
  .timeline-line { display: none; }
  .community-stats { grid-template-columns: repeat(2, 1fr); }
  .nav-dots { display: none; }
}

@media (max-width: 768px) {
  .slide-content { padding: calc(var(--nav-h) + 12px) 20px 20px; }
  .ps-grid { grid-template-columns: 1fr; }
  .ps-divider { display: none; }
  .eco-grid { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: repeat(2, 1fr); }
  .about-vision { grid-template-columns: 1fr; }
  .cover-stats { gap: 0; }
  .cover-stat { padding: 0 16px; }
  .final-contract { display: none; }
}