/* ============================================================
   Save Barron — $BARRON
   ============================================================ */

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Variables */
:root {
  --bg: #030706;
  --bg-alt: #050909;
  --surface: rgba(8, 20, 14, 0.65);
  --surface-solid: #0a1410;
  --green: #00ff88;
  --green-dim: #00cc6a;
  --green-dark: #003d20;
  --cyan: #00e5ff;
  --purple: #9945ff;
  --purple-alt: #14f195;
  --text: #f0f4f2;
  --muted: #8a9a90;
  --border: rgba(0, 255, 136, 0.2);
  --glow: rgba(0, 255, 136, 0.4);
  --glow-strong: rgba(0, 255, 136, 0.7);

  --font-display: 'Anton', 'Oswald', sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --nav-height: 72px;
  --container: 1200px;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global */
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.section {
  padding: clamp(4rem, 10vw, 7rem) 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(3rem, 6vw, 4rem);
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  letter-spacing: 0.25em;
  color: var(--green);
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-statement {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--green);
  margin-bottom: 1rem;
}

.section-sub {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--muted);
  letter-spacing: 0.05em;
}

.section-desc {
  color: var(--muted);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  max-width: 600px;
  margin: 0 auto;
}

/* Background layers */
.energy-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 40s linear infinite;
}

.scanlines {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.08) 2px,
    rgba(0, 0, 0, 0.08) 4px
  );
  opacity: 0.4;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.glow-orb--1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
  top: 10%;
  left: 20%;
  animation: orbPulse 6s ease-in-out infinite;
}

.glow-orb--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
  bottom: 20%;
  right: 10%;
  animation: orbPulse 8s ease-in-out infinite reverse;
}

.particle-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--green);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
  box-shadow: 0 0 6px var(--green);
}

/* Cursor glow */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s;
  will-change: transform;
}

body.cursor-active .cursor-glow {
  opacity: 1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-dim), var(--green));
  color: var(--bg);
  box-shadow: 0 0 20px var(--glow), 0 4px 15px rgba(0, 0, 0, 0.4);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 35px var(--glow-strong), 0 6px 20px rgba(0, 0, 0, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--green);
  box-shadow: 0 0 20px var(--glow);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--green);
  box-shadow: 0 0 15px var(--glow);
}

.btn-x {
  background: var(--text);
  color: var(--bg);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.btn-x:hover,
.btn-x:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: clamp(0.85rem, 2vw, 1rem);
}

