/* ===== ORDNANCE — ordnancefps.xyz ===== */

:root {
  --bg:        #0a0b0d;
  --bg-alt:    #0d0e11;
  --text:      #e8e6e2;
  --text-dim:  #b8b4ae;
  --text-mute: #8d8881;
  --text-faint:#6f6a64;
  --orange:    #ff6a1f;
  --orange-lt: #ffa06b;
  --orange-pale:#ffd0b2;
  --cyan:      #2ee6d6;
  --violet:    #b070e8;
  --red:       #e0263b;
  --line:      rgba(255,255,255,.08);
  --line-2:    rgba(255,255,255,.12);

  --display: 'Saira Condensed', 'Arial Narrow', sans-serif;
  --body:    Barlow, system-ui, -apple-system, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --pad-y: clamp(40px, 6vw, 88px);
  --pad-x: clamp(16px, 4vw, 48px);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 70px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-lt); }
::selection { background: var(--orange); color: var(--bg); }

img, video { max-width: 100%; height: auto; }

:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--orange); color: var(--bg); padding: 12px 20px;
  font-family: var(--display); font-weight: 900; letter-spacing: .14em; text-transform: uppercase;
}
.skip-link:focus { left: 0; color: var(--bg); }

@keyframes ordPulse { 0%,100% { opacity: .35 } 50% { opacity: 1 } }

/* ---------- shared shapes ---------- */
.notch-8   { clip-path: polygon(8px 0,  100% 0, 100% calc(100% - 8px),  calc(100% - 8px) 100%,  0 100%, 0 8px); }
.notch-11  { clip-path: polygon(11px 0, 100% 0, 100% calc(100% - 11px), calc(100% - 11px) 100%, 0 100%, 0 11px); }
.notch-12  { clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px); }
.notch-16  { clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px); }
.notch-18  { clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px); }
.notch-22  { clip-path: polygon(22px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 22px); }
.notch-24  { clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px); }

.wrap { max-width: 1280px; margin: 0 auto; padding: var(--pad-y) var(--pad-x); }

.sec-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 28px; }
.sec-head h2 {
  margin: 0; font-family: var(--display); font-weight: 900;
  font-size: clamp(30px, 5vw, 60px); text-transform: uppercase; line-height: .95;
}

.label {
  font-family: var(--mono); font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--text-mute);
}

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 28px;
  padding: 14px var(--pad-x);
  background: rgba(10,11,13,.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img { height: 26px; display: block; width: auto; }
.nav__links {
  display: flex; gap: clamp(12px, 2vw, 28px); margin-left: auto;
  font-family: var(--display); font-weight: 700; font-size: 14px;
  letter-spacing: .14em; text-transform: uppercase;
}
.nav__links a { color: var(--text-dim); white-space: nowrap; }
.nav__links a:hover { color: #fff; }
.nav__cta {
  font-family: var(--display); font-weight: 900; font-size: 14px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--bg); background: var(--orange); padding: 11px 20px;
  flex-shrink: 0; white-space: nowrap; transition: background .2s;
}
.nav__cta:hover { background: var(--orange-pale); color: var(--bg); }

/* menu button — hidden on desktop */
.nav__toggle {
  display: none; width: 42px; height: 42px; flex: 0 0 auto;
  align-items: center; justify-content: center;
  background: none; border: 1px solid rgba(255,255,255,.18);
  color: var(--text); cursor: pointer; padding: 0;
  transition: border-color .2s;
}
.nav__toggle:hover { border-color: var(--orange); }
.nav__burger, .nav__burger::before, .nav__burger::after {
  content: ''; display: block; width: 18px; height: 2px;
  background: currentColor; transition: transform .22s ease, opacity .18s ease;
}
.nav__burger::before { transform: translateY(-6px); }
.nav__burger::after  { transform: translateY(4px); }
.nav__toggle[aria-expanded="true"] { color: var(--orange); border-color: var(--orange); }
.nav__toggle[aria-expanded="true"] .nav__burger { background: transparent; }
.nav__toggle[aria-expanded="true"] .nav__burger::before { transform: translateY(0) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__burger::after  { transform: translateY(-2px) rotate(-45deg); }

@media (max-width: 1000px) {
  .nav { gap: 12px; }
  .nav__toggle { display: inline-flex; order: 3; }
  .nav__cta { margin-left: auto; order: 2; }

  .nav__links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; margin-left: 0;
    padding: 4px var(--pad-x) 14px;
    background: rgba(10,11,13,.97);
    -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    max-height: calc(100dvh - 100%); overflow-y: auto;
  }
  .nav__links[data-open="true"] { display: flex; }
  .nav__links a {
    padding: 15px 2px; border-top: 1px solid var(--line);
    font-size: 16px; letter-spacing: .16em;
  }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: min(86vh, 820px);
  display: grid; align-items: end;
  background-image: url('assets/hero.webp');
  background-size: cover; background-position: center 30%;
}
.hero__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,11,13,.72) 0%, rgba(10,11,13,.2) 38%, rgba(10,11,13,.88) 82%, #0a0b0d 100%);
}
.hero__scan {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(to bottom, rgba(0,0,0,.16) 0 1px, transparent 1px 3px);
  mix-blend-mode: multiply; opacity: .5;
}
.hero__status {
  position: absolute; top: clamp(20px, 3vw, 32px); right: var(--pad-x);
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--cyan);
}
.hero__dot {
  width: 7px; height: 7px; background: var(--cyan); border-radius: 50%;
  animation: ordPulse 1.8s infinite; flex-shrink: 0;
}
.hero__inner {
  position: relative; width: 100%;
  max-width: 1280px; margin: 0 auto;
  padding: clamp(40px, 7vw, 96px) var(--pad-x);
  text-align: center;
}
.hero__logo {
  width: min(660px, 82vw); display: block;
  margin: clamp(60px, 10vw, 150px) auto 0;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.65));
}
.hero__tagline {
  max-width: 660px; margin: 18px auto 0;
  font-size: clamp(16px, 1.6vw, 20px); line-height: 1.5; color: #fff;
  text-wrap: pretty;
}
.hero__buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 30px; }

