:root {
  color-scheme: dark;
  --black: #050505;
  --black-soft: #0b0b0d;
  --ink: #121216;
  --bone: #f4ead6;
  --bone-muted: #bdb3a2;
  --static: #85858d;
  --static-dark: #2b2d32;
  --red: #ff2435;
  --red-dark: #8f101c;
  --green: #9cff42;
  --purple: #a044ff;
  --purple-dark: #3b1965;
  --glass: rgba(12, 12, 15, 0.72);
  --line: rgba(244, 234, 214, 0.14);
  --header-height: 72px;
  --shell: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--bone);
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 36, 53, 0.16), transparent 28rem),
    radial-gradient(circle at 86% 36%, rgba(156, 255, 66, 0.09), transparent 22rem),
    linear-gradient(180deg, #050505 0%, #0a090a 46%, #050505 100%);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
}

body::before {
  opacity: 0.2;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg, rgba(255, 36, 53, 0.025) 0 1px, transparent 1px 7px);
  mix-blend-mode: screen;
}

body::after {
  background:
    radial-gradient(circle at 50% 35%, transparent 0 36%, rgba(0, 0, 0, 0.58) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent 20%, transparent 80%, rgba(0, 0, 0, 0.34));
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

::selection {
  color: var(--black);
  background: var(--green);
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 40;
  padding: 0.7rem 1rem;
  color: var(--black);
  background: var(--green);
  border-radius: 6px;
}

.page-shell {
  width: var(--shell);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 1rem;
  align-items: center;
  padding: 0 24px;
  color: var(--bone);
  background: rgba(5, 5, 5, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--bone);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--black);
  background:
    linear-gradient(135deg, var(--green), #eaffbd 42%, var(--red) 43% 56%, var(--purple) 57%);
  border: 1px solid rgba(244, 234, 214, 0.45);
  border-radius: 5px;
  box-shadow: 0 0 24px rgba(255, 36, 53, 0.28);
  font-family: Impact, Haettenschweiler, "Arial Narrow", sans-serif;
  letter-spacing: 0;
}

.brand-name {
  font-family: Impact, Haettenschweiler, "Arial Narrow", sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.28rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.5rem, 1.5vw, 1.25rem);
}

.site-nav__link,
.ghost-link,
.solid-link,
.mobile-menu__cta,
.footer-links a {
  color: var(--bone-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.site-nav__link:hover,
.footer-links a:hover {
  color: var(--green);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.ghost-link,
.solid-link,
.mobile-menu__cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(244, 234, 214, 0.18);
  border-radius: 6px;
}

.ghost-link:hover {
  color: var(--bone);
  border-color: rgba(156, 255, 66, 0.5);
}

.solid-link,
.mobile-menu__cta {
  color: var(--black);
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 22px rgba(156, 255, 66, 0.22);
}

.solid-link:hover,
.mobile-menu__cta:hover {
  color: var(--black);
  background: var(--bone);
  border-color: var(--bone);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--bone);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.menu-toggle__bar,
.menu-toggle__bar::before,
.menu-toggle__bar::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
}

.menu-toggle__bar {
  position: relative;
}

.menu-toggle__bar::before,
.menu-toggle__bar::after {
  position: absolute;
  left: 0;
}

.menu-toggle__bar::before {
  top: -6px;
}

.menu-toggle__bar::after {
  top: 6px;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(92svh - var(--header-height));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero__backdrop::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.64) 42%, rgba(5, 5, 5, 0.38)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.18), #050505 100%);
  content: "";
}

.hero__noise {
  position: absolute;
  inset: -20%;
  z-index: 3;
  opacity: 0.18;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.2) 0 1px, transparent 1px),
    radial-gradient(circle, rgba(156, 255, 66, 0.16) 0 1px, transparent 1px);
  background-position: 0 0, 6px 9px;
  background-size: 12px 12px, 18px 18px;
  animation: static-shift 8s steps(8) infinite;
}

.tv-wall {
  position: absolute;
  inset: -4rem -4rem auto 30%;
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: clamp(0.7rem, 1.8vw, 1.2rem);
  transform: rotate(-2deg);
  opacity: 0.9;
}

.crt {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    linear-gradient(145deg, #202027, #050507 65%),
    var(--black);
  border: 10px solid #1d1b1e;
  border-radius: 8px;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.08),
    inset 0 0 28px rgba(0, 0, 0, 0.75),
    0 14px 34px rgba(0, 0, 0, 0.56),
    0 0 26px rgba(255, 36, 53, 0.13);
  transform: rotate(var(--tilt));
}

.crt::before,
.crt::after,
.broadcast-screen::before,
.collection-card__frame::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
}

