/* ============================================================
   HOODiers - neon lime / soviet-poster meme theme
   ============================================================ */

:root {
  --lime: #cdf000;
  --lime-soft: #dff566;
  --lime-dark: #9db800;
  --ink: #0b0d06;
  --ink-2: #12150a;
  --ink-3: #1a1e0e;
  --paper: #f4f7e8;
  --muted: #a3ab8a;
  --border: rgba(205, 240, 0, 0.16);
  --font-display: "Unbounded", sans-serif;
  --font-body: "Space Grotesk", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

::selection { background: var(--lime); color: var(--ink); }

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

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

/* ---------- background layers ---------- */
.bg-grid {
  position: fixed; inset: 0; z-index: -3; pointer-events: none;
  background-image:
    linear-gradient(rgba(205, 240, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(205, 240, 0, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  animation: gridDrift 24s linear infinite;
}
@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 56px 56px, 56px 56px; }
}

.bg-vignette {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, rgba(205, 240, 0, 0.12), transparent 60%),
    radial-gradient(ellipse 60% 45% at 85% 110%, rgba(205, 240, 0, 0.07), transparent 60%),
    radial-gradient(ellipse 120% 90% at 50% 50%, transparent 55%, rgba(0, 0, 0, 0.55) 100%);
}

#feathers {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  width: 100%; height: 100%;
}

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.3, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.05s; }
.d2 { transition-delay: 0.15s; }
.d3 { transition-delay: 0.25s; }
.d4 { transition-delay: 0.35s; }
.d5 { transition-delay: 0.45s; }
.d6 { transition-delay: 0.55s; }
.d7 { transition-delay: 0.65s; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600;
  border: 2px solid transparent; cursor: pointer;
  border-radius: 14px; letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  position: relative; overflow: hidden;
}
.btn::after {
  content: ""; position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.btn:hover::after { left: 160%; }
.btn-sm { padding: 10px 18px; font-size: 0.72rem; }
.btn-lg { padding: 16px 28px; font-size: 0.9rem; }
.btn-ic { width: 20px; height: 20px; object-fit: contain; }

.btn-lime {
  background: var(--lime); color: var(--ink);
  box-shadow: 0 0 0 rgba(205, 240, 0, 0);
}
.btn-lime:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(205, 240, 0, 0.35);
}
.btn-lime .btn-ic { filter: invert(1) brightness(0.1); }

.btn-ghost {
  background: transparent; color: var(--paper);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--lime); color: var(--lime);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(205, 240, 0, 0.15);
}

.btn-dark {
  background: var(--ink); color: var(--lime);
}
.btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.btn-outline-dark {
  background: rgba(11, 13, 6, 0.14); color: var(--ink);
  border-color: rgba(11, 13, 6, 0.55);
}
.btn-outline-dark:hover {
  background: var(--ink); color: var(--lime);
  transform: translateY(-3px);
}
.btn-outline-dark .btn-ic { filter: invert(1) brightness(0.1); }
.btn-outline-dark:hover .btn-ic { filter: none; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(11, 13, 6, 0.72);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5); }
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 28px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  width: 44px; height: 44px; border-radius: 12px;
  border: 2px solid var(--lime);
  box-shadow: 0 0 18px rgba(205, 240, 0, 0.35);
  transition: transform 0.4s ease;
}
.brand:hover .brand-logo { transform: rotate(-8deg) scale(1.06); }
.brand-name {
  font-family: var(--font-display); font-weight: 800; font-size: 1.15rem;
  letter-spacing: 0.02em;
}
.brand-name span { color: var(--lime); }

.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a {
  font-weight: 600; font-size: 0.92rem; color: var(--muted);
  position: relative; transition: color 0.25s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--lime);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--paper); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.icon-btn {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid var(--border); border-radius: 12px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.icon-btn img { width: 18px; height: 18px; }
.icon-btn:hover {
  border-color: var(--lime); transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(205, 240, 0, 0.2);
}

.burger { display: none; background: none; border: none; cursor: pointer; }
.burger span {
  display: block; width: 24px; height: 2px; background: var(--lime);
  margin: 5px 0; transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 24px 0; overflow: hidden;
}
.hero-line {
  position: absolute; inset: auto 0 0 0; width: 100%; height: 70%;
  opacity: 0.8; pointer-events: none;
}
.stock-path {
  stroke-dasharray: 3200; stroke-dashoffset: 3200;
  animation: drawLine 4s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
  filter: drop-shadow(0 0 8px rgba(205, 240, 0, 0.6));
}
@keyframes drawLine { to { stroke-dashoffset: 0; } }
.stock-fill { opacity: 0; animation: fadeFill 2s ease 2.2s forwards; }
@keyframes fadeFill { to { opacity: 1; } }

.hero-inner {
  max-width: 1240px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 48px; align-items: center; flex: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--lime);
  border: 1px solid var(--border); border-radius: 999px;
  padding: 8px 18px; margin-bottom: 26px;
  background: rgba(205, 240, 0, 0.05);
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--lime);
  animation: pulse 1.6s ease infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(205, 240, 0, 0.55); }
  50% { box-shadow: 0 0 0 9px rgba(205, 240, 0, 0); }
}

