:root {
  --navy: #0c1a2d;
  --navy-deep: #07111f;
  --red: #d22630;
  --red-dark: #8f141b;
  --titanium: #b4b7bc;
  --cream: #f4efe2;
  --gold: #d4af37;
  --ink: #050910;
  --line: rgba(244, 239, 226, .26);
  --muted: #9bb7cf;
  --maxw: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 20% 10%, rgba(244,239,226,.12), transparent 26%),
    linear-gradient(135deg, rgba(210,38,48,.12) 0 8%, transparent 8% 100%),
    repeating-linear-gradient(-18deg, rgba(244,239,226,.025) 0 2px, transparent 2px 11px),
    var(--navy-deep);
  font-family: Manrope, Rajdhani, system-ui, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(244,239,226,.16) 1px, transparent 2px) 0 0 / 18px 18px,
    linear-gradient(90deg, transparent 0 47%, rgba(244,239,226,.06) 48% 52%, transparent 53% 100%);
  opacity: .22;
  mix-blend-mode: screen;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 2px solid var(--red);
  background: rgba(7, 17, 31, .92);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand img { width: 92px; height: 62px; object-fit: contain; object-position: left center; }
.brand span {
  font-family: "Bebas Neue", Rajdhani, sans-serif;
  font-size: 34px;
  letter-spacing: .04em;
  color: var(--cream);
  text-shadow: 3px 3px 0 #02050a;
}
.navlinks { display: flex; align-items: center; gap: 14px; font-family: "Bebas Neue", Rajdhani, sans-serif; font-size: 22px; letter-spacing: .04em; }
.navlinks a:not(.btn) { color: var(--cream); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 19px;
  border: 2px solid var(--cream);
  border-radius: 0;
  background: rgba(244,239,226,.05);
  color: var(--cream);
  font-family: "Bebas Neue", Rajdhani, sans-serif;
  font-size: 22px;
  letter-spacing: .045em;
  text-transform: uppercase;
  transform: skewX(-8deg);
  box-shadow: 5px 5px 0 rgba(0,0,0,.45);
  cursor: pointer;
}
.btn > span, .btn { line-height: 1; }
.btn.primary { border-color: var(--red); background: var(--red); color: var(--cream); }
.btn.ghost { background: transparent; }
.btn:hover { filter: brightness(1.08); }

.label {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px 6px;
  background: var(--red);
  border: 2px solid rgba(0,0,0,.55);
  color: var(--cream);
  font-family: "Bebas Neue", Rajdhani, sans-serif;
  font-size: 24px;
  letter-spacing: .045em;
  text-transform: uppercase;
  transform: skewX(-10deg);
  box-shadow: 4px 4px 0 rgba(0,0,0,.42);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  padding: 46px 0 28px;
  border-bottom: 2px solid var(--line);
  background:
    radial-gradient(circle at 82% 18%, rgba(244,239,226,.12), transparent 30%),
    linear-gradient(135deg, rgba(210,38,48,.12), transparent 28%),
    var(--navy-deep);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 86px;
  background: repeating-linear-gradient(-45deg, var(--red) 0 18px, transparent 18px 34px);
  opacity: .55;
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .96fr .86fr; gap: 28px; align-items: stretch; }
.hero-copy {
  border: 2px solid var(--line);
  background:
    linear-gradient(135deg, rgba(210,38,48,.18), transparent 34%),
    rgba(12,26,45,.86);
  padding: 24px;
  box-shadow: 10px 10px 0 rgba(0,0,0,.35);
}
.hero-logo {
  width: min(100%, 620px);
  margin: 6px auto 8px;
  filter: drop-shadow(0 16px 22px rgba(0,0,0,.6));
}
h1 {
  margin: 10px 0 10px;
  font-family: "Bebas Neue", Rajdhani, sans-serif;
  font-size: clamp(46px, 6.8vw, 98px);
  line-height: .92;
  letter-spacing: .015em;
  color: var(--cream);
  text-shadow: 5px 5px 0 #02050a;
}
h1 span { color: var(--red); }
.lead {
  max-width: 650px;
  color: #e5d9c5;
  font-size: 23px;
  line-height: 1.38;
  font-weight: 800;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 24px; }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 26px; }