.btn {
  font-family: var(--display);
  font-size: clamp(16px, 1.8vw, 20px);
  letter-spacing: .1em; text-transform: uppercase;
  padding: 16px 34px; display: inline-block; cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.btn--primary { font-weight: 900; color: var(--bg); background: var(--orange); border: 0; }
.btn--primary:hover { background: var(--orange-pale); color: var(--bg); }
.btn--ghost { font-weight: 800; color: var(--text); border: 1px solid rgba(255,255,255,.3); background: none; }
.btn--ghost:hover { border-color: var(--cyan); color: var(--cyan); }


/* ---------- teaser ---------- */
.teaser .sec-head { margin-bottom: 22px; }
.teaser__frame {
  position: relative; border: 1px solid var(--line-2); overflow: hidden; background: #050607;
}
.teaser__frame video { display: block; width: 100%; height: auto; }

/* ---------- operators ---------- */
.ops__intro { margin: 0 0 28px; color: var(--text-mute); max-width: 520px; }
.ops__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 18px; align-items: start; list-style: none; margin: 0; padding: 0;
}
.op {
  position: relative; width: 100%; text-align: left; cursor: pointer;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(165deg,#121417,#0a0b0d);
  color: inherit; font: inherit; padding: 0;
  transition: border-color .2s, transform .2s;
}
.op:hover { transform: translateY(-4px); }
.op[aria-pressed="true"] {
  border-color: var(--accent);
  background: linear-gradient(165deg,#171a1f,#0b0c0f);
}
.op__media {
  display: block; position: relative; aspect-ratio: 3 / 4; overflow: hidden;
  background: radial-gradient(60% 60% at 50% 40%, #191b1f, #0a0b0d);
}
.op__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  opacity: .62; transition: opacity .25s;
}
.op[aria-pressed="true"] .op__media img { opacity: 1; }
.op__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,11,13,.95) 4%, transparent 55%);
}
.op__body { display: block; padding: 0 18px 20px; margin-top: -46px; position: relative; }
.op__name {
  display: block; font-family: var(--display); font-weight: 900; font-size: 30px;
  text-transform: uppercase; line-height: 1; color: #fff;
}
.op__rule { display: block; height: 3px; width: 44px; background: var(--accent); margin: 10px 0 12px; }
.op__role { display: block; margin-bottom: 10px; }
.op__blurb { margin: 0; font-size: 14px; line-height: 1.5; color: var(--text-dim); }
.op__stats { display: grid; gap: 8px; margin-top: 16px; }
.op__stat { display: grid; grid-template-columns: 74px 1fr; gap: 10px; align-items: center; }
.op__stat > span:first-child {
  font-family: var(--mono); font-size: 9px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--text-faint);
}
.op__bar { height: 6px; background: rgba(255,255,255,.09); display: block; }
.op__bar i { display: block; height: 6px; background: rgba(255,255,255,.3); transition: background .25s; }
.op[aria-pressed="true"] .op__bar i { background: var(--accent); }

/* ---------- loadout ---------- */
.loadout {
  margin-top: clamp(24px, 4vw, 48px);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
}
.loadout__grid {
  max-width: 1280px; margin: 0 auto; padding: var(--pad-y) var(--pad-x);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(24px, 4vw, 56px); align-items: center;
}
.loadout .sec-head { gap: 14px; margin-bottom: 10px; }
.loadout .sec-head h2 { font-size: clamp(30px, 4.4vw, 56px); }
.loadout__copy { margin: 0 0 26px; color: var(--text-dim); font-size: 16px; line-height: 1.6; max-width: 480px; text-wrap: pretty; }
.kit { display: grid; gap: 2px; margin: 0; }
.kit__row {
  display: grid; grid-template-columns: 88px 1fr; gap: 16px;
  padding: 14px 0; border-top: 1px solid rgba(255,255,255,.09);
}
.kit__row dt {
  font-family: var(--mono); font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--orange); padding-top: 3px;
}
.kit__row dd { margin: 0; font-size: 15px; color: #cfcbc4; }
.loadout__shot { position: relative; border: 1px solid rgba(255,255,255,.14); overflow: hidden; }
.loadout__shot img { display: block; width: 100%; height: auto; }
.loadout__shot::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(46,230,214,.06), transparent 45%);
}

