:root {
  color-scheme: dark;
  --black: #000000;
  --ink: #080808;
  --surface: #0d0d0d;
  --surface-raised: #141414;
  --line: #2a2a2a;
  --line-soft: #1b1b1b;
  --white: #f7f7f3;
  --text: #f5f5f2;
  --muted: #a3a3a3;
  --faint: #686868;
  --volt: #ccff00;
  --live: #ff4d55;
  --gold: #ffc928;
  --page: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  background: var(--black);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: var(--volt);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--volt);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--volt);
  color: var(--black);
  font-weight: 900;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

/* Shared legal, support, invite, and recovery pages. */
body:not(.landing-page) header {
  border-bottom: 1px solid var(--line);
}

body:not(.landing-page) .nav,
body:not(.landing-page) main,
body:not(.landing-page) footer {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.nav .lang-toggle {
  margin-left: auto;
}

footer .lang-toggle {
  margin-top: 16px;
}

.brand {
  color: var(--text);
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
}

.brand span {
  color: var(--volt);
}

body:not(.landing-page) nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

body:not(.landing-page) nav a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  text-decoration: none;
}

body:not(.landing-page) main {
  padding: 64px 0 80px;
}

body:not(.landing-page) h1 {
  max-width: 680px;
  margin: 0 0 10px;
  color: var(--text);
  font-size: 40px;
  line-height: 1.08;
}

body:not(.landing-page) h2 {
  margin: 42px 0 10px;
  color: var(--text);
  font-size: 21px;
}

body:not(.landing-page) p,
body:not(.landing-page) li {
  color: #d0d0d0;
}

.updated,
.lead {
  color: var(--muted);
}

.lead {
  max-width: 680px;
  font-size: 18px;
}

body:not(.landing-page) ul {
  padding-left: 22px;
}

.contact {
  margin-top: 32px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.contact p {
  margin: 4px 0;
}

.invite {
  min-height: calc(100vh - 145px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--volt);
  font-size: 12px;
  font-weight: 900;
}

.invite-code {
  width: min(420px, 100%);
  margin: 36px 0 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.invite-code span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.invite-code strong {
  color: var(--text);
  font-size: 32px;
}

.invite-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-action,
.secondary-action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--volt);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.primary-action {
  background: var(--volt);
  color: var(--black);
}

.secondary-action {
  color: var(--volt);
}

.invite-note {
  max-width: 560px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
}

body:not(.landing-page) footer {
  padding: 24px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

body:not(.landing-page) footer a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}

body:not(.landing-page) main a {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
}

/* Public marketing homepage. */
.landing-page {
  min-width: 320px;
  overflow-x: clip;
  background: var(--black);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 260ms ease, border-color 260ms ease;
}

.site-header.is-scrolled,
.site-header:has(.mobile-menu:not([hidden])) {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(16px);
}

.site-nav {
  width: min(var(--page), calc(100% - 48px));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #a9a9a9;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--white);
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.nav-play,
.mobile-play {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  background: var(--volt);
  color: var(--black);
  font-size: 11px;
  font-weight: 950;
  text-decoration: none;
  transition: transform 220ms var(--ease), background 180ms ease;
}

.nav-play:hover,
.mobile-play:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  padding: 11px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-button span {
  width: 100%;
  height: 2px;
  display: block;
  margin: 4px 0;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  inset: 76px 0 0;
  padding: 44px 24px max(36px, env(safe-area-inset-bottom));
  background: var(--black);
}

.mobile-menu a {
  min-height: 62px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
}

.mobile-menu .mobile-play {
  margin-top: 32px;
  border: 0;
  color: var(--black);
  font-size: 14px;
}

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

.hero::before {
  position: absolute;
  z-index: -3;
  inset: 0;
  content: "";
  background-image: 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: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
}

.hero::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, var(--black) 0%, var(--black) 34%, rgba(0,0,0,0.84) 53%, rgba(0,0,0,0.12) 100%);
}

.hero-score-environment {
  position: absolute;
  z-index: -1;
  top: 18%;
  right: 2%;
  width: 56%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: none;
  user-select: none;
}

