/* ============================================
   VERGIL DAVONMEKROY — Design System
   Dark Futuristic Gaming Theme
   ============================================ */

:root {
  /* Couleurs principales — Vergil signature */
  --v-deep: #03050b;
  --v-night: #0a0e1f;
  --v-shadow: #0f1530;
  --v-steel: #1a2347;
  --v-frost: #4a6fbd;
  --v-blue: #2c5dff;
  --v-electric: #00d4ff;
  --v-cyan: #5cffff;
  --v-violet: #7b3fff;
  --v-purple: #a855f7;
  --v-red: #ff2d4a;
  --v-gold: #ffc657;
  --v-silver: #c8d4f0;
  --v-white: #ecf2ff;

  /* Glow */
  --glow-blue: 0 0 20px rgba(0, 212, 255, 0.6), 0 0 40px rgba(0, 212, 255, 0.3);
  --glow-violet: 0 0 20px rgba(123, 63, 255, 0.6), 0 0 40px rgba(123, 63, 255, 0.3);
  --glow-cyan: 0 0 30px rgba(92, 255, 255, 0.7);
  --glow-red: 0 0 20px rgba(255, 45, 74, 0.7);

  /* Typography */
  --font-display: 'Orbitron', 'Cinzel', serif;
  --font-body: 'Rajdhani', 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Spacing */
  --container: 1280px;
  --radius: 4px;
  --radius-lg: 12px;

  /* Transitions */
  --t-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --t-med: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
/* Fix anchor scroll behind sticky nav */
[id] { scroll-margin-top: 90px; }
body {
  background: var(--v-deep);
  color: var(--v-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="3" fill="%2300d4ff"/><circle cx="12" cy="12" r="8" fill="none" stroke="%2300d4ff" stroke-width="1" opacity="0.5"/></svg>'), auto;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Background overlay global */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(44, 93, 255, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(123, 63, 255, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, var(--v-deep) 0%, var(--v-night) 100%);
  z-index: -2;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
}

/* Container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(3, 5, 11, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.15);
  transition: all var(--t-med);
}
.nav.scrolled {
  padding: 10px 0;
  background: rgba(3, 5, 11, 0.95);
  box-shadow: 0 4px 30px rgba(0, 212, 255, 0.1);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 4px;
  background: linear-gradient(135deg, var(--v-electric) 0%, var(--v-violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
  transition: all var(--t-med);
}
.brand:hover { letter-spacing: 6px; }
.brand-sub {
  display: block;
  font-size: 10px;
  letter-spacing: 8px;
  color: var(--v-frost);
  margin-top: 2px;
  font-weight: 400;
}
.nav-menu {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.nav-menu a {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--v-silver);
  position: relative;
  padding: 8px 0;
  transition: color var(--t-fast);
}
.nav-menu a::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--v-electric), var(--v-violet));
  transition: width var(--t-med);
}
.nav-menu a:hover { color: var(--v-electric); }
.nav-menu a:hover::before { width: 100%; }
.nav-menu a.active { color: var(--v-electric); }
.nav-menu a.active::before { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--v-electric);
  transition: all var(--t-med);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: all var(--t-med);
  cursor: pointer;
  z-index: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--v-blue) 0%, var(--v-violet) 100%);
  color: var(--v-white);
  box-shadow: var(--glow-blue);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--v-violet) 0%, var(--v-blue) 100%);
  opacity: 0;
  transition: opacity var(--t-med);
  z-index: -1;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(0, 212, 255, 0.8); }
.btn-primary:hover::before { opacity: 1; }
.btn-ghost {
  background: transparent;
  color: var(--v-electric);
  border: 1px solid var(--v-electric);
  box-shadow: inset 0 0 0 0 var(--v-electric);
}
.btn-ghost:hover {
  color: var(--v-deep);
  box-shadow: inset 0 0 0 50px var(--v-electric), var(--glow-blue);
}
.btn-icon { font-size: 18px; line-height: 1; }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}
#particles-canvas, #katana-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
#katana-canvas { z-index: 1; pointer-events: none; }
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
}
.hero-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--v-electric);
  margin-bottom: 20px;
  padding: 6px 18px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(0, 212, 255, 0.05);
  animation: pulse 3s ease-in-out infinite;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 10vw, 140px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 0.9;
  margin-bottom: 16px;
  background: linear-gradient(180deg, var(--v-white) 0%, var(--v-electric) 60%, var(--v-violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 80px rgba(0, 212, 255, 0.3);
  position: relative;
}
.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(16px, 2.5vw, 28px);
  letter-spacing: 8px;
  color: var(--v-silver);
  margin-bottom: 32px;
  text-transform: uppercase;
}
.hero-quote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(16px, 2vw, 22px);
  color: var(--v-frost);
  margin: 0 auto 40px;
  max-width: 700px;
  position: relative;
  padding: 0 30px;
}
.hero-quote::before, .hero-quote::after {
  content: '"';
  font-family: var(--font-display);
  font-size: 50px;
  color: var(--v-electric);
  opacity: 0.5;
  position: absolute;
  top: -10px;
}
.hero-quote::before { left: 0; }
.hero-quote::after { right: 0; top: auto; bottom: -30px; }
.hero-cta { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--v-electric);
  font-size: 12px;
  letter-spacing: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: bounce 2s infinite;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--v-electric) 0%, transparent 100%);
}

/* ============================================
   SECTIONS
   ============================================ */
section {
  padding: 100px 0;
  position: relative;
}
.section-header { text-align: center; margin-bottom: 70px; }
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--v-electric);
  margin-bottom: 12px;
  display: inline-block;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '— ';
  color: var(--v-violet);
}
.section-eyebrow::after { content: ' —'; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--v-white) 0%, var(--v-electric) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-desc {
  font-size: 18px;
  color: var(--v-silver);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   CARDS
   ============================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.card {
  position: relative;
  padding: 30px 26px;
  background: linear-gradient(135deg, rgba(15, 21, 48, 0.85) 0%, rgba(10, 14, 31, 0.85) 100%);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: var(--radius-lg);
  transition: all var(--t-med);
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 212, 255, 0.05) 50%, transparent 100%);
  opacity: 0;
  transition: opacity var(--t-med);
}
.card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 60px;
  border-top: 2px solid var(--v-electric);
  border-left: 2px solid var(--v-electric);
  opacity: 0;
  transition: all var(--t-med);
}
.card:hover {
  transform: translateY(-8px);
  border-color: var(--v-electric);
  box-shadow: 0 20px 60px -10px rgba(0, 212, 255, 0.3);
}
.card:hover::before { opacity: 1; }
.card:hover::after { opacity: 1; top: 8px; left: 8px; }
.card-icon {
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  background: linear-gradient(135deg, var(--v-blue) 0%, var(--v-violet) 100%);
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: var(--glow-blue);
}
.card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: var(--v-white);
}
.card p { color: var(--v-silver); font-size: 15px; line-height: 1.7; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: var(--v-electric);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  transition: gap var(--t-fast);
}
.card-link:hover { gap: 14px; }