/* ---------- modes ---------- */
.modes__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 16px;
  list-style: none; margin: 0; padding: 0;
}
.mode {
  position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(160deg, #14161a, #0c0d10);
  transition: border-color .2s;
}
.mode__media { display: block; aspect-ratio: 2 / 1; overflow: hidden; background: #0a0b0d; }
.mode__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center; display: block;
  transition: transform .35s ease;
}
.mode:hover .mode__media img { transform: scale(1.04); }
.mode__body { padding: 24px 26px 26px; }
.mode:hover { border-color: rgba(255,106,31,.6); }
.mode__tag { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; color: var(--cyan); margin-bottom: 14px; }
.mode__name {
  font-family: var(--display); font-weight: 900; font-size: 28px;
  text-transform: uppercase; line-height: 1; color: #fff;
}
.mode__blurb { margin: 12px 0 0; font-size: 14px; line-height: 1.6; color: #9b968f; }
.mode__squad {
  margin-top: 20px; font-family: var(--mono); font-size: 10px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--text-faint);
}

/* ---------- season ---------- */
.season { border-top: 1px solid var(--line); background: var(--bg-alt); padding: var(--pad-y) var(--pad-x); }
.season__inner { max-width: 1280px; margin: 0 auto; }
.season__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); gap: 2px;
  list-style: none; margin: 0; padding: 0;
}
.phase { padding: 22px 20px; border-top: 3px solid var(--accent); background: rgba(255,255,255,.02); }
.phase__when { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); }
.phase__title {
  font-family: var(--display); font-weight: 800; font-size: 22px;
  text-transform: uppercase; margin-top: 10px; color: #fff;
}
.phase__blurb { margin: 10px 0 0; font-size: 13px; line-height: 1.55; color: var(--text-mute); }

/* ---------- enlist ---------- */
.enlist {
  position: relative; overflow: hidden;
  background-image: url('assets/hero.webp');
  background-size: cover; background-position: center 60%;
}
.enlist::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, #0a0b0d 0%, rgba(10,11,13,.86) 40%, rgba(10,11,13,.94) 100%);
}
.enlist__inner {
  position: relative; padding: clamp(56px, 8vw, 110px) var(--pad-x);
  max-width: 820px; margin: 0 auto; text-align: center;
}
.enlist__kicker {
  font-family: var(--mono); font-size: 11px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 18px;
}
.enlist h2 {
  margin: 0; font-family: var(--display); font-weight: 900;
  font-size: clamp(34px, 7vw, 82px); text-transform: uppercase; line-height: .9;
}
.enlist__form { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.enlist__input {
  flex: 1 1 260px; max-width: 340px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.2);
  color: #fff; padding: 15px 18px;
  font-family: var(--mono); font-size: 13px; outline: none;
}
.enlist__input::placeholder { color: var(--text-faint); }
.enlist__input:focus { border-color: var(--cyan); }
.enlist__btn {
  font-family: var(--display); font-weight: 900; font-size: 17px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--bg); background: var(--orange); border: 0;
  padding: 15px 32px; cursor: pointer; transition: background .2s;
}
.enlist__btn:hover:not(:disabled) { background: var(--orange-pale); }
.enlist__btn:disabled { opacity: .7; cursor: default; }
.enlist__msg {
  min-height: 22px; margin: 16px 0 0;
  font-family: var(--mono); font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--cyan);
}
.enlist__msg[data-state="error"] { color: var(--orange-lt); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 32px var(--pad-x);
  display: flex; flex-wrap: wrap; gap: 18px;
  align-items: center; justify-content: space-between;
  max-width: 1280px; margin: 0 auto;
}
.footer img { height: 20px; width: auto; opacity: .75; }
.footer__social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.18);
  color: #cfcbc4; transition: border-color .2s, color .2s;
}
.footer__social:hover { border-color: var(--orange); color: var(--orange); }
.footer__copy {
  font-family: var(--mono); font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--text-faint); margin-left: auto;
}

/* ---------- war chest ---------- */
@keyframes wcFloat  { 0%,100% { transform: translateY(-8px) } 50% { transform: translateY(8px) } }
@keyframes wcGlow   { 0%,100% { opacity: .45 } 50% { opacity: .85 } }
@keyframes wcFlash  { 0% { opacity:0; transform:scale(.5) } 2% { opacity:1; transform:scale(1.25) } 7% { opacity:.25; transform:scale(.8) } 11%,100% { opacity:0; transform:scale(.5) } }
@keyframes wcTracer {
  0%,9% { transform: rotate(12deg) translateX(30%) scaleX(.25); opacity: 0 }
  10%   { transform: rotate(12deg) translateX(20%) scaleX(.35); opacity: 1 }
  18%   { transform: rotate(12deg) translateX(-40%) scaleX(1); opacity: 1 }
  70%   { opacity: 1 }
  100%  { transform: rotate(12deg) translateX(-540%) scaleX(1); opacity: 0 }
}

