:root {
  color-scheme: light;
  --crimson: #bd1324;
  --crimson-dark: #8d0f1d;
  --ink: #10131a;
  --navy: #131927;
  --muted: #59606d;
  --line: #d9dee7;
  --paper: #ffffff;
  --soft: #f5f7f9;
  --cyan: #15a6b8;
  --gold: #c49a42;
  --hero-image-y: 0px;
  --hero-glow-y: 0px;
  --hero-metrics-y: 0px;
  --band-y: 0px;
  --theatre-bg-y: 0px;
  --theatre-signal-y: 0px;
  --light-world-y: 0px;
  --signal-strength: 0.45;
  --world-spin: 0deg;
  --shadow: 0 18px 48px rgba(16, 19, 26, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(20px, 4vw, 64px);
  color: #fff;
  background: rgba(9, 12, 18, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  flex: 0 0 auto;
}

.brand-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.logo-orbit .logo-bg {
  fill: url("#orbitFill");
}

.brand-mark.logo-orbit .logo-bg {
  fill: #bd1324;
}

.logo-ring,
.logo-line,
.logo-circuit {
  fill: none;
  stroke: rgba(255, 255, 255, 0.78);
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-ring.alt,
.logo-line.alt {
  stroke: rgba(21, 166, 184, 0.8);
}

.logo-node {
  fill: #fff;
  stroke: rgba(16, 19, 26, 0.26);
  stroke-width: 1;
}

.brand-mark text {
  fill: #fff;
  font-size: 18px;
  font-weight: 950;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 36px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

nav a:hover,
nav a:focus-visible,
nav a.is-active {
  color: #fff;
}

nav a {
  position: relative;
  transition: color 180ms ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--crimson), var(--cyan));
  opacity: 0;
  transform: scaleX(0.35);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta {
  min-width: 142px;
  padding: 11px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--crimson);
  text-align: center;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(189, 19, 36, 0.28);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: #d61c31;
}

.hero {
  position: relative;
  min-height: min(820px, 100vh);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 118px clamp(20px, 5vw, 72px) 52px;
  color: #fff;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--hero-image-y), 0) scale(1.08);
  transform-origin: center;
  will-change: transform;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 8, 12, 0.95) 0%, rgba(6, 8, 12, 0.76) 34%, rgba(6, 8, 12, 0.28) 63%, rgba(6, 8, 12, 0.62) 100%),
    linear-gradient(180deg, rgba(6, 8, 12, 0.35) 0%, rgba(6, 8, 12, 0.2) 65%, rgba(6, 8, 12, 0.78) 100%);
}

.hero-glow {
  position: absolute;
  right: 8vw;
  top: 22vh;
  width: min(540px, 46vw);
  height: 180px;
  border-radius: 8px;
  background: linear-gradient(110deg, rgba(21, 166, 184, 0), rgba(21, 166, 184, 0.28), rgba(189, 19, 36, 0.2), rgba(189, 19, 36, 0));
  filter: blur(12px);
  transform: translate3d(0, var(--hero-glow-y), 0) rotate(-14deg);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(300px, 420px);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--crimson);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ff5262;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(46px, 8vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.42;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 900;
}

.button-primary {
  background: var(--crimson);
  color: #fff;
  box-shadow: 0 12px 32px rgba(189, 19, 36, 0.34);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 420px;
  margin: 42px 0 0;
  transform: translate3d(0, var(--hero-metrics-y), 0);
  will-change: transform;
}

.hero-metrics span {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  min-height: 106px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 4px solid var(--crimson);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.76);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.hero-metrics span:nth-child(2) {
  transform: translateX(-24px);
}

.hero-metrics i {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 54px;
  aspect-ratio: 1;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--crimson), var(--cyan));
  font-style: normal;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(189, 19, 36, 0.26);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 2px;
  color: #fff;
  font-size: 32px;
  line-height: 1;
}

