/* ============================================================
   GOKU FANSITE — Main Stylesheet
   ============================================================ */

/* ---------- Custom Properties ---------- */
:root {
  --orange-hot: #FF8C00;
  --orange-fire: #FF6347;
  --orange-deep: #FF4500;
  --blue-electric: #0099FF;
  --blue-divine: #1E90FF;
  --blue-bright: #00BFFF;
  --bg-deepest: #060610;
  --bg-dark: #0F0F1F;
  --bg-mid: #0A0A18;
  --bg-purple: #1A0033;
  --text-primary: #FFFFFF;
  --text-secondary: #B0B8CC;
  --text-muted: #6B7280;
  --font-heading: 'Orbitron', monospace;
  --font-syne: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deepest); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--orange-hot), var(--blue-electric));
  border-radius: 3px;
}

/* ---------- Typography ---------- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--orange-hot);
  margin-bottom: 12px;
  opacity: 0.8;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  background: linear-gradient(135deg, var(--orange-hot), var(--blue-electric));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
  background: rgba(6, 6, 16, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 140, 0, 0.15);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, var(--orange-hot), var(--blue-electric));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
}

.nav-links a {
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--orange-hot), var(--blue-electric));
  transition: right var(--transition);
}

.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { right: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--orange-hot);
  border-radius: 1px;
  transition: transform var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-goku-ssj-blue-kamehameha-wallhaven.jpg');
  background-size: cover;
  background-position: center 20%;
  will-change: transform;
  transform: scale(1.08);
  transition: transform 0.1s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(30, 10, 60, 0.55) 40%,
    rgba(0, 20, 50, 0.75) 80%,
    rgba(30, 10, 60, 0.85) 100%
  );
  z-index: 1;
}

/* Aura rings */
.aura-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  z-index: 2;
  animation: auraPulse 4s ease-in-out infinite;
}

.aura-ring-1 {
  width: 300px; height: 300px;
  border-color: rgba(255, 140, 0, 0.15);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 0s;
}

.aura-ring-2 {
  width: 520px; height: 520px;
  border-color: rgba(0, 153, 255, 0.1);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 0.8s;
}

.aura-ring-3 {
  width: 740px; height: 740px;
  border-color: rgba(255, 140, 0, 0.06);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 1.6s;
}

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

/* Particles */
.particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.3s forwards;
}

.badge-text {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--orange-hot);
}

.badge-line {
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange-hot));
}

.badge-line:last-child {
  background: linear-gradient(90deg, var(--orange-hot), transparent);
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.5s forwards;
}

.title-goku {
  font-size: clamp(3.5rem, 12vw, 8rem);
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, #FF8C00 0%, #FF4500 50%, #FF8C00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(255, 140, 0, 0.4));
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite 1s;
}

.title-separator {
  display: flex;
  align-items: center;
  justify-content: center;
}

.title-legend {
  font-size: clamp(1rem, 3.5vw, 2rem);
  letter-spacing: 0.5em;
  background: linear-gradient(135deg, var(--blue-electric), var(--blue-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(0, 153, 255, 0.3));
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 2.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.7s forwards;
}

/* CTA Button */
.hero-actions {
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.9s forwards;
}

.cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: transparent;
  border: none;
  text-decoration: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: visible;
}

.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(255,140,0,0.15), rgba(0,153,255,0.15)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

.cta-btn::after {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--orange-hot), var(--blue-electric));
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition);
  border-radius: 2px;
}

.cta-btn:hover::after { opacity: 0.15; }

/* Energy border lines */
.cta-btn-text { position: relative; z-index: 2; }
.cta-btn-arrow { position: relative; z-index: 2; transition: transform var(--transition); }
.cta-btn:hover .cta-btn-arrow { transform: translateX(4px); }

.cta-pulse {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(255, 140, 0, 0.3);
  animation: ctaPulse 2s ease-in-out infinite;
}

.cta-energy {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(0, 153, 255, 0.15);
  animation: ctaPulse 2s ease-in-out infinite 0.5s;
}

