:root {
  color-scheme: dark;
  --black: #020202;
  --night: #050606;
  --iron: #0a0b0b;
  --stone: #101314;
  --storm: #1f2b31;
  --steel: #87949a;
  --ash: #595f60;
  --bone: #efe7d6;
  --muted: #b9b0a2;
  --subtle: #81786a;
  --gold: #b8893a;
  --gold-bright: #d8b66d;
  --gold-dark: #5f4118;
  --gold-pale: #f4df9d;
  --ember: #9a4524;
  --line: rgba(184, 137, 58, .42);
  --cold-line: rgba(135, 148, 154, .18);
  --shadow: 0 40px 120px rgba(0, 0, 0, .74);
  --radius: 6px;
  --max: 1180px;
  --serif: "Cinzel Decorative", Cinzel, "Trajan Pro", Georgia, "Times New Roman", serif;
  --hero-serif: "Cormorant Garamond", "Libre Baskerville", Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  background: var(--black);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  color: var(--bone);
  background:
    radial-gradient(circle at 50% -10rem, rgba(135, 148, 154, .16), transparent 32rem),
    linear-gradient(180deg, #020202, #060707 36%, #020202 100%);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
}

body::before {
  opacity: .42;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .72), transparent 42%, rgba(0, 0, 0, .7)),
    repeating-linear-gradient(112deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 22px);
}

body::after {
  opacity: .55;
  background:
    radial-gradient(circle at 70% 10%, rgba(135, 148, 154, .18), transparent 20rem),
    radial-gradient(circle at 18% 28%, rgba(184, 137, 58, .1), transparent 18rem),
    radial-gradient(circle at 50% 50%, transparent, rgba(0, 0, 0, .72) 52rem);
}

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

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: .75rem 1rem;
  color: #080604;
  background: var(--gold-bright);
  font-weight: 900;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(184, 137, 58, .24);
  background: rgba(2, 2, 2, .88);
  backdrop-filter: blur(18px);
}

.nav {
  position: relative;
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
}

.brand {
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(184, 137, 58, .18));
}

.header-logo {
  width: clamp(168px, 24vw, 255px);
  height: auto;
  max-height: 68px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(184, 137, 58, .18));
}

.brand span {
  display: grid;
  gap: .08rem;
}

.brand strong,
.site-footer strong {
  font-family: var(--serif);
  font-size: clamp(1rem, 3.8vw, 1.45rem);
  font-weight: 900;
  letter-spacing: .03em;
  line-height: 1;
  text-transform: uppercase;
}

.brand strong,
.site-footer strong,
h1,
h2,
h3,
.section-kicker,
.eyebrow,
.division-label,
.briefing-tile span {
  color: var(--gold-bright);
  background: linear-gradient(180deg, var(--gold-pale) 0%, var(--gold-bright) 28%, var(--gold) 58%, #7a541e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 1px 0 rgba(255, 238, 175, .22), 0 10px 28px rgba(0, 0, 0, .72), 0 0 18px rgba(184, 137, 58, .12);
}

@supports (-webkit-text-fill-color: transparent) {
  .brand strong,
  .site-footer strong,
  h1,
  h2,
  h3,
  .section-kicker,
  .eyebrow,
  .division-label,
  .briefing-tile span {
    -webkit-text-fill-color: transparent;
  }
}

.brand em {
  color: var(--gold-bright);
  font-style: normal;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.05rem;
  font-family: var(--serif);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mobile-nav-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  min-height: 44px;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: .55rem;
  border: 1px solid rgba(216, 182, 109, .42);
  border-radius: var(--radius);
  color: var(--gold-bright);
  background:
    linear-gradient(145deg, rgba(10, 9, 7, .92), rgba(2, 2, 2, .92)),
    radial-gradient(circle at 50% 0, rgba(184, 137, 58, .13), transparent 5rem);
  box-shadow: inset 0 1px 0 rgba(244, 223, 157, .08), 0 14px 30px rgba(0, 0, 0, .42);
}

.mobile-nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-pale), var(--gold));
  box-shadow: 0 0 10px rgba(216, 182, 109, .24);
  transition: transform .2s ease, opacity .2s ease;
}

.mobile-nav-toggle span + span {
  margin-top: 5px;
}

.site-header.is-mobile-menu-open .mobile-nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-mobile-menu-open .mobile-nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-mobile-menu-open .mobile-nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-links a,
.footer-links a {
  opacity: .82;
}

.nav-links a {
  position: relative;
  padding: .4rem 0;
}

.nav-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: .55rem 0;
}

.nav-menu > a {
  padding: 0;
}

.nav-menu::after {
  position: absolute;
  left: -1rem;
  right: -1rem;
  top: 100%;
  z-index: 1;
  height: 1rem;
  content: "";
}

.submenu {
  position: absolute;
  left: 50%;
  top: calc(100% + .62rem);
  z-index: 2;
  display: grid;
  min-width: 155px;
  padding: .65rem .75rem;
  transform: translate(-50%, .22rem);
  border: 1px solid rgba(216, 182, 109, .32);
  border-radius: var(--radius);
  opacity: 0;
  pointer-events: none;
  background:
    linear-gradient(145deg, rgba(10, 9, 7, .98), rgba(2, 2, 2, .98)),
    radial-gradient(circle at 50% 0, rgba(184, 137, 58, .1), transparent 9rem);
  box-shadow: 0 20px 52px rgba(0, 0, 0, .72), inset 0 1px 0 rgba(244, 223, 157, .05);
  transition: opacity .16s ease, transform .16s ease;
}