.money-moment {
  position: relative;
  overflow: hidden;
  padding: clamp(74px, 10vw, 128px) clamp(20px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(116deg, rgba(189, 19, 36, 0.34), transparent 28%),
    linear-gradient(246deg, rgba(21, 166, 184, 0.22), transparent 30%),
    linear-gradient(135deg, #090c12 0%, #141a27 48%, #270d14 100%);
}

.money-moment::before,
.money-moment::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.money-moment::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}

.money-moment::after {
  left: clamp(20px, 6vw, 96px);
  right: clamp(20px, 6vw, 96px);
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
}

.money-bg span {
  position: absolute;
  height: 1px;
  border-radius: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translate3d(0, var(--band-y), 0);
}

.money-bg span:nth-child(1) {
  right: -4vw;
  top: 20%;
  width: 520px;
  transform: translate3d(0, var(--band-y), 0) rotate(-22deg);
}

.money-bg span:nth-child(2) {
  right: 20vw;
  bottom: 18%;
  width: 360px;
  background: linear-gradient(90deg, transparent, rgba(21, 166, 184, 0.38), transparent);
  transform: translate3d(0, var(--band-y), 0) rotate(18deg);
}

.money-bg span:nth-child(3) {
  left: -5vw;
  bottom: 20%;
  width: 440px;
  background: linear-gradient(90deg, transparent, rgba(189, 19, 36, 0.38), transparent);
  transform: translate3d(0, var(--band-y), 0) rotate(-12deg);
}

.money-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.74fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.money-copy {
  max-width: 720px;
}

.money-copy .eyebrow {
  color: #ff5262;
}

.money-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(46px, 7.2vw, 96px);
  line-height: 0.94;
}

.money-copy p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.money-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.dark-button {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.money-board {
  position: relative;
  display: grid;
  gap: 16px;
  min-height: 500px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.money-board::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.money-board-top,
.money-board-bottom > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  min-height: 78px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.money-board span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.money-board strong {
  color: #fff;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}

.money-board-middle {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 26px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 82, 98, 0.14), transparent 25%, transparent 75%, rgba(21, 166, 184, 0.14)),
    linear-gradient(135deg, rgba(189, 19, 36, 0.28), rgba(21, 166, 184, 0.12));
  text-align: center;
}

.money-save {
  display: block;
  color: #fff !important;
  font-size: clamp(88px, 12vw, 154px) !important;
  line-height: 0.88;
  font-weight: 950;
  letter-spacing: 0;
  text-shadow: 0 18px 50px rgba(189, 19, 36, 0.34);
}

.money-unit {
  max-width: 260px;
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 15px !important;
}

.money-board-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.money-board-bottom > div {
  display: grid;
  align-content: center;
}

.theatre {
  position: relative;
  min-height: 138vh;
  overflow: hidden;
  background: #090c12;
}

.theatre::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 20%;
  background: linear-gradient(180deg, rgba(9, 12, 18, 0), #090c12 46%, #f8fafc 100%);
  pointer-events: none;
  z-index: 1;
}

.theatre-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.theatre-background::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(9, 12, 18, 0.86) 0%, rgba(9, 12, 18, 0.36) 42%, rgba(9, 12, 18, 0.58) 100%),
    linear-gradient(180deg, rgba(9, 12, 18, 0.22) 0%, rgba(9, 12, 18, 0.1) 52%, rgba(9, 12, 18, 0.84) 100%);
}

.theatre-background img {
  position: absolute;
  left: 50%;
  top: 0;
  width: 118%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  transform: translate3d(-50%, var(--theatre-bg-y), 0) scale(1.04);
  will-change: transform, opacity, filter;
}

.theatre-world-bg {
  z-index: 0;
  opacity: 0.92;
  filter: saturate(1.08) contrast(1.08) brightness(0.8);
}

.theatre-signal-bg {
  z-index: 1;
  opacity: calc(0.2 + var(--signal-strength) * 0.58);
  mix-blend-mode: screen;
  filter: saturate(1.45) brightness(calc(0.9 + var(--signal-strength) * 0.58));
  transform: translate3d(-50%, var(--theatre-signal-y), 0) scale(1.08) !important;
  animation: signalImageBlink 2.2s ease-in-out infinite;
}

