:root {
  --navy: #0b1f35;
  --navy-2: #122c49;
  --blue: #1e5f9d;
  --blue-2: #4f86b8;
  --gold: #b9954f;
  --ink: #17212b;
  --body: #4f5d6a;
  --muted: #7a8794;
  --line: #d9e0e8;
  --soft-line: #edf1f5;
  --paper: #ffffff;
  --surface: #f4f7fa;
  --surface-2: #e9eef4;
  --danger: #b94a42;
  --green: #5f7f68;
  --max: 1240px;
  --shadow: 0 18px 45px rgba(11, 31, 53, 0.12);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: Inter, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "DM Mono", "Consolas", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.62;
  background:
    linear-gradient(rgba(11,31,53,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,31,53,0.028) 1px, transparent 1px),
    var(--surface);
  background-size: 48px 48px;
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 160;
  width: 100%;
  height: 3px;
  pointer-events: none;
  background: transparent;
}

.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  box-shadow: 0 0 18px rgba(194, 160, 90, 0.35);
  transform-origin: left center;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--gold);
  color: #07121d;
  font-weight: 800;
}

.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  border-bottom: 1px solid rgba(11, 31, 53, 0.1);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 6px 22px rgba(11, 31, 53, 0.08);
}

.nav-shell {
  width: min(var(--max), calc(100% - 56px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
}

.brand-copy {
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.nav-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 13px;
}

.nav-menu a {
  color: #3c4c5c;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] { color: var(--blue); }

.language-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  background: #fff;
}

.language-switch button,
.language-switch a {
  width: 44px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.language-switch button[aria-pressed="true"],
.language-switch button:hover,
.language-switch a[aria-current="true"],
.language-switch a:hover {
  background: var(--navy);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.section-inner,
.section-shell {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 92svh;
  padding: 132px 0 58px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 18vh;
  background: linear-gradient(transparent, rgba(244,247,250,0.96));
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11,31,53,0.96) 0%, rgba(11,31,53,0.84) 42%, rgba(11,31,53,0.24) 100%),
    radial-gradient(circle at 78% 36%, rgba(79,134,184,0.45), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,0.08) 0 24%, transparent 24% 100%),
    var(--navy);
}

.hero-video {
  position: absolute;
  inset: 0;
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
}

.hero-video.is-ready { display: block; }

.hero-filter {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,31,53,0.92), rgba(11,31,53,0.42));
}

.mesh-layer {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.09) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 0%, black 54%, transparent 100%);
}

.industrial-plate {
  position: absolute;
  right: 5vw;
  bottom: 10vh;
  width: min(42vw, 620px);
  aspect-ratio: 1.45;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.78), rgba(255,255,255,0.08)),
    repeating-linear-gradient(90deg, rgba(11,31,53,0.16) 0 1px, transparent 1px 24px);
  border: 1px solid rgba(255,255,255,0.36);
  box-shadow: 0 32px 75px rgba(0,0,0,0.28);
  transform: skewX(-8deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 58px;
  align-items: end;
}

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

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0;
}

