:root {
  --green: #00c805;
  --green-bright: #39ff14;
  --green-deep: #00a004;
  --yellow: #ffe600;
  --yellow-soft: #fff3a0;
  --ink: #05140a;
  --ink-2: #0a1f10;
  --text: #f4fff6;
  --muted: #9bb8a3;
  --line: rgba(0, 200, 5, 0.22);
  --glow: 0 0 40px rgba(0, 200, 5, 0.45);
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --radius: 16px;
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(0, 200, 5, 0.2), transparent 55%),
    radial-gradient(900px 500px at 100% 15%, rgba(255, 230, 0, 0.12), transparent 50%),
    linear-gradient(180deg, #031008 0%, var(--ink) 40%, #020a06 100%);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.55;
}

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

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

strong {
  color: var(--yellow);
  font-weight: 700;
}

em {
  font-style: normal;
  color: var(--green-bright);
}

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

.aurora {
  position: fixed;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(0, 200, 5, 0.24), transparent 60%),
    radial-gradient(ellipse 45% 35% at 80% 20%, rgba(255, 230, 0, 0.16), transparent 55%),
    radial-gradient(ellipse 40% 50% at 50% 80%, rgba(57, 255, 20, 0.1), transparent 50%);
  animation: aurora-drift 18s ease-in-out infinite alternate;
  filter: blur(40px);
}

@keyframes aurora-drift {
  0% { transform: translate(0, 0) rotate(0deg) scale(1); }
  50% { transform: translate(3%, -2%) rotate(2deg) scale(1.05); }
  100% { transform: translate(-2%, 3%) rotate(-1deg) scale(1.02); }
}

.grid-fx {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 200, 5, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 5, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 75%);
  animation: grid-pulse 8s ease-in-out infinite;
}

@keyframes grid-pulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.7; }
}

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

.cursor-glow {
  position: fixed;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(0, 200, 5, 0.18) 0%, rgba(255, 230, 0, 0.08) 35%, transparent 70%);
  transform: translate(-50%, -50%);
  left: -9999px;
  top: -9999px;
  transition: opacity 0.3s ease;
  opacity: 0;
}

body.is-pointer .cursor-glow {
  opacity: 1;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 60;
  background: linear-gradient(90deg, var(--green), var(--yellow), var(--green-bright));
  box-shadow: 0 0 16px rgba(0, 200, 5, 0.7);
  pointer-events: none;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  z-index: 40;
  background: rgba(3, 16, 8, 0.55);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(3, 16, 8, 0.88);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  z-index: 2;
}

.nav-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(0, 200, 5, 0.55), var(--glow);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
}

.nav-brand:hover .nav-logo {
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 0 0 2px var(--yellow), 0 0 28px rgba(255, 230, 0, 0.5);
}

.nav-name {
  background: linear-gradient(120deg, #fff 30%, var(--green-bright) 60%, var(--yellow) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
  margin-right: 1rem;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  position: relative;
  transition: color 0.25s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 2;
  margin-left: auto;
}

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

body.menu-open .nav-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

body.menu-open .nav-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s, background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-bright) 50%, var(--yellow) 140%);
  background-size: 160% 160%;
  color: #041208;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), var(--glow);
  animation: btn-shift 5s ease infinite;
}

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

.btn-primary:hover {
  box-shadow: 0 0 0 1px rgba(255, 230, 0, 0.4), 0 0 36px rgba(255, 230, 0, 0.45);
  filter: brightness(1.05);
}

.btn-ghost {
  background: rgba(0, 200, 5, 0.08);
  color: var(--text);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--yellow);
  background: rgba(255, 230, 0, 0.08);
  color: var(--yellow);
}

.btn-lg {
  padding: 0.95rem 1.6rem;
  font-size: 1rem;
}

.pulse-ring::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid rgba(0, 200, 5, 0.55);
  animation: ring-pulse 2.2s ease-out infinite;
  pointer-events: none;
}

@keyframes ring-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.18); opacity: 0; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  z-index: 2;
}

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