.stat { border: 2px solid var(--line); background: rgba(0,0,0,.24); padding: 12px; }
.stat strong { display: block; font-family: "Bebas Neue", Rajdhani, sans-serif; font-size: 35px; color: var(--gold); line-height: .95; }
.stat span { color: var(--muted); font-weight: 900; text-transform: uppercase; }

.poster {
  position: relative;
  overflow: hidden;
  min-height: 670px;
  border: 2px solid var(--cream);
  background: var(--ink);
  box-shadow: 12px 12px 0 rgba(0,0,0,.42);
}
.poster img { width: 100%; height: 100%; min-height: 670px; object-fit: cover; object-position: center center; }
.hud-sweep {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0 42%, rgba(244,239,226,.18) 50%, transparent 58%),
    linear-gradient(90deg, transparent, rgba(57,214,255,.08), transparent);
  mix-blend-mode: screen;
  transform: translateY(-110%);
  animation: hudScan 5.6s linear infinite;
}
.mission-status {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid rgba(244,239,226,.38);
  background: rgba(5,9,16,.72);
  color: var(--cream);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: 0 0 20px rgba(210,38,48,.18);
}
.status-light {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: statusPulse 1.25s ease-in-out infinite;
}
.mission-control {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(88%, 390px);
  display: grid;
  justify-items: center;
  gap: 12px;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.mission-accept {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--cream);
  background:
    linear-gradient(90deg, rgba(210,38,48,.95), rgba(143,20,27,.88)),
    var(--red);
  color: var(--cream);
  box-shadow:
    7px 7px 0 rgba(0,0,0,.52),
    0 0 26px rgba(210,38,48,.28);
  animation: missionPulse 2.2s ease-in-out infinite;
}
.mission-accept small {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: .08em;
}
.mission-accept span:last-child {
  font-family: "Bebas Neue", Rajdhani, sans-serif;
  font-size: 32px;
  line-height: .9;
  letter-spacing: .045em;
}
.mission-radar {
  position: relative;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border: 2px solid var(--cream);
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--gold) 0 3px, transparent 4px),
    linear-gradient(transparent 48%, rgba(244,239,226,.65) 49% 51%, transparent 52%),
    linear-gradient(90deg, transparent 48%, rgba(244,239,226,.65) 49% 51%, transparent 52%),
    rgba(12,26,45,.85);
  overflow: hidden;
}
.radar-sweep {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(212,175,55,.82), rgba(212,175,55,.08) 42deg, transparent 72deg);
  animation: radarSpin 1.55s linear infinite;
}
.radar-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 0 10px var(--cream);
}
.dot-a { right: 15px; top: 17px; animation: dotBlink 1.6s ease-in-out infinite; }
.dot-b { left: 17px; bottom: 13px; animation: dotBlink 1.6s ease-in-out .45s infinite; }
.mission-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  width: 100%;
}
.mission-badges span {
  border: 1px solid rgba(244,239,226,.42);
  background: rgba(5,9,16,.72);
  color: var(--cream);
  padding: 6px 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  box-shadow: 3px 3px 0 rgba(0,0,0,.36);
}
.bubble {
  position: absolute;
  right: 22px;
  top: 138px;
  max-width: 315px;
  padding: 18px 22px;
  background: var(--cream);
  color: var(--ink);
  font-family: "Bebas Neue", Rajdhani, sans-serif;
  font-size: 34px;
  line-height: .98;
  text-align: center;
  border: 3px solid var(--ink);
  clip-path: polygon(6% 0, 94% 0, 100% 12%, 96% 28%, 100% 46%, 94% 100%, 8% 96%, 0 86%, 5% 66%, 0 49%, 5% 26%);
}
.bubble b { color: var(--red); }