h1, h2, h3 {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

h1, h2 {
  font-family: var(--font-display);
  font-weight: 700;
}

h3 { font-family: var(--font-sans); }

.hero h1 { color: #fff; }
h1 { max-width: 960px; font-size: 76px; }
h2 { font-size: 42px; }
h3 { font-size: 23px; }

.lead {
  max-width: 780px;
  margin: 24px 0 0;
  color: #dce7f2;
  font-size: 21px;
}

.page-hero .lead,
.policy-page .lead { color: var(--body); }

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.badge-row span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.framework-disclaimer {
  max-width: 690px;
  margin: 18px 0 0;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.btn.primary { background: var(--gold); color: #07121d; }
.btn.secondary { border-color: rgba(255,255,255,0.35); color: #fff; background: rgba(255,255,255,0.08); }

.status-panel,
.stat-card,
.division-row,
.portfolio-card,
.technical-panel,
.process-step,
.matrix-item,
.contact-card,
.feature-band,
.parent-company,
.subsidiary-card,
.tech-section,
.tech-box,
.security-notice,
.capability-card,
.domain-card,
.policy-panel,
.matrix-row {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.status-panel:hover,
.stat-card:hover,
.division-row:hover,
.portfolio-card:hover,
.technical-panel:hover,
.process-step:hover,
.matrix-item:hover,
.contact-card:hover,
.feature-band:hover,
.parent-company:hover,
.subsidiary-card:hover,
.tech-section:hover,
.tech-box:hover,
.capability-card:hover,
.domain-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30,95,157,0.28);
  box-shadow: 0 28px 65px rgba(11,31,53,0.16);
}

.status-panel { padding: 32px; border-top: 5px solid var(--gold); }
.status-panel span { display: block; color: var(--blue); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.status-panel strong { display: flex; align-items: center; gap: 12px; margin-top: 16px; color: var(--navy); font-size: 27px; font-weight: 900; line-height: 1.12; }

.status-panel strong::before,
.review-status-bar strong:first-of-type::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(194, 160, 90, 0.42);
  animation: statusPulse 2.6s ease-out infinite;
}

@keyframes statusPulse {
  0% { box-shadow: 0 0 0 0 rgba(194, 160, 90, 0.42); }
  70% { box-shadow: 0 0 0 9px rgba(194, 160, 90, 0); }
  100% { box-shadow: 0 0 0 0 rgba(194, 160, 90, 0); }
}

.status-list {
  display: grid;
  gap: 0;
  margin: 20px 0 0;
  border-top: 1px solid var(--line);
}

.status-list div {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--soft-line);
}

.status-list dt {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.status-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.status-panel p,
.division-row p,
.portfolio-card p,
.technical-panel p,
.process-step p,
.matrix-item p,
.contact-card p,
.feature-band p,
.text-columns p,
.site-footer p,
.parent-company p,
.subsidiary-card p,
.tech-section p,
.tech-box p,
.security-notice p,
.portfolio-intro p,
.capability-card p,
.domain-card p,
.policy-panel p,
.matrix-cell {
  color: var(--body);
}

.stats-band {
  padding: 42px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.media-band {
  padding: 96px 0;
  background: var(--surface);
}

.media-split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: center;
}

.media-copy p {
  color: var(--body);
}

.media-figure {
  margin: 0;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.media-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card { min-height: 168px; padding: 28px; }
.stat-card strong {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 34px;
  font-weight: 900;
}
.stat-card span { display: block; margin-top: 14px; color: var(--ink); font-weight: 900; }
.stat-card small { display: block; margin-top: 8px; color: var(--muted); font-weight: 700; }

.credential-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-left: 1px solid var(--line);
}

.credential-item {
  min-height: 104px;
  padding: 22px 20px;
  border-right: 1px solid var(--line);
}

.credential-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.credential-item strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.counter-value {
  font-variant-numeric: tabular-nums;
}

.fact-ledger {
  display: grid;
  border: 1px solid var(--line);
  background: #fff;
}

.fact-ledger div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--soft-line);
}

.fact-ledger div:last-child { border-bottom: 0; }

.fact-ledger span {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.fact-ledger strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
}

.fact-ledger a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.record-timeline {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: 38px;
  padding-bottom: 38px;
}

.record-timeline ol {
  list-style: none;
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.record-timeline li {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.record-timeline li:last-child {
  border-right: 0;
}

.record-timeline span {
  display: block;
  font-family: var(--font-mono);
  color: var(--blue);
  font-size: 0.78rem;
  margin-bottom: 14px;
}

.record-timeline strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.record-timeline p {
  color: var(--muted);
  margin: 0;
}

.readiness-section {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(233,238,244,0.78)),
    var(--surface);
}

.readiness-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.readiness-heading p {
  color: var(--body);
  font-size: 18px;
}

.readiness-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.gate-section .readiness-grid {
  position: relative;
  box-shadow: 0 24px 70px rgba(11, 31, 53, 0.08);
}

.gate-section .readiness-card {
  min-height: 260px;
  padding-top: 34px;
}

.entry-flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: #fff;
}

.entry-step {
  min-height: 230px;
  padding: 28px 22px;
  border-right: 1px solid var(--line);
  position: relative;
}

.entry-step:last-child { border-right: 0; }

.entry-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), rgba(196, 180, 138, 0.72));
}

.entry-step span {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 900;
  color: var(--gold);
}

.entry-step h3 {
  margin-top: 22px;
  font-size: 22px;
}

.entry-step p {
  color: var(--body);
  font-size: 14px;
}

.public-record-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(239,243,247,0.84)),
    var(--surface);
}

.record-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.press-record-grid {
  grid-template-columns: repeat(3, 1fr);
}

.record-card {
  min-height: 310px;
  padding: 30px;
  background: #fff;
}

