@font-face {
  font-family: "Anton";
  src: url("assets/fonts/anton.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("assets/fonts/geist-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("assets/fonts/geist-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("assets/fonts/geist-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("assets/fonts/geist-900.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

:root {
  --bg: #080504;
  --bg-deep: #030201;
  --surface: #17100d;
  --surface-2: #251712;
  --text: #fff1dc;
  --muted: #c9a587;
  --red: #d1844c;
  --red-deep: #6c2f1c;
  --acid: #c8f35a;
  --pink: #ffb07a;
  --line: rgba(245, 234, 216, 0.16);
  --shadow: rgba(0, 0, 0, 0.52);
  --noise-a: rgba(255, 255, 255, 0.13);
  --noise-b: rgba(200, 243, 90, 0.1);
  --noise-c: rgba(209, 132, 76, 0.12);
  --font-display: "Anton", Impact, Haettenschweiler, "Arial Black", sans-serif;
  --font-body: "Geist", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 80% 10%, rgba(216, 33, 33, 0.38), transparent 32rem),
    radial-gradient(circle at 12% 18%, rgba(187, 255, 22, 0.16), transparent 30rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 55%, #100808 100%);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-radial-gradient(circle at 17% 23%, var(--noise-a) 0 1px, transparent 1px 3px),
    repeating-radial-gradient(circle at 82% 71%, var(--noise-b) 0 1px, transparent 1px 5px),
    repeating-radial-gradient(circle at 36% 89%, var(--noise-c) 0 1px, transparent 1px 4px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 7px 7px, 11px 11px, 13px 13px, 54px 54px, 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), transparent 85%);
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.28;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(216, 33, 33, 0.04) 0 1px, transparent 1px 8px);
  mix-blend-mode: overlay;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.78'/%3E%3C/svg%3E"),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 5px);
  mix-blend-mode: soft-light;
}

.cursor-glow {
  position: fixed;
  left: var(--mx, 50%);
  top: var(--my, 18%);
  width: 34rem;
  height: 34rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(187, 255, 22, 0.16), rgba(216, 33, 33, 0.08) 35%, transparent 68%);
  pointer-events: none;
  z-index: 1;
  filter: blur(12px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  padding: 0.85rem 0;
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 7, 7, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(187, 255, 22, 0.56);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(187, 255, 22, 0.24), rgba(216, 33, 33, 0.18) 65%, rgba(0, 0, 0, 0.8));
  color: var(--acid);
  font: 900 1.2rem/1 var(--font-display);
  box-shadow: 0 0 28px rgba(187, 255, 22, 0.32);
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 0.96rem;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: 0.75rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.8rem);
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.nav-links a {
  padding: 0.7rem 0;
}

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

.copy-pill {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 42px;
  padding: 0 1rem;
  border: 1px solid rgba(187, 255, 22, 0.44);
  border-radius: 999px;
  background: rgba(187, 255, 22, 0.08);
  color: var(--text);
  cursor: pointer;
  font: 800 0.75rem/1 var(--font-body);
  text-transform: uppercase;
}

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

.section-band {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.22;
  background:
    repeating-radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(120deg, rgba(187, 255, 22, 0.04) 0 1px, transparent 1px 9px);
  mix-blend-mode: overlay;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(1.4rem, 4vw, 4rem);
  min-height: calc(100svh - 118px);
  padding: clamp(2rem, 6vw, 5rem) 0 3rem;
}

.hero::before,
.finale::before {
  content: "";
  position: absolute;
  inset: 7% auto auto -8%;
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle, rgba(216, 33, 33, 0.4), transparent 66%);
  filter: blur(10px);
  z-index: -1;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--acid);
  font-weight: 900;
  font-size: 0.8rem;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

h1 {
  max-width: 7.6em;
  margin-bottom: 0.65rem;
  font-size: clamp(4.3rem, 13vw, 10.5rem);
  text-shadow:
    0 0 20px rgba(216, 33, 33, 0.5),
    0 0 42px rgba(0, 0, 0, 0.9);
}

h2 {
  font-size: clamp(2.8rem, 7vw, 6.4rem);
}

h3 {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.ticker {
  margin-bottom: 1.3rem;
  color: var(--red);
  font: 900 clamp(2rem, 4vw, 3.8rem)/0.9 var(--font-display);
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(216, 33, 33, 0.42);
}

.hero-lede {
  max-width: 660px;
  color: #dac6b2;
  font-size: clamp(1.06rem, 1.5vw, 1.32rem);
  line-height: 1.7;
}

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

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 126px;
  min-height: 48px;
  padding: 0 1.2rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 950;
  text-transform: uppercase;
  transform: skew(-8deg);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.38);
}

.btn::before,
.copy-pill::before,
.signal-link::before,
.timeline-item::before,
.rule-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background:
    repeating-radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.36) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.18) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
}

.btn > *,
.copy-pill > *,
.signal-link > *,
.timeline-item > *,
.rule-card > * {
  position: relative;
  z-index: 1;
}

.btn:hover {
  transform: skew(-8deg) translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  border-color: rgba(216, 33, 33, 0.8);
  box-shadow: 0 0 32px rgba(216, 33, 33, 0.32);
}

.btn-secondary {
  background: rgba(245, 234, 216, 0.08);
}

.btn-ghost {
  color: var(--acid);
  background: rgba(187, 255, 22, 0.08);
  border-color: rgba(187, 255, 22, 0.42);
}

.is-pending {
  cursor: not-allowed;
}

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 500px;
}

.media-frame {
  position: sticky;
  top: 100px;
  overflow: hidden;
  min-height: 500px;
  border: 1px solid rgba(187, 255, 22, 0.24);
  background: var(--surface);
  box-shadow:
    0 40px 90px var(--shadow),
    0 0 72px rgba(187, 255, 22, 0.24);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 34px), calc(100% - 34px) 100%, 0 100%);
}

