/* =====================================================================
   SR2 Defense Systems — Subpage Stylesheet
   Shared across: media.html, contact.html, ecosystem.html, news templates.
   The homepage uses styles.css (scroll-stage machinery). Subpages use
   this file for a cleaner, lighter editorial layout.
   ===================================================================== */

/* ── RESET / BASE ─────────────────────────────────────────────────── */

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: #000000;
  color: #F2EDE8;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; }

/* Brand color tokens — kept identical to homepage palette. */
:root {
  --cream: #F2EDE8;
  --cream-dim: rgba(242, 237, 232, 0.65);
  --cream-faint: rgba(242, 237, 232, 0.35);
  --cream-line: rgba(242, 237, 232, 0.12);
  --black: #000000;
  --red: #C0392B;
  --red-bright: #FF2600;
}

/* ── STARFIELD BACKDROP ────────────────────────────────────────────
   A subtle, fixed starfield that echoes the homepage night-sky stage
   without the scroll machinery. Pure CSS radial gradients.
   ─────────────────────────────────────────────────────────────────── */

.page-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1.5px 1.5px at 12% 18%, rgba(255,255,255,0.55), transparent 60%),
    radial-gradient(1px 1px at 28% 42%, rgba(255,255,255,0.35), transparent 60%),
    radial-gradient(1.5px 1.5px at 47% 8%, rgba(255,255,255,0.45), transparent 60%),
    radial-gradient(1px 1px at 62% 31%, rgba(255,255,255,0.3), transparent 60%),
    radial-gradient(1.5px 1.5px at 78% 55%, rgba(255,255,255,0.5), transparent 60%),
    radial-gradient(1px 1px at 89% 22%, rgba(255,255,255,0.35), transparent 60%),
    radial-gradient(1.5px 1.5px at 15% 78%, rgba(255,255,255,0.4), transparent 60%),
    radial-gradient(1px 1px at 36% 88%, rgba(255,255,255,0.3), transparent 60%),
    radial-gradient(1.5px 1.5px at 55% 72%, rgba(255,255,255,0.35), transparent 60%),
    radial-gradient(1px 1px at 73% 91%, rgba(255,255,255,0.3), transparent 60%),
    linear-gradient(180deg, #05080F 0%, #000000 70%);
}

/* Subtle radial vignette for depth */
.page-backdrop::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, transparent 30%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}

/* ── PAGE WRAPPER ──────────────────────────────────────────────────── */

.page {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── MASTHEAD ─────────────────────────────────────────────────────────
   Replicates the homepage's docked logo + hamburger. Logo links home.
   ─────────────────────────────────────────────────────────────────── */

/* ── NAV BAR BACKGROUND STRIP ───────────────────────────────────────
   90% black with subtle blur, sits behind masthead + hamburger so the
   logo never overlaps page headlines. Spans full viewport width.
   ─────────────────────────────────────────────────────────────────── */

.subpage-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 68px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-line);
  z-index: 9;
  pointer-events: none;
}

.subpage-masthead-logo {
  position: fixed;
  top: 16px;
  left: 18px;
  width: clamp(120px, 10vw, 160px);
  z-index: 10;
}

.subpage-masthead-logo img { width: 100%; height: auto; display: block; }

.hamburger {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 11;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 4px;
  place-items: center;
}

.ham-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cream);
  opacity: 0.85;
  transition: transform 350ms cubic-bezier(0.65, 0, 0.35, 1),
              opacity 250ms ease;
}

.hamburger:hover .ham-dot { opacity: 1; }

.hamburger.is-open .ham-dot-2,
.hamburger.is-open .ham-dot-4,
.hamburger.is-open .ham-dot-6,
.hamburger.is-open .ham-dot-8 { opacity: 0; }

.hamburger.is-open .ham-dot-1 { transform: translate(7px, 7px); }
.hamburger.is-open .ham-dot-3 { transform: translate(-7px, 7px); }
.hamburger.is-open .ham-dot-7 { transform: translate(7px, -7px); }
.hamburger.is-open .ham-dot-9 { transform: translate(-7px, -7px); }

/* ── MENU OVERLAY ─────────────────────────────────────────────────── */

.menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  height: 100dvh; /* dynamic vh for iOS Safari URL bar behavior */
  width: 33.333vw;
  min-width: 320px;
  background: rgba(5, 10, 20, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-left: 1px solid var(--cream-line);
  transform: translateX(100%);
  transition: transform 500ms cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 10;
  display: flex;
  flex-direction: column;
  padding: 80px 5vw 40px 5vw;
  pointer-events: none;
}

.menu-overlay.is-open {
  transform: translateX(0);
  pointer-events: auto;
}

.menu-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 30px;
}

.menu-logo {
  width: clamp(72px, 7vw, 110px);
  height: auto;
  opacity: 0;
  transition: opacity 400ms ease 80ms;
}

.menu-overlay.is-open .menu-logo { opacity: 1; }

.menu-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }

.menu-item {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 400ms ease, transform 400ms ease;
}

.menu-overlay.is-open .menu-item { opacity: 1; transform: translateX(0); }

