:root {
  color-scheme: dark;
  --bg: #080014;
  --bg-soft: #120023;
  --ink: #fff8ff;
  --muted: #c9b6d9;
  --pink: #ff2cfb;
  --green: #14f195;
  --cyan: #00e5ff;
  --yellow: #ffd700;
  --purple: #a000ff;
  --line: rgba(255, 44, 251, 0.32);
  --panel: rgba(8, 0, 20, 0.74);
  --shadow: 0 24px 80px rgba(255, 44, 251, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(160, 0, 255, 0.28), transparent 34rem),
    radial-gradient(circle at 82% 22%, rgba(20, 241, 149, 0.18), transparent 30rem),
    linear-gradient(180deg, #020008 0%, var(--bg) 46%, #030006 100%);
  color: var(--ink);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", system-ui, sans-serif;
  min-width: 320px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 4px;
  mix-blend-mode: screen;
  opacity: 0.32;
  z-index: 10;
}

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

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

button {
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9;
  opacity: 0.12;
  background-image:
    linear-gradient(115deg, transparent 0 44%, rgba(255, 44, 251, 0.35) 45% 46%, transparent 47%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0 1px, transparent 1.4px);
  background-size: 180px 180px, 12px 12px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem clamp(1rem, 3vw, 2.5rem);
  background: linear-gradient(180deg, rgba(3, 0, 8, 0.94), rgba(3, 0, 8, 0.42));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 44, 251, 0.2);
}

.brand,
.site-header nav,
.header-action {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.7rem;
  color: var(--green);
  font-size: clamp(1rem, 2vw, 1.35rem);
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(20, 241, 149, 0.62);
}

.brand-mark {
  width: 2.6rem;
  height: 2.6rem;
  object-fit: cover;
  aspect-ratio: 1;
  border: 2px solid var(--pink);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(255, 44, 251, 0.52);
}

.site-header nav {
  justify-content: center;
  gap: clamp(0.7rem, 1.6vw, 1.6rem);
  color: var(--muted);
  font-family: system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--green);
}

.social-link {
  display: inline-grid;
  width: 1.25rem;
  height: 1.25rem;
  place-items: center;
  color: #fff;
}

.social-link svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--green);
}

.header-action {
  min-height: 2.6rem;
  padding: 0 1rem;
  color: #09000f;
  background: var(--yellow);
  border: 2px solid #09000f;
  box-shadow: 5px 5px 0 var(--pink);
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 8rem clamp(1rem, 4vw, 4rem) 3rem;
  border-bottom: 1px solid var(--line);
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.22) contrast(1.08);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 0, 12, 0.9), rgba(4, 0, 12, 0.44) 46%, rgba(4, 0, 12, 0.82)),
    linear-gradient(0deg, rgba(4, 0, 12, 0.92), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 68rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.7rem;
  color: var(--yellow);
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 1rem;
  color: var(--pink);
  font-size: clamp(4rem, 16vw, 12.5rem);
  line-height: 0.82;
  text-transform: uppercase;
  text-shadow:
    0.045em 0.045em 0 #080014,
    0.07em 0.07em 0 var(--green),
    0 0 42px rgba(255, 44, 251, 0.6);
}

h2 {
  max-width: 14ch;
  color: var(--ink);
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  line-height: 0.88;
  text-transform: uppercase;
}

h3 {
  color: var(--green);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 0.94;
  text-transform: uppercase;
}