/* ============================================
   STATS / RPG BAR
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.stat {
  background: rgba(10, 14, 31, 0.7);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.stat-name {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--v-silver);
  text-transform: uppercase;
}
.stat-val {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--v-electric);
}
.stat-bar {
  height: 8px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.stat-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--v-blue) 0%, var(--v-electric) 50%, var(--v-violet) 100%);
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
  width: 0;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.stat-fill::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 4px;
  background: var(--v-white);
  box-shadow: 0 0 8px var(--v-white);
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 60px auto 0;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 18px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--v-electric) 0%, var(--v-violet) 100%);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}
.timeline-item {
  position: relative;
  padding: 0 0 50px 50px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--v-electric);
  box-shadow: 0 0 0 4px var(--v-deep), 0 0 20px var(--v-electric);
}
.timeline-date {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--v-violet);
  letter-spacing: 3px;
  margin-bottom: 8px;
}
.timeline-title {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 1px;
  color: var(--v-white);
  margin-bottom: 10px;
}
.timeline-text { color: var(--v-silver); line-height: 1.7; }

/* ============================================
   ACCORDION FAQ
   ============================================ */
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item {
  background: rgba(10, 14, 31, 0.7);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  overflow: hidden;
  transition: all var(--t-med);
}
.faq-item.open { border-color: var(--v-electric); box-shadow: 0 0 30px rgba(0, 212, 255, 0.15); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 1px;
  color: var(--v-white);
  cursor: pointer;
  transition: color var(--t-fast);
}
.faq-q:hover { color: var(--v-electric); }
.faq-icon {
  font-size: 24px;
  color: var(--v-electric);
  transition: transform var(--t-med);
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow), padding var(--t-med);
  padding: 0 26px;
  color: var(--v-silver);
  line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 600px; padding: 0 26px 22px; }

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all var(--t-med);
}
.gallery-item:hover { transform: scale(1.03); border-color: var(--v-electric); box-shadow: var(--glow-blue); }
.gallery-item .gallery-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--t-slow);
}
.gallery-item:hover .gallery-bg { transform: scale(1.1); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 50%, rgba(3, 5, 11, 0.9) 100%);
}
.gallery-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  z-index: 2;
  color: var(--v-white);
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 1px;
}
.gallery-cap span {
  display: block;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--v-electric);
  margin-top: 4px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(3, 5, 11, 0.95);
  backdrop-filter: blur(20px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
  border: 1px solid var(--v-electric);
  box-shadow: var(--glow-blue);
}
.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  font-size: 30px;
  color: var(--v-electric);
  cursor: pointer;
}

