@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --black: #050607;
  --black-soft: #090b0d;
  --panel: #0d1013;
  --panel-light: #12161a;
  --cream: #f4f0e7;
  --cream-soft: #c9c3b8;
  --muted: #908b83;
  --line: rgba(239, 235, 224, 0.15);
  --line-strong: rgba(239, 235, 224, 0.32);
  --red: #a32120;
  --red-bright: #cf3430;
  --blue: #163f68;
  --gold: #bda574;
  --serif: Georgia, "Times New Roman", serif;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--cream);
  background: var(--black);
  font-family: var(--sans);
  overflow-x: clip;
}

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

[id] {
  scroll-margin-top: 103px;
}

button {
  color: inherit;
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: 0.055;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.intel-bar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 32;
  display: flex;
  align-items: center;
  height: 29px;
  overflow: hidden;
  color: #f5e9dc;
  background: linear-gradient(90deg, #5f181a, #8e2925 45%, #4d1519);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font: 600 10px/1 var(--display);
  letter-spacing: 0.24em;
  white-space: nowrap;
}

.intel-label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  height: 100%;
  align-items: center;
  gap: 9px;
  padding: 0 17px;
  background: var(--red-bright);
  color: white;
  font: 700 9px/1 var(--display);
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.intel-label i,
.console-top i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: white;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
  animation: status-blink 1.8s ease-in-out infinite;
}

.intel-track {
  display: flex;
  min-width: max-content;
  align-items: center;
  animation: ticker 43s linear infinite;
  will-change: transform;
}

.intel-track span {
  padding-right: 38px;
}

.intel-track b {
  color: #edcfbf;
  margin-right: 12px;
}

@keyframes ticker {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@keyframes status-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.72); }
}

.site-header {
  position: fixed;
  top: 29px;
  left: 0;
  z-index: 31;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 74px;
  padding: 0 5.5vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(4, 5, 6, 0.64);
  backdrop-filter: blur(10px);
  transition: background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(4, 5, 6, 0.94);
}

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

.brand {
  width: max-content;
}

.brand-logo {
  display: block;
  width: 196px;
  height: 66px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.55));
}

.site-nav {
  gap: 35px;
}

.site-nav a,
.footer-links a {
  color: var(--cream-soft);
  font: 500 13px/1 var(--display);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav a:hover,
.footer-links a:hover {
  color: white;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 1px;
  background: var(--red-bright);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  justify-content: flex-end;
  gap: 17px;
}

.icon-link {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  transition: border-color 180ms ease, background 180ms ease;
}

.icon-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line-strong);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 52px;
  padding: 0 23px;
  font: 700 13px/1 var(--display);
  letter-spacing: 0.19em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  position: relative;
  overflow: hidden;
}

.button-primary::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.28) 48%, transparent 66%);
  content: "";
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.button-primary:hover::after {
  transform: translateX(120%);
}

.button span {
  font-size: 18px;
}

.button-small {
  min-height: 39px;
  padding: 0 17px;
  font-size: 11px;
}

.button-primary {
  color: white;
  background: var(--red);
  border: 1px solid var(--red-bright);
}

.button-primary:hover {
  background: var(--red-bright);
}

.button-outline,
.button-ghost {
  color: var(--cream);
  border: 1px solid var(--line-strong);
}

.button-outline:hover,
.button-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

.hero-story {
  position: relative;
  height: 620vh;
  background: var(--black);
}

.hero-sticky {
  position: sticky;
  top: 0;
  display: grid;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  align-items: end;
  padding: 150px 5.5vw 11vh;
  isolation: isolate;
  transform: translateZ(0);
}

.hero-vignette,
.manifesto-bg,
.launch-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-scenes {
  background: #050607 url("assets/scene-02-reserve.webp") center / cover no-repeat;
  contain: paint;
}

.hero-scenes {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-vignette {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 3, 4, 0.76) 0%, rgba(2, 3, 4, 0.36) 34%, rgba(2, 3, 4, 0.04) 72%),
    linear-gradient(0deg, rgba(2, 3, 4, 0.78) 0%, rgba(2, 3, 4, 0.05) 54%),
    linear-gradient(180deg, rgba(2, 3, 4, 0.48) 0%, transparent 31%);
}

.story-panel {
  position: absolute;
  right: 5.5vw;
  bottom: 15vh;
  left: 5.5vw;
  max-width: 730px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(34px);
  will-change: opacity, transform;
}