.nav-menu:hover .submenu,
.nav-menu:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.submenu a {
  white-space: nowrap;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: .05rem;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  transition: transform .18s ease;
}

.nav-links a:hover,
.footer-links a:hover,
.nav-links a.is-active,
.nav-links a[aria-current="page"] {
  opacity: 1;
}

.nav-links a:hover::after,
.nav-links a.is-active::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta,
.button,
button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: .9rem 1.15rem;
  border: 1px solid rgba(230, 190, 112, .58);
  border-radius: var(--radius);
  color: #110c05;
  background:
    linear-gradient(180deg, rgba(255, 230, 160, .22), transparent 34%),
    linear-gradient(180deg, #cda354, #9b6f28 60%, #684819);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), 0 18px 44px rgba(0, 0, 0, .42);
  font: inherit;
  font-family: var(--serif);
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-cta {
  min-height: 42px;
  padding: .7rem .9rem;
  font-size: .68rem;
}

.button.secondary {
  color: var(--gold-bright);
  background: rgba(0, 0, 0, .38);
  box-shadow: inset 0 0 22px rgba(184, 137, 58, .08);
}

.button:hover,
button:hover,
.nav-cta:hover {
  filter: brightness(1.08);
}

button:disabled {
  cursor: progress;
  opacity: .72;
}

.hero,
.page-hero,
.section,
.section-tight,
.article {
  position: relative;
}

.hero-cinematic {
  min-height: calc(100svh - 74px);
  overflow: hidden;
  isolation: isolate;
}

.page-cinematic {
  min-height: clamp(360px, 56svh, 560px);
  overflow: hidden;
  isolation: isolate;
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: -4;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.88) contrast(1.05) brightness(.94);
}

.hero-cinematic::before,
.hero-cinematic::after,
.page-cinematic::before,
.page-cinematic::after,
.page-hero::before,
.chamber::before,
.remnant-summons::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.hero-cinematic::before,
.page-cinematic::before {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(2, 2, 2, .74), rgba(2, 2, 2, .18) 48%, rgba(2, 2, 2, .48)),
    linear-gradient(180deg, rgba(2, 2, 2, .02), rgba(2, 2, 2, .3) 68%, #020202 98%);
}

.hero-cinematic::after,
.page-cinematic::after {
  z-index: -2;
  opacity: .44;
  background:
    radial-gradient(circle at 68% 18%, rgba(191, 205, 212, .16), transparent 18rem),
    radial-gradient(circle at 35% 58%, rgba(184, 137, 58, .1), transparent 14rem),
    repeating-linear-gradient(105deg, rgba(255, 255, 255, .02) 0 1px, transparent 1px 24px);
}

.hero-stage {
  display: grid;
  min-height: calc(100svh - 74px);
  align-content: center;
  gap: 2rem;
  padding: 4.6rem 0;
}

.page-cinematic .hero-stage {
  min-height: clamp(360px, 56svh, 560px);
  align-content: center;
  padding: clamp(2.65rem, 6vh, 4.25rem) 0;
}

.hero-copy {
  max-width: 820px;
}

.eyebrow,
.section-kicker,
.article-list span {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 900;
  letter-spacing: .035em;
  text-transform: uppercase;
  text-shadow: 0 20px 60px rgba(0, 0, 0, .88);
}

h1 {
  max-width: 960px;
  font-size: clamp(2.35rem, 6.2vw, 4.2rem);
}

.hero h1,
.page-hero h1 {
  font-family: var(--hero-serif);
  font-weight: 800;
  letter-spacing: .02em;
  line-height: .96;
}

.hero-cinematic h1 {
  max-width: 820px;
  font-size: clamp(3rem, 6.6vw, 5.8rem);
  letter-spacing: .01em;
}

h2 {
  max-width: 940px;
  font-size: clamp(1.65rem, 5.8vw, 2.72rem);
  line-height: 1.08;
}

h3 {
  font-family: var(--serif);
  font-size: clamp(1.08rem, 4vw, 1.34rem);
  font-weight: 900;
  letter-spacing: .055em;
  line-height: 1.08;
  text-transform: uppercase;
}

.lead,
.section-copy {
  max-width: 760px;
  color: #d5cec1;
  font-size: clamp(1.03rem, 4vw, 1.22rem);
}

.lead {
  margin: 1.15rem 0 0;
  max-width: 680px;
  color: #cfc5b3;
  font-size: clamp(.98rem, 2.4vw, 1.08rem);
  line-height: 1.82;
  letter-spacing: .01em;
  text-shadow: 0 8px 28px rgba(0, 0, 0, .78);
}

.section-copy {
  margin: 1rem 0 0;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin: 1.4rem 0 0;
}

.meta-pill {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: .38rem .7rem;
  border: 1px solid rgba(184, 137, 58, .38);
  border-radius: 999px;
  color: var(--bone);
  background: rgba(0, 0, 0, .46);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.panel,
.card,
.article-list a,
.legal-note,
.visual-card,
.briefing-tile {
  border: 1px solid var(--cold-line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(12, 13, 13, .95), rgba(3, 3, 3, .96)),
    radial-gradient(circle at 50% 0, rgba(184, 137, 58, .08), transparent 22rem);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .04);
}

.panel.accent,
.capture.panel {
  border-color: var(--line);
}