.menu-overlay.is-open .menu-item:nth-child(1) { transition-delay: 150ms; }
.menu-overlay.is-open .menu-item:nth-child(2) { transition-delay: 200ms; }
.menu-overlay.is-open .menu-item:nth-child(3) { transition-delay: 250ms; }
.menu-overlay.is-open .menu-item:nth-child(4) { transition-delay: 300ms; }
.menu-overlay.is-open .menu-item:nth-child(5) { transition-delay: 350ms; }
.menu-overlay.is-open .menu-item:nth-child(6) { transition-delay: 400ms; }
.menu-overlay.is-open .menu-item:nth-child(7) { transition-delay: 450ms; }
.menu-overlay.is-open .menu-item:nth-child(8) { transition-delay: 500ms; }

.menu-link {
  font-family: inherit;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 36px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--cream);
  cursor: pointer;
  transition: opacity 200ms ease, transform 200ms ease;
  display: inline-block;
  text-decoration: none;
}

.menu-link:hover { opacity: 0.6; transform: translateX(6px); }

/* ── PAGE INTRO ────────────────────────────────────────────────────────
   Eyebrow + headline + thin red rule. Animates in on load.
   ─────────────────────────────────────────────────────────────────── */

.page-intro {
  padding: clamp(120px, 16vh, 200px) 5vw clamp(40px, 6vh, 80px);
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.intro-eyebrow {
  font-family: inherit;
  font-weight: 500;
  font-size: clamp(11px, 0.85vw, 13px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(8px);
  animation: fadeUp 700ms cubic-bezier(0.16, 1, 0.3, 1) 100ms forwards;
}

.intro-headline {
  font-family: inherit;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 88px);
  letter-spacing: -0.025em;
  line-height: 1.02;
  color: var(--cream);
  max-width: 22ch;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 800ms cubic-bezier(0.16, 1, 0.3, 1) 250ms forwards;
}

.intro-headline .accent {
  color: var(--red);
}

.intro-rule {
  width: 0;
  height: 1px;
  background: var(--red);
  margin-top: 36px;
  animation: drawRule 900ms cubic-bezier(0.16, 1, 0.3, 1) 500ms forwards;
}

.intro-subhead {
  font-family: inherit;
  font-weight: 400;
  font-size: clamp(15px, 1.15vw, 19px);
  letter-spacing: 0.005em;
  line-height: 1.55;
  color: var(--cream-dim);
  max-width: 60ch;
  margin-top: 28px;
  opacity: 0;
  transform: translateY(8px);
  animation: fadeUp 700ms cubic-bezier(0.16, 1, 0.3, 1) 650ms forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes drawRule {
  to { width: clamp(60px, 6vw, 90px); }
}

/* ── PAGE CONTENT ─────────────────────────────────────────────────── */

.page-content {
  padding: 0 5vw clamp(80px, 12vh, 160px);
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 800ms cubic-bezier(0.16, 1, 0.3, 1) 800ms forwards;
  flex: 1;
}

/* =====================================================================
   MEDIA PAGE
   ===================================================================== */

/* ── Media-page intro: 2-column layout with timeline callout right ─── */

.media-intro {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  padding: clamp(120px, 16vh, 200px) 5vw clamp(40px, 6vh, 80px);
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 1024px) {
  .media-intro {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* Override the centered page-intro padding when used inside .media-intro left col */
.media-intro .page-intro {
  padding: 0;
  max-width: none;
  margin: 0;
  width: 100%;
}

/* Half-scale subhero — sits where intro-subhead was, but bigger */
.intro-subhero {
  font-family: inherit;
  font-weight: 400;
  font-size: clamp(20px, 3vw, 44px);
  letter-spacing: -0.018em;
  line-height: 1.15;
  color: var(--cream);
  max-width: 32ch;
  margin-top: 28px;
  opacity: 0;
  transform: translateY(8px);
  animation: fadeUp 800ms cubic-bezier(0.16, 1, 0.3, 1) 650ms forwards;
}

/* ── Timeline callout (right column of media intro) ──────────────── */

.timeline-callout {
  border: 1px solid var(--cream-line);
  background: rgba(10, 13, 20, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 24px 22px 22px;
  position: relative;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 800ms cubic-bezier(0.16, 1, 0.3, 1) 750ms forwards;
}

/* Top-left red corner accent — subtle defense-industry detail */
.timeline-callout::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 14px;
  height: 14px;
  border-top: 1px solid var(--red);
  border-left: 1px solid var(--red);
}

.timeline-callout-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--cream-line);
}

.timeline-callout-title {
  font-family: inherit;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
}

.timeline-callout-meta {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-faint);
}

.timeline-list {
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Vertical spine line connecting all dots */
.timeline-list::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--cream-line);
}

.timeline-item {
  position: relative;
  padding-left: 22px;
  padding-bottom: 18px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

/* Dot marker on the spine */
.timeline-item::before {
  content: '';
  position: absolute;
  left: 1px;
  top: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cream-faint);
  border: 1px solid #000;
  z-index: 1;
}

/* The most recent item gets a red dot */
.timeline-item.is-current::before {
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.18);
}

.timeline-date {
  display: block;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 5px;
}

