:root {
  --bg: #05070a; --bg-2: #0a0e14; --bg-3: #10161e;
  --line: rgba(255,255,255,0.10); --text: #f3f4f6; --muted: #9aa3ad;
  --accent: #f2c11a; --accent-2: #ffd84d;
  --red: #ef4444; --blue: #3b82f6; --mil: #8a9a5b; --green: #b9f6a5;
  --display: "Anton", "Impact", "Arial Narrow Bold", sans-serif;
  --cond: "Barlow Condensed", "Arial Narrow", sans-serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
  --wrap: 1200px; --nav-h: 64px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--sans); font-size: 16.5px; line-height: 1.6; overflow-x: hidden; }
img, video { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
h2 { font-family: var(--display); font-size: clamp(38px, 5.6vw, 72px); line-height: 0.98; letter-spacing: 0.005em; text-transform: uppercase; }
h3 { font-family: var(--display); font-size: 26px; line-height: 1.05; text-transform: uppercase; letter-spacing: 0.01em; }
p { margin: 0; }
.wrap { width: min(var(--wrap), calc(100% - 48px)); margin: 0 auto; position: relative; }
.skip { position: absolute; left: -9999px; } .skip:focus { left: 12px; top: 12px; background: var(--accent); color: #000; padding: 8px 12px; z-index: 200; }
::selection { background: var(--accent); color: #000; }
[hidden] { display: none !important; }

/* global screen effects */
.scanlines { position: fixed; inset: 0; z-index: 120; pointer-events: none; opacity: .28; mix-blend-mode: overlay;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 3px); }
.scanlines::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 160px rgba(0,0,0,0.65); }

/* boot / loading screen */
.boot { position: fixed; inset: 0; z-index: 300; background: #000; display: grid; place-items: center; transition: opacity .5s ease, visibility .5s; }
.boot.done { opacity: 0; visibility: hidden; }
.boot-inner { width: min(560px, 86vw); text-align: center; }
.boot-brand { font-family: var(--display); font-size: clamp(48px, 9vw, 84px); letter-spacing: .03em; line-height: 1; display: inline-flex; align-items: center; color: #fff; }
.boot-brand i { width: 5px; height: .8em; background: var(--accent); margin: 0 10px; transform: skewX(-12deg); }
.boot-brand .y { color: var(--accent); }
.boot-bar { margin: 32px 0 10px; height: 6px; background: rgba(255,255,255,.12); position: relative; overflow: hidden; }
.boot-fill { height: 100%; width: 0; background: var(--accent); transition: width .12s linear; }
.boot-row { display: flex; justify-content: space-between; font-family: var(--cond); font-weight: 700; letter-spacing: .22em; text-transform: uppercase; font-size: 13px; color: var(--muted); }
.boot-pct { color: #fff; font-family: var(--mono); letter-spacing: 0; }
.boot-tip { margin-top: 40px; font-size: 14px; color: var(--muted); font-family: var(--mono); }

/* buttons: game menu style with bracket corners */
.gbtn { position: relative; display: inline-flex; align-items: center; gap: 10px; font-family: var(--cond); font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none; cursor: pointer; border: 2px solid transparent; transition: transform .12s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease; white-space: nowrap; }
.gbtn::before, .gbtn::after { content: ""; position: absolute; width: 10px; height: 10px; border: 2px solid currentColor; transition: inherit; }
.gbtn::before { left: -6px; top: -6px; border-right: 0; border-bottom: 0; } .gbtn::after { right: -6px; bottom: -6px; border-left: 0; border-top: 0; }
.gbtn:hover::before { left: -9px; top: -9px; } .gbtn:hover::after { right: -9px; bottom: -9px; }
.gbtn:active { transform: translateY(1px); }
.gbtn-solid { background: var(--accent); color: #0a0a0a; border-color: var(--accent); box-shadow: 0 0 0 0 rgba(242,193,26,.0); }
.gbtn-solid:hover { background: var(--accent-2); border-color: var(--accent-2); box-shadow: 0 0 34px rgba(242,193,26,.35); }
.gbtn-solid::before, .gbtn-solid::after { border-color: var(--accent); }
.gbtn-ghost { background: rgba(5,7,10,0.45); color: #fff; border-color: rgba(255,255,255,0.6); backdrop-filter: blur(6px); }
.gbtn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.gbtn-lg { padding: 15px 28px; font-size: 17px; } .gbtn-sm { padding: 9px 16px; font-size: 14px; }

/* nav */
.nav { position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); display: flex; align-items: center; gap: 28px; padding: 0 28px; z-index: 100; transition: background .3s ease, border-color .3s ease; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(5,7,10,0.86); backdrop-filter: blur(12px); border-color: var(--line); }
.brand { display: inline-flex; align-items: center; font-family: var(--display); font-size: 26px; letter-spacing: 0.04em; text-decoration: none; line-height: 1; }
.brand-may { color: #fff; } .brand-hattan { color: var(--accent); }
.brand-bar { width: 3px; height: 22px; background: var(--accent); margin: 0 5px; transform: skewX(-12deg); }
.menu { display: flex; gap: 4px; margin-left: auto; }
.menu a { position: relative; text-decoration: none; font-family: var(--cond); font-size: 15px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.78); padding: 8px 12px 8px 20px; }
.menu a::before { content: "▸"; position: absolute; left: 6px; color: var(--accent); opacity: 0; transform: translateX(-4px); transition: .15s ease; }
.menu a:hover { color: #fff; } .menu a:hover::before { opacity: 1; transform: none; }
.nav-toggle { display: none; margin-left: auto; width: 42px; height: 42px; background: none; border: 0; cursor: pointer; flex-direction: column; justify-content: center; gap: 6px; padding: 8px; }
.nav-toggle span { display: block; height: 2px; background: #fff; }

/* hero */
.hero { position: relative; min-height: 100svh; display: grid; place-items: center; overflow: hidden; isolation: isolate; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; filter: saturate(1.12) contrast(1.06); }
.hero-shade { position: absolute; inset: 0; z-index: -1; background:
  linear-gradient(180deg, rgba(5,7,10,0.6) 0%, rgba(5,7,10,0.12) 30%, rgba(5,7,10,0.2) 60%, rgba(5,7,10,0.96) 100%),
  radial-gradient(60% 50% at 50% 55%, rgba(5,7,10,0) 0%, rgba(5,7,10,0.5) 100%); }
.hero-grain { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .09; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.hero-inner { position: relative; z-index: 1; text-align: center; padding: 120px 24px 150px; max-width: 1100px; }
.eyebrow { font-family: var(--cond); font-size: 15px; font-weight: 700; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-bottom: 18px; }
.title { font-family: var(--display); font-size: clamp(72px, 15vw, 230px); line-height: 0.86; letter-spacing: 0.01em; text-transform: uppercase; color: #fff; text-shadow: 0 6px 40px rgba(0,0,0,0.6); display: inline-flex; flex-wrap: wrap; justify-content: center; }
.title span { position: relative; }
.title-accent { color: var(--accent); }
.tagline { margin-top: 24px; font-size: clamp(18px, 2.1vw, 25px); font-weight: 500; color: rgba(255,255,255,0.92); text-shadow: 0 2px 16px rgba(0,0,0,0.6); }
.tagline em { font-style: normal; color: var(--accent); font-weight: 800; }
.cta-row { margin-top: 34px; display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; }
.stamp { margin-top: 34px; display: inline-grid; justify-items: center; border: 3px solid var(--accent); padding: 10px 22px 12px; transform: rotate(-1.5deg); background: rgba(5,7,10,0.55); backdrop-filter: blur(4px); }
.stamp-k { font-family: var(--cond); font-size: 12px; letter-spacing: 0.4em; text-transform: uppercase; font-weight: 800; color: var(--accent); }
.stamp-v { font-family: var(--display); font-size: 46px; line-height: 0.95; text-transform: uppercase; color: #fff; }
.stamp-p { font-family: var(--cond); font-size: 12px; letter-spacing: .26em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: 6px; }

/* HUD overlay */
.hud { position: absolute; inset: 0; z-index: 2; pointer-events: none; font-family: var(--cond); text-shadow: 0 1px 2px #000, 0 0 12px rgba(0,0,0,.6); }
.hud-tl { position: absolute; top: calc(var(--nav-h) + 14px); left: 18px; display: grid; gap: 6px; }
.hud-heat { display: flex; align-items: center; gap: 4px; }
.hs { width: 20px; height: 20px; display: inline-block; background: rgba(255,255,255,0.2); clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); }
.hs.on { background: #fff; filter: drop-shadow(0 0 6px #fff); }
.hud-heat-label { margin-left: 8px; font-size: 14px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.hud-event { font-size: 12px; font-weight: 800; letter-spacing: .24em; text-transform: uppercase; color: #ffb4b4; }
.hud-tr { position: absolute; top: calc(var(--nav-h) + 14px); right: 18px; text-align: right; display: grid; gap: 2px; }
.hud-cash { font-family: var(--display); font-size: 30px; color: var(--green); letter-spacing: .02em; }
.hud-clock { font-family: var(--mono); font-size: 15px; color: #fff; }
.hud-shard { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); } .hud-shard b { color: #fff; }
.hud-bl { position: absolute; left: 18px; bottom: 20px; display: grid; gap: 8px; }
.minimap { width: 190px; height: 190px; position: relative; filter: drop-shadow(0 0 0 #000); }
.mm-svg { width: 100%; height: 100%; }
.mm-n { position: absolute; top: -4px; left: 50%; transform: translateX(-50%); font-size: 11px; font-weight: 800; color: #fff; background: #000; padding: 0 5px; }
.mm-blips .blink { animation: blink 1s steps(2) infinite; }
.hud-health { width: 190px; height: 8px; background: rgba(0,0,0,0.65); border: 1px solid rgba(255,255,255,.25); }
.hud-health > div { height: 100%; width: 100%; background: linear-gradient(90deg, #22c55e, #86efac); }
.hud-street { font-size: 15px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #fff; }
.hud-br { position: absolute; right: 18px; bottom: 20px; text-align: right; }
.hud-weapon { font-size: 18px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.hud-ammo { font-family: var(--display); font-size: 34px; line-height: 1; color: #fff; } .hud-ammo span { font-size: 15px; color: var(--muted); margin-left: 4px; }
.hud-prompt { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); font-size: 15px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #fff; background: rgba(5,7,10,.62); padding: 8px 14px; border: 1px solid rgba(255,255,255,.2); animation: pulse 2.4s ease-in-out infinite; white-space: nowrap; }
.hud-prompt kbd { display: inline-grid; place-items: center; width: 26px; height: 26px; border: 2px solid #fff; font-family: var(--cond); font-weight: 800; margin-right: 8px; vertical-align: middle; background: rgba(255,255,255,.08); }
@keyframes blink { to { opacity: .2; } }
@keyframes pulse { 0%, 100% { opacity: 1 } 50% { opacity: .55 } }

/* ticker */
.ticker { background: var(--accent); color: #0a0a0a; overflow: hidden; border-top: 3px solid #000; border-bottom: 3px solid #000; transform: skewY(-1deg); margin: -12px 0 12px; position: relative; z-index: 3; }
.ticker-track { display: flex; width: max-content; animation: ticker 40s linear infinite; }
.ticker span { font-family: var(--display); font-size: 22px; letter-spacing: 0.06em; text-transform: uppercase; padding: 10px 26px; white-space: nowrap; position: relative; }
.ticker span::after { content: "◆"; position: absolute; right: -8px; top: 50%; transform: translateY(-50%); font-size: 10px; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* sections */
.sec { padding: clamp(80px, 9vw, 130px) 0; position: relative; overflow: hidden; }
.sec-bg { position: absolute; inset: 0; z-index: 0; }
.sec-bg img { position: absolute; inset: -6% 0; width: 100%; height: 112%; object-fit: cover; opacity: 0; transition: opacity .9s ease; filter: brightness(.5) saturate(1.1); will-change: transform; }
.sec-bg img.on { opacity: 1; }
.sec-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,7,10,0.92) 0%, rgba(5,7,10,0.6) 55%, rgba(5,7,10,0.3) 100%), linear-gradient(180deg, var(--bg) 0%, transparent 16%, transparent 84%, var(--bg) 100%); }
.sec > .wrap { z-index: 1; }
.sec-head { max-width: 900px; margin-bottom: clamp(32px, 5vw, 56px); }
.code { font-family: var(--mono); font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.lede { margin-top: 20px; font-size: clamp(16px, 1.4vw, 19px); color: var(--muted); max-width: 760px; } .lede em { color: #fff; font-style: normal; font-weight: 700; } .dim { color: rgba(154,163,173,.6); }
.glitch { position: relative; display: inline-block; }
.glitch::before, .glitch::after { content: attr(data-text); position: absolute; inset: 0; opacity: 0; pointer-events: none; }
.glitch::before { color: #ff2d55; transform: translate(-3px, 0); clip-path: polygon(0 20%, 100% 20%, 100% 45%, 0 45%); }
.glitch::after { color: #2dd4ff; transform: translate(3px, 0); clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%); }
.glitch.in::before, .glitch.in::after { animation: glitch .55s steps(2) 1; }
@keyframes glitch { 0% { opacity: .9 } 40% { opacity: .6; transform: translate(4px, 1px) } 100% { opacity: 0 } }

/* panel (in-game window) */
.panel { position: relative; background: rgba(6,9,13,0.78); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.14); padding: 22px 26px 26px; }
.panel::before, .panel::after { content: ""; position: absolute; width: 16px; height: 16px; border: 2px solid var(--accent); }
.panel::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; } .panel::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.panel-top { display: flex; align-items: baseline; gap: 14px; margin-bottom: 12px; flex-wrap: wrap; }
.panel-tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--accent); }
.panel-tag.mil { color: #000; background: var(--mil); padding: 4px 8px; }
.panel-title { font-family: var(--display); font-size: 34px; line-height: 1; text-transform: uppercase; }
.panel-live { margin-left: auto; font-family: var(--cond); font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); display: inline-flex; align-items: center; gap: 6px; }
.panel-live i { width: 8px; height: 8px; border-radius: 50%; background: var(--red); animation: blink 1.2s steps(2) infinite; }

/* wanted */
.wanted { background: #000; }
.wanted-ui { display: grid; grid-template-columns: 1fr 1.25fr; gap: 40px; align-items: start; }
.wl-stars { display: flex; gap: 8px; flex-wrap: wrap; }
.wstar { position: relative; width: 72px; height: 72px; background: none; border: 0; cursor: pointer; padding: 0; display: grid; place-items: center; }
.wstar i { position: absolute; inset: 6px; clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); background: rgba(255,255,255,0.14); transition: background .2s ease, filter .2s ease, transform .2s ease; }
.wstar:hover i { background: rgba(255,255,255,0.3); }
.wstar.on i { background: #fff; filter: drop-shadow(0 0 12px rgba(255,255,255,0.85)); transform: scale(1.06); }
.wstar.red.on i { background: var(--red); filter: drop-shadow(0 0 14px rgba(239,68,68,0.95)); animation: redblink .5s steps(2) infinite; }
@keyframes redblink { to { background: #fff; } }
.wstar b { position: relative; font-family: var(--display); font-size: 22px; color: #000; z-index: 1; }
.wstar:not(.on) b { color: rgba(255,255,255,0.7); }
.dispatch-card.red { border-color: rgba(239,68,68,.5); } .dispatch-card.red::before, .dispatch-card.red::after, .dispatch-card.red .panel-tag { border-color: var(--red); color: var(--red); }
.radio { font-family: var(--mono); font-size: 13.5px; color: var(--green); border-left: 3px solid var(--green); padding: 6px 12px; margin: 4px 0 16px; background: rgba(185,246,165,.05); min-height: 2.4em; }
.dispatch-card dl { margin: 0; display: grid; grid-template-columns: 110px 1fr; row-gap: 10px; column-gap: 16px; }
.dispatch-card dt { font-family: var(--cond); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); padding-top: 4px; font-weight: 700; }
.dispatch-card dd { margin: 0; font-size: 15.5px; }
.defense { margin-top: clamp(44px, 6vw, 80px); max-width: 820px; border-color: rgba(138,154,91,0.5); }
.defense::before, .defense::after { border-color: var(--mil); }
.defense p { color: rgba(255,255,255,0.86); margin-top: 8px; } .defense b { color: var(--accent-2); }
.defense .note { margin-top: 12px; font-size: 13px; color: var(--muted); font-style: italic; }

/* island map */
.island { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.map-grid { display: grid; grid-template-columns: minmax(300px, 460px) 1fr; gap: 32px; align-items: start; }
.pausemap { padding: 18px; }
.map-svg { width: 100%; height: auto; display: block; margin-top: 6px; font-family: var(--cond); }
.map-svg .water { font-size: 13px; letter-spacing: .3em; fill: rgba(120,160,220,.35); font-weight: 700; }
.map-svg .lbl { font-size: 11.5px; letter-spacing: .14em; fill: rgba(255,255,255,.55); font-weight: 700; }
.pin { cursor: pointer; }
.pin circle { fill: var(--accent); stroke: #000; stroke-width: 2; transition: transform .2s ease; transform-box: fill-box; transform-origin: center; }
.pin circle.ring { fill: none; stroke: var(--accent); stroke-width: 1.5; opacity: .5; animation: ring 2.2s ease-out infinite; }
.pin circle.small { fill: #22c55e; }
.pin text { font-size: 12px; font-weight: 800; letter-spacing: .12em; fill: #fff; paint-order: stroke; stroke: #000; stroke-width: 3px; }
.pin:hover circle:not(.ring), .pin.active circle:not(.ring) { transform: scale(1.3); }
.pin.active text { fill: var(--accent); }
@keyframes ring { 0% { transform: scale(.6); opacity: .7 } 100% { transform: scale(1.6); opacity: 0 } }
.you path { animation: pulse 1.6s ease-in-out infinite; }
.map-side { display: grid; gap: 18px; }
.map-info p { color: rgba(255,255,255,.88); font-size: 16px; }
.map-legend { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-family: var(--cond); font-size: 15px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.map-legend li { display: flex; align-items: center; gap: 10px; }
.map-legend i { width: 14px; height: 14px; display: inline-block; }
.lg-you { background: #fff; clip-path: polygon(50% 0, 100% 100%, 50% 75%, 0 100%); } .lg-pin { background: var(--accent); border-radius: 50%; } .lg-mil { background: var(--mil); } .lg-park { background: #1b3a26; border: 1px solid #2f5c3c; }
.map-note { font-size: 13.5px; color: var(--muted); }

/* trailer */
.trailer { background: var(--bg-2); }
.frame { position: relative; }
.frame::before, .frame::after { content: ""; position: absolute; width: 28px; height: 28px; border: 3px solid var(--accent); z-index: 2; pointer-events: none; }
.frame::before { top: -8px; left: -8px; border-right: 0; border-bottom: 0; } .frame::after { bottom: -8px; right: -8px; border-left: 0; border-top: 0; }
.player { aspect-ratio: 16 / 9; background: #000; border: 1px solid var(--line); box-shadow: 0 40px 120px rgba(0,0,0,0.6); overflow: visible; }
.player video { width: 100%; height: 100%; object-fit: cover; }
.player-overlay { position: absolute; inset: 0; width: 100%; background: linear-gradient(180deg, rgba(5,7,10,0.1), rgba(5,7,10,0.55)); border: 0; cursor: pointer; display: grid; place-items: center; align-content: center; gap: 16px; color: #fff; }
.play-ring { width: 96px; height: 96px; border-radius: 50%; border: 3px solid #fff; display: grid; place-items: center; background: rgba(242,193,26,0.92); color: #000; transition: transform .2s ease; box-shadow: 0 0 0 12px rgba(242,193,26,0.18); }
.player-overlay:hover .play-ring { transform: scale(1.06); }
.play-text { font-family: var(--cond); font-size: 14px; font-weight: 800; letter-spacing: 0.32em; text-transform: uppercase; }
.fineprint { margin-top: 22px; font-size: 13px; color: var(--muted); max-width: 760px; }

/* garage rail */
.garage { background: var(--bg); }
.rail { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 8px 4px 18px; margin: 0 -4px; cursor: grab; scrollbar-width: thin; scrollbar-color: var(--accent) transparent; }
.rail.dragging { cursor: grabbing; scroll-snap-type: none; }
.rail::-webkit-scrollbar { height: 6px; } .rail::-webkit-scrollbar-thumb { background: var(--accent); }
.vcard { flex: 0 0 300px; scroll-snap-align: start; position: relative; background: var(--bg-3); border: 1px solid var(--line); padding: 22px 22px 24px; display: grid; gap: 10px; align-content: start; transition: transform .2s ease, border-color .2s ease; }
.vcard:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.35); }
.vcard::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--accent); }
.vcard.pol::before { background: linear-gradient(180deg, var(--red) 50%, var(--blue) 50%); } .vcard.mil::before { background: var(--mil); }
.vc-top { display: flex; justify-content: space-between; font-family: var(--cond); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.vc-price { color: var(--accent); }
.vcard h3 { font-size: 34px; }
.vcard p { color: var(--muted); font-size: 14.5px; min-height: 3.2em; }
.bars { display: grid; gap: 6px; margin-top: 4px; }
.bars div { display: grid; grid-template-columns: 70px 1fr; align-items: center; gap: 10px; font-family: var(--cond); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.bars i { height: 6px; background: rgba(255,255,255,.1); position: relative; display: block; }
.bars i::after { content: ""; position: absolute; inset: 0; width: var(--v, 50%); background: var(--accent); transform-origin: left; transform: scaleX(0); transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.in .bars i::after, .vcard:hover .bars i::after, .rail-in .bars i::after { transform: none; }
.rail-hint { font-family: var(--cond); font-size: 13px; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* arsenal */
.arsenal { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.wgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.wcard { position: relative; background: rgba(255,255,255,.025); border: 1px solid var(--line); padding: 22px 22px 22px; display: grid; gap: 6px; transition: border-color .2s ease; }
.wcard:hover { border-color: rgba(255,255,255,.35); }
.wcard::after { content: ""; position: absolute; top: 0; right: 0; width: 42px; height: 3px; background: var(--accent); }
.wcard.hot::after { background: var(--red); }
.w-type { font-family: var(--cond); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.wcard h3 { font-size: 32px; } .w-price { font-family: var(--mono); font-size: 13px; color: var(--accent); }
.wcard .bars { margin-top: 10px; }

/* dispatch events */
.dispatch { background: var(--bg-2); }
.events { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ev { position: relative; aspect-ratio: 4 / 5; overflow: hidden; border: 1px solid var(--line); background: var(--bg-3); clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%); }
.ev img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; filter: saturate(1.05); }
.ev:hover img { transform: scale(1.06); }
.ev-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 120px 22px 24px; background: linear-gradient(180deg, transparent, rgba(5,7,10,.95) 55%); }
.ev-tag { font-family: var(--mono); font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--accent); }
.ev h3 { font-size: 30px; margin: 6px 0 8px; } .ev p { color: rgba(255,255,255,.8); font-size: 14.5px; }
.online { margin-top: 40px; border: 1px solid var(--line); padding: 28px 30px; background: rgba(255,255,255,.02); display: grid; grid-template-columns: 260px 1fr; gap: 30px; }
.online-head h3 { font-size: 40px; margin-top: 8px; }
.online-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.online-list li { position: relative; padding-left: 18px; color: var(--muted); font-size: 15px; }
.online-list li::before { content: "▸"; position: absolute; left: 0; color: var(--accent); }
.online-list b { color: #fff; }

/* screenshots */
.shots { background: var(--bg); }
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.shot { position: relative; display: block; overflow: hidden; background: var(--bg-3); aspect-ratio: 16/10; border: 1px solid var(--line); }
.shot.wide { grid-column: span 2; }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease, filter .3s ease; }
.shot:hover img { transform: scale(1.05); }
.shot span { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 14px 12px; font-family: var(--cond); font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85)); opacity: 0; transform: translateY(6px); transition: opacity .3s ease, transform .3s ease; }
.shot:hover span, .shot:focus-visible span { opacity: 1; transform: none; }
.shot::before { content: ""; position: absolute; top: 8px; left: 8px; width: 14px; height: 14px; border: 2px solid var(--accent); border-right: 0; border-bottom: 0; opacity: 0; transition: .2s; z-index: 1; }
.shot:hover::before { opacity: 1; }

/* enlist terminal */
.enlist { background: #000; }
.enlist-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.term { background: #05070a; border: 1px solid rgba(255,255,255,.2); box-shadow: 0 30px 90px rgba(0,0,0,.7), 0 0 0 1px rgba(242,193,26,.15); font-family: var(--mono); }
.term-top { display: flex; align-items: center; gap: 7px; padding: 10px 14px; background: #0f141b; border-bottom: 1px solid rgba(255,255,255,.12); }
.term-top span { width: 11px; height: 11px; border-radius: 50%; background: #2c3542; } .term-top span:nth-child(1) { background: #ef4444 } .term-top span:nth-child(2) { background: #f2c11a } .term-top span:nth-child(3) { background: #22c55e }
.term-top b { margin-left: auto; font-size: 11px; letter-spacing: .2em; color: var(--muted); font-weight: 500; }
.term-body { padding: 22px 22px 26px; display: grid; gap: 14px; }
.term-line { color: var(--muted); font-size: 13px; }
.term-field { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--green); }
.term-field input { flex: 1; min-width: 0; background: transparent; border: 0; border-bottom: 2px solid rgba(255,255,255,.2); color: #fff; padding: 10px 4px; font: inherit; font-size: 17px; outline: none; caret-color: var(--accent); }
.term-field input:focus { border-color: var(--accent); }
.term-plat { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 14px; color: var(--green); }
.term-plat label { cursor: pointer; } .term-plat input { position: absolute; opacity: 0; pointer-events: none; }
.term-plat i { display: inline-block; font-style: normal; padding: 6px 12px; border: 1px solid rgba(255,255,255,.25); font-family: var(--cond); font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.75); }
.term-plat input:checked + i { background: var(--accent); color: #000; border-color: var(--accent); }
.term-plat input:focus-visible + i { outline: 2px solid #fff; }
.term-msg { font-size: 13px; min-height: 1.5em; color: var(--muted); }
.term-msg.ok { color: var(--green); } .term-msg.err { color: #fca5a5; }
.term-btn { justify-self: start; margin-top: 4px; }
.term.done .term-field, .term.done .term-plat, .term.done .term-btn { display: none; }
.term.done .term-msg { font-size: 18px; color: var(--green); }
.term-msg .cursor { display: inline-block; width: 9px; height: 1em; background: var(--green); vertical-align: -2px; animation: blink .9s steps(2) infinite; margin-left: 2px; }

/* intel */
.intel { background: var(--bg-2); }
.faq-list { max-width: 820px; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; list-style: none; padding: 18px 44px 18px 0; font-family: var(--display); font-size: 22px; text-transform: uppercase; letter-spacing: 0.02em; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-family: var(--display); font-size: 28px; color: var(--accent); transition: transform .2s ease; }
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list p { padding: 0 0 20px; color: var(--muted); max-width: 720px; }

/* footer */
.footer { background: #000; padding: 56px 0 40px; border-top: 1px solid var(--line); }
.footer-wrap { display: grid; gap: 16px; }
.brand-foot { font-size: 34px; }
.footer-mid { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer-line { font-size: 14px; color: var(--muted); } .footer-line a { color: #fff; }
.footer-legal { font-size: 12px; color: rgba(154,163,173,0.7); max-width: 760px; }
.rating { display: inline-flex; align-items: stretch; border: 2px solid rgba(255,255,255,0.85); background: rgba(5,7,10,0.6); }
.rating b { font-family: var(--display); font-size: 28px; padding: 4px 10px; border-right: 2px solid rgba(255,255,255,0.85); line-height: 1; display: grid; place-items: center; }
.rating small { font-size: 9px; line-height: 1.15; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 8px; display: grid; place-items: center; }

/* modal + lightbox */
.modal, .lightbox { position: fixed; inset: 0; z-index: 250; background: rgba(0,0,0,0.95); display: grid; place-items: center; padding: 24px; }
.modal-body { width: min(1400px, 100%); aspect-ratio: 16/9; background: #000; box-shadow: 0 40px 120px rgba(0,0,0,0.8); }
.modal-body video { width: 100%; height: 100%; }
.modal-close { position: absolute; top: 14px; right: 18px; width: 48px; height: 48px; background: none; border: 0; color: #fff; font-size: 40px; line-height: 1; cursor: pointer; z-index: 2; }
.lightbox img { max-width: min(1400px, 100%); max-height: 86vh; object-fit: contain; box-shadow: 0 30px 80px rgba(0,0,0,0.8); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 56px; height: 80px; background: rgba(255,255,255,0.06); border: 0; color: #fff; font-size: 44px; cursor: pointer; }
.lb-prev { left: 12px; } .lb-next { right: 12px; }
.lb-cap { position: absolute; bottom: 20px; left: 0; right: 0; text-align: center; font-family: var(--cond); font-size: 13px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }

/* reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; } .ticker-track, .hud-prompt, .pin circle.ring, .you path, .panel-live i, .mm-blips .blink { animation: none; }
  .glitch.in::before, .glitch.in::after { animation: none; } html { scroll-behavior: auto; } .boot { display: none; } .bars i::after { transform: none; }
}

/* responsive */
@media (max-width: 1080px) {
  .hud-tl, .hud-tr { top: calc(var(--nav-h) + 10px); }
  .wgrid, .events { grid-template-columns: repeat(2, 1fr); }
  .online { grid-template-columns: 1fr; } .online-list { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
  .wanted-ui, .map-grid, .enlist-wrap { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .minimap, .hud-health { width: 140px; } .minimap { height: 140px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav { padding: 0 18px; gap: 14px; }
  .menu { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(5,7,10,0.97); flex-direction: column; gap: 0; padding: 8px 0 12px; border-bottom: 1px solid var(--line); }
  .menu.open { display: flex; } .menu a { padding: 14px 22px 14px 30px; font-size: 17px; } .menu a::before { left: 14px; }
  .nav-cta { display: none; } .nav-toggle { display: flex; }
  .hero-inner { padding: 150px 16px 200px; }
  .hud-tl .hud-event, .hud-shard, .hud-prompt, .hud-clock { display: none; }
  .eyebrow { font-size: 12px; letter-spacing: .3em; }
  .hud-bl { bottom: 16px; } .hud-br { bottom: 16px; } .minimap, .hud-health { width: 110px; } .minimap { height: 110px; }
  .hud-street { font-size: 12px; } .hud-cash { font-size: 24px; }
  .cta-row { gap: 20px; } .gbtn-lg { width: 100%; justify-content: center; }
  .stamp-v { font-size: 38px; }
  .wgrid, .events, .grid { grid-template-columns: 1fr; } .shot.wide { grid-column: span 1; }
  .wl-stars { gap: 5px; } .wstar { width: 52px; height: 52px; } .wstar b { font-size: 17px; }
  .dispatch-card dl { grid-template-columns: 1fr; }
  .panel { padding: 18px 18px 20px; } .panel-title { font-size: 28px; }
  .vcard { flex-basis: 260px; }
  .term-body { padding: 18px; }
  .lb-nav { width: 40px; height: 60px; font-size: 32px; }
  .ticker { transform: none; margin: 0; }
}