@keyframes ctaPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.02); }
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeSlideUp 0.8s 1.4s forwards;
  z-index: 5;
}

.hero-scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-hot);
  animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

/* Hero bottom wave divider */
.hero-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 6;
  line-height: 0;
}

.hero-divider svg { width: 100%; display: block; }

/* Animations */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   TRANSFORMATIONS SECTION
   ============================================================ */
.transformations {
  position: relative;
  background: var(--bg-dark);
  padding: 100px 0 80px;
}

.section-bg-anim {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,140,0,0.04) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(0,153,255,0.04) 0%, transparent 60%);
  animation: bgPulse 6s ease-in-out infinite;
  pointer-events: none;
}

.section-bg-anim.dark {
  background: radial-gradient(ellipse at 30% 40%, rgba(138,43,226,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 60%, rgba(0,153,255,0.04) 0%, transparent 60%);
}

@keyframes bgPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Forms Grid */
.forms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Form Card */
.form-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
  padding: 24px 20px 20px;
  cursor: default;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--card-color), transparent);
  opacity: 0.6;
  transition: opacity var(--transition);
}

.form-card.featured::before { opacity: 1; height: 3px; }

.form-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5),
              0 0 30px rgba(var(--card-color-rgb, 255,140,0), 0.15),
              inset 0 1px 0 rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}

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

/* Card inner elements */
.card-energy-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, var(--card-color) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.form-card:hover .card-energy-bg { opacity: 0.05; }

.card-tier {
  font-family: var(--font-heading);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--card-color);
  text-transform: uppercase;
  opacity: 0.7;
}

.card-tier.tier-featured { color: var(--blue-electric); font-weight: 900; }
.card-tier.tier-top { color: rgba(200, 220, 255, 0.9); }
.card-tier.tier-god { color: #FF1744; }

.card-featured-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--blue-electric), var(--blue-bright));
  color: white;
  font-family: var(--font-heading);
  font-size: 0.5rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  padding: 3px 8px;
  border-radius: 2px;
  animation: featuredPulse 2s ease-in-out infinite;
}

@keyframes featuredPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(0,153,255,0.3); }
  50% { box-shadow: 0 0 20px rgba(0,153,255,0.6); }
}

.card-aura {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  opacity: 0.3;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.form-card:hover .card-aura { opacity: 0.7; transform: scale(1.1) rotate(30deg); }

.aura-svg { width: 100%; height: 100%; animation: rotateSlow 20s linear infinite; }

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px 0;
  transition: transform var(--transition), filter var(--transition);
}

.form-card:hover .card-icon {
  transform: scale(1.12);
  filter: drop-shadow(0 0 12px var(--card-color));
}

.card-content { flex: 1; }

.card-form-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--card-color);
  margin-bottom: 2px;
  text-shadow: 0 0 20px var(--card-glow);
  transition: text-shadow var(--transition);
}

.form-card:hover .card-form-name {
  text-shadow: 0 0 30px var(--card-glow);
}

.card-tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}

.card-desc {
  font-family: var(--font-body);
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

/* Power bar */
.card-power-bar {
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 4px;
}

.power-fill {
  height: 100%;
  width: 0;
  background: var(--fill-color);
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px var(--fill-color);
}

.power-fill.animated { width: var(--fill-pct); }

.card-power-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Hover energy wave overlay */
.card-hover-energy {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(0deg, var(--card-color) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.form-card:hover .card-hover-energy { opacity: 0.04; }

/* Section divider */
.section-divider {
  line-height: 0;
  margin-top: 80px;
}

.section-divider svg { width: 100%; display: block; }

/* ============================================================
   ADVERSARIES SECTION
   ============================================================ */
.adversaries {
  position: relative;
  background: var(--bg-mid);
  padding: 100px 0 80px;
}

.adversary-title {
  background: linear-gradient(135deg, var(--blue-electric), #9B59B6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.adversaries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Adversary Card */
.adversary-card {
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 28px 22px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.adv-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 30px,
      rgba(255,255,255,0.006) 30px,
      rgba(255,255,255,0.006) 31px
    );
  pointer-events: none;
}

.adv-border-glow {
  position: absolute;
  inset: 0;
  border: 1px solid var(--adv-color);
  opacity: 0;
  border-radius: 4px;
  transition: opacity 0.4s ease;
  pointer-events: none;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.5), 0 0 30px var(--adv-color);
}

.adversary-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 40px rgba(0,0,0,0.3);
}

.adversary-card:hover .adv-border-glow { opacity: 0.5; }

.adv-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.adv-emblem {
  flex-shrink: 0;
  transition: filter var(--transition), transform var(--transition);
}

.adversary-card:hover .adv-emblem {
  filter: drop-shadow(0 0 12px var(--adv-color));
  transform: scale(1.08) rotate(6deg);
}

.adv-title-block {}

.adv-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--adv-color);
  text-shadow: 0 0 20px var(--adv-glow);
  line-height: 1;
  margin-bottom: 4px;
}

