:root {
  --ink: #070705;
  --ink-2: #0d0d0a;
  --panel: #11110d;
  --gold: #f3b832;
  --gold-hot: #ffd36a;
  --gold-deep: #9a6511;
  --white: #f3efe5;
  --muted: #a49d8f;
  --line: rgba(243, 184, 50, 0.24);
  --line-soft: rgba(255, 255, 255, 0.09);
  --wrap: min(1240px, calc(100vw - 96px));
  --header-h: 82px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(243, 184, 50, 0.06), transparent 24rem),
    var(--ink);
  color: var(--white);
  font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.is-loading {
  overflow: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

::selection {
  color: var(--ink);
  background: var(--gold);
}

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

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 999;
  opacity: 0.045;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, #fff 0 0.45px, transparent 0.7px),
    radial-gradient(circle at 80% 70%, #fff 0 0.35px, transparent 0.65px),
    radial-gradient(circle at 45% 85%, #fff 0 0.4px, transparent 0.7px);
  background-size: 5px 7px, 7px 5px, 9px 9px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  height: 2px;
  background: rgba(255, 255, 255, 0.04);
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold);
  box-shadow: 0 0 14px var(--gold);
}

.boot-screen {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  background: #050503;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.boot-screen.is-gone {
  opacity: 0;
  visibility: hidden;
}

.boot-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.1em;
  transform: skewX(-8deg);
  box-shadow: inset 0 0 24px rgba(243, 184, 50, 0.11), 0 0 32px rgba(243, 184, 50, 0.12);
}

.boot-copy {
  font-size: 9px;
  letter-spacing: 0.34em;
  color: var(--muted);
}

.boot-track {
  width: 220px;
  height: 2px;
  overflow: hidden;
  background: #1a1a14;
}

.boot-track span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: translateX(-100%);
  animation: boot 1.1s var(--ease) forwards;
}

@keyframes boot {
  to { transform: translateX(0); }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-h);
  padding: 0 42px;
  border-bottom: 1px solid transparent;
  transition: height 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.site-header.is-scrolled {
  height: 68px;
  background: rgba(7, 7, 5, 0.82);
  border-color: var(--line-soft);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(243, 184, 50, 0.45);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 12px;
  letter-spacing: 0.22em;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--gold);
  font-size: 7px;
  letter-spacing: 0.26em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav a {
  position: relative;
  color: #bbb5aa;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s var(--ease);
}

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

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  right: 0;
}

.header-buy {
  justify-self: end;
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: var(--white);
}

.button {
  position: relative;
  display: inline-flex;
  min-width: 178px;
  height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  overflow: hidden;
  padding: 0 20px;
  border: 1px solid rgba(243, 184, 50, 0.68);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease), background 0.3s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--gold-hot);
  transform: translateX(-105%) skewX(-18deg);
  transition: transform 0.42s var(--ease);
}

.button:hover,
.button:focus-visible {
  color: var(--ink);
  border-color: var(--gold-hot);
  transform: translateY(-2px);
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(0) skewX(0);
}

.button b {
  color: var(--gold);
  font-size: 15px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.button:hover b,
.button:focus-visible b {
  color: var(--ink);
  transform: translate(2px, -2px);
}

.button-primary {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.button-primary::before {
  background: var(--gold-hot);
}

.button-primary b {
  color: var(--ink);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(7, 7, 5, 0.42);
  backdrop-filter: blur(8px);
}

.button-small {
  min-width: 156px;
  height: 40px;
  padding-inline: 16px;
  font-size: 8px;
}

.hero {
  position: relative;
  display: flex;
  min-height: 780px;
  height: 100svh;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media,
.hero-media img,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.025);
  will-change: transform;
  animation: heroArrive 1.8s var(--ease) both;
}

@keyframes heroArrive {
  from { opacity: 0; transform: scale(1.1); }
  to { opacity: 1; transform: scale(1.025); }
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 3, 2, 0.96) 0%, rgba(3, 3, 2, 0.7) 31%, rgba(3, 3, 2, 0.1) 63%, rgba(3, 3, 2, 0.34) 100%),
    linear-gradient(0deg, rgba(3, 3, 2, 0.87), transparent 35%, rgba(3, 3, 2, 0.4));
}