.story-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.story-panel h1,
.story-panel h2,
.story-panel > p {
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.82);
}

.story-panel-center {
  right: 12vw;
  bottom: 27vh;
  left: auto;
  max-width: 900px;
  text-align: right;
}

.story-panel-left {
  bottom: 24vh;
}

.story-panel-right {
  right: 6vw;
  bottom: 26vh;
  left: auto;
  max-width: 830px;
  text-align: right;
}

.story-panel-final {
  bottom: 14vh;
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--gold);
  font: 600 12px/1.3 var(--display);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.story-panel h1,
h2 {
  margin: 0;
  font: 800 clamp(65px, 8.5vw, 136px) / 0.84 var(--display);
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.story-panel h1 span,
.story-panel h1 em,
h2 em {
  display: block;
}

.story-panel h1 em,
h2 em,
blockquote em {
  color: var(--red-bright);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.07em;
  text-transform: none;
}

.hero-copy {
  max-width: 600px;
  margin: 24px 0 0;
  color: #d4d0c8;
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions,
.launch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.story-panel > p:not(.eyebrow):not(.hero-copy) {
  margin: 19px 0 0;
  color: #d4d0c8;
  font-size: 16px;
  line-height: 1.7;
}

.story-progress {
  position: absolute;
  right: 5.5vw;
  bottom: 5vh;
  left: 5.5vw;
  display: flex;
  align-items: center;
  gap: 16px;
}

.story-progress span {
  color: var(--cream-soft);
  font: 600 11px/1 var(--display);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.story-progress i {
  display: block;
  width: min(320px, 28vw);
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
}

.story-progress b {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--red-bright);
  transform: scaleX(0);
  transform-origin: left;
}

.story-progress-count {
  color: var(--red-bright) !important;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #090b0c;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-strip article {
  position: relative;
  min-height: 138px;
  padding: 27px 3vw;
  border-right: 1px solid var(--line);
}

.signal-strip article:last-child {
  border: 0;
}

.signal-strip span {
  position: absolute;
  top: 25px;
  right: 25px;
  color: #4d5357;
  font: 500 11px/1 var(--display);
  letter-spacing: 0.18em;
}

.signal-strip p,
.card-top {
  margin: 0 0 14px;
  color: var(--muted);
  font: 600 11px/1 var(--display);
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.signal-strip strong {
  font: 700 38px/1 var(--display);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.signal-strip article,
.principle,
.reserve-card,
.roadmap-item {
  position: relative;
  overflow: hidden;
}

.signal-strip article::after,
.principle::after,
.reserve-card::after,
.roadmap-item::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 0%), rgba(207, 52, 48, 0.16), transparent 36%);
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

.signal-strip article:hover::after,
.principle:hover::after,
.reserve-card:hover::after,
.roadmap-item:hover::after {
  opacity: 1;
}

.section {
  padding: 112px 5.5vw;
}

.section-summit {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #070809;
}

.summit-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 72% 14%, rgba(207, 52, 48, 0.18), transparent 33%),
    linear-gradient(90deg, rgba(4, 5, 6, 0.88), rgba(4, 5, 6, 0.58) 48%, rgba(4, 5, 6, 0.94)),
    url("assets/avof-banner-updated.png") center / cover no-repeat;
  filter: saturate(0.88) contrast(1.08);
  transform: scale(1.02);
}

.section-summit::before,
.section-summit::after {
  position: absolute;
  right: 5.5vw;
  left: 5.5vw;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239, 235, 224, 0.32), transparent);
  content: "";
}

.section-summit::before {
  top: 0;
}

.section-summit::after {
  bottom: 0;
}

.summit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 7vw;
  align-items: end;
}

.summit-copy {
  max-width: 860px;
}

.summit-copy h2 {
  margin-bottom: 27px;
}

.countdown-console {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(180deg, rgba(12, 15, 18, 0.86), rgba(4, 5, 6, 0.92)),
    rgba(4, 5, 6, 0.72);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.countdown-console::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  opacity: 0.55;
}

.countdown-console::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -40%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  content: "";
  animation: console-scan 5.8s ease-in-out infinite;
}

.console-top,
.countdown-grid,
.summit-metadata {
  position: relative;
  z-index: 1;
}