.warchest {
  position: relative; overflow: hidden; background: var(--bg-alt);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.warchest::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(70% 60% at 78% 45%, rgba(255,176,42,.14), transparent 62%);
}
.warchest::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(to bottom, rgba(0,0,0,.14) 0 1px, transparent 1px 3px);
  mix-blend-mode: multiply; opacity: .45;
}
.warchest__grid {
  position: relative; max-width: 1280px; margin: 0 auto;
  padding: clamp(48px, 7vw, 100px) var(--pad-x);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: clamp(28px, 4vw, 64px); align-items: center;
}
.warchest__eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--text-mute); margin-bottom: 10px;
}
.warchest h2 {
  margin: 0; font-family: var(--display); font-weight: 900;
  font-size: clamp(34px, 5.4vw, 72px); text-transform: uppercase;
  line-height: .9; color: #fff;
}
.warchest__rule { height: 3px; width: 76px; background: linear-gradient(90deg, #ffb02a, var(--orange)); margin: 22px 0; }
.warchest__lead {
  margin: 0 0 14px; max-width: 520px;
  font-size: clamp(15px, 1.4vw, 17px); line-height: 1.6; color: #cfcbc4; text-wrap: pretty;
}
.warchest__lead--dim { margin-bottom: 30px; color: #9b968f; }

.pillars { display: grid; gap: 2px; margin: 0 0 34px; }
.pillar {
  display: grid; grid-template-columns: 108px 1fr; gap: 18px;
  align-items: baseline; padding: 15px 0; border-top: 1px solid rgba(255,255,255,.09);
}
.pillar dt {
  font-family: var(--display); font-weight: 900; font-size: 20px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--accent);
}
.pillar dd { margin: 0; font-size: 15px; line-height: 1.5; color: var(--text-dim); }

.btn--gold {
  font-weight: 900; font-size: clamp(16px, 1.7vw, 19px); letter-spacing: .12em;
  color: var(--bg); background: linear-gradient(100deg, #ffb02a, var(--orange));
  border: 0; transition: filter .2s;
}
.btn--gold:hover { filter: brightness(1.18); color: var(--bg); }

.warchest__art { position: relative; display: grid; place-items: center; min-height: 280px; }
.warchest__glow {
  position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,176,42,.35), transparent 68%);
  filter: blur(28px); animation: wcGlow 5s ease-in-out infinite;
}
.warchest__float { position: relative; width: 100%; max-width: 620px; animation: wcFloat 7s ease-in-out infinite; }
.warchest__img { position: relative; }
.warchest__img img { width: 100%; display: block; filter: drop-shadow(0 34px 48px rgba(0,0,0,.7)); }
.wc-flash {
  position: absolute; left: 10.4%; top: 9.3%; width: 9%; aspect-ratio: 1;
  margin: -4.5% 0 0 -4.5%; transform-origin: center;
  background: radial-gradient(circle, #fff 0%, #ffd98a 22%, rgba(255,150,30,.85) 45%, rgba(255,90,10,0) 72%);
  animation: wcFlash 1.4s linear infinite; pointer-events: none;
}
.wc-tracer {
  position: absolute; left: 1.4%; top: 9%; width: 9%; height: 1.6%;
  transform-origin: right center;
  background: linear-gradient(270deg, rgba(255,225,150,0), #ffd98a 35%, #fff 70%);
  border-radius: 2px; box-shadow: 0 0 10px rgba(255,170,60,.9);
  animation: wcTracer 1.4s linear infinite; pointer-events: none;
}
@media (prefers-reduced-motion: reduce) { .wc-flash, .wc-tracer { display: none } }

/* ============ INTEL PAGE ============ */
.nav__links a.is-active { color: var(--orange); }
.nav__links a.is-active:hover { color: var(--orange-lt); }

.intel-hero {
  position: relative;
  background-image: url('assets/hero.webp');
  background-size: cover; background-position: center 35%;
}
.intel-hero__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,11,13,.9) 0%, rgba(10,11,13,.72) 40%, rgba(10,11,13,.95) 84%, #0a0b0d 100%);
}
.intel-hero__scan {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(to bottom, rgba(0,0,0,.16) 0 1px, transparent 1px 3px);
  mix-blend-mode: multiply; opacity: .5;
}
.intel-hero__inner {
  position: relative; max-width: 1280px; margin: 0 auto;
  padding: clamp(56px, 9vw, 132px) var(--pad-x) clamp(26px, 3.4vw, 48px);
}
.intel-chip {
  display: flex; align-items: center; gap: 10px; margin-bottom: 22px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--cyan);
}
.intel-chip span:first-child {
  width: 7px; height: 7px; background: var(--cyan); border-radius: 50%;
  animation: ordPulse 1.8s infinite; flex: 0 0 auto;
}
.intel-hero h1 {
  margin: 0; max-width: 14ch;
  font-family: var(--display); font-weight: 900;
  font-size: clamp(40px, 7.5vw, 104px); text-transform: uppercase;
  line-height: .88; color: #fff; text-wrap: balance;
}
.intel-lede {
  margin: 30px 0 0; max-width: 620px;
  font-size: clamp(15px, 1.4vw, 17px); line-height: 1.65; color: #cfcbc4; text-wrap: pretty;
}

.band { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band > .wrap, .intel-sec { max-width: 1280px; margin: 0 auto; padding: clamp(44px, 6vw, 88px) var(--pad-x); }
.eyebrow-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--text-mute); margin-bottom: 10px;
}