.media-frame::after,
.chain-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.25' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.62'/%3E%3C/svg%3E"),
    linear-gradient(90deg, rgba(187, 255, 22, 0.12), transparent 18%, transparent 78%, rgba(216, 33, 33, 0.18)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 4px);
  mix-blend-mode: screen;
  opacity: 0.66;
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  filter: saturate(1.22) contrast(1.18) brightness(0.95);
}

.warning-strip {
  position: absolute;
  right: -2rem;
  bottom: 3rem;
  display: grid;
  gap: 0.35rem;
  z-index: 3;
}

.warning-strip span {
  display: block;
  padding: 0.45rem 0.7rem;
  background: var(--acid);
  color: #091100;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(187, 255, 22, 0.34);
  transform: skew(-8deg);
}

.ticker-rail {
  position: relative;
  z-index: 3;
  overflow: clip;
  height: 54px;
  border-block: 1px solid rgba(245, 234, 216, 0.14);
  background: linear-gradient(90deg, rgba(216, 33, 33, 0.28), rgba(187, 255, 22, 0.1), rgba(216, 33, 33, 0.2));
  contain: layout paint;
}

.rail-track {
  position: absolute;
  inset: 0 auto 0 0;
  display: flex;
  width: max-content;
  gap: 2.4rem;
  align-items: center;
  animation: rail 25s linear infinite;
}

.rail-track span {
  white-space: nowrap;
  font: 900 1rem/1 var(--font-display);
  text-transform: uppercase;
}

@keyframes rail {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-45%);
  }
}

.narrative,
.chain,
.rules,
.timeline,
.signals,
.finale {
  padding: clamp(4.5rem, 8vw, 7.6rem) 0;
}

.narrative-grid,
.chain,
.timeline,
.signals {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.78fr);
  gap: clamp(1.6rem, 5vw, 4.5rem);
  align-items: center;
}

.large-statement p,
.story-stack p,
.chain-copy p,
.timeline-copy p,
.finale p {
  color: #d2bda9;
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
  line-height: 1.75;
}

.story-stack {
  padding-left: clamp(1rem, 3vw, 2.2rem);
  border-left: 1px solid rgba(216, 33, 33, 0.55);
  background:
    linear-gradient(90deg, rgba(216, 33, 33, 0.12), transparent 65%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 5px);
}

.story-stack .callout,
.quote {
  color: var(--acid);
  font: 900 clamp(1.9rem, 4vw, 3.4rem)/0.98 var(--font-display);
  text-transform: uppercase;
}

.chain {
  width: min(1280px, calc(100% - 32px));
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 0.9fr);
}

.chain-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 234, 216, 0.12);
  background: #111;
  box-shadow: 0 34px 88px var(--shadow);
}

.chain-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.rule-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 1.35rem;
  border: 1px solid rgba(245, 234, 216, 0.12);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 90 90'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='90' height='90' filter='url(%23n)' opacity='.52'/%3E%3C/svg%3E"),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(20, 17, 17, 0.82);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
}

.rule-card span {
  display: block;
  margin-bottom: 2.8rem;
  color: var(--red);
  font: 900 4rem/0.8 var(--font-display);
}

.rule-card p {
  color: var(--muted);
  line-height: 1.65;
}

.timeline {
  align-items: stretch;
}

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

.timeline-item {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.3rem;
  min-height: 84px;
  padding: 1rem;
  border: 1px solid rgba(245, 234, 216, 0.14);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.timeline-item span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline-item strong {
  font-size: 1.05rem;
}

.timeline-item.is-active {
  border-color: rgba(187, 255, 22, 0.58);
  background: rgba(187, 255, 22, 0.1);
  box-shadow: 0 0 34px rgba(187, 255, 22, 0.14);
}

.timeline-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  min-height: 310px;
  padding: 1.4rem;
  border: 1px solid rgba(216, 33, 33, 0.4);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='110' height='110' viewBox='0 0 110 110'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='110' height='110' filter='url(%23n)' opacity='.46'/%3E%3C/svg%3E"),
    linear-gradient(135deg, rgba(114, 11, 16, 0.64), rgba(8, 8, 8, 0.9)),
    var(--surface-2);
}

.timeline-panel span {
  color: var(--acid);
  font: 900 1.4rem/1 var(--font-display);
  text-transform: uppercase;
}

.timeline-panel p {
  margin: 0.8rem 0 0;
  color: #ecd8c3;
  line-height: 1.7;
}

.signals {
  align-items: start;
  border-top: 1px solid rgba(245, 234, 216, 0.14);
}

.signal-actions {
  justify-content: end;
  margin-top: 0;
}

.signal-link {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: center;
  min-width: 158px;
  min-height: 86px;
  padding: 1rem;
  border: 1px solid rgba(245, 234, 216, 0.14);
  background: rgba(255, 255, 255, 0.045);
}

.signal-link span {
  color: var(--text);
  font-weight: 950;
  text-transform: uppercase;
}

.signal-link strong {
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.finale {
  width: 100%;
  margin-top: 1rem;
  padding-inline: 16px;
  background:
    linear-gradient(180deg, rgba(216, 33, 33, 0.18), rgba(0, 0, 0, 0.8)),
    radial-gradient(circle at 48% 18%, rgba(187, 255, 22, 0.2), transparent 34rem);
}

.finale-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.finale h2 {
  color: var(--acid);
  text-shadow: 0 0 32px rgba(187, 255, 22, 0.24);
}

.site-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 2rem 0;
  color: var(--muted);
  border-top: 1px solid rgba(245, 234, 216, 0.14);
}

