:root {
  --void: #04090c;
  --abyss: #071116;
  --chamber: #0b1a1f;
  --panel: rgba(12, 32, 38, 0.72);
  --cyan: #7efcf6;
  --cyan-hot: #c8fffb;
  --cyan-dim: #2f8d88;
  --red: #c61f38;
  --navy: #14324a;
  --paper: #eef6f6;
  --ink: #8ea3a8;
  --line: rgba(126, 252, 246, 0.16);
  --display: "Anybody", "Arial Narrow", sans-serif;
  --tech: "Oxanium", "Segoe UI", sans-serif;
  --body: "Figtree", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  background: var(--void);
  color: var(--paper);
  font-family: var(--body);
  min-height: 100%;
}

body {
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

code {
  font-family: var(--tech);
}

#field,
.mesh,
.grain,
.flow-lines,
.stars,
.flag-hairline,
.scroll-liquid,
.cursor-orb {
  pointer-events: none;
}

#field,
.mesh,
.grain {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.mesh {
  background:
    radial-gradient(900px 520px at 12% -10%, rgba(20, 80, 88, 0.28), transparent 58%),
    radial-gradient(720px 480px at 92% 8%, rgba(198, 31, 56, 0.1), transparent 55%),
    radial-gradient(800px 620px at 50% 120%, rgba(20, 50, 70, 0.35), transparent 60%),
    linear-gradient(180deg, #061014 0%, #08161b 42%, #071018 100%);
  animation: meshDrift 28s ease-in-out infinite alternate;
}

@keyframes meshDrift {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to { transform: scale(1.06) translate3d(-1.5%, 1.2%, 0); }
}

.grain {
  z-index: 1;
  opacity: 0.09;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.flow-lines {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.28;
}

.flow {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.1;
  stroke-linecap: round;
  stroke-dasharray: 8 18;
  animation: flowMove 18s linear infinite;
}

.flow-b {
  opacity: 0.55;
  animation-duration: 24s;
  animation-direction: reverse;
}

.flow-c {
  opacity: 0.35;
  animation-duration: 30s;
}

@keyframes flowMove {
  to { stroke-dashoffset: -420; }
}

.stars {
  position: fixed;
  inset: 0;
  z-index: 1;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #e8f6f6;
  opacity: 0.18;
  animation: twinkle 4s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.12; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.8); }
}

.flag-hairline {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 40;
  background: linear-gradient(90deg, #0a2540 0 28%, #f4f7f8 28% 36%, #c61f38 36% 100%);
}

.scroll-liquid {
  position: fixed;
  top: 3px;
  left: 0;
  height: 2px;
  width: 0;
  z-index: 40;
  background: linear-gradient(90deg, var(--cyan), #fff);
  box-shadow: 0 0 16px var(--cyan);
}

.cursor-orb {
  position: fixed;
  width: 220px;
  height: 220px;
  margin: -110px 0 0 -110px;
  border-radius: 50%;
  z-index: 2;
  background: radial-gradient(circle, rgba(126, 252, 246, 0.14), transparent 68%);
  transform: translate3d(-200px, -200px, 0);
  transition: transform 0.12s linear;
  display: none;
}

@media (pointer: fine) {
  .cursor-orb { display: block; }
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.nav,
.tape,
main,
.footer {
  position: relative;
  z-index: 3;
}

.nav {
  position: sticky;
  top: 3px;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(4, 9, 12, 0.42);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nav.scrolled {
  background: rgba(4, 9, 12, 0.82);
  border-bottom-color: var(--line);
}

.nav-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(126, 252, 246, 0.28);
  box-shadow: 0 0 22px rgba(126, 252, 246, 0.18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: var(--display);
  font-style: italic;
  font-weight: 800;
  font-stretch: 75%;
  font-variation-settings: "wdth" 75;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-copy small {
  font-family: var(--tech);
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  font-family: var(--tech);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.2s ease;
}

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

.nav-icon {
  width: 18px;
  display: grid;
  place-items: center;
}

.nav-icon img,
.btn img,
.seat img,
.footer-links img,
.eyebrow img,
.facts li img,
.station-icon img,
.telemetry-bar img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

img.brand-icon {
  filter: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-family: var(--tech);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn-nav,
.btn-primary {
  background: linear-gradient(180deg, #1b4d4d, #0d2c2e);
  border-color: rgba(126, 252, 246, 0.4);
  color: var(--cyan-hot);
  box-shadow: 0 0 0 0 rgba(126, 252, 246, 0.2);
}

.btn-primary:hover,
.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(126, 252, 246, 0.16);
  border-color: var(--cyan);
}

.btn-ghost,
.btn-line {
  background: rgba(8, 18, 22, 0.5);
  color: var(--paper);
}

.btn-line {
  background: transparent;
}

.btn-ghost:hover,
.btn-line:hover {
  border-color: var(--cyan);
  color: var(--cyan-hot);
}

.btn-wide {
  min-width: 280px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 5px;
  flex-direction: column;
}

.nav-toggle i {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--paper);
}

.tape {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 20, 24, 0.55);
}

.tape-track {
  display: flex;
  gap: 48px;
  width: max-content;
  padding: 10px 0;
  animation: tape 32s linear infinite;
  font-family: var(--tech);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}

.tape-track span + span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 48px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  transform: translateY(-1px);
}

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

.hero {
  min-height: calc(100vh - 118px);
  display: grid;
  align-items: center;
  padding: 40px 0 80px;
  position: relative;
}

.hero-rail {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-family: var(--tech);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 11px;
}

.hero-rail span {
  color: var(--cyan);
}

.hero-stage {
  width: min(1240px, calc(100% - 72px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: center;
}

.well {
  position: relative;
  aspect-ratio: 1.15 / 1;
  display: grid;
  place-items: center;
}

.well-ring,
.well-ring-delay {
  position: absolute;
  inset: 4%;
  border-radius: 46% 54% 48% 52% / 52% 46% 54% 48%;
  border: 1px solid rgba(126, 252, 246, 0.22);
  animation: blobSpin 16s linear infinite;
}

.well-ring-delay {
  inset: -2%;
  opacity: 0.45;
  animation-duration: 22s;
  animation-direction: reverse;
  border-style: dashed;
}

@keyframes blobSpin {
  to { transform: rotate(360deg); }
}

.well-core {
  position: relative;
  width: min(86%, 430px);
  aspect-ratio: 1.65 / 1;
  border-radius: 46% 54% 48% 52% / 52% 46% 54% 48%;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 0 0 1px rgba(126, 252, 246, 0.28),
    0 0 80px rgba(126, 252, 246, 0.16),
    inset 0 0 50px rgba(0, 0, 0, 0.35);
  animation: wellBreathe 5.5s ease-in-out infinite;
}

@keyframes wellBreathe {
  0%, 100% { border-radius: 46% 54% 48% 52% / 52% 46% 54% 48%; }
  50% { border-radius: 52% 48% 56% 44% / 46% 54% 46% 54%; }
}

.well-core video,
.well-fallback,
.well-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.well-fallback {
  background:
    radial-gradient(circle at 30% 40%, rgba(126, 252, 246, 0.18), transparent 42%),
    radial-gradient(circle at 72% 58%, rgba(198, 31, 56, 0.16), transparent 40%),
    linear-gradient(135deg, #0a2428, #07141a 58%, #12304a);
  animation: fallbackShift 10s ease-in-out infinite alternate;
}

@keyframes fallbackShift {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.well-shade {
  background: linear-gradient(180deg, rgba(4, 9, 12, 0.08), rgba(4, 9, 12, 0.42));
}

.hero-logo {
  position: absolute;
  inset: 8%;
  width: auto;
  height: auto;
  object-fit: contain;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 0 28px rgba(126, 252, 246, 0.45));
  animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.03); }
}

.hero-copy h1 {
  font-family: var(--display);
  font-style: italic;
  font-stretch: 75%;
  font-variation-settings: "wdth" 75;
  font-weight: 900;
  font-size: clamp(56px, 8vw, 108px);
  line-height: 0.84;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.hero-copy h1 span {
  display: block;
}

.cyan {
  color: var(--cyan);
  text-shadow: 0 0 28px rgba(126, 252, 246, 0.28);
}

.italic {
  font-style: italic;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-family: var(--tech);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--cyan);
}

.symbol {
  margin: 14px 0 22px;
  font-family: var(--tech);
  letter-spacing: 0.34em;
  color: var(--ink);
}

.mandate {
  max-width: 560px;
  padding: 18px 0 8px;
  border-top: 1px solid var(--line);
}

.mandate p {
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.35;
  font-weight: 500;
}

.mandate em {
  font-style: italic;
  color: var(--cyan);
}

.mandate footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  color: var(--ink);
  font-family: var(--tech);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
}

.mandate footer i {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 22px;
}

.ca {
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(12px);
  border-radius: 16px;
}

.ca span {
  display: block;
  margin-bottom: 8px;
  font-family: var(--tech);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}

.ca-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ca-row code {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--cyan-hot);
  font-size: 13px;
}

.btn-copy {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-family: var(--tech);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.btn-copy:hover,
.btn-copy.copied {
  border-color: var(--cyan);
  color: var(--cyan);
}

.descend {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--tech);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

.descend b {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, var(--cyan), transparent);
  animation: descend 1.6s ease-in-out infinite;
}

@keyframes descend {
  0%, 100% { transform: scaleY(0.4); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
}

.section {
  padding: 108px 0;
}

.head {
  max-width: 760px;
  margin-bottom: 48px;
}

.kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-family: var(--tech);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
}

.head h2 {
  font-family: var(--display);
  font-style: italic;
  font-stretch: 75%;
  font-variation-settings: "wdth" 75;
  font-weight: 800;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.92;
  text-transform: uppercase;
}

.head h2 em {
  color: var(--cyan);
  font-style: italic;
}

.lede {
  margin-top: 18px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.6;
}

.about-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: center;
}

.seal {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
}

.seal-orbit {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px dashed rgba(126, 252, 246, 0.25);
  animation: blobSpin 28s linear infinite;
}

.seal img {
  width: 220px;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 0 32px rgba(126, 252, 246, 0.28));
  animation: logoFloat 7s ease-in-out infinite;
}

.seal-meta {
  margin-top: 18px;
  text-align: center;
  font-family: var(--tech);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.seal-meta strong {
  display: block;
  color: var(--cyan);
}

.seal-meta span {
  color: var(--ink);
  font-size: 12px;
}

.articles {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.article {
  padding: 24px 8px 24px 0;
  border-bottom: 1px solid var(--line);
}

.article span {
  font-family: var(--tech);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}

.article h3 {
  margin: 8px 0 10px;
  font-family: var(--display);
  font-style: italic;
  font-stretch: 75%;
  font-variation-settings: "wdth" 75;
  font-size: 32px;
  text-transform: uppercase;
}

.article p {
  color: var(--ink);
  line-height: 1.65;
  max-width: 58ch;
}

.facts {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.facts li,
.seat,
.station {
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.facts li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
}

.facts li b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--cyan);
  font-family: var(--tech);
}

.facts strong,
.seat strong,
.station h3 {
  display: block;
  font-family: var(--tech);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.facts span,
.seat span,
.station p {
  color: var(--ink);
  font-size: 14px;
}

.howtobuy {
  background: linear-gradient(180deg, transparent, rgba(10, 36, 42, 0.5), transparent);
}

.conduit {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}

.conduit::before {
  content: "";
  position: absolute;
  top: 46px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 16px var(--cyan);
  animation: conduitPulse 3.2s ease-in-out infinite;
}

@keyframes conduitPulse {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.9; }
}

.station {
  position: relative;
  padding: 28px 22px 26px;
  border-radius: 22px;
  min-height: 280px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.station:hover {
  transform: translateY(-6px);
  border-color: rgba(126, 252, 246, 0.45);
  box-shadow: 0 18px 40px rgba(126, 252, 246, 0.08);
}

.station-index {
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  color: var(--cyan);
}

.station-icon {
  width: 46px;
  height: 46px;
  margin: 16px 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(4, 9, 12, 0.5);
}

.station-icon img {
  width: 22px;
  height: 22px;
}

.seat img {
  width: 28px;
  height: 28px;
}

.station h3 {
  margin-bottom: 10px;
  font-size: 15px;
}

.protocol-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.telemetry {
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(6, 14, 18, 0.72);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.28);
}

.telemetry-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-family: var(--tech);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}

.telemetry-bar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
}

.telemetry-frame {
  position: relative;
  height: 620px;
  background: #0b1214;
}

.telemetry-frame iframe,
.telemetry-empty {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.telemetry-empty {
  display: none;
  place-content: center;
  text-align: center;
  gap: 14px;
  padding: 32px;
  color: var(--ink);
}

.telemetry-empty.is-on {
  display: grid;
}

.telemetry-empty img {
  width: 36px;
  height: 36px;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}

.proclamation {
  position: relative;
  margin: 0 0 36px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(126, 252, 246, 0.24);
  box-shadow: 0 0 60px rgba(126, 252, 246, 0.12);
}

.proclamation img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.01);
  animation: bannerDrift 18s ease-in-out infinite alternate;
}

