:root {
  --bg: #050807;
  --ink: #f4fff0;
  --muted: #a9b9aa;
  --acid: #7dff57;
  --acid-2: #1fe870;
  --steel: #8ea19a;
  --panel: rgba(11, 18, 15, 0.72);
  --line: rgba(145, 255, 110, 0.22);
  --alert: #fff0a8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 10%, rgba(125, 255, 87, 0.2), transparent 28rem),
    radial-gradient(circle at 88% 64%, rgba(255, 240, 168, 0.08), transparent 24rem),
    linear-gradient(135deg, #020403 0%, #07110d 45%, #020303 100%);
}

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

button {
  font: inherit;
}

.scanline {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: 0.09;
  background-image: linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 100% 4px;
  mix-blend-mode: overlay;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem clamp(1rem, 3vw, 2.5rem);
  background: linear-gradient(180deg, rgba(2, 5, 4, 0.86), rgba(2, 5, 4, 0.24));
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 2.35rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(125, 255, 87, 0.12);
  color: var(--acid);
  font-size: 0.68rem;
  border-radius: 0.5rem;
}

nav {
  display: inline-flex;
  align-items: center;
  gap: 1.3rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

nav a:hover {
  color: var(--acid);
}

.top-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.icon-button,
.phrases button {
  border: 1px solid var(--line);
  background: rgba(125, 255, 87, 0.11);
  color: var(--ink);
  border-radius: 0.45rem;
  padding: 0.72rem 0.9rem;
  font-weight: 900;
  cursor: pointer;
}

.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  color: var(--acid);
}

.icon-button:hover,
.phrases button:hover {
  border-color: rgba(125, 255, 87, 0.72);
  color: var(--acid);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(1, 3, 2, 0.92) 0%, rgba(1, 3, 2, 0.55) 40%, rgba(1, 3, 2, 0.12) 72%),
    linear-gradient(0deg, #050807 0%, rgba(5, 8, 7, 0.26) 42%, rgba(5, 8, 7, 0.08) 100%);
}

.hero-content {
  width: min(72rem, 100%);
  padding: 7.2rem clamp(1rem, 6vw, 5rem) 2.2rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--acid);
  font-size: clamp(0.72rem, 1.4vw, 0.86rem);
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Impact, "Arial Black", Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.1rem;
  font-size: clamp(3rem, 10vw, 7.8rem);
  line-height: 0.9;
  text-shadow: 0 0 30px rgba(125, 255, 87, 0.2);
}

h2 {
  font-size: clamp(2.2rem, 6vw, 5.2rem);
  line-height: 0.92;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.04rem;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 39rem;
  color: #d6e8d4;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 700;
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  border-radius: 0.45rem;
  padding: 0.9rem 1.15rem;
  font-weight: 950;
  text-transform: uppercase;
}

.primary-action {
  background: var(--acid);
  color: #061006;
  box-shadow: 0 0 36px rgba(125, 255, 87, 0.34);
}

.secondary-action {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

.social-action {
  border-color: rgba(125, 255, 87, 0.48);
  background: rgba(125, 255, 87, 0.12);
}

.ticker-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  max-width: 56rem;
  margin-top: 2.2rem;
  color: #d9f8d4;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ticker-strip span {
  border: 1px solid var(--line);
  background: rgba(3, 10, 7, 0.68);
  border-radius: 0.4rem;
  padding: 0.62rem 0.72rem;
}

.section-grid,
.signal,
.roadmap,
.meme-wall {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-grid {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: clamp(2rem, 8vw, 6rem);
  align-items: start;
}

.story {
  color: #d8e4d4;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.65;
}

.story strong {
  color: var(--acid);
}

.poster-band {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(18rem, 1.05fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 clamp(4rem, 8vw, 7rem);
}

.poster-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.58;
}

.mascot {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(16rem, 1fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  grid-column: 1 / -1;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.signal-grid article,
.timeline div {
  min-height: 13rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  padding: 1.2rem;
  background:
    linear-gradient(145deg, rgba(125, 255, 87, 0.1), rgba(255, 255, 255, 0.035)),
    var(--panel);
}

.signal-grid span,
.timeline span {
  display: inline-block;
  margin-bottom: 1.8rem;
  color: var(--alert);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.signal-grid p,
.timeline p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

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

.meme-wall {
  display: grid;
  grid-template-columns: 0.78fr 1.2fr;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: start;
}

.phrases {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.phrases button {
  justify-self: stretch;
  min-height: 5rem;
  text-align: left;
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  transform: translateY(1rem);
  opacity: 0;
  pointer-events: none;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: rgba(3, 10, 7, 0.94);
  color: var(--acid);
  padding: 0.75rem 0.95rem;
  font-weight: 900;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 860px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .brand {
    font-size: 0.72rem;
  }

  .icon-button {
    padding: 0.65rem 0.7rem;
    font-size: 0.78rem;
  }

  .social-button {
    min-width: 2.55rem;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-bg {
    object-position: 57% center;
  }

  .hero-vignette {
    background:
      linear-gradient(0deg, #050807 0%, rgba(5, 8, 7, 0.52) 50%, rgba(5, 8, 7, 0.06) 100%),
      linear-gradient(90deg, rgba(1, 3, 2, 0.75), rgba(1, 3, 2, 0.12));
  }

  .hero-content {
    padding: 6.1rem 1rem 1.5rem;
  }

  .section-grid,
  .poster-band,
  .section-heading,
  .meme-wall {
    grid-template-columns: 1fr;
  }

  .signal-grid,
  .timeline,
  .phrases {
    grid-template-columns: 1fr;
  }

  .signal-grid article,
  .timeline div {
    min-height: 10.5rem;
  }

}

@media (max-width: 520px) {
  .hero-actions a {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.65rem, 17vw, 4.8rem);
  }
}
