:root {
  --green: #00c805;
  --green-bright: #39ff14;
  --green-deep: #00a004;
  --yellow: #ffe600;
  --yellow-soft: #fff3a0;
  --ink: #05140a;
  --text: #f4fff6;
  --muted: #9bb8a3;
  --line: rgba(0, 200, 5, 0.22);
  --glow: 0 0 40px rgba(0, 200, 5, 0.45);
  --font-display: "Orbitron", system-ui, sans-serif;
  --font-body: "Exo 2", system-ui, sans-serif;
  --radius: 14px;
  --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(1000px 500px at 80% 0%, rgba(255, 230, 0, 0.08), transparent 50%),
    linear-gradient(180deg, #020c06 0%, var(--ink) 45%, #010705 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.04;
  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.9' 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 wash */
.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.22), transparent 60%),
    radial-gradient(ellipse 45% 35% at 80% 20%, rgba(255, 230, 0, 0.14), transparent 55%),
    radial-gradient(ellipse 40% 50% at 50% 80%, rgba(57, 255, 20, 0.1), transparent 50%);
  filter: blur(40px);
  animation: auroraShift 18s ease-in-out infinite alternate;
}

@keyframes auroraShift {
  0% {
    transform: translate(-4%, 2%) rotate(0deg) scale(1);
  }
  50% {
    transform: translate(3%, -3%) rotate(4deg) scale(1.08);
  }
  100% {
    transform: translate(5%, 4%) rotate(-3deg) scale(1.05);
  }
}

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

/* Spotlight follow */
.spotlight {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(circle, rgba(255, 230, 0, 0.12) 0%, rgba(0, 200, 5, 0.08) 35%, transparent 68%);
  transform: translate(-50%, -50%);
  left: -9999px;
  top: -9999px;
  opacity: 0;
  transition: opacity 0.35s;
  mix-blend-mode: screen;
}

body.is-pointer .spotlight {
  opacity: 1;
}

/* Scroll progress */
.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));
  background-size: 200% 100%;
  animation: progressShimmer 2s linear infinite;
  box-shadow: 0 0 12px rgba(0, 200, 5, 0.6);
  pointer-events: none;
}

@keyframes progressShimmer {
  to {
    background-position: 200% 0;
  }
}