.hero-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.9rem, 4.4vw, 3.6rem);
  line-height: 1.12; text-transform: uppercase; letter-spacing: 0.01em;
}
.hero-title .line { display: block; }
.hero-title .glitch { color: var(--lime); position: relative; }

.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute; inset: 0; overflow: hidden;
  clip-path: inset(0 0 0 0);
  opacity: 0;
}
.glitch::before {
  color: #ff3b6b; z-index: -1;
  animation: glitchA 3.2s steps(2, end) infinite;
}
.glitch::after {
  color: #33e0ff; z-index: -2;
  animation: glitchB 3.2s steps(2, end) infinite;
}
@keyframes glitchA {
  0%, 91%, 100% { opacity: 0; transform: none; }
  92% { opacity: 0.8; transform: translate(-4px, 2px); clip-path: inset(10% 0 55% 0); }
  94% { opacity: 0.8; transform: translate(3px, -2px); clip-path: inset(60% 0 8% 0); }
  96% { opacity: 0; }
}
@keyframes glitchB {
  0%, 91%, 100% { opacity: 0; transform: none; }
  93% { opacity: 0.8; transform: translate(4px, 1px); clip-path: inset(35% 0 30% 0); }
  95% { opacity: 0.8; transform: translate(-3px, -1px); clip-path: inset(70% 0 5% 0); }
  97% { opacity: 0; }
}

.hero-sub {
  margin-top: 24px; max-width: 520px;
  color: var(--muted); font-size: 1.06rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }

.contract {
  margin-top: 30px; display: inline-flex; align-items: center; gap: 14px;
  border: 1px dashed var(--border); border-radius: 14px;
  padding: 12px 16px; background: rgba(205, 240, 0, 0.04);
  max-width: 100%;
}
.contract-label {
  font-family: var(--font-display); font-weight: 800; font-size: 0.75rem;
  color: var(--ink); background: var(--lime); border-radius: 8px; padding: 4px 10px;
}
.contract code {
  font-family: var(--font-mono); font-size: 0.85rem; color: var(--lime-soft);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.copy-btn {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em;
  background: none; border: 1px solid var(--border); color: var(--muted);
  border-radius: 8px; padding: 6px 12px; cursor: pointer;
  transition: all 0.25s ease;
}
.copy-btn:hover { border-color: var(--lime); color: var(--lime); }
.copy-btn.copied { background: var(--lime); color: var(--ink); border-color: var(--lime); }

/* hero visual */
.hero-visual {
  position: relative; display: grid; place-items: center;
  min-height: 420px;
}
.hero-logo {
  width: min(400px, 82%); border-radius: 28px;
  border: 3px solid rgba(205, 240, 0, 0.45);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(205, 240, 0, 0.18);
  animation: floaty 6s ease-in-out infinite;
  position: relative; z-index: 2;
  transition: transform 0.2s ease-out;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-18px) rotate(1deg); }
}
.logo-glow {
  position: absolute; width: 70%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(205, 240, 0, 0.28), transparent 65%);
  filter: blur(30px); z-index: 1;
  animation: glowPulse 5s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.12); }
}
.orbit {
  position: absolute; border: 1px dashed rgba(205, 240, 0, 0.25);
  border-radius: 50%; z-index: 0;
}
.orbit-1 { width: 115%; aspect-ratio: 1; animation: spin 30s linear infinite; }
.orbit-2 { width: 90%; aspect-ratio: 1; animation: spin 20s linear infinite reverse; }
.orbit::before {
  content: ""; position: absolute; top: -5px; left: 50%;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--lime); box-shadow: 0 0 14px var(--lime);
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-chip {
  position: absolute; z-index: 3;
  font-family: var(--font-mono); font-size: 0.78rem; font-weight: 600;
  background: rgba(11, 13, 6, 0.85); border: 1px solid var(--lime);
  color: var(--lime); border-radius: 999px; padding: 8px 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
}
.chip-1 { top: 8%; left: 2%; animation: chipFloat 5s ease-in-out infinite; }
.chip-2 { bottom: 16%; right: 0; animation: chipFloat 6s ease-in-out 0.8s infinite; }
.chip-3 { bottom: 2%; left: 12%; animation: chipFloat 7s ease-in-out 1.6s infinite; }
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ticker */
.ticker {
  margin-top: 60px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(205, 240, 0, 0.05); overflow: hidden;
  padding: 14px 0; position: relative; z-index: 4;
}
.ticker-track {
  display: flex; align-items: center; gap: 34px; width: max-content;
  animation: tick 28s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span {
  font-family: var(--font-display); font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.14em; color: var(--lime); white-space: nowrap;
  text-transform: uppercase;
}
.ticker-track i {
  width: 8px; height: 8px; background: var(--lime);
  transform: rotate(45deg); flex-shrink: 0; opacity: 0.6;
}
@keyframes tick { to { transform: translateX(-33.333%); } }

/* ---------- sections ---------- */
.section { padding: 110px 24px; position: relative; }
.section-inner { max-width: 1240px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 64px; }
.kicker {
  font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.22em;
  color: var(--lime); text-transform: uppercase;
}
.kicker.dark { color: rgba(11, 13, 6, 0.75); }
.section-head h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.2rem); text-transform: uppercase;
  margin-top: 14px;
}
.lime { color: var(--lime); text-shadow: 0 0 30px rgba(205, 240, 0, 0.4); }
.section-sub { color: var(--muted); margin-top: 12px; font-size: 1.05rem; }