.hero-grid {
  opacity: 0.21;
  background-image:
    linear-gradient(rgba(243, 184, 50, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 184, 50, 0.15) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, black, transparent 55%);
}

.lightning {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 72% 15%, rgba(255, 226, 149, 0.32), transparent 18%);
  opacity: 0;
  mix-blend-mode: screen;
}

.lightning-one { animation: flash 7.8s infinite 2s; }
.lightning-two { animation: flash 9.2s infinite 5.4s; transform: scaleX(-1); }

@keyframes flash {
  0%, 93%, 100% { opacity: 0; }
  94% { opacity: 0.8; }
  94.6% { opacity: 0.05; }
  95.2% { opacity: 0.44; }
  97% { opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 58px;
}

.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.28em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px var(--gold);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  50% { opacity: 0.35; box-shadow: 0 0 4px var(--gold); }
}

h1,
h2,
h3,
blockquote {
  margin: 0;
  font-family: "Arial Narrow", "Avenir Next Condensed", "Segoe UI", sans-serif;
  font-stretch: condensed;
  line-height: 0.94;
  text-transform: uppercase;
}

h1 {
  max-width: 810px;
  font-size: clamp(50px, 5.8vw, 78px);
  font-weight: 900;
  letter-spacing: -0.045em;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
}

h1 span,
h2 em,
blockquote em {
  color: var(--gold);
  font-style: normal;
  text-shadow: 0 0 32px rgba(243, 184, 50, 0.15);
}

.hero-intro {
  max-width: 500px;
  margin: 24px 0 30px;
  color: #d3cec4;
  font-size: 14px;
  letter-spacing: 0.035em;
}

.hero-actions,
.token-actions,
.finale-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contract-pill {
  display: grid;
  grid-template-columns: auto auto auto;
  width: max-content;
  max-width: 100%;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 9px 12px;
  border: 1px solid var(--line-soft);
  color: var(--muted);
  background: rgba(7, 7, 5, 0.55);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: border-color 0.25s ease, color 0.25s ease;
}

.contract-pill:hover,
.contract-pill:focus-visible {
  color: var(--white);
  border-color: var(--gold);
}

.contract-label,
.copy-status {
  color: var(--gold);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.contract-pill code,
.contract-card code {
  overflow: hidden;
  color: #cac4b9;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.04em;
  text-overflow: ellipsis;
}

.hero-rail {
  position: absolute;
  z-index: 2;
  color: rgba(255, 255, 255, 0.45);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
}

.rail-left {
  left: 20px;
  bottom: 170px;
  display: flex;
  gap: 34px;
  transform: rotate(180deg);
}

.rail-left span:last-child {
  color: var(--gold);
}

.rail-right {
  right: 25px;
  top: 42%;
  display: flex;
  align-items: center;
  gap: 12px;
}

.rail-line {
  width: 1px;
  height: 90px;
  background: linear-gradient(var(--gold), transparent);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 48px;
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.22em;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  position: relative;
  width: 1px;
  height: 50px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(-100%);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  65%, 100% { transform: translateY(100%); }
}

.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--gold);
  color: var(--ink);
}

.ticker-track {
  display: flex;
  width: max-content;
  padding: 9px 0;
  animation: ticker 26s linear infinite;
}

.ticker-track span {
  padding: 0 22px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.24em;
  white-space: nowrap;
}

.ticker-track i {
  margin-left: 38px;
  font-style: normal;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section {
  position: relative;
  padding: 128px 0;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
}

.split-reverse {
  grid-template-columns: 1.2fr 0.8fr;
}

.section-index {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 58px;
  color: var(--gold);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.section-index::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-index span {
  color: #6f6b63;
  font-size: 8px;
}

.section-copy h2,
.section-head h2,
.token-panel h2,
.finale h2 {
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 900;
  letter-spacing: -0.045em;
}

.section-copy > p:last-of-type,
.token-panel > p:not(.kicker):not(.token-symbol),
.manifesto-copy > p,
.finale-content > p:not(.kicker) {
  max-width: 510px;
  margin: 28px 0 0;
  color: var(--muted);
}

.media-frame,
.cinema-frame,
.product-shot,
.core-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #0c0c09;
}

.media-frame::after,
.cinema-frame::after,
.product-shot::after,
.core-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(243, 184, 50, 0.24);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.22);
}