.btn-arrow {
  transition: transform var(--transition);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.btn:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.x-icon {
  font-family: var(--font-display);
  font-size: 1.2em;
  line-height: 1;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(3, 7, 6, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), 0 4px 30px rgba(0, 255, 136, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
}

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

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.nav-ticker {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--green);
  letter-spacing: 0.1em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--green);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 0.75rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  z-index: 10;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: 100%;
  padding-top: clamp(1rem, 3vw, 2rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

.ticker-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  padding: 0.4rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: clamp(0.7rem, 1.5vw, 0.8rem);
  letter-spacing: 0.15em;
  backdrop-filter: blur(8px);
}

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

.hero-title {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
}

.hero-line {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 7rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-line--accent {
  color: var(--green);
  text-shadow: 0 0 40px var(--glow), 0 0 80px rgba(0, 255, 136, 0.2);
}

.hero-sub {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3.5vw, 2rem);
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.03em;
}

.hero-desc {
  color: var(--muted);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  max-width: 480px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

/* Shield / Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: -10%;
  background: url('assets/banner.png') center / cover no-repeat;
  opacity: 0.12;
  filter: blur(24px) saturate(1.2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.shield-container {
  position: relative;
  width: clamp(280px, 40vw, 480px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hud-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(0, 255, 136, 0.15);
  pointer-events: none;
}

.hud-ring--1 {
  inset: -8%;
  animation: hudRotate 30s linear infinite;
}

.hud-ring--2 {
  inset: -15%;
  border-color: rgba(0, 229, 255, 0.1);
  animation: hudRotate 45s linear infinite reverse;
}

.hud-ring--3 {
  inset: -22%;
  border-style: dotted;
  border-color: rgba(153, 69, 255, 0.12);
  animation: hudRotate 60s linear infinite;
}

.shield-dome {
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, rgba(0, 255, 136, 0.08) 0%, transparent 65%);
  border: 1px solid rgba(0, 255, 136, 0.15);
  animation: shieldPulse 4s ease-in-out infinite;
}

.shield-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--green);
  border-right-color: rgba(0, 229, 255, 0.5);
  animation: shieldRotate 8s linear infinite;
  opacity: 0.6;
}

.shield-sparks span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--green);
}

.shield-sparks span:nth-child(1) { top: 10%; left: 50%; animation: spark 3s ease-in-out infinite; }
.shield-sparks span:nth-child(2) { top: 50%; right: 5%; animation: spark 3s ease-in-out 0.5s infinite; }
.shield-sparks span:nth-child(3) { bottom: 10%; left: 50%; animation: spark 3s ease-in-out 1s infinite; }
.shield-sparks span:nth-child(4) { top: 50%; left: 5%; animation: spark 3s ease-in-out 1.5s infinite; }
.shield-sparks span:nth-child(5) { top: 20%; right: 20%; animation: spark 4s ease-in-out 0.3s infinite; }
.shield-sparks span:nth-child(6) { bottom: 20%; left: 20%; animation: spark 4s ease-in-out 0.8s infinite; }

.shield-shockwave {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 136, 0.3);
  animation: shockwave 4s ease-out infinite;
  pointer-events: none;
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: 75%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 0 30px var(--glow));
  animation: logoFloat 5s ease-in-out infinite;
}

/* Marquee */
.marquee-section {
  position: relative;
  z-index: 10;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
  white-space: nowrap;
}

.marquee-content span {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 2rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.marquee-accent {
  color: var(--green);
  text-shadow: 0 0 20px var(--glow);
}

.marquee-dot {
  color: var(--muted);
  font-size: 0.6em;
}

/* Mission */
.mission {
  z-index: 10;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.mission-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 3vw, 1.5rem);
}

.mission-card {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0, 255, 136, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.mission-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 255, 136, 0.4);
  box-shadow: 0 0 30px var(--glow), 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.card-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: rgba(0, 255, 136, 0.15);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  position: relative;
}

.card-icon--shield {
  border: 2px solid var(--green);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 0 15px var(--glow);
}

.card-icon--line {
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--cyan);
  box-shadow: -4px 4px 15px var(--glow);
}

.card-icon--rocket {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  box-shadow: 0 0 15px var(--glow);
}

.card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.card-text {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Army */
.army {
  z-index: 10;
  background: var(--bg);
  overflow: hidden;
}

.army-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 5vw, 3.5rem);
  max-width: 960px;
  margin: 0 auto;
}

.army-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(0.75rem, 2vw, 1rem);
  width: 100%;
}

.army-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(0.75rem, 2vw, 1rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
}

.army-member:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--green);
  box-shadow: 0 0 25px var(--glow);
}