.watchpost {
  position: relative;
  overflow: hidden;
  max-width: 430px;
  padding: 1.55rem 1.35rem 1.3rem;
  border-color: rgba(216, 182, 109, .5);
  border-radius: calc(var(--radius) * 2);
  background:
    linear-gradient(145deg, rgba(9, 9, 8, .82), rgba(2, 2, 2, .76)),
    radial-gradient(circle at 50% 0, rgba(184, 137, 58, .12), transparent 16rem);
  box-shadow:
    0 42px 110px rgba(0, 0, 0, .76),
    0 0 42px rgba(184, 137, 58, .1),
    0 0 0 1px rgba(216, 182, 109, .08),
    inset 0 1px 0 rgba(244, 223, 157, .1),
    inset 0 0 40px rgba(0, 0, 0, .38);
  backdrop-filter: blur(8px);
}

.watchpost::before,
.visual-card::before,
.briefing-tile::before {
  display: block;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(244, 223, 157, .7), rgba(184, 137, 58, .38), transparent);
}

.watchpost::after {
  position: absolute;
  inset: 7px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(216, 182, 109, .1);
  border-radius: calc((var(--radius) * 2) - 2px);
  box-shadow: inset 0 0 22px rgba(184, 137, 58, .055);
}

.capture h2 {
  margin-top: .35rem;
  font-size: clamp(1.25rem, 4.2vw, 1.62rem);
  line-height: 1.08;
}

.capture p {
  margin: .75rem 0 1rem;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.55;
}

.email-form {
  display: grid;
  gap: .8rem;
}

.email-form label {
  color: var(--steel);
  font-size: .76rem;
  font-weight: 900;
  font-family: var(--serif);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.email-row {
  display: grid;
  gap: .7rem;
}

input[type="email"] {
  width: 100%;
  min-height: 56px;
  padding: 1rem;
  border: 1px solid rgba(184, 137, 58, .46);
  border-radius: var(--radius);
  color: var(--bone);
  background: rgba(0, 0, 0, .62);
  font-family: var(--sans);
  font-size: .98rem;
  letter-spacing: .01em;
}

.watchpost .email-row {
  grid-template-columns: 1fr;
}

.watchpost .email-row button {
  width: 100%;
}

input[type="email"]:focus {
  outline: 2px solid rgba(216, 182, 109, .74);
  outline-offset: 2px;
}

.form-message {
  min-height: 1.4rem;
  margin: 0;
  color: var(--steel);
  font-size: .9rem;
}

.form-message.error {
  color: #f0a19b;
}

.form-message.success {
  color: #b7d9c0;
}

.fine-print {
  color: var(--subtle);
  font-size: .78rem;
}

.form-benefits {
  display: grid;
  gap: .46rem;
  margin: .2rem 0 0;
  padding: .78rem 0 0;
  border-top: 1px solid rgba(184, 137, 58, .3);
  list-style: none;
}

.form-benefits li {
  position: relative;
  min-height: 1.2rem;
  padding-left: 1.38rem;
  color: #e0d5c2;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .018em;
  line-height: 1.34;
}

.form-benefits li::before {
  position: absolute;
  left: 0;
  top: .18rem;
  display: grid;
  width: .72rem;
  height: .72rem;
  place-items: center;
  border: 1px solid rgba(216, 182, 109, .48);
  border-radius: 2px;
  color: var(--gold-pale);
  background: rgba(184, 137, 58, .08);
  content: "";
  font-size: .58rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 0 12px rgba(184, 137, 58, .14);
}

.form-benefits li::after {
  position: absolute;
  left: .22rem;
  top: .39rem;
  width: .28rem;
  height: .28rem;
  content: "";
  background: var(--gold-bright);
  box-shadow: 0 0 10px rgba(216, 182, 109, .28);
}

.social-actions {
  display: grid;
  gap: .75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(184, 137, 58, .28);
}

.social-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .78rem .9rem;
  border: 1px solid rgba(216, 182, 109, .5);
  border-radius: var(--radius);
  color: var(--gold-bright);
  background: rgba(0, 0, 0, .44);
  box-shadow: inset 0 0 20px rgba(184, 137, 58, .08);
  font-family: var(--serif);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.social-icon-placeholder {
  display: inline-grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  border: 1px solid rgba(216, 182, 109, .54);
  border-radius: 50%;
  color: var(--gold-pale);
  font-size: .62rem;
}

.recruitment-section {
  overflow: hidden;
  padding: 4rem 0;
  border-top: 1px solid rgba(184, 137, 58, .18);
  border-bottom: 1px solid rgba(184, 137, 58, .16);
  background:
    linear-gradient(180deg, rgba(2, 2, 2, .95), rgba(8, 9, 9, .98)),
    radial-gradient(circle at 20% 20%, rgba(184, 137, 58, .08), transparent 22rem),
    radial-gradient(circle at 80% 10%, rgba(135, 148, 154, .08), transparent 22rem);
}

.recruitment-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

.recruitment-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  min-height: 100%;
  padding: 1.25rem;
  border: 1px solid rgba(216, 182, 109, .44);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(13, 12, 10, .96), rgba(3, 3, 3, .98)),
    radial-gradient(circle at 18% 0, rgba(184, 137, 58, .13), transparent 18rem);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .04);
}

.recruitment-card::before {
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(244, 223, 157, .72), transparent);
}

.recruitment-seal {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(216, 182, 109, .52);
  border-radius: 50%;
  color: var(--gold-pale);
  background: rgba(0, 0, 0, .42);
  box-shadow: inset 0 0 20px rgba(184, 137, 58, .08);
  font-family: var(--serif);
  font-weight: 800;
}

.recruitment-seal img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  filter: brightness(1.14) sepia(1) saturate(1.8) hue-rotate(354deg) drop-shadow(0 0 12px rgba(184, 137, 58, .18));
  opacity: .92;
}

.recruitment-card p {
  margin: .6rem 0 1rem;
  color: var(--muted);
}

.recruitment-button {
  min-height: 46px;
  padding: .75rem 1rem;
}