.crt::before,
.broadcast-screen::before,
.collection-card__frame::before {
  background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.22) 0 1px, transparent 1px 4px);
  mix-blend-mode: multiply;
}

.crt::after {
  opacity: 0.26;
  background: radial-gradient(circle at 50% 50%, transparent 40%, rgba(0, 0, 0, 0.78) 100%);
}

.crt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--bone);
  filter: saturate(1.05) contrast(1.05);
}

.crt__label {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 1rem;
  color: var(--green);
  background:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 6px),
    radial-gradient(circle at 50% 50%, rgba(156, 255, 66, 0.18), rgba(0, 0, 0, 0.92) 62%);
  font-family: Impact, Haettenschweiler, "Arial Narrow", sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.9rem);
  line-height: 0.95;
  text-align: center;
  text-shadow: 0 0 15px currentColor;
  text-transform: uppercase;
}

.crt--static .crt__label {
  color: var(--bone);
  background:
    repeating-radial-gradient(circle at 50% 50%, #f8f8f8 0 1px, #111 1px 3px, #777 3px 4px),
    var(--static);
  background-size: 5px 5px;
  mix-blend-mode: screen;
}

.crt--signal .crt__label {
  color: var(--red);
}

.crt__shine {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.22), transparent 38%);
  opacity: 0.24;
}

.hero__content {
  position: relative;
  display: grid;
  min-height: calc(88svh - var(--header-height));
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
}

.hero__copy {
  max-width: 880px;
  animation: fade-up 720ms ease both;
}

.eyebrow,
.section-kicker {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--bone);
  font-family: Impact, Haettenschweiler, "Arial Narrow", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 850px;
  margin-bottom: 1rem;
  font-size: clamp(4rem, 12vw, 9.6rem);
  line-height: 0.82;
  text-shadow:
    3px 0 0 rgba(255, 36, 53, 0.48),
    -2px 0 0 rgba(156, 255, 66, 0.28),
    0 0 34px rgba(255, 36, 53, 0.28);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 6vw, 5.3rem);
  line-height: 0.9;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 0.95;
}

p {
  color: var(--bone-muted);
  font-size: clamp(1rem, 1.7vw, 1.16rem);
}

.hero__lede {
  max-width: 620px;
  color: var(--bone);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.hero__actions,
.mint-panel__card,
.contract-box,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.hero__actions {
  margin: 2rem 0 1.4rem;
}

.hero__actions .button::after {
  display: none;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.05rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button::after {
  position: absolute;
  inset: auto 12px 8px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.45;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--black);
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 28px rgba(156, 255, 66, 0.28), 0 0 2px rgba(244, 234, 214, 0.9);
}

.button--primary:hover {
  background: var(--bone);
  border-color: var(--bone);
}

.button--secondary {
  color: var(--bone);
  background: rgba(255, 36, 53, 0.13);
  border-color: rgba(255, 36, 53, 0.42);
}

.button--secondary:hover {
  border-color: var(--red);
  box-shadow: 0 0 26px rgba(255, 36, 53, 0.2);
}

.button--full {
  width: 100%;
}

.hero-stats {
  display: grid;
  max-width: 780px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
  border: 1px solid var(--line);
  background: rgba(244, 234, 214, 0.1);
}

.hero-stats li {
  min-width: 0;
  padding: 0.9rem;
  background: rgba(5, 5, 5, 0.78);
}

.hero-stats span,
.detail-list dt,
.contract-box span,
.collection-card__meta span,
.timeline-item span {
  display: block;
  color: var(--static);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-stats strong,
.detail-list dd,
.collection-card__meta strong {
  display: block;
  margin: 0.18rem 0 0;
  color: var(--bone);
  font-family: Impact, Haettenschweiler, "Arial Narrow", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1;
  text-transform: uppercase;
}

.snapshot-note {
  max-width: 640px;
  margin: 1rem 0 0;
  color: var(--static);
  font-size: 0.9rem;
}

.section {
  position: relative;
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  border-bottom: 1px solid var(--line);
}

.section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 36, 53, 0.04), transparent 28%, rgba(156, 255, 66, 0.035)),
    repeating-linear-gradient(135deg, rgba(244, 234, 214, 0.03) 0 1px, transparent 1px 18px);
  content: "";
}

.section > * {
  position: relative;
}

.section--mint {
  padding: clamp(5.5rem, 10vw, 9rem) 0;
}

.mint-shell,
.split-section,
.show-grid,
.faq-shell {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
}

.mint-shell {
  display: block;
  max-width: min(1080px, calc(100vw - 32px));
}

