/* WISHBONE — Forest Outlaw theme */
:root {
  --bg-deep: #040806;
  --bg-forest: #0a1610;
  --bg-panel: rgba(8, 22, 14, 0.82);
  --green-neon: #2dff7a;
  --green-glow: #1db954;
  --green-dark: #14532d;
  --gold: #d4a853;
  --gold-bright: #f0c96e;
  --gold-dim: #8b6914;
  --cream: #e8e0d0;
  --muted: #7a8f7e;
  --chain: #5a5a5a;
  --font-display: "Cinzel", serif;
  --font-body: "DM Sans", sans-serif;
  --nav-h: 72px;
  --radius: 14px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ---- Background stage ---- */
.bg-stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

#fxCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bg-mist {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(29, 185, 84, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(212, 168, 83, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 40% 50% at 85% 20%, rgba(45, 255, 122, 0.05) 0%, transparent 45%);
  animation: mistDrift 18s ease-in-out infinite alternate;
}

.bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(4, 8, 6, 0.85) 100%);
}

.bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  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");
}

.bg-candles {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  opacity: 0.07;
  overflow: hidden;
}

.candle-line {
  position: absolute;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to top, var(--green-neon), transparent);
  border-radius: 2px 2px 0 0;
  animation: candleRise 4s ease-in-out infinite alternate;
}

.bg-chains {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(212, 168, 83, 0.3) 40px,
      rgba(212, 168, 83, 0.3) 42px
    );
}

@keyframes mistDrift {
  from { transform: scale(1) translateY(0); }
  to { transform: scale(1.05) translateY(-2%); }
}

@keyframes candleRise {
  from { transform: scaleY(0.6); opacity: 0.5; }
  to { transform: scaleY(1); opacity: 1; }
}

/* ---- Ticker ---- */
.ticker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 32px;
  background: linear-gradient(90deg, var(--bg-forest), #0f2018, var(--bg-forest));
  border-bottom: 1px solid rgba(45, 255, 122, 0.15);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: tickerScroll 28s linear infinite;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-neon);
}

.ticker-track span::after {
  content: " / ";
  color: var(--gold-dim);
  margin-left: 3rem;
}

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

/* ---- Nav ---- */
.nav {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 150;
  height: var(--nav-h);
  transition: background 0.4s var(--ease-out), box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(4, 8, 6, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(45, 255, 122, 0.1);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(45, 255, 122, 0.4));
  transition: transform 0.3s var(--ease-out);
}

.nav-brand:hover .nav-logo { transform: scale(1.08) rotate(-3deg); }

.nav-wordmark {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green-neon);
  transition: width 0.3s var(--ease-out);
}

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

.nav-pill {
  padding: 0.5rem 1.25rem !important;
  border: 1px solid rgba(212, 168, 83, 0.5) !important;
  border-radius: 999px;
  color: var(--gold-bright) !important;
  background: rgba(212, 168, 83, 0.08);
}

.nav-pill::after { display: none !important; }
.nav-pill:hover {
  background: rgba(212, 168, 83, 0.18);
  box-shadow: 0 0 20px rgba(212, 168, 83, 0.2);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Layout ---- */
main { position: relative; z-index: 1; }
section { padding: 6rem 1.5rem; }
.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green-neon);
  margin-bottom: 1rem;
}

.section-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--green-neon);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  background: linear-gradient(180deg, var(--cream) 20%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
}

.chain-divider {
  height: 2px;
  margin: 0 auto 4rem;
  max-width: 600px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), var(--green-neon), var(--gold-dim), transparent);
  position: relative;
}

.chain-divider::before,
.chain-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--bg-deep);
}

.chain-divider::before { left: 20%; }
.chain-divider::after { right: 20%; }

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  padding-top: calc(32px + var(--nav-h) + 2rem);
  display: flex;
  align-items: center;
  position: relative;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

.hero-ring {
  position: absolute;
  width: min(420px, 90vw);
  height: min(420px, 90vw);
  border-radius: 50%;
  border: 1px solid rgba(45, 255, 122, 0.15);
  animation: ringPulse 4s ease-in-out infinite;
}

.hero-ring:nth-child(2) {
  width: min(360px, 78vw);
  height: min(360px, 78vw);
  border-color: rgba(212, 168, 83, 0.2);
  animation-delay: -1.5s;
  animation-direction: reverse;
}

.hero-ring:nth-child(3) {
  width: min(300px, 66vw);
  height: min(300px, 66vw);
  border-style: dashed;
  animation-duration: 8s;
}

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

.hero-logo-wrap {
  position: relative;
  z-index: 2;
  animation: heroFloat 5s ease-in-out infinite;
}

.hero-logo {
  width: min(280px, 70vw);
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 40px rgba(45, 255, 122, 0.25));
}

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

.hero-arrow {
  position: absolute;
  width: 40px;
  height: 40px;
  color: var(--gold);
  opacity: 0.5;
  animation: arrowSpin 12s linear infinite;
}

.hero-arrow.a1 { top: 10%; right: 5%; animation-duration: 10s; }
.hero-arrow.a2 { bottom: 15%; left: 0; animation-duration: 14s; animation-direction: reverse; }

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

.hero-copy { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-neon);
  margin-bottom: 1.25rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(45, 255, 122, 0.25);
  border-radius: 999px;
  background: rgba(45, 255, 122, 0.06);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-neon);
  box-shadow: 0 0 10px var(--green-neon);
  animation: liveBlink 2s ease-in-out infinite;
}