.section {
  padding: clamp(2.75rem, 6vw, 3.75rem) 0;
  border-top: 1px solid rgba(184, 137, 58, .12);
}

.section-tight {
  padding: clamp(2rem, 4.8vw, 2.75rem) 0;
  border-top: 1px solid rgba(184, 137, 58, .12);
}

.atmospheric,
.storm-veil,
.final-gathering {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(2, 2, 2, .92), rgba(8, 9, 9, .96)),
    radial-gradient(circle at 75% 15%, rgba(135, 148, 154, .1), transparent 22rem),
    radial-gradient(circle at 18% 28%, rgba(184, 137, 58, .08), transparent 18rem);
}

.storm-veil::before,
.atmospheric::before,
.final-gathering::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: .38;
  background:
    linear-gradient(90deg, transparent, rgba(135, 148, 154, .08), transparent),
    repeating-linear-gradient(105deg, rgba(255, 255, 255, .03) 0 1px, transparent 1px 24px);
}

.chamber {
  overflow: hidden;
  border-top: 1px solid rgba(184, 137, 58, .18);
  border-bottom: 1px solid rgba(184, 137, 58, .12);
  background:
    linear-gradient(180deg, rgba(2, 2, 2, .92), rgba(8, 9, 9, .96)),
    radial-gradient(circle at 50% 0, rgba(135, 148, 154, .08), transparent 32rem);
}

.chamber::before {
  opacity: .48;
  background:
    radial-gradient(circle at 78% 12%, rgba(184, 137, 58, .08), transparent 18rem),
    repeating-linear-gradient(90deg, rgba(184, 137, 58, .08) 0 1px, transparent 1px 14rem);
}

.chamber-heading {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.chamber-heading::after {
  width: min(280px, 62vw);
  height: 16px;
  margin-top: 1.25rem;
  content: "";
  background:
    linear-gradient(90deg, transparent, rgba(184, 137, 58, .7), transparent) center/100% 1px no-repeat,
    radial-gradient(circle at 50% 50%, rgba(216, 182, 109, .72) 0 3px, transparent 4px);
}

.visual-card-grid,
.briefing-strip,
.cards,
.briefing-grid,
.archive-grid,
.oath-grid,
.grid {
  display: grid;
  gap: 1rem;
}

.visual-card-grid {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}

.visual-card {
  overflow: hidden;
  min-height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.visual-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: saturate(.72) brightness(.78) contrast(1.08);
}

.visual-card div {
  padding: 1rem;
}

.visual-card .card-image {
  order: 2;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: contain;
  background: rgba(0, 0, 0, .34);
}

.dossier-body {
  order: 1;
  border-bottom: 1px solid rgba(184, 137, 58, .22);
}

.dossier-heading {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
}

.dossier-heading > div {
  min-width: 0;
  padding: 0;
}

.visual-card img.card-icon,
.card-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  max-width: 36px;
  max-height: 36px;
  aspect-ratio: 1;
  margin: .05rem 0 0;
  border: 1px solid rgba(216, 182, 109, .44);
  border-radius: 50%;
  background: #030303;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .52), 0 0 0 3px rgba(3, 3, 3, .72);
  object-fit: cover;
  filter: saturate(.85) brightness(.9) contrast(1.08);
}

.division-label {
  display: block;
  margin: 0 0 .45rem;
  font-size: .66rem;
  font-weight: 900;
  font-family: var(--serif);
  letter-spacing: .11em;
  text-transform: uppercase;
}

.visual-card p,
.briefing-tile span,
.card p,
.article-list p,
.archive-item p,
.oath-item p {
  color: var(--muted);
}

.archetype-card {
  background:
    linear-gradient(180deg, rgba(9, 9, 8, .98), rgba(2, 2, 2, .99)),
    radial-gradient(circle at 50% 12%, rgba(216, 182, 109, .12), transparent 13rem),
    radial-gradient(circle at 50% 55%, rgba(135, 148, 154, .08), transparent 17rem);
  border-color: rgba(184, 137, 58, .32);
  box-shadow: 0 24px 76px rgba(0, 0, 0, .7), inset 0 1px 0 rgba(244, 223, 157, .04);
}

.archetype-card .dossier-body {
  display: grid;
  justify-items: center;
  min-height: 160px;
  padding: 1.02rem .82rem .92rem;
  border-bottom-color: rgba(184, 137, 58, .28);
  text-align: center;
}

.archetype-card .dossier-heading {
  display: grid;
  justify-items: center;
  width: 100%;
  gap: .42rem;
}

.archetype-card .dossier-heading > div {
  display: grid;
  justify-items: center;
  width: 100%;
  padding: 0;
}

.archetype-card .division-label {
  margin: 0;
  font-size: .58rem;
  letter-spacing: .135em;
  text-align: center;
}

.archetype-card h3 {
  width: 100%;
  font-size: clamp(.92rem, 1.08vw, 1.12rem);
  letter-spacing: .055em;
  line-height: 1.08;
  text-align: center;
  white-space: nowrap;
}

.archetype-card p {
  max-width: 23ch;
  margin: .36rem auto 0;
  color: #ddd7cc;
  font-size: .75rem;
  line-height: 1.38;
  letter-spacing: .065em;
  text-align: center;
  text-transform: uppercase;
}

.archetype-card .archetype-image-frame {
  position: relative;
  order: 2;
  overflow: hidden;
  width: 100%;
  margin-top: auto;
  padding: 0;
  border-top: 1px solid rgba(184, 137, 58, .24);
  background: #020202;
}

.archetype-card .archetype-image-frame::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .7) 56%, rgba(0, 0, 0, .92));
}