.timeline-item:not(.is-current) .timeline-date {
  color: var(--cream-faint);
}

.timeline-body {
  font-family: inherit;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.45;
  color: var(--cream);
}

.timeline-item:not(.is-current) .timeline-body {
  color: var(--cream-dim);
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

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

/* Column header pattern */
.col-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--cream-line);
}

.col-title {
  font-family: inherit;
  font-weight: 500;
  font-size: clamp(11px, 0.85vw, 13px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
}

.col-meta {
  font-family: inherit;
  font-weight: 400;
  font-size: clamp(10px, 0.7vw, 12px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-faint);
}

/* ── NEWS COLUMN — large press release cards ─────────────────────── */

.news-list {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 64px);
}

.news-card {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  padding: 26px 0 28px;
  border-top: 1px solid var(--cream-line);
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Red accent rule sitting on top of the cream border; expands on hover. */
.news-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 36px;
  height: 1px;
  background: var(--red);
  transition: width 450ms cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card:hover::before { width: 120px; }

.news-card:hover { transform: translateX(2px); }

/* Image variant — kept for future use if real assets land. */
.news-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0A0D14;
  margin-bottom: 22px;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), filter 500ms ease;
  filter: brightness(0.88);
}

.news-card:hover .news-card-image img {
  transform: scale(1.03);
  filter: brightness(1.0);
}

.news-card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card:hover .news-card-image::after { width: 60px; }

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  font-family: inherit;
  font-weight: 500;
  font-size: clamp(10px, 0.7vw, 12px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-faint);
}

.news-card-meta .meta-tag {
  color: var(--red);
}

.news-card-meta .meta-sep {
  width: 1px;
  height: 10px;
  background: var(--cream-line);
}

.news-card-title {
  font-family: inherit;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: -0.018em;
  line-height: 1.12;
  color: var(--cream);
  margin-bottom: 14px;
  max-width: 32ch;
}

.news-card:hover .news-card-title { color: var(--cream); }

.news-card-dek {
  font-family: inherit;
  font-weight: 400;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.55;
  color: var(--cream-dim);
  max-width: 56ch;
}

.news-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-family: inherit;
  font-weight: 500;
  font-size: clamp(11px, 0.8vw, 13px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color 200ms ease, gap 250ms ease;
}

.news-card-cta-arrow { transition: transform 250ms ease; }

.news-card:hover .news-card-cta { color: var(--red-bright); gap: 16px; }

/* ── PRESS COLUMN — link cards ───────────────────────────────────── */

.press-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.press-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--cream-line);
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* No-thumb variant: full-width body, no image column. Used when the source
   coverage has no usable image asset. */
.press-card--no-thumb {
  grid-template-columns: 1fr;
}

.press-card:last-child { border-bottom: none; }

.press-card:hover { transform: translateX(2px); }

.press-thumb {
  width: 96px;
  height: 72px;
  background: #0A0D14;
  overflow: hidden;
}

.press-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: filter 300ms ease;
}

.press-card:hover .press-thumb img { filter: brightness(1.0); }

.press-body { display: flex; flex-direction: column; gap: 6px; }

.press-source {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

.press-source-name { color: var(--red); }

.press-source-date {
  color: var(--cream-faint);
  letter-spacing: 0.14em;
}

.press-source-sep {
  width: 10px;
  height: 1px;
  background: var(--cream-line);
}

.press-source-link {
  margin-left: auto;
  color: var(--cream-faint);
  font-size: 11px;
  transition: color 200ms ease, transform 200ms ease;
  display: inline-flex;
  align-items: center;
}

.press-card:hover .press-source-link {
  color: var(--red-bright);
  transform: translate(2px, -2px);
}

.press-title {
  font-family: inherit;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  color: var(--cream);
  margin: 0;
}

.press-preview {
  font-family: inherit;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: var(--cream-dim);
}

/* =====================================================================
   NEWS RELEASE PAGE — editorial longform, defense-industry vocabulary

   Layout: reading progress bar → full-bleed hero with corner brackets →
   sticky meta sidebar (desktop) → centered article body with drop cap,
   asymmetric pull quotes, monospace section dividers → classification-
   style footer strip with release ID and distribution flag.
   ===================================================================== */

/* ── Reading progress bar at the very top of the viewport ───────── */

.release-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--red);
  z-index: 12;
  transition: width 120ms linear;
  box-shadow: 0 0 8px rgba(192, 57, 43, 0.6);
}

/* ── Full-bleed hero band (breaks out of article container) ─────── */

.release-hero-band {
  position: relative;
  width: 100%;
  margin-top: 0;
  padding-top: 68px; /* clears the fixed navbar */
  background: #0A0D14;
  border-bottom: 1px solid var(--cream-line);
  overflow: hidden;
}

.release-hero-band-inner {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  aspect-ratio: 21 / 9;
  overflow: hidden;
}

.release-hero-band-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) contrast(1.05);
  opacity: 0;
  transform: scale(1.02);
  animation: heroFade 1400ms cubic-bezier(0.16, 1, 0.3, 1) 200ms forwards;
}

@keyframes heroFade {
  to { opacity: 1; transform: scale(1); }
}