/* 01 — shooter first */
.cols3 {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(20px, 3vw, 44px); align-items: start;
}
.cols3 p { margin: 0; font-size: 16px; line-height: 1.7; text-wrap: pretty; }
.cols3 p:nth-child(1) { color: #cfcbc4; }
.cols3 p:nth-child(2) { color: var(--text-dim); }
.cols3 p:nth-child(3) { color: #9b968f; }
.pullquote { margin-top: clamp(28px, 4vw, 48px); border-left: 3px solid var(--orange); padding: 6px 0 6px 22px; }
.pullquote p {
  margin: 0; font-family: var(--display); font-weight: 800;
  font-size: clamp(22px, 3.2vw, 38px); line-height: 1.08; text-transform: uppercase; color: #fff;
}

/* 02 — pillar cards */
.icards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr)); gap: 16px; list-style: none; margin: 0; padding: 0; }
.icard {
  padding: 26px; border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(160deg, #14161a, #0c0d10); transition: border-color .2s;
}
.icard:hover { border-color: rgba(255,106,31,.6); }
.icard__n { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; color: var(--text-faint); margin-bottom: 14px; }
.icard__k { font-family: var(--display); font-weight: 900; font-size: 30px; text-transform: uppercase; line-height: 1; color: var(--accent); }
.icard__rule { height: 3px; width: 38px; background: var(--accent); margin: 12px 0 14px; }
.icard p { margin: 0; font-size: 14px; line-height: 1.6; color: #9b968f; }

/* 03 — war chest (calm variant) */
.intel-wc { position: relative; overflow: hidden; }
.intel-wc::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(70% 60% at 80% 40%, rgba(255,176,42,.13), transparent 62%);
}
.intel-wc__grid {
  position: relative; max-width: 1280px; margin: 0 auto;
  padding: clamp(48px, 7vw, 100px) var(--pad-x);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: clamp(28px, 4vw, 64px); align-items: center;
}
.intel-wc__art { position: relative; display: grid; place-items: center; min-height: 260px; }
.intel-wc__art img {
  position: relative; width: 100%; max-width: 600px; display: block;
  animation: wcFloat 7s ease-in-out infinite;
  filter: drop-shadow(0 34px 48px rgba(0,0,0,.7));
}
.intel-wc__glow {
  position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,176,42,.35), transparent 68%);
  filter: blur(28px); animation: wcGlow 5s ease-in-out infinite;
}
.footnote { margin: 0; max-width: 520px; font-size: 14px; line-height: 1.6; color: var(--text-mute); }

