@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;500;600;700&display=swap');

:root {
  --bg: #07090c;
  --bg-deep: #030406;
  --bg-soft: #0b0e12;
  --surface: #101419;
  --surface-2: #151a20;
  --surface-3: #1b2129;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #f4f5f6;
  --text-soft: #c7cbd0;
  --muted: #858d96;
  --faint: #59616a;
  --red: #d6313d;
  --red-hot: #ff4e5b;
  --red-dark: #6e141c;
  --violet: #a867ff;
  --green: #8ad44a;
  --gold: #d5a94e;
  --blue: #5aa8ff;
  --max: 1480px;
  --reading: 760px;
  --font: "Chakra Petch", "Bahnschrift", Arial, sans-serif;
  --shadow-sm: 0 14px 35px rgba(0, 0, 0, 0.24);
  --shadow-lg: 0 35px 100px rgba(0, 0, 0, 0.46);
  --ease: cubic-bezier(.22, .7, .18, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg-deep); }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 82% 0%, rgba(214, 49, 61, 0.07), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}
body.menu-open { overflow: hidden; }
body.is-loading main { opacity: 0; }
body.is-ready main { opacity: 1; transition: opacity .45s ease; }
::selection { background: var(--red); color: #fff; }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: #06080a; }
::-webkit-scrollbar-thumb { background: #2c333b; border: 3px solid #06080a; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

a { color: inherit; text-decoration: none; }
img, svg, video { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
main { min-height: 65vh; }
[id] { scroll-margin-top: 100px; }

.wrap { width: min(var(--max), calc(100% - 80px)); margin-inline: auto; position: relative; }
.wrap-narrow { width: min(1120px, calc(100% - 80px)); margin-inline: auto; position: relative; }
.eyebrow, .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--red-hot);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before, .kicker::before { content: ""; width: 24px; height: 1px; background: currentColor; box-shadow: 10px 0 18px currentColor; }
.section { position: relative; padding: 120px 0; }
.section-tight { padding: 82px 0; }
.section-dark { background: var(--bg-deep); border-block: 1px solid rgba(255,255,255,.055); }
.section-soft { background: var(--bg-soft); border-block: 1px solid rgba(255,255,255,.06); }
.section-grid-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .35;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  gap: 90px;
  align-items: end;
  margin-bottom: 58px;
}
.section-title, .page-title {
  margin: 0;
  max-width: 980px;
  font-size: clamp(50px, 6.6vw, 102px);
  font-weight: 600;
  letter-spacing: -.052em;
  line-height: .9;
  text-transform: uppercase;
}
.section-title em, .page-title em { color: var(--red-hot); font-style: normal; }
.section-copy, .section-intro {
  margin: 0;
  max-width: 650px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.82;
}
.micro-label { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.divider { height: 1px; background: var(--line); }

/* Navigation */
.site-nav {
  position: fixed;
  z-index: 3000;
  inset: 0 0 auto;
  height: 84px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(4,5,7,.94), rgba(4,5,7,.75));
  backdrop-filter: blur(18px) saturate(120%);
  transition: height .28s var(--ease), background .28s ease, box-shadow .28s ease;
}
.site-nav.is-scrolled { height: 72px; background: rgba(4,5,7,.94); box-shadow: 0 18px 55px rgba(0,0,0,.28); }
.nav-inner { width: min(var(--max), calc(100% - 80px)); margin: auto; display: flex; align-items: center; gap: 38px; }
.brand {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: .82;
  text-transform: uppercase;
}
.brand span { text-shadow: 18px 0 40px rgba(255,255,255,.12); }
.brand small { margin-top: 10px; color: var(--red-hot); font-size: 8px; font-weight: 700; letter-spacing: .46em; }
.nav-links { display: flex; align-items: center; gap: 29px; margin-left: auto; }
.nav-links a {
  position: relative;
  padding: 28px 0;
  color: #aab0b6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 18px; height: 2px; background: var(--red-hot); box-shadow: 0 0 15px rgba(255,78,91,.55); transition: right .25s var(--ease); }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: #fff; }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
.nav-status {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 204px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.025);
  transition: border-color .2s ease, background .2s ease;
}
.nav-status:hover { border-color: rgba(255,78,91,.45); background: rgba(214,49,61,.06); }
.nav-status > span:last-child { display: flex; flex-direction: column; line-height: 1.2; }
.nav-status b { color: #fff; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.nav-status small { margin-top: 4px; color: var(--muted); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red-hot); box-shadow: 0 0 14px var(--red-hot); animation: signalPulse 1.8s ease-in-out infinite; }
.nav-toggle { display: none; width: 46px; height: 46px; margin-left: auto; padding: 13px 11px; border: 1px solid var(--line); background: rgba(255,255,255,.03); }
.nav-toggle span { display: block; width: 100%; height: 1px; margin: 5px 0; background: #fff; transition: transform .24s ease, opacity .2s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Buttons */
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 35px; }
.button {
  position: relative;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  overflow: hidden;
  padding: 0 23px;
  border: 1px solid rgba(255,255,255,.19);
  background: rgba(14,18,23,.78);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: border-color .25s ease, background .25s ease, transform .25s var(--ease);
}
.button::after { content: "↗"; font-size: 15px; transition: transform .25s var(--ease); }
.button:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.42); background: #1a2027; }
.button:hover::after { transform: translate(2px,-2px); }
.button.primary { border-color: var(--red); background: var(--red); box-shadow: 0 16px 45px rgba(214,49,61,.18); }
.button.primary::before { content: ""; position: absolute; inset: 0; transform: translateX(-105%) skewX(-18deg); background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent); transition: transform .65s var(--ease); }
.button.primary:hover { border-color: var(--red-hot); background: var(--red-hot); }
.button.primary:hover::before { transform: translateX(105%) skewX(-18deg); }
.button.ghost { background: transparent; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.text-link::after { content: "→"; color: var(--red-hot); transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(5px); }

/* Home hero */
.home-hero {
  position: relative;
  min-height: 900px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 165px 0 86px;
  background: #07090c;
}
.home-hero::after { content: ""; position: absolute; inset: auto 0 0; z-index: 2; height: 32%; background: linear-gradient(transparent, var(--bg)); pointer-events: none; }
.hero-backdrop { position: absolute; inset: -18px; background: url('/images/other_arts/keyart_bg_01.png') center 42% / cover no-repeat; transform: translate(var(--parallax-x, 0), var(--parallax-y, 0)) scale(1.035); transition: transform .7s var(--ease); }
.hero-backdrop::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,7,9,.98) 0%, rgba(5,7,9,.91) 30%, rgba(5,7,9,.43) 59%, rgba(5,7,9,.28) 100%), linear-gradient(180deg, rgba(5,7,9,.18), rgba(5,7,9,.28) 58%, #07090c 100%); }
.hero-backdrop::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 73% 28%, rgba(214,49,61,.18), transparent 32%); mix-blend-mode: screen; }
.hero-scan { position: absolute; z-index: 1; inset: 0; overflow: hidden; pointer-events: none; opacity: .3; }
.hero-scan::before { content: ""; position: absolute; left: 0; right: 0; top: -20%; height: 18%; background: linear-gradient(transparent, rgba(255,255,255,.05), transparent); animation: scan 8s linear infinite; }
.hero-grid { position: relative; z-index: 3; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .55fr); gap: 90px; align-items: end; }
.hero-copy { max-width: 850px; }
.hero-title { margin: 0; font-size: clamp(74px, 11.2vw, 172px); font-weight: 600; letter-spacing: -.07em; line-height: .72; text-transform: uppercase; text-shadow: 0 18px 60px rgba(0,0,0,.45); }
.hero-title span { display: block; margin-top: .24em; padding-left: .06em; color: var(--red-hot); font-size: .31em; letter-spacing: .46em; line-height: 1; text-shadow: 0 0 38px rgba(255,78,91,.25); }
.hero-lead { max-width: 720px; margin: 35px 0 0; color: #d2d5d8; font-size: clamp(17px, 1.45vw, 21px); line-height: 1.7; text-shadow: 0 3px 16px rgba(0,0,0,.55); }
.hero-intel {
  position: relative;
  align-self: end;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.17);
  background: linear-gradient(135deg, rgba(17,21,27,.78), rgba(7,9,12,.72));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}