/* Vignette + bottom gradient to seat the image into the page */
.release-hero-band-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 20%, transparent 70%, rgba(0,0,0,0.85) 100%),
    radial-gradient(ellipse at 50% 40%, transparent 50%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}

/* ── ARTICLE BODY LAYOUT ─────────────────────────────────────────────
   Desktop: 2-column grid — sticky meta sidebar (240px) + article (max 720px).
   Mobile: collapses to single column, meta moves above title.
   ─────────────────────────────────────────────────────────────────── */

.release-shell {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(60px, 8vh, 100px) 5vw clamp(80px, 12vh, 140px);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

/* No-hero variant: more top breathing room since there's no hero band above. */
.release-shell--no-hero {
  padding-top: clamp(120px, 16vh, 180px);
}

@media (max-width: 880px) {
  .release-shell {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ── Sticky meta sidebar (desktop) ───────────────────────────────── */

.release-meta-rail {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 4px;
}

@media (max-width: 880px) {
  .release-meta-rail {
    position: relative;
    top: auto;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px 36px;
    padding: 22px 0;
    border-top: 1px solid var(--cream-line);
    border-bottom: 1px solid var(--cream-line);
  }
}

.meta-rail-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateY(6px);
  animation: fadeUp 700ms cubic-bezier(0.16, 1, 0.3, 1) 700ms forwards;
}

.meta-rail-label {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-faint);
}

.meta-rail-value {
  font-family: inherit;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--cream);
  line-height: 1.4;
}

.meta-rail-value a {
  color: var(--cream);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, color 200ms ease;
}

.meta-rail-value a:hover {
  color: var(--red-bright);
  border-bottom-color: var(--red-bright);
}

/* Share buttons — small, monochrome */
.meta-rail-share {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.meta-rail-share button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--cream-line);
  background: transparent;
  color: var(--cream-dim);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 12px;
  transition: border-color 200ms ease, color 200ms ease, background 200ms ease;
}

.meta-rail-share button:hover {
  border-color: var(--red);
  color: var(--cream);
  background: rgba(192, 57, 43, 0.1);
}

.meta-rail-share svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

/* ── Article column ──────────────────────────────────────────────── */

.release-article {
  max-width: 720px;
  width: 100%;
}

.release-eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-faint);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(8px);
  animation: fadeUp 700ms cubic-bezier(0.16, 1, 0.3, 1) 300ms forwards;
}

.release-eyebrow .tag {
  color: var(--red);
  letter-spacing: 0.22em;
  padding: 4px 10px;
  border: 1px solid var(--red);
  font-weight: 500;
}

.release-eyebrow .sep {
  width: 14px;
  height: 1px;
  background: var(--cream-line);
}

.release-title {
  font-family: inherit;
  font-weight: 400;
  font-size: clamp(32px, 4.2vw, 52px);
  letter-spacing: -0.022em;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 800ms cubic-bezier(0.16, 1, 0.3, 1) 400ms forwards;
}

.release-dek {
  font-family: inherit;
  font-weight: 400;
  font-size: clamp(18px, 1.4vw, 22px);
  letter-spacing: 0;
  line-height: 1.45;
  color: var(--cream-dim);
  margin-bottom: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--cream-line);
  max-width: 56ch;
  opacity: 0;
  transform: translateY(8px);
  animation: fadeUp 700ms cubic-bezier(0.16, 1, 0.3, 1) 550ms forwards;
}

.release-body {
  font-family: inherit;
  font-weight: 400;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7;
  color: var(--cream);
  opacity: 0;
  animation: fadeUp 800ms cubic-bezier(0.16, 1, 0.3, 1) 700ms forwards;
}

.release-body p { margin-bottom: 1.5em; max-width: 64ch; }
.release-body p:last-child { margin-bottom: 0; }

/* Drop cap on the lede paragraph — editorial signal */
.release-body .lede::first-letter {
  float: left;
  font-family: inherit;
  font-weight: 500;
  font-size: 3.6em;
  line-height: 0.9;
  margin: 0.05em 0.14em 0 -0.04em;
  color: var(--red);
  letter-spacing: -0.04em;
}

.release-body strong { font-weight: 500; color: var(--cream); }

/* Section divider — monospace section number + thin red rule + uppercase title */
.release-section {
  margin: 3em 0 1.4em;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: baseline;
  gap: 16px;
}

.release-section-num {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--red);
}

.release-section-title {
  font-family: inherit;
  font-weight: 500;
  font-size: clamp(14px, 1.05vw, 16px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0;
}

.release-section-rule {
  height: 1px;
  background: var(--cream-line);
  align-self: center;
}

/* Pull quote — asymmetric, hangs into the left margin on desktop */
.release-body .pullquote {
  margin: 2.4em 0;
  padding: 0;
  border: none;
  font-family: inherit;
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 28px);
  letter-spacing: -0.018em;
  line-height: 1.25;
  color: var(--cream);
  font-style: normal;
  position: relative;
}

@media (min-width: 881px) {
  .release-body .pullquote {
    margin-left: -32px;
    padding-left: 32px;
  }
}

