/* ============================================================
   Bull Doge ($BULLDOGE) — Electric green bull-charge theme
   Tuned to logo/banner: neon plasma, obsidian, gothic metal
   ============================================================ */

:root {
  --bg:         #020804;
  --bg-2:       #051508;
  --bg-3:       #0a1f0c;
  --green:      #39ff14;
  --green-hi:   #7fff00;
  --green-dim:  #1a8f0a;
  --green-glow: rgba(57, 255, 20, 0.55);
  --green-soft: rgba(57, 255, 20, 0.12);
  --orange:     #e8a848;
  --orange-hi:  #ffc870;
  --silver:     #c8d4c8;
  --silver-hi:  #eef5ee;
  --text:       #e8f5e8;
  --muted:      #8aab8a;
  --muted-2:    #5a735a;
  --line:       rgba(57, 255, 20, 0.18);
  --card:       rgba(8, 24, 10, 0.72);
  --card-2:     rgba(12, 32, 14, 0.78);

  --grad-charge: linear-gradient(135deg, var(--green-dim) 0%, var(--green) 45%, var(--green-hi) 100%);
  --grad-metal:  linear-gradient(180deg, var(--silver-hi) 0%, var(--silver) 40%, #6a7a6a 100%);
  --grad-fire:   linear-gradient(120deg, var(--orange) 0%, var(--green) 60%, var(--green-hi) 100%);

  --font-display: 'Cinzel Decorative', 'Metal Mania', 'Times New Roman', serif;
  --font-space:   'Orbitron', 'Segoe UI', sans-serif;
  --font-body:    'Exo 2', 'Segoe UI', system-ui, sans-serif;

  --maxw: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  letter-spacing: 0.3px;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.08;
}

/* ============================================================
   Background stack
   ============================================================ */
.bg-stack {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: var(--bg);
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.bg-video.active { opacity: 0.35; }

#lightning-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bg-obsidian {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(10, 30, 12, 0.9), transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(57, 255, 20, 0.06), transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(57, 255, 20, 0.08), transparent 55%),
    linear-gradient(180deg, #010502 0%, var(--bg-2) 40%, #020a04 100%);
}

.bg-green-mist {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(40% 35% at 30% 60%, rgba(57, 255, 20, 0.14), transparent 65%),
    radial-gradient(35% 30% at 70% 40%, rgba(26, 143, 10, 0.2), transparent 60%);
  filter: blur(40px);
  animation: mistPulse 14s ease-in-out infinite alternate;
}

@keyframes mistPulse {
  0%   { transform: translate3d(-2%, 0, 0) scale(1); opacity: 0.7; }
  100% { transform: translate3d(3%, -2%, 0) scale(1.1); opacity: 1; }
}

.bg-cracks {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'%3E%3Cpath d='M0 200 L80 180 L120 220 L200 190 L260 240 L340 200 L400 210' fill='none' stroke='%2339ff14' stroke-width='0.5' opacity='0.4'/%3E%3Cpath d='M200 0 L190 80 L230 120 L200 200 L250 260 L210 340 L200 400' fill='none' stroke='%2339ff14' stroke-width='0.5' opacity='0.3'/%3E%3C/svg%3E");
  background-size: 400px 400px;
  animation: crackShift 30s linear infinite;
}

@keyframes crackShift {
  to { background-position: 400px 400px; }
}

.bg-scan {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(0, 0, 0, 0.18) 3px 5px);
  mix-blend-mode: overlay;
  animation: scanMove 10s linear infinite;
}

@keyframes scanMove { to { background-position: 0 240px; } }

.bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(110% 85% at 50% 35%, transparent 50%, rgba(0, 0, 0, 0.75) 100%);
}

.cursor-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(57, 255, 20, 0.12), rgba(26, 143, 10, 0.05) 45%, transparent 70%);
  pointer-events: none;
  transition: opacity 0.4s ease;
  opacity: 0;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: var(--font-space);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.3s ease;
  white-space: nowrap;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

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