.archetype-card .archetype-image-frame .card-image {
  display: block;
  order: initial;
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: rgba(0, 0, 0, .38);
  filter: saturate(.78) brightness(.84) contrast(1.1);
}

.archetype-card .archetype-image-frame .card-icon {
  position: absolute;
  left: 50%;
  bottom: .78rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  max-width: 40px;
  max-height: 40px;
  margin: 0;
  transform: translateX(-50%);
  border-color: rgba(216, 182, 109, .46);
  background: rgba(2, 2, 2, .76);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .68), 0 0 0 3px rgba(3, 3, 3, .7), 0 0 22px rgba(184, 137, 58, .13);
}

.enemy-card {
  background:
    linear-gradient(180deg, rgba(8, 7, 6, .98), rgba(2, 2, 2, .99)),
    radial-gradient(circle at 50% 12%, rgba(184, 137, 58, .1), transparent 13rem),
    radial-gradient(circle at 50% 50%, rgba(154, 69, 36, .11), transparent 18rem);
  border-color: rgba(184, 137, 58, .34);
  box-shadow: 0 26px 82px rgba(0, 0, 0, .72), inset 0 1px 0 rgba(244, 223, 157, .045);
}

.enemy-card .dossier-body {
  display: grid;
  justify-items: center;
  min-height: 178px;
  padding: 1.05rem .85rem .9rem;
  border-bottom-color: rgba(184, 137, 58, .28);
  text-align: center;
}

.enemy-card .dossier-heading {
  display: grid;
  justify-items: center;
  gap: .5rem;
  width: 100%;
}

.enemy-card .dossier-heading > div {
  display: grid;
  justify-items: center;
  width: 100%;
  padding: 0;
}

.enemy-card .card-icon {
  width: 42px;
  height: 42px;
  max-width: 42px;
  max-height: 42px;
  margin: 0 auto;
  border-color: rgba(216, 182, 109, .34);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .62), 0 0 0 3px rgba(32, 8, 4, .72), 0 0 22px rgba(184, 137, 58, .1);
}

.enemy-card .division-label {
  margin: 0;
  font-size: .58rem;
  letter-spacing: .13em;
  text-align: center;
}

.enemy-card h3 {
  width: 100%;
  font-size: clamp(.92rem, 1.1vw, 1.12rem);
  letter-spacing: .04em;
  line-height: 1.08;
  text-align: center;
  white-space: nowrap;
}

.enemy-card p {
  max-width: 22ch;
  margin: .36rem auto 0;
  color: #ddd7cc;
  font-size: .75rem;
  line-height: 1.38;
  letter-spacing: .065em;
  text-align: center;
  text-transform: uppercase;
}

.enemy-card .enemy-image-frame {
  position: relative;
  order: 2;
  overflow: hidden;
  width: 100%;
  margin-top: auto;
  padding: 0;
  border-top: 1px solid rgba(184, 137, 58, .24);
  background: #020202;
}

.enemy-card .enemy-image-frame::after {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .76) 58%, rgba(0, 0, 0, .94));
}

.enemy-card .enemy-image-frame .card-image {
  display: block;
  order: initial;
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: rgba(0, 0, 0, .38);
  filter: saturate(.76) brightness(.82) contrast(1.08);
}

.philosophy-link {
  position: absolute;
  left: 50%;
  bottom: .78rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 0;
  padding: .48rem .78rem;
  transform: translateX(-50%);
  border: 1px solid rgba(216, 182, 109, .54);
  border-radius: var(--radius);
  color: var(--gold-bright);
  background: rgba(0, 0, 0, .62);
  box-shadow: inset 0 0 14px rgba(184, 137, 58, .08), 0 10px 28px rgba(0, 0, 0, .72);
  font-family: var(--serif);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.philosophy-link:hover {
  border-color: rgba(244, 223, 157, .7);
}

.is-watchman {
  border-color: rgba(216, 182, 109, .72);
  background:
    linear-gradient(145deg, rgba(18, 15, 10, .96), rgba(3, 3, 3, .97)),
    radial-gradient(circle at 50% 10%, rgba(216, 182, 109, .18), transparent 18rem);
  box-shadow: 0 26px 80px rgba(0, 0, 0, .72), 0 0 0 1px rgba(216, 182, 109, .18), inset 0 1px 0 rgba(255, 255, 255, .06);
}

.is-watchman img {
  filter: saturate(.82) brightness(.88) contrast(1.12);
}

.artifact-section,
.war-room {
  overflow: hidden;
  background:
    linear-gradient(180deg, #030303, #070808 45%, #020202),
    radial-gradient(circle at 20% 20%, rgba(184, 137, 58, .08), transparent 22rem);
}

.global-cta-section {
  overflow: hidden;
  padding-block: 3.4rem;
  background:
    linear-gradient(180deg, rgba(2, 2, 2, .96), rgba(6, 7, 7, .98)),
    radial-gradient(circle at 72% 18%, rgba(184, 137, 58, .1), transparent 20rem),
    radial-gradient(circle at 18% 60%, rgba(135, 148, 154, .08), transparent 22rem);
}

.global-cta-card {
  display: grid;
  justify-items: center;
  max-width: 920px;
  margin-inline: auto;
  padding: clamp(1.45rem, 3vw, 2.2rem);
  text-align: center;
  border-color: rgba(216, 182, 109, .46);
  background:
    linear-gradient(145deg, rgba(9, 9, 8, .9), rgba(2, 2, 2, .88)),
    radial-gradient(circle at 50% 0, rgba(184, 137, 58, .12), transparent 20rem);
  box-shadow:
    0 34px 95px rgba(0, 0, 0, .72),
    0 0 34px rgba(184, 137, 58, .08),
    inset 0 1px 0 rgba(244, 223, 157, .08);
}

.global-cta-card h2,
.global-cta-card p {
  margin-inline: auto;
}

.global-cta-card h2 {
  max-width: 780px;
}

.global-cta-card > p:not(.section-kicker) {
  max-width: 680px;
  margin: .85rem auto 1.15rem;
  color: #d0c6b7;
  font-size: .98rem;
  line-height: 1.62;
}

.global-cta-card .email-form {
  width: min(100%, 720px);
  margin-top: .2rem;
}

.global-cta-card .email-row {
  width: 100%;
}

.global-cta-card .form-message {
  text-align: center;
}

.artifact-grid,
.two-col {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.mission-battle-section .two-col {
  align-items: start;
}

.artifact-cover {
  max-width: 430px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.artifact-cover img {
  width: 100%;
}

.list {
  display: grid;
  gap: .72rem;
  padding: 0;
  margin: 1.5rem 0 1.8rem;
  list-style: none;
}

.list li {
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
  color: var(--muted);
}

.briefing-strip {
  margin-top: 2rem;
}

.briefing-tile {
  overflow: hidden;
}

.briefing-tile img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(.72) brightness(.8);
}

.briefing-tile span {
  display: block;
  padding: 1rem 1rem .35rem;
  color: var(--bone);
  font-family: var(--serif);
  font-weight: 900;
  letter-spacing: .07em;
  text-align: center;
  text-transform: uppercase;
}

.briefing-tile p {
  max-width: 31ch;
  margin: 0 auto;
  padding: 0 1rem 1.1rem;
  color: #d8d0c2;
  font-size: .88rem;
  line-height: 1.48;
  text-align: center;
}

.center-action {
  margin: 2rem 0 0;
  text-align: center;
}

.remnant-summons {
  display: grid;
  min-height: 620px;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid rgba(184, 137, 58, .18);
}

.remnant-summons > img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) brightness(.6);
}

.remnant-summons::after {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(2, 2, 2, .42), rgba(2, 2, 2, .88)),
    radial-gradient(circle at 50% 35%, rgba(184, 137, 58, .12), transparent 18rem);
}