.army-sprites {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.army-icon {
  display: block;
  width: 52px;
  height: 52px;
  margin: 0 auto 0.75rem;
  color: var(--text);
  transition: color var(--transition), filter var(--transition), transform var(--transition);
}

.army-icon--bull {
  color: var(--text);
  filter: drop-shadow(0 0 6px rgba(0, 255, 136, 0.35));
}

.army-icon--trench {
  color: var(--muted);
  filter: drop-shadow(0 0 4px rgba(0, 255, 136, 0.2));
}

.army-icon--shield {
  color: var(--green);
  filter: drop-shadow(0 0 8px var(--glow));
}

.army-icon--candle {
  color: var(--muted);
  filter: drop-shadow(0 0 6px rgba(0, 255, 136, 0.4));
}

.army-icon--sol {
  filter: drop-shadow(0 0 10px rgba(153, 69, 255, 0.45));
}

.army-member:hover .army-icon {
  transform: scale(1.1);
}

.army-member:hover .army-icon--bull,
.army-member:hover .army-icon--trench {
  color: var(--green);
  filter: drop-shadow(0 0 12px var(--glow));
}

.army-member:hover .army-icon--shield,
.army-member:hover .army-icon--candle {
  filter: drop-shadow(0 0 14px var(--glow-strong));
}

.army-member:hover .army-icon--sol {
  filter: drop-shadow(0 0 16px rgba(153, 69, 255, 0.6));
}

.army-label {
  font-family: var(--font-heading);
  font-size: clamp(0.7rem, 1.5vw, 0.8rem);
  letter-spacing: 0.15em;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.army-desc {
  font-size: clamp(0.65rem, 1.2vw, 0.75rem);
  color: var(--muted);
  line-height: 1.3;
}

.army-center {
  position: relative;
  text-align: center;
  width: 100%;
  max-width: 640px;
}

.army-center-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, var(--glow) 0%, transparent 60%);
  filter: blur(40px);
  animation: orbPulse 5s ease-in-out infinite;
  pointer-events: none;
}

.army-banner {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 0 40px var(--glow), 0 20px 60px rgba(0, 0, 0, 0.5);
}

.army-tagline {
  position: relative;
  z-index: 1;
  margin-top: 1.5rem;
  font-family: var(--font-heading);
  font-size: clamp(0.75rem, 1.8vw, 0.9rem);
  letter-spacing: 0.12em;
  color: var(--green);
  text-transform: uppercase;
}

/* Token */
.token {
  z-index: 10;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.token-panel {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.token-panel-inner {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 5vw, 3rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
}

.token-panel-glow {
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(135deg, var(--green), var(--cyan), var(--purple));
  opacity: 0.3;
  filter: blur(1px);
  z-index: 0;
  animation: borderGlow 4s ease-in-out infinite;
}

.token-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  gap: 1rem;
  flex-wrap: wrap;
}

.token-row:last-of-type {
  border-bottom: none;
}

.token-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.token-value {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
}

.token-value--ca {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.token-value--ca code {
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.token-value--ticker {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

.btn-copy {
  padding: 0.35rem 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--muted);
  transition: var(--transition);
}

.btn-copy:not(:disabled):hover {
  border-color: var(--green);
  color: var(--green);
  box-shadow: 0 0 15px var(--glow);
}

.btn-copy:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-copy.copied {
  border-color: var(--green);
  color: var(--green);
}

.token-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* How To Buy */
.buy {
  z-index: 10;
  background: var(--bg-alt);
}

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px var(--glow);
  border-color: rgba(0, 255, 136, 0.35);
}

.step-connector {
  display: flex;
  align-items: center;
  width: 40px;
  position: relative;
}

.step-connector::before {
  content: '';
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  animation: connectorPulse 2s ease-in-out infinite;
}

.step-connector::after {
  content: '';
  position: absolute;
  right: 0;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid var(--cyan);
}

.step-number {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--green);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.step-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.step-text {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Manifesto */
.manifesto {
  position: relative;
  z-index: 10;
  padding: clamp(6rem, 15vw, 10rem) 0;
  overflow: hidden;
  background: var(--bg);
}

.manifesto-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.manifesto-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 136, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 136, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridDrift 60s linear infinite reverse;
}

.manifesto-sweep {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(0, 255, 136, 0.06) 50%, transparent 60%);
  animation: lightSweep 8s ease-in-out infinite;
}

.manifesto-bulls {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.manifesto-bull {
  position: absolute;
  width: 200px;
  height: 120px;
  background: var(--green);
  clip-path: polygon(20% 100%, 0% 60%, 10% 30%, 30% 10%, 50% 0%, 70% 10%, 90% 30%, 100% 60%, 80% 100%, 50% 85%);
  opacity: 0.04;
  bottom: 10%;
  left: 5%;
  animation: bullDrift 20s ease-in-out infinite;
}

.manifesto-bull--2 {
  width: 150px;
  height: 90px;
  right: 8%;
  left: auto;
  bottom: 20%;
  animation-delay: -10s;
  animation-direction: reverse;
}

.manifesto-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.manifesto-title {
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}

.manifesto-title span {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 10vw, 6rem);
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.manifesto-accent {
  color: var(--green);
  text-shadow: 0 0 50px var(--glow);
}

.manifesto-closer {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 5rem);
  color: var(--green);
  letter-spacing: 0.08em;
  margin-top: clamp(1.5rem, 4vw, 3rem);
  text-shadow: 0 0 40px var(--glow);
  animation: pulse 3s ease-in-out infinite;
}

/* Community */
.community {
  z-index: 10;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.community-actions {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Final CTA */
.final-cta {
  position: relative;
  z-index: 10;
  padding: clamp(5rem, 12vw, 8rem) 0;
  overflow: hidden;
  background: var(--bg-alt);
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.final-cta-logo {
  width: min(500px, 80vw);
  opacity: 0.12;
  filter: blur(8px) drop-shadow(0 0 60px var(--glow));
  animation: logoFloat 6s ease-in-out infinite;
}

.final-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 4rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.final-cta-sub {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--muted);
  margin-bottom: 2rem;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  position: relative;
  z-index: 10;
  padding: clamp(2rem, 5vw, 3rem) 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 6px var(--glow));
}

.footer-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.footer-ticker {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--green);
  letter-spacing: 0.1em;
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--green);
}