p {
  font-family: system-ui, sans-serif;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

.hero-logo {
  width: min(34rem, 82vw);
  margin: 0 0 1.1rem;
  filter: drop-shadow(0 0 24px rgba(20, 241, 149, 0.5)) drop-shadow(0 0 34px rgba(255, 44, 251, 0.55));
}

.hero-copy {
  max-width: 39rem;
  padding: 1rem 1.1rem;
  background: rgba(8, 0, 20, 0.58);
  border-left: 4px solid var(--green);
  box-shadow: 0 0 34px rgba(255, 44, 251, 0.12);
}

.hero-copy p {
  margin-bottom: 0.7rem;
  color: #fff;
  font-size: clamp(0.98rem, 1.55vw, 1.16rem);
  font-weight: 750;
  line-height: 1.42;
}

.hero-copy p:last-child {
  margin-bottom: 0;
}

.hero-copy strong {
  color: var(--yellow);
  font-weight: 950;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255, 215, 0, 0.35);
}

.hero-actions,
.ticker,
.link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  padding: 0 1.2rem;
  border: 2px solid currentColor;
  cursor: pointer;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible,
.header-action:hover,
.header-action:focus-visible {
  transform: translate(-2px, -2px);
}

.button-primary {
  color: #09000f;
  background: var(--green);
  box-shadow: 6px 6px 0 var(--pink);
}

.button-secondary {
  color: var(--cyan);
  background: rgba(8, 0, 20, 0.76);
  box-shadow: 6px 6px 0 rgba(0, 229, 255, 0.25);
}

.ticker {
  margin-top: 2rem;
  max-width: 55rem;
}

.beat-status {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin-top: 0.85rem;
  padding: 0.45rem 0.65rem;
  color: var(--muted);
  background: rgba(8, 0, 20, 0.68);
  border: 1px solid rgba(20, 241, 149, 0.32);
  font-family: system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.beat-status strong {
  min-width: 3.4rem;
  color: var(--green);
  font-size: 1rem;
  text-align: center;
  text-shadow: 0 0 16px rgba(20, 241, 149, 0.58);
}

.beat-status.is-hot {
  border-color: var(--green);
  box-shadow: 0 0 20px rgba(20, 241, 149, 0.26);
}

.beat-status.is-complete {
  color: #09000f;
  background: var(--yellow);
  border-color: var(--yellow);
  box-shadow: 0 0 26px rgba(255, 215, 0, 0.52);
}

.beat-status.is-complete strong {
  color: #09000f;
  text-shadow: none;
}

.ticker span,
.ticker-button {
  padding: 0.55rem 0.8rem;
  color: var(--yellow);
  background: rgba(8, 0, 20, 0.75);
  border: 1px solid var(--line);
  font-family: system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.ticker-button {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.ticker-button:hover,
.ticker-button:focus-visible {
  color: #09000f;
  background: var(--yellow);
  border-color: var(--yellow);
  outline: none;
}

.ticker-button.on-beat-shine {
  color: #09000f;
  background: var(--green);
  border-color: var(--green);
  animation: beat-shine 520ms ease-out;
}

.ticker-button.on-beat-shine::after {
  content: "";
  position: absolute;
  inset: -45%;
  background: linear-gradient(110deg, transparent 22%, rgba(255, 255, 255, 0.92) 48%, transparent 72%);
  transform: translateX(-120%) rotate(8deg);
  animation: shine-sweep 520ms ease-out;
}

@keyframes beat-shine {
  0% {
    box-shadow: 0 0 0 rgba(20, 241, 149, 0);
  }

  42% {
    box-shadow: 0 0 26px rgba(20, 241, 149, 0.92), 0 0 46px rgba(20, 241, 149, 0.36);
  }

  100% {
    box-shadow: 0 0 0 rgba(20, 241, 149, 0);
  }
}

@keyframes shine-sweep {
  0% {
    transform: translateX(-120%) rotate(8deg);
  }

  100% {
    transform: translateX(120%) rotate(8deg);
  }
}

.taco-pop {
  position: fixed;
  z-index: 30;
  left: var(--x);
  top: var(--y);
  pointer-events: none;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.72));
  transform: translate(-50%, -50%);
  animation: taco-pop 900ms ease-out forwards;
}

@keyframes taco-pop {
  0% {
    opacity: 0;
    transform: translate(-50%, -20%) scale(0.55) rotate(-12deg);
  }

  18% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--drift)), -180%) scale(1.25) rotate(16deg);
  }
}