.console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.console-top span,
.console-top b,
.summit-metadata span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font: 700 11px/1 var(--display);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.console-top b {
  color: var(--cream-soft);
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.countdown-grid article {
  min-height: 142px;
  padding: 24px;
  background: rgba(5, 6, 7, 0.78);
}

.countdown-grid strong {
  display: block;
  color: white;
  font: 800 clamp(50px, 6vw, 82px) / 0.9 var(--display);
  letter-spacing: -0.04em;
  text-shadow: 0 0 30px rgba(207, 52, 48, 0.28);
}

.countdown-grid span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font: 700 11px/1 var(--display);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.summit-metadata {
  padding: 20px;
}

.summit-metadata p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--cream-soft);
  font-size: 13px;
}

.summit-metadata p:last-child {
  border-bottom: 0;
}

.summit-metadata span {
  color: var(--red-bright);
  font-size: 10px;
}

@keyframes console-scan {
  0%, 55% { transform: translateX(0); opacity: 0; }
  65% { opacity: 1; }
  100% { transform: translateX(430%); opacity: 0; }
}

.section-about {
  background: #080a0b;
}

.section-index {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 54px;
}

.section-index span,
.section-index p {
  margin: 0;
  color: var(--red-bright);
  font: 700 11px/1 var(--display);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-index span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(207, 52, 48, 0.52);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 8vw;
  align-items: end;
}

h2 {
  font-size: clamp(58px, 7vw, 106px);
}

.section-copy {
  color: #a9a49b;
  font-size: 15px;
  line-height: 1.8;
}

.lead {
  margin-top: 0;
  color: #d1ccc2;
  font-size: 18px;
  line-height: 1.7;
}

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

.principle {
  min-height: 260px;
  padding: 31px;
  background: #0b0d0f;
}

.principle span {
  color: var(--red-bright);
  font: 600 13px/1 var(--display);
  letter-spacing: 0.18em;
}

h3 {
  margin: 45px 0 13px;
  font: 700 30px/1 var(--display);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.principle p,
.reserve-card p,
.roadmap-item p {
  margin: 0;
  color: #98938a;
  font-size: 14px;
  line-height: 1.7;
}

.manifesto {
  position: relative;
  display: grid;
  min-height: 610px;
  place-items: center;
  padding: 80px 5.5vw;
  isolation: isolate;
  text-align: center;
}

.manifesto-bg {
  background:
    linear-gradient(rgba(2, 3, 4, 0.6), rgba(2, 3, 4, 0.88)),
    url("assets/scene-03-barrels.webp") center / cover no-repeat;
  filter: grayscale(0.6);
}

.manifesto-content {
  max-width: 1150px;
}

.video-reserve {
  position: relative;
  display: grid;
  min-height: min(760px, 72vw);
  overflow: hidden;
  place-items: end start;
  padding: 110px 5.5vw;
  isolation: isolate;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #050607;
}

.reserve-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.08);
}

.video-reserve-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 66% 36%, rgba(207, 52, 48, 0.16), transparent 34%),
    linear-gradient(90deg, rgba(2, 3, 4, 0.72), rgba(2, 3, 4, 0.22) 47%, rgba(2, 3, 4, 0.78)),
    linear-gradient(0deg, rgba(2, 3, 4, 0.84), transparent 44%);
}

.video-reserve::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  opacity: 0.42;
}

.video-reserve-content {
  max-width: 820px;
}

.video-reserve-content h2 {
  margin-bottom: 24px;
}

.video-reserve-content p:not(.eyebrow) {
  max-width: 620px;
  color: #d4d0c8;
  font-size: 17px;
  line-height: 1.75;
}

blockquote {
  margin: 0;
  font: 700 clamp(41px, 5.5vw, 84px) / 1.08 var(--display);
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

blockquote em {
  font-size: 0.94em;
}

.section-reserves {
  background: #090b0c;
}

.reserve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 72px;
  background: var(--line);
  border: 1px solid var(--line);
}

.reserve-card {
  display: flex;
  min-height: 352px;
  flex-direction: column;
  justify-content: space-between;
  padding: 27px;
  background: #0d1012;
  transition: background 180ms ease, transform 180ms ease;
}

.reserve-card:hover {
  z-index: 1;
  background: #15191c;
  transform: translateY(-8px);
}

.card-top {
  display: flex;
  justify-content: space-between;
  color: var(--red-bright);
}

.card-top i {
  color: var(--muted);
  font-style: normal;
}

.reserve-card h3 {
  margin: 0 0 15px;
}