.btn:hover::before { transform: translateX(120%); }
.btn:hover { transform: translateY(-3px); }
.btn .ico { width: 20px; height: 20px; }

.btn-charge {
  color: #020804;
  background: var(--grad-charge);
  box-shadow:
    0 0 0 1px rgba(57, 255, 20, 0.4),
    0 8px 32px rgba(57, 255, 20, 0.35),
    0 0 60px rgba(57, 255, 20, 0.2);
}

.btn-charge .ico { filter: brightness(0) saturate(0); opacity: 0.75; }

.btn-charge:hover {
  box-shadow:
    0 0 0 1px rgba(127, 255, 0, 0.6),
    0 12px 44px rgba(57, 255, 20, 0.55),
    0 0 80px rgba(57, 255, 20, 0.35);
}

.btn-ghost {
  color: var(--text);
  background: rgba(57, 255, 20, 0.04);
  border: 1px solid var(--line);
  box-shadow: inset 0 0 30px rgba(57, 255, 20, 0.06);
  backdrop-filter: blur(8px);
}

.btn-ghost .ico { filter: brightness(0) invert(1); opacity: 0.85; }

.btn-ghost:hover {
  border-color: var(--green);
  box-shadow: 0 0 30px rgba(57, 255, 20, 0.3), inset 0 0 30px rgba(57, 255, 20, 0.1);
}

.ico { width: 22px; height: 22px; }

/* ============================================================
   Navbar
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(18px, 4vw, 48px);
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.nav.scrolled {
  background: rgba(2, 8, 4, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line), 0 12px 40px rgba(0, 0, 0, 0.5);
  padding-top: 10px;
  padding-bottom: 10px;
}

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

.nav-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(57, 255, 20, 0.5);
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
  object-fit: cover;
  animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(57, 255, 20, 0.4); }
  50%      { box-shadow: 0 0 35px rgba(57, 255, 20, 0.7); }
}

.nav-name {
  font-family: var(--font-space);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 4px;
  color: var(--green);
  text-shadow: 0 0 20px var(--green-glow);
}

.nav-links { display: flex; gap: 32px; }

.nav-links a {
  font-family: var(--font-space);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--muted);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background: var(--green);
  transition: width 0.3s ease;
  box-shadow: 0 0 8px var(--green);
}

.nav-links a:hover { color: var(--green-hi); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.icon-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: rgba(57, 255, 20, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.icon-btn .ico { width: 18px; height: 18px; filter: brightness(0) invert(1); }

.icon-btn:hover {
  transform: translateY(-3px);
  border-color: var(--green);
  box-shadow: 0 0 22px rgba(57, 255, 20, 0.4);
}

.nav-buy { padding: 11px 20px; font-size: 0.78rem; }

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
  box-shadow: 0 0 6px var(--green-glow);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px clamp(18px, 4vw, 48px) 80px;
  position: relative;
}

.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-space);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

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

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

.hero-title { margin-bottom: 24px; }

.title-line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--silver);
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.title-main {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: var(--grad-metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 30px rgba(57, 255, 20, 0.5));
  position: relative;
  animation: titleGlow 4s ease-in-out infinite alternate;
}

.title-main::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: var(--grad-charge);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.35;
  filter: blur(12px);
  z-index: -1;
}

@keyframes titleGlow {
  0%   { filter: drop-shadow(0 0 20px rgba(57, 255, 20, 0.4)); }
  100% { filter: drop-shadow(0 0 45px rgba(57, 255, 20, 0.7)); }
}

.hero-phrases { margin-bottom: 32px; }

.phrase {
  font-family: var(--font-space);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 6px;
  opacity: 0;
  animation: phraseIn 0.6s ease forwards;
}

.phrase:nth-child(1) { animation-delay: 0.3s; }
.phrase:nth-child(2) { animation-delay: 0.5s; }
.phrase:nth-child(3) { animation-delay: 0.7s; }
.phrase:nth-child(4) { animation-delay: 0.9s; }

.phrase.accent {
  color: var(--green);
  font-weight: 700;
  text-shadow: 0 0 15px var(--green-glow);
}

@keyframes phraseIn {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.ca {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  max-width: 100%;
}

.ca:hover {
  border-color: var(--green);
  box-shadow: 0 0 24px rgba(57, 255, 20, 0.2);
}

.ca-label {
  font-family: var(--font-space);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--green);
  padding: 4px 8px;
  border: 1px solid var(--line);
}

.ca-addr {
  font-family: var(--font-space);
  font-size: 0.78rem;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 280px;
}

.ca-copy {
  font-family: var(--font-space);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid var(--line);
  padding: 6px 12px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.ca-copy:hover { background: rgba(57, 255, 20, 0.18); }

/* Hero art */
.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 380px;
}