.site-footer p {
  margin: 0;
  text-align: right;
}

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

  .nav-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.15rem;
  }

  .hero,
  .narrative-grid,
  .chain,
  .timeline,
  .signals {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 1.6rem;
  }

  .hero-media {
    min-height: 420px;
  }

  .media-frame,
  .media-frame img {
    min-height: 420px;
  }

  .rule-grid {
    grid-template-columns: 1fr;
  }

  .signal-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .cursor-glow {
    display: none;
  }

  .hero::before,
  .finale::before {
    display: none;
  }

  .site-header,
  .section-band,
  .chain,
  .site-footer {
    width: min(100% - 22px, 1180px);
  }

  .site-header {
    min-height: 64px;
  }

  .copy-pill {
    width: 42px;
    padding: 0;
  }

  .copy-pill span {
    display: none;
  }

  h1 {
    font-size: clamp(3.45rem, 18vw, 5.4rem);
  }

  h2 {
    font-size: clamp(2.35rem, 14vw, 4rem);
  }

  .hero-actions,
  .signal-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .rail-track {
    position: static;
    width: 100%;
    max-width: 100%;
    gap: 1rem;
    padding: 0 0.7rem;
    animation: none;
    overflow: hidden;
  }

  .rail-track span {
    font-size: 0.88rem;
  }

  .rail-track span:nth-child(n + 4) {
    display: none;
  }

  .btn,
  .signal-link {
    width: 100%;
  }

  .hero-media,
  .media-frame,
  .media-frame img {
    min-height: 360px;
  }

  .warning-strip {
    right: 0.4rem;
    bottom: 1rem;
    font-size: 0.78rem;
  }

  .story-stack {
    padding-left: 1rem;
  }

  .rule-card {
    min-height: 220px;
  }

  .site-footer {
    display: grid;
  }

  .site-footer p {
    text-align: left;
  }
}

/* Closer reference-style pass */
body {
  background: #07090d;
}

.site-header {
  width: 100%;
  min-height: 120px;
  margin: 0;
  padding: 0 5.55vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.96), rgba(7, 8, 10, 0.94)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 2px, transparent 2px 12px);
  backdrop-filter: none;
}

.site-header.is-scrolled {
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.98), rgba(7, 8, 10, 0.96)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 12px);
  border-bottom-color: rgba(216, 33, 33, 0.5);
}

.brand {
  gap: 0.55rem;
}

.brand-mark {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--acid);
  font-size: 2.4rem;
  text-shadow: 0 0 18px rgba(187, 255, 22, 0.6);
  box-shadow: none;
}

.brand strong {
  color: #fff;
  font: 900 1.55rem/0.88 var(--font-display);
  text-shadow: 2px 2px 0 #000;
}

.brand small {
  color: #d4d4d4;
  font: 900 0.78rem/1 var(--font-display);
}

.nav-links {
  gap: clamp(1rem, 2.1vw, 2rem);
  color: #fff;
  font: 900 clamp(1rem, 1.28vw, 1.45rem)/1 var(--font-display);
}

.nav-links a {
  padding: 0;
  text-shadow: 2px 2px 0 #000;
}

.copy-pill {
  min-width: 255px;
  min-height: 68px;
  border-radius: 0;
  border: 4px solid #156b96;
  background: #22aee8;
  color: #fff;
  font: 900 1.65rem/1 var(--font-display);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.18), 0 0 28px rgba(34, 174, 232, 0.24);
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.45);
  transform: none;
}

.telegram-dot {
  color: #fff;
  font-size: 1rem;
  transform: rotate(45deg);
}

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-content: start;
  width: 100%;
  min-height: calc(100svh - 120px);
  padding: clamp(5.3rem, 8.8vw, 7.2rem) 5.5vw clamp(3.4rem, 5vw, 5.1rem);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 8, 10, 0.18) 0%, rgba(7, 8, 10, 0.45) 24%, rgba(5, 5, 8, 0.95) 80%, #050608 100%),
    radial-gradient(circle at 0% 35%, rgba(216, 33, 33, 0.4), transparent 25rem),
    radial-gradient(circle at 100% 38%, rgba(216, 33, 33, 0.5), transparent 32rem),
    #07090d;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), transparent 28%, transparent 62%, rgba(110, 10, 15, 0.74)),
    linear-gradient(180deg, rgba(110, 10, 15, 0.55), rgba(0, 0, 0, 0) 31%, rgba(0, 0, 0, 0.86) 92%),
    url("assets/images/suscat.png") center 42% / cover no-repeat;
  opacity: 0.38;
  filter: saturate(0.9) contrast(1.2);
  z-index: -3;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 2px, transparent 2px 12px),
    repeating-radial-gradient(circle at 42% 18%, rgba(255, 255, 255, 0.11) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 17% 48%, rgba(0, 0, 0, 0.92) 0 13rem, transparent 25rem),
    radial-gradient(ellipse at 88% 55%, rgba(151, 13, 18, 0.48), transparent 31rem),
    linear-gradient(180deg, transparent 0 55%, rgba(0, 0, 0, 0.82) 78%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  margin: 0 auto 5.2rem;
  text-align: center;
}

.hero .eyebrow {
  margin-bottom: 0.95rem;
  color: #ff3030;
  font: 900 clamp(0.92rem, 1.5vw, 1.35rem)/1 var(--font-display);
  text-shadow: 2px 2px 0 #000;
}

.hero h1 {
  max-width: none;
  margin: 0;
  color: #fff;
  font-size: clamp(4.4rem, 6.25vw, 6.7rem);
  line-height: 0.82;
  text-align: center;
  text-shadow: 4px 4px 0 #000, 0 0 34px rgba(0, 0, 0, 0.9);
}

.hero-media {
  width: min(780px, 72vw);
  min-height: 0;
  margin-top: -1.35rem;
  align-self: auto;
}

.media-frame {
  position: relative;
  top: auto;
  width: 100%;
  min-height: 0;
  border: 0;
  background: #050608;
  box-shadow: 0 46px 100px rgba(0, 0, 0, 0.72);
  clip-path: none;
}

.media-frame img {
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.08) brightness(0.72);
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  transform: translate(-38%, -50%);
  border-top: 34px solid transparent;
  border-bottom: 34px solid transparent;
  border-left: 54px solid #fff;
  filter: drop-shadow(0 0 25px rgba(0, 0, 0, 0.72));
}

.warning-strip {
  display: none;
}

.hero-form {
  display: grid;
  grid-template-columns: minmax(260px, 345px) 220px;
  gap: 14px;
  justify-content: center;
  width: min(700px, 100%);
  margin-top: 2rem;
}