.hero-intel::before { content: ""; position: absolute; inset: -1px auto auto -1px; width: 46px; height: 2px; background: var(--red-hot); box-shadow: 0 0 20px rgba(255,78,91,.65); }
.intel-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 17px; border-bottom: 1px solid var(--line); }
.intel-head span { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.intel-head time { color: #fff; font-size: 11px; font-weight: 600; letter-spacing: .08em; }
.intel-status { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--line); }
.intel-status strong { display: block; font-size: 20px; line-height: 1.1; text-transform: uppercase; }
.intel-status small { display: block; margin-top: 6px; color: var(--muted); font-size: 11px; }
.signal-ring { position: relative; width: 58px; height: 58px; border: 1px solid rgba(255,78,91,.4); border-radius: 50%; }
.signal-ring::before, .signal-ring::after { content: ""; position: absolute; border-radius: 50%; }
.signal-ring::before { inset: 8px; border: 1px dashed rgba(255,78,91,.65); animation: spin 9s linear infinite; }
.signal-ring::after { inset: 23px; background: var(--red-hot); box-shadow: 0 0 18px var(--red-hot); }
.intel-list { display: grid; gap: 13px; padding-top: 20px; }
.intel-list div { display: flex; justify-content: space-between; gap: 22px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.intel-list b { color: #e9ebed; font-weight: 600; text-align: right; }
.scroll-cue { position: absolute; z-index: 4; left: 40px; bottom: 82px; display: flex; align-items: center; gap: 13px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; transform: rotate(-90deg); transform-origin: left bottom; }
.scroll-cue::before { content: ""; width: 56px; height: 1px; background: linear-gradient(90deg, var(--red-hot), transparent); }

.signal-strip { position: relative; z-index: 4; border-block: 1px solid var(--line); background: #090c0f; overflow: hidden; }
.signal-strip-inner { min-height: 86px; display: grid; grid-template-columns: 1.05fr 1fr 1.2fr; align-items: stretch; }
.signal-strip-item { display: flex; align-items: center; gap: 14px; padding: 18px 28px; border-right: 1px solid var(--line); }
.signal-strip-item:first-child { padding-left: 0; }
.signal-strip-item:last-child { border-right: 0; }
.signal-strip-item small { display: block; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.signal-strip-item strong { display: block; margin-top: 3px; font-size: 15px; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; }
.strip-icon { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--red-hot); font-size: 13px; }

/* Home content */
.manifesto-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); gap: 90px; align-items: start; }
.manifesto-copy h2 { margin: 0; font-size: clamp(48px, 6vw, 92px); font-weight: 600; letter-spacing: -.05em; line-height: .95; text-transform: uppercase; }
.manifesto-copy h2 span { color: var(--red-hot); }
.manifesto-copy > p { max-width: 780px; margin: 35px 0 0; color: var(--text-soft); font-size: 18px; line-height: 1.86; }
.stat-stack { border-top: 1px solid var(--line-strong); }
.stat-row { display: grid; grid-template-columns: 108px 1fr; gap: 24px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.stat-row strong { color: var(--red-hot); font-size: 30px; line-height: 1; }
.stat-row span { color: #d7dadd; font-size: 13px; line-height: 1.5; text-transform: uppercase; }

.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.pillar-card { position: relative; min-height: 390px; overflow: hidden; padding: 35px; background: var(--surface); transition: background .3s ease; }
.pillar-card::before { content: attr(data-index); position: absolute; right: 24px; top: 20px; color: rgba(255,255,255,.035); font-size: 118px; font-weight: 700; line-height: 1; }
.pillar-card::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 3px; background: var(--red-hot); transition: right .35s var(--ease); }
.pillar-card:hover { background: var(--surface-2); }
.pillar-card:hover::after { right: 0; }
.pillar-icon { width: 54px; height: 54px; display: grid; place-items: center; border: 1px solid var(--line-strong); color: var(--red-hot); font-size: 19px; }
.pillar-card h3 { position: relative; margin: 105px 0 17px; font-size: 31px; font-weight: 600; line-height: 1.05; text-transform: uppercase; }
.pillar-card p { position: relative; margin: 0; color: var(--muted); line-height: 1.78; }

.cinematic-panel { position: relative; min-height: 670px; display: grid; grid-template-columns: 1.2fr .8fr; overflow: hidden; border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow-lg); }
.cinematic-media { position: relative; min-height: 580px; overflow: hidden; }
.cinematic-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.04); transition: transform .8s var(--ease), filter .5s ease; }
.cinematic-panel:hover .cinematic-media img { transform: scale(1.025); filter: saturate(1) contrast(1.03); }
.cinematic-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 65%, var(--surface) 100%), linear-gradient(0deg, rgba(4,5,7,.38), transparent 44%); }
.cinematic-copy { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: 60px; }
.cinematic-copy h2 { margin: 0; font-size: clamp(47px, 5.2vw, 80px); font-weight: 600; letter-spacing: -.05em; line-height: .9; text-transform: uppercase; }
.cinematic-copy p { margin: 28px 0 0; color: var(--text-soft); line-height: 1.82; }
.cinematic-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 35px; border: 1px solid var(--line); background: var(--line); }
.cinematic-metrics div { padding: 17px; background: rgba(4,6,8,.52); }
.cinematic-metrics strong { display: block; color: #fff; font-size: 19px; text-transform: uppercase; }
.cinematic-metrics span { display: block; margin-top: 3px; color: var(--muted); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }

.map-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.map-card { position: relative; min-height: 590px; display: flex; align-items: flex-end; overflow: hidden; border: 1px solid var(--line); background: #11151a; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), border-color .3s ease, box-shadow .35s ease; }
.map-card::before { content: ""; position: absolute; inset: 0; background: var(--map-image) center / cover no-repeat; transition: transform .8s var(--ease), filter .4s ease; }
.map-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,5,7,.98) 0%, rgba(4,5,7,.7) 29%, rgba(4,5,7,.08) 72%), linear-gradient(90deg, rgba(214,49,61,.12), transparent 47%); }
.map-card:hover { transform: translateY(-6px); border-color: rgba(255,78,91,.45); box-shadow: var(--shadow-lg); }
.map-card:hover::before { transform: scale(1.035); filter: saturate(1.08); }
.map-card-content { position: relative; z-index: 2; width: 100%; padding: 37px; }
.map-card-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 15px; }
.map-card .map-code { color: var(--red-hot); font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.map-card .map-state { padding: 5px 8px; border: 1px solid var(--line); color: #c8ccd0; font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.map-card h3 { margin: 0; max-width: 660px; font-size: clamp(42px, 4.7vw, 72px); font-weight: 600; letter-spacing: -.048em; line-height: .9; text-transform: uppercase; }
.map-card p { max-width: 620px; margin: 19px 0 0; color: #c4c8cc; line-height: 1.72; }
.map-card-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 25px; }
.map-card-meta span { padding: 6px 9px; border: 1px solid rgba(255,255,255,.16); background: rgba(4,5,7,.36); color: #d7dadd; font-size: 9px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }

.system-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.system-card { min-height: 275px; padding: 27px; border: 1px solid var(--line); background: linear-gradient(150deg, var(--surface-2), var(--surface)); transition: transform .25s var(--ease), border-color .25s ease; }
.system-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.27); }
.system-number { display: flex; justify-content: space-between; align-items: center; color: var(--red-hot); font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.system-number::after { content: "+"; color: var(--faint); font-size: 20px; font-weight: 400; }
.system-card h3 { margin: 78px 0 13px; font-size: 24px; line-height: 1.08; text-transform: uppercase; }
.system-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.72; }

.mode-ribbon { display: grid; grid-template-columns: repeat(4, 1fr); min-height: 440px; border: 1px solid var(--line); background: var(--line); gap: 1px; }
.mode-tile { position: relative; overflow: hidden; padding: 30px; background: var(--surface); }
.mode-tile::before { content: ""; position: absolute; inset: 0; opacity: .2; background: radial-gradient(circle at 50% 0%, var(--mode-color, var(--red)), transparent 48%); transition: opacity .3s ease; }
.mode-tile:hover::before { opacity: .38; }
.mode-symbol { position: relative; width: 78px; height: 78px; margin: 20px auto 74px; display: grid; place-items: center; border: 1px solid color-mix(in srgb, var(--mode-color, var(--red)) 50%, transparent); border-radius: 50%; color: var(--mode-color, var(--red)); font-size: 25px; box-shadow: 0 0 40px color-mix(in srgb, var(--mode-color, var(--red)) 14%, transparent); }
.mode-symbol::before { content: ""; position: absolute; inset: 9px; border: 1px dashed currentColor; border-radius: 50%; animation: spin 12s linear infinite; opacity: .6; }
.mode-tile h3 { position: relative; margin: 0; font-size: 27px; text-align: center; text-transform: uppercase; }
.mode-tile p { position: relative; margin: 14px 0 0; color: var(--muted); font-size: 13px; line-height: 1.68; text-align: center; }

.news-feature { display: grid; grid-template-columns: 1.17fr .83fr; overflow: hidden; border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow-lg); }
.news-feature-media { position: relative; min-height: 520px; overflow: hidden; }
.news-feature-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.news-feature:hover .news-feature-media img { transform: scale(1.025); }
.news-feature-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 70%, var(--surface) 100%); }
.news-feature-copy { display: flex; flex-direction: column; justify-content: center; padding: 54px; }
.news-meta { color: var(--red-hot); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.news-feature h2 { margin: 19px 0 22px; font-size: clamp(42px, 4.6vw, 68px); font-weight: 600; letter-spacing: -.047em; line-height: .93; text-transform: uppercase; }
.news-feature p { margin: 0; color: var(--text-soft); line-height: 1.78; }

.release-cta { position: relative; overflow: hidden; padding: 138px 0; border-top: 1px solid var(--line); background: #050609; text-align: center; }
.release-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 48%, rgba(214,49,61,.18), transparent 34%), linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px); background-size: auto, 54px 54px, 54px 54px; }
.release-cta h2 { position: relative; margin: 0; font-size: clamp(63px, 9vw, 136px); font-weight: 700; letter-spacing: -.065em; line-height: .79; text-transform: uppercase; }
.release-cta h2 span { display: block; margin-top: .26em; color: var(--red-hot); font-size: .25em; letter-spacing: .34em; }
.release-cta p { position: relative; max-width: 700px; margin: 30px auto 0; color: var(--text-soft); font-size: 17px; }
.release-cta .button-row { position: relative; justify-content: center; }
.countdown { position: relative; width: min(650px, 100%); display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin: 42px auto 0; border: 1px solid var(--line); background: var(--line); }
.countdown div { padding: 17px 10px; background: rgba(6,8,10,.78); }
.countdown strong { display: block; font-size: 31px; line-height: 1; }
.countdown span { display: block; margin-top: 6px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.countdown.is-live { display: block; padding: 25px; background: rgba(6,8,10,.78); }

/* Inner page hero */
.page-hero { position: relative; min-height: 520px; display: flex; align-items: flex-end; overflow: hidden; padding: 155px 0 72px; border-bottom: 1px solid var(--line); background: var(--bg-deep); }
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,7,9,.96), rgba(5,7,9,.7) 56%, rgba(5,7,9,.42)), var(--page-image, url('/images/other_arts/keyart_bg_01.png')) center / cover; filter: saturate(.68); }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, var(--bg), transparent 48%); }
.page-hero-content { position: relative; z-index: 2; max-width: 970px; }
.page-hero .page-title { font-size: clamp(64px, 9vw, 132px); }
.page-hero p:last-child { max-width: 770px; margin: 28px 0 0; color: #ced2d6; font-size: 18px; line-height: 1.76; }

/* Flagship game page */
.game-hero { position: relative; min-height: 990px; display: flex; align-items: flex-end; overflow: hidden; padding: 170px 0 82px; background: #050609; }
.game-hero-bg { position: absolute; inset: -20px; background: linear-gradient(90deg, rgba(3,4,6,.98) 0%, rgba(3,4,6,.77) 38%, rgba(3,4,6,.24) 72%), linear-gradient(0deg, #050609, transparent 43%), url('/images/other_arts/keyart_bg_01.png') center / cover; transform: translate(var(--parallax-x,0),var(--parallax-y,0)) scale(1.035); transition: transform .7s var(--ease); }
.game-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.25fr .55fr; gap: 80px; align-items: end; }
.game-hero h1 { margin: 0; max-width: 980px; font-size: clamp(78px, 12vw, 180px); font-weight: 600; letter-spacing: -.075em; line-height: .72; text-transform: uppercase; }
.game-hero h1 span { display: block; margin-top: .29em; color: var(--red-hot); font-size: .28em; letter-spacing: .42em; }
.game-hero-lead { max-width: 775px; margin: 38px 0 0; color: #d3d7da; font-size: clamp(18px, 1.6vw, 22px); line-height: 1.72; }
.game-spec-panel { border: 1px solid rgba(255,255,255,.17); background: rgba(8,11,14,.78); backdrop-filter: blur(16px); box-shadow: var(--shadow-lg); }
.game-spec-head { padding: 16px 20px; border-bottom: 1px solid var(--line); color: var(--red-hot); font-size: 10px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.game-spec-row { display: grid; grid-template-columns: 105px 1fr; gap: 18px; padding: 15px 20px; border-bottom: 1px solid rgba(255,255,255,.075); }
.game-spec-row:last-child { border-bottom: 0; }
.game-spec-row span { color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.game-spec-row strong { font-size: 12px; font-weight: 600; text-align: right; text-transform: uppercase; }
.game-jump-nav { position: sticky; z-index: 100; top: 72px; border-bottom: 1px solid var(--line); background: rgba(7,9,12,.9); backdrop-filter: blur(16px); }
.game-jump-inner { min-height: 64px; display: flex; align-items: center; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.game-jump-inner::-webkit-scrollbar { display: none; }
.game-jump-inner a { flex: 0 0 auto; padding: 9px 13px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; transition: color .2s ease, background .2s ease; }
.game-jump-inner a:hover { color: #fff; background: rgba(255,255,255,.045); }

.game-opening { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(330px, .6fr); gap: 90px; align-items: center; }
.game-opening h2 { margin: 0; font-size: clamp(58px, 7vw, 108px); font-weight: 600; letter-spacing: -.06em; line-height: .88; text-transform: uppercase; }
.game-opening h2 em { color: var(--red-hot); font-style: normal; }
.game-opening-copy > p { margin: 31px 0 0; color: var(--text-soft); font-size: 18px; line-height: 1.86; }
.feature-index { border-top: 1px solid var(--line-strong); }
.feature-index-row { display: grid; grid-template-columns: 45px 1fr auto; gap: 18px; align-items: center; min-height: 66px; border-bottom: 1px solid var(--line); }
.feature-index-row span { color: var(--red-hot); font-size: 10px; font-weight: 700; }
.feature-index-row strong { font-size: 13px; letter-spacing: .05em; text-transform: uppercase; }
.feature-index-row small { color: var(--muted); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }

.full-bleed-feature { position: relative; min-height: 780px; display: flex; align-items: flex-end; overflow: hidden; border-block: 1px solid var(--line); }
.full-bleed-feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.76) brightness(.76); }
.full-bleed-feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,5,7,.96) 0%, rgba(4,5,7,.62) 42%, rgba(4,5,7,.14) 72%), linear-gradient(0deg, #050609, transparent 48%); }
.full-bleed-content { position: relative; z-index: 2; width: min(710px, 100%); padding: 120px 0; }
.full-bleed-content h2 { margin: 0; font-size: clamp(56px, 7vw, 104px); font-weight: 600; letter-spacing: -.06em; line-height: .88; text-transform: uppercase; }
.full-bleed-content p { margin: 29px 0 0; color: #d0d4d7; font-size: 18px; line-height: 1.82; }
.feature-badges { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.feature-badges span { padding: 8px 10px; border: 1px solid rgba(255,255,255,.19); background: rgba(4,5,7,.42); color: #e3e5e7; font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.map-switcher { display: grid; grid-template-columns: 310px minmax(0,1fr); min-height: 690px; border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow-lg); }
.map-tabs { padding: 24px; border-right: 1px solid var(--line); background: #0a0d10; }
.map-tab-button { width: 100%; display: grid; grid-template-columns: 42px 1fr; gap: 15px; align-items: center; padding: 19px 12px; border: 0; border-bottom: 1px solid var(--line); background: transparent; text-align: left; cursor: pointer; transition: background .2s ease; }
.map-tab-button:hover, .map-tab-button.is-active { background: rgba(255,255,255,.045); }
.map-tab-button .tab-index { color: var(--red-hot); font-size: 10px; font-weight: 700; }
.map-tab-button strong { display: block; font-size: 15px; line-height: 1.2; text-transform: uppercase; }
.map-tab-button small { display: block; margin-top: 4px; color: var(--muted); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.map-panel { position: relative; min-height: 690px; overflow: hidden; }
.map-panel[hidden] { display: none; }
.map-panel::before { content: ""; position: absolute; inset: 0; background: var(--panel-image) center / cover; animation: panelIn .6s var(--ease); }
.map-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,5,7,.98) 0%, rgba(4,5,7,.55) 45%, rgba(4,5,7,.08)), linear-gradient(90deg, rgba(4,5,7,.56), transparent 60%); }
.map-panel-content { position: absolute; z-index: 2; left: 45px; right: 45px; bottom: 42px; }
.map-panel-content h3 { margin: 0; max-width: 770px; font-size: clamp(48px, 6vw, 88px); font-weight: 600; letter-spacing: -.055em; line-height: .88; text-transform: uppercase; }
.map-panel-content p { max-width: 690px; margin: 22px 0 0; color: #d0d4d7; line-height: 1.75; }
.map-panel-stats { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.map-panel-stats span { padding: 7px 9px; border: 1px solid rgba(255,255,255,.18); background: rgba(4,5,7,.52); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.mode-tabs-wrap { border: 1px solid var(--line); background: var(--surface); }
.mode-tab-list { display: grid; grid-template-columns: repeat(4,1fr); border-bottom: 1px solid var(--line); }
.mode-tab-button { min-height: 77px; padding: 12px; border: 0; border-right: 1px solid var(--line); background: #0b0e12; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; }
.mode-tab-button:last-child { border-right: 0; }
.mode-tab-button:hover, .mode-tab-button.is-active { color: #fff; background: rgba(214,49,61,.09); box-shadow: inset 0 -2px var(--red-hot); }
.mode-panel { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 510px; }
.mode-panel[hidden] { display: none; }
.mode-panel-media { min-height: 430px; overflow: hidden; }
.mode-panel-media img { width: 100%; height: 100%; object-fit: cover; animation: panelIn .6s var(--ease); }
.mode-panel-copy { display: flex; flex-direction: column; justify-content: center; padding: 54px; }
.mode-panel-copy h3 { margin: 0; font-size: clamp(42px, 4.5vw, 66px); font-weight: 600; letter-spacing: -.05em; line-height: .92; text-transform: uppercase; }
.mode-panel-copy p { margin: 24px 0 0; color: var(--text-soft); line-height: 1.8; }
.mode-rules { display: grid; gap: 10px; margin-top: 28px; }
.mode-rules span { display: flex; align-items: center; gap: 10px; color: #d9dcdf; font-size: 12px; text-transform: uppercase; }
.mode-rules span::before { content: "+"; color: var(--red-hot); }

.oath-layout { display: grid; grid-template-columns: .62fr 1.38fr; gap: 70px; align-items: start; }
.oath-copy { position: sticky; top: 165px; }
.oath-copy h2 { margin: 0; font-size: clamp(55px, 6vw, 88px); font-weight: 600; letter-spacing: -.055em; line-height: .9; text-transform: uppercase; }
.oath-copy p { margin: 27px 0 0; color: var(--text-soft); line-height: 1.82; }
.oath-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.oath-card { position: relative; min-height: 220px; overflow: hidden; padding: 25px; border: 1px solid var(--line); background: linear-gradient(145deg, var(--surface-2), var(--surface)); }
.oath-card::before { content: ""; position: absolute; right: -30px; top: -30px; width: 125px; height: 125px; border: 1px solid color-mix(in srgb, var(--oath-color) 35%, transparent); border-radius: 50%; box-shadow: inset 0 0 40px color-mix(in srgb, var(--oath-color) 10%, transparent); }
.oath-card::after { content: ""; position: absolute; right: 23px; top: 23px; width: 15px; height: 15px; border-radius: 50%; background: var(--oath-color); box-shadow: 0 0 20px var(--oath-color); }
.oath-card small { color: var(--oath-color); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.oath-card h3 { margin: 72px 0 10px; font-size: 24px; line-height: 1; text-transform: uppercase; }
.oath-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.progression-lane { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.progression-lane::before { content: ""; position: absolute; left: 0; right: 0; top: 25px; height: 1px; background: linear-gradient(90deg, var(--red-hot), var(--line) 55%, var(--line)); }
.progression-step { position: relative; padding: 65px 30px 0 0; }
.progression-step::before { content: attr(data-step); position: absolute; top: 0; left: 0; width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; background: var(--bg-soft); color: var(--red-hot); font-size: 11px; font-weight: 700; }
.progression-step h3 { margin: 0 0 13px; font-size: 22px; text-transform: uppercase; }
.progression-step p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.72; }

.arsenal-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 18px; }
.arsenal-main, .arsenal-side { position: relative; overflow: hidden; border: 1px solid var(--line); background: var(--surface); }
.arsenal-main { min-height: 650px; }
.arsenal-side { min-height: 315px; }
.arsenal-stack { display: grid; gap: 18px; }
.arsenal-main img, .arsenal-side img { width: 100%; height: 100%; object-fit: cover; }
.arsenal-main::after, .arsenal-side::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,5,7,.97), transparent 58%); }
.arsenal-content { position: absolute; z-index: 2; left: 30px; right: 30px; bottom: 29px; }
.arsenal-content h3 { margin: 0; font-size: 34px; line-height: .98; text-transform: uppercase; }
.arsenal-main .arsenal-content h3 { font-size: clamp(45px, 5vw, 74px); }
.arsenal-content p { max-width: 630px; margin: 13px 0 0; color: #cdd1d4; font-size: 14px; line-height: 1.7; }

/* News */
.news-list { padding: 80px 0 125px; }
.news-card { display: grid; grid-template-columns: minmax(420px, 1.08fr) minmax(330px, .92fr); min-height: 550px; overflow: hidden; border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow-lg); }
.news-image { position: relative; min-height: 480px; overflow: hidden; }
.news-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.news-card:hover .news-image img { transform: scale(1.028); }
.news-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 66%, var(--surface) 100%); }
.news-copy { display: flex; flex-direction: column; justify-content: center; padding: 52px; }
.news-copy h2 { margin: 17px 0 20px; font-size: clamp(42px, 4.7vw, 70px); font-weight: 600; letter-spacing: -.05em; line-height: .92; text-transform: uppercase; }
.news-copy p { margin: 0; color: var(--text-soft); line-height: 1.82; }
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 25px; }
.tag { padding: 6px 9px; border: 1px solid var(--line); color: #b9bec3; font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.news-empty-band { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 22px; padding: 24px 28px; border: 1px solid var(--line); background: rgba(255,255,255,.018); }
.news-empty-band p { margin: 0; color: var(--muted); }

/* Patch notes */
.patch-overview { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(340px,.65fr); gap: 20px; margin-bottom: 24px; }
.patch-current { padding: 42px; border: 1px solid var(--line); background: linear-gradient(135deg, rgba(214,49,61,.1), var(--surface) 42%); box-shadow: var(--shadow-sm); }
.patch-current .build { color: var(--red-hot); font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.patch-current h2 { margin: 17px 0 17px; font-size: clamp(45px, 5vw, 76px); font-weight: 600; letter-spacing: -.05em; line-height: .9; text-transform: uppercase; }
.patch-current p { max-width: 720px; margin: 0; color: var(--text-soft); line-height: 1.8; }
.patch-release { padding: 36px; border: 1px solid var(--line); background: var(--surface); }
.patch-release small { color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.patch-release strong { display: block; margin-top: 20px; color: var(--red-hot); font-size: 43px; line-height: .9; text-transform: uppercase; }
.patch-release span { display: block; margin-top: 16px; color: var(--text-soft); }
.patch-list { display: grid; gap: 12px; }
.patch-item { border: 1px solid var(--line); background: var(--surface); }
.patch-trigger { width: 100%; display: grid; grid-template-columns: 140px 1fr auto; gap: 25px; align-items: center; padding: 27px 30px; border: 0; background: transparent; text-align: left; cursor: pointer; }
.patch-trigger time { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.patch-trigger strong { font-size: 21px; text-transform: uppercase; }
.patch-trigger i { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid var(--line); font-style: normal; transition: transform .25s ease; }
.patch-item.is-open .patch-trigger i { transform: rotate(45deg); }
.patch-body { display: none; padding: 0 30px 32px 195px; }
.patch-item.is-open .patch-body { display: block; animation: panelIn .35s var(--ease); }
.patch-body h3 { margin: 28px 0 11px; color: var(--red-hot); font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }
.patch-body h3:first-child { margin-top: 0; }
.patch-body ul { margin: 0; padding-left: 18px; }
.patch-body li { margin: 8px 0; color: var(--text-soft); line-height: 1.7; }

/* Footer */
.site-footer { position: relative; padding: 70px 0 28px; border-top: 1px solid var(--line); background: #030406; }
.site-footer::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 15% 0%, rgba(214,49,61,.08), transparent 28%); pointer-events: none; }
.footer-main { position: relative; display: grid; grid-template-columns: 1.2fr .8fr .75fr; gap: 70px; }
.footer-brand { display: inline-flex; flex-direction: column; font-size: 29px; font-weight: 700; letter-spacing: .1em; line-height: .9; text-transform: uppercase; }
.footer-brand span { margin-top: 10px; color: var(--red-hot); font-size: 9px; letter-spacing: .45em; }
.footer-identity p, .footer-transmission p { max-width: 430px; margin: 23px 0 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.footer-label { display: block; margin-bottom: 19px; color: var(--faint); font-size: 9px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.footer-links a { color: #c6cacf; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.footer-links a:hover { color: var(--red-hot); }
.footer-transmission strong { display: flex; align-items: center; gap: 11px; font-size: 13px; letter-spacing: .07em; text-transform: uppercase; }
.footer-transmission i { width: 7px; height: 7px; border-radius: 50%; background: var(--red-hot); box-shadow: 0 0 15px var(--red-hot); animation: signalPulse 1.8s ease-in-out infinite; }
.footer-bottom { position: relative; display: flex; justify-content: space-between; gap: 30px; margin-top: 58px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.075); color: #626a72; font-size: 10px; letter-spacing: .07em; text-transform: uppercase; }

/* Reveal animation */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .75s var(--ease) var(--reveal-delay,0ms), transform .75s var(--ease) var(--reveal-delay,0ms); }
[data-reveal="left"] { transform: translateX(-35px); }
[data-reveal="right"] { transform: translateX(35px); }
[data-reveal].is-visible { opacity: 1; transform: translate(0); }

@keyframes signalPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .36; transform: scale(.72); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes scan { from { transform: translateY(-20vh); } to { transform: translateY(120vh); } }
@keyframes panelIn { from { opacity: 0; transform: scale(1.018); } to { opacity: 1; transform: scale(1); } }

@media (max-width: 1180px) {
  .wrap, .nav-inner { width: min(var(--max), calc(100% - 48px)); }
  .hero-grid, .game-hero-grid { grid-template-columns: minmax(0,1fr) 330px; gap: 45px; }
  .system-grid { grid-template-columns: 1fr 1fr; }
  .mode-ribbon { grid-template-columns: 1fr 1fr; }
  .mode-tile { min-height: 390px; }
  .game-opening, .oath-layout { gap: 55px; }
}

@media (max-width: 980px) {
  .site-nav, .site-nav.is-scrolled { height: 70px; }
  .nav-inner { gap: 15px; }
  .nav-toggle { display: block; }
  .nav-status { margin-left: auto; min-width: 0; }
  .nav-status small { display: none; }
  .nav-links {
    position: fixed;
    inset: 70px 0 auto;
    display: grid;
    gap: 0;
    padding: 16px 24px 28px;
    border-bottom: 1px solid var(--line);
    background: rgba(4,5,7,.98);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform .35s var(--ease), opacity .25s ease;
  }
  .nav-links.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 18px 3px; border-bottom: 1px solid rgba(255,255,255,.075); font-size: 14px; }
  .nav-links a::after { bottom: 8px; }
  .section { padding: 90px 0; }
  .section-head { grid-template-columns: 1fr; gap: 25px; }
  .home-hero, .game-hero { min-height: 820px; }
  .hero-grid, .game-hero-grid { grid-template-columns: 1fr; }
  .hero-intel, .game-spec-panel { display: none; }
  .scroll-cue { display: none; }
  .signal-strip-inner { grid-template-columns: 1fr 1fr; }
  .signal-strip-item:nth-child(3) { display: none; }
  .manifesto-grid, .game-opening { grid-template-columns: 1fr; gap: 48px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar-card { min-height: 270px; }
  .pillar-card h3 { margin-top: 55px; }
  .cinematic-panel { grid-template-columns: 1fr; }
  .cinematic-media { min-height: 430px; }
  .cinematic-media::after { background: linear-gradient(0deg, var(--surface), transparent 32%); }
  .cinematic-copy { padding: 44px; }
  .map-card { min-height: 520px; }
  .news-feature, .news-card { grid-template-columns: 1fr; }
  .news-feature-media, .news-image { min-height: 390px; }
  .news-feature-media::after, .news-image::after { background: linear-gradient(0deg, var(--surface), transparent 30%); }
  .game-jump-nav { top: 70px; }
  .map-switcher { grid-template-columns: 230px 1fr; }
  .mode-panel { grid-template-columns: 1fr; }
  .mode-panel-media { min-height: 360px; }
  .oath-layout { grid-template-columns: 1fr; }
  .oath-copy { position: static; }
  .progression-lane { grid-template-columns: 1fr 1fr; gap: 45px 0; }
  .progression-lane::before { display: none; }
  .arsenal-grid { grid-template-columns: 1fr; }
  .arsenal-main { min-height: 540px; }
  .arsenal-stack { grid-template-columns: 1fr 1fr; }
  .patch-overview { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-transmission { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .wrap, .wrap-narrow, .nav-inner { width: calc(100% - 30px); }
  .nav-status { display: none; }
  .brand { font-size: 19px; }
  .section { padding: 72px 0; }
  .section-title, .page-title { font-size: clamp(43px, 13.5vw, 68px); }
  .home-hero { min-height: 760px; padding: 135px 0 63px; }
  .game-hero { min-height: 780px; padding: 135px 0 62px; }
  .hero-backdrop, .game-hero-bg { background-position: 62% center; }
  .hero-title, .game-hero h1 { font-size: clamp(61px, 21vw, 104px); }
  .hero-title span, .game-hero h1 span { letter-spacing: .27em; }
  .hero-lead, .game-hero-lead { font-size: 16px; }
  .button-row { display: grid; }
  .button { width: 100%; }
  .signal-strip-inner { grid-template-columns: 1fr; }
  .signal-strip-item { min-height: 72px; padding: 13px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .signal-strip-item:nth-child(2) { border-bottom: 0; }
  .manifesto-copy h2 { font-size: clamp(44px, 14vw, 68px); }
  .manifesto-copy > p, .game-opening-copy > p { font-size: 16px; }
  .stat-row { grid-template-columns: 84px 1fr; }
  .cinematic-panel { min-height: auto; }
  .cinematic-media { min-height: 300px; }
  .cinematic-copy { padding: 30px 24px 34px; }
  .map-grid, .system-grid, .mode-ribbon { grid-template-columns: 1fr; }
  .map-card { min-height: 450px; }
  .map-card-content { padding: 27px 23px; }
  .mode-tile { min-height: 330px; }
  .mode-symbol { margin-bottom: 50px; }
  .news-feature-media, .news-image { min-height: 270px; }
  .news-feature-copy, .news-copy { padding: 29px 23px 34px; }
  .release-cta { padding: 95px 0; }
  .release-cta h2 { font-size: clamp(54px, 18vw, 90px); }
  .page-hero { min-height: 450px; padding: 130px 0 57px; }
  .page-hero p:last-child { font-size: 16px; }
  .game-jump-inner { width: 100%; }
  .full-bleed-feature { min-height: 680px; }
  .full-bleed-feature img { object-position: 65% center; }
  .full-bleed-content { padding: 90px 0 72px; }
  .map-switcher { display: block; min-height: 0; }
  .map-tabs { display: grid; grid-template-columns: 1fr 1fr; padding: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .map-tab-button { grid-template-columns: 1fr; gap: 3px; padding: 15px; border-right: 1px solid var(--line); }
  .map-tab-button .tab-index { display: none; }
  .map-panel { min-height: 580px; }
  .map-panel-content { left: 23px; right: 23px; bottom: 26px; }
  .mode-tab-list { grid-template-columns: 1fr 1fr; }
  .mode-tab-button:nth-child(2) { border-right: 0; }
  .mode-tab-button:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .mode-panel-media { min-height: 260px; }
  .mode-panel-copy { padding: 30px 23px 35px; }
  .oath-grid { grid-template-columns: 1fr; }
  .oath-card { min-height: 195px; }
  .progression-lane { grid-template-columns: 1fr; gap: 38px; }
  .arsenal-main { min-height: 470px; }
  .arsenal-stack { grid-template-columns: 1fr; }
  .arsenal-side { min-height: 330px; }
  .news-empty-band { align-items: flex-start; flex-direction: column; }
  .patch-current, .patch-release { padding: 28px 23px; }
  .patch-trigger { grid-template-columns: 1fr auto; gap: 12px; padding: 22px; }
  .patch-trigger time { grid-column: 1 / -1; }
  .patch-body { padding: 0 22px 27px; }
  .footer-main { grid-template-columns: 1fr; gap: 42px; }
  .footer-transmission { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* Final responsive safeguards */
.hero-copy,
.hero-grid > *,
.game-hero-grid > * {
  min-width: 0;
}

@media (max-width: 700px) {
  .hero-title,
  .game-hero h1 {
    max-width: 100%;
    font-size: clamp(52px, 16.5vw, 70px);
    letter-spacing: -.075em;
  }

  .hero-title span,
  .game-hero h1 span {
    font-size: .31em;
    letter-spacing: .24em;
  }

  .hero-lead,
  .game-hero-lead {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}


/* Intel archive and guide library */
.intel-hero .page-hero-content { max-width: 1050px; }
.archive-stats { display: flex; flex-wrap: wrap; gap: 1px; margin-top: 34px; }
.archive-stats div { min-width: 145px; padding: 18px 22px; border: 1px solid var(--line); background: rgba(6,8,11,.62); backdrop-filter: blur(12px); }
.archive-stats strong { display: block; font-size: 25px; line-height: 1; }
.archive-stats span { display: block; margin-top: 8px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.library-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 42px; padding: 22px; border: 1px solid var(--line); background: rgba(13,17,22,.76); box-shadow: var(--shadow-sm); }
.library-toolbar.compact { margin: 42px 0 28px; }
.library-search { flex: 1 1 420px; max-width: 640px; }
.library-search label { display: block; margin-bottom: 8px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.library-search input { width: 100%; height: 50px; padding: 0 16px; border: 1px solid var(--line); outline: 0; background: #080b0f; color: #fff; font-size: 14px; }
.library-search input:focus { border-color: var(--red-hot); box-shadow: 0 0 0 3px rgba(255,78,91,.08); }
.library-filters { display: flex; flex-wrap: wrap; gap: 7px; }
.library-filters button { min-height: 42px; padding: 0 16px; border: 1px solid var(--line); background: transparent; color: var(--muted); cursor: pointer; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.library-filters button:hover, .library-filters button.is-active { border-color: var(--red-hot); background: rgba(214,49,61,.12); color: #fff; }
.intel-feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 22px; }
.intel-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.intel-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow-sm); transition: transform .32s var(--ease), border-color .25s ease, box-shadow .32s ease; }
.intel-card:hover { transform: translateY(-5px); border-color: rgba(255,78,91,.4); box-shadow: var(--shadow-lg); }
.intel-card[hidden] { display: none !important; }
.intel-card-media { position: relative; display: block; min-height: 225px; overflow: hidden; background: #0b0e12; }
.intel-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,8,11,.72), transparent 48%); }
.intel-card-media img { width: 100%; height: 225px; object-fit: cover; transition: transform .7s var(--ease), filter .4s ease; }
.intel-card:hover .intel-card-media img { transform: scale(1.035); filter: saturate(1.08); }
.intel-card-copy { padding: 27px 26px 30px; }
.intel-card-copy h2 { margin: 12px 0 14px; font-size: 28px; line-height: 1.02; letter-spacing: -.035em; text-transform: uppercase; }
.intel-card-copy p { margin: 0 0 20px; color: var(--text-soft); font-size: 14px; line-height: 1.72; }
.intel-card-copy .text-link { margin-top: 23px; }
.intel-card-featured { display: grid; grid-template-columns: minmax(220px,.86fr) minmax(0,1.14fr); min-height: 390px; }
.intel-card-featured .intel-card-media { min-height: 100%; }
.intel-card-featured .intel-card-media img { height: 100%; min-height: 390px; }
.intel-card-featured .intel-card-copy { display: flex; flex-direction: column; justify-content: center; padding: 38px; }
.intel-card-featured .intel-card-copy h2 { font-size: clamp(31px,3.2vw,50px); }
.library-empty { margin-top: 22px; padding: 60px 30px; border: 1px dashed var(--line-strong); text-align: center; }
.library-empty strong, .library-empty span { display: block; }
.library-empty strong { font-size: 25px; text-transform: uppercase; }
.library-empty span { margin-top: 8px; color: var(--muted); }

.guide-hero { position: relative; min-height: 760px; display: flex; align-items: flex-end; overflow: hidden; padding: 165px 0 95px; border-bottom: 1px solid var(--line); }
.guide-hero-bg { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,5,7,.98) 0%, rgba(4,5,7,.78) 48%, rgba(4,5,7,.3) 78%), linear-gradient(0deg, var(--bg) 0%, transparent 50%), url('/images/posts/blog_one_reveal/img0195059540-reveal01.png') center/cover no-repeat; }
.guide-hero-grid { display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: 80px; align-items: end; }
.guide-hero h1 { max-width: 930px; margin: 0; font-size: clamp(64px,8vw,126px); font-weight: 600; letter-spacing: -.065em; line-height: .83; text-transform: uppercase; }
.guide-hero p:not(.eyebrow) { max-width: 740px; margin: 28px 0 0; color: #d1d5d9; font-size: 18px; line-height: 1.75; }
.guide-terminal { padding: 27px; border: 1px solid var(--line-strong); background: rgba(7,9,12,.78); backdrop-filter: blur(18px); box-shadow: var(--shadow-lg); }
.guide-terminal > span { color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.guide-terminal > strong { display: block; margin: 22px 0 13px; font-size: 76px; line-height: .8; }
.guide-terminal p { margin: 0 0 26px !important; color: var(--text-soft) !important; font-size: 13px !important; }
.guide-terminal > div { padding-top: 17px; border-top: 1px solid var(--line); color: #cfd3d7; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.guide-terminal i { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 15px var(--green); }
.guide-path { display: grid; grid-template-columns: repeat(4,1fr); margin-bottom: 30px; border: 1px solid var(--line); }
.guide-path a { min-height: 170px; padding: 24px; border-right: 1px solid var(--line); background: linear-gradient(145deg, rgba(255,255,255,.025), transparent); transition: background .25s ease; }
.guide-path a:last-child { border-right: 0; }
.guide-path a:hover { background: rgba(214,49,61,.09); }
.guide-path span, .guide-path small, .guide-path strong { display: block; }
.guide-path span { color: var(--red-hot); font-size: 11px; font-weight: 700; }
.guide-path strong { margin-top: 34px; font-size: 23px; text-transform: uppercase; }
.guide-path small { margin-top: 7px; color: var(--muted); }
.guide-callout { position: relative; padding: 120px 0; overflow: hidden; border-top: 1px solid var(--line); background: linear-gradient(90deg, rgba(5,7,9,.97), rgba(5,7,9,.7)), url('/images/veilbreak-dead-signal-hero.svg') center/cover no-repeat; }
.guide-callout h2 { max-width: 850px; margin: 0; font-size: clamp(58px,7vw,108px); line-height: .88; letter-spacing: -.055em; text-transform: uppercase; }
.guide-callout p { max-width: 650px; color: var(--text-soft); font-size: 17px; }
.guide-callout .button { margin-top: 20px; }
.home-intel-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 18px; }
.home-intel-grid a { min-height: 150px; padding: 23px; border: 1px solid var(--line); background: var(--surface); transition: transform .25s var(--ease), border-color .25s ease; }
.home-intel-grid a:hover { transform: translateY(-3px); border-color: var(--red-hot); }
.home-intel-grid span, .home-intel-grid strong, .home-intel-grid small { display: block; }
.home-intel-grid span { color: var(--red-hot); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.home-intel-grid strong { margin-top: 27px; font-size: 25px; line-height: 1; text-transform: uppercase; }
.home-intel-grid small { margin-top: 8px; color: var(--muted); }
.progression-guide-link { justify-content: center; margin-top: 45px; }

@media (max-width: 1180px) {
  .intel-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .intel-feature-row { grid-template-columns: 1fr; }
  .guide-path { grid-template-columns: 1fr 1fr; }
  .guide-path a:nth-child(2) { border-right: 0; }
  .guide-path a:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 980px) {
  .guide-hero { min-height: 720px; }
  .guide-hero-grid { grid-template-columns: 1fr; }
  .guide-terminal { display: none; }
  .library-toolbar { align-items: stretch; flex-direction: column; }
  .library-search { max-width: none; }
  .home-intel-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .archive-stats div { flex: 1 1 30%; min-width: 0; padding: 15px 12px; }
  .archive-stats strong { font-size: 21px; }
  .library-toolbar { padding: 15px; }
  .library-filters { display: grid; grid-template-columns: 1fr 1fr; }
  .intel-grid, .intel-feature-row { grid-template-columns: 1fr; }
  .intel-card-featured { display: block; }
  .intel-card-featured .intel-card-media, .intel-card-featured .intel-card-media img { min-height: 240px; height: 240px; }
  .intel-card-featured .intel-card-copy { padding: 27px 23px 30px; }
  .intel-card-media, .intel-card-media img { min-height: 220px; height: 220px; }
  .intel-card-copy { padding: 25px 22px 28px; }
  .guide-hero { min-height: 660px; padding: 135px 0 65px; }
  .guide-hero h1 { font-size: clamp(53px,15vw,76px); }
  .guide-hero p:not(.eyebrow) { font-size: 16px; }
  .guide-path { grid-template-columns: 1fr; }
  .guide-path a { min-height: 135px; border-right: 0; border-bottom: 1px solid var(--line); }
  .guide-path a:last-child { border-bottom: 0; }
  .guide-path strong { margin-top: 20px; }
  .guide-callout { padding: 88px 0; }
}

/* Threat index */
.threat-grid { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 12px; }
.threat-card { position: relative; min-height: 220px; overflow: hidden; padding: 24px; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(255,255,255,.03), transparent), var(--surface); transition: transform .28s var(--ease), border-color .25s ease; }
.threat-card::after { content: ""; position: absolute; right: -28px; bottom: -28px; width: 90px; height: 90px; border: 1px solid rgba(255,255,255,.06); transform: rotate(45deg); }
.threat-card:hover { transform: translateY(-4px); border-color: rgba(255,78,91,.45); }
.threat-card small { color: var(--red-hot); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.threat-card h3 { margin: 50px 0 10px; font-size: 24px; line-height: 1; text-transform: uppercase; }
.threat-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.threat-card-primary { grid-column: span 2; background: linear-gradient(120deg, rgba(214,49,61,.13), transparent 52%), var(--surface-2); }
.threat-card-primary h3 { font-size: 37px; }
.threat-guide-link { justify-content: center; margin-top: 38px; }
@media (max-width:1180px) { .threat-grid { grid-template-columns: repeat(3,minmax(0,1fr)); } }
@media (max-width:700px) { .threat-grid { grid-template-columns: 1fr; } .threat-card-primary { grid-column: auto; } .threat-card { min-height: 190px; } .threat-card h3 { margin-top: 37px; } }