.theatre-sticky {
  position: sticky;
  top: 0;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 110px clamp(20px, 5vw, 72px) 80px;
  overflow: hidden;
}

.theatre-copy {
  color: #fff;
}

.theatre-copy .eyebrow {
  color: #ff5262;
}

.theatre-copy h2 {
  max-width: 620px;
  font-size: clamp(42px, 6vw, 82px);
}

.theatre-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.58;
}

.theatre-stage {
  position: relative;
  min-height: min(680px, 70vh);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(9, 12, 18, 0.22);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
  overflow: hidden;
  perspective: 1200px;
}

.stage-layer {
  position: absolute;
  --layer-y: 0px;
  transform: translate3d(0, var(--layer-y), 0);
  will-change: transform;
  transition: transform 80ms linear;
}

@keyframes signalImageBlink {
  0%,
  100% {
    opacity: calc(0.18 + var(--signal-strength) * 0.46);
  }

  48% {
    opacity: calc(0.34 + var(--signal-strength) * 0.66);
  }
}

.stage-grid {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.world-layer {
  inset: 2%;
  display: grid;
  place-items: center;
  opacity: calc(0.1 + var(--signal-strength) * 0.16);
  mix-blend-mode: screen;
}

.world-core {
  position: relative;
  width: min(520px, 76%);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  transform: rotate(var(--world-spin));
  transition: transform 90ms linear;
}

.world-core::before,
.world-core::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.world-core::after {
  inset: 28%;
  border-color: rgba(21, 166, 184, 0.18);
}

.world-ring,
.world-line {
  position: absolute;
  pointer-events: none;
}

.world-ring {
  inset: 11%;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.ring-one {
  transform: rotateX(68deg);
}

.ring-two {
  transform: rotateY(62deg);
}

.ring-three {
  transform: rotate(42deg) scaleX(0.56);
  border-color: rgba(21, 166, 184, 0.22);
}

.world-line {
  left: 12%;
  right: 12%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(189, 19, 36, calc(0.18 + var(--signal-strength) * 0.55)), rgba(21, 166, 184, 0.4), transparent);
  transform-origin: center;
  filter: drop-shadow(0 0 calc(8px + var(--signal-strength) * 14px) rgba(189, 19, 36, 0.58));
}

.line-one {
  transform: rotate(-28deg);
}

.line-two {
  transform: rotate(18deg);
}

.line-three {
  transform: rotate(64deg);
}

.signal {
  position: absolute;
  width: 13px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: #ff2c40;
  box-shadow:
    0 0 calc(10px + var(--signal-strength) * 26px) rgba(255, 44, 64, calc(0.36 + var(--signal-strength) * 0.38)),
    0 0 0 calc(4px + var(--signal-strength) * 8px) rgba(255, 44, 64, calc(0.08 + var(--signal-strength) * 0.16));
  opacity: calc(0.45 + var(--signal-strength) * 0.55);
  animation: signalPulse 1.8s ease-in-out infinite;
}

.signal-a {
  left: 22%;
  top: 31%;
}

.signal-b {
  right: 24%;
  top: 25%;
  animation-delay: 0.32s;
}

.signal-c {
  left: 37%;
  bottom: 23%;
  animation-delay: 0.64s;
}

.signal-d {
  right: 18%;
  bottom: 34%;
  animation-delay: 0.96s;
}

.signal-e {
  left: 52%;
  top: 49%;
  animation-delay: 1.22s;
}

@keyframes signalPulse {
  0%,
  100% {
    transform: scale(0.88);
    filter: brightness(0.84);
  }

  50% {
    transform: scale(calc(1.05 + var(--signal-strength) * 0.5));
    filter: brightness(1.45);
  }
}

.stage-rail {
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(21, 166, 184, 0.7), rgba(189, 19, 36, 0.6), transparent);
}