.token-input {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 62px;
  border: 4px solid rgba(255, 255, 255, 0.12);
  background: rgba(75, 73, 78, 0.72);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.token-input span {
  padding-inline: 1rem 0.65rem;
  color: #aaa;
  font: 900 1.15rem/1 var(--font-display);
}

.token-input input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #cfcfd2;
  font: 900 1.45rem/1 var(--font-display);
  text-transform: uppercase;
}

.hero-form .btn {
  min-height: 62px;
  border-radius: 0;
  border: 4px solid rgba(125, 0, 8, 0.82);
  color: #fff;
  font: 900 1.6rem/1 var(--font-display);
  transform: none;
}

.hero-form .btn:hover {
  transform: translateY(-2px);
}

.hero-lede {
  width: min(650px, 100%);
  margin: 1.55rem auto 0;
  color: #d7d7d7;
  text-align: center;
  font: 600 1.04rem/1.6 var(--font-body);
}

.ticker-rail {
  height: 62px;
  border-top: 2px solid rgba(255, 255, 255, 0.08);
  border-bottom: 2px solid rgba(216, 33, 33, 0.36);
  background:
    linear-gradient(90deg, rgba(10, 13, 18, 0.96), rgba(96, 13, 16, 0.9), rgba(10, 13, 18, 0.96)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 12px);
}

.rail-track span {
  color: #fff;
  font-size: 1.2rem;
  text-shadow: 2px 2px 0 #000;
}

.story-screen {
  width: 100%;
  min-height: 86svh;
  padding: clamp(5rem, 8vw, 8.5rem) 5.55vw;
  background:
    radial-gradient(circle at 0% 42%, rgba(216, 33, 33, 0.34), transparent 27rem),
    radial-gradient(circle at 100% 48%, rgba(216, 33, 33, 0.34), transparent 31rem),
    linear-gradient(180deg, #090b10 0%, #050608 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.story-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 2px, transparent 2px 12px),
    repeating-radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
}

.story-screen .section-kicker,
.story-screen > h2,
.story-screen .narrative-grid,
.story-screen .rule-grid {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.narrative-grid,
.chain,
.timeline,
.signals {
  grid-template-columns: minmax(0, 0.82fr) minmax(330px, 0.72fr);
}

.chain {
  width: 100%;
  grid-template-columns: minmax(340px, 0.74fr) minmax(0, 0.82fr);
}

.chain .chain-media,
.chain .chain-copy {
  position: relative;
  width: min(1180px, 100%);
}

.chain-copy {
  max-width: 650px;
}

.section-kicker,
.eyebrow {
  color: #ff3030;
  font-family: var(--font-display);
  text-shadow: 2px 2px 0 #000;
}

.large-statement h2,
.chain-copy h2,
.rules h2,
.timeline-copy h2,
.signals h2,
.finale h2 {
  color: #fff;
  text-shadow: 4px 4px 0 #000, 0 0 28px rgba(216, 33, 33, 0.34);
}

.story-stack {
  padding: 0;
  border-left: 0;
  background: transparent;
}

.story-stack p,
.large-statement p,
.chain-copy p,
.timeline-copy p,
.finale p {
  color: #e2e2e2;
}

.story-stack .callout,
.quote {
  color: #ff3030;
  text-shadow: 2px 2px 0 #000;
}

.chain-media {
  border: 0;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.65);
}

.chain-media img {
  aspect-ratio: 3 / 4;
  filter: saturate(1.05) contrast(1.1) brightness(0.8);
}

.rule-card,
.timeline-item,
.timeline-panel,
.signal-link {
  border-radius: 0;
  border-color: rgba(255, 255, 255, 0.13);
  background-color: rgba(30, 32, 38, 0.68);
}

.rule-card span,
.timeline-panel span {
  color: #ff3030;
}

.site-footer {
  width: 100%;
  padding: 2.2rem 5.55vw;
  background: #050608;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto 1fr;
    min-height: 104px;
    padding-inline: 24px;
  }

  .copy-pill {
    min-width: 190px;
    min-height: 58px;
    font-size: 1.2rem;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.35rem;
  }

  .hero {
    min-height: calc(100svh - 104px);
    padding-top: 4rem;
  }

  .hero-media {
    width: min(820px, 92vw);
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 96px;
    padding: 0.75rem 12px 0.55rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
  }

  .brand strong {
    font-size: 1.12rem;
  }

  .copy-pill {
    width: auto;
    min-width: 140px;
    min-height: 48px;
    padding-inline: 0.7rem;
    border-width: 3px;
    font-size: 1rem;
    gap: 0.45rem;
  }

  .copy-pill .telegram-dot {
    display: inline-block;
    font-size: 0.72rem;
  }

  .copy-pill span:not(.telegram-dot) {
    display: inline;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.95rem;
  }

  .nav-links a:nth-child(5) {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 96px);
    padding: 3.4rem 11px 2.6rem;
  }

  .hero-copy {
    margin-bottom: 2.2rem;
  }

  .hero .eyebrow {
    font-size: 0.86rem;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 17vw, 4.9rem);
  }

  .hero-media {
    width: 100%;
    margin-top: 0;
  }

  .play-button {
    border-top-width: 22px;
    border-bottom-width: 22px;
    border-left-width: 35px;
  }

  .hero-form {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 1.15rem;
  }

  .token-input,
  .hero-form .btn {
    min-height: 56px;
    border-width: 3px;
  }

  .token-input input {
    font-size: 1.05rem;
  }

  .hero-lede {
    font-size: 0.94rem;
  }

  .story-screen {
    min-height: auto;
    padding: 4.2rem 12px;
  }

  .narrative-grid,
  .chain,
  .timeline,
  .signals {
    grid-template-columns: 1fr;
  }

  .chain-media img {
    aspect-ratio: 4 / 3;
  }
}