.record-card span,
.journal-list time {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.record-card h3 {
  margin-top: 18px;
  font-size: 24px;
}

.record-card p {
  color: var(--body);
}

.journal-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.journal-list li {
  padding: 18px 0;
  border-top: 1px solid var(--soft-line);
}

.journal-list strong {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.55;
}

.text-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--blue);
  font-family: var(--font-ui);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.journey-list {
  margin: 24px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--soft-line);
}

.journey-list li {
  padding: 14px 0 14px 22px;
  border-bottom: 1px solid var(--soft-line);
  color: var(--body);
  position: relative;
}

.journey-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
}

.reference-section {
  background: #fff;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.reference-card {
  display: block;
  min-height: 292px;
  padding: 30px;
  background: #fff;
}

.reference-card span,
.status-tag {
  display: inline-block;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.reference-card h3 {
  margin-top: 18px;
  font-size: 24px;
}

.reference-card p {
  color: var(--body);
}

.spec-table a,
.status-tag a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.record-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}

.reference-card:hover {
  background: var(--surface);
}

.framework-disclaimer.strong {
  max-width: 980px;
  margin: 24px 0 0;
  padding: 18px 20px;
  border-left: 5px solid var(--gold);
  background: rgba(185,149,79,0.08);
  color: var(--ink);
  font-weight: 700;
}

.readiness-card {
  min-height: 270px;
  padding: 30px;
  background: #fff;
  position: relative;
}

.readiness-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
}

.readiness-card span {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 900;
}

.readiness-card h3 {
  margin-top: 22px;
  font-size: 24px;
}

.readiness-card p {
  color: var(--body);
}

.content-section { padding: 96px 0; }
.content-section:nth-of-type(even) { background: #fff; }

.page-hero,
.policy-page {
  padding-top: 170px;
}

.page-hero {
  padding-bottom: 88px;
  background:
    linear-gradient(100deg, rgba(255,255,255,0.94) 0 58%, rgba(233,238,244,0.86) 58% 100%),
    var(--surface-2);
  border-bottom: 1px solid var(--line);
}

.policy-page {
  padding-bottom: 96px;
}

.narrow { max-width: 940px; }

.portfolio-intro {
  max-width: 920px;
  margin-top: 26px;
  font-size: 20px;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 64px;
}

.section-heading { position: sticky; top: 120px; align-self: start; }

.division-list,
.portfolio-stack,
.structure-tree,
.tech-stack {
  display: grid;
  gap: 18px;
}

.division-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 32px;
  border-left: 5px solid var(--blue);
}

.division-row > span,
.card-index,
.process-step span {
  color: var(--blue);
  font-weight: 900;
}

.feature-band { padding: 54px; border-left: 6px solid var(--blue); }

.portfolio-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  padding: 48px;
  scroll-margin-top: 116px;
}

.portfolio-grid,
.capability-grid,
.rnd-grid,
.logistics-grid,
.compliance-matrix.cards,
.contact-grid,
.subsidiary-grid,
.tech-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

.portfolio-grid,
.capability-grid,
.logistics-grid,
.contact-grid,
.subsidiary-grid,
.process-grid {
  grid-template-columns: repeat(3, 1fr);
}

.rnd-grid,
.tech-grid {
  grid-template-columns: repeat(2, 1fr);
}

.compliance-matrix.cards {
  grid-template-columns: repeat(2, 1fr);
}

.technical-panel,
.process-step,
.matrix-item,
.contact-card,
.subsidiary-card,
.tech-section,
.tech-box,
.capability-card,
.domain-card,
.policy-panel {
  padding: 40px;
}

.capability-card,
.domain-card {
  border-top: 5px solid var(--blue);
}

.capability-card:nth-child(2),
.domain-card:nth-child(2) { border-top-color: var(--gold); }
.capability-card:nth-child(3),
.domain-card:nth-child(3) { border-top-color: var(--green); }
.capability-card:nth-child(4),
.domain-card:nth-child(4) { border-top-color: var(--danger); }

.parent-company {
  padding: 58px;
  text-align: center;
  background: linear-gradient(135deg, #fff 0 62%, #eaf1f8 62% 100%);
  border-top: 6px solid var(--blue);
}

.parent-company p:last-child { max-width: 860px; margin: 20px auto 0; }
.org-map {
  padding: 34px;
  background:
    linear-gradient(90deg, rgba(11,31,53,0.04) 1px, transparent 1px),
    linear-gradient(rgba(11,31,53,0.04) 1px, transparent 1px),
    #fff;
  background-size: 42px 42px;
  border: 1px solid var(--line);
}

.org-node {
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.92);
  text-align: center;
}

.org-node span {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--blue);
}