.mint-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 430px);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(1.4rem, 4vw, 3.25rem);
  background:
    linear-gradient(135deg, rgba(255, 36, 53, 0.12), transparent 30%),
    linear-gradient(145deg, rgba(244, 234, 214, 0.08), rgba(5, 5, 5, 0.72));
  border: 1px solid rgba(244, 234, 214, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
}

.mint-panel__copy {
  align-self: center;
  min-width: 0;
  max-width: 520px;
}

.mint-panel__copy h2 {
  max-width: 10.5ch;
  margin-bottom: 1.15rem;
  font-size: clamp(2.45rem, 4.7vw, 4.4rem);
  line-height: 0.88;
  text-wrap: balance;
}

.mint-panel__copy .section-kicker {
  margin-bottom: 0.85rem;
}

.mint-panel__card {
  position: relative;
  z-index: 1;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
  padding: clamp(1rem, 2vw, 1.25rem);
  background: rgba(5, 5, 5, 0.72);
  border: 1px solid rgba(156, 255, 66, 0.2);
  border-radius: 8px;
}

.mint-panel__card .button::after {
  display: none;
}

.mint-panel__status {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem;
  color: var(--black);
  background: linear-gradient(135deg, var(--green), #f5ffcf);
  border-radius: 6px;
  font-weight: 950;
  text-transform: uppercase;
}

.mint-panel__status strong {
  white-space: nowrap;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(244, 234, 214, 0.1);
}

.detail-list div {
  min-width: 0;
  padding: 0.8rem;
  background: rgba(10, 10, 13, 0.94);
}

.contract-box {
  position: relative;
  padding: 0.85rem;
  background: rgba(160, 68, 255, 0.12);
  border: 1px solid rgba(160, 68, 255, 0.34);
  border-radius: 6px;
}

.contract-box code {
  color: var(--bone);
  font-family: Consolas, "Liberation Mono", monospace;
  font-size: 0.95rem;
}

.copy-button,
.footer-contract {
  min-height: 34px;
  padding: 0.45rem 0.7rem;
  color: var(--black);
  background: var(--bone);
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.copy-status {
  min-width: 58px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
}

.split-section {
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1fr);
  align-items: start;
}

.section-copy {
  max-width: 620px;
}

.section-copy--wide {
  max-width: 850px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.collection-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  background: rgba(12, 12, 15, 0.84);
  border: 1px solid rgba(244, 234, 214, 0.13);
  border-radius: 8px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.26);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.collection-card:hover {
  border-color: rgba(255, 36, 53, 0.62);
  box-shadow: 0 0 22px rgba(255, 36, 53, 0.16), 0 18px 35px rgba(0, 0, 0, 0.34);
  transform: translateY(-4px) rotate(-0.5deg);
}

.collection-card__frame {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--static-dark);
}

.collection-card__frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--bone);
  transition: transform 180ms ease, filter 180ms ease;
}

.collection-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.12) contrast(1.08);
}

.collection-card__fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  color: var(--green);
  background:
    repeating-radial-gradient(circle, #f4ead6 0 1px, #111 1px 3px, #777 3px 4px);
  font-family: Impact, Haettenschweiler, "Arial Narrow", sans-serif;
  font-size: 1.4rem;
}

.collection-card__frame.is-missing .collection-card__fallback {
  z-index: 2;
}

.collection-card__meta {
  padding: 0.85rem;
}

.section--characters {
  background:
    radial-gradient(circle at 12% 16%, rgba(160, 68, 255, 0.16), transparent 28rem),
    #050505;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.feature-card {
  position: relative;
  min-height: 240px;
  padding: 1.15rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(244, 234, 214, 0.08), rgba(5, 5, 5, 0.88)),
    var(--black-soft);
  border: 1px solid rgba(244, 234, 214, 0.14);
  border-radius: 8px;
}

.feature-card::after {
  position: absolute;
  inset: auto -20% -32% 20%;
  height: 120px;
  background: radial-gradient(circle, rgba(156, 255, 66, 0.18), transparent 65%);
  content: "";
}

.feature-card__dot {
  display: block;
  width: 12px;
  height: 12px;
  margin-bottom: 1rem;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--red);
}

.show-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  align-items: center;
}

.broadcast-screen {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 320px;
  overflow: hidden;
  background: #111;
  border: 18px solid #1f1f24;
  border-radius: 8px;
  box-shadow:
    inset 0 0 80px rgba(0, 0, 0, 0.72),
    0 0 44px rgba(156, 255, 66, 0.14),
    0 30px 70px rgba(0, 0, 0, 0.48);
}

.broadcast-screen__static {
  position: absolute;
  inset: 0;
  opacity: 0.74;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 4px),
    repeating-radial-gradient(circle, #f4ead6 0 1px, #111 1px 3px, #666 3px 5px);
  background-size: 9px 100%, 7px 7px;
  animation: static-shift 640ms steps(4) infinite;
}