.rail-one {
  top: 28%;
  transform: translate3d(0, var(--layer-y), 0) rotate(-12deg);
}

.rail-two {
  bottom: 28%;
  transform: translate3d(0, var(--layer-y), 0) rotate(14deg);
}

.command-panel,
.release-console,
.code-panel,
.ticket-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(13, 18, 29, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.command-panel {
  left: 8%;
  top: 10%;
  width: min(360px, 62%);
  padding: 18px;
}

.panel-bar {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
}

.panel-bar span {
  width: 9px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.command-title,
.console-header strong {
  color: #fff;
  font-weight: 950;
}

.command-title {
  margin-bottom: 18px;
  font-size: 18px;
}

.command-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.command-row strong {
  color: #fff;
}

.command-row span,
.console-header span,
.console-grid span,
.ticket-card span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.command-row.active span {
  color: #ff9daa;
}

.ticket-stack {
  right: 8%;
  top: 20%;
  display: grid;
  gap: 12px;
  width: min(320px, 48%);
}

.ticket-card {
  min-height: 96px;
  padding: 18px;
}

.ticket-card strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 20px;
}

.ticket-red {
  border-left: 4px solid var(--crimson);
}

.ticket-blue {
  border-left: 4px solid var(--cyan);
  transform: translateX(-34px);
}

.ticket-gold {
  border-left: 4px solid var(--gold);
  transform: translateX(18px);
}

.release-console {
  left: 12%;
  bottom: 10%;
  width: min(470px, 66%);
  padding: 20px;
}

.console-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
}

.release-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.release-track span {
  height: 12px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.18);
}

.release-track .done {
  background: var(--cyan);
}

.release-track .current {
  background: var(--crimson);
  box-shadow: 0 0 0 6px rgba(189, 19, 36, 0.16);
}

.console-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.code-panel {
  right: 7%;
  bottom: 9%;
  width: min(280px, 42%);
  padding: 18px;
}

.code-panel span {
  display: block;
  height: 10px;
  margin: 10px 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.16);
}

.code-panel span:nth-child(2),
.code-panel span:nth-child(5) {
  width: 72%;
  background: rgba(21, 166, 184, 0.34);
}

.code-panel span:nth-child(3) {
  width: 54%;
  background: rgba(189, 19, 36, 0.32);
}

.band {
  padding: clamp(66px, 9vw, 112px) clamp(20px, 5vw, 72px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro {
  background: transparent;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.intro-grid p:last-child,
.section-heading p,
.download-panel > div > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-item {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: clamp(26px, 4vw, 46px);
  border-right: 1px solid var(--line);
  background: #fff;
}

.proof-item::after {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 138px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(189, 19, 36, 0.06);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item span {
  display: block;
  margin-bottom: 14px;
  color: var(--crimson);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
  font-weight: 950;
}

.proof-item i {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--crimson);
  background: #fff1f3;
  font-style: normal;
  font-weight: 950;
}

.proof-item p {
  max-width: 260px;
  color: var(--muted);
  line-height: 1.55;
}

.model {
  position: relative;
  overflow: hidden;
  background: rgba(245, 247, 249, 0.72);
}

.parallax-band::before {
  content: "";
  position: absolute;
  inset: -18% -10%;
  background:
    linear-gradient(120deg, rgba(189, 19, 36, 0.08), transparent 32%),
    linear-gradient(250deg, rgba(21, 166, 184, 0.14), transparent 36%),
    repeating-linear-gradient(90deg, rgba(16, 19, 26, 0.035) 0 1px, transparent 1px 84px);
  transform: translate3d(0, var(--band-y), 0);
  pointer-events: none;
}

.model .section-inner {
  position: relative;
  z-index: 1;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.65fr);
  gap: 32px;
  max-width: none;
  align-items: end;
}

.light-world-zone {
  position: relative;
  overflow: hidden;
  background: #f8fafc;
}

.light-world-zone::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.18) 0%, rgba(248, 250, 252, 0.58) 42%, rgba(255, 255, 255, 0.9) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.2) 45%, rgba(255, 255, 255, 0.76) 100%);
}