.org-node strong {
  display: block;
  font-size: 17px;
}

.org-parent,
.org-compliance {
  max-width: 620px;
  margin: 0 auto;
}

.org-compliance {
  border-color: rgba(196,180,138,0.58);
}

.org-branches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.org-connector {
  width: 1px;
  height: 32px;
  margin: 0 auto;
  background: var(--line);
}

.subsidiary-card.defense { border-top: 6px solid var(--danger); }
.subsidiary-card.research { border-top: 6px solid var(--gold); }
.subsidiary-card.civilian { border-top: 6px solid var(--green); }

.spec-list {
  margin: 24px 0 0;
  padding: 20px 0 0;
  list-style: none;
  border-top: 1px solid var(--soft-line);
}

.spec-list li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 20px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.spec-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 7px;
  height: 7px;
  background: var(--blue);
  transform: translateY(-50%);
}

.tech-section-header { margin-bottom: 24px; padding-left: 20px; border-left: 4px solid var(--blue); }
.tech-section-header.gold { border-left-color: var(--gold); }
.tech-section > p { max-width: 930px; }
.tech-grid { margin-top: 28px; }
.tech-box { background: var(--surface); box-shadow: none; }

.spec-table {
  display: grid;
  margin-top: 26px;
  border: 1px solid var(--line);
}

.spec-table div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  border-bottom: 1px solid var(--soft-line);
}