.section {
  padding: clamp(4rem, 9vw, 8rem) clamp(1rem, 4vw, 4rem);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(18rem, 1.14fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.brand-board {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
  background: var(--panel);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.brand-board::after {
  content: "";
  position: absolute;
  inset: -35%;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 44, 251, 0.28) 48%, rgba(20, 241, 149, 0.22) 53%, transparent 66%);
  opacity: 0;
  transform: translateX(-28%) rotate(8deg);
  transition: opacity 220ms ease, transform 420ms ease;
}

.brand-board:hover,
.brand-board:focus-within {
  border-color: var(--pink);
  box-shadow: 0 24px 80px rgba(255, 44, 251, 0.36), 0 0 42px rgba(20, 241, 149, 0.18);
  transform: rotate(-0.6deg) translateY(-6px) scale(1.01);
}

.brand-board:hover::after,
.brand-board:focus-within::after {
  opacity: 1;
  transform: translateX(26%) rotate(8deg);
}

.brand-board img {
  width: 100%;
  aspect-ratio: 0.72;
  object-fit: contain;
  background: #020008;
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.token-heading-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(10rem, 18rem);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: 2rem;
}

.token-heading-wrap .section-heading {
  margin-bottom: 0;
}

.token-icon-art {
  width: min(100%, 18rem);
  justify-self: end;
  aspect-ratio: 1;
  object-fit: cover;
  border: 3px solid var(--green);
  border-radius: 50%;
  box-shadow:
    0 0 0 8px rgba(255, 44, 251, 0.16),
    0 0 42px rgba(20, 241, 149, 0.42),
    0 0 70px rgba(255, 44, 251, 0.35);
  transition: transform 240ms ease, box-shadow 240ms ease, filter 240ms ease;
}

.token-icon-art:hover,
.token-icon-art:focus-visible {
  filter: saturate(1.25) contrast(1.1);
  transform: rotate(8deg) scale(1.06);
  box-shadow:
    0 0 0 10px rgba(20, 241, 149, 0.18),
    0 0 34px rgba(20, 241, 149, 0.84),
    0 0 82px rgba(255, 44, 251, 0.5);
  animation: token-wobble 720ms ease-in-out;
}

@keyframes token-wobble {
  0%,
  100% {
    transform: rotate(8deg) scale(1.06);
  }

  35% {
    transform: rotate(-5deg) scale(1.09);
  }

  68% {
    transform: rotate(11deg) scale(1.06);
  }
}

.token-section {
  background:
    linear-gradient(180deg, rgba(255, 44, 251, 0.1), rgba(20, 241, 149, 0.07)),
    var(--bg-soft);
  border-block: 1px solid var(--line);
}

.token-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.token-card,
.steps li {
  padding: clamp(1.1rem, 2vw, 1.6rem);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.card-icon {
  display: grid;
  width: 4.5rem;
  aspect-ratio: 1;
  place-items: center;
  margin-bottom: 1.1rem;
  color: var(--pink);
  border: 3px solid var(--green);
  border-radius: 50%;
  font-size: 2.8rem;
  box-shadow: inset 0 0 24px rgba(20, 241, 149, 0.25), 0 0 24px rgba(255, 44, 251, 0.35);
}

.launch-strip {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 4rem);
  background:
    linear-gradient(90deg, rgba(255, 215, 0, 0.94), rgba(20, 241, 149, 0.92)),
    var(--yellow);
  color: #09000f;
}

.launch-strip h2,
.launch-strip p,
.launch-strip .section-kicker {
  color: #09000f;
}

.launch-strip h2 {
  margin-bottom: 0.4rem;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
}

.launch-strip p {
  max-width: 48rem;
  margin-bottom: 0;
  font-weight: 800;
}

.launch-strip .button-primary {
  background: #09000f;
  color: var(--green);
  box-shadow: 6px 6px 0 var(--pink);
}

.roadmap-dream {
  display: grid;
  grid-template-columns: minmax(16rem, 0.72fr) minmax(22rem, 1.28fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  background:
    radial-gradient(circle at 30% 35%, rgba(255, 215, 0, 0.12), transparent 25rem),
    radial-gradient(circle at 82% 62%, rgba(20, 241, 149, 0.14), transparent 28rem),
    #070010;
  border-block: 1px solid var(--line);
}

.roadmap-copy p {
  max-width: 42rem;
  margin-bottom: 0.55rem;
  line-height: 1.45;
}

.roadmap-copy strong {
  color: var(--yellow);
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255, 215, 0, 0.32);
}

.roadmap-emoji {
  color: var(--green);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1;
}

.roadmap-art {
  margin: 0;
  border: 1px solid rgba(255, 44, 251, 0.42);
  background: rgba(8, 0, 20, 0.72);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34), 0 0 40px rgba(255, 44, 251, 0.18);
}