.hero-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  will-change: transform;
  filter: saturate(1.05) contrast(1.05);
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 16, 8, 0.55) 0%, rgba(5, 20, 10, 0.72) 45%, rgba(2, 10, 6, 0.92) 100%),
    radial-gradient(ellipse 60% 50% at 50% 40%, transparent 20%, rgba(3, 16, 8, 0.55) 100%);
}

.hero-scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 200, 5, 0.03) 2px,
    rgba(0, 200, 5, 0.03) 4px
  );
  pointer-events: none;
  mix-blend-mode: overlay;
  animation: scan-move 8s linear infinite;
}

@keyframes scan-move {
  0% { background-position: 0 0; }
  100% { background-position: 0 100px; }
}

.hero-rings {
  position: absolute;
  left: 50%;
  top: 42%;
  width: min(70vw, 520px);
  height: min(70vw, 520px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-rings span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(0, 200, 5, 0.25);
  animation: ring-expand 6s ease-out infinite;
}

.hero-rings span:nth-child(2) {
  animation-delay: 2s;
  border-color: rgba(255, 230, 0, 0.2);
}

.hero-rings span:nth-child(3) {
  animation-delay: 4s;
}

@keyframes ring-expand {
  0% { transform: scale(0.4); opacity: 0.7; }
  100% { transform: scale(1.35); opacity: 0; }
}

.hero-orbs i {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  pointer-events: none;
  animation: orb-float 10s ease-in-out infinite;
}

.hero-orbs i:nth-child(1) {
  width: 180px;
  height: 180px;
  left: 8%;
  top: 25%;
  background: rgba(0, 200, 5, 0.35);
}

.hero-orbs i:nth-child(2) {
  width: 140px;
  height: 140px;
  right: 12%;
  top: 35%;
  background: rgba(255, 230, 0, 0.28);
  animation-delay: -3s;
}

.hero-orbs i:nth-child(3) {
  width: 100px;
  height: 100px;
  left: 40%;
  bottom: 18%;
  background: rgba(57, 255, 20, 0.25);
  animation-delay: -6s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -30px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: calc(var(--nav-h) + 2rem) 1.25rem 4rem;
  max-width: 820px;
}

.hero-logo {
  width: 104px;
  height: 104px;
  margin: 0 auto 1.25rem;
  border-radius: 28px;
  object-fit: cover;
  background: #fff;
  box-shadow:
    0 0 0 3px rgba(0, 200, 5, 0.55),
    0 0 40px rgba(0, 200, 5, 0.45),
    0 20px 50px rgba(0, 0, 0, 0.4);
}

.float-slow {
  animation: float-y 5s ease-in-out infinite;
}

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 0.75rem;
  text-shadow: 0 0 24px rgba(0, 200, 5, 0.5);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 8vw, 4.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  background: linear-gradient(180deg, #fff 20%, var(--yellow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.45));
}

.hero-sub {
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 1.75rem;
}

.ticker-chip {
  display: inline-block;
  padding: 0.15em 0.55em;
  border-radius: 999px;
  background: rgba(255, 230, 0, 0.12);
  border: 1px solid rgba(255, 230, 0, 0.35);
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.92em;
  animation: chip-glow 2.5s ease-in-out infinite;
}

@keyframes chip-glow {
  0%, 100% { box-shadow: 0 0 0 rgba(255, 230, 0, 0); }
  50% { box-shadow: 0 0 18px rgba(255, 230, 0, 0.35); }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.scroll-hint {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-hint span {
  display: block;
  width: 22px;
  height: 36px;
  border: 2px solid rgba(0, 200, 5, 0.45);
  border-radius: 12px;
  position: relative;
}

.scroll-hint span::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--yellow);
  animation: scroll-dot 1.6s ease-in-out infinite;
}

@keyframes scroll-dot {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* Marquee */
.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(0, 200, 5, 0.12), rgba(255, 230, 0, 0.08), rgba(0, 200, 5, 0.12));
  padding: 0.85rem 0;
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-bright);
}

.marquee-track span:nth-child(odd) {
  color: var(--yellow);
}

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