/* Logo/image-based palette polish */
body {
  background:
    radial-gradient(circle at 82% 16%, rgba(200, 243, 90, 0.16), transparent 28rem),
    radial-gradient(circle at 18% 28%, rgba(209, 132, 76, 0.26), transparent 30rem),
    linear-gradient(180deg, #090604 0%, #030201 100%);
}

body::before {
  background:
    repeating-radial-gradient(circle at 17% 23%, rgba(255, 241, 220, 0.11) 0 1px, transparent 1px 3px),
    repeating-radial-gradient(circle at 82% 71%, rgba(200, 243, 90, 0.1) 0 1px, transparent 1px 5px),
    repeating-radial-gradient(circle at 36% 89%, rgba(209, 132, 76, 0.12) 0 1px, transparent 1px 4px),
    linear-gradient(rgba(255, 241, 220, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 241, 220, 0.025) 1px, transparent 1px);
  background-size: 7px 7px, 11px 11px, 13px 13px, 54px 54px, 54px 54px;
}

body::after {
  background:
    repeating-linear-gradient(0deg, rgba(255, 241, 220, 0.07) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(209, 132, 76, 0.035) 0 1px, transparent 1px 8px);
}

.cursor-glow {
  background: radial-gradient(circle, rgba(200, 243, 90, 0.16), rgba(209, 132, 76, 0.11) 35%, transparent 68%);
}

.site-header,
.site-header.is-scrolled {
  background:
    linear-gradient(180deg, rgba(9, 6, 4, 0.98), rgba(15, 10, 7, 0.95)),
    repeating-linear-gradient(135deg, rgba(255, 241, 220, 0.045) 0 2px, transparent 2px 12px);
  border-bottom-color: rgba(209, 132, 76, 0.35);
}

.brand-mark {
  color: var(--acid);
  text-shadow: 0 0 18px rgba(200, 243, 90, 0.72), 0 0 34px rgba(209, 132, 76, 0.26);
}

.brand strong,
.nav-links a,
.hero h1,
.large-statement h2,
.chain-copy h2,
.rules h2,
.timeline-copy h2,
.signals h2 {
  color: #fff1dc;
}

.copy-pill {
  border-color: #88a83a;
  background: linear-gradient(180deg, #d9ff63, #9ec53c);
  color: #161006;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2), 0 0 32px rgba(200, 243, 90, 0.28);
  text-shadow: 1px 1px 0 rgba(255, 241, 220, 0.35);
}

.telegram-dot {
  color: #3c4f08;
}

.hero {
  background:
    linear-gradient(180deg, rgba(9, 6, 4, 0.2) 0%, rgba(9, 6, 4, 0.55) 27%, rgba(5, 3, 2, 0.95) 80%, #030201 100%),
    radial-gradient(circle at 0% 35%, rgba(209, 132, 76, 0.38), transparent 25rem),
    radial-gradient(circle at 100% 38%, rgba(200, 243, 90, 0.2), transparent 31rem),
    #090604;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(3, 2, 1, 0.94), transparent 28%, transparent 62%, rgba(93, 47, 24, 0.7)),
    linear-gradient(180deg, rgba(119, 62, 31, 0.5), rgba(0, 0, 0, 0) 31%, rgba(3, 2, 1, 0.88) 92%),
    url("assets/images/suscat.png") center 42% / cover no-repeat;
}

.hero-bg {
  background:
    radial-gradient(ellipse at 17% 48%, rgba(0, 0, 0, 0.92) 0 13rem, transparent 25rem),
    radial-gradient(ellipse at 88% 55%, rgba(200, 243, 90, 0.15), transparent 29rem),
    radial-gradient(ellipse at 70% 45%, rgba(209, 132, 76, 0.2), transparent 32rem),
    linear-gradient(180deg, transparent 0 55%, rgba(3, 2, 1, 0.84) 78%);
}

.hero .eyebrow,
.section-kicker,
.eyebrow,
.story-stack .callout,
.quote,
.rule-card span,
.timeline-panel span {
  color: #d1844c;
  text-shadow: 2px 2px 0 #000, 0 0 18px rgba(209, 132, 76, 0.32);
}

.ticker {
  color: #d1844c;
}

.btn-primary,
.hero-form .btn {
  border-color: rgba(120, 56, 26, 0.9);
  background: linear-gradient(180deg, #e19755, #9a4727);
  color: #fff1dc;
  box-shadow: 0 0 32px rgba(209, 132, 76, 0.32);
}

.btn-ghost,
.timeline-item.is-active {
  color: var(--acid);
  border-color: rgba(200, 243, 90, 0.55);
  background: rgba(200, 243, 90, 0.09);
  box-shadow: 0 0 34px rgba(200, 243, 90, 0.14);
}

.token-input {
  border-color: rgba(255, 241, 220, 0.14);
  background:
    linear-gradient(180deg, rgba(65, 48, 38, 0.8), rgba(38, 26, 20, 0.8)),
    rgba(37, 23, 18, 0.82);
}

.token-input span,
.token-input input {
  color: #e4c0a0;
}

.media-frame,
.chain-media {
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.72), 0 0 58px rgba(200, 243, 90, 0.13);
}

.media-frame::after,
.chain-media::after {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.25' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.62'/%3E%3C/svg%3E"),
    linear-gradient(90deg, rgba(200, 243, 90, 0.12), transparent 18%, transparent 78%, rgba(209, 132, 76, 0.18)),
    repeating-linear-gradient(0deg, rgba(255, 241, 220, 0.05) 0 1px, transparent 1px 4px);
}

.ticker-rail {
  border-bottom-color: rgba(209, 132, 76, 0.38);
  background:
    linear-gradient(90deg, rgba(9, 6, 4, 0.96), rgba(86, 42, 22, 0.9), rgba(9, 6, 4, 0.96)),
    repeating-linear-gradient(135deg, rgba(255, 241, 220, 0.05) 0 2px, transparent 2px 12px);
}

.story-screen {
  background:
    radial-gradient(circle at 0% 42%, rgba(209, 132, 76, 0.28), transparent 27rem),
    radial-gradient(circle at 100% 48%, rgba(200, 243, 90, 0.13), transparent 31rem),
    linear-gradient(180deg, #0d0806 0%, #030201 100%);
}

.rule-card,
.timeline-item,
.timeline-panel,
.signal-link {
  background-color: rgba(34, 24, 18, 0.72);
  border-color: rgba(255, 241, 220, 0.13);
}

.timeline-panel {
  border-color: rgba(209, 132, 76, 0.42);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='110' height='110' viewBox='0 0 110 110'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='110' height='110' filter='url(%23n)' opacity='.46'/%3E%3C/svg%3E"),
    linear-gradient(135deg, rgba(108, 47, 28, 0.68), rgba(8, 5, 4, 0.92)),
    var(--surface-2);
}

.finale {
  background:
    linear-gradient(180deg, rgba(209, 132, 76, 0.2), rgba(3, 2, 1, 0.86)),
    radial-gradient(circle at 48% 18%, rgba(200, 243, 90, 0.18), transparent 34rem);
}

.finale h2 {
  color: var(--acid);
  text-shadow: 0 0 32px rgba(200, 243, 90, 0.24);
}

.site-footer {
  display: block;
  background: #030201;
}

.site-footer .brand-mark img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
}

.footer-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
}

.footer-topline p {
  margin: 0;
  color: #d7bea3;
  text-align: right;
  font: 700 0.95rem / 1.5 var(--font-body);
}

.footer-disclaimer {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 1.15rem;
  padding: 0.65rem 0 0;
  border-top: 1px solid rgba(255, 241, 220, 0.055);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  background: transparent;
  box-shadow: none;
}

.footer-disclaimer::before {
  content: none;
}

.footer-disclaimer strong,
.footer-disclaimer p {
  position: relative;
  z-index: 1;
}

.footer-disclaimer strong {
  display: block;
  margin-bottom: 0.32rem;
  color: rgba(200, 243, 90, 0.42);
  font: 400 0.76rem / 1 var(--font-display);
  text-transform: uppercase;
  text-shadow: none;
}

.footer-disclaimer p {
  max-width: 1180px;
  margin: 0;
  color: rgba(229, 207, 183, 0.4);
  text-align: left;
  font: 600 0.7rem / 1.5 var(--font-body);
}

@media (max-width: 620px) {
  .footer-topline {
    display: grid;
    gap: 0.85rem;
  }

  .footer-topline p {
    text-align: left;
  }

  .footer-disclaimer strong {
    font-size: 0.7rem;
  }

  .footer-disclaimer p {
    font-size: 0.66rem;
  }
}

/* Reference typography: Anton display, Geist body */
h1,
h2,
h3,
.brand strong,
.brand small,
.nav-links,
.copy-pill,
.eyebrow,
.section-kicker,
.ticker,
.btn,
.token-input span,
.token-input input,
.rail-track span,
.story-stack .callout,
.quote,
.rule-card span,
.timeline-panel span,
.signal-link span,
.signal-link strong {
  font-family: var(--font-display);
  font-weight: 400;
}

body,
p,
input {
  font-family: var(--font-body);
}

.hero .eyebrow {
  font-weight: 400;
}

.hero h1 {
  letter-spacing: 0;
  font-weight: 400;
}

.nav-links {
  font-weight: 400;
}

.hero-form .btn,
.copy-pill {
  font-weight: 400;
}

.site-header .brand-mark {
  width: 64px;
  height: 64px;
  overflow: visible;
  filter: drop-shadow(0 0 14px rgba(200, 243, 90, 0.78)) drop-shadow(0 0 28px rgba(209, 132, 76, 0.22));
}

.site-header .brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.hero .eyebrow {
  display: block;
  width: auto;
  min-height: 0;
  margin-bottom: 1rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--acid);
  font-size: clamp(1.25rem, 2.15vw, 2rem);
  line-height: 0.95;
  text-shadow:
    2px 2px 0 #000,
    0 0 14px rgba(200, 243, 90, 0.6),
    0 0 30px rgba(209, 132, 76, 0.44);
  filter: drop-shadow(0 0 18px rgba(200, 243, 90, 0.22));
}

.hero .eyebrow::before,
.hero .eyebrow::after {
  content: none;
}

.faq {
  scroll-margin-top: 132px;
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(360px, 0.78fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

#narrative,
#chain,
#rules,
#signals,
#community {
  scroll-margin-top: 132px;
}

.faq-heading {
  position: sticky;
  top: 145px;
}

.faq-heading h2 {
  max-width: 720px;
  margin: 0;
  color: #fff1dc;
  font: 400 clamp(3.2rem, 6.6vw, 6.8rem)/0.88 var(--font-display);
  text-transform: uppercase;
  text-shadow: 4px 4px 0 #000, 0 0 32px rgba(209, 132, 76, 0.34);
}

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

.faq-list details {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 241, 220, 0.14);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 90 90'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='90' height='90' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E"),
    linear-gradient(135deg, rgba(44, 29, 21, 0.88), rgba(14, 9, 6, 0.9));
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2);
}