.spec-table div:last-child { border-bottom: 0; }
.spec-table span, .spec-table strong { padding: 16px; }
.spec-table span { color: var(--body); background: #edf4fb; text-transform: uppercase; font-size: 13px; font-weight: 900; }
.spec-table strong { display: flex; align-items: center; gap: 12px; color: var(--ink); }

.metric-icon {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(185,149,79,0.42);
  color: var(--gold);
  font-style: normal;
  font-size: 11px;
  font-weight: 900;
}

.security-notice {
  padding: 42px;
  border: 1px solid rgba(185,74,66,0.2);
  border-left: 6px solid var(--danger);
  background: #fff7f6;
}

.compliance-matrix {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  margin-top: 2rem;
}

.matrix-row {
  display: grid;
  grid-template-columns: 60px 240px 1fr 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  box-shadow: none;
  background: transparent;
  align-items: start;
}

.matrix-cell { font-size: 14px; line-height: 1.5; }
.matrix-index { font-weight: 900; color: var(--gold); font-variant-numeric: tabular-nums; }
.matrix-title { font-weight: 900; text-transform: uppercase; }

.review-status-bar {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1fr 1fr;
  gap: 1px;
  max-width: var(--max);
  margin: 34px auto 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.review-status-bar span,
.review-status-bar strong {
  display: block;
  min-height: 76px;
  padding: 20px 22px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
}

.review-status-bar span {
  color: var(--body);
  font-family: var(--font-mono);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.review-status-bar strong {
  color: var(--blue);
  font-size: 18px;
}

.diagram-orbit {
  position: relative;
  width: 100%;
  height: 210px;
  margin-bottom: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at center, rgba(30,95,157,0.2), transparent 8%),
    repeating-linear-gradient(0deg, transparent 0 20px, rgba(11,31,53,0.04) 21px),
    repeating-linear-gradient(90deg, transparent 0 20px, rgba(11,31,53,0.04) 21px),
    #f7fafc;
}

.diagram-orbit span { position: absolute; inset: 38px; border: 1px solid rgba(185,149,79,0.45); border-radius: 50%; }
.diagram-orbit span:nth-child(2) { inset: 70px 24px; border-color: rgba(30,95,157,0.45); }
.diagram-orbit span:nth-child(3) { inset: 24px 82px; border-color: rgba(11,31,53,0.18); }
.diagram-orbit.counter { transform: scaleX(-1); }

.text-columns { columns: 2; column-gap: 34px; }
.contact-card a { color: var(--blue); font-weight: 800; }

.stat-card a,
.matrix-cell a,
.site-footer a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.stat-card strong a {
  display: inline-block;
  font-size: inherit;
  font-weight: 900;
}

.metric-separator {
  color: var(--muted);
  font-weight: 800;
}

a.stat-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

a.stat-card strong {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.linked-stat strong {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  align-items: baseline;
}

.linked-stat strong span {
  color: var(--blue);
}

.site-footer a {
  color: #dce7f2;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.press-card {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.press-card time {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.press-card p {
  color: var(--body);
}

.secure-form {
  display: grid;
  gap: 18px;
  padding: 40px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.secure-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.secure-form input,
.secure-form select,
.secure-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

.secure-form textarea {
  resize: vertical;
}

.secure-form a:not(.btn) {
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.intake-protocol {
  align-self: start;
}

.intake-list {
  display: grid;
  gap: 10px;
  margin: 8px 0;
}

.intake-list span {
  display: block;
  padding: 12px 14px;
  border-left: 4px solid var(--gold);
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
}

.form-note {
  padding: 16px;
  border: 1px solid rgba(185,74,66,0.24);
  border-left: 5px solid var(--danger);
  background: rgba(185,74,66,0.05);
  color: var(--ink) !important;
  font-weight: 700;
}

.form-status,
.intake-hint {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.form-status:not(:empty) {
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--navy);
  font-weight: 800;
}

.consent-row {
  display: flex !important;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--body) !important;
  font-size: 12px !important;
  line-height: 1.5;
  text-transform: none !important;
}

.consent-row input {
  width: auto;
  margin-top: 3px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.privacy-notice {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 680px;
  padding: 20px 22px;
  border: 1px solid rgba(11,31,53,0.16);
  border-top: 4px solid var(--gold);
  background: rgba(255,255,255,0.96);
  box-shadow: 0 24px 70px rgba(11,31,53,0.18);
  backdrop-filter: blur(18px);
}

.privacy-notice[hidden] { display: none; }

.privacy-notice p {
  margin: 0;
  color: var(--body);
  font-size: 14px;
  line-height: 1.45;
}

.privacy-notice strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.privacy-notice a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-notice button {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer {
  padding: 54px 0;
  background: var(--navy);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1.15fr 1fr;
  gap: 36px;
}

.footer-brand { margin-bottom: 18px; }
.site-footer .brand-mark { background: #fff; color: var(--navy); }
.site-footer .brand-copy, .site-footer h2 { color: #fff; }
.site-footer p { color: #c8d4df; }
.site-footer h2 { margin-bottom: 12px; font-size: 13px; text-transform: uppercase; }
.footer-legal {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.14);
  color: #9fb0bf !important;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible { opacity: 1; transform: none; }

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

  .reading-progress span {
    box-shadow: none;
  }
}

@media (max-width: 1060px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute;
    left: 28px;
    right: 28px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
  }
  .nav-menu.is-open { display: flex; }
  .hero-grid, .split-layout, .rnd-grid, .footer-grid, .media-split, .review-status-bar { grid-template-columns: 1fr; }
  .section-heading { position: static; }
  .stats-grid,
  .credential-grid,
  .readiness-grid,
  .entry-flow,
  .record-grid,
  .reference-grid,
  .portfolio-grid,
  .capability-grid,
  .press-grid,
  .logistics-grid,
  .contact-grid,
  .compliance-matrix.cards,
  .subsidiary-grid,
  .org-branches,
  .tech-grid,
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .text-columns { columns: 1; }
  h1 { font-size: 56px; }
  h2 { font-size: 34px; }
}

@media (max-width: 680px) {
  .nav-shell, .section-inner, .section-shell { width: min(100% - 28px, var(--max)); }
  .brand-copy { display: none; }
  .hero { min-height: auto; padding-top: 132px; }
  .industrial-plate { width: 82vw; opacity: 0.35; }
  .stats-grid,
  .credential-grid,
  .readiness-grid,
  .entry-flow,
  .record-grid,
  .reference-grid,
  .portfolio-grid,
  .capability-grid,
  .press-grid,
  .logistics-grid,
  .contact-grid,
  .compliance-matrix.cards,
  .subsidiary-grid,
  .org-branches,
  .tech-grid,
  .process-grid,
  .spec-table div,
  .fact-ledger div,
  .record-timeline ol,
  .matrix-row { grid-template-columns: 1fr; }
  .record-timeline li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .record-timeline li:last-child { border-bottom: 0; }
  .portfolio-card, .division-row { grid-template-columns: 1fr; }
  .content-section { padding: 66px 0; }
  .privacy-notice {
    right: 14px;
    left: 14px;
    bottom: 14px;
    grid-template-columns: 1fr;
  }
  h1 { font-size: 40px; }
  h2 { font-size: 28px; }
  .lead { font-size: 18px; }
  .feature-band,
  .technical-panel,
  .process-step,
  .matrix-item,
  .contact-card,
  .subsidiary-card,
  .tech-section,
  .tech-box,
  .security-notice,
  .parent-company,
  .status-panel,
  .capability-card,
  .domain-card,
  .policy-panel { padding: 26px; }
}