.broadcast-screen__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.7rem;
  padding: 2rem;
  color: var(--bone);
  text-align: center;
  background: radial-gradient(circle at 50% 50%, rgba(5, 5, 5, 0.18), rgba(5, 5, 5, 0.82));
}

.broadcast-screen__overlay span,
.broadcast-screen__overlay em {
  color: var(--green);
  font-size: clamp(0.78rem, 1.6vw, 1rem);
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.broadcast-screen__overlay strong {
  color: var(--red);
  font-family: Impact, Haettenschweiler, "Arial Narrow", sans-serif;
  font-size: clamp(3rem, 8vw, 7.4rem);
  line-height: 0.85;
  text-shadow: 0 0 18px rgba(255, 36, 53, 0.48);
  text-transform: uppercase;
}

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

.timeline-item {
  min-width: 0;
  padding: 1rem;
  background: rgba(12, 12, 15, 0.84);
  border: 1px solid rgba(244, 234, 214, 0.14);
  border-radius: 8px;
}

.timeline-item h3 {
  margin-top: 0.85rem;
}

.timeline-item p,
.feature-card p,
.faq-item p,
.site-footer p {
  font-size: 1rem;
}

.faq-shell {
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: rgba(12, 12, 15, 0.84);
  border: 1px solid rgba(244, 234, 214, 0.14);
  border-radius: 8px;
}

.faq-item[open] {
  border-color: rgba(156, 255, 66, 0.42);
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem;
  color: var(--bone);
  font-family: Impact, Haettenschweiler, "Arial Narrow", sans-serif;
  font-size: 1.3rem;
  line-height: 1;
  text-transform: uppercase;
}

.faq-item p {
  padding: 0 1rem 1rem;
  margin: 0;
}

.site-footer {
  padding: 2.2rem 0;
  background: #050505;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
}

.brand-lockup--footer {
  margin-bottom: 0.85rem;
}

.site-footer p {
  max-width: 560px;
  margin: 0;
}

.footer-contract {
  color: var(--bone);
  background: rgba(244, 234, 214, 0.08);
  border: 1px solid var(--line);
}

@keyframes static-shift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  25% {
    transform: translate3d(-2%, 1%, 0);
  }
  50% {
    transform: translate3d(2%, -1%, 0);
  }
  75% {
    transform: translate3d(-1%, -2%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .mint-panel {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .mint-panel__copy {
    max-width: 760px;
  }

  .mint-panel__copy h2 {
    max-width: 12ch;
  }
}

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

  .site-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
  }

  .mobile-menu {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    padding: 1rem;
    background: rgba(5, 5, 5, 0.96);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.54);
  }

  .mobile-menu.is-open {
    display: grid;
  }

  .mobile-menu .site-nav__link {
    padding: 0.75rem;
    background: rgba(244, 234, 214, 0.06);
    border-radius: 5px;
  }

  .mobile-menu__cta--dark {
    color: var(--bone);
    background: rgba(255, 36, 53, 0.18);
    border-color: rgba(255, 36, 53, 0.42);
  }

  .hero__content,
  .mint-shell,
  .mint-panel,
  .split-section,
  .show-grid,
  .faq-shell {
    grid-template-columns: 1fr;
  }

  .collection-grid,
  .feature-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 64px;
    --shell: min(100vw - 24px, 1180px);
  }

  body::before {
    opacity: 0.14;
  }

  .site-header {
    min-height: var(--header-height);
    padding: 0 12px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    max-width: 150px;
    font-size: 0.95rem;
  }

  .mobile-menu {
    right: 12px;
    left: 12px;
    grid-template-columns: 1fr;
  }

  .hero,
  .hero__content {
    min-height: auto;
  }

  .hero__content {
    padding-top: 4.2rem;
    padding-bottom: 3.5rem;
  }

  .tv-wall {
    inset: -2rem -8rem auto 2rem;
    grid-template-columns: repeat(3, 136px);
    gap: 0.55rem;
    opacity: 0.46;
  }

  h1 {
    font-size: clamp(3.4rem, 20vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.05rem, 13vw, 3.4rem);
  }

  .hero-stats,
  .detail-list,
  .collection-grid,
  .feature-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    max-width: 100%;
  }

  .hero__actions .button,
  .button--full {
    width: 100%;
  }

  .section--mint {
    padding-top: 4.2rem;
  }

  .mint-panel {
    gap: 1.4rem;
    padding: 1rem;
  }

  .mint-panel__copy {
    max-width: none;
  }

  .mint-panel__status {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .contract-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .section {
    padding: 4rem 0;
  }

  .broadcast-screen {
    min-height: 240px;
    border-width: 12px;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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