.summons-content {
  max-width: 760px;
  padding: 2rem 0;
  text-align: center;
}

.summons-content .email-form {
  max-width: 680px;
  margin: 1.4rem auto 0;
  text-align: left;
}

.page-hero {
  min-height: 48svh;
  overflow: hidden;
  padding: 5rem 0 4rem;
  border-bottom: 1px solid rgba(184, 137, 58, .16);
  background:
    linear-gradient(90deg, rgba(2, 2, 2, .96), rgba(2, 2, 2, .64)),
    url("../img/placeholders/WATCHMAN_HERO_DESKTOP.jpg") center/cover no-repeat;
}

.page-hero::before {
  background:
    radial-gradient(circle at 70% 20%, rgba(135, 148, 154, .14), transparent 18rem),
    linear-gradient(180deg, transparent, #020202 92%);
}

.hero:not(.hero-cinematic) {
  min-height: 60svh;
  padding: 5rem 0 4rem;
  background:
    linear-gradient(90deg, rgba(2, 2, 2, .96), rgba(2, 2, 2, .64)),
    url("../img/placeholders/WATCHMAN_HERO_DESKTOP.jpg") center/cover no-repeat;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: end;
}

.visual-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #050505;
  box-shadow: var(--shadow);
}

.visual-frame img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  filter: saturate(.72) brightness(.78);
}

.cover-frame {
  max-width: 420px;
  margin-inline: auto;
}

.card,
.briefing-card {
  padding: 1.15rem;
}

.cards {
  margin-top: 2rem;
}

.archive-grid,
.oath-grid,
.briefing-grid {
  margin-top: 2rem;
}

.archive-item,
.oath-item {
  padding: 1rem 0;
  border-top: 1px solid rgba(184, 137, 58, .25);
}

.archive-item strong,
.oath-item strong {
  color: var(--gold-bright);
  font-family: var(--serif);
  text-transform: uppercase;
}

.article-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.article-list a {
  display: block;
  padding: 1.25rem;
}

.article {
  max-width: 840px;
  padding: 4rem 0;
}

.article.wide {
  max-width: 1000px;
}

.article p,
.article li {
  color: #d0c8bc;
  font-size: 1.05rem;
}

.article h2 {
  margin-top: 2.5rem;
  font-size: clamp(1.65rem, 6vw, 2.75rem);
}

.legal-note {
  padding: 1rem;
}

.site-footer {
  padding: 3.25rem 0 2.5rem;
  border-top: 1px solid rgba(184, 137, 58, .22);
  color: var(--muted);
  background:
    linear-gradient(180deg, #050505, #020202),
    radial-gradient(circle at 70% 0, rgba(184, 137, 58, .08), transparent 24rem);
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.global-footer-grid {
  align-items: start;
}

.footer-logo {
  width: min(245px, 70vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(184, 137, 58, .14));
}

.footer-brand {
  align-items: flex-start;
  flex-direction: column;
}

.footer-column h3 {
  margin: 0 0 .85rem;
  font-size: .9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: .82rem;
  text-transform: uppercase;
}

.footer-column .footer-links {
  display: grid;
  gap: .58rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  align-items: center;
}

.social-links a {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  opacity: .82;
}

.social-links a:hover {
  opacity: 1;
}

.social-links img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(184, 137, 58, .16));
}