.media-frame img,
.cinema-frame img,
.product-shot img,
.core-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter 0.7s ease;
}

.media-frame:hover img,
.cinema-frame:hover img,
.product-shot:hover img,
.core-visual:hover img {
  transform: scale(1.025);
  filter: brightness(1.08);
}

.media-tall {
  aspect-ratio: 1.32 / 1;
  clip-path: polygon(0 0, calc(100% - 42px) 0, 100% 42px, 100% 100%, 0 100%);
}

.media-wide {
  aspect-ratio: 1.45 / 1;
  clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
}

.media-frame figcaption,
.product-shot figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: #d7c9a5;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.corner {
  position: absolute;
  z-index: 2;
  width: 14px;
  height: 14px;
  border-color: var(--gold);
  border-style: solid;
}

.corner.tl { top: 10px; left: 10px; border-width: 1px 0 0 1px; }
.corner.tr { top: 10px; right: 10px; border-width: 1px 1px 0 0; }
.corner.bl { bottom: 10px; left: 10px; border-width: 0 0 1px 1px; }
.corner.br { bottom: 10px; right: 10px; border-width: 0 1px 1px 0; }

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 44px;
  border: 1px solid var(--line-soft);
  background: var(--line-soft);
}

.metric-row div {
  display: grid;
  padding: 18px 15px;
  background: var(--ink);
}

.metric-row strong {
  color: var(--gold);
  font-family: "Arial Narrow", sans-serif;
  font-size: 25px;
  line-height: 1;
}

.metric-row span {
  margin-top: 8px;
  color: #77736a;
  font-size: 7px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.storm {
  overflow: hidden;
  border-block: 1px solid var(--line-soft);
  background:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px),
    #0b0b08;
  background-size: 72px 72px;
}

.section-head {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 52px;
}

.section-head .section-index {
  margin-bottom: 32px;
}

.section-head h2 {
  text-align: right;
}

.cinema-frame {
  aspect-ratio: 16 / 7.3;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
}

.cinema-frame img {
  object-position: center 62%;
}

.image-data {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  display: grid;
  padding: 10px 13px;
  background: rgba(5, 5, 3, 0.72);
  backdrop-filter: blur(8px);
}

.image-data span {
  color: #868177;
  font-size: 6px;
  letter-spacing: 0.16em;
}

.image-data strong {
  color: var(--gold);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.data-left { left: 20px; }
.data-right { right: 20px; text-align: right; }

.storm-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
  border-top: 1px solid var(--line-soft);
}

.storm-points article {
  position: relative;
  padding: 30px 38px 0 0;
}

.storm-points article + article {
  padding-left: 38px;
  border-left: 1px solid var(--line-soft);
}

.storm-points article > span {
  position: absolute;
  top: 7px;
  right: 10px;
  color: rgba(243, 184, 50, 0.24);
  font-family: "Arial Narrow", sans-serif;
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
}

.storm-points h3 {
  font-size: 24px;
  letter-spacing: 0.02em;
}

.storm-points p {
  max-width: 310px;
  margin: 12px 0 0;
  color: #868177;
  font-size: 13px;
}

.network {
  overflow: hidden;
}

.network-bg {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(30deg, transparent 49.5%, var(--gold) 50%, transparent 50.5%),
    linear-gradient(-30deg, transparent 49.5%, var(--gold) 50%, transparent 50.5%);
  background-size: 88px 88px;
  mask-image: radial-gradient(circle at 20% 50%, black, transparent 52%);
}

.scanline {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 22px var(--gold);
  animation: scan 4.8s ease-in-out infinite;
}

@keyframes scan {
  0%, 100% { top: 2%; opacity: 0; }
  12%, 88% { opacity: 0.75; }
  50% { top: 98%; }
}

.signal-list {
  margin: 42px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-soft);
  list-style: none;
}

.signal-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  text-transform: uppercase;
}

.signal-list span {
  color: var(--gold);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
}

.signal-list b {
  font-size: 9px;
  letter-spacing: 0.14em;
}