@keyframes hudScan {
  0% { transform: translateY(-115%); opacity: 0; }
  12% { opacity: .7; }
  52% { opacity: .48; }
  100% { transform: translateY(115%); opacity: 0; }
}
@keyframes statusPulse {
  0%, 100% { opacity: .45; transform: scale(.82); }
  50% { opacity: 1; transform: scale(1.18); }
}
@keyframes missionPulse {
  0%, 100% { transform: translateY(0); filter: brightness(1); }
  50% { transform: translateY(-4px); filter: brightness(1.14); }
}
@keyframes radarSpin {
  to { transform: rotate(360deg); }
}
@keyframes dotBlink {
  0%, 100% { opacity: .25; }
  50% { opacity: 1; }
}

section { padding: 82px 0; }
.section-head { display: flex; justify-content: space-between; gap: 22px; align-items: end; margin-bottom: 24px; }
.kicker { color: var(--gold); font-family: "Bebas Neue", Rajdhani, sans-serif; font-size: 24px; letter-spacing: .08em; text-transform: uppercase; }
h2 { margin: 8px 0 0; font-family: "Bebas Neue", Rajdhani, sans-serif; font-size: clamp(40px, 5vw, 66px); line-height: .92; letter-spacing: .02em; text-shadow: 4px 4px 0 #02050a; }
.sub { color: #b9c9d8; font-size: 19px; line-height: 1.42; font-weight: 700; }

.briefing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.briefing-card, .finder, .plan-summary {
  border: 2px solid var(--line);
  background:
    linear-gradient(135deg, rgba(244,239,226,.07), transparent 30%),
    rgba(12,26,45,.86);
  box-shadow: 8px 8px 0 rgba(0,0,0,.32);
}
.briefing-card { padding: 20px; min-height: 172px; position: relative; overflow: hidden; }
.briefing-card::after { content: ""; position: absolute; right: -20px; bottom: -22px; width: 110px; height: 110px; background: var(--red); transform: rotate(45deg); opacity: .34; }
.briefing-card b { display: block; color: var(--red); font-family: "Bebas Neue", Rajdhani, sans-serif; font-size: 46px; margin-bottom: 4px; }
.briefing-card p { margin: 0; color: var(--cream); font-weight: 800; font-size: 18px; }

.platform-section {
  padding-top: 34px;
}
.platform-wrap {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 18px;
  align-items: stretch;
}
.platform-copy,
.platform-card {
  border: 2px solid var(--line);
  background:
    linear-gradient(135deg, rgba(244,239,226,.07), transparent 30%),
    rgba(12,26,45,.86);
  box-shadow: 8px 8px 0 rgba(0,0,0,.32);
}
.platform-copy {
  padding: 22px;
}
.platform-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.store-btn {
  min-width: 150px;
  border: 1px solid rgba(244,239,226,.42);
  background: rgba(5,9,16,.66);
  color: var(--cream);
  padding: 10px 12px;
  font-family: "Bebas Neue", Rajdhani, sans-serif;
  font-size: 24px;
  line-height: .95;
  letter-spacing: .04em;
  box-shadow: 4px 4px 0 rgba(0,0,0,.36);
}
.store-btn span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: .03em;
}
.store-btn.terminal {
  border-color: rgba(212,175,55,.62);
  color: var(--gold);
}
.platform-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
}
.platform-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -50px auto;
  width: 180px;
  height: 180px;
  background: var(--red);
  opacity: .28;
  transform: rotate(45deg);
}
.platform-logo {
  width: min(100%, 300px);
  margin-bottom: 14px;
}
.platform-screen {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(244,239,226,.28);
  background:
    repeating-linear-gradient(0deg, rgba(244,239,226,.035) 0 1px, transparent 1px 11px),
    rgba(5,9,16,.72);
  padding: 16px;
}
.screen-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(244,239,226,.24);
  font-family: "JetBrains Mono", monospace;
}
.screen-top img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.screen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 14px;
  margin-top: 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
}
.screen-grid span {
  color: var(--muted);
}
.screen-grid strong {
  color: var(--cream);
  text-align: right;
}
.screen-grid .ok {
  color: var(--gold);
}