/* Sections */
.section {
  position: relative;
  z-index: 2;
  padding: clamp(4.5rem, 10vw, 7rem) 0;
}

.section-inner {
  width: min(960px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat {
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(0, 200, 5, 0.1), rgba(255, 230, 0, 0.04));
  border: 1px solid var(--line);
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s, box-shadow 0.35s;
  transform-style: preserve-3d;
}

.stat:hover {
  border-color: rgba(255, 230, 0, 0.4);
  box-shadow: 0 16px 40px rgba(0, 200, 5, 0.15);
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  color: var(--yellow);
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

/* How to buy */
.how {
  background:
    radial-gradient(700px 300px at 80% 20%, rgba(255, 230, 0, 0.06), transparent 60%),
    rgba(0, 0, 0, 0.15);
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  counter-reset: none;
}

.step {
  padding: 1.75rem 1.4rem;
  border-radius: var(--radius);
  background: rgba(5, 20, 10, 0.65);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 200, 5, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
}

.step:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 200, 5, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), 0 0 30px rgba(0, 200, 5, 0.12);
}

.step:hover::before {
  opacity: 1;
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  background: linear-gradient(135deg, var(--green), var(--yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.75rem;
  position: relative;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.step p {
  color: var(--muted);
  font-size: 0.95rem;
  position: relative;
}

.buy-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(0, 200, 5, 0.14), rgba(255, 230, 0, 0.08));
  border: 1px solid rgba(0, 200, 5, 0.35);
  box-shadow: 0 0 40px rgba(0, 200, 5, 0.12);
  animation: panel-breathe 4s ease-in-out infinite;
}

@keyframes panel-breathe {
  0%, 100% { box-shadow: 0 0 30px rgba(0, 200, 5, 0.1); }
  50% { box-shadow: 0 0 50px rgba(255, 230, 0, 0.18); }
}

.buy-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.buy-ca {
  font-family: ui-monospace, monospace;
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  color: var(--yellow);
  word-break: break-all;
}

.buy-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Join */
.join {
  overflow: hidden;
}

.join-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(0, 200, 5, 0.18), transparent 65%),
    radial-gradient(ellipse 30% 40% at 20% 80%, rgba(255, 230, 0, 0.1), transparent 50%);
  animation: join-pulse 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes join-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.join-inner {
  position: relative;
  text-align: center;
}

.join-inner .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.join-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.social-card {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(5, 20, 10, 0.7);
  border: 1px solid var(--line);
  min-width: min(100%, 360px);
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s, background 0.35s;
  text-align: left;
}

.social-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--yellow);
  box-shadow: 0 20px 50px rgba(255, 230, 0, 0.15);
  background: rgba(0, 200, 5, 0.12);
}

.social-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green), var(--yellow));
  color: #041208;
  flex-shrink: 0;
}

.social-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}

.social-text strong {
  color: var(--text);
  font-size: 1.05rem;
}

.social-text span {
  color: var(--muted);
  font-size: 0.9rem;
}

.social-arrow {
  font-size: 1.4rem;
  color: var(--green-bright);
  transition: transform 0.3s;
}

.social-card:hover .social-arrow {
  transform: translateX(6px);
}

/* Footer */
.footer {
  position: relative;
  z-index: 2;
  padding: 3rem 0 2.5rem;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.25);
}

.footer-inner {
  width: min(960px, calc(100% - 2.5rem));
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(0, 200, 5, 0.45);
}

.footer-desc {
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-note {
  font-size: 0.8rem;
  color: rgba(155, 184, 163, 0.7);
  word-break: break-all;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--d, 0) * 0.1s + var(--i, 0) * 0.12s);
}

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

/* Toast */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  background: var(--ink-2);
  border: 1px solid var(--green);
  color: var(--green-bright);
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 70;
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s;
  box-shadow: var(--glow);
  pointer-events: none;
}

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

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

/* Responsive */
@media (max-width: 840px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(3, 16, 8, 0.96);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }

  body.menu-open .nav-links {
    opacity: 1;
    visibility: visible;
  }

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

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .stat-row,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn-ghost {
    font-size: 0.78rem;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@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;
  }
}
