:root {
  color-scheme: dark;
  --ink: #fff8ef;
  --muted: #c8bddb;
  --bg: #0d0716;
  --panel: rgba(30, 20, 48, 0.78);
  --panel-strong: rgba(45, 26, 71, 0.92);
  --red: #ff334f;
  --red-dark: #b9142b;
  --violet: #8e49ff;
  --cyan: #28d8ff;
  --gold: #ffbf43;
  --line: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 10%, rgba(143, 73, 255, 0.35), transparent 28rem),
    radial-gradient(circle at 84% 15%, rgba(40, 216, 255, 0.22), transparent 27rem),
    linear-gradient(180deg, #0d0716 0%, #160b26 42%, #0d0716 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

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

.site-shell {
  position: relative;
  isolation: isolate;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 7, 22, 0.78);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

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

.topbar nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar nav a,
.nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.topbar nav a:hover,
.nav-cta {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.1);
}

.section-band {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: min(760px, calc(100vh - 124px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: clamp(28px, 6vw, 74px);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #13091f;
}

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

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 7, 22, 0.9), rgba(13, 7, 22, 0.48) 48%, rgba(13, 7, 22, 0.28)),
    linear-gradient(0deg, rgba(13, 7, 22, 0.76), transparent 56%);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
}

.starfield {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.92) 1px, transparent 1.4px),
    radial-gradient(circle, rgba(40, 216, 255, 0.75) 1px, transparent 1.4px);
  background-size: 83px 83px, 137px 137px;
  animation: drift 18s linear infinite;
  opacity: 0.35;
}

.hero-content {
  max-width: 680px;
  min-width: 0;
}

.kicker,
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Bangers, Impact, fantasy;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
}

h1 {
  color: #c87dff;
  font-size: clamp(74px, 10vw, 132px);
  text-shadow:
    0 8px 0 #421a6b,
    0 0 24px rgba(199, 97, 255, 0.78),
    0 0 64px rgba(40, 216, 255, 0.36);
}

h2 {
  max-width: 900px;
  font-size: clamp(48px, 8vw, 96px);
  text-shadow: 0 6px 0 rgba(0, 0, 0, 0.25);
}

.hero-copy,
.origin p,
.media-split p,
footer p {
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.62;
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  overflow-wrap: anywhere;
}

.hero-actions,
.buy-actions,
.proof-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
.proof-links a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.proof-links a:hover,
.link-strip a:hover {
  transform: translateY(-2px);
}

.primary {
  color: #190814;
  background: linear-gradient(135deg, var(--gold), #ff4a5f 54%, #d66dff);
  box-shadow: 0 18px 40px rgba(255, 51, 79, 0.3);
}

.secondary,
.proof-links a {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.09);
}

.hero-side {
  display: grid;
  gap: 16px;
  align-self: center;
  min-width: 0;
}

.hero-mascot {
  width: min(100%, 390px);
  justify-self: center;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  animation: hoverFloat 5.2s ease-in-out infinite;
}

.hero-card {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(255, 191, 67, 0.34);
  border-radius: 8px;
  background: rgba(12, 7, 22, 0.78);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.hero-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contract {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  text-align: left;
  overflow-wrap: anywhere;
  cursor: pointer;
}

.hero-card small {
  display: block;
  margin-top: 10px;
  color: var(--cyan);
  font-weight: 900;
}

.link-strip {
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.link-strip a {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--ink);
  font-weight: 900;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease;
}

.link-strip a,
.sticker-grid article,
.steps div {
  opacity: 1;
  transform: translateY(0);
}

.link-strip a.is-visible,
.sticker-grid article.is-visible,
.steps div.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

.link-strip a.is-visible:hover {
  transform: translateY(-2px);
}

.origin,
.media-split,
.buy-panel {
  width: min(1180px, calc(100% - 32px));
  margin: 96px auto 0;
}

.origin,
.media-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
}

.origin-copy {
  min-width: 0;
}

.origin-visual {
  position: relative;
  min-height: 620px;
}