.signal-list i {
  color: #6c8a52;
  font-size: 7px;
  font-style: normal;
  letter-spacing: 0.12em;
}

.token {
  border-block: 1px solid var(--line-soft);
  background: #0b0b08;
}

.token-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(50px, 7vw, 112px);
}

.token-panel {
  position: relative;
  z-index: 2;
}

.token-panel .section-index {
  margin-bottom: 55px;
}

.token-symbol {
  display: inline-block;
  margin: 15px 0 0;
  padding: 5px 10px;
  border-left: 2px solid var(--gold);
  color: var(--gold);
  background: rgba(243, 184, 50, 0.08);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.contract-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  margin: 38px 0 18px;
  padding: 15px;
  border: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(243, 184, 50, 0.07), transparent);
}

.contract-card > div {
  display: grid;
  min-width: 0;
}

.contract-card > div span {
  margin-bottom: 4px;
  color: #777169;
  font-size: 6px;
  letter-spacing: 0.15em;
}

.contract-card button,
.footer-base button {
  border: 0;
  color: var(--gold);
  background: transparent;
  cursor: pointer;
}

.core-visual {
  aspect-ratio: 1.18 / 1;
  clip-path: polygon(0 24px, 24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
}

.core-visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: grid;
  text-align: right;
}

.core-visual figcaption span {
  color: #90897d;
  font-size: 6px;
  letter-spacing: 0.17em;
}