.release-body .pullquote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 16px;
  height: 1px;
  background: var(--red);
}

@media (max-width: 880px) {
  .release-body .pullquote::before { display: none; }
  .release-body .pullquote {
    padding-left: 18px;
    border-left: 2px solid var(--red);
  }
}

.release-body .pullquote cite {
  display: block;
  margin-top: 18px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-faint);
}

.release-body .pullquote cite::before {
  content: '— ';
  color: var(--red);
}

/* ── Classification-style footer strip ───────────────────────────────
   Defense-industry visual vocabulary. Sits at the end of the body
   with a thin red border-top, monospace metadata.
   ─────────────────────────────────────────────────────────────────── */

.release-footer-strip {
  margin-top: 5em;
  padding-top: 28px;
  border-top: 1px solid var(--red);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  opacity: 0;
  animation: fadeUp 700ms cubic-bezier(0.16, 1, 0.3, 1) 900ms forwards;
}

@media (max-width: 660px) {
  .release-footer-strip { grid-template-columns: 1fr; }
}

.release-footer-id {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.release-footer-id-row {
  display: flex;
  gap: 12px;
  color: var(--cream-faint);
}

.release-footer-id-row strong {
  color: var(--cream);
  font-weight: 400;
  letter-spacing: 0.16em;
}

.release-footer-dist {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  padding: 4px 10px;
  border: 1px solid var(--red);
  justify-self: end;
  align-self: start;
}

/* ── Related releases ────────────────────────────────────────────── */

.release-related {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 5vw 80px;
}

.release-related-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--cream-line);
}

.release-related-title {
  font-family: inherit;
  font-weight: 500;
  font-size: clamp(11px, 0.85vw, 13px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
}

.release-related-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color 200ms ease, gap 250ms ease;
}

.release-related-back:hover { color: var(--red-bright); gap: 14px; }

.release-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (max-width: 660px) {
  .release-related-grid { grid-template-columns: 1fr; }
}

.related-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 22px 0;
  border-top: 1px solid var(--cream-line);
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.related-card:hover { transform: translateX(3px); }

.related-card-meta {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-faint);
  margin-bottom: 10px;
}

.related-card-meta .tag { color: var(--red); }

.related-card-title {
  font-family: inherit;
  font-weight: 400;
  font-size: clamp(16px, 1.3vw, 19px);
  letter-spacing: -0.012em;
  line-height: 1.25;
  color: var(--cream);
  max-width: 32ch;
}

.related-card:hover .related-card-title { color: var(--red-bright); }

/* ── Print styles ────────────────────────────────────────────────────
   Lets journalists save a clean PDF of the release.
   ─────────────────────────────────────────────────────────────────── */

@media print {
  .page-backdrop,
  .subpage-navbar,
  .subpage-masthead-logo,
  .hamburger,
  .menu-overlay,
  .release-progress,
  .release-meta-rail,
  .release-related,
  .site-footer { display: none !important; }

  body, html { background: #fff !important; color: #000 !important; }
  .release-hero-band-inner::after { display: none; }
  .release-hero-band-inner img { filter: none !important; opacity: 1 !important; transform: none !important; }
  .release-shell { display: block; padding: 24px !important; }
  .release-article { max-width: 100% !important; }
  .release-eyebrow, .release-title, .release-dek, .release-body { color: #000 !important; opacity: 1 !important; animation: none !important; transform: none !important; }
  .release-body .pullquote { color: #000 !important; }
  .release-body .lede::first-letter { color: #C0392B !important; }
  .release-footer-strip { border-top-color: #000 !important; color: #000 !important; }
}

/* =====================================================================
   CONTACT PAGE
   ===================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

.contact-block { display: flex; flex-direction: column; gap: 14px; }

.contact-label {
  font-family: inherit;
  font-weight: 500;
  font-size: clamp(11px, 0.85vw, 13px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-faint);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--cream-line);
  margin-bottom: 8px;
}

.contact-value {
  font-family: inherit;
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--cream);
}

.contact-value a {
  position: relative;
  transition: color 200ms ease;
  display: inline-block;
}

.contact-value a:hover { color: var(--red-bright); }

.contact-value a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--red-bright);
  transition: width 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-value a:hover::after { width: 100%; }

.contact-sub {
  font-family: inherit;
  font-weight: 400;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.55;
  color: var(--cream-dim);
}

.contact-address {
  font-family: inherit;
  font-weight: 400;
  font-size: clamp(15px, 1.1vw, 18px);
  letter-spacing: 0;
  line-height: 1.55;
  color: var(--cream);
}

.contact-address-line {
  display: block;
}

.contact-coords {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--cream-faint);
  margin-top: 14px;
  text-transform: uppercase;
}

/* =====================================================================
   WHO WE ARE PAGE — founder personnel records, document-aesthetic
   ===================================================================== */

.team-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(36px, 4vw, 56px);
}

@media (max-width: 760px) {
  .team-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ── Single founder record ───────────────────────────────────────── */

.founder {
  display: flex;
  flex-direction: column;
  padding-top: clamp(28px, 3.5vh, 40px);
  border-top: 1px solid var(--cream-line);
  position: relative;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.founder:nth-child(1) { animation-delay: 800ms; }
.founder:nth-child(2) { animation-delay: 900ms; }
.founder:nth-child(3) { animation-delay: 1000ms; }
.founder:nth-child(4) { animation-delay: 1100ms; }

/* Red top accent rule that runs along the founder's section divider */
.founder::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 36px;
  height: 1px;
  background: var(--red);
}

/* Monogram block hidden until real headshots replace it post-launch.
   When ready, swap initials for an <img> and remove display:none. */
.founder-monogram {
  display: none;
}

/* ── Founder body — name, title, bio ─────────────────────────────── */

.founder-body {
  display: flex;
  flex-direction: column;
}

.founder-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-faint);
  margin-bottom: 18px;
}

.founder-meta .tag {
  color: var(--red);
  padding: 4px 10px;
  border: 1px solid var(--red);
  letter-spacing: 0.2em;
}

.founder-meta .sep {
  width: 14px;
  height: 1px;
  background: var(--cream-line);
}

.founder-name {
  font-family: inherit;
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.06;
  color: var(--cream);
  margin-bottom: 8px;
}

.founder-title {
  font-family: inherit;
  font-weight: 500;
  font-size: clamp(12px, 0.9vw, 14px);
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: var(--red);
  margin-bottom: 22px;
}

.founder-bio {
  font-family: inherit;
  font-weight: 400;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.6;
  color: var(--cream);
}

.founder-bio p { margin-bottom: 1.1em; }
.founder-bio p:last-child { margin-bottom: 0; }

.founder-bio .lede {
  color: var(--cream);
  font-weight: 400;
}

.founder-bio p:not(.lede) {
  color: var(--cream-dim);
}

/* ── Ecosystem partner row — 4 logo cards ───────────────────────── */

.ecosystem-section {
  margin-top: clamp(72px, 10vh, 120px);
}

.ecosystem-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--cream-line);
}

.ecosystem-section-title {
  font-family: inherit;
  font-weight: 500;
  font-size: clamp(11px, 0.85vw, 13px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
}

.ecosystem-section-meta {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-faint);
}

.ecosystem-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 1.5vw, 24px);
  justify-content: center;
}