.adv-rank {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.adv-lore {
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.adv-attacks {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.attack-tag {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  padding: 3px 8px;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: border-color var(--transition), color var(--transition);
}

.adversary-card:hover .attack-tag {
  border-color: rgba(var(--adv-color), 0.3);
  color: rgba(255,255,255,0.7);
}

.adv-threat {}

.threat-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
}

.threat-bar {
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}

.threat-fill {
  height: 100%;
  width: 0;
  background: var(--threat-color);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--threat-color);
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.threat-fill.animated { width: var(--threat-pct); }

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  position: relative;
  background: var(--bg-dark);
  padding: 100px 0;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(255,140,0,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(0,153,255,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.stats-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.stats-radial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.radial-svg {
  width: 100%;
  max-width: 120px;
  overflow: visible;
  filter: drop-shadow(0 0 8px rgba(255,140,0,0.2));
}

.stat-name {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-align: center;
}

/* Quote block */
.stats-quote {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote-energy-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange-hot), var(--blue-electric), transparent);
  opacity: 0.4;
}

.quote-text {
  font-family: var(--font-syne);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 700;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
  position: relative;
  padding-left: 24px;
}

.quote-text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--orange-hot), var(--blue-electric));
  border-radius: 2px;
}

.quote-attribution {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange-hot);
  opacity: 0.8;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-deepest);
  position: relative;
}

.footer-energy-top {
  line-height: 0;
}

.footer-energy-top svg { width: 100%; display: block; }

.footer-inner {
  padding: 40px 24px 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  background: linear-gradient(135deg, var(--orange-hot), var(--blue-electric));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-copy {
  font-size: 0.7rem;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.6;
}

.footer-tagline {
  font-family: var(--font-syne);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.2);
  font-style: italic;
  letter-spacing: 0.08em;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .forms-grid { grid-template-columns: repeat(3, 1fr); }
  .adversaries-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-layout { grid-template-columns: 1fr; gap: 60px; }
  .stats-radial-grid { grid-template-columns: repeat(5, 1fr); gap: 16px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .forms-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .adversaries-grid { grid-template-columns: repeat(1, 1fr); gap: 14px; }

  .stats-radial-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .title-goku { font-size: clamp(2.5rem, 16vw, 5rem); }

  .aura-ring-1 { width: 200px; height: 200px; }
  .aura-ring-2 { width: 340px; height: 340px; }
  .aura-ring-3 { display: none; }
}

@media (max-width: 480px) {
  .forms-grid { grid-template-columns: 1fr; gap: 12px; }
  .stats-radial-grid { grid-template-columns: repeat(2, 1fr); }

  .card-desc { display: none; }
}

/* Featured card glow */
.form-card.featured {
  border-color: rgba(0, 153, 255, 0.2);
  background: rgba(0, 153, 255, 0.04);
}

.form-card.featured:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 50px rgba(0,153,255,0.2);
}

/* ============================================================
   MOBILE NAV OPEN STATE
   ============================================================ */
.nav.open .nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(6, 6, 16, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px;
  gap: 24px;
  border-bottom: 1px solid rgba(255,140,0,0.15);
}