@media (min-width: 720px) {
  .mobile-nav-toggle {
    display: none;
  }

  .nav {
    min-height: 84px;
  }

  .header-logo {
    width: clamp(210px, 25vw, 300px);
    max-height: 78px;
  }

  .nav-links {
    display: flex;
  }

  .hero-stage {
    min-height: calc(100svh - 84px);
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
    align-content: start;
    align-items: start;
    padding: clamp(4.25rem, 14vh, 7.25rem) 0 4rem;
  }

  .page-cinematic .hero-stage {
    grid-template-columns: minmax(0, 1fr);
    max-width: 960px;
    min-height: clamp(360px, 52svh, 560px);
    align-content: center;
    padding: clamp(2.8rem, 6.5vh, 4.6rem) 0;
  }

  .page-cinematic.lead-capture-hero .hero-stage {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .78fr);
    max-width: var(--max);
    align-items: start;
    align-content: center;
    gap: clamp(2rem, 5vw, 4rem);
  }

  .page-cinematic.lead-capture-hero .watchpost {
    justify-self: end;
    width: min(100%, 430px);
  }

  .mission-battle-section .two-col {
    align-items: start;
  }

  .mission-battle-section .two-col > div:first-child {
    padding-top: clamp(7.5rem, 15vw, 12.25rem);
  }

  .email-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .watchpost .email-row {
    grid-template-columns: 1fr;
  }

  .social-actions {
    grid-template-columns: 1fr 1fr;
  }

  .recruitment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-card-grid,
  .cards,
  .briefing-grid,
  .archive-grid,
  .oath-grid,
  .briefing-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .enemy-grid,
  .cards.four,
  .oath-grid.four,
  .archive-grid.four {
    grid-template-columns: repeat(4, 1fr);
  }

  .artifact-grid,
  .two-col,
  .hero-grid {
    grid-template-columns: 1.05fr .95fr;
  }

  .footer-grid {
    grid-template-columns: 1.35fr .75fr .75fr .75fr;
    align-items: center;
  }

  .global-footer-grid {
    align-items: start;
  }
}

@media (min-width: 1020px) {
  .section {
    padding: 3.85rem 0;
  }

  .chamber,
  .war-room {
    padding-block: 3.8rem;
  }

  h2 {
    font-size: clamp(1.55rem, 2.25vw, 2.22rem);
  }

  h1 {
    font-size: clamp(3.1rem, 5.3vw, 4.75rem);
  }

  .chamber-heading {
    max-width: 920px;
  }

  .chamber-heading .section-copy {
    max-width: 680px;
    font-size: 1.02rem;
  }

  .visual-card-grid {
    gap: .72rem;
    margin-top: 1.45rem;
  }

  .archetype-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .roster-card img {
    height: auto;
    max-height: 245px;
    aspect-ratio: 2 / 3;
  }

  .roster-card img.card-icon,
  .enemy-card img.card-icon {
    width: 36px;
    height: 36px;
    max-width: 36px;
    max-height: 36px;
    aspect-ratio: 1;
  }

  .roster-card div {
    min-height: auto;
    padding: .78rem;
  }

  .roster-card .dossier-heading > div {
    padding: 0;
  }

  .roster-card h3 {
    font-size: clamp(.98rem, 1.08vw, 1.12rem);
  }

  .roster-card p {
    margin: .45rem 0 0;
    font-size: .86rem;
    line-height: 1.42;
  }

  .division-label {
    font-size: .58rem;
  }

  .enemy-card img {
    height: auto;
    max-height: 250px;
    aspect-ratio: 2 / 3;
  }

  .enemy-card div {
    padding: .78rem;
  }

  .enemy-card .dossier-body {
    min-height: 164px;
    padding: .9rem .7rem .78rem;
  }

  .enemy-card .enemy-image-frame {
    padding: 0;
  }

  .enemy-card .enemy-image-frame .card-image {
    max-height: none;
  }

  .enemy-card p {
    max-width: 23ch;
    margin: .32rem auto 0;
    font-size: .72rem;
    line-height: 1.35;
  }

  .enemy-card h3 {
    font-size: clamp(.88rem, 1vw, 1.05rem);
  }

  .archetype-card div {
    padding: .78rem;
  }

  .archetype-card .dossier-body {
    min-height: 154px;
    padding: .92rem .68rem .78rem;
  }

  .archetype-card .archetype-image-frame {
    padding: 0;
  }

  .archetype-card .archetype-image-frame .card-image {
    max-height: none;
  }

  .archetype-card .archetype-image-frame .card-icon {
    width: 36px;
    height: 36px;
    max-width: 36px;
    max-height: 36px;
  }

  .archetype-card h3 {
    font-size: clamp(.82rem, .92vw, 1rem);
    letter-spacing: .045em;
  }

  .archetype-card p {
    max-width: 23ch;
    margin: .32rem auto 0;
    font-size: .72rem;
    line-height: 1.35;
  }
}