.faq-list details::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255, 241, 220, 0.05) 0 1px, transparent 1px 8px),
    linear-gradient(90deg, rgba(200, 243, 90, 0.08), transparent 34%, rgba(209, 132, 76, 0.11));
  mix-blend-mode: screen;
  opacity: 0.55;
}

.faq-list summary {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 70px;
  padding: 1rem 1.1rem;
  color: #fff1dc;
  cursor: pointer;
  font: 400 clamp(1.3rem, 2.3vw, 2.05rem)/1 var(--font-display);
  text-transform: uppercase;
  text-shadow: 2px 2px 0 #000;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--acid);
  font-size: 1.55em;
  line-height: 0.72;
  text-shadow: 0 0 16px rgba(200, 243, 90, 0.42);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 1.1rem 1.1rem;
  color: #e8cfb5;
  font: 600 1rem/1.65 var(--font-body);
}

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

@media (max-width: 620px) {
  .site-header .brand-mark {
    width: 46px;
    height: 46px;
  }

  .hero::before {
    display: block;
    background:
      linear-gradient(90deg, rgba(3, 2, 1, 0.62), rgba(3, 2, 1, 0.12) 44%, rgba(3, 2, 1, 0.6)),
      linear-gradient(180deg, rgba(3, 2, 1, 0.24), rgba(3, 2, 1, 0.04) 34%, rgba(3, 2, 1, 0.86) 88%),
      url("assets/images/suscat.png") 58% 10% / 218% auto no-repeat;
    opacity: 0.74;
    filter: saturate(1.18) contrast(1.12);
  }

  .hero-bg {
    background:
      radial-gradient(ellipse at 54% 20%, rgba(200, 243, 90, 0.16), transparent 15rem),
      radial-gradient(ellipse at 64% 32%, rgba(209, 132, 76, 0.2), transparent 18rem),
      linear-gradient(180deg, rgba(3, 2, 1, 0.2), rgba(3, 2, 1, 0.82) 74%);
  }

  .hero .eyebrow {
    min-height: 0;
    padding: 0;
    font-size: clamp(1rem, 5vw, 1.35rem);
  }

  .hero .eyebrow::before,
  .hero .eyebrow::after {
    content: none;
  }

  .faq {
    scroll-margin-top: 176px;
    grid-template-columns: 1fr;
  }

  .faq-heading {
    position: static;
  }

  .faq-heading h2 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .faq-list summary {
    min-height: 62px;
    padding: 0.85rem 0.9rem;
    font-size: clamp(1.15rem, 6vw, 1.55rem);
  }

  .faq-list p {
    padding-inline: 0.9rem;
  }
}

