@font-face {
  font-family: "Orbitron Nova";
  src: url("fonts/orbitron-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rajdhani Nova";
  src: url("fonts/rajdhani-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #020408;
  --ink: #f6fbff;
  --muted: #a9bbc6;
  --cyan: #00e6ff;
  --green: #73ff9f;
  --magenta: #ff3dd4;
  --amber: #ffbd4a;
  --red: #ff445d;
  --line: rgba(144, 235, 255, 0.28);
  --shadow: 0 38px 120px rgba(0, 0, 0, 0.62);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 1180px;
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 230, 255, 0.18), transparent 34rem),
    radial-gradient(circle at 88% 18%, rgba(255, 61, 212, 0.14), transparent 32rem),
    linear-gradient(180deg, #020408 0%, #07101a 42%, #020408 100%);
  color: var(--ink);
  font-family: "Rajdhani Nova", "Segoe UI", sans-serif;
  font-size: 19px;
  line-height: 1.42;
  overflow-x: hidden;
}

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

img,
iframe {
  display: block;
  width: 100%;
}

iframe {
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 0 56px;
  background: linear-gradient(180deg, rgba(2, 4, 8, 0.94), rgba(2, 4, 8, 0.18));
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(2, 4, 8, 0.92);
  border-color: rgba(0, 230, 255, 0.22);
}

.brand,
.nav,
.header-cta {
  align-items: center;
}

.brand {
  display: inline-flex;
  gap: 12px;
  font-family: "Orbitron Nova", monospace;
  font-size: 16px;
  text-transform: uppercase;
}

.brand-mark {
  width: 20px;
  height: 20px;
  clip-path: polygon(50% 0, 100% 100%, 50% 76%, 0 100%);
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 0 28px rgba(0, 230, 255, 0.8);
}

.nav {
  display: flex;
  gap: 32px;
  color: #b2c7d1;
  font-family: "Orbitron Nova", monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--cyan);
}

.header-cta {
  justify-self: end;
  min-width: 132px;
  padding: 11px 18px;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  font-family: "Orbitron Nova", monospace;
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
  box-shadow: inset 0 0 20px rgba(0, 230, 255, 0.12), 0 0 28px rgba(0, 230, 255, 0.16);
}

h1,
h2,
h3,
.eyebrow,
.button,
.ticker,
.hud-panel,
.map-callout strong,
.feature-wall span,
footer {
  font-family: "Orbitron Nova", monospace;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  overflow: hidden;
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.18) contrast(1.06);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 4, 8, 0.96) 0%, rgba(2, 4, 8, 0.7) 34%, rgba(2, 4, 8, 0.12) 74%, rgba(2, 4, 8, 0.62) 100%),
    linear-gradient(180deg, rgba(2, 4, 8, 0.1) 0%, rgba(2, 4, 8, 0.08) 54%, #020408 100%);
}

.scanlines {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 230, 255, 0.12) 1px, transparent 1px);
  background-size: 5px 5px, 116px 116px;
  mask-image: linear-gradient(180deg, transparent 0%, black 14%, black 86%, transparent 100%);
}

.hero-copy {
  width: 760px;
  padding: 168px 0 0 64px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--amber);
  font-size: 13px;
}

h1 {
  max-width: 760px;
  font-size: 72px;
  line-height: 0.95;
  text-shadow: 0 0 36px rgba(0, 230, 255, 0.38), 0 0 80px rgba(255, 61, 212, 0.18);
}

.hero-copy > p:not(.eyebrow) {
  width: 690px;
  margin-top: 28px;
  color: #d9edf4;
  font-size: 29px;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.75);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--line);
  background: rgba(2, 7, 12, 0.7);
  color: var(--ink);
  font-size: 13px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--cyan);
  box-shadow: 0 0 34px rgba(0, 230, 255, 0.24);
}

.button-primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  color: #031016;
  box-shadow: 0 0 42px rgba(0, 230, 255, 0.34);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-hud {
  position: absolute;
  right: 56px;
  bottom: 48px;
  width: 760px;
}