/* 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(2, 12, 6, 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(2, 12, 6, 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.06em;
  z-index: 2;
}

.nav-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(0, 200, 5, 0.5), var(--glow);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s;
}

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

.nav-name {
  background: linear-gradient(90deg, var(--yellow), var(--green-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  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;
  letter-spacing: 0.02em;
}

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

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

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(0, 200, 5, 0.08);
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  margin-left: auto;
  z-index: 2;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--green-bright);
  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: 1px solid transparent;
  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;
  letter-spacing: 0.02em;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  color: #021006;
  box-shadow: 0 8px 24px rgba(0, 200, 5, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 0 28px rgba(0, 200, 5, 0.55), 0 0 40px rgba(255, 230, 0, 0.2);
  background: linear-gradient(135deg, var(--yellow) 0%, var(--green-bright) 100%);
}

.btn-ghost {
  background: rgba(0, 200, 5, 0.06);
  border-color: var(--line);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  box-shadow: 0 0 20px rgba(255, 230, 0, 0.15);
}

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

.neon-pulse {
  animation: neonBreath 2.4s ease-in-out infinite;
}

@keyframes neonBreath {
  0%,
  100% {
    box-shadow: 0 0 8px rgba(0, 200, 5, 0.35), 0 8px 24px rgba(0, 200, 5, 0.2);
  }
  50% {
    box-shadow: 0 0 28px rgba(255, 230, 0, 0.55), 0 0 48px rgba(0, 200, 5, 0.35);
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: calc(var(--nav-h) + 1rem) clamp(1.25rem, 5vw, 4rem) 4.5rem;
  isolation: isolate;
  overflow: hidden;
}

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

.hero-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  will-change: transform;
  filter: saturate(1.2) contrast(1.08);
  animation: kenBurns 22s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  from {
    transform: scale(1.08) translate(0, 0);
  }
  to {
    transform: scale(1.18) translate(-2%, 1%);
  }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 12, 6, 0.5) 0%, rgba(2, 12, 6, 0.3) 35%, rgba(2, 12, 6, 0.85) 72%, #020c06 100%),
    linear-gradient(90deg, rgba(2, 12, 6, 0.8) 0%, rgba(2, 12, 6, 0.2) 55%, rgba(2, 12, 6, 0.5) 100%);
}

.hero-vhs {
  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
  );
  animation: vhsRoll 8s linear infinite;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.7;
}

@keyframes vhsRoll {
  to {
    background-position: 0 100px;
  }
}

.hero-rings {
  position: absolute;
  right: 8%;
  top: 28%;
  width: min(380px, 50vw);
  height: min(380px, 50vw);
  pointer-events: none;
}

.hero-rings span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(0, 200, 5, 0.25);
  animation: ringSpin 12s linear infinite;
}

.hero-rings span:nth-child(2) {
  inset: 12%;
  border-color: rgba(255, 230, 0, 0.3);
  animation-duration: 9s;
  animation-direction: reverse;
}

.hero-rings span:nth-child(3) {
  inset: 24%;
  border-color: rgba(57, 255, 20, 0.35);
  animation-duration: 15s;
  border-style: dashed;
}

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

.hero-content {
  max-width: 740px;
  width: 100%;
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  animation: logoSpinBorder 4s linear infinite, logoBob 3.5s ease-in-out infinite;
  box-shadow:
    0 0 0 3px transparent,
    0 0 40px rgba(0, 200, 5, 0.4);
  background:
    linear-gradient(#031008, #031008) padding-box,
    conic-gradient(from var(--a, 0deg), var(--green), var(--yellow), var(--green-bright), var(--green)) border-box;
  border: 3px solid transparent;
}

@property --a {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes logoSpinBorder {
  to {
    --a: 360deg;
  }
}

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

.hero-brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 8vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  margin-bottom: 0.65rem;
  color: var(--green-bright);
  position: relative;
  text-shadow: 0 0 40px rgba(0, 200, 5, 0.45);
}

.glitch {
  animation: glitchSkew 4s infinite linear alternate-reverse;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: transparent;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
}

.glitch::before {
  color: var(--yellow);
  animation: glitchTop 2.5s infinite linear alternate-reverse;
  left: 2px;
  text-shadow: -2px 0 var(--green);
  opacity: 0.85;
}

.glitch::after {
  color: #0ff;
  animation: glitchBot 3s infinite linear alternate-reverse;
  left: -2px;
  text-shadow: 2px 0 var(--yellow);
  opacity: 0.7;
  mix-blend-mode: screen;
}

@keyframes glitchSkew {
  0%,
  90%,
  100% {
    transform: none;
  }
  92% {
    transform: skewX(-8deg) translateX(2px);
  }
  94% {
    transform: skewX(4deg) translateX(-3px);
  }
  96% {
    transform: none;
  }
}

@keyframes glitchTop {
  0%,
  88%,
  100% {
    clip-path: inset(0 0 85% 0);
    transform: none;
  }
  90% {
    clip-path: inset(10% 0 60% 0);
    transform: translate(-4px, -1px);
  }
  93% {
    clip-path: inset(40% 0 30% 0);
    transform: translate(5px, 1px);
  }
}

@keyframes glitchBot {
  0%,
  86%,
  100% {
    clip-path: inset(85% 0 0 0);
    transform: none;
  }
  89% {
    clip-path: inset(50% 0 20% 0);
    transform: translate(4px, 2px);
  }
  92% {
    clip-path: inset(20% 0 55% 0);
    transform: translate(-6px, -1px);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 3vw, 1rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.15em 0.35em;
}

.hero-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(1.1em) rotateX(-80deg);
  transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--ci, 0) * 0.035s);
  transform-origin: bottom;
}

.hero-title.is-in .char {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 1.75rem;
  margin-inline: auto;
}

.ticker-chip {
  display: inline-block;
  padding: 0.12rem 0.55rem;
  border-radius: 999px;
  background: rgba(0, 200, 5, 0.12);
  border: 1px solid rgba(0, 200, 5, 0.4);
  color: var(--green-bright);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.85em;
  letter-spacing: 0.04em;
  animation: chipFlicker 3s steps(2) infinite;
}

@keyframes chipFlicker {
  0%,
  92%,
  100% {
    opacity: 1;
  }
  94% {
    opacity: 0.45;
  }
  96% {
    opacity: 1;
  }
}

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

.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 230, 0, 0.45);
  border-radius: 12px;
  z-index: 3;
}

.scroll-hint span {
  display: block;
  width: 4px;
  height: 8px;
  margin: 6px auto 0;
  border-radius: 4px;
  background: var(--green-bright);
  animation: scrollDot 1.6s ease-in-out infinite;
}

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

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

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

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

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

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

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

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

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

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 4.2vw, 2.85rem);
  letter-spacing: 0.02em;
  line-height: 1.1;
  max-width: 18ch;
  margin-bottom: 1.15rem;
  text-transform: uppercase;
}

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

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

.stat {
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(0, 200, 5, 0.1), transparent 70%);
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
  position: relative;
  overflow: hidden;
}

.stat::after {
  content: "";
  position: absolute;
  inset: auto -40% -60% auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 230, 0, 0.2), transparent 70%);
  transition: transform 0.5s;
}

.stat:hover {
  border-color: rgba(255, 230, 0, 0.45);
  box-shadow: 0 0 30px rgba(0, 200, 5, 0.15);
  transform: translateY(-6px);
}

.stat:hover::after {
  transform: scale(1.6);
}

.flip-in.reveal {
  transform: perspective(600px) rotateY(-25deg) translateY(20px);
  opacity: 0;
}

.flip-in.reveal.in {
  transform: perspective(600px) rotateY(0) translateY(0);
  opacity: 1;
}

.stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1;
}

.stat-label {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.how {
  background:
    radial-gradient(700px 400px at 100% 0%, rgba(255, 230, 0, 0.08), transparent 55%),
    radial-gradient(600px 360px at 0% 100%, rgba(0, 200, 5, 0.1), transparent 55%);
}

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

.step {
  position: relative;
  padding: 1.75rem 1.25rem;
  border: 1px solid var(--line);
  background: rgba(5, 20, 10, 0.4);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.step:hover {
  border-color: var(--yellow);
  box-shadow: inset 0 0 40px rgba(0, 200, 5, 0.08);
}

.slide-alt.reveal {
  opacity: 0;
  transform: translateX(-40px);
}

.slide-alt.reveal[style*="--i:1"] {
  transform: translateY(40px);
}

.slide-alt.reveal[style*="--i:2"] {
  transform: translateX(40px);
}

.slide-alt.reveal.in {
  opacity: 1;
  transform: translate(0, 0);
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1;
  margin-bottom: 1rem;
  color: var(--green-bright);
  text-shadow: 0 0 20px rgba(0, 200, 5, 0.5);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.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: rgba(5, 20, 10, 0.7);
  position: relative;
  overflow: hidden;
}

.neon-border {
  border: 1px solid transparent;
  background:
    linear-gradient(rgba(5, 20, 10, 0.92), rgba(5, 20, 10, 0.92)) padding-box,
    linear-gradient(90deg, var(--green), var(--yellow), var(--green-bright), var(--green)) border-box;
  background-size: 100% 100%, 300% 100%;
  animation: borderChase 3.5s linear infinite;
}

@keyframes borderChase {
  to {
    background-position: 0 0, 300% 0;
  }
}

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

.buy-ca {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--yellow);
  word-break: break-all;
  text-shadow: 0 0 16px rgba(255, 230, 0, 0.25);
}

.buy-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.join {
  overflow: hidden;
}

.join-bg {
  position: absolute;
  inset: 10% -20% -20%;
  background:
    radial-gradient(circle at 30% 40%, rgba(0, 200, 5, 0.22), transparent 45%),
    radial-gradient(circle at 75% 60%, rgba(255, 230, 0, 0.14), transparent 40%);
  filter: blur(24px);
  animation: joinMorph 10s ease-in-out infinite alternate;
  pointer-events: none;
  clip-path: polygon(0 20%, 100% 0, 100% 80%, 0 100%);
}

@keyframes joinMorph {
  from {
    transform: scale(1) translate(0, 0);
    clip-path: polygon(0 20%, 100% 0, 100% 80%, 0 100%);
  }
  to {
    transform: scale(1.12) translate(2%, -3%);
    clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 85%);
  }
}

.join-inner {
  position: relative;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  max-width: 420px;
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(5, 20, 10, 0.65);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.35s, box-shadow 0.35s;
}

.social-card:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: rgba(255, 230, 0, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 200, 5, 0.2);
}

.social-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--yellow), var(--green));
  color: #031008;
  flex-shrink: 0;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-card:hover .social-icon {
  transform: rotate(360deg) scale(1.1);
}

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

.social-text strong {
  color: var(--text);
  font-size: 1.05rem;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

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

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

.social-card:hover .social-arrow {
  transform: translateX(8px);
  color: var(--yellow);
}

.footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  padding: 2.5rem clamp(1.25rem, 5vw, 4rem) 2rem;
  background: rgba(0, 0, 0, 0.3);
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
}

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

.footer-brand img {
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(0, 200, 5, 0.4);
}

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

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

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

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

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s 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 {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translate(-50%, 120%);
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: var(--yellow);
  color: #031008;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  z-index: 60;
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s;
  pointer-events: none;
  box-shadow: 0 0 30px rgba(255, 230, 0, 0.45);
}

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

.flash {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 55;
  background: radial-gradient(circle at var(--fx, 50%) var(--fy, 50%), rgba(255, 230, 0, 0.35), transparent 45%);
  opacity: 0;
  animation: flashOut 0.55s ease-out forwards;
}

@keyframes flashOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(2, 12, 6, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  body.menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 1.35rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.08em;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

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

  .hero {
    place-items: center;
    padding-bottom: 5rem;
  }

  .hero-rings {
    opacity: 0.35;
  }

  .scroll-hint {
    display: none;
  }

  .slide-alt.reveal,
  .slide-alt.reveal[style*="--i:1"],
  .slide-alt.reveal[style*="--i:2"] {
    transform: translateY(30px);
  }
}

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

  .reveal,
  .flip-in.reveal,
  .slide-alt.reveal {
    opacity: 1;
    transform: none;
  }

  .hero-title .char {
    opacity: 1;
    transform: none;
  }
}