@media (max-width: 620px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand cta"
      "nav nav";
    align-items: center;
    gap: 0.7rem 0.85rem;
    min-height: 0;
    padding: 0.72rem 12px 0.68rem;
  }

  .site-header .brand {
    grid-area: brand;
    gap: 0.55rem;
  }

  .site-header .brand-mark {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
  }

  .site-header .brand strong {
    font-size: 1rem;
    line-height: 1;
  }

  .site-header .copy-pill {
    grid-area: cta;
    justify-self: end;
    min-width: 128px;
    min-height: 40px;
    padding-inline: 0.58rem;
    border-width: 3px;
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .site-header .telegram-dot {
    font-size: 0.65rem;
  }

  .site-header .nav-links {
    grid-area: nav;
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-start;
    gap: 1.05rem;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    padding: 0.05rem 0 0.1rem;
    font-size: 0.92rem;
    scrollbar-width: none;
  }

  .site-header .nav-links::-webkit-scrollbar {
    display: none;
  }

  .site-header .nav-links a {
    flex: 0 0 auto;
  }

  .hero {
    min-height: calc(100svh - 123px);
  }

  .faq {
    scroll-margin-top: 132px;
  }
}

@media (max-width: 340px) {
  .site-header .copy-pill {
    min-width: 112px;
    font-size: 0.82rem;
  }

.site-header .nav-links {
    gap: 0.85rem;
    font-size: 0.84rem;
  }
}

/* Full banner background for the final community section */
.finale {
  position: relative;
  min-height: clamp(360px, 43vw, 560px);
  display: grid;
  align-items: center;
  margin-top: 0;
  padding: clamp(4rem, 7vw, 7rem) 5.55vw;
  background:
    linear-gradient(90deg, rgba(3, 2, 1, 0.82), rgba(3, 2, 1, 0.36) 40%, rgba(3, 2, 1, 0.12) 78%),
    linear-gradient(180deg, rgba(3, 2, 1, 0.12), rgba(3, 2, 1, 0.58)),
    url("assets/images/suscat-community-bg.png") center center / cover no-repeat;
  border-top: 1px solid rgba(255, 241, 220, 0.12);
  border-bottom: 1px solid rgba(255, 241, 220, 0.1);
}

.finale::before {
  display: none;
}

.finale-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.finale h2 {
  max-width: 7.5em;
  color: var(--acid);
  text-shadow:
    4px 4px 0 #000,
    0 0 26px rgba(200, 243, 90, 0.36),
    0 0 34px rgba(0, 0, 0, 0.72);
}

.finale p {
  max-width: 660px;
  color: #fff1dc;
  text-shadow: 2px 2px 0 #000, 0 0 18px rgba(0, 0, 0, 0.68);
}

@media (max-width: 620px) {
  .finale {
    min-height: 420px;
    padding: 3.6rem 12px;
    background:
      linear-gradient(90deg, rgba(3, 2, 1, 0.78), rgba(3, 2, 1, 0.4) 52%, rgba(3, 2, 1, 0.18)),
      linear-gradient(180deg, rgba(3, 2, 1, 0.16), rgba(3, 2, 1, 0.68)),
      url("assets/images/suscat-community-bg.png") 35% center / cover no-repeat;
  }

  .finale h2 {
    max-width: 6.2em;
  }
}

/* Contract address fit */
.token-input {
  grid-template-columns: auto minmax(0, 1fr);
}

.token-input input {
  min-width: 0;
  text-overflow: clip;
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 1.15vw, 1rem);
  font-weight: 900;
}

.hero-form {
  grid-template-columns: minmax(420px, 1fr) 220px;
  width: min(820px, 100%);
}

@media (max-width: 620px) {
  .hero-form {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .token-input {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 0.15rem;
  }

  .token-input span {
    padding: 0.62rem 0.8rem 0;
    font-size: 0.92rem;
  }

  .token-input input {
    padding: 0 0.8rem 0.62rem;
    font-size: clamp(0.58rem, 2.8vw, 0.82rem);
  }
}

/* Meme vault */
#memes {
  scroll-margin-top: 132px;
}