@keyframes liveBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.hero-title .line-gold {
  display: block;
  background: linear-gradient(180deg, #fff8e7 0%, var(--gold-bright) 40%, var(--gold-dim) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(212, 168, 83, 0.4));
  animation: titleShimmer 6s ease-in-out infinite;
}

.hero-title .line-green {
  display: block;
  color: var(--green-neon);
  text-shadow: 0 0 40px rgba(45, 255, 122, 0.5), 0 0 80px rgba(45, 255, 122, 0.2);
}

@keyframes titleShimmer {
  0%, 100% { filter: drop-shadow(0 0 30px rgba(212, 168, 83, 0.4)); }
  50% { filter: drop-shadow(0 0 50px rgba(212, 168, 83, 0.7)); }
}

.hero-symbol {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 440px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease-out);
}

.btn-ico {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dim));
  color: var(--bg-deep);
  box-shadow: 0 4px 24px rgba(212, 168, 83, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 168, 83, 0.5);
}

.btn-outline {
  border: 1px solid rgba(45, 255, 122, 0.4);
  color: var(--green-neon);
  background: rgba(45, 255, 122, 0.06);
}

.btn-outline:hover {
  background: rgba(45, 255, 122, 0.14);
  box-shadow: 0 0 24px rgba(45, 255, 122, 0.2);
  transform: translateY(-2px);
}

.ca-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  background: var(--bg-panel);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  max-width: 520px;
}

.ca-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  padding: 0.2rem 0.5rem;
  border: 1px solid rgba(212, 168, 83, 0.4);
  border-radius: 4px;
}

.ca-addr {
  font-size: 0.78rem;
  color: var(--green-neon);
  word-break: break-all;
  flex: 1;
  min-width: 0;
}

.ca-copy {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(212, 168, 83, 0.35);
  border-radius: 6px;
  transition: all 0.25s;
}

.ca-copy:hover { background: rgba(212, 168, 83, 0.15); }
.ca-copy.copied { color: var(--green-neon); border-color: var(--green-neon); }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--green-neon), transparent);
}

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

/* ---- About ---- */
.about { position: relative; }

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.about-card {
  padding: 2rem 1.5rem;
  background: var(--bg-panel);
  border: 1px solid rgba(45, 255, 122, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-neon), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.about-card:hover {
  transform: translateY(-6px);
  border-color: rgba(45, 255, 122, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(45, 255, 122, 0.08);
}

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

.about-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  color: var(--cream);
}

.about-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.stat-box {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: var(--radius);
  background: rgba(212, 168, 83, 0.04);
}

.stat-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-bright);
  display: block;
}

.stat-key {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* ---- How to Buy ---- */
.howtobuy { background: rgba(10, 22, 16, 0.5); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  counter-reset: step;
}

.step-card {
  counter-increment: step;
  padding: 2rem 1.25rem;
  background: var(--bg-panel);
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: var(--radius);
  position: relative;
  transition: all 0.35s var(--ease-out);
}

.step-card::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(212, 168, 83, 0.15);
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  line-height: 1;
}

.step-card:hover {
  border-color: rgba(212, 168, 83, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  color: var(--gold-bright);
}

.step-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

.buy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
}

.buy-link-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--bg-panel);
  border: 1px solid rgba(45, 255, 122, 0.15);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease-out);
  min-width: 200px;
}

.buy-link-card img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.buy-link-card span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.buy-link-card:hover {
  border-color: var(--green-neon);
  box-shadow: 0 0 24px rgba(45, 255, 122, 0.15);
  transform: scale(1.03);
}

/* ---- Chart ---- */
.chart-wrap {
  margin-top: 2.5rem;
  border: 1px solid rgba(45, 255, 122, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-panel);
  box-shadow: 0 0 60px rgba(45, 255, 122, 0.06);
  position: relative;
}

.chart-wrap iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: none;
}

.chart-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(4, 8, 6, 0.9);
  gap: 1rem;
  text-align: center;
  padding: 2rem;
}

.chart-overlay.hidden { display: none; }

.chart-overlay p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---- Join Us ---- */
.joinus {
  position: relative;
  padding-bottom: 4rem;
}

.joinus-banner-wrap {
  position: relative;
  margin-top: 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(212, 168, 83, 0.3);
  box-shadow:
    0 0 0 1px rgba(45, 255, 122, 0.1),
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(45, 255, 122, 0.08);
}

.joinus-banner-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(4, 8, 6, 0.85) 100%);
  z-index: 1;
  pointer-events: none;
}

.joinus-banner {
  width: 100%;
  display: block;
  animation: bannerReveal 1.2s var(--ease-out) both;
}

@keyframes bannerReveal {
  from { transform: scale(1.08); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.joinus-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.joinus-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.joinus-text p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 400px;
}

.social-grid {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem;
  background: rgba(4, 8, 6, 0.8);
  border: 1px solid rgba(45, 255, 122, 0.25);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  transition: all 0.3s var(--ease-out);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.social-btn:hover {
  border-color: var(--green-neon);
  background: rgba(45, 255, 122, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(45, 255, 122, 0.15);
}

/* ---- Footer ---- */
.footer {
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(45, 255, 122, 0.1);
  text-align: center;
}

.footer p {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.footer strong {
  color: var(--gold);
  font-family: var(--font-display);
}

/* ---- Reveal animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--green-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-neon); }

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { order: -1; }
  .hero-tagline, .ca-row { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nav-links {
    position: fixed;
    top: calc(32px + var(--nav-h));
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 8, 6, 0.97);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease-out);
  }

  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1rem; }
  .nav-burger { display: flex; }

  .steps { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .joinus-content { flex-direction: column; align-items: flex-start; }
  .chart-wrap iframe { height: 400px; }
}