.score-ghost,
.score-live {
  font-size: 160px;
  font-weight: 950;
  line-height: 0.8;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.score-ghost {
  color: #171717;
  text-decoration: line-through;
  text-decoration-thickness: 10px;
}

.score-arrow {
  margin: 20px 120px 18px 0;
  color: rgba(204, 255, 0, 0.4);
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
}

.score-live {
  color: transparent;
  -webkit-text-stroke: 3px rgba(204, 255, 0, 0.42);
}

.hero-inner {
  width: min(var(--page), calc(100% - 48px));
  min-height: 650px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  align-items: center;
  gap: 34px;
  padding: 108px 0 80px;
}

.hero-copy {
  position: relative;
  z-index: 5;
  max-width: 630px;
}

.signal,
.section-index {
  margin: 0;
  color: var(--volt);
  font-size: 11px;
  font-weight: 950;
}

.signal {
  display: flex;
  align-items: center;
  gap: 9px;
}

.signal span,
.proof-label span,
.visual-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--volt);
  box-shadow: 0 0 16px rgba(204,255,0,0.55);
}

.hero-wordmark {
  margin: 20px 0 26px;
  color: var(--white);
  font-size: 54px;
  font-weight: 950;
  line-height: 0.9;
}

.hero-wordmark span {
  color: var(--volt);
}

.hero h1 {
  max-width: 620px;
  margin: 0 0 26px;
  color: var(--white);
  font-size: 70px;
  font-weight: 950;
  line-height: 0.94;
}

.hero-lead {
  max-width: 570px;
  margin: 0 0 32px;
  color: #b8b8b8;
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions,
.final-actions {
  max-width: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.action-primary,
.action-secondary {
  min-height: 66px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 10px 18px;
  border: 1px solid var(--volt);
  color: var(--white);
  text-align: center;
  text-decoration: none;
  transition: transform 240ms var(--ease), background 180ms ease, color 180ms ease;
}

.action-primary {
  background: var(--volt);
  color: var(--black);
}

.action-secondary {
  background: rgba(0,0,0,0.58);
}

.action-primary:hover,
.action-secondary:hover {
  transform: translateY(-3px);
}

.action-secondary:hover {
  background: var(--volt);
  color: var(--black);
}

.action-primary span,
.action-secondary span {
  font-size: 12px;
  font-weight: 950;
}

.action-primary small,
.action-secondary small {
  color: inherit;
  font-size: 10px;
  opacity: 0.64;
}

.device-line {
  margin: 16px 0 0;
  color: #858585;
  font-size: 11px;
  font-weight: 800;
}

.device-line span {
  margin-left: 12px;
  color: #a0a0a0;
}

.hero-stage {
  --pointer-x: 0;
  --pointer-y: 0;
  position: relative;
  z-index: 2;
  height: 690px;
  perspective: 1500px;
  transform-style: preserve-3d;
}

.stage-aura {
  position: absolute;
  right: 4%;
  bottom: 8%;
  width: 440px;
  height: 90px;
  background: rgba(204,255,0,0.11);
  filter: blur(46px);
  transform: rotate(-10deg);
}

.screen-plane {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.17);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  transform-style: preserve-3d;
  transition: transform 700ms var(--ease);
}

.screen-plane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plane-main {
  z-index: 4;
  right: 32px;
  top: 34px;
  width: 286px;
  aspect-ratio: 390 / 844;
  transform: rotateY(calc(-13deg + var(--pointer-x) * 4deg)) rotateX(calc(4deg - var(--pointer-y) * 3deg)) translate3d(calc(var(--pointer-x) * 10px), calc(var(--pointer-y) * 8px), 90px);
}

.plane-mid {
  z-index: 3;
  right: 220px;
  top: 128px;
  width: 210px;
  aspect-ratio: 390 / 844;
  opacity: 0.75;
  transform: rotateY(calc(14deg + var(--pointer-x) * 2deg)) rotateZ(-5deg) translate3d(calc(var(--pointer-x) * -9px), calc(var(--pointer-y) * -5px), -30px);
}

.plane-back {
  z-index: 2;
  right: 344px;
  top: 216px;
  width: 154px;
  aspect-ratio: 390 / 844;
  opacity: 0.4;
  transform: rotateY(18deg) rotateZ(-9deg) translateZ(-90px);
}

.ownership-ticket,
.live-ticket {
  position: absolute;
  z-index: 8;
  border: 1px solid rgba(204,255,0,0.72);
  background: rgba(0,0,0,0.9);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  pointer-events: none;
  transition: transform 500ms var(--ease);
}

.ownership-ticket {
  right: 252px;
  top: 244px;
  min-width: 170px;
  padding: 14px 16px;
  transform: translate3d(calc(var(--pointer-x) * -14px), calc(var(--pointer-y) * -10px), 150px) rotate(-2deg);
}

.ownership-ticket span,
.ownership-ticket strong {
  display: block;
}

.ticket-label {
  color: var(--volt);
  font-size: 9px;
  font-weight: 950;
}

.ownership-ticket strong {
  margin: 5px 0 1px;
  color: var(--white);
  font-size: 24px;
  line-height: 1;
}

.ownership-ticket span:last-child {
  color: #8d8d8d;
  font-size: 9px;
  font-weight: 900;
}

.live-ticket {
  right: 3px;
  bottom: 138px;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  transform: translate3d(calc(var(--pointer-x) * 12px), calc(var(--pointer-y) * 8px), 170px);
}

.live-ticket .live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 12px rgba(255,77,85,0.7);
}