.memes {
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(360px, 0.88fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.memes-heading {
  position: sticky;
  top: 145px;
  max-width: 560px;
}

.memes-heading h2 {
  margin: 0 0 1.15rem;
  color: #fff1dc;
  font: 400 clamp(3.2rem, 6.6vw, 6.9rem) / 0.88 var(--font-display);
  text-transform: uppercase;
  text-shadow:
    4px 4px 0 #000,
    0 0 30px rgba(200, 243, 90, 0.18),
    0 0 34px rgba(209, 132, 76, 0.34);
}

.memes-heading p:not(.section-kicker) {
  color: #e8cfb5;
  font: 700 clamp(1rem, 1.25vw, 1.15rem) / 1.65 var(--font-body);
}

.meme-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.meme-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  grid-column: span 3;
  min-height: 360px;
  border: 4px solid rgba(255, 241, 220, 0.13);
  background:
    linear-gradient(135deg, rgba(36, 24, 17, 0.96), rgba(4, 3, 2, 0.98)),
    #090604;
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.45),
    0 0 42px rgba(200, 243, 90, 0.1);
}

.meme-card-featured {
  grid-column: span 6;
  min-height: 430px;
}

.meme-card::before,
.meme-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.meme-card::before {
  z-index: 2;
  opacity: 0.55;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.15' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.62'/%3E%3C/svg%3E"),
    repeating-linear-gradient(0deg, rgba(255, 241, 220, 0.06) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg, rgba(200, 243, 90, 0.05) 0 1px, transparent 1px 9px);
  mix-blend-mode: screen;
}

.meme-card::after {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(3, 2, 1, 0.02) 0%, rgba(3, 2, 1, 0.24) 45%, rgba(3, 2, 1, 0.94) 100%),
    linear-gradient(90deg, rgba(200, 243, 90, 0.1), transparent 28%, rgba(209, 132, 76, 0.14));
}

.meme-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.16) contrast(1.12) brightness(0.8);
  transform: scale(1.01);
}

.meme-card-copy {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  display: grid;
  gap: 0.45rem;
  padding: clamp(1rem, 2vw, 1.45rem);
}

.meme-card-copy span {
  color: var(--acid);
  font: 400 1.9rem / 0.85 var(--font-display);
  text-shadow: 2px 2px 0 #000, 0 0 18px rgba(200, 243, 90, 0.45);
}

.meme-card-copy h3 {
  margin: 0;
  color: #fff1dc;
  font: 400 clamp(1.8rem, 3.4vw, 3rem) / 0.9 var(--font-display);
  text-transform: uppercase;
  text-shadow: 3px 3px 0 #000, 0 0 22px rgba(209, 132, 76, 0.36);
}

.meme-card-copy p {
  max-width: 520px;
  margin: 0;
  color: #e9d2b8;
  font: 700 0.94rem / 1.45 var(--font-body);
}

.meme-card-copy a {
  justify-self: start;
  margin-top: 0.2rem;
  color: var(--acid);
  font: 400 0.86rem / 1 var(--font-display);
  text-transform: uppercase;
  text-shadow: 1px 1px 0 #000;
}

.meme-card-copy a:hover {
  color: #fff1dc;
}

@media (max-width: 920px) {
  .memes {
    grid-template-columns: 1fr;
  }

  .memes-heading {
    position: static;
    max-width: 760px;
  }
}

@media (max-width: 620px) {
  #memes {
    scroll-margin-top: 132px;
  }

  .site-header .nav-links a:nth-child(n + 5) {
    display: none;
  }

  .memes {
    gap: 1.5rem;
  }

  .memes-heading h2 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .meme-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .meme-card,
  .meme-card-featured {
    grid-column: auto;
    min-height: 330px;
    border-width: 3px;
  }

  .meme-card-copy h3 {
    font-size: clamp(1.75rem, 10vw, 2.65rem);
  }
}

/* Alternating low-opacity section image rhythm */
.memes,
.chain,
.timeline,
.faq {
  --section-cat-position: right -8vw center;
  --section-cat-size: min(66vw, 850px) auto;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.chain {
  --section-cat-position: left -11vw center;
  --section-cat-size: min(58vw, 760px) auto;
}

.timeline {
  --section-cat-position: right -6vw top 44%;
  --section-cat-size: min(62vw, 780px) auto;
}

.faq {
  --section-cat-position: left -10vw top 36%;
  --section-cat-size: min(60vw, 780px) auto;
}

.memes::before,
.chain::before,
.timeline::before,
.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.28;
  background:
    linear-gradient(90deg, rgba(3, 2, 1, 0.9), rgba(3, 2, 1, 0.28) 42%, rgba(3, 2, 1, 0.86)),
    linear-gradient(180deg, rgba(3, 2, 1, 0.5), rgba(3, 2, 1, 0.08) 40%, rgba(3, 2, 1, 0.72)),
    url("assets/images/suscat.png") var(--section-cat-position) / var(--section-cat-size) no-repeat,
    repeating-linear-gradient(135deg, rgba(255, 241, 220, 0.08) 0 2px, transparent 2px 12px),
    repeating-radial-gradient(circle at 40% 40%, rgba(200, 243, 90, 0.1) 0 1px, transparent 1px 4px);
  mix-blend-mode: screen;
}

.memes > *,
.chain > *,
.timeline > *,
.faq > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 620px) {
  .memes,
  .chain,
  .timeline,
  .faq {
    --section-cat-position: center top 1.2rem;
    --section-cat-size: 150% auto;
  }

  .memes::before,
  .chain::before,
  .timeline::before,
  .faq::before {
    opacity: 0.2;
    background:
      linear-gradient(90deg, rgba(3, 2, 1, 0.78), rgba(3, 2, 1, 0.2) 50%, rgba(3, 2, 1, 0.78)),
      linear-gradient(180deg, rgba(3, 2, 1, 0.28), rgba(3, 2, 1, 0.06) 34%, rgba(3, 2, 1, 0.82)),
      url("assets/images/suscat.png") var(--section-cat-position) / var(--section-cat-size) no-repeat,
      repeating-linear-gradient(135deg, rgba(255, 241, 220, 0.07) 0 2px, transparent 2px 12px),
      repeating-radial-gradient(circle at 40% 40%, rgba(200, 243, 90, 0.09) 0 1px, transparent 1px 4px);
  }
}
