:root {
  --ink: #050607;
  --ink-soft: #0a0c0d;
  --panel: #0d1011;
  --panel-raised: #121617;
  --bone: #e8ece9;
  --bone-dim: #c8cfcb;
  --steel: #9dafb8;
  --steel-dark: #74858d;
  --acid: #d7ff3f;
  --acid-ink: #111400;
  --rust: #d56c45;
  --line: rgba(232, 236, 233, 0.17);
  --line-strong: rgba(232, 236, 233, 0.34);
  --page-pad: clamp(1rem, 3vw, 3rem);
  --section-pad: clamp(5rem, 11vw, 10rem);
  --header-height: 78px;
  --display: "Bricolage Grotesque", "Arial Narrow", sans-serif;
  --body: "IBM Plex Sans", sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--acid) var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body,
main,
.site-header,
.section,
.site-footer {
  max-width: 100vw;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath d='M0 60h120M60 0v120' stroke='%239dafb8' stroke-opacity='.08' stroke-width='.7'/%3E%3Ccircle cx='60' cy='60' r='1' fill='%23d7ff3f' fill-opacity='.22'/%3E%3C/svg%3E");
  background-size: 120px 120px;
}

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

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  transform: translateY(-180%);
  background: var(--acid);
  color: var(--acid-ink);
  font-family: var(--mono);
  font-weight: 600;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 7, 0.9);
  backdrop-filter: blur(18px);
  transition: transform 360ms var(--ease-out), background-color 200ms ease;
}

.site-header.is-hidden {
  transform: translateY(-110%);
}

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

.header-shell {
  width: min(100%, 1600px);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--page-pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.brand,
.header-buy,
.hero-grid > *,
.section-heading > *,
.flight-stage,
.market-console,
.site-footer > * {
  min-width: 0;
}

.brand {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(215, 255, 63, 0.15));
}

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

.brand-type strong {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.brand-type small {
  margin-top: 0.28rem;
  color: var(--steel);
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 3.25rem);
}

.primary-nav a {
  position: relative;
  padding: 1rem 0;
  color: var(--steel);
  font-family: var(--mono);
  font-size: 0.69rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.55rem;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--acid);
  transition: transform 260ms var(--ease-out);
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--bone);
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 1px solid transparent;
  padding: 0.72rem 1rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 180ms var(--ease-out), box-shadow 180ms ease, border-color 180ms ease,
    background-color 180ms ease;
}

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

.button--acid {
  background: var(--acid);
  color: var(--acid-ink);
  box-shadow: 0 0 0 rgba(215, 255, 63, 0);
}

.button--acid:hover {
  box-shadow: 0 8px 28px rgba(215, 255, 63, 0.18);
}

.button--acid .button-icon--generated {
  filter: brightness(0);
}

.button--outline {
  border-color: var(--line-strong);
  background: rgba(5, 6, 7, 0.72);
  color: var(--bone);
}

.button--outline:hover {
  border-color: var(--acid);
}

a.is-unconfigured {
  cursor: help;
}

.header-buy {
  justify-self: end;
  min-width: 178px;
}

.button-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.button-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.button-arrow {
  margin-left: auto;
  font-size: 1rem;
}