.ecosystem-grid > .ecosystem-card {
  flex: 0 1 240px;
  max-width: 280px;
}

@media (max-width: 480px) {
  .ecosystem-grid > .ecosystem-card { flex-basis: 100%; max-width: none; }
}

.ecosystem-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 36px 20px;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--cream-line);
  background: rgba(10, 13, 20, 0.45);
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: border-color 350ms ease, background 350ms ease, transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ecosystem-card:hover {
  border-color: rgba(192, 57, 43, 0.55);
  background: rgba(10, 13, 20, 0.7);
  transform: translateY(-2px);
}

/* Top-left red corner accent — matches monogram aesthetic */
.ecosystem-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 12px;
  height: 12px;
  border-top: 1px solid var(--red);
  border-left: 1px solid var(--red);
}

.ecosystem-card-logo {
  width: 100%;
  max-width: 140px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
  filter: brightness(0.92);
  transition: filter 300ms ease;
}

.ecosystem-card:hover .ecosystem-card-logo {
  filter: brightness(1.0);
}

.ecosystem-card-label {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-faint);
  text-align: center;
}

/* ── Closing strip — small classification-style footer on the page ── */

.team-closing {
  margin-top: clamp(60px, 8vh, 100px);
  padding-top: 28px;
  border-top: 1px solid var(--red);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.team-closing-id {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-faint);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.team-closing-id strong {
  font-weight: 400;
  color: var(--cream);
}

.team-closing-cta {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  padding: 4px 10px;
  border: 1px solid var(--red);
  text-decoration: none;
  transition: background 200ms ease, color 200ms ease;
}

.team-closing-cta:hover {
  background: var(--red);
  color: var(--cream);
}

/* =====================================================================
   FOOTER — replicated from homepage for visual continuity
   ===================================================================== */

.site-footer {
  width: 100%;
  background: #000000;
  padding: 22px 5vw 14px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--cream-line);
}

.site-footer-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.footer-brand-logo { width: clamp(60px, 5vw, 78px); height: auto; }

.footer-brand-tagline {
  font-family: inherit;
  font-weight: 500;
  font-size: clamp(11px, 0.85vw, 13px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.35;
  max-width: 200px;
}

.footer-brand-tagline-strong { display: block; color: var(--cream); }
.footer-brand-tagline-soft   { display: block; color: var(--cream-dim); }

.footer-sep {
  width: 1px;
  height: 60px;
  background: var(--cream-line);
}

.footer-nav { display: flex; gap: 56px; }

.footer-nav-col {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-family: inherit;
  font-weight: 500;
  font-size: clamp(11px, 0.85vw, 13px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242, 237, 232, 0.78);
  cursor: pointer;
  transition: color 200ms ease;
  display: inline-block;
  text-decoration: none;
}

.footer-link:hover { color: var(--red-bright); }

.footer-partners {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  flex-shrink: 0;
}

.footer-partner-link {
  display: block;
  text-decoration: none;
  line-height: 0;
  transition: opacity 200ms ease;
}

.footer-partner-link:hover { opacity: 0.7; }

.footer-partner-logo {
  height: clamp(28px, 2.4vw, 38px);
  width: auto;
  display: block;
  max-width: 100%;
}

.footer-partner-logo--capped {
  height: auto;
  max-width: 120px;
  width: 120px;
}

.footer-partner-link[aria-label="SR2 Vector"] .footer-partner-logo--capped {
  transform: translateY(-2px);
}

.footer-partner-link[aria-label="REDSALT Defense"] .footer-partner-logo--capped {
  max-width: 90px;
  width: 90px;
}

.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1700px;
  width: 100%;
  margin: 0 auto;
  gap: 3vw;
  padding-top: 8px;
  border-top: 1px solid var(--cream-line);
}