.live-ticket span {
  color: #9a9a9a;
  font-size: 9px;
  font-weight: 900;
}

.live-ticket strong {
  color: var(--volt);
  font-size: 17px;
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  bottom: 28px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: #777;
  font-size: 9px;
  font-weight: 900;
  text-decoration: none;
  transform: translateX(-50%);
}

.scroll-cue i {
  width: 1px;
  height: 28px;
  display: block;
  overflow: hidden;
  background: #333;
}

.scroll-cue i::after {
  width: 100%;
  height: 40%;
  display: block;
  background: var(--volt);
  content: "";
  animation: scroll-line 1.6s ease-in-out infinite;
}

.proof-rail {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.proof-label {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 28px;
  border-right: 1px solid var(--line);
  color: #8a8a8a;
  font-size: 10px;
  font-weight: 900;
}

.proof-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(170px, 1fr));
  overflow-x: auto;
}

.proof-items a {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-content: center;
  padding: 16px 24px;
  border-right: 1px solid var(--line);
  color: var(--white);
  text-decoration: none;
  transition: background 200ms ease;
}

.proof-items a:hover {
  background: #171717;
}

.proof-items b {
  grid-row: 1 / 3;
  color: var(--volt);
  font-size: 9px;
}

.proof-items span {
  font-size: 14px;
  font-weight: 900;
}

.proof-items small {
  color: #858585;
  font-size: 10px;
}

.problem-band {
  background: var(--volt);
  color: var(--black);
}

.problem-inner {
  width: min(var(--page), calc(100% - 48px));
  margin: 0 auto;
  padding: 112px 0 104px;
}

.problem-band .section-index {
  color: rgba(0,0,0,0.58);
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 80px;
  margin-top: 34px;
  align-items: end;
}

.problem-grid h2 {
  margin: 0;
  font-size: 66px;
  font-weight: 950;
  line-height: 0.98;
}

.problem-grid h2 em {
  display: block;
  color: rgba(0,0,0,0.58);
  font-style: normal;
  text-decoration: line-through;
  text-decoration-thickness: 5px;
}

.problem-copy p {
  margin: 0 0 18px;
  color: rgba(0,0,0,0.72);
  font-size: 16px;
  line-height: 1.65;
}

.comparison {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: stretch;
  border: 2px solid var(--black);
}

.comparison-old,
.comparison-new {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 34px;
}

.comparison-old span,
.comparison-new span {
  font-size: 10px;
  font-weight: 950;
}

.comparison-old strong,
.comparison-new strong {
  margin: 4px 0;
  font-size: 40px;
  line-height: 1;
}

.comparison-old strong {
  color: rgba(0,0,0,0.58);
  text-decoration: line-through;
}

.comparison-old small,
.comparison-new small {
  color: rgba(0,0,0,0.58);
  font-size: 11px;
}

.comparison-switch {
  display: grid;
  place-items: center;
  border-right: 2px solid var(--black);
  border-left: 2px solid var(--black);
  font-size: 32px;
  font-weight: 950;
}

.comparison-new {
  background: var(--black);
  color: var(--volt);
}

.comparison-new small {
  color: #8e8e8e;
}

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

.story-track {
  height: 400vh;
}

.story-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 680px;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  overflow: hidden;
}

.story-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 7vw 70px max(24px, calc((100vw - var(--page)) / 2));
  border-right: 1px solid var(--line-soft);
  background: var(--black);
}

.story-heading h2 {
  margin: 15px 0 34px;
  font-size: 54px;
  font-weight: 950;
  line-height: 0.98;
}