.charge-field {
  position: absolute;
  width: 110%;
  height: 110%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.15) 0%, transparent 65%);
  animation: chargePulse 3s ease-in-out infinite;
}

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

.horn-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(57, 255, 20, 0.25);
  animation: ringSpin linear infinite;
}

.ring-a { width: 90%; height: 90%; animation-duration: 20s; }
.ring-b { width: 105%; height: 105%; animation-duration: 28s; animation-direction: reverse; border-style: dashed; }
.ring-c { width: 120%; height: 120%; animation-duration: 36s; opacity: 0.5; }

@keyframes ringSpin {
  to { transform: rotate(360deg); }
}

.lightning-bolts {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bolt {
  position: absolute;
  width: 40px;
  height: 80px;
  fill: var(--green);
  filter: drop-shadow(0 0 8px var(--green));
  opacity: 0;
  animation: boltFlash 4s ease-in-out infinite;
}

.bolt.b1 { top: 5%; left: 10%; animation-delay: 0s; }
.bolt.b2 { top: 20%; right: 5%; animation-delay: 1.3s; transform: scaleX(-1); }
.bolt.b3 { bottom: 15%; left: 20%; animation-delay: 2.6s; width: 30px; height: 60px; }

@keyframes boltFlash {
  0%, 85%, 100% { opacity: 0; transform: scale(0.8); }
  88%, 92%       { opacity: 1; transform: scale(1); }
}

.hero-img {
  position: relative;
  z-index: 2;
  width: min(420px, 90%);
  border-radius: 12px;
  filter: drop-shadow(0 0 40px rgba(57, 255, 20, 0.35));
  animation: heroFloat 5s ease-in-out infinite;
  transition: transform 0.15s ease;
}

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

.float-sol {
  position: absolute;
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 10px rgba(57, 255, 20, 0.5));
  opacity: 0.7;
  animation: solDrift 8s ease-in-out infinite;
}

.float-sol path { fill: var(--green); }
.float-sol { filter: brightness(0) saturate(100%) invert(82%) sepia(52%) saturate(1200%) hue-rotate(58deg); }

.s1 { top: 10%; right: 8%; animation-delay: 0s; }
.s2 { bottom: 20%; right: 15%; width: 24px; height: 24px; animation-delay: 2s; }
.s3 { top: 30%; left: 5%; width: 28px; height: 28px; animation-delay: 4s; }

@keyframes solDrift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33%      { transform: translate(8px, -12px) rotate(10deg); }
  66%      { transform: translate(-6px, 8px) rotate(-8deg); }
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-family: var(--font-space);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--green), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   Marquee
   ============================================================ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(57, 255, 20, 0.03);
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  font-family: var(--font-space);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
}

.marquee-track .sep { color: var(--muted-2); }

@keyframes marqueeScroll {
  to { transform: translateX(-50%); }
}

/* ============================================================
   Sections shared
   ============================================================ */