.origin-visual::before {
  content: "";
  position: absolute;
  inset: 9% 2% 5% 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40, 216, 255, 0.24), rgba(142, 73, 255, 0.08) 45%, transparent 70%);
  filter: blur(6px);
}

.rocket {
  position: relative;
  width: min(100%, 560px);
  margin-left: auto;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  transform: rotate(2deg);
}

.stickers {
  width: min(1180px, calc(100% - 32px));
  margin: 96px auto 0;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 51, 79, 0.13), transparent 35%),
    linear-gradient(225deg, rgba(40, 216, 255, 0.14), transparent 35%),
    rgba(20, 12, 32, 0.84);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.sticker-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.sticker-grid article {
  min-height: 330px;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: end;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.sticker-grid img {
  width: 100%;
  height: 270px;
  object-fit: contain;
  transform-origin: bottom center;
  transition: transform 220ms ease;
}

.sticker-grid article:hover img {
  transform: translateY(-8px) rotate(-2deg) scale(1.04);
}

.sticker-grid span {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-weight: 900;
  text-align: center;
}

.media-split {
  grid-template-columns: 1fr 0.8fr;
}

.video-frame {
  overflow: hidden;
  border: 1px solid rgba(40, 216, 255, 0.34);
  border-radius: 8px;
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.4);
  background: #08040e;
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.buy-panel {
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(255, 191, 67, 0.34);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 18%, rgba(255, 191, 67, 0.2), transparent 24rem),
    linear-gradient(135deg, rgba(142, 73, 255, 0.22), rgba(255, 51, 79, 0.15)),
    var(--panel-strong);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.steps div {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.16);
}

.steps strong {
  display: block;
  margin-bottom: 16px;
  color: var(--cyan);
  font-family: Bangers, Impact, fantasy;
  font-size: 40px;
  font-weight: 400;
}

.steps span {
  color: var(--muted);
  line-height: 1.45;
  font-weight: 700;
}

footer {
  width: min(1180px, calc(100% - 32px));
  margin: 72px auto 0;
  padding: 28px 0 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
}

footer img {
  width: 110px;
  height: 90px;
  object-fit: contain;
}

footer p {
  margin: 0;
  text-align: right;
  font-size: 14px;
}

@keyframes drift {
  to {
    background-position: 83px 83px, -137px 137px;
  }
}

@keyframes hoverFloat {
  50% {
    transform: translateY(-10px) rotate(1.2deg);
  }
}

@media (max-width: 900px) {
  .topbar {
    align-items: stretch;
  }

  .topbar nav {
    display: none;
  }

  .hero,
  .origin,
  .media-split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 780px;
    align-items: end;
    padding-top: 120px;
  }

  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(13, 7, 22, 0.22), rgba(13, 7, 22, 0.94) 58%),
      linear-gradient(90deg, rgba(13, 7, 22, 0.68), transparent);
  }

  .hero-bg img {
    object-position: center top;
  }

  .link-strip,
  .sticker-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .origin-visual {
    min-height: auto;
  }

  .rocket {
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  .topbar,
  .hero,
  .link-strip,
  .origin,
  .stickers,
  .media-split,
  .buy-panel,
  footer {
    width: calc(100vw - 22px);
    max-width: calc(100vw - 22px);
  }

  .hero-content,
  .hero-actions,
  .buy-actions,
  .proof-links {
    width: 100%;
    max-width: 100%;
  }

  .brand span {
    font-size: 14px;
  }

  .nav-cta {
    padding: 0 10px;
  }

  .kicker {
    max-width: 100%;
    font-size: 11px;
    line-height: 1.35;
    white-space: normal;
  }

  .hero {
    min-height: auto;
    padding: 72px 18px 18px;
  }

  h1 {
    font-size: clamp(54px, 17vw, 72px);
  }

  h2 {
    font-size: clamp(42px, 15vw, 64px);
  }

  .hero-actions,
  .buy-actions,
  .proof-links {
    flex-direction: column;
  }

  .button,
  .proof-links a {
    width: 100%;
  }

  .link-strip,
  .sticker-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .sticker-grid article {
    min-height: 300px;
  }

  .sticker-grid img {
    height: 238px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  footer p {
    text-align: left;
  }
}