@media (max-width: 719px) {
  .nav {
    min-height: 70px;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + .55rem);
    z-index: 5;
    display: grid;
    max-height: calc(100svh - 88px);
    padding: .95rem;
    transform: translateY(-.35rem);
    border: 1px solid rgba(216, 182, 109, .32);
    border-radius: var(--radius);
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    background:
      linear-gradient(145deg, rgba(9, 8, 6, .98), rgba(2, 2, 2, .99)),
      radial-gradient(circle at 50% 0, rgba(184, 137, 58, .13), transparent 14rem);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .78), inset 0 1px 0 rgba(244, 223, 157, .06);
    transition: opacity .2s ease, transform .2s ease;
  }

  .site-header.is-mobile-menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a,
  .nav-menu {
    width: 100%;
  }

  .nav-links a {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(184, 137, 58, .14);
  }

  .nav-menu {
    display: grid;
    padding: 0;
  }

  .nav-menu::after {
    display: none;
  }

  .nav-menu > a {
    justify-content: center;
  }

  .submenu {
    position: static;
    min-width: 0;
    margin: .15rem 0 .45rem;
    padding: .35rem .65rem;
    transform: none;
    border-color: rgba(184, 137, 58, .18);
    opacity: 1;
    pointer-events: auto;
    background: rgba(184, 137, 58, .055);
    box-shadow: inset 0 1px 0 rgba(244, 223, 157, .04);
  }

  .submenu a {
    min-height: 36px;
    border-bottom: 0;
    color: var(--gold-bright);
    font-size: .68rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .header-logo {
    width: clamp(150px, 52vw, 218px);
    max-height: 58px;
  }

  .brand em {
    font-size: .62rem;
  }

  .nav-cta {
    display: none;
  }

  .hero-stage {
    justify-content: center;
    padding: 2.35rem 0 2.65rem;
    text-align: center;
  }

  .page-cinematic,
  .page-cinematic .hero-stage {
    min-height: auto;
  }

  .hero-copy,
  .hero-copy > * {
    width: 100%;
    max-width: 100%;
  }

  .eyebrow,
  .section-kicker {
    display: block;
    white-space: normal;
  }

  h2,
  h3 {
    overflow-wrap: anywhere;
  }

  h1 {
    font-size: clamp(2.3rem, 12vw, 3.05rem);
    line-height: 1.1;
    overflow-wrap: normal;
    word-break: normal;
  }

  .watchpost,
  .capture {
    max-width: none;
  }

  .watchpost {
    padding: 1rem;
  }

  .hero-cinematic::before {
    background:
      linear-gradient(180deg, rgba(2, 2, 2, .06), rgba(2, 2, 2, .46) 40%, rgba(2, 2, 2, .88)),
      linear-gradient(90deg, rgba(2, 2, 2, .5), transparent 50%, rgba(2, 2, 2, .42));
  }

  .home-recruitment-section {
    display: none;
  }

  .hero-cinematic + .chamber {
    padding-top: 2.45rem;
  }

  .visual-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .archetype-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: .95rem;
    margin-top: 1.15rem;
    overflow: visible;
  }

  .archetype-card {
    display: grid;
    width: 100%;
    min-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
  }

  .archetype-card .dossier-body {
    min-height: auto;
    padding: .92rem .75rem .82rem;
  }

  .archetype-card .archetype-image-frame,
  .archetype-card .archetype-image-frame .card-image,
  .archetype-card .archetype-image-frame .card-icon {
    opacity: 1;
    visibility: visible;
  }

  .archetype-card .archetype-image-frame .card-image {
    min-height: 0;
    max-height: none;
  }

  .enemy-grid,
  .briefing-strip,
  .recruitment-grid {
    grid-template-columns: 1fr;
  }

  .recruitment-card {
    grid-template-columns: 1fr;
  }

  .recruitment-seal {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 460px) {
  .visual-card-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3rem);
  }
}

.motion-ready .hero-art img {
  transform: translate3d(0, var(--hero-parallax, 0), 0) scale(1.045);
  transition: transform 120ms linear;
  will-change: transform;
}

.motion-ready .hero-cinematic .eyebrow,
.motion-ready .hero-cinematic h1,
.motion-ready .hero-cinematic .lead,
.motion-ready .page-cinematic .eyebrow,
.motion-ready .page-cinematic h1,
.motion-ready .page-cinematic .lead {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  animation: heroFadeUp 840ms cubic-bezier(.16, 1, .3, 1) forwards;
}

.motion-ready .hero-cinematic h1,
.motion-ready .page-cinematic h1 {
  animation-delay: 120ms;
}

.motion-ready .hero-cinematic .lead,
.motion-ready .page-cinematic .lead {
  animation-delay: 230ms;
}

.motion-ready .hero-cinematic .watchpost,
.motion-ready .page-cinematic .watchpost {
  opacity: 0;
  transform: translate3d(28px, 0, 0);
  animation: formFadeIn 900ms cubic-bezier(.16, 1, .3, 1) 320ms forwards;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 780ms cubic-bezier(.16, 1, .3, 1) var(--reveal-delay, 0ms),
    transform 780ms cubic-bezier(.16, 1, .3, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.visual-card,
.briefing-tile,
.artifact-cover,
.visual-frame,
.recruitment-card {
  backface-visibility: hidden;
}

.visual-card .card-image,
.briefing-tile img,
.artifact-cover img,
.visual-frame img {
  transition: transform 760ms cubic-bezier(.16, 1, .3, 1), filter 760ms cubic-bezier(.16, 1, .3, 1);
  transform-origin: center;
}

.visual-card:hover .card-image,
.briefing-tile:hover img,
.artifact-cover:hover img,
.visual-frame:hover img {
  transform: scale(1.04);
  filter: saturate(.82) brightness(.9) contrast(1.1);
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes formFadeIn {
  from {
    opacity: 0;
    transform: translate3d(28px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

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

  .hero-art img,
  .reveal,
  .hero-cinematic .eyebrow,
  .hero-cinematic h1,
  .hero-cinematic .lead,
  .page-cinematic .eyebrow,
  .page-cinematic h1,
  .page-cinematic .lead,
  .hero-cinematic .watchpost,
  .page-cinematic .watchpost,
  .visual-card .card-image,
  .briefing-tile img,
  .artifact-cover img,
  .visual-frame img {
    opacity: 1 !important;
    transform: none !important;
  }
}