.section {
  padding: clamp(72px, 10vw, 120px) clamp(18px, 4vw, 48px);
  max-width: calc(var(--maxw) + 96px);
  margin: 0 auto;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.kicker {
  font-family: var(--font-space);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.kicker.light { color: var(--green-hi); }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  background: var(--grad-metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 20px rgba(57, 255, 20, 0.3));
}

.section-lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ============================================================
   About
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
  margin-bottom: 56px;
}

.about-frame {
  position: relative;
  padding: 20px;
}

.frame-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(57, 255, 20, 0.2), transparent 70%);
  animation: chargePulse 4s ease-in-out infinite;
}

.about-img {
  position: relative;
  z-index: 1;
  border-radius: 8px;
  box-shadow: 0 0 60px rgba(57, 255, 20, 0.2);
}

.frame-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--green);
  border-style: solid;
  z-index: 2;
}

.frame-corner.tl { top: 0; left: 0; border-width: 2px 0 0 2px; }
.frame-corner.tr { top: 0; right: 0; border-width: 2px 2px 0 0; }
.frame-corner.bl { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.frame-corner.br { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

.story-card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: clamp(24px, 4vw, 36px);
  margin-bottom: 24px;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  box-shadow: inset 0 0 40px rgba(57, 255, 20, 0.04);
}

.story-card h3 {
  font-size: 1.4rem;
  color: var(--green-hi);
  margin-bottom: 16px;
}

.story-card p {
  color: var(--muted);
  margin-bottom: 14px;
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.story-tags span {
  font-family: var(--font-space);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--line);
  color: var(--green);
  background: rgba(57, 255, 20, 0.06);
}

.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feat {
  background: var(--card-2);
  border: 1px solid var(--line);
  padding: 22px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.feat:hover {
  border-color: rgba(57, 255, 20, 0.4);
  box-shadow: 0 0 30px rgba(57, 255, 20, 0.12);
  transform: translateY(-4px);
}

.feat-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
}

.feat-icon .ico {
  width: 28px;
  height: 28px;
  filter: brightness(0) saturate(100%) invert(82%) sepia(52%) saturate(1200%) hue-rotate(58deg);
}

.feat-icon.bolt-icon,
.feat-icon.horn-icon,
.feat-icon.moon-icon {
  position: relative;
}

.feat-icon.bolt-icon::before {
  content: '';
  display: block;
  width: 14px;
  height: 24px;
  background: var(--green);
  clip-path: polygon(50% 0, 30% 45%, 55% 45%, 35% 100%, 70% 42%, 48% 42%);
  filter: drop-shadow(0 0 8px var(--green-glow));
}

.feat-icon.horn-icon::before,
.feat-icon.horn-icon::after {
  content: '';
  position: absolute;
  bottom: 4px;
  width: 8px;
  height: 22px;
  background: var(--green);
  border-radius: 50% 50% 0 0;
  filter: drop-shadow(0 0 6px var(--green-glow));
}

.feat-icon.horn-icon::before {
  left: 8px;
  transform: rotate(-25deg);
}

.feat-icon.horn-icon::after {
  right: 8px;
  transform: rotate(25deg);
}

.feat-icon.moon-icon::before {
  content: '';
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  box-shadow: 8px -4px 0 0 var(--green);
  filter: drop-shadow(0 0 8px var(--green-glow));
}

.feat h4 {
  font-family: var(--font-space);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}

.feat p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
  padding: clamp(24px, 4vw, 36px);
  clip-path: polygon(16px 0, 100% 0, calc(100% - 16px) 100%, 0 100%);
}

.stat { text-align: center; }

.stat-num {
  font-family: var(--font-space);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--green);
  text-shadow: 0 0 20px var(--green-glow);
  margin-bottom: 6px;
}