.nav-toggle {
  width: 48px;
  height: 48px;
  display: none;
  border: 1px solid var(--line);
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 19px;
  height: 1px;
  margin: 5px auto;
  display: block;
  background: var(--bone);
  transition: transform 200ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.section {
  position: relative;
  width: min(100%, 1600px);
  margin: 0 auto;
  padding: var(--section-pad) var(--page-pad);
  scroll-margin-top: calc(var(--header-height) - 1px);
}

.section-index {
  position: absolute;
  top: calc(var(--section-pad) * 0.44);
  right: var(--page-pad);
  left: var(--page-pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  color: var(--steel-dark);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-index::before,
.section-index::after {
  height: 1px;
  content: "";
  background: var(--line);
}

.section-index span:first-child {
  position: absolute;
  left: 0;
  transform: translateY(-0.9rem);
}

.section-index span:nth-child(2) {
  grid-column: 2;
}

.section-index span:last-child {
  position: absolute;
  right: 0;
  transform: translateY(-0.9rem);
}

.hero {
  min-height: 100svh;
  padding-top: calc(var(--header-height) + clamp(5.5rem, 9vw, 8.5rem));
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.hero .section-index {
  top: calc(var(--header-height) + clamp(2.4rem, 4vw, 3.5rem));
}

.hero-grid {
  min-height: calc(100svh - var(--header-height) - 9rem);
  display: grid;
  grid-template-columns: minmax(196px, 0.45fr) minmax(340px, 0.84fr) minmax(480px, 1.35fr);
  align-items: stretch;
  gap: clamp(1rem, 2vw, 2.2rem);
}

.action-rail {
  display: flex;
  flex-direction: column;
  align-self: center;
  border-top: 1px solid var(--line);
}

.rail-label {
  padding: 0.85rem 0;
  color: var(--steel-dark);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.09em;
}

.action-card {
  position: relative;
  min-height: 90px;
  display: grid;
  grid-template-columns: 23px 38px 1fr auto;
  align-items: center;
  gap: 0.7rem;
  border-top: 1px solid var(--line);
  padding: 1rem 0.65rem 1rem 0;
  overflow: hidden;
  transition: color 180ms ease, border-color 180ms ease, padding 220ms var(--ease-out);
}

.action-card:last-child {
  border-bottom: 1px solid var(--line);
}

.action-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  transform: translateX(-102%);
  background: var(--bone);
  transition: transform 300ms var(--ease-out);
}

.action-card:hover,
.action-card:focus-visible {
  border-color: var(--bone);
  padding-left: 0.65rem;
  color: var(--ink);
}

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

.action-card--buy {
  color: var(--acid);
}

.action-card--buy::before {
  background: var(--acid);
}

.action-card--buy:hover,
.action-card--buy:focus-visible {
  color: var(--acid-ink);
}

.action-number {
  align-self: start;
  color: var(--steel-dark);
  font-family: var(--mono);
  font-size: 0.54rem;
}

.action-icon {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
  fill: currentColor;
}

.action-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.action-card:hover .action-icon--generated,
.action-card:focus-visible .action-icon--generated {
  filter: grayscale(1) contrast(2);
}

.action-copy {
  min-width: 0;
  display: grid;
  gap: 0.22rem;
}

.action-copy strong {
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.action-copy small {
  color: var(--steel);
  font-family: var(--mono);
  font-size: 0.53rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.action-card:hover .action-copy small,
.action-card:focus-visible .action-copy small,
.action-card:hover .action-number,
.action-card:focus-visible .action-number {
  color: currentColor;
  opacity: 0.65;
}

.action-arrow {
  font-family: var(--mono);
  font-size: 1rem;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1rem, 2vw, 2rem) 0;
}

.hero-kicker,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--steel);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.live-dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 14px rgba(215, 255, 63, 0.7);
  animation: signalPulse 2.4s ease-in-out infinite;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.81;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: clamp(1.75rem, 4vw, 3.5rem);
  font-size: clamp(4.1rem, 5.9vw, 6.7rem);
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero h1 .outline-word {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--bone);
}

.hero h1 em {
  color: var(--acid);
  font-style: normal;
  -webkit-text-stroke: 0;
}

.hero-lede {
  width: min(100%, 36rem);
  margin: clamp(2rem, 4vw, 3.5rem) 0 0;
  color: var(--bone-dim);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.65;
}

.ticker-strip {
  margin-top: clamp(2rem, 4vw, 3.2rem);
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  border-block: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.61rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticker-strip > * {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--line);
  padding: 0.75rem 0.9rem;
}

.ticker-strip > *:last-child {
  border-right: 0;
  color: var(--steel);
}

.ticker-strip strong {
  background: var(--acid);
  color: var(--acid-ink);
}

.contract-panel {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  padding: 0.9rem 1rem;
  background: rgba(13, 16, 17, 0.7);
}

.contract-panel > div {
  min-width: 0;
  display: grid;
  gap: 0.35rem;
}

.contract-panel small {
  color: var(--steel-dark);
  font-family: var(--mono);
  font-size: 0.54rem;
  letter-spacing: 0.08em;
}

.contract-panel code {
  max-width: 32ch;
  overflow: hidden;
  color: var(--steel);
  font-family: var(--mono);
  font-size: 0.67rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-button {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 0;
  padding: 0.5rem;
  background: transparent;
  color: var(--bone);
  font-family: var(--mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  cursor: pointer;
}

.copy-button:hover {
  color: var(--acid);
}

.copy-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.specimen-card {
  position: relative;
  min-height: clamp(560px, 67vw, 810px);
  margin: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  border: 1px solid var(--line-strong);
  overflow: hidden;
  background: #000;
}

.specimen-card::before,
.specimen-card::after {
  position: absolute;
  z-index: 3;
  width: 30px;
  height: 30px;
  content: "";
  pointer-events: none;
}

.specimen-card::before {
  top: 8px;
  left: 8px;
  border-top: 1px solid var(--acid);
  border-left: 1px solid var(--acid);
}

.specimen-card::after {
  right: 8px;
  bottom: 8px;
  border-right: 1px solid var(--acid);
  border-bottom: 1px solid var(--acid);
}

.specimen-topline,
.specimen-card figcaption {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(5, 6, 7, 0.86);
  color: var(--steel);
  font-family: var(--mono);
  font-size: 0.54rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.specimen-topline {
  border-bottom: 1px solid var(--line);
}

.specimen-status {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--acid);
}

.specimen-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.specimen-image-wrap {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #000;
}

.specimen-image-wrap picture {
  width: 100%;
  height: 100%;
  display: block;
}

.specimen-image {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: contain;
  filter: contrast(1.06) saturate(0.72);
  transform: translate3d(var(--fly-x, 0), var(--fly-y, 0), 0) scale(0.96);
  transition: transform 900ms var(--ease-out), filter 300ms ease;
}

.specimen-card:hover .specimen-image {
  filter: contrast(1.12) saturate(0.95);
}

.scan-line {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  height: 1px;
  background: var(--acid);
  box-shadow: 0 0 16px rgba(215, 255, 63, 0.8);
  opacity: 0.65;
  animation: specimenScan 7s linear infinite;
}

.target {
  position: absolute;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(215, 255, 63, 0.7);
  border-radius: 50%;
  pointer-events: none;
}

.target::before,
.target::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  background: var(--acid);
  transform: translate(-50%, -50%);
}

.target::before {
  width: 44px;
  height: 1px;
}

.target::after {
  width: 1px;
  height: 44px;
}

.target--one {
  top: 36%;
  left: 24%;
}

.target--two {
  right: 18%;
  bottom: 34%;
  width: 22px;
  height: 22px;
  opacity: 0.6;
}

.measure {
  position: absolute;
  z-index: 2;
  opacity: 0.28;
  pointer-events: none;
}

.measure--x {
  right: 7%;
  bottom: 11%;
  left: 7%;
  height: 6px;
  border-inline: 1px solid var(--bone);
  border-bottom: 1px solid var(--bone);
}

.measure--y {
  top: 9%;
  right: 6%;
  bottom: 9%;
  width: 6px;
  border-top: 1px solid var(--bone);
  border-right: 1px solid var(--bone);
  border-bottom: 1px solid var(--bone);
}

.specimen-card figcaption {
  border-top: 1px solid var(--line);
}

.specimen-card figcaption span:last-child {
  color: var(--rust);
}

.scroll-cue {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: translateX(-50%);
  color: var(--steel-dark);
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-cue i {
  width: 38px;
  height: 1px;
  display: block;
  background: currentColor;
}

.scroll-cue i::after {
  width: 5px;
  height: 5px;
  margin-top: -2px;
  display: block;
  border-radius: 50%;
  background: var(--acid);
  content: "";
  animation: scrollSignal 1.8s ease-in-out infinite;
}

.roadmap,
.market {
  border-top: 1px solid var(--line);
}

.roadmap {
  overflow: clip;
}

.roadmap::before {
  position: absolute;
  top: 20%;
  right: -12%;
  width: 38vw;
  height: 38vw;
  border: 1px solid rgba(215, 255, 63, 0.08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.roadmap::after {
  position: absolute;
  top: 25%;
  right: -7%;
  width: 28vw;
  height: 28vw;
  border: 1px dashed rgba(215, 255, 63, 0.1);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: clamp(2rem, 7vw, 8rem);
}

.section-heading h2 {
  margin-top: 1.4rem;
  font-size: clamp(4.25rem, 9.5vw, 10.5rem);
}

.section-heading p {
  max-width: 34rem;
  margin: 0 0 0.6rem;
  color: var(--steel);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.75;
}

.flight-path {
  position: relative;
  z-index: 1;
  margin: clamp(4rem, 8vw, 7rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.flight-path::before {
  position: absolute;
  top: 38px;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--line-strong);
}

.flight-stage {
  min-width: 0;
  border-left: 1px solid var(--line);
}

.flight-stage:last-child {
  border-right: 1px solid var(--line);
}

.stage-marker {
  position: relative;
  height: 77px;
  padding: 0 1.2rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: var(--steel-dark);
  font-family: var(--mono);
  font-size: 0.62rem;
}

.stage-marker i {
  position: absolute;
  top: 31px;
  left: 1.2rem;
  width: 15px;
  height: 15px;
  border: 1px solid var(--steel-dark);
  border-radius: 50%;
  background: var(--ink);
  transition: border-color 500ms ease, box-shadow 500ms ease, background-color 500ms ease;
}

.flight-stage.is-visible .stage-marker i {
  border-color: var(--bone);
  box-shadow: 0 0 0 5px rgba(232, 236, 233, 0.04);
}

.flight-stage.is-current .stage-marker i,
.flight-stage.is-current.is-visible .stage-marker i {
  border-color: var(--acid);
  background: var(--acid);
  box-shadow: 0 0 0 6px rgba(215, 255, 63, 0.1), 0 0 22px rgba(215, 255, 63, 0.45);
}

.flight-stage article {
  min-height: 430px;
  padding: 2rem clamp(1.1rem, 2vw, 2rem) 1.5rem;
  transition: background-color 200ms ease;
}

.flight-stage article:hover {
  background: rgba(232, 236, 233, 0.025);
}

.stage-state {
  color: var(--steel-dark);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.is-current .stage-state {
  color: var(--acid);
}

.flight-stage h3 {
  margin: 1.4rem 0 1.5rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.flight-stage p {
  margin: 0;
  color: var(--steel);
  font-size: 0.92rem;
  line-height: 1.7;
}

.flight-stage ul {
  margin: 2rem 0 0;
  padding: 1.35rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.flight-stage li {
  position: relative;
  margin-top: 0.65rem;
  padding-left: 1rem;
  color: var(--bone-dim);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.flight-stage li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 4px;
  height: 4px;
  background: var(--steel-dark);
  content: "";
}

.is-current li::before {
  background: var(--acid);
}

.roadmap-note {
  max-width: 840px;
  margin: clamp(2.5rem, 5vw, 4rem) 0 0 auto;
  border-top: 1px solid var(--rust);
  padding-top: 1.2rem;
  color: var(--steel);
  font-size: 0.82rem;
  line-height: 1.7;
}

.roadmap-note span {
  margin-right: 0.45rem;
  color: var(--rust);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.market {
  width: 100%;
  max-width: none;
  padding-inline: max(var(--page-pad), calc((100vw - 1600px) / 2 + var(--page-pad)));
  background: #080a0b;
}

.market .section-index {
  right: max(var(--page-pad), calc((100vw - 1600px) / 2 + var(--page-pad)));
  left: max(var(--page-pad), calc((100vw - 1600px) / 2 + var(--page-pad)));
}

.market-console {
  margin-top: clamp(3.5rem, 7vw, 6rem);
  border: 1px solid var(--line-strong);
  background: var(--ink);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}

.console-bar {
  min-height: 66px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-strong);
}

.console-title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.2rem;
  font-family: var(--mono);
  font-size: 0.69rem;
  letter-spacing: 0.08em;
}

.console-readouts {
  display: flex;
  color: var(--steel-dark);
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.06em;
}

.console-readouts span {
  min-width: 150px;
  display: flex;
  align-items: center;
  border-left: 1px solid var(--line);
  padding: 0.9rem 1rem;
}

.console-readouts b {
  margin-left: 0.35rem;
  color: var(--bone-dim);
  font-weight: 500;
}

.chart-frame {
  position: relative;
  min-height: min(760px, 78vh);
  overflow: hidden;
  background-color: #080b0c;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='52'%3E%3Cpath d='M52 0H0v52' fill='none' stroke='%239dafb8' stroke-opacity='.08'/%3E%3C/svg%3E");
}

.chart-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  background: #080b0c;
  transition: opacity 400ms ease;
}

.market-console.has-chart iframe {
  opacity: 1;
}

.chart-placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: opacity 280ms ease, visibility 280ms ease;
}

.market-console.has-chart .chart-placeholder {
  visibility: hidden;
  opacity: 0;
}

.chart-placeholder picture {
  width: clamp(78px, 9vw, 132px);
  height: clamp(78px, 9vw, 132px);
  margin-bottom: 1.5rem;
  display: block;
  opacity: 0.9;
  filter: drop-shadow(0 0 30px rgba(215, 255, 63, 0.16));
}

.chart-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.chart-placeholder > span {
  color: var(--acid);
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
}

.chart-placeholder h3 {
  margin: 1.2rem 0 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  letter-spacing: -0.065em;
  line-height: 0.9;
  text-transform: uppercase;
}

.chart-placeholder p {
  max-width: 520px;
  margin: 1.5rem 0 1.8rem;
  color: var(--steel);
}

.chart-placeholder code {
  color: var(--bone);
  font-family: var(--mono);
  font-size: 0.86em;
}

.console-footer {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line-strong);
  padding: 0.8rem 1.2rem;
  color: var(--steel-dark);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.console-footer p {
  margin: 0;
}

.console-footer a {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--bone);
}

.console-footer a:hover {
  color: var(--acid);
}

.site-footer {
  width: min(100%, 1600px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: end;
  gap: clamp(2rem, 7vw, 8rem);
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 6vw, 5rem) var(--page-pad) 2rem;
}

.footer-brand {
  display: grid;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.78;
}

.footer-brand strong {
  color: var(--acid);
}

.site-footer p {
  max-width: 650px;
  margin: 0;
  color: var(--steel);
  font-size: 0.78rem;
  line-height: 1.7;
}

.site-footer > a {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer > a:hover {
  color: var(--acid);
}

.footer-year {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  color: var(--steel-dark);
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  max-width: min(360px, calc(100vw - 2rem));
  border: 1px solid var(--acid);
  padding: 0.85rem 1rem;
  transform: translateY(calc(100% + 2rem));
  background: var(--ink-soft);
  color: var(--bone);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.03em;
  opacity: 0;
  transition: transform 300ms var(--ease-out), opacity 200ms ease;
}

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

.js .reveal {
  transform: translateY(28px);
  opacity: 0;
  transition: transform 850ms var(--ease-out), opacity 650ms ease;
}

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

@keyframes signalPulse {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

@keyframes specimenScan {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  8%,
  82% {
    opacity: 0.65;
  }
  92%,
  100% {
    transform: translateY(720px);
    opacity: 0;
  }
}

@keyframes scrollSignal {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.3;
  }
  50% {
    transform: translateX(33px);
    opacity: 1;
  }
}

@media (max-width: 1240px) {
  .hero-grid {
    grid-template-columns: 190px minmax(310px, 0.85fr) minmax(400px, 1.15fr);
  }

  .hero h1 {
    font-size: clamp(3.8rem, 5.8vw, 5.8rem);
  }

  .action-card {
    grid-template-columns: 18px 30px 1fr auto;
    gap: 0.55rem;
  }

  .action-icon {
    width: 29px;
    height: 29px;
  }

  .action-copy small {
    display: none;
  }
}

@media (max-width: 1020px) {
  :root {
    --header-height: 70px;
  }

  .header-shell {
    grid-template-columns: auto 1fr auto;
    gap: 0.75rem;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

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

  .nav-toggle {
    display: block;
    grid-column: 3;
    grid-row: 1;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    z-index: 28;
    padding: 1rem var(--page-pad) 1.5rem;
    display: grid;
    border-bottom: 1px solid var(--line-strong);
    transform: translateY(-125%);
    background: rgba(5, 6, 7, 0.98);
    visibility: hidden;
    opacity: 0;
    transition: transform 300ms var(--ease-out), opacity 200ms ease, visibility 300ms;
  }

  .primary-nav.is-open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }

  .primary-nav a {
    min-height: 52px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-size: 0.72rem;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: minmax(300px, 0.8fr) minmax(420px, 1.2fr);
  }

  .action-rail {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .rail-label {
    grid-column: 1 / -1;
  }

  .action-card {
    min-height: 106px;
    grid-template-columns: 20px 34px 1fr;
    border-right: 1px solid var(--line);
    padding: 1rem;
  }

  .action-card:last-child {
    border-bottom: 0;
  }

  .action-arrow {
    position: absolute;
    right: 0.8rem;
    bottom: 0.7rem;
  }

  .specimen-card {
    min-height: 590px;
  }

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

  .flight-path::before {
    display: none;
  }

  .flight-stage {
    border-top: 1px solid var(--line);
  }

  .flight-stage:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .console-readouts span {
    min-width: 128px;
  }
}

@media (max-width: 820px) {
  :root {
    --page-pad: 1rem;
    --section-pad: 6.5rem;
  }

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

  .brand-type small {
    display: none;
  }

  .header-buy {
    min-width: 0;
    min-height: 44px;
    padding: 0.65rem 0.9rem;
  }

  .header-buy .button-icon,
  .header-buy b,
  .header-buy .button-arrow {
    display: none;
  }

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

  .section-index::after,
  .section-index span:last-child {
    display: none;
  }

  .section-index span:nth-child(2) {
    grid-column: 2;
  }

  .hero {
    padding-top: calc(var(--header-height) + 6.6rem);
    padding-bottom: 6rem;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
  }

  .hero-copy {
    order: 1;
    padding-top: 0;
  }

  .hero h1 {
    margin-top: 1.8rem;
    font-size: clamp(3.7rem, 18vw, 5.5rem);
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero-lede {
    margin-top: 2rem;
    font-size: 0.98rem;
  }

  .ticker-strip {
    grid-template-columns: auto 1fr;
  }

  .ticker-strip > *:last-child {
    display: none;
  }

  .contract-panel {
    align-items: flex-end;
  }

  .copy-button [data-copy-label] {
    display: none;
  }

  .specimen-card {
    order: 3;
    min-height: min(118vw, 580px);
    margin-top: 1rem;
  }

  .specimen-card figcaption span:nth-child(2) {
    display: none;
  }

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

  .action-card {
    min-height: 98px;
  }

  .action-card:nth-of-type(2) {
    border-right: 0;
  }

  .action-card:last-child {
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }

  .action-copy strong {
    font-size: 0.78rem;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 2rem;
  }

  .section-heading h2 {
    font-size: clamp(3.8rem, 19vw, 6rem);
  }

  .section-heading p {
    font-size: 0.95rem;
  }

  .flight-path {
    grid-template-columns: 1fr;
  }

  .flight-stage,
  .flight-stage:last-child,
  .flight-stage:nth-child(2) {
    position: relative;
    display: grid;
    grid-template-columns: 58px 1fr;
    border-right: 0;
    border-left: 0;
  }

  .flight-stage::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 29px;
    width: 1px;
    content: "";
    background: var(--line);
  }

  .stage-marker {
    z-index: 1;
    height: auto;
    padding: 1.5rem 0;
    display: block;
    text-align: center;
    background: var(--ink);
  }

  .stage-marker i {
    top: 48px;
    left: 50%;
    transform: translateX(-50%);
  }

  .flight-stage article {
    min-height: 0;
    padding: 1.6rem 0 3.2rem 1.25rem;
  }

  .flight-stage h3 {
    font-size: 2.7rem;
  }

  .console-bar {
    min-height: 58px;
  }

  .console-readouts span:not(:last-child) {
    display: none;
  }

  .console-readouts span {
    min-width: auto;
  }

  .chart-frame {
    min-height: 580px;
  }

  .chart-placeholder {
    padding: 1.2rem;
  }

  .chart-placeholder h3 {
    font-size: clamp(2.7rem, 14vw, 4.3rem);
  }

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

  .console-footer a {
    width: 100%;
    justify-content: space-between;
    border-top: 1px solid var(--line);
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 2rem;
  }

  .footer-year {
    grid-column: 1;
  }
}

@media (max-width: 420px) {
  .brand-type strong {
    font-size: 1.05rem;
  }

  .header-shell {
    gap: 0.5rem;
  }

  .header-buy {
    font-size: 0.62rem;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 17.5vw, 4.6rem);
  }

  .action-card {
    grid-template-columns: 17px 28px 1fr;
    padding-inline: 0.7rem;
  }

  .action-icon {
    width: 27px;
    height: 27px;
  }

  .specimen-topline span:first-child,
  .specimen-card figcaption span:first-child {
    display: none;
  }

  .specimen-topline,
  .specimen-card figcaption {
    justify-content: flex-end;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .specimen-image {
    transform: none !important;
  }
}