.finder { padding: 20px; }
.selector-grid { display: grid; grid-template-columns: 1.1fr .9fr 1fr; gap: 18px; }
.option-list { display: grid; gap: 9px; }
.option-btn {
  width: 100%;
  min-height: 52px;
  border: 2px solid var(--line);
  background: rgba(0,0,0,.2);
  color: var(--cream);
  font: inherit;
  font-weight: 900;
  text-align: left;
  padding: 11px 12px;
  cursor: pointer;
}
.option-btn { font-family: "Bebas Neue", Rajdhani, sans-serif; font-size: 24px; letter-spacing: .035em; }
.option-btn strong {
  display: inline-flex;
  margin-left: 8px;
  padding: 3px 7px 2px;
  border: 1px solid rgba(212,175,55,.52);
  color: var(--gold);
  background: rgba(0,0,0,.22);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: .04em;
  vertical-align: middle;
}
.option-btn span { display: block; color: var(--muted); font-family: Manrope, sans-serif; font-size: 12px; letter-spacing: 0; margin-top: 3px; }
.option-btn.active { border-color: var(--red); background: linear-gradient(90deg, rgba(210,38,48,.5), rgba(210,38,48,.1)); }
.sizes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; align-content: start; }
.size-btn { text-align: center; }
.plan-summary { padding: 19px; min-height: 100%; display: flex; flex-direction: column; gap: 14px; }
.summary-price { font-family: "Bebas Neue", Rajdhani, sans-serif; font-size: 62px; line-height: .9; color: var(--gold); text-shadow: 4px 4px 0 #02050a; }
.rules { display: grid; gap: 8px; }
.rule { display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--line); padding-bottom: 8px; color: #cadae8; font-weight: 800; }
.rule strong { color: var(--cream); }
.addons { display: flex; flex-wrap: wrap; gap: 8px; }
.addon { border: 1px solid rgba(244,239,226,.34); color: var(--cream); padding: 7px 9px; background: rgba(210,38,48,.18); font-weight: 900; font-size: 12px; text-transform: uppercase; }

.brand-board {
  border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  background: #06111f;
}
.board-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 18px; align-items: stretch; }
.board-card { border: 2px solid var(--line); background: rgba(0,0,0,.25); overflow: hidden; box-shadow: 8px 8px 0 rgba(0,0,0,.32); }
.board-card img { width: 100%; height: 100%; object-fit: cover; }

.legal { border-top: 2px solid var(--line); background: rgba(0,0,0,.26); color: #b6c5d4; font-size: 14px; line-height: 1.55; }
footer { padding: 28px 0; border-top: 2px solid var(--red); color: var(--cream); background: var(--navy-deep); }
.foot { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-weight: 900; }

@media (max-width: 980px) {
  .hero-grid, .selector-grid, .briefing-grid, .board-grid, .platform-wrap { grid-template-columns: 1fr; }
  .poster, .poster img { min-height: 620px; max-height: 720px; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .navlinks a:not(.btn) { display: none; }
  .bubble { top: auto; bottom: 20px; right: 18px; font-size: 28px; }
}

@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .brand img { width: 68px; height: 46px; }
  .brand span { font-size: 26px; }
  .nav { min-height: 68px; }
  .navlinks .btn.ghost { display: none; }
  .hero-copy { padding: 18px; }
  .stat-row, .sizes { grid-template-columns: 1fr; }
  .poster, .poster img { min-height: 520px; }
  .mission-control { top: 52%; width: min(88%, 340px); }
  .mission-accept span:last-child { font-size: 26px; }
  .mission-radar { flex-basis: 50px; width: 50px; height: 50px; }
  .bubble { max-width: 230px; font-size: 23px; }
}

@media (prefers-reduced-motion: reduce) {
  .hud-sweep,
  .status-light,
  .mission-accept,
  .radar-sweep,
  .radar-dot {
    animation: none;
  }
}