.stat-label {
  font-family: var(--font-space);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   How to Buy
   ============================================================ */
.howtobuy { position: relative; }

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

.step {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 28px 22px;
  overflow: hidden;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.step:hover {
  transform: translateY(-6px);
  border-color: rgba(57, 255, 20, 0.35);
}

.step-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.08), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.step:hover .step-glow { opacity: 1; }

.step-no {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: rgba(57, 255, 20, 0.25);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.step h4 {
  font-family: var(--font-space);
  font-size: 0.88rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-hi);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.step p {
  font-size: 0.92rem;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.step strong { color: var(--text); }

.htb-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ============================================================
   Chart
   ============================================================ */
.chart-frame {
  border: 1px solid var(--line);
  background: var(--card);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(57, 255, 20, 0.08);
  clip-path: polygon(16px 0, 100% 0, calc(100% - 16px) 100%, 0 100%);
}

.chart-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(57, 255, 20, 0.04);
}

.chart-pair {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-space);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
}

.chart-pair .ico {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.chart-open {
  font-family: var(--font-space);
  font-size: 0.78rem;
  letter-spacing: 1px;
  color: var(--muted);
  transition: color 0.25s ease;
}

.chart-open:hover { color: var(--green); }

.chart-embed {
  position: relative;
  width: 100%;
  padding-bottom: 62%;
  background: #0a0f0a;
}

.chart-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   Join Us
   ============================================================ */
.joinus { padding-bottom: clamp(48px, 8vw, 80px); }

.join-banner {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 0 80px rgba(57, 255, 20, 0.15);
}

.join-banner img {
  width: 100%;
  height: auto;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.join-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 8, 4, 0.92) 0%, rgba(2, 8, 4, 0.6) 45%, transparent 100%);
  display: flex;
  align-items: center;
  padding: clamp(32px, 6vw, 64px);
}

.join-content { max-width: 520px; }

.join-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  background: var(--grad-metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 20px rgba(57, 255, 20, 0.4));
}

.join-content p {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 1.02rem;
}

.join-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  font-family: var(--font-space);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.social .ico {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.social:hover {
  border-color: var(--green);
  box-shadow: 0 0 24px rgba(57, 255, 20, 0.25);
  transform: translateY(-3px);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  padding: 40px clamp(18px, 4vw, 48px);
  background: rgba(0, 0, 0, 0.4);
}

.footer-top {
  max-width: var(--maxw);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.footer-brand span {
  font-family: var(--font-space);
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--green);
}

.footer-socials { display: flex; gap: 12px; }

.footer-socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
}

.footer-socials a:hover {
  border-color: var(--green);
  box-shadow: 0 0 16px rgba(57, 255, 20, 0.3);
}

.footer-socials .ico {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.footer-disc,
.footer-copy {
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted-2);
}

.footer-disc { margin-bottom: 12px; line-height: 1.6; }

.footer-copy {
  font-family: var(--font-space);
  font-size: 0.75rem;
  letter-spacing: 1px;
}

/* ============================================================
   Toast
   ============================================================ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  padding: 14px 28px;
  background: rgba(8, 24, 10, 0.95);
  border: 1px solid var(--green);
  color: var(--green);
  font-family: var(--font-space);
  font-size: 0.82rem;
  letter-spacing: 1px;
  z-index: 200;
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  box-shadow: 0 0 30px rgba(57, 255, 20, 0.3);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

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

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-art { order: -1; min-height: 300px; }
  .hero-cta, .ca { justify-content: center; }
  .ca { margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 400px; margin: 0 auto; }
  .steps { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    background: rgba(2, 8, 4, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 24px;
    border-left: 1px solid var(--line);
    transition: right 0.35s ease;
  }

  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; }
  .nav-buy { display: none; }
  .feat-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .join-overlay { background: linear-gradient(0deg, rgba(2, 8, 4, 0.95) 0%, rgba(2, 8, 4, 0.7) 100%); align-items: flex-end; }
}

@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
}

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

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