.reserve-card strong {
  color: var(--cream-soft);
  border-top: 1px solid var(--line);
  padding-top: 16px;
  font: 600 12px/1 var(--display);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.reserve-card b {
  float: right;
  color: var(--red-bright);
}

.section-thesis {
  padding-top: 0;
  padding-bottom: 0;
  background: #070809;
}

.section-thesis .section-index {
  padding-top: 100px;
}

.thesis-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(450px, 1.18fr);
  gap: 6vw;
  align-items: center;
}

.thesis-image {
  position: relative;
  align-self: stretch;
  min-width: 0;
  min-height: 580px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.thesis-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
  filter: saturate(0.88) contrast(1.08);
}

.thesis-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 70%, #070809);
  content: "";
}

.thesis-content {
  max-width: 700px;
  min-width: 0;
  padding: 95px 5vw 95px 0;
}

.thesis-content h2 {
  margin-bottom: 26px;
}

.thesis-points {
  margin-top: 35px;
  border-top: 1px solid var(--line);
}

.thesis-points p {
  margin: 0;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  color: var(--cream-soft);
  font: 600 15px/1 var(--display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.thesis-points span {
  color: var(--red-bright);
  margin-right: 18px;
}

.section-roadmap {
  background: #0b0d0f;
}

.roadmap-list {
  margin-top: 69px;
  border-top: 1px solid var(--line-strong);
}

.roadmap-item {
  display: grid;
  grid-template-columns: 0.6fr 1fr 1.8fr auto;
  gap: 28px;
  align-items: center;
  min-height: 110px;
  border-bottom: 1px solid var(--line);
  transition: padding 180ms ease, background 180ms ease;
}

.roadmap-item:hover {
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.025);
}

.roadmap-item span,
.roadmap-item i {
  color: var(--red-bright);
  font: 600 12px/1 var(--display);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.roadmap-item h3 {
  margin: 0;
}

.roadmap-item i {
  color: var(--gold);
  font-style: normal;
}

.section-chart {
  background:
    radial-gradient(circle at 18% 0%, rgba(207, 52, 48, 0.12), transparent 32%),
    #080a0b;
}

.chart-heading {
  align-items: start;
}

.dex-frame {
  position: relative;
  overflow: hidden;
  height: min(760px, 78vh);
  min-height: 560px;
  margin-top: 70px;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(180deg, rgba(12, 15, 18, 0.9), rgba(4, 5, 6, 0.96)),
    #050607;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.38);
}

.dex-frame::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.04);
  content: "";
}