/* chips */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; padding: 9px 13px; }
.chip--gold   { color: #ffd8a0; border: 1px solid rgba(255,176,42,.35); background: rgba(255,176,42,.07); }
.chip--violet { color: #d9c6f2; border: 1px solid rgba(176,112,232,.35); background: rgba(176,112,232,.08); padding: 8px 12px; letter-spacing: .12em; }


/* two-column text layout */
.cols2 {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(24px, 4vw, 56px); align-items: start;
}
.cols2 > div > p { text-wrap: pretty; }
.body-lg { margin: 0 0 16px; font-size: 16px; line-height: 1.7; color: #cfcbc4; }
.body-lg--mid { color: var(--text-dim); }
.body-lg--dim { color: #9b968f; margin-bottom: 0; }

.minilabel { font-family: var(--mono); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 14px; }
.minilabel--violet { color: var(--violet); }


/* square-bullet rows */
.bullets { display: grid; gap: 0; list-style: none; margin: 0; padding: 0; }
.bullet {
  display: grid; grid-template-columns: 14px 1fr; gap: 12px; align-items: baseline;
  padding: 11px 0; border-top: 1px solid rgba(255,255,255,.09);
}
.bullet i { width: 6px; height: 6px; background: var(--accent, var(--violet)); display: block; }
.bullet span { font-size: 15px; line-height: 1.5; color: #cfcbc4; }





/* 09 — ecosystem flow */
.flow { display: grid; gap: 0; list-style: none; margin: 0; padding: 0; }
.flowrow {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: clamp(12px, 3vw, 48px); align-items: baseline;
  padding: clamp(20px, 3vw, 30px) 0; border-top: 1px solid rgba(255,255,255,.1);
}
.flowrow__head { display: flex; align-items: baseline; gap: 16px; }
.flowrow__n { font-family: var(--mono); font-size: 12px; letter-spacing: .18em; color: var(--accent); flex: 0 0 auto; }
.flowrow__k { font-family: var(--display); font-weight: 900; font-size: clamp(22px, 2.6vw, 32px); text-transform: uppercase; line-height: 1; color: #fff; }
.flowrow p { margin: 0; font-size: 15px; line-height: 1.65; color: #9b968f; max-width: 620px; }

/* 10 — transparency */
.transparency {
  position: relative; overflow: hidden;
  background-image: url('assets/hero.webp');
  background-size: cover; background-position: center 70%;
}
.transparency::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, #0a0b0d 0%, rgba(10,11,13,.9) 35%, rgba(10,11,13,.95) 100%);
}
.transparency__inner { position: relative; max-width: 1280px; margin: 0 auto; padding: clamp(48px, 7vw, 100px) var(--pad-x); }
.dashgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr)); gap: 2px; margin-bottom: 26px; list-style: none; padding: 0; }
.dashrow { display: flex; align-items: baseline; gap: 12px; padding: 14px 16px 14px 0; border-top: 1px solid rgba(255,255,255,.1); }
.dashrow i { width: 6px; height: 6px; background: var(--cyan); display: block; flex: 0 0 auto; }
.dashrow span { font-size: 15px; line-height: 1.45; color: #cfcbc4; }
.closing {
  margin: 0; max-width: 700px; font-family: var(--display); font-weight: 800;
  font-size: clamp(18px, 2.2vw, 26px); line-height: 1.2; text-transform: uppercase; color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .intel-wc__art img, .intel-wc__glow { animation: none; }
}

/* first section sits closer to the hero */
.intel-sec--first { padding-top: clamp(10px, 1.3vw, 18px); }

/* 04 — war chest dossier sheet */
.dossier {
  position: relative;
  background-color: #d9cdb0;
  background-image:
    radial-gradient(120% 80% at 12% 0%, rgba(255,250,235,.55), transparent 60%),
    radial-gradient(90% 70% at 88% 100%, rgba(120,95,55,.3), transparent 65%),
    radial-gradient(circle at 78% 22%, rgba(150,112,58,.22), transparent 16%),
    radial-gradient(circle at 18% 82%, rgba(140,104,52,.18), transparent 14%),
    repeating-linear-gradient(94deg, rgba(120,98,60,.055) 0 2px, transparent 2px 5px),
    repeating-linear-gradient(2deg, rgba(120,98,60,.05) 0 1px, transparent 1px 4px);
  box-shadow: 0 30px 60px rgba(0,0,0,.65), inset 0 0 70px rgba(112,86,44,.28);
  padding: clamp(22px, 3.4vw, 42px);
  clip-path: polygon(0 6px, 6px 0, calc(100% - 14px) 2px, 100% 10px, calc(100% - 3px) calc(100% - 8px), calc(100% - 12px) 100%, 10px calc(100% - 3px), 2px calc(100% - 12px));
}
.dossier__head {
  display: flex; flex-wrap: wrap; align-items: flex-end; gap: 12px;
  border-bottom: 2px solid rgba(40,32,20,.7); padding-bottom: 14px; margin-bottom: 6px;
}
.dossier__dept {
  font-family: 'Courier Prime', var(--mono); font-weight: 700; font-size: 11px;
  letter-spacing: .26em; text-transform: uppercase; color: #5c4a2e;
}
.dossier__form {
  font-family: var(--display); font-weight: 900; font-size: clamp(22px, 3vw, 34px);
  letter-spacing: .04em; text-transform: uppercase; color: #241d12; margin-top: 4px;
}
.dossier__meta {
  margin-left: auto; text-align: right;
  font-family: 'Courier Prime', var(--mono); font-size: 11px; line-height: 1.7; color: #4a3b24;
}
.dossier__meta strong { letter-spacing: .1em; }
.dossier__schedule {
  font-family: 'Courier Prime', var(--mono); font-size: 12px;
  letter-spacing: .06em; color: #6b5737; margin-bottom: 20px;
}
.dossier__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr));
  gap: 0; list-style: none; margin: 0; padding: 0;
}
.dossier__col {
  padding: 18px clamp(12px, 1.6vw, 20px) 22px;
  border-left: 1px dashed rgba(66,53,32,.45);
}
.dossier__tag { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.dossier__code {
  font-family: 'Courier Prime', var(--mono); font-weight: 700; font-size: 11px;
  color: #8c2f1d; border: 1px solid rgba(140,47,29,.6); padding: 2px 6px;
}
.dossier__hair { flex: 1; height: 1px; background: rgba(66,53,32,.35); }
.dossier__title {
  font-family: var(--display); font-weight: 900; font-size: 21px;
  text-transform: uppercase; line-height: 1.05; color: #241d12; letter-spacing: .02em;
}
.dossier__accent { height: 2px; width: 34px; background: #8c2f1d; margin: 9px 0 11px; }
.dossier__col p {
  margin: 0; font-family: 'Courier Prime', var(--mono);
  font-size: 12.5px; line-height: 1.65; color: #3d3120;
}
.dossier__foot {
  display: flex; flex-wrap: wrap; align-items: flex-end; gap: 18px;
  margin-top: 22px; padding-top: 16px; border-top: 2px solid rgba(40,32,20,.7);
}
.dossier__note {
  font-family: 'Courier Prime', var(--mono); font-size: 11px;
  line-height: 1.8; color: #5c4a2e; max-width: 520px;
}
.dossier__stamp {
  margin-left: auto; transform: rotate(-7deg);
  border: 3px solid rgba(140,47,29,.65); color: rgba(140,47,29,.8);
  padding: 8px 16px; font-family: var(--display); font-weight: 900;
  font-size: clamp(18px, 2.4vw, 28px); letter-spacing: .16em;
  text-transform: uppercase; opacity: .82;
}

.intel-shot { position: relative; border: 1px solid var(--line-2); overflow: hidden; background: #050607; }
.intel-shot img { display: block; width: 100%; }

/* ---------- RWA section ---------- */
@keyframes rwaFloat { 0%,100% { transform: translateY(-9px) } 50% { transform: translateY(9px) } }
@keyframes rwaGlow  { 0%,100% { opacity: .4 } 50% { opacity: .85 } }

.rwa { position: relative; background: var(--bg); overflow: hidden; }
.rwa__bloom {
  position: absolute; inset: 0;
  background: radial-gradient(65% 55% at 84% 18%, rgba(46,230,214,.10), transparent 62%);
}
.rwa__mesh {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(46,230,214,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,230,214,.05) 1px, transparent 1px);
  background-size: 68px 68px;
  -webkit-mask-image: radial-gradient(80% 70% at 70% 30%, #000, transparent 75%);
  mask-image: radial-gradient(80% 70% at 70% 30%, #000, transparent 75%);
}
.rwa__inner {
  position: relative; max-width: 1280px; margin: 0 auto;
  padding: clamp(44px, 6vw, 92px) var(--pad-x);
}
.rwa__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr));
  gap: clamp(26px, 4vw, 60px); align-items: center;
}
.rwa h2 {
  margin: 0 0 clamp(22px, 3vw, 34px);
  font-family: var(--display); font-weight: 900;
  font-size: clamp(34px, 5.2vw, 68px); text-transform: uppercase;
  line-height: .9; color: #fff; max-width: 14ch; text-wrap: balance;
}
.rwa__lead {
  margin: 0 0 22px; font-family: var(--display); font-weight: 700;
  font-size: clamp(20px, 2.4vw, 30px); line-height: 1.2; color: #fff; text-wrap: pretty;
}
.rwa__body { margin: 0 0 16px; font-size: 16px; line-height: 1.7; color: var(--text-dim); max-width: 540px; text-wrap: pretty; }
.rwa__body--dim { margin-bottom: 0; color: #9b968f; }

.rwa__art { position: relative; display: grid; place-items: center; min-height: 260px; }
.rwa__glow {
  position: absolute; width: 76%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(126,217,87,.30), rgba(46,230,214,.10) 45%, transparent 70%);
  filter: blur(30px); animation: rwaGlow 5s ease-in-out infinite;
}
.rwa__art img {
  position: relative; width: 100%; max-width: 560px; display: block;
  animation: rwaFloat 7.5s ease-in-out infinite;
  filter: drop-shadow(0 34px 48px rgba(0,0,0,.7));
}
@media (prefers-reduced-motion: reduce) {
  .rwa__art img, .rwa__glow { animation: none !important; }
}

/* red notice bar */
.notice {
  margin-top: clamp(28px, 4vw, 46px);
  display: grid; grid-template-columns: 4px 1fr; gap: clamp(16px, 2vw, 26px);
  align-items: stretch;
  border: 1px solid rgba(224,38,59,.4);
  background: linear-gradient(100deg, rgba(224,38,59,.10), rgba(224,38,59,.03));
}
.notice__bar { background: var(--red); }
.notice__body { padding: 22px clamp(18px, 3vw, 30px) 24px 0; }
.notice__label {
  font-family: var(--mono); font-size: 10px; letter-spacing: .26em;
  text-transform: uppercase; color: #ff7a88; margin-bottom: 10px;
}
.notice p {
  margin: 0; font-size: clamp(15px, 1.5vw, 18px); line-height: 1.6;
  color: #fff; max-width: 920px; text-wrap: pretty;
}

/* ---------- FAQ ---------- */
.faq__list { display: grid; gap: 12px; }
.faq__item {
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(160deg, #14161a, #0c0d10);
  transition: border-color .2s;
}
.faq__item[open] { border-color: rgba(255,106,31,.55); }
.faq__item:hover { border-color: rgba(255,106,31,.35); }
.faq__q {
  display: flex; align-items: center; gap: 18px;
  padding: 20px clamp(18px, 2.4vw, 26px);
  cursor: pointer; list-style: none;
  font-family: var(--display); font-weight: 900;
  font-size: clamp(17px, 1.9vw, 22px); letter-spacing: .04em;
  text-transform: uppercase; line-height: 1.15; color: #fff;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: ''; flex: 0 0 auto; margin-left: auto;
  width: 13px; height: 13px;
  background:
    linear-gradient(var(--orange), var(--orange)) center/13px 2px no-repeat,
    linear-gradient(var(--orange), var(--orange)) center/2px 13px no-repeat;
  transition: transform .25s ease;
}
.faq__item[open] .faq__q::after { transform: rotate(135deg); }
.faq__q:hover { color: var(--orange-pale); }
.faq__a {
  margin: 0; padding: 0 clamp(18px, 2.4vw, 26px) 22px;
  font-size: 15px; line-height: 1.65; color: var(--text-dim);
  max-width: 880px; text-wrap: pretty;
}

/* 10 — disclosure register sheet */
.dossier--register {
  background-image:
    radial-gradient(120% 80% at 10% 0%, rgba(255,250,235,.55), transparent 58%),
    radial-gradient(90% 70% at 92% 100%, rgba(120,95,55,.32), transparent 64%),
    radial-gradient(circle at 70% 16%, rgba(150,112,58,.2), transparent 15%),
    radial-gradient(circle at 24% 88%, rgba(140,104,52,.18), transparent 13%),
    repeating-linear-gradient(93deg, rgba(120,98,60,.05) 0 2px, transparent 2px 6px),
    repeating-linear-gradient(3deg, rgba(120,98,60,.045) 0 1px, transparent 1px 5px);
  box-shadow: 0 30px 60px rgba(0,0,0,.7), inset 0 0 80px rgba(112,86,44,.3);
  clip-path: polygon(0 7px, 8px 0, calc(100% - 15px) 3px, 100% 11px, calc(100% - 3px) calc(100% - 9px), calc(100% - 13px) 100%, 11px calc(100% - 3px), 2px calc(100% - 13px));
}
.dossier--register .dossier__head { margin-bottom: 0; }
.dossier--register .dossier__schedule { margin: 16px 0 4px; }

.register {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 0 clamp(18px, 3vw, 44px); list-style: none; margin: 0; padding: 0;
}
.register__row {
  display: grid; grid-template-columns: 30px 26px 1fr; gap: 10px; align-items: center;
  padding: 11px 0; border-bottom: 1px dotted rgba(66,53,32,.5);
}
.register__code { font-family: 'Courier Prime', var(--mono); font-weight: 700; font-size: 11px; color: #6b5737; }
.register__check {
  display: grid; place-items: center; width: 17px; height: 17px;
  border: 1.5px solid rgba(66,53,32,.75);
  font-family: var(--display); font-weight: 900; font-size: 15px; line-height: 1; color: #8c2f1d;
}
.register__text { font-family: 'Courier Prime', var(--mono); font-size: 13px; line-height: 1.4; color: #3d3120; }

.dossier__foot--sign { gap: 20px; margin-top: 24px; }
.standing { max-width: 560px; }
.standing__label { font-family: 'Courier Prime', var(--mono); font-size: 11px; letter-spacing: .16em; color: #6b5737; margin-bottom: 8px; }
.standing p {
  margin: 0; font-family: var(--display); font-weight: 900;
  font-size: clamp(18px, 2.2vw, 27px); line-height: 1.12; text-transform: uppercase; color: #241d12;
}
.sigwrap { margin-left: auto; display: flex; align-items: flex-end; gap: 22px; }
.sigblock { font-family: 'Courier Prime', var(--mono); font-size: 11px; color: #4a3b24; }
.sigblock__line { width: 150px; border-bottom: 1px solid rgba(66,53,32,.8); height: 26px; }
.sigblock__label { margin-top: 5px; letter-spacing: .1em; }
.dossier__stamp--record {
  margin-left: 0; transform: rotate(-8deg);
  border-color: rgba(140,47,29,.6); color: rgba(140,47,29,.78);
  padding: 7px 15px; font-size: clamp(16px, 2.2vw, 25px); opacity: 1;
}

/* ---------- Season 01 campaign chart ---------- */
@keyframes mapDash { to { stroke-dashoffset: -1000 } }

.campaign-map__heading { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px 14px; margin-bottom: 18px; }
.campaign-map__heading h2 {
  margin: 0; font-family: var(--display); font-weight: 900;
  font-size: clamp(28px, 5vw, 56px); text-transform: uppercase; line-height: .95; color: #fff;
}
.campaign-map__meta {
  font-family: var(--mono); font-size: 10px; letter-spacing: .24em;
  text-transform: uppercase; color: var(--text-mute); margin-left: auto;
}

.campaign-map__viewport { position: relative; width: 100%; overflow: hidden; }
.campaign-map__board {
  position: absolute; top: 0; left: 0; width: 1200px; height: 700px;
  transform-origin: top left;
  background-color: #d7c9a6;
  background-image:
    radial-gradient(120% 90% at 15% 0%, rgba(255,250,232,.6), transparent 58%),
    radial-gradient(90% 80% at 90% 100%, rgba(112,86,44,.36), transparent 62%),
    radial-gradient(circle at 72% 18%, rgba(150,112,58,.26), transparent 15%),
    radial-gradient(circle at 22% 78%, rgba(140,104,52,.22), transparent 13%),
    radial-gradient(circle at 46% 55%, rgba(128,96,48,.16), transparent 22%),
    repeating-linear-gradient(93deg, rgba(120,98,60,.05) 0 2px, transparent 2px 6px),
    repeating-linear-gradient(3deg, rgba(120,98,60,.045) 0 1px, transparent 1px 5px);
  box-shadow: inset 0 0 90px rgba(96,72,36,.45), 0 26px 60px rgba(0,0,0,.7);
  clip-path: polygon(0 8px, 9px 0, calc(100% - 16px) 3px, 100% 12px, calc(100% - 4px) calc(100% - 10px), calc(100% - 14px) 100%, 12px calc(100% - 4px), 3px calc(100% - 14px));
}
.campaign-map__drawing { position: absolute; inset: 0; display: block; }
.campaign-map__route { animation: mapDash 26s linear infinite; }

.campaign-map__titleblock { position: absolute; left: 58px; top: 52px; max-width: 420px; }
.campaign-map__titleblock div {
  font-family: 'Courier Prime', var(--mono); font-weight: 700; font-size: 11px;
  letter-spacing: .28em; text-transform: uppercase; color: #6b5737;
}
.campaign-map__titleblock strong {
  display: block; margin-top: 4px;
  font-family: var(--display); font-weight: 900; font-size: 46px;
  line-height: .92; letter-spacing: .02em; text-transform: uppercase; color: #241d12;
}

.campaign-map__missions { list-style: none; margin: 0; padding: 0; }
.campaign-mission {
  position: absolute; transform: rotate(var(--rot, 0deg));
  background: rgba(255,250,232,.5);
  border: 1px solid rgba(66,53,32,.55);
  padding: 14px 16px;
  box-shadow: 3px 5px 0 rgba(74,58,34,.18);
}
.campaign-mission__meta { display: flex; align-items: center; gap: 8px; font-family: 'Courier Prime', var(--mono); font-weight: 700; font-size: 11px; }
.campaign-mission__meta span { color: #fff; background: #8c2f1d; padding: 2px 7px; }
.campaign-mission__meta time { letter-spacing: .16em; text-transform: uppercase; color: #8c2f1d; }
.campaign-mission h3 {
  margin: 8px 0 0; font-family: var(--display); font-weight: 900;
  font-size: 26px; text-transform: uppercase; line-height: 1; color: #241d12;
}
.campaign-mission p {
  margin: 8px 0 0; font-family: 'Courier Prime', var(--mono);
  font-size: 12.5px; line-height: 1.55; color: #3d3120;
}

.campaign-map__stamp {
  position: absolute; left: 338px; top: 600px; transform: rotate(-6deg);
  border: 3px solid rgba(140,47,29,.6); color: rgba(140,47,29,.78);
  padding: 6px 14px; font-family: var(--display); font-weight: 900;
  font-size: 22px; letter-spacing: .16em; text-transform: uppercase;
}

.campaign-map__legend {
  display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; margin-top: 18px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--text-faint);
}
.campaign-map__legend-cross { color: #8c2f1d; }
.campaign-map__legend-route { width: 26px; height: 0; border-top: 2px dashed #8c2f1d; }
.campaign-map__legend-note { margin-left: auto; }