.core-visual figcaption strong {
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.core-ring {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 52%;
  aspect-ratio: 1;
  border: 1px solid rgba(243, 184, 50, 0.26);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 3.5s ease-in-out infinite;
}

.ring-two {
  width: 67%;
  animation-delay: -1.5s;
}

@keyframes ringPulse {
  50% { opacity: 0.2; transform: translate(-50%, -50%) scale(1.05); }
}

.manifesto {
  padding-block: 150px;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: clamp(52px, 8vw, 130px);
}

.product-shot {
  aspect-ratio: 1 / 0.85;
  padding: 34px;
  background:
    linear-gradient(rgba(243, 184, 50, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 184, 50, 0.07) 1px, transparent 1px),
    #0c0c08;
  background-size: 36px 36px;
}

.product-shot img {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(243, 184, 50, 0.22);
  mix-blend-mode: screen;
}

.product-glow {
  position: absolute;
  inset: 24%;
  background: var(--gold);
  filter: blur(80px);
  opacity: 0.18;
}

.manifesto-copy .section-index {
  margin-bottom: 54px;
}

.manifesto-copy blockquote {
  max-width: 760px;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 34px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.text-link span {
  font-size: 14px;
  transition: transform 0.25s ease;
}

.text-link:hover span { transform: translate(3px, -3px); }

.finale {
  min-height: 760px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.finale-media,
.finale-media img,
.finale-media div {
  position: absolute;
  inset: 0;
}

.finale-media img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  will-change: transform;
}

.finale-media div {
  background:
    linear-gradient(180deg, var(--ink), transparent 24%, rgba(3,3,2,0.26) 55%, rgba(3,3,2,0.82)),
    radial-gradient(circle, rgba(3,3,2,0.05) 0%, rgba(3,3,2,0.72) 88%);
}

.finale-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-shadow: 0 3px 24px rgba(0,0,0,0.7);
}

.finale-emblem {
  width: 78px;
  height: 78px;
  margin-bottom: 20px;
  border: 1px solid rgba(243,184,50,0.55);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 34px rgba(243, 184, 50, 0.24);
}

.finale-content > p:not(.kicker) {
  margin-bottom: 30px;
  color: #d9d3c8;
}

.finale-actions {
  justify-content: center;
}

footer {
  padding: 52px 0 24px;
  border-top: 1px solid var(--line);
  background: #050503;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 60px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand div {
  display: grid;
}

.footer-brand strong {
  font-size: 11px;
  letter-spacing: 0.2em;
}

.footer-brand span {
  margin-top: 5px;
  color: var(--gold);
  font-size: 7px;
  letter-spacing: 0.18em;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.footer-links a,
.footer-base,
.footer-base a,
.footer-base button {
  color: #928d83;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-base a:hover,
.footer-base button:hover {
  color: var(--gold);
}

.disclaimer {
  max-width: 740px;
  margin: 0;
  color: #5d5a54;
  font-size: 9px;
  line-height: 1.6;
}

.footer-base {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 20px;
}

.footer-base button {
  padding: 0;
}

.toast {
  position: fixed;
  z-index: 1500;
  right: 26px;
  bottom: 26px;
  padding: 13px 17px;
  border: 1px solid var(--gold);
  color: var(--ink);
  background: var(--gold);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.17em;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s var(--ease);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.32s; }

@media (max-width: 1040px) {
  :root {
    --wrap: min(100% - 56px, 920px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 28px;
  }

  .site-nav {
    display: none;
  }

  .header-buy {
    grid-column: 2;
    grid-row: 1;
  }

  .split-grid,
  .split-reverse,
  .token-grid,
  .manifesto-grid {
    grid-template-columns: 1fr;
  }

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

  .media-frame,
  .core-visual,
  .product-shot {
    width: 100%;
    max-height: 620px;
  }

  .split-reverse .media-frame {
    order: 2;
  }

  .split-reverse .section-copy {
    order: 1;
  }

  .section-head {
    grid-template-columns: 1fr;
  }

  .section-head h2 {
    text-align: left;
  }

  .manifesto-copy {
    order: 1;
  }

  .product-shot {
    order: 2;
  }
}

@media (max-width: 720px) {
  :root {
    --wrap: calc(100% - 36px);
    --header-h: 68px;
  }

  body { font-size: 14px; }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 18px;
  }

  .brand-copy small,
  .header-buy {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 7px;
    padding: 0;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--white);
    transition: transform 0.3s ease;
  }

  .nav-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-open .menu-toggle span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 70px 11vw;
    background: rgba(5,5,3,0.97);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.45s var(--ease), visibility 0.45s;
  }

  .nav-open .site-nav {
    transform: translateX(0);
    visibility: visible;
  }

  .site-nav a {
    color: var(--white);
    font-family: "Arial Narrow", sans-serif;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -0.02em;
  }

  .hero {
    min-height: 720px;
  }

  .hero-media img {
    height: 106%;
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3,3,2,0.88), rgba(3,3,2,0.18)),
      linear-gradient(0deg, rgba(3,3,2,0.95) 2%, rgba(3,3,2,0.22) 65%, rgba(3,3,2,0.55));
  }

  .hero-content {
    align-self: end;
    padding: 110px 0 92px;
  }

  h1 {
    font-size: clamp(44px, 14vw, 66px);
  }

  .hero-intro {
    max-width: 420px;
    font-size: 13px;
  }

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

  .button {
    width: 100%;
  }

  .contract-pill {
    width: 100%;
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .hero-rail,
  .scroll-cue {
    display: none;
  }

  .section {
    padding: 88px 0;
  }

  .section-index {
    margin-bottom: 38px;
  }

  .section-copy h2,
  .section-head h2,
  .token-panel h2,
  .finale h2 {
    font-size: clamp(35px, 11vw, 50px);
  }

  .split-grid,
  .token-grid,
  .manifesto-grid {
    gap: 45px;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .metric-row div {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 18px;
  }

  .metric-row span { margin: 0; }

  .media-tall,
  .media-wide,
  .core-visual,
  .product-shot {
    aspect-ratio: 1 / 0.88;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .cinema-frame {
    aspect-ratio: 1 / 0.95;
  }

  .cinema-frame img {
    object-position: 62% center;
  }

  .image-data {
    bottom: 12px;
  }

  .storm-points {
    grid-template-columns: 1fr;
  }

  .storm-points article,
  .storm-points article + article {
    padding: 26px 30px 26px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .contract-card {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .manifesto {
    padding-block: 90px;
  }

  .product-shot {
    padding: 16px;
  }

  .manifesto-copy blockquote {
    font-size: clamp(31px, 9vw, 44px);
  }

  .finale {
    min-height: 680px;
  }

  .finale-media img {
    object-position: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 18px;
  }

  .footer-base {
    justify-content: space-between;
  }

  .toast {
    right: 18px;
    bottom: 18px;
    left: 18px;
    text-align: center;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