.roadmap-open {
  display: block;
  width: 100%;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: zoom-in;
}

.roadmap-open img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: filter 220ms ease, transform 220ms ease;
}

.roadmap-open:hover img,
.roadmap-open:focus-visible img {
  filter: saturate(1.18) contrast(1.08);
  transform: scale(1.012);
}

.roadmap-open:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.roadmap-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(0.75rem, 2vw, 1.5rem);
  background: rgba(0, 0, 0, 0.96);
}

.roadmap-lightbox[hidden] {
  display: none;
}

.roadmap-lightbox img {
  width: min(100%, 92vh);
  max-height: 94vh;
  object-fit: contain;
  border: 1px solid rgba(255, 44, 251, 0.7);
  box-shadow: 0 0 58px rgba(255, 44, 251, 0.34);
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 101;
  min-height: 2.7rem;
  padding: 0 0.9rem;
  color: var(--green);
  background: #050008;
  border: 1px solid var(--green);
  cursor: pointer;
  font-family: system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

body.lightbox-open {
  overflow: hidden;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps span {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--yellow);
  font-size: 2rem;
}

.community {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.9fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  background:
    radial-gradient(circle at 75% 40%, rgba(255, 44, 251, 0.24), transparent 26rem),
    #05000d;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.link-grid a {
  min-height: 6rem;
  display: grid;
  place-items: center;
  color: var(--cyan);
  background: rgba(8, 0, 20, 0.78);
  border: 1px solid var(--line);
  font-size: clamp(1.3rem, 4vw, 2.4rem);
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(0, 229, 255, 0.08);
}

.link-grid a:hover,
.link-grid a:focus-visible {
  color: var(--green);
  border-color: var(--green);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  padding: 1.4rem clamp(1rem, 4vw, 4rem);
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-family: system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .story-grid,
  .community,
  .roadmap-dream {
    grid-template-columns: 1fr;
  }

  .token-cards,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .token-heading-wrap {
    grid-template-columns: 1fr;
  }

  .token-icon-art {
    justify-self: start;
    width: min(13rem, 52vw);
  }

  .roadmap-open img {
    aspect-ratio: 1;
  }

  .launch-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 580px) {
  .site-header {
    padding: 0.75rem 1rem;
  }

  .brand {
    font-size: 1rem;
  }

  .brand-mark {
    width: 2.2rem;
    height: 2.2rem;
  }

  .header-action {
    min-height: 2.2rem;
    padding-inline: 0.7rem;
    font-size: 0.86rem;
  }

  .hero {
    min-height: auto;
    align-items: start;
    padding-top: 6rem;
    padding-bottom: 2rem;
  }

  .hero-logo {
    width: min(21rem, 92vw);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 19rem;
  }

  .token-cards,
  .steps,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .brand-board {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}