.light-world-background {
  position: absolute;
  inset: -4% 0 -8%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.light-world-background img {
  width: 118%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  object-position: center top;
  opacity: 0.72;
  filter: saturate(1.05) contrast(1.02);
  transform: translate3d(-8%, var(--light-world-y), 0) scale(1.05);
  will-change: transform;
}

.light-world-zone > section {
  position: relative;
  z-index: 2;
  background: transparent;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.delivery-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(16, 19, 26, 0.04);
}

.delivery-grid article {
  position: relative;
  overflow: hidden;
  min-height: 276px;
  padding: 24px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.delivery-grid article::after {
  content: "";
  position: absolute;
  inset: auto 20px 0;
  height: 4px;
  border-radius: 99px 99px 0 0;
  background: linear-gradient(90deg, var(--crimson), var(--cyan), var(--gold));
}

.delivery-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(189, 19, 36, 0.22);
  box-shadow: 0 22px 48px rgba(16, 19, 26, 0.12);
}

.step {
  display: inline-grid;
  place-items: center;
  width: 44px;
  aspect-ratio: 1;
  margin-bottom: 22px;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
  font-weight: 900;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 58px;
  aspect-ratio: 1;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--crimson);
  background: linear-gradient(135deg, #fff, #fff1f3);
  border: 1px solid #f1cfd4;
}

.card-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.model-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
  box-shadow: 0 10px 34px rgba(16, 19, 26, 0.06);
}

.model-rail span {
  position: relative;
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--navy);
  font-weight: 900;
}

.model-rail span::before {
  content: "";
  width: 10px;
  aspect-ratio: 1;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--crimson);
  box-shadow: 0 0 0 5px rgba(189, 19, 36, 0.1);
}

.delivery-grid h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: 0;
}

.delivery-grid p {
  color: var(--muted);
  line-height: 1.58;
}

.download {
  background: var(--ink);
  color: #fff;
}

.download .eyebrow {
  color: #ff5262;
}

.download-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(189, 19, 36, 0.18), rgba(21, 166, 184, 0.1)),
    #121722;
  box-shadow: var(--shadow);
}

.contact {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}

.contact::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(189, 19, 36, 0.34), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.7fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}

.contact-grid p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.contact-card {
  position: relative;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  border-top: 5px solid var(--crimson);
  pointer-events: none;
}

.contact-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.contact-form textarea {
  width: 100%;
  min-height: 150px;
  padding: 14px 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(22, 27, 34, 0.1);
  resize: vertical;
}

.contact-form input {
  border: 1px solid rgba(22, 27, 34, 0.1);
}

.contact-button {
  margin-top: 8px;
}

.contact-form .contact-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.download-panel h2 {
  max-width: 680px;
}

.download-panel > div > p {
  color: rgba(255, 255, 255, 0.72);
}

input,
textarea,
button {
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  font: inherit;
}

input {
  width: 100%;
  padding: 0 16px;
  color: var(--ink);
  background: #fff;
}

button {
  padding: 0 18px;
  color: #fff;
  background: var(--crimson);
  font-weight: 900;
  cursor: pointer;
}

.download-list {
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.download-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.download-list a::after {
  content: "PDF";
  color: #ffbdc5;
  font-size: 12px;
  font-weight: 900;
}

.faq {
  background: #f7f9fc;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-grid article {
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(16, 19, 26, 0.08);
}

.faq-grid h3 {
  margin-bottom: 10px;
  font-size: clamp(20px, 2vw, 26px);
}

.faq-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(220px, 0.72fr) minmax(260px, 0.72fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(34px, 5vw, 58px) clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(189, 19, 36, 0.22), rgba(21, 166, 184, 0.12)),
    #10131a;
  border-top: 1px solid rgba(189, 19, 36, 0.36);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
  pointer-events: none;
}