.footer-tagline {
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-disclaimer {
  color: rgba(138, 154, 144, 0.6);
  font-size: 0.75rem;
  max-width: 400px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(4px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hero .reveal {
  transition-delay: var(--delay, 0s);
}

/* Animations */
@keyframes gridDrift {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

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

@keyframes shieldPulse {
  0%, 100% { box-shadow: inset 0 0 30px rgba(0, 255, 136, 0.05); opacity: 0.8; }
  50% { box-shadow: inset 0 0 50px rgba(0, 255, 136, 0.12); opacity: 1; }
}

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

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

@keyframes shockwave {
  0% { transform: scale(0.95); opacity: 0.5; }
  50% { transform: scale(1.05); opacity: 0; }
  100% { transform: scale(0.95); opacity: 0; }
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

@keyframes borderGlow {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.5; }
}

@keyframes connectorPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes lightSweep {
  0%, 100% { transform: translateX(-100%); opacity: 0; }
  50% { transform: translateX(100%); opacity: 1; }
}

@keyframes bullDrift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(30px); }
}

/* Responsive */
@media (max-width: 900px) {
  .army-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-content {
    display: contents;
  }

  .ticker-pill { order: 1; align-self: center; }
  .hero-title { order: 2; }
  .hero-sub { order: 3; }
  .hero-desc { order: 4; max-width: 100%; }
  .hero-ctas { order: 5; justify-content: center; }
  .hero-visual { order: 6; }

  .mission-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 400px;
  }

  .step-connector {
    display: none;
  }
}

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

  .nav-menu {
    position: fixed;
    inset: 0;
    top: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: rgba(3, 7, 6, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .nav-actions {
    flex-direction: column;
    width: 80%;
    max-width: 280px;
  }

  .nav-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .army-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shield-container {
    width: min(320px, 75vw);
  }

  .glow-orb--1 {
    width: 250px;
    height: 250px;
  }

  .glow-orb--2 {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 480px) {
  :root {
    --nav-height: 64px;
  }

  .hero-line {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .token-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .community-actions {
    flex-direction: column;
    width: 100%;
    padding: 0 1rem;
  }

  .community-actions .btn {
    width: 100%;
  }

  .final-cta-buttons {
    flex-direction: column;
    width: 100%;
    padding: 0 1rem;
  }

  .final-cta-buttons .btn {
    width: 100%;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .cursor-glow {
    display: none;
  }

  .marquee-track {
    animation: none;
  }

  .particle-field {
    display: none;
  }
}
