:root {
  --green: #00c805;
  --green-dim: #00a004;
  --lime: #c8ff00;
  --yellow: #ffcc00;
  --bg: #000000;
  --bg-2: #0a0a0a;
  --elevated: #111111;
  --line: #222222;
  --text: #ffffff;
  --muted: #9a9a9a;
  --radius: 16px;
  --nav-h: 76px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3 {
  font-family: "Space Grotesk", Inter, sans-serif;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(0, 200, 5, 0.16), transparent 68%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

body:hover .cursor-glow {
  opacity: 1;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--green);
}

.nav-links {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-weight: 500;
}

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

.nav-actions {
  display: flex;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  width: 16px;
  height: 2px;
  background: #fff;
}

.mobile-menu {
  display: none;
  position: sticky;
  top: var(--nav-h);
  z-index: 49;
  background: #0b0b0b;
  border-bottom: 1px solid var(--line);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu.open {
  display: flex;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--green);
  color: #000;
  box-shadow: 0 0 24px rgba(0, 200, 5, 0.28);
}

.btn-primary:hover {
  background: var(--lime);
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(200, 255, 0, 0.35);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn-lg {
  padding: 14px 26px;
  font-size: 16px;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

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

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 22s ease-in-out infinite alternate;
  filter: saturate(1.15) contrast(1.05);
}

.hero-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.72) 55%, #000 100%),
    radial-gradient(ellipse at 20% 80%, rgba(0, 200, 5, 0.18), transparent 50%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 16px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(0, 200, 5, 0.7);
  animation: pulse 1.8s infinite;
}

h1 {
  font-size: clamp(56px, 8vw, 104px);
  margin-bottom: 18px;
}

h1 .muted {
  display: block;
  color: #d8d8d8;
  font-size: 0.52em;
}

.lede {
  font-size: 20px;
  color: #e8e8e8;
  max-width: 540px;
  margin-bottom: 28px;
}

.lede cite {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
}

.ca-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(17, 17, 17, 0.85);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 8px 8px 16px;
  width: fit-content;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.ca-label {
  color: var(--green);
  font-weight: 700;
  font-size: 12px;
}

.ca-row code {
  font-size: 14px;
  color: #ddd;
}

.copy-btn {
  border: 0;
  background: var(--green);
  color: #000;
  font-weight: 700;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}

.copy-btn.copied {
  background: var(--lime);
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-mascot {
  position: relative;
  justify-self: end;
  width: min(380px, 100%);
}

.mascot {
  width: 100%;
  border-radius: 32px;
  animation: float 4.5s ease-in-out infinite;
  filter: drop-shadow(0 20px 50px rgba(0, 200, 5, 0.28));
}

.mascot-ring,
.mascot-ring.ring-2 {
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(0, 200, 5, 0.35);
  border-radius: 40px;
  animation: spin 14s linear infinite;
}

.mascot-ring.ring-2 {
  inset: -36px;
  border-color: rgba(255, 204, 0, 0.18);
  animation-duration: 20s;
  animation-direction: reverse;
}

.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: #050505;
  position: relative;
  z-index: 2;
}

.ticker-track {
  display: flex;
  gap: 48px;
  padding: 16px 0;
  width: max-content;
  animation: marquee 28s linear infinite;
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
}

.ticker-track span::before {
  content: "●";
  color: var(--green);
  margin-right: 48px;
}

.section {
  position: relative;
  z-index: 2;
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  padding: 108px 0;
}

.section-head {
  margin-bottom: 48px;
}

.section-head h2,
.join-panel h2 {
  font-size: clamp(36px, 5vw, 56px);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: linear-gradient(180deg, #121212, #0b0b0b);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  min-height: 260px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 200, 5, 0.5);
  box-shadow: 0 20px 50px rgba(0, 200, 5, 0.08);
}

.card-icon {
  color: var(--green);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.card h3,
.step h3 {
  margin: 16px 0 10px;
  font-size: 22px;
}

.card p,
.step p,
.join-panel p {
  color: var(--muted);
}

.steps {
  list-style: none;
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  background: var(--elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #000;
  border: 1px solid var(--green);
  color: var(--green);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 20px;
}

.buy-bar {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  border-radius: 20px;
  background: linear-gradient(90deg, rgba(0, 200, 5, 0.12), rgba(255, 204, 0, 0.08));
  border: 1px solid rgba(0, 200, 5, 0.28);
}

.buy-label {
  font-size: 12px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.join-panel {
  text-align: center;
  padding: 72px 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 200, 5, 0.18), transparent 46%),
    #0c0c0c;
  border: 1px solid var(--line);
}

.join-logo {
  width: 88px;
  height: 88px;
  margin: 0 auto 18px;
  border-radius: 50%;
  animation: float 4s ease-in-out infinite;
  box-shadow: 0 0 40px rgba(0, 200, 5, 0.25);
}

.join-panel a {
  color: var(--green);
}

.join-panel .btn-primary {
  color: #000;
}

.join-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.footer {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 48px 24px 64px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-brand img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.disclaimer {
  margin-top: 10px;
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.8s ease forwards;
}

.delay {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.45s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

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

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 200, 5, 0.7);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(0, 200, 5, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 200, 5, 0);
  }
}

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

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

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

@media (max-width: 900px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-inner,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero-mascot {
    justify-self: center;
    order: -1;
    width: min(260px, 70%);
  }

  .buy-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}