.dex-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.chart-actions {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.launch {
  position: relative;
  display: grid;
  min-height: 780px;
  place-items: center;
  padding: 110px 5.5vw;
  isolation: isolate;
  text-align: center;
}

.launch-bg {
  background:
    radial-gradient(circle at center, rgba(7, 8, 9, 0.36), rgba(4, 5, 6, 0.96) 78%),
    linear-gradient(rgba(4, 5, 6, 0.18), rgba(4, 5, 6, 0.7)),
    url("assets/scene-06-ignition.webp") center / cover no-repeat;
}

.launch-content {
  max-width: 840px;
}

.launch h2 {
  font-size: clamp(76px, 12vw, 180px);
}

.launch p {
  color: #c1bcb3;
  font-size: 16px;
  line-height: 1.7;
}

.contract-box {
  margin: 35px auto 0;
  padding: 18px;
  border: 1px solid var(--line-strong);
  background: rgba(3, 4, 5, 0.72);
  text-align: left;
}

.contract-box > span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font: 600 11px/1 var(--display);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.contract-copy {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border: 0;
  color: #d6d0c6;
  background: transparent;
  cursor: pointer;
  gap: 20px;
}

.contract-copy b {
  overflow: hidden;
  font: 600 16px/1.3 var(--display);
  letter-spacing: 0.12em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contract-copy i {
  color: var(--red-bright);
  font: 700 12px/1 var(--display);
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.launch-note {
  margin-bottom: 0;
  color: var(--muted) !important;
  font-size: 12px !important;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 40px;
  align-items: start;
  padding: 45px 5.5vw;
  border-top: 1px solid var(--line);
  background: #070809;
}

.footer-brand {
  margin-bottom: 14px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font: 500 11px/1.7 var(--display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.disclosure {
  max-width: 650px;
  letter-spacing: 0.1em !important;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-end;
}

.menu-toggle {
  display: none;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  padding: 14px 18px;
  color: white;
  background: var(--red);
  border: 1px solid var(--red-bright);
  font: 700 12px/1 var(--display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 90ms; }
.delay-2 { transition-delay: 180ms; }
.delay-3 { transition-delay: 270ms; }

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

  .site-nav {
    position: absolute;
    top: 74px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 23px;
    padding: 25px 5.5vw 29px;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 6, 7, 0.97);
  }

  .site-nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
    width: 36px;
    height: 36px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    margin-left: auto;
    border: 0;
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    width: 23px;
    height: 1px;
    background: var(--cream);
  }

  .header-actions {
    display: none;
  }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .summit-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .reserve-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-panel-center,
  .story-panel-right {
    right: 5.5vw;
    left: 5.5vw;
    max-width: 760px;
    text-align: left;
  }

  .thesis-layout {
    grid-template-columns: 1fr;
  }

  .thesis-image {
    min-height: min(570px, 76vw);
  }

  .thesis-image::after {
    background: linear-gradient(0deg, #070809, transparent 30%);
  }

  .thesis-content {
    padding: 0 0 100px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 64px;
  }

  .site-nav {
    top: 64px;
  }

  .brand-logo {
    width: 142px;
    height: 50px;
  }

  .hero-story {
    height: 560vh;
  }

  .hero-sticky {
    min-height: 100svh;
    padding: 128px 5.5vw 142px;
  }

  .hero-vignette {
    background:
      linear-gradient(90deg, rgba(2, 3, 4, 0.78), rgba(2, 3, 4, 0.18)),
      linear-gradient(0deg, rgba(2, 3, 4, 0.98), rgba(2, 3, 4, 0.16) 75%);
  }

  .story-panel {
    right: 5.5vw;
    bottom: 16vh;
    left: 5.5vw;
  }

  .story-panel-center,
  .story-panel-left,
  .story-panel-right {
    bottom: 23vh;
  }

  .story-panel h1 {
    font-size: clamp(67px, 20vw, 96px);
  }

  .story-panel h2 {
    font-size: clamp(64px, 18vw, 90px);
  }

  .hero-copy {
    font-size: 15px;
  }

  .story-progress {
    right: 5.5vw;
    bottom: 4vh;
    left: 5.5vw;
    flex-wrap: wrap;
    gap: 11px;
  }

  .story-progress i {
    order: 3;
    width: 100%;
  }

  .story-progress-count {
    margin-left: auto;
  }

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

  .signal-strip article {
    min-height: 112px;
    padding: 22px;
    border-bottom: 1px solid var(--line);
  }

  .signal-strip strong {
    font-size: 30px;
  }

  .intel-label {
    padding: 0 12px;
    letter-spacing: 0.18em;
  }

  .section {
    padding: 84px 5.5vw;
  }

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

  h2 {
    font-size: clamp(57px, 18vw, 83px);
  }

  .lead {
    font-size: 16px;
  }

  .countdown-grid article {
    min-height: 118px;
    padding: 18px;
  }

  .countdown-grid strong {
    font-size: clamp(44px, 16vw, 66px);
  }

  .summit-metadata p {
    display: block;
    line-height: 1.7;
  }

  .summit-metadata span {
    display: block;
    margin-bottom: 5px;
  }

  .principles,
  .reserve-grid {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .principle {
    min-height: 215px;
  }

  .manifesto {
    min-height: 510px;
  }

  .video-reserve {
    min-height: 620px;
    padding: 92px 5.5vw;
  }

  blockquote {
    font-size: clamp(42px, 12vw, 63px);
  }

  .reserve-card {
    min-height: 280px;
  }

  .section-thesis .section-index {
    padding-top: 80px;
  }

  .thesis-image {
    min-height: 68vw;
  }

  .roadmap-item {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 20px 0;
  }

  .roadmap-item h3,
  .roadmap-item p {
    grid-column: 1 / -1;
  }

  .roadmap-item:hover {
    padding: 20px 12px;
  }

  .launch {
    min-height: 720px;
  }

  .launch h2 {
    font-size: clamp(81px, 25vw, 126px);
  }

  .dex-frame {
    min-height: 520px;
    height: 68vh;
    margin-top: 46px;
  }

  .button {
    width: 100%;
  }

  .contract-copy b {
    font-size: 13px;
  }
}

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