.hud-panel,
.ticker {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border: 1px solid var(--line);
  background: rgba(2, 7, 12, 0.62);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hud-panel span,
.ticker span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 14px;
  color: #dffbff;
  font-size: 12px;
  text-align: center;
  border-right: 1px solid rgba(144, 235, 255, 0.2);
}

.hud-panel span:last-child,
.ticker span:last-child {
  border-right: 0;
}

.ticker {
  position: relative;
  z-index: 3;
  margin: -1px 56px 0;
  grid-template-columns: repeat(8, 1fr);
}

.cinema-section {
  padding: 124px 56px;
  scroll-margin-top: 100px;
}

.section-intro {
  max-width: 1160px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-intro p:not(.eyebrow) {
  max-width: 920px;
  margin: 24px auto 0;
}

h2 {
  font-size: 70px;
  line-height: 0.96;
  text-shadow: 0 0 34px rgba(0, 230, 255, 0.22);
}

.section-intro p:not(.eyebrow),
.proof-intro p,
.hangar-copy p,
.clone-copy p,
.feature-wall p {
  color: var(--muted);
  font-size: 23px;
}

.war-table {
  position: relative;
  max-width: 1480px;
  margin: 0 auto;
  border: 1px solid rgba(0, 230, 255, 0.38);
  background: #03070c;
  box-shadow: var(--shadow), 0 0 80px rgba(0, 230, 255, 0.1);
  overflow: hidden;
}

.war-table::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(115, 255, 159, 0.28);
  pointer-events: none;
}

.war-table img {
  aspect-ratio: 16 / 8.6;
  object-fit: cover;
  filter: saturate(1.18) contrast(1.06);
}

.map-callout {
  position: absolute;
  z-index: 3;
  width: 240px;
  padding: 16px;
  border: 1px solid rgba(0, 230, 255, 0.45);
  background: rgba(1, 5, 10, 0.78);
  box-shadow: 0 0 34px rgba(0, 230, 255, 0.18);
  backdrop-filter: blur(10px);
}

.map-callout strong {
  display: block;
  color: var(--cyan);
  font-size: 13px;
}

.map-callout span {
  display: block;
  margin-top: 8px;
  color: #c5dce5;
}

.callout-a {
  left: 7%;
  top: 18%;
}

.callout-b {
  right: 8%;
  top: 20%;
  border-color: rgba(255, 68, 93, 0.62);
}

.callout-b strong {
  color: var(--red);
}

.callout-c {
  right: 18%;
  bottom: 12%;
  border-color: rgba(255, 189, 74, 0.6);
}

.callout-c strong {
  color: var(--amber);
}

.feature-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0 56px 124px;
  background:
    radial-gradient(circle at 30% 0%, rgba(115, 255, 159, 0.13), transparent 28rem),
    #020408;
}

.feature-wall article {
  min-height: 330px;
  padding: 32px;
  border: 1px solid rgba(144, 235, 255, 0.2);
  background:
    linear-gradient(160deg, rgba(0, 230, 255, 0.1), rgba(255, 61, 212, 0.05)),
    rgba(4, 9, 15, 0.88);
}

.feature-wall span {
  color: var(--green);
  font-size: 13px;
}

.feature-wall h3 {
  margin-top: 42px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
}

.feature-wall p {
  margin-top: 18px;
}

.hangar,
.clone-market {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 0 56px 72px;
  isolation: isolate;
  overflow: hidden;
  scroll-margin-top: 76px;
}

.hangar img,
.clone-market img {
  position: absolute;
  inset: 0;
  z-index: -3;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.16) contrast(1.06);
}

.hangar::before,
.clone-market::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 4, 8, 0.84), rgba(2, 4, 8, 0.22) 54%, rgba(2, 4, 8, 0.86)),
    linear-gradient(180deg, rgba(2, 4, 8, 0.18), rgba(2, 4, 8, 0.18) 62%, #020408);
}