.footer-brand,
.footer-links,
.footer-actions {
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: grid;
  gap: 14px;
  align-items: start;
}

.footer-product {
  display: block;
  color: #fff;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: 0;
  text-shadow: 0 18px 38px rgba(189, 19, 36, 0.24);
}

.footer-brand span {
  display: block;
  max-width: 560px;
  margin-top: 0;
  line-height: 1.55;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.footer-links a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 900;
}

.footer-actions {
  display: grid;
  justify-items: end;
  gap: 12px;
  text-align: right;
}

.footer-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
  box-shadow: 0 16px 34px rgba(189, 19, 36, 0.26);
  font-weight: 900;
}

.footer-actions span {
  font-size: 13px;
}

.error-page {
  min-height: 100vh;
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(189, 19, 36, 0.3), transparent 32%),
    radial-gradient(circle at 82% 28%, rgba(21, 166, 184, 0.28), transparent 34%),
    #070a10;
}

.error-header {
  position: fixed;
}

.error-shell {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 126px clamp(20px, 5vw, 72px) 56px;
}

.error-world {
  position: absolute;
  inset: auto -10% -18% auto;
  width: min(940px, 112vw);
  opacity: 0.5;
  filter: saturate(1.18) contrast(1.08);
  transform: rotate(-7deg);
}

.error-signal {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 36%, rgba(189, 19, 36, 0.2) 48%, transparent 60%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 90px);
  mix-blend-mode: screen;
  opacity: 0.65;
}

.error-card {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  padding: clamp(34px, 6vw, 68px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(7, 10, 16, 0.66);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.error-card h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(54px, 9vw, 108px);
}

.error-card p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.55;
}

.error-actions,
.error-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.error-actions {
  margin-top: 28px;
}

.error-links {
  margin-top: 28px;
}

.error-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 126px;
  }

  .hero-inner,
  .money-inner,
  .proof-strip,
  .delivery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .money-inner {
    grid-template-columns: 1fr;
  }

  .theatre {
    min-height: auto;
  }

  .theatre-sticky {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 86px;
  }

  .theatre-stage {
    min-height: 620px;
  }

  .world-core {
    width: min(520px, 88%);
    opacity: 0.72;
  }

  .hero-metrics {
    grid-template-columns: 1fr 1fr;
    max-width: none;
  }

  .hero-metrics span:nth-child(2) {
    transform: none;
  }

  .intro-grid,
  .section-heading.split,
  .download-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-actions {
    justify-items: start;
    text-align: left;
  }

  .download-list {
    grid-column: 1;
  }

  .model-rail {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 660px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .nav-cta {
    display: none;
  }

  .hero {
    padding: 110px 18px 38px;
  }

  h1 {
    font-size: 46px;
  }

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

  .money-board {
    min-height: 0;
  }

  .money-board-top,
  .money-board-bottom > div {
    display: grid;
  }

  .theatre-sticky {
    padding: 74px 18px 62px;
  }

  .theatre-stage {
    min-height: 560px;
  }

  .world-core {
    width: 118%;
    opacity: 0.48;
  }

  .command-panel {
    left: 5%;
    top: 7%;
    width: 78%;
  }

  .ticket-stack {
    right: 5%;
    top: 34%;
    width: 78%;
  }

  .release-console {
    left: 5%;
    bottom: 9%;
    width: 82%;
  }

  .code-panel {
    display: none;
  }

  .ticket-blue,
  .ticket-gold {
    transform: none;
  }

  .hero-actions,
  .error-actions,
  .error-links,
  .money-actions,
  .site-footer,
  .footer-links,
  .footer-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-actions {
    justify-items: start;
    text-align: left;
  }

  .hero-metrics,
  .money-board-bottom,
  .proof-strip,
  .delivery-grid,
  .model-rail {
    grid-template-columns: 1fr;
  }

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

  .proof-item:last-child {
    border-bottom: 0;
  }

}