/* ---------- about ---------- */
.about-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center;
}
.about-visual {
  position: relative; border-radius: 26px; overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-visual:hover { box-shadow: 0 34px 80px rgba(205, 240, 0, 0.14); }
.about-visual img { width: 100%; transition: transform 0.6s ease; }
.about-visual:hover img { transform: scale(1.045); }
.frame-lines {
  position: absolute; inset: 14px; z-index: 2; pointer-events: none;
  border: 1px solid rgba(205, 240, 0, 0.4); border-radius: 16px;
}
.frame-lines::before, .frame-lines::after {
  content: ""; position: absolute; width: 26px; height: 26px;
  border: 2px solid var(--lime);
}
.frame-lines::before { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.frame-lines::after { bottom: -2px; right: -2px; border-left: none; border-top: none; }
.stamp {
  position: absolute; bottom: 22px; right: 22px; z-index: 2;
  font-family: var(--font-display); font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.16em; color: var(--lime);
  border: 2px solid var(--lime); border-radius: 8px; padding: 7px 12px;
  transform: rotate(-6deg); background: rgba(11, 13, 6, 0.8);
}

.about-block { margin-bottom: 26px; padding-left: 22px; border-left: 2px solid var(--border); }
.about-block h3 {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 600;
  color: var(--lime); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.04em;
}
.about-block p { color: var(--muted); }
.about-block strong, .about-block em { color: var(--paper); }

.stat-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 36px;
}
.stat {
  text-align: center; border: 1px solid var(--border); border-radius: 16px;
  padding: 18px 8px; background: rgba(205, 240, 0, 0.04);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.stat:hover { transform: translateY(-5px); border-color: var(--lime); }
.stat-num {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: 1.7rem; color: var(--lime);
}
.stat-label {
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
}

/* ---------- how to buy ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step {
  position: relative; border: 1px solid var(--border); border-radius: 20px;
  padding: 30px 24px 40px; background: linear-gradient(160deg, var(--ink-2), var(--ink));
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.step:hover {
  transform: translateY(-8px); border-color: rgba(205, 240, 0, 0.5);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(205, 240, 0, 0.08);
}
.step-num {
  font-family: var(--font-display); font-weight: 900; font-size: 2.6rem;
  color: transparent; -webkit-text-stroke: 1.5px rgba(205, 240, 0, 0.5);
  margin-bottom: 16px; transition: color 0.3s ease;
}
.step:hover .step-num { color: rgba(205, 240, 0, 0.25); }
.step h3 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px;
}
.step p { color: var(--muted); font-size: 0.94rem; }
.step-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  font-family: var(--font-mono); font-size: 0.8rem; color: var(--lime);
  border-bottom: 1px dashed rgba(205, 240, 0, 0.4); padding-bottom: 2px;
  transition: opacity 0.25s ease;
}
.step-link:hover { opacity: 0.75; }
.step-link img { width: 18px; height: 18px; }
.step-bar {
  position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: linear-gradient(90deg, var(--lime), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s ease;
}
.step:hover .step-bar { transform: scaleX(1); }

/* ---------- chart ---------- */
.chart-frame {
  border: 1px solid var(--border); border-radius: 22px; overflow: hidden;
  background: var(--ink-2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}
.chart-topbar {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px; border-bottom: 1px solid var(--border);
  background: rgba(205, 240, 0, 0.04);
}
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }
.chart-title {
  margin-left: 12px; font-family: var(--font-mono); font-size: 0.78rem;
  letter-spacing: 0.14em; color: var(--muted);
}
.chart-open {
  margin-left: auto; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 0.76rem; color: var(--lime);
  border: 1px solid var(--border); border-radius: 10px; padding: 7px 14px;
  transition: all 0.25s ease;
}
.chart-open:hover { border-color: var(--lime); background: rgba(205, 240, 0, 0.08); }
.chart-open img { width: 15px; height: 15px; }
.chart-embed { position: relative; padding-bottom: 58%; }
.chart-embed iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}

/* ---------- join us ---------- */
.join-card {
  position: relative; border-radius: 28px; overflow: hidden;
  border: 2px solid rgba(205, 240, 0, 0.4);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 80px rgba(205, 240, 0, 0.12);
  min-height: 480px; display: flex; align-items: flex-end;
}
.join-banner {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.02);
  transition: transform 8s ease;
}
.join-card:hover .join-banner { transform: scale(1.1); }
.join-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(205, 240, 0, 0.25) 55%, rgba(205, 232, 40, 0.92) 100%);
}
.join-content {
  position: relative; z-index: 2; width: 100%;
  padding: 220px 48px 48px; color: var(--ink); text-align: center;
}
.join-content h2 {
  font-family: var(--font-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(2.2rem, 5vw, 3.6rem); margin-top: 10px;
  text-shadow: 0 2px 0 rgba(244, 247, 232, 0.35);
}
.join-content h2 span { -webkit-text-stroke: 2px var(--ink); color: transparent; }
.join-content p {
  font-weight: 600; font-size: 1.12rem; margin-top: 10px;
  color: rgba(11, 13, 6, 0.85);
}
.join-actions {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 30px;
}

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--border); background: var(--ink-2); }
.footer-inner {
  max-width: 1240px; margin: 0 auto; padding: 54px 24px 30px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 34px;
}
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img {
  width: 58px; height: 58px; border-radius: 14px;
  border: 2px solid var(--lime);
}
.footer-brand p { color: var(--muted); font-size: 0.85rem; margin-top: 2px; }
.footer-links { display: flex; gap: 22px; margin-left: auto; flex-wrap: wrap; }
.footer-links a {
  color: var(--muted); font-size: 0.92rem; font-weight: 600;
  transition: color 0.25s ease;
}
.footer-links a:hover { color: var(--lime); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid var(--border); border-radius: 12px;
  transition: all 0.25s ease;
}
.footer-social a img { width: 19px; height: 19px; object-fit: contain; }
.footer-social a:hover {
  border-color: var(--lime); transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(205, 240, 0, 0.18);
}
.footer-bottom {
  max-width: 1240px; margin: 0 auto; padding: 0 24px 40px;
  border-top: 1px solid rgba(205, 240, 0, 0.08); padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
  color: var(--muted); font-size: 0.8rem;
}
.footer-bottom p { max-width: 720px; }
.footer-bottom span { font-family: var(--font-mono); color: var(--lime-dark); }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; gap: 26px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-visual { min-height: 340px; order: -1; margin-top: 10px; }
  .hero-logo { width: min(300px, 70%); }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: block; margin-left: auto; }
  .nav-links.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: rgba(11, 13, 6, 0.97);
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open a { padding: 16px 24px; border-top: 1px solid rgba(205, 240, 0, 0.08); }
  .steps { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .join-content { padding: 160px 22px 32px; }
  .chart-embed { padding-bottom: 130%; }
  .contract code { max-width: 150px; }
  .chart-open span { display: none; }
}

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