@keyframes bannerDrift {
  from { transform: scale(1.01) translateY(0); }
  to { transform: scale(1.045) translateY(-1.4%); }
}

.proclamation::after {
  content: "";
  position: absolute;
  inset: -20% auto -20% -30%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: skewX(-18deg);
  animation: shine 6.5s ease-in-out infinite;
}

@keyframes shine {
  0%, 18% { left: -30%; opacity: 0; }
  32% { opacity: 1; }
  55%, 100% { left: 120%; opacity: 0; }
}

.proclamation figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 24px;
  background: linear-gradient(180deg, transparent, rgba(4, 9, 12, 0.88));
  font-family: var(--display);
  font-style: italic;
  font-stretch: 75%;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(16px, 2vw, 22px);
}

.proclamation cite {
  display: block;
  margin-top: 8px;
  font-family: var(--tech);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--cyan);
}

.seats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.seat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px;
  border-radius: 20px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.seat:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
  box-shadow: 0 16px 40px rgba(126, 252, 246, 0.08);
}

.seat img {
  width: 28px;
  height: 28px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 48px;
  background: rgba(4, 9, 12, 0.7);
}

.footer-grid {
  display: grid;
  gap: 18px;
}

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

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

.footer-brand strong {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-stretch: 75%;
  text-transform: uppercase;
}

.footer-brand span,
.fineprint {
  color: var(--ink);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 14px;
}

.footer-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s ease;
  transition-delay: calc(var(--i, 0) * 90ms);
}

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

@media (max-width: 980px) {
  .hero-rail { display: none; }
  .hero-stage,
  .about-layout,
  .conduit,
  .facts,
  .seats {
    grid-template-columns: 1fr;
  }
  .hero-stage {
    width: min(1180px, calc(100% - 32px));
    gap: 28px;
  }
  .conduit::before { display: none; }
  .telemetry-frame { height: 480px; }
  .nav-toggle { display: grid; }
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(4, 9, 12, 0.96);
    border-bottom: 1px solid var(--line);
  }
  .nav.open .nav-links { display: flex; }
}

@media (max-width: 640px) {
  .hero-copy h1 { font-size: 52px; }
  .section { padding: 76px 0; }
  .telemetry-frame { height: 380px; }
  .proclamation figcaption { font-size: 15px; }
}