/* ============================================
   BLOG
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.blog-card {
  background: linear-gradient(135deg, rgba(15, 21, 48, 0.85) 0%, rgba(10, 14, 31, 0.85) 100%);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t-med);
}
.blog-card:hover { transform: translateY(-6px); border-color: var(--v-electric); box-shadow: 0 20px 50px -10px rgba(0, 212, 255, 0.3); }
.blog-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.blog-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 31, 0.7) 100%);
}
.blog-body { padding: 24px; }
.blog-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--v-violet);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.blog-title {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--v-white);
  line-height: 1.3;
}
.blog-excerpt { color: var(--v-silver); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }

/* ============================================
   FORMS
   ============================================ */
.form { max-width: 700px; margin: 0 auto; }
.form-row { margin-bottom: 22px; }
.form-row label {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--v-electric);
  margin-bottom: 8px;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(10, 14, 31, 0.7);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius);
  color: var(--v-white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: all var(--t-fast);
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-color: var(--v-electric);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
}
.form-row textarea { resize: vertical; min-height: 130px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--v-deep);
  border-top: 1px solid rgba(0, 212, 255, 0.2);
  padding: 60px 0 30px;
  margin-top: 80px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--v-electric) 50%, transparent 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}
.footer h4 {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--v-electric);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { color: var(--v-silver); font-size: 14px; transition: color var(--t-fast); }
.footer ul a:hover { color: var(--v-electric); }
.footer-bottom {
  border-top: 1px solid rgba(0, 212, 255, 0.1);
  padding-top: 25px;
  text-align: center;
  color: var(--v-frost);
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 1px;
}

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
  padding: 180px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 90px);
  letter-spacing: -1px;
  background: linear-gradient(180deg, var(--v-white) 0%, var(--v-electric) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}
.page-header p { color: var(--v-silver); font-size: 18px; max-width: 700px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--v-frost);
}
.breadcrumb a { color: var(--v-electric); }
.breadcrumb span { color: var(--v-violet); }

/* ============================================
   BACK TO TOP & SHARE FLOATING
   ============================================ */
.back-top {
  position: fixed;
  bottom: 20px; left: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(10, 14, 31, 0.9);
  border: 1px solid var(--v-electric);
  color: var(--v-electric);
  cursor: pointer;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: all var(--t-fast);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  box-shadow: var(--glow-blue);
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: var(--v-electric); color: var(--v-deep); }
.back-top svg { width: 20px; height: 20px; }

.share-floating {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 50;
}
.share-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(10, 14, 31, 0.85);
  border: 1px solid rgba(0, 212, 255, 0.4);
  color: var(--v-electric);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: all var(--t-fast);
}
.share-btn:hover {
  background: var(--v-electric);
  color: var(--v-deep);
  transform: translateX(4px);
  box-shadow: var(--glow-blue);
}
.share-btn svg { width: 16px; height: 16px; }

/* Social row footer */
.social-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(10, 14, 31, 0.5);
  border: 1px solid rgba(0, 212, 255, 0.2);
  color: var(--v-silver);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
}
.social-link:hover {
  background: var(--v-electric);
  color: var(--v-deep);
  border-color: var(--v-electric);
  transform: translateY(-3px);
  box-shadow: var(--glow-blue);
}
.social-link svg { width: 18px; height: 18px; }

/* Newsletter form */
.newsletter-form {
  display: flex;
  gap: 0;
  background: rgba(10, 14, 31, 0.7);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
}
.newsletter-form input {
  flex: 1;
  padding: 11px 14px;
  background: transparent;
  border: none;
  color: var(--v-white);
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
}
.newsletter-form input::placeholder { color: var(--v-frost); }
.newsletter-form button {
  width: 44px;
  background: linear-gradient(135deg, var(--v-blue), var(--v-violet));
  color: var(--v-white);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--t-fast);
}
.newsletter-form button:hover { background: linear-gradient(135deg, var(--v-violet), var(--v-blue)); }

/* Nav toggle animated to X */
.nav-toggle { transition: all var(--t-med); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(3, 5, 11, 0.97);
    backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 30px;
    gap: 18px;
    transform: translateY(-110%);
    transition: transform var(--t-med);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
  }
  .nav-menu.open { transform: translateY(0); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 600px) {
  section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .timeline { padding-left: 30px; }
  .share-floating { display: none; }
  .grid-2 { grid-template-columns: 1fr !important; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .power-hud { font-size: 9px; padding: 8px 12px; bottom: 80px; right: 10px; }
  .audio-toggle { width: 38px; height: 38px; top: 80px; right: 10px; }
  .back-top { bottom: 80px; left: 10px; width: 38px; height: 38px; }
}