.footer-legal {
  font-family: inherit;
  font-weight: 400;
  font-size: clamp(10px, 0.7vw, 11px);
  letter-spacing: 0.04em;
  color: var(--cream-faint);
  line-height: 1.4;
  text-transform: uppercase;
  max-width: 60%;
}

.footer-location {
  font-family: inherit;
  font-weight: 500;
  font-size: clamp(10px, 0.7vw, 11px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-align: right;
  line-height: 1.4;
}

.footer-location-cr {
  display: block;
  color: var(--cream-faint);
  margin-top: 3px;
}

/* Right-side cluster — LinkedIn icon + location text */
.footer-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: var(--cream-dim);
  border: 1px solid var(--cream-line);
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease;
}

.footer-social:hover {
  color: var(--cream);
  border-color: var(--red);
  background: rgba(192, 57, 43, 0.15);
}

.footer-social svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
  display: block;
}

/* ════════════════════════════════════════════════════════════════════
   MOBILE OPTIMIZATION — 760px and below
   Touch targets ≥ 44px. Typography tightened. Sticky disabled.
   Logos and chrome scaled down. Padding adjusted for small screens.
   ════════════════════════════════════════════════════════════════════ */

@media (max-width: 760px) {

  /* ── Navbar + masthead — scale logo down so it doesn't dominate ──── */
  .subpage-navbar { height: 60px; }

  .subpage-masthead-logo {
    top: 12px;
    left: 14px;
    width: 106px;
  }

  /* ── Hamburger — larger touch target (44×44 WCAG minimum).
        Top positioned so middle row of dots aligns vertically with
        the SR2 wordmark center (logo ~30px tall, top:12px → center
        at y=27px → hamburger top = 5px). ─────────────────────────── */
  .hamburger {
    top: 5px;
    right: 14px;
    width: 44px;
    height: 44px;
    padding: 6px;
  }

  /* ── Menu overlay — wider so it doesn't feel cramped ────────────── */
  .menu-overlay {
    width: 88vw;
    min-width: 0;
    padding: 72px 8vw 32px 8vw;
  }

  .menu-inner { gap: 22px; margin-top: 16px; }
  .menu-link { font-size: 24px; }
  .menu-logo { width: 64px; }

  /* ── Page intro — tighter type, less top padding ────────────────── */
  .page-intro {
    padding: 100px 6vw 32px;
  }

  .intro-eyebrow {
    font-size: 11px;
    margin-bottom: 18px;
  }

  .intro-headline {
    font-size: 32px;
    line-height: 1.06;
    max-width: none;
  }

  .intro-rule { margin-top: 24px; }

  .intro-subhead {
    font-size: 15px;
    line-height: 1.5;
    margin-top: 20px;
    max-width: none;
  }

  .intro-subhero {
    font-size: 22px;
    line-height: 1.18;
    margin-top: 20px;
    max-width: none;
  }

  .page-content { padding: 0 6vw 60px; }

  /* ── Media page — already collapses at 1024px, but tune the
        timeline callout sizing for narrow phones ─────────────────── */
  .media-intro { padding: 100px 6vw 32px; }

  .timeline-callout { padding: 20px 18px 18px; }
  .timeline-body { font-size: 13px; line-height: 1.5; }

  /* ── News cards — already text-only, just tighten margins ──────── */
  .news-card { padding: 22px 0 24px; }
  .news-card-title { font-size: 22px; line-height: 1.15; max-width: none; }
  .news-card-dek { font-size: 14px; line-height: 1.55; max-width: none; }
  .news-card-meta { font-size: 10px; gap: 10px; flex-wrap: wrap; }

  /* ── Press cards — single column already, tighten meta strip ──── */
  .press-card { padding-bottom: 18px; }
  .press-source { font-size: 9.5px; gap: 8px; flex-wrap: wrap; }
  .press-source-link { margin-left: auto; }
  .press-title { font-size: 14px; }
  .press-preview { font-size: 12px; }

  /* ── Release page — disable sticky, stack meta horizontally ───── */
  .release-shell { padding: 110px 6vw 60px; gap: 24px; }
  .release-shell--no-hero { padding-top: 110px; }

  .release-meta-rail {
    position: static;
    top: auto;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px 24px;
    padding: 18px 0;
    margin-bottom: 8px;
    border-top: 1px solid var(--cream-line);
    border-bottom: 1px solid var(--cream-line);
  }

  .meta-rail-item { flex: 0 1 auto; min-width: 100px; }
  .meta-rail-label { font-size: 9px; }
  .meta-rail-value { font-size: 12px; }

  /* Share buttons — bigger touch targets */
  .meta-rail-share button {
    width: 40px;
    height: 40px;
  }

  /* ── Release article typography — readable on mobile ──────────── */
  .release-eyebrow { font-size: 10px; gap: 10px; flex-wrap: wrap; }
  .release-eyebrow .tag { padding: 3px 8px; }
  .release-title { font-size: 28px; line-height: 1.08; }
  .release-dek { font-size: 16px; line-height: 1.45; margin-bottom: 32px; padding-bottom: 24px; }
  .release-body { font-size: 16px; line-height: 1.65; }
  .release-body p { max-width: none; }

  .release-section { margin: 2em 0 1em; gap: 10px; }
  .release-section-num { font-size: 10px; }
  .release-section-title { font-size: 12px; letter-spacing: 0.12em; }

  .release-body .pullquote { font-size: 19px; line-height: 1.3; margin: 1.8em 0; }
  .release-body .pullquote cite { font-size: 10px; margin-top: 12px; }

  /* Drop cap smaller on mobile so it doesn't visually crash */
  .release-body .lede::first-letter { font-size: 3em; margin: 0.05em 0.1em 0 -0.02em; }

  /* Classification footer strip */
  .release-footer-strip { grid-template-columns: 1fr; gap: 18px; }
  .release-footer-dist { justify-self: start; }

  /* Related releases */
  .release-related { padding: 0 6vw 60px; }
  .release-related-grid { grid-template-columns: 1fr; gap: 0; }
  .release-related-title { font-size: 11px; }
  .related-card { padding: 18px 0; }
  .related-card-title { font-size: 16px; max-width: none; }

  /* ── Who We Are — already 1-column at 760px, refine the card ───── */
  .founder { padding-top: 24px; }
  .founder-name { font-size: 26px; line-height: 1.06; }
  .founder-title { font-size: 12px; margin-bottom: 18px; }
  .founder-bio { font-size: 15px; line-height: 1.6; }
  .founder-bio p { margin-bottom: 1em; }
  .founder-meta { font-size: 10px; gap: 10px; margin-bottom: 14px; }

  /* Ecosystem flex grid — let it wrap nicely */
  .ecosystem-section { margin-top: 48px; }
  .ecosystem-section-header { margin-bottom: 22px; padding-bottom: 12px; }
  .ecosystem-grid { gap: 12px; }
  .ecosystem-grid > .ecosystem-card { flex: 0 1 calc(50% - 6px); max-width: none; }

  .ecosystem-card { padding: 28px 16px; gap: 12px; }
  .ecosystem-card-logo { max-width: 100px; max-height: 44px; }
  .ecosystem-card-label { font-size: 9px; letter-spacing: 0.14em; }

  /* Team closing strip */
  .team-closing { flex-direction: column; align-items: flex-start; gap: 18px; }

  /* ── Contact page grid → already single column at 880px ───────── */
  .contact-grid { gap: 36px; }
  .contact-value { font-size: 19px; word-break: break-word; }

  /* ── Site footer — centered stack with single-row nav on mobile ──── */
  .site-footer { padding: 22px 6vw 14px; }

  .site-footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }

  .footer-brand {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }

  .footer-brand-logo { width: 52px; height: auto; }
  .footer-brand-tagline {
    text-align: center;
    font-size: 11px;
    align-items: center;
  }

  /* Flatten the two <ul> columns into a single centered row. */
  .footer-nav {
    gap: 28px;
    flex-wrap: nowrap;
    justify-content: center;
    flex-direction: row;
  }

  .footer-nav-col {
    display: flex;
    flex-direction: row;
    gap: 28px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .footer-link { font-size: 11px; }

  .footer-partners {
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: 0;
  }

  .footer-partner-logo { height: 26px; }
  .footer-partner-logo--capped { width: 96px; max-width: 96px; }
  .footer-partner-link[aria-label="REDSALT Defense"] .footer-partner-logo--capped {
    width: 72px;
    max-width: 72px;
  }

  .site-footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
  }

  .footer-legal { max-width: 100%; font-size: 10px; text-align: center; }
  .footer-right { width: 100%; justify-content: space-between; gap: 14px; align-items: center; }
  .footer-location { text-align: right; font-size: 10px; }
  .footer-social { width: 32px; height: 32px; }
  .footer-social svg { width: 14px; height: 14px; }
}

/* ════════════════════════════════════════════════════════════════════
   SMALL PHONE — 380px and below (iPhone SE / Mini)
   ════════════════════════════════════════════════════════════════════ */

@media (max-width: 380px) {
  .subpage-masthead-logo { width: 97px; }
  .intro-headline { font-size: 28px; }
  .intro-subhero { font-size: 20px; }
  .release-title { font-size: 24px; }
  .founder-name { font-size: 24px; }
  .ecosystem-grid > .ecosystem-card { flex: 0 1 100%; }
  .menu-link { font-size: 22px; }
}