.hangar-copy,
.clone-copy {
  width: 680px;
  padding: 34px;
  border: 1px solid rgba(0, 230, 255, 0.35);
  background: rgba(2, 7, 12, 0.66);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hangar-copy {
  margin-left: auto;
}

.hangar-copy h2,
.clone-copy h2 {
  font-size: 62px;
}

.hangar-copy p,
.clone-copy p {
  margin-top: 20px;
  color: #d2e5ed;
}

.ship-roles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.ship-roles span {
  min-height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(144, 235, 255, 0.26);
  background: rgba(0, 230, 255, 0.08);
  color: var(--cyan);
  font-family: "Orbitron Nova", monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.clone-copy .button {
  margin-top: 28px;
}

.proof {
  padding: 124px 56px;
  scroll-margin-top: 100px;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 61, 212, 0.16), transparent 30rem),
    radial-gradient(circle at 72% 20%, rgba(0, 230, 255, 0.14), transparent 28rem),
    #05070c;
}

.proof-intro {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: end;
  max-width: 1480px;
  text-align: left;
}

.proof-intro p:not(.eyebrow) {
  max-width: 600px;
  margin-left: auto;
}

.video-strip {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.82fr 0.82fr;
  gap: 18px;
}

.video-launch {
  position: relative;
  min-height: 320px;
  display: grid;
  align-content: end;
  overflow: hidden;
  border: 1px solid rgba(144, 235, 255, 0.25);
  background: #03070b;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.video-launch.featured {
  min-height: 420px;
}

.video-launch::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 4, 8, 0.05), rgba(2, 4, 8, 0.86)),
    var(--thumb) center / cover no-repeat;
  filter: saturate(1.14) contrast(1.08);
  transform: scale(1.04);
}

.play-video {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.play-video span {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(0, 230, 255, 0.72);
  border-radius: 50%;
  background: rgba(2, 7, 12, 0.7);
  color: var(--cyan);
  font-family: "Orbitron Nova", monospace;
  font-size: 11px;
  text-transform: uppercase;
  box-shadow: 0 0 34px rgba(0, 230, 255, 0.28);
}

.video-launch h3 {
  position: relative;
  z-index: 3;
  padding: 24px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.88);
}

.video-launch iframe {
  position: relative;
  z-index: 4;
  aspect-ratio: 16 / 9;
  align-self: center;
  background: #020408;
}

.final-cta {
  min-height: 520px;
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 96px 56px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(2, 4, 8, 0.28), #020408),
    radial-gradient(circle at 50% 0%, rgba(115, 255, 159, 0.16), transparent 32rem);
}

.final-cta h2 {
  max-width: 1100px;
}

footer {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 56px;
  border-top: 1px solid rgba(144, 235, 255, 0.2);
  color: var(--muted);
  font-size: 12px;
}

footer span:first-child {
  color: var(--ink);
}

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

@media (max-width: 900px) {
  body {
    min-width: 0;
    font-size: 17px;
  }

  .site-header {
    height: 68px;
    grid-template-columns: 1fr auto;
    padding: 0 18px;
  }

  .nav {
    display: none;
  }

  .header-cta {
    min-width: 112px;
    padding-inline: 12px;
  }

  .hero {
    min-height: auto;
    padding: 104px 18px 28px;
  }

  .hero-art {
    opacity: 0.72;
  }

  .hero-copy {
    width: 100%;
    padding: 0;
  }

  h1 {
    max-width: 11ch;
    font-size: 46px;
    line-height: 0.96;
  }

  h2 {
    font-size: 38px;
  }

  .hero-copy > p:not(.eyebrow) {
    width: 100%;
    font-size: 21px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-hud {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 34px;
  }

  .hud-panel,
  .ticker,
  .feature-wall,
  .proof-intro,
  .video-strip {
    grid-template-columns: 1fr;
  }

  .ticker,
  .feature-wall,
  .cinema-section,
  .proof,
  .final-cta {
    margin-inline: 0;
    padding-inline: 18px;
  }

  .section-intro {
    text-align: left;
  }

  .map-callout {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    margin: 10px 12px;
  }

  .war-table img {
    aspect-ratio: 16 / 10;
  }

  .hangar,
  .clone-market {
    min-height: 760px;
    padding: 0 18px 34px;
  }

  .hangar-copy,
  .clone-copy {
    width: 100%;
    padding: 24px;
  }

  .hangar-copy h2,
  .clone-copy h2 {
    font-size: 36px;
  }

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

  footer {
    min-height: 110px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 18px;
  }
}