.story-steps {
  position: relative;
  min-height: 230px;
}

.story-step {
  width: 100%;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  padding: 22px 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  transition: opacity 280ms ease;
}

.js .story-step {
  position: absolute;
  inset: 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 420ms var(--ease), transform 420ms var(--ease);
}

.js .story-step.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.step-number {
  color: var(--volt);
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
}

.step-text strong,
.step-text small {
  display: block;
}

.step-text strong {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.1;
}

.step-text small {
  max-width: 420px;
  color: #959595;
  font-size: 14px;
  line-height: 1.65;
}

.story-progress {
  height: 2px;
  margin-top: 28px;
  overflow: hidden;
  background: var(--line);
}

.story-progress span {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--volt);
  transform: scaleX(0);
  transform-origin: left;
}

.story-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  perspective: 1800px;
  background: #060606;
}

.story-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(204,255,0,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(204,255,0,0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  transform: perspective(800px) rotateX(64deg) translateY(34%);
  transform-origin: bottom;
  mask-image: linear-gradient(to bottom, transparent 6%, black 55%, transparent 100%);
}

.story-frame {
  position: absolute;
  width: 310px;
  margin: 0;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  overflow: visible;
  background: var(--surface);
  box-shadow: 0 50px 100px rgba(0,0,0,0.7);
  opacity: 0;
  transform: rotateX(10deg) rotateY(-25deg) translate3d(70px, 30px, -180px) scale(0.84);
  transition: opacity 480ms var(--ease), transform 760ms var(--ease);
  pointer-events: none;
}

.story-frame.is-active {
  opacity: 1;
  transform: rotateX(4deg) rotateY(-8deg) translate3d(0, 0, 60px) scale(0.88);
}

.story-frame > img:not(.trade-shot) {
  width: 100%;
  border-radius: 7px;
}

.story-frame figcaption {
  position: absolute;
  right: -116px;
  bottom: 72px;
  min-width: 150px;
  padding: 13px 15px;
  border: 1px solid rgba(204,255,0,0.65);
  background: rgba(0,0,0,0.92);
  transform: translateZ(90px);
}

.story-frame figcaption span,
.story-frame figcaption strong {
  display: block;
}

.story-frame figcaption span {
  color: #858585;
  font-size: 8px;
  font-weight: 900;
}

.story-frame figcaption strong {
  margin-top: 3px;
  color: var(--volt);
  font-size: 14px;
}

.story-frame-market {
  width: 470px;
  height: 650px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.story-frame-market .market-shot,
.story-frame-market .trade-shot {
  position: absolute;
  width: 250px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  box-shadow: 0 36px 90px rgba(0,0,0,0.72);
}

.story-frame-market .market-shot {
  top: 0;
  left: 0;
}

.story-frame-market .trade-shot {
  right: 0;
  bottom: 0;
}

.visual-status {
  position: absolute;
  top: 104px;
  right: 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8b8b8b;
  font-size: 9px;
}

.visual-status b {
  color: var(--white);
}

.season-band {
  position: relative;
  padding: 130px 0 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.season-header,
.season-ledger,
.season-screens {
  width: min(var(--page), calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.season-header {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
}

.season-header .section-index {
  grid-column: 1 / -1;
}

.season-header h2 {
  margin: 0;
  font-size: 62px;
  font-weight: 950;
  line-height: 0.98;
}

.season-header h2 span,
.premium-copy h2 span,
.community-copy h2 span {
  color: #606060;
}

.season-header > p:last-child {
  align-self: end;
  margin: 0;
  color: #9d9d9d;
  font-size: 17px;
  line-height: 1.7;
}

.season-ledger {
  margin-top: 80px;
  border-top: 1px solid var(--line);
}

.season-ledger article {
  min-height: 154px;
  display: grid;
  grid-template-columns: 58px 1fr 1fr 130px;
  align-items: center;
  gap: 28px;
  padding: 24px 8px;
  border-bottom: 1px solid var(--line);
  transition: background 260ms ease, padding 260ms var(--ease);
}

.season-ledger article:hover {
  padding-right: 20px;
  padding-left: 20px;
  background: #151515;
}

.ledger-number {
  color: var(--volt);
  font-size: 12px;
  font-weight: 950;
}

.season-ledger article div p,
.season-ledger article div h3,
.season-ledger article > p {
  margin: 0;
}

.season-ledger article div p {
  color: #858585;
  font-size: 9px;
  font-weight: 900;
}

.season-ledger article div h3 {
  margin-top: 6px;
  font-size: 22px;
  line-height: 1.15;
}

.season-ledger article > p {
  color: #8f8f8f;
  font-size: 13px;
  line-height: 1.6;
}

.season-ledger article > strong {
  color: var(--volt);
  font-size: 17px;
  text-align: right;
}

.season-screens {
  position: relative;
  height: 720px;
  margin-top: 100px;
  perspective: 1600px;
}

.season-screens::before {
  position: absolute;
  inset: 18% 0 0;
  border-top: 1px solid rgba(204,255,0,0.2);
  background-image: linear-gradient(rgba(204,255,0,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(204,255,0,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  transform: rotateX(55deg);
  transform-origin: top;
}

.season-screens figure {
  position: absolute;
  z-index: 2;
  width: 280px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  box-shadow: 0 42px 100px rgba(0,0,0,0.7);
}

.season-screens figure:first-of-type {
  left: 14%;
  top: 16px;
  transform: rotateY(12deg) rotateZ(-4deg);
}

.season-screens figure:nth-of-type(2) {
  left: 38%;
  top: 88px;
  transform: rotateY(-11deg) rotateZ(3deg);
}

.season-callout {
  position: absolute;
  z-index: 4;
  top: 136px;
  right: 2%;
  width: 36%;
}

.season-callout span {
  color: var(--volt);
  font-size: 10px;
  font-weight: 950;
}

.season-callout strong {
  display: block;
  margin: 12px 0 20px;
  color: transparent;
  font-size: 82px;
  font-weight: 950;
  line-height: 0.82;
  -webkit-text-stroke: 2px var(--volt);
}

.season-callout p {
  max-width: 360px;
  color: #929292;
  font-size: 14px;
  line-height: 1.7;
}

.premium-band {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--black);
}

.premium-inner {
  width: min(var(--page), calc(100% - 48px));
  min-height: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
  padding: 110px 0;
}

.premium-scene {
  --premium-x: 0;
  --premium-y: 0;
  position: relative;
  height: 680px;
  perspective: 1500px;
}

.premium-scene::before {
  position: absolute;
  inset: 8% 2% 0;
  border: 1px solid rgba(204,255,0,0.18);
  background-image: linear-gradient(rgba(204,255,0,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(204,255,0,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  transform: rotateY(18deg) rotateX(5deg);
}

.premium-scene figure {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 50%;
  width: 290px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  box-shadow: 0 50px 110px rgba(0,0,0,0.8);
  transform: translateX(-50%) rotateY(calc(12deg + var(--premium-x) * 4deg)) rotateX(calc(3deg - var(--premium-y) * 3deg));
  transition: transform 500ms var(--ease);
}

.premium-float {
  position: absolute;
  z-index: 4;
  width: 190px;
  padding: 14px 16px;
  border: 1px solid rgba(204,255,0,0.7);
  background: rgba(0,0,0,0.92);
  box-shadow: 0 20px 55px rgba(0,0,0,0.6);
  transition: transform 500ms var(--ease);
}

.premium-float span,
.premium-float strong {
  display: block;
}

.premium-float span {
  color: #858585;
  font-size: 8px;
  font-weight: 900;
}

.premium-float strong {
  margin-top: 4px;
  font-size: 18px;
}

.premium-float b {
  position: absolute;
  top: 18px;
  right: 14px;
  color: var(--volt);
}

.premium-float-one {
  top: 176px;
  left: 0;
  transform: translate(calc(var(--premium-x) * -14px), calc(var(--premium-y) * -8px));
}

.premium-float-two {
  right: 0;
  bottom: 146px;
  transform: translate(calc(var(--premium-x) * 15px), calc(var(--premium-y) * 10px));
}

.premium-copy h2 {
  margin: 18px 0 28px;
  font-size: 58px;
  font-weight: 950;
  line-height: 0.98;
}

.premium-copy > p:not(.section-index) {
  max-width: 520px;
  color: #999;
  font-size: 16px;
  line-height: 1.7;
}

.premium-copy ul {
  margin: 34px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.premium-copy li {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  color: #c8c8c8;
  font-size: 13px;
  font-weight: 800;
}

.premium-copy li span {
  color: var(--volt);
  font-size: 9px;
}

.text-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid var(--volt);
  color: var(--volt);
  font-size: 11px;
  font-weight: 950;
  text-decoration: none;
}

.text-link span {
  transition: transform 200ms ease;
}

.text-link:hover span {
  transform: translateX(6px);
}

.community-band {
  padding: 120px max(24px, calc((100vw - var(--page)) / 2));
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--black);
}

.community-copy h2 {
  margin: 18px 0 70px;
  font-size: 68px;
  font-weight: 950;
  line-height: 0.96;
}

.community-copy h2 span {
  color: #707070;
}

.community-band .section-index {
  color: #536800;
}

.community-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}

.community-facts div {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 34px;
  border-right: 2px solid var(--black);
}

.community-facts div:last-child {
  border-right: 0;
}

.community-facts span {
  color: #6d6d6d;
  font-size: 9px;
  font-weight: 950;
}

.community-facts strong {
  margin: 7px 0 9px;
  font-size: 34px;
  line-height: 1;
}

.community-facts small {
  color: #636363;
  font-size: 12px;
}

.final-cta {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--volt);
  color: var(--black);
}

.final-echo {
  position: absolute;
  right: -30px;
  bottom: -14px;
  color: transparent;
  font-size: 190px;
  font-weight: 950;
  line-height: 0.8;
  white-space: nowrap;
  -webkit-text-stroke: 3px rgba(0,0,0,0.16);
}

.final-inner {
  position: relative;
  z-index: 2;
  width: min(var(--page), calc(100% - 48px));
}

.final-inner .signal {
  color: rgba(0,0,0,0.62);
}

.final-inner .signal span {
  background: var(--black);
  box-shadow: none;
}

.final-inner h2 {
  max-width: 850px;
  margin: 22px 0 24px;
  font-size: 90px;
  font-weight: 950;
  line-height: 0.88;
}

.final-inner > p:not(.signal) {
  margin: 0 0 36px;
  color: rgba(0,0,0,0.66);
  font-size: 18px;
}

.final-actions .action-primary {
  border-color: var(--black);
  background: var(--black);
  color: var(--volt);
}

.final-actions .action-secondary {
  border-color: var(--black);
  background: transparent;
  color: var(--black);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--black);
}

.footer-main,
.footer-legal {
  width: min(var(--page), calc(100% - 48px));
  margin: 0 auto;
}

.footer-main {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 48px 0;
}

.footer-main > div p {
  max-width: 380px;
  margin: 18px 0 0;
  color: #808080;
  font-size: 12px;
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 28px;
}

.footer-main nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  color: #8a8a8a;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.footer-main nav a:hover {
  color: var(--volt);
}

.footer-legal {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: #808080;
  font-size: 10px;
}

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

.js [data-reveal] {
  transform: translateY(20px);
  transition: transform 700ms var(--ease);
}

.js [data-reveal].is-revealed {
  transform: translateY(0);
}

@keyframes scroll-line {
  0% { transform: translateY(-110%); }
  60%, 100% { transform: translateY(260%); }
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 18px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-stage {
    transform: translateX(40px);
  }

  .score-ghost,
  .score-live {
    font-size: 128px;
  }

  .problem-grid h2,
  .community-copy h2 {
    font-size: 56px;
  }

  .story-copy {
    padding-right: 5vw;
  }

  .season-screens figure:first-of-type {
    left: 4%;
  }

  .season-screens figure:nth-of-type(2) {
    left: 31%;
  }

  .premium-inner {
    gap: 40px;
  }
}

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

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    min-height: max(820px, 100svh);
    align-items: flex-start;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.64) 32%, var(--black) 59%, var(--black) 100%);
  }

  .hero-score-environment {
    top: 90px;
    right: 16px;
    width: auto;
  }

  .score-ghost,
  .score-live {
    font-size: 72px;
  }

  .score-arrow {
    margin: 8px 54px;
    font-size: 36px;
  }

  .hero-inner {
    position: relative;
    min-height: 820px;
    display: block;
    padding: 0;
  }

  .hero-copy {
    position: absolute;
    right: 0;
    bottom: 78px;
    left: 0;
    max-width: 620px;
  }

  .hero-stage {
    position: absolute;
    top: 66px;
    right: -70px;
    width: 420px;
    height: 430px;
    opacity: 0.68;
    transform: none;
  }

  .plane-main {
    right: 54px;
    top: 0;
    width: 180px;
  }

  .plane-mid {
    right: 190px;
    top: 75px;
    width: 130px;
  }

  .plane-back {
    display: none;
  }

  .ownership-ticket {
    right: 180px;
    top: 155px;
    min-width: 140px;
  }

  .live-ticket {
    right: 15px;
    bottom: 88px;
  }

  .hero-wordmark {
    display: none;
  }

  .hero h1 {
    max-width: 560px;
    margin-top: 14px;
    font-size: 48px;
  }

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

  .scroll-cue {
    display: none;
  }

  .proof-rail {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .proof-items {
    grid-template-columns: repeat(4, 210px);
  }

  .problem-grid,
  .season-header,
  .premium-inner {
    grid-template-columns: 1fr;
  }

  .problem-grid {
    gap: 36px;
  }

  .story-sticky {
    grid-template-columns: 1fr;
    grid-template-rows: 47vh 53vh;
    min-height: 640px;
  }

  .story-visual {
    grid-row: 1;
  }

  .story-copy {
    grid-row: 2;
    padding: 24px 28px 34px;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .story-heading h2 {
    margin: 8px 0 14px;
    font-size: 36px;
  }

  .story-steps {
    min-height: 160px;
  }

  .story-step {
    grid-template-columns: 42px 1fr;
    padding: 14px 0;
  }

  .step-number {
    font-size: 22px;
  }

  .step-text strong {
    margin-bottom: 6px;
    font-size: 19px;
  }

  .step-text small {
    font-size: 12px;
    line-height: 1.5;
  }

  .story-progress {
    margin-top: 10px;
  }

  .story-frame {
    width: 190px;
  }

  .story-frame.is-active {
    transform: rotateX(2deg) rotateY(-8deg) translate3d(0, 28px, 40px) scale(0.72);
  }

  .story-frame figcaption {
    right: -102px;
    bottom: 54px;
  }

  .story-frame-market {
    width: 330px;
    height: 360px;
  }

  .story-frame-market .market-shot,
  .story-frame-market .trade-shot {
    width: 160px;
  }

  .visual-status {
    top: 76px;
    right: 20px;
  }

  .season-header {
    gap: 30px;
  }

  .season-ledger article {
    grid-template-columns: 44px 1fr 110px;
  }

  .season-ledger article > p {
    grid-column: 2 / -1;
  }

  .season-screens {
    height: 650px;
  }

  .season-screens figure {
    width: 220px;
  }

  .season-screens figure:first-of-type {
    left: 3%;
  }

  .season-screens figure:nth-of-type(2) {
    left: 31%;
  }

  .season-callout {
    right: 0;
    width: 38%;
  }

  .season-callout strong {
    font-size: 58px;
  }

  .premium-inner {
    padding-top: 80px;
  }

  .premium-copy {
    grid-row: 1;
  }

  .premium-scene {
    grid-row: 2;
  }

  .community-facts {
    grid-template-columns: 1fr;
  }

  .community-facts div {
    min-height: 145px;
    border-right: 0;
    border-bottom: 2px solid var(--black);
  }

  .community-facts div:last-child {
    border-bottom: 0;
  }

  .final-inner h2 {
    font-size: 68px;
  }

  .final-echo {
    font-size: 120px;
  }
}

@media (max-width: 600px) {
  body:not(.landing-page) .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  body:not(.landing-page) nav {
    flex-wrap: wrap;
  }

  body:not(.landing-page) main {
    padding-top: 44px;
  }

  body:not(.landing-page) h1 {
    font-size: 34px;
  }

  .site-nav,
  .hero-inner,
  .problem-inner,
  .season-header,
  .season-ledger,
  .season-screens,
  .premium-inner,
  .final-inner,
  .footer-main,
  .footer-legal {
    width: calc(100% - 40px);
  }

  .site-nav {
    min-height: 68px;
  }

  .nav-play {
    min-height: 40px;
    padding: 0 13px;
    font-size: 10px;
  }

  .mobile-menu {
    inset: 68px 0 0;
  }

  .hero {
    min-height: max(780px, 100svh);
  }

  .hero-inner {
    min-height: 780px;
  }

  .hero-stage {
    top: 52px;
    right: -84px;
    height: 390px;
  }

  .hero-copy {
    bottom: 34px;
  }

  .hero h1 {
    max-width: 360px;
    margin-bottom: 16px;
    font-size: 43px;
    line-height: 0.98;
  }

  .hero-lead {
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-actions,
  .final-actions {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .action-primary,
  .action-secondary {
    min-height: 58px;
    padding: 8px;
  }

  .action-primary span,
  .action-secondary span {
    font-size: 10px;
  }

  .device-line {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .device-line span {
    margin-left: 0;
  }

  .proof-rail {
    display: block;
  }

  .proof-label {
    min-height: 52px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-items {
    grid-template-columns: repeat(4, 190px);
  }

  .proof-items a {
    min-height: 78px;
    padding: 12px 16px;
  }

  .problem-inner {
    padding: 82px 0 76px;
  }

  .problem-grid h2 {
    font-size: 43px;
  }

  .problem-copy p {
    font-size: 14px;
  }

  .comparison {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .comparison-old,
  .comparison-new {
    min-height: 132px;
  }

  .comparison-switch {
    min-height: 54px;
    border: 0;
    border-top: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
    transform: rotate(90deg);
  }

  .comparison-old strong,
  .comparison-new strong {
    font-size: 32px;
  }

  .story-copy {
    padding-right: 20px;
    padding-left: 20px;
  }

  .story-heading h2 {
    font-size: 30px;
  }

  .season-band {
    padding-top: 90px;
  }

  .season-header h2,
  .premium-copy h2,
  .community-copy h2 {
    font-size: 42px;
  }

  .season-header > p:last-child,
  .premium-copy > p:not(.section-index) {
    font-size: 14px;
  }

  .season-ledger {
    margin-top: 52px;
  }

  .season-ledger article {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 24px 0;
  }

  .season-ledger article > p,
  .season-ledger article > strong {
    grid-column: 2;
    text-align: left;
  }

  .season-screens {
    height: 650px;
    margin-top: 70px;
  }

  .season-screens figure {
    width: 170px;
  }

  .season-screens figure:first-of-type {
    left: 0;
  }

  .season-screens figure:nth-of-type(2) {
    top: 44px;
    right: 0;
    left: auto;
  }

  .season-callout {
    top: 430px;
    right: 0;
    left: 0;
    width: 100%;
  }

  .season-callout strong {
    font-size: 52px;
  }

  .premium-inner {
    min-height: 0;
    gap: 20px;
    padding: 88px 0 50px;
  }

  .premium-scene {
    height: 620px;
  }

  .premium-scene figure {
    width: 240px;
  }

  .premium-float {
    width: 150px;
  }

  .premium-float-one {
    top: 158px;
  }

  .premium-float-two {
    bottom: 150px;
  }

  .community-band {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .community-copy h2 {
    margin-bottom: 46px;
  }

  .community-facts strong {
    font-size: 28px;
  }

  .final-cta {
    min-height: 700px;
  }

  .final-inner h2 {
    font-size: 54px;
  }

  .final-inner > p:not(.signal) {
    font-size: 15px;
  }

  .final-echo {
    right: -16px;
    bottom: 16px;
    font-size: 72px;
    -webkit-text-stroke-width: 2px;
  }

  .footer-main {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }

  .footer-main nav {
    justify-content: flex-start;
  }

  .footer-legal {
    min-height: 110px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

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

@media (max-height: 620px) and (min-width: 700px) {
  .hero {
    min-height: 560px;
    align-items: flex-start;
  }

  .hero-inner {
    min-height: 560px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 24px;
    padding: 78px 0 24px;
  }

  .hero-copy {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    align-self: start;
  }

  .hero h1 {
    max-width: 440px;
    margin-top: 9px;
    margin-bottom: 12px;
    font-size: 40px;
  }

  .hero-lead {
    max-width: 440px;
    margin-bottom: 14px;
    font-size: 12px;
    line-height: 1.45;
  }

  .hero-stage {
    position: relative;
    top: auto;
    right: auto;
    width: 340px;
    height: 450px;
    opacity: 0.64;
  }

  .plane-main {
    right: 0;
    width: 168px;
  }

  .plane-mid {
    right: 126px;
    top: 64px;
    width: 122px;
  }

  .ownership-ticket {
    right: 112px;
    top: 138px;
  }

  .live-ticket {
    right: -8px;
    bottom: 96px;
  }

  .action-primary,
  .action-secondary {
    min-height: 50px;
  }

  .device-line {
    display: none;
  }

  .story-sticky {
    min-height: 620px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .js [data-reveal] {
    transform: none !important;
  }
}
