@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500&family=Manrope:wght@400;500;600;700&family=Newsreader:opsz,wght@6..72,300;6..72,400;6..72,500&display=swap");

:root {
  color-scheme: dark;
  --ink: #050706;
  --ink-raised: #0a0d0b;
  --ink-soft: #101410;
  --paper: #f0eee7;
  --paper-muted: #a7ada6;
  --gold: #d1a75b;
  --gold-bright: #ebc77e;
  --sage: #aab8ad;
  --line: rgba(209, 167, 91, 0.2);
  --line-soft: rgba(240, 238, 231, 0.11);
  --header-height: 96px;
  --page-pad: clamp(22px, 4vw, 72px);
  --content: 1480px;
  --pointer-x: 0;
  --pointer-y: 0;
  --section-depth: 0;
  font-family: "DM Sans", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

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

html {
  background: var(--ink);
  scroll-behavior: smooth;
  scrollbar-color: var(--gold) var(--ink);
  scrollbar-width: thin;
}

body {
  background:
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    var(--ink);
  background-size: 72px 72px;
  color: var(--paper);
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
}

body::before {
  background: radial-gradient(circle at 50% 15%, rgba(209, 167, 91, 0.055), transparent 38%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: 20;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Manrope", Arial, sans-serif;
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.skip-link {
  background: var(--gold);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  left: 20px;
  padding: 12px 16px;
  position: fixed;
  top: -100px;
  z-index: 10000;
}

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

.scroll-meter {
  background: rgba(255, 255, 255, 0.04);
  height: 2px;
  inset: 0 0 auto;
  position: fixed;
  z-index: 10001;
}

.scroll-meter span {
  background: linear-gradient(90deg, #89662b, var(--gold-bright));
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(22px) saturate(120%);
  background: linear-gradient(180deg, rgba(5, 7, 6, 0.94), rgba(5, 7, 6, 0.78));
  border-bottom: 1px solid transparent;
  display: grid;
  gap: 24px;
  grid-template-columns: auto 1fr;
  height: var(--header-height);
  inset: 2px 0 auto;
  padding: 10px var(--page-pad);
  position: fixed;
  transition:
    background 260ms ease,
    border 260ms ease,
    height 260ms ease,
    transform 320ms ease;
  z-index: 1000;
}

.site-header.is-compact {
  background: rgba(5, 7, 6, 0.96);
  border-color: var(--line);
  height: 78px;
}

.site-header.is-hidden {
  transform: translateY(-110%);
}

.brand {
  align-items: center;
  display: flex;
  min-height: 56px;
  position: relative;
  z-index: 4;
}

.brand img {
  height: clamp(53px, 5vw, 68px);
  object-fit: contain;
  object-position: left center;
  width: auto;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(16px, 2vw, 34px);
  justify-content: flex-end;
}

.nav-links,
.nav-actions {
  align-items: center;
  display: flex;
}

.nav-links {
  gap: clamp(12px, 1.35vw, 26px);
}

.nav-links a,
.language-link,
.nav-contact {
  align-items: center;
  color: rgba(240, 238, 231, 0.72);
  display: inline-flex;
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  min-height: 44px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
  white-space: nowrap;
}

.nav-links a::after,
.language-link::after,
.nav-contact::after {
  background: var(--gold);
  bottom: 5px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
  width: 100%;
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.language-link:hover,
.nav-contact:hover {
  color: var(--paper);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after,
.language-link:hover::after,
.nav-contact:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  border-left: 1px solid var(--line-soft);
  gap: 13px;
  padding-left: 18px;
}

.language-link {
  color: var(--gold-bright);
}

.nav-emergency {
  align-items: center;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--ink);
  display: inline-flex;
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  font-weight: 700;
  gap: 9px;
  letter-spacing: 0.11em;
  min-height: 44px;
  padding: 0 16px;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease;
  white-space: nowrap;
}

.nav-emergency:hover {
  background: transparent;
  color: var(--gold-bright);
}

.menu-button {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--paper);
  display: none;
  height: 48px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 48px;
  z-index: 4;
}

.menu-button > span:not(.sr-only) {
  background: currentColor;
  height: 1px;
  left: 13px;
  position: absolute;
  transition: transform 220ms ease;
  width: 20px;
}

.menu-button > span:nth-last-child(2) {
  transform: translateY(-4px);
}

.menu-button > span:last-child {
  transform: translateY(4px);
}

.menu-button[aria-expanded="true"] > span:nth-last-child(2) {
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] > span:last-child {
  transform: rotate(-45deg);
}

.page-hero {
  align-items: end;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.56fr);
  min-height: max(760px, 100svh);
  overflow: hidden;
  padding: calc(var(--header-height) + 68px) var(--page-pad) 54px;
  position: relative;
}

.page-hero::before {
  background:
    linear-gradient(90deg, rgba(5, 7, 6, 0.96) 0%, rgba(5, 7, 6, 0.58) 43%, rgba(5, 7, 6, 0.25) 73%, rgba(5, 7, 6, 0.85) 100%),
    linear-gradient(0deg, var(--ink) 0%, transparent 35%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero-noise {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  inset: 0;
  mix-blend-mode: soft-light;
  opacity: 0.055;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.atlas-visual {
  inset: 0;
  overflow: hidden;
  perspective: 1200px;
  pointer-events: none;
  position: absolute;
  transform-style: preserve-3d;
}

.atlas-poster {
  background-image: url("/operational-atlas-poster.webp");
  background-position: center;
  background-size: cover;
  filter: saturate(0.72) contrast(1.12) brightness(0.5);
  inset: -5%;
  opacity: 0.56;
  position: absolute;
  transform: translate3d(calc(var(--pointer-x) * -16px), calc(var(--pointer-y) * -13px), -30px) scale(1.08);
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0, 1);
}

.atlas-depth {
  border: 1px solid var(--line);
  border-radius: 50%;
  left: 68%;
  position: absolute;
  top: 48%;
  transform-style: preserve-3d;
}

.atlas-depth--far {
  height: min(72vw, 1100px);
  transform: translate(-50%, -50%) rotateX(67deg) rotateZ(-14deg) translate3d(calc(var(--pointer-x) * 36px), calc(var(--pointer-y) * 24px), 0);
  width: min(72vw, 1100px);
}

.atlas-depth--near {
  box-shadow:
    0 0 0 45px rgba(209, 167, 91, 0.022),
    0 0 0 110px rgba(209, 167, 91, 0.018),
    0 0 100px rgba(209, 167, 91, 0.1);
  height: min(36vw, 540px);
  transform: translate(-50%, -50%) rotateX(67deg) rotateZ(-14deg) translate3d(calc(var(--pointer-x) * 68px), calc(var(--pointer-y) * 42px), 70px);
  width: min(36vw, 540px);
}

.atlas-grid {
  height: min(88vw, 1050px);
  left: 68%;
  opacity: 0.9;
  position: absolute;
  top: 49%;
  transform: translate(-50%, -50%) translate3d(calc(var(--pointer-x) * 30px), calc(var(--pointer-y) * 22px), 20px) rotate(2deg);
  transition: transform 1000ms cubic-bezier(0.2, 0.7, 0, 1);
  width: min(88vw, 1050px);
}

.atlas-nodes {
  inset: 0;
  position: absolute;
  transform: translate3d(calc(var(--pointer-x) * 48px), calc(var(--pointer-y) * 36px), 50px);
  transition: transform 680ms ease-out;
}

.atlas-nodes i {
  animation: node-pulse 2.8s calc(var(--d) * -0.33s) ease-in-out infinite;
  background: var(--gold-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(209, 167, 91, 0.09), 0 0 24px var(--gold);
  height: 4px;
  left: var(--x);
  position: absolute;
  top: var(--y);
  width: 4px;
}

.atlas-core {
  align-items: center;
  border: 1px solid rgba(209, 167, 91, 0.48);
  border-radius: 50%;
  box-shadow:
    inset 0 0 38px rgba(209, 167, 91, 0.08),
    0 0 70px rgba(209, 167, 91, 0.1);
  display: flex;
  flex-direction: column;
  height: 144px;
  justify-content: center;
  left: 68%;
  position: absolute;
  top: 49%;
  transform: translate(-50%, -50%) translate3d(calc(var(--pointer-x) * 92px), calc(var(--pointer-y) * 70px), 90px);
  transition: transform 560ms ease-out;
  width: 144px;
}

.atlas-core::before,
.atlas-core::after {
  border: 1px solid rgba(209, 167, 91, 0.13);
  border-radius: inherit;
  content: "";
  inset: -34px;
  position: absolute;
}

.atlas-core::after {
  inset: -69px;
}

.atlas-core span {
  color: var(--gold-bright);
  font-family: "Manrope", sans-serif;
  font-size: 36px;
  font-weight: 300;
  letter-spacing: -0.05em;
}

.atlas-core small {
  color: var(--paper-muted);
  font-size: 8px;
  letter-spacing: 0.18em;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-content {
  align-self: center;
  max-width: 850px;
  padding-top: 5vh;
  position: relative;
  z-index: 4;
}

.hero-breadcrumb {
  align-items: center;
  color: rgba(240, 238, 231, 0.46);
  display: flex;
  font-size: 9px;
  gap: 10px;
  letter-spacing: 0.13em;
  margin-bottom: clamp(40px, 8vh, 95px);
  text-transform: uppercase;
}

.hero-breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

.eyebrow {
  color: var(--gold-bright);
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.21em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: var(--gold);
  content: "";
  display: inline-block;
  height: 1px;
  margin-right: 13px;
  vertical-align: middle;
  width: 28px;
}

.hero-content h1 {
  font-size: clamp(50px, 6.4vw, 108px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.94;
  margin: 0;
  max-width: 980px;
  text-wrap: balance;
}

.hero-description {
  color: rgba(240, 238, 231, 0.68);
  font-size: clamp(16px, 1.4vw, 21px);
  font-weight: 300;
  line-height: 1.64;
  margin: 32px 0 0;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 700;
  gap: 24px;
  justify-content: space-between;
  letter-spacing: 0.12em;
  min-height: 54px;
  padding: 0 22px;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.button--primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

.button--ghost {
  border-color: rgba(240, 238, 231, 0.24);
  color: var(--paper);
}

.button--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.hero-stats {
  align-self: end;
  border-left: 1px solid var(--line);
  display: grid;
  gap: 24px;
  justify-self: end;
  max-width: 360px;
  padding: 10px 0 10px 34px;
  position: relative;
  width: 100%;
  z-index: 5;
}

.hero-stat {
  display: grid;
  gap: 4px;
  grid-template-columns: minmax(90px, 0.7fr) 1fr;
}

.hero-stat strong {
  color: var(--gold-bright);
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.hero-stat span {
  color: rgba(240, 238, 231, 0.52);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-cue {
  align-items: center;
  bottom: 36px;
  display: flex;
  gap: 16px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 4;
}

.scroll-cue span {
  color: rgba(240, 238, 231, 0.42);
  font-size: 8px;
  letter-spacing: 0.19em;
}

.scroll-cue i {
  border: 1px solid var(--line);
  border-radius: 999px;
  height: 44px;
  position: relative;
  width: 23px;
}

.scroll-cue i::before {
  animation: scroll-cue 1.8s ease-in-out infinite;
  background: var(--gold);
  border-radius: 50%;
  content: "";
  height: 3px;
  left: 9px;
  position: absolute;
  top: 9px;
  width: 3px;
}

.atlas-content {
  margin: 0 auto;
  max-width: var(--content);
  padding: 0 var(--page-pad);
  position: relative;
}

.atlas-content::before {
  background: linear-gradient(var(--line), rgba(209, 167, 91, 0.02));
  content: "";
  left: var(--page-pad);
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
}

.content-section {
  border-top: 1px solid var(--line-soft);
  min-height: 70vh;
  padding: clamp(100px, 13vw, 190px) clamp(0px, 4vw, 64px);
  perspective: 1200px;
  position: relative;
  transform: translate3d(0, calc(var(--section-depth) * 10px), 0);
}

.content-section::before {
  background: radial-gradient(circle, rgba(209, 167, 91, 0.09), transparent 68%);
  border: 1px solid rgba(209, 167, 91, 0.06);
  border-radius: 50%;
  content: "";
  height: min(50vw, 640px);
  pointer-events: none;
  position: absolute;
  right: -18vw;
  top: 12%;
  transform: translate3d(0, calc(var(--section-depth) * -48px), -50px) scale(calc(1 - abs(var(--section-depth)) * 0.035));
  width: min(50vw, 640px);
}

.section-marker {
  color: rgba(209, 167, 91, 0.26);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  left: -4px;
  letter-spacing: 0.2em;
  position: absolute;
  top: 42px;
  writing-mode: vertical-rl;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(150px, 0.33fr) minmax(0, 1fr);
  margin-bottom: clamp(54px, 8vw, 110px);
  position: relative;
  z-index: 2;
}

.section-heading .eyebrow {
  padding-top: 15px;
}

.section-heading h2 {
  font-size: clamp(37px, 5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.02;
  margin: 0;
  max-width: 1000px;
  text-wrap: balance;
}

.statement-grid {
  align-items: end;
  display: grid;
  gap: clamp(40px, 8vw, 140px);
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.4fr);
  margin-left: 33%;
  position: relative;
  z-index: 2;
}

.statement-copy,
.split-copy {
  color: rgba(240, 238, 231, 0.73);
  font-size: clamp(20px, 2.3vw, 34px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.52;
  margin-bottom: 0;
}

.statement-aside {
  border: 1px solid var(--line);
  padding: 28px;
  position: relative;
}

.statement-aside::after {
  border-left: 8px solid transparent;
  border-top: 8px solid var(--gold);
  content: "";
  position: absolute;
  right: -1px;
  top: -1px;
}

.statement-aside > span {
  color: var(--gold);
  display: block;
  font-size: 26px;
  margin-bottom: 40px;
}

.statement-aside p {
  color: var(--paper-muted);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 0;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-left: 16.5%;
  position: relative;
  z-index: 2;
}

.capability-card {
  border: 1px solid var(--line-soft);
  color: inherit;
  display: grid;
  gap: 48px;
  grid-template-rows: auto 1fr auto;
  margin: -1px 0 0 -1px;
  min-height: 350px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 56px);
  position: relative;
  text-decoration: none;
  transition:
    background 280ms ease,
    border 280ms ease,
    transform 280ms ease;
}

.capability-card::before {
  background: linear-gradient(135deg, transparent, rgba(209, 167, 91, 0.08));
  content: "";
  inset: 0;
  opacity: 0;
  transition: opacity 280ms ease;
}

.capability-card:hover {
  background: rgba(209, 167, 91, 0.03);
  border-color: rgba(209, 167, 91, 0.42);
  transform: translate3d(0, -5px, 30px);
  z-index: 3;
}

.capability-card:hover::before {
  opacity: 1;
}

.card-index {
  color: var(--gold);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
}

.capability-card h3 {
  font-size: clamp(26px, 2.5vw, 42px);
  font-weight: 400;
  letter-spacing: -0.045em;
  margin-bottom: 18px;
}

.capability-card p {
  color: var(--paper-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
}

.card-meta {
  align-items: end;
  border-top: 1px solid var(--line-soft);
  color: rgba(240, 238, 231, 0.44);
  display: flex;
  font-size: 8px;
  justify-content: space-between;
  letter-spacing: 0.14em;
  padding-top: 18px;
}

.card-meta i,
.card-meta b {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

.mission-steps {
  counter-reset: step;
  list-style: none;
  margin: 0 0 0 33%;
  padding: 0;
  position: relative;
  z-index: 2;
}

.mission-steps::before {
  background: linear-gradient(var(--gold), rgba(209, 167, 91, 0.08));
  content: "";
  height: calc(100% - 76px);
  left: 37px;
  position: absolute;
  top: 38px;
  width: 1px;
}

.mission-steps li {
  align-items: start;
  display: grid;
  gap: clamp(24px, 5vw, 70px);
  grid-template-columns: 76px 1fr;
  min-height: 150px;
  padding-bottom: 28px;
  position: relative;
}

.step-number {
  align-items: center;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  display: flex;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  height: 76px;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.mission-steps h3 {
  font-size: clamp(27px, 3vw, 44px);
  font-weight: 400;
  letter-spacing: -0.04em;
  margin: 10px 0 10px;
}

.mission-steps p {
  color: var(--paper-muted);
  line-height: 1.65;
  margin: 0;
  max-width: 620px;
}

.split-layout {
  align-items: start;
  display: grid;
  gap: clamp(54px, 10vw, 150px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
  margin-left: 16.5%;
  position: relative;
  z-index: 2;
}

.signal-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.signal-list li {
  align-items: center;
  border-bottom: 1px solid var(--line-soft);
  color: rgba(240, 238, 231, 0.72);
  display: flex;
  font-size: 13px;
  gap: 18px;
  line-height: 1.5;
  min-height: 75px;
}

.signal-list li span {
  border: 1px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(209, 167, 91, 0.24);
  height: 7px;
  width: 7px;
}

.shomer-orbit {
  min-height: 780px;
  position: relative;
}

.shomer-orbit::before,
.shomer-orbit::after {
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
  height: 590px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 590px;
}

.shomer-orbit::after {
  border-color: var(--line-soft);
  height: 420px;
  width: 420px;
}

.shomer-core {
  align-items: center;
  background: radial-gradient(circle, rgba(209, 167, 91, 0.16), rgba(5, 7, 6, 0.96) 67%);
  border: 1px solid rgba(209, 167, 91, 0.5);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  height: 230px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 230px;
  z-index: 2;
}

.shomer-core span {
  color: var(--gold-bright);
  font-size: 50px;
}

.shomer-core small {
  color: var(--paper-muted);
  font-size: 9px;
  letter-spacing: 0.2em;
}

.shomer-orbit ol {
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  width: 100%;
}

.shomer-orbit li {
  align-items: center;
  display: flex;
  gap: 18px;
  left: calc(50% + cos(calc(var(--i) * 60deg)) * 38%);
  max-width: 360px;
  position: absolute;
  top: calc(50% + sin(calc(var(--i) * 60deg)) * 42%);
  transform: translate(-50%, -50%);
  width: 31%;
  z-index: 3;
}

.shomer-letter {
  align-items: center;
  background: var(--ink);
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-bright);
  display: flex;
  flex: 0 0 54px;
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  height: 54px;
  justify-content: center;
}

.shomer-orbit li p {
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 0.11em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.shomer-orbit li h3 {
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 6px;
}

.shomer-orbit li small {
  color: var(--paper-muted);
  display: block;
  font-size: 11px;
  line-height: 1.5;
}

.faq-section--group {
  min-height: auto;
  padding-bottom: clamp(70px, 9vw, 130px);
  padding-top: clamp(70px, 9vw, 130px);
}

.faq-list {
  margin-left: 33%;
  position: relative;
  z-index: 2;
}

.faq-item {
  border-top: 1px solid var(--line-soft);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--paper);
  cursor: pointer;
  display: flex;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 400;
  gap: 24px;
  justify-content: space-between;
  line-height: 1.4;
  min-height: 90px;
  padding: 18px 0;
  text-align: left;
  width: 100%;
}

.faq-item button i {
  border: 1px solid var(--line);
  border-radius: 50%;
  flex: 0 0 38px;
  height: 38px;
  position: relative;
}

.faq-item button i::before,
.faq-item button i::after {
  background: var(--gold);
  content: "";
  height: 1px;
  left: 11px;
  position: absolute;
  top: 18px;
  transition: transform 180ms ease;
  width: 14px;
}

.faq-item button i::after {
  transform: rotate(90deg);
}

.faq-item button[aria-expanded="true"] i::after {
  transform: rotate(0);
}

.faq-answer p {
  color: var(--paper-muted);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
  max-width: 760px;
  padding: 0 60px 32px 0;
}

.related-section {
  border-top: 1px solid var(--line);
  padding: clamp(100px, 12vw, 170px) 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.related-grid a {
  border: 1px solid var(--line-soft);
  margin-left: -1px;
  min-height: 270px;
  padding: 32px;
  position: relative;
  text-decoration: none;
  transition:
    background 220ms ease,
    border 220ms ease;
}

.related-grid a:hover {
  background: rgba(209, 167, 91, 0.04);
  border-color: var(--line);
}

.related-grid span {
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.15em;
}

.related-grid h2 {
  font-size: 23px;
  font-weight: 400;
  margin: 70px 0 12px;
}

.related-grid p {
  color: var(--paper-muted);
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
}

.related-grid i {
  bottom: 26px;
  color: var(--gold);
  font-style: normal;
  position: absolute;
  right: 28px;
}

.contact-section {
  align-items: center;
  background:
    linear-gradient(115deg, rgba(209, 167, 91, 0.08), transparent 45%),
    var(--ink-raised);
  border: 1px solid var(--line);
  display: grid;
  gap: clamp(50px, 9vw, 150px);
  grid-template-columns: 1fr auto;
  min-height: 570px;
  overflow: hidden;
  padding: clamp(48px, 8vw, 110px);
  position: relative;
}

.contact-copy,
.contact-actions {
  position: relative;
  z-index: 3;
}

.contact-copy h2 {
  font-size: clamp(40px, 5vw, 74px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1;
  max-width: 800px;
}

.contact-copy > p:last-child {
  color: var(--paper-muted);
  line-height: 1.7;
  max-width: 620px;
}

.contact-actions {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  min-width: min(100%, 330px);
}

.contact-actions .button {
  margin-top: 10px;
}

.contact-actions small {
  color: var(--paper-muted);
  font-size: 11px;
  line-height: 1.8;
  margin-top: 24px;
}

.contact-radar {
  height: 640px;
  opacity: 0.34;
  position: absolute;
  right: -170px;
  top: -30px;
  width: 640px;
}

.contact-radar i {
  border: 1px solid var(--gold);
  border-radius: 50%;
  inset: 0;
  position: absolute;
}

.contact-radar i:nth-child(2) {
  inset: 90px;
}

.contact-radar i:nth-child(3) {
  animation: radar-spin 8s linear infinite;
  border: 0;
  border-right: 1px solid var(--gold-bright);
  border-radius: 0;
  inset: 50% 50% 0;
  transform-origin: left top;
}

.site-footer {
  align-items: center;
  display: grid;
  gap: 26px;
  grid-template-columns: 0.45fr 1fr auto;
  margin: 0 auto;
  max-width: var(--content);
  min-height: 250px;
  padding: 48px var(--page-pad);
}

.footer-brand img {
  height: 65px;
  object-fit: contain;
  object-position: left;
  width: auto;
}

.site-footer > p {
  color: var(--paper-muted);
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
  max-width: 470px;
}

.footer-status {
  align-items: center;
  color: var(--gold);
  display: flex;
  font-size: 8px;
  gap: 10px;
  letter-spacing: 0.16em;
}

.footer-status span {
  animation: node-pulse 2s ease-in-out infinite;
  background: #75a97c;
  border-radius: 50%;
  box-shadow: 0 0 14px #75a97c;
  height: 6px;
  width: 6px;
}

.site-footer > small {
  color: rgba(240, 238, 231, 0.32);
  font-size: 9px;
  grid-column: 2 / -1;
}

.has-reveal .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 900ms cubic-bezier(0.2, 0.74, 0.2, 1);
}

.has-reveal .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-capabilities {
  min-height: auto;
}

.home-portals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-left: 16.5%;
}

.home-portal {
  border: 1px solid var(--line-soft);
  color: inherit;
  min-height: 420px;
  padding: clamp(28px, 4vw, 54px);
  position: relative;
  text-decoration: none;
  transition:
    background 240ms ease,
    transform 240ms ease;
}

.home-portal:hover {
  background: rgba(209, 167, 91, 0.05);
  transform: translateY(-6px);
}

.home-portal > span {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.15em;
}

.home-portal h3 {
  font-size: clamp(28px, 3vw, 45px);
  font-weight: 400;
  letter-spacing: -0.05em;
  margin: 100px 0 20px;
}

.home-portal p {
  color: var(--paper-muted);
  line-height: 1.65;
}

.home-portal i {
  bottom: 36px;
  color: var(--gold);
  font-style: normal;
  position: absolute;
  right: 38px;
}

.method-teaser {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(50px, 10vw, 150px);
  grid-template-columns: 1fr 1fr;
  min-height: 780px;
  padding: 110px 0;
  perspective: 1000px;
}

.method-teaser__visual {
  align-items: center;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  max-width: 620px;
  position: relative;
}

.method-teaser__visual::before,
.method-teaser__visual::after {
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  content: "";
  inset: 14%;
  position: absolute;
}

.method-teaser__visual::after {
  inset: 32%;
}

.method-teaser__visual span {
  align-items: center;
  background: var(--ink);
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  display: flex;
  font: 500 16px "Manrope", sans-serif;
  height: 52px;
  justify-content: center;
  left: calc(50% + cos(calc((var(--n, 0)) * 60deg)) * 42%);
  position: absolute;
  top: calc(50% + sin(calc((var(--n, 0)) * 60deg)) * 42%);
  transform: translate(-50%, -50%);
  width: 52px;
  z-index: 2;
}

.method-teaser__visual span:nth-child(1) { --n: 0; }
.method-teaser__visual span:nth-child(2) { --n: 1; }
.method-teaser__visual span:nth-child(3) { --n: 2; }
.method-teaser__visual span:nth-child(4) { --n: 3; }
.method-teaser__visual span:nth-child(5) { --n: 4; }
.method-teaser__visual span:nth-child(6) { --n: 5; }

.method-teaser__copy h2 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.method-teaser__copy > p {
  color: var(--paper-muted);
  font-size: 17px;
  line-height: 1.7;
  max-width: 570px;
}

.text-link {
  color: var(--gold-bright);
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  gap: 18px;
  letter-spacing: 0.12em;
  margin-top: 25px;
  min-height: 44px;
  text-decoration: none;
  text-transform: uppercase;
}

.radar-method {
  min-height: 670px;
}

.pmesii-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  margin-left: 16.5%;
}

.pmesii-grid span {
  align-items: center;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  color: var(--gold-bright);
  display: flex;
  font: 300 clamp(25px, 3vw, 48px) "Manrope", sans-serif;
  justify-content: center;
  margin-left: -1px;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.pmesii-grid span:hover {
  background: rgba(209, 167, 91, 0.06);
  transform: translateY(-5px);
}

.edition-list {
  margin-left: 16.5%;
}

.edition-card {
  align-items: center;
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 42px;
  grid-template-columns: 150px 1fr auto;
  min-height: 220px;
  padding: 34px 0;
  position: relative;
  text-decoration: none;
}

.edition-card:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.edition-card--latest {
  background: linear-gradient(90deg, rgba(209, 167, 91, 0.075), transparent);
  margin-left: -32px;
  margin-right: -32px;
  padding-left: 32px;
  padding-right: 32px;
}

.edition-card > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.edition-card > div:first-child span {
  color: var(--gold);
  font: 300 44px "Manrope", sans-serif;
}

.edition-card time,
.edition-card > div:nth-child(2) > p {
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 0.15em;
}

.edition-card h3 {
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 400;
  letter-spacing: -0.035em;
  margin: 9px 0 12px;
}

.edition-card small {
  color: var(--paper-muted);
  font-size: 12px;
  line-height: 1.55;
}

.edition-card > i {
  color: var(--gold-bright);
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes node-pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.75);
  }
  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}

@keyframes scroll-cue {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(19px);
  }
}

@keyframes radar-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1280px) {
  :root {
    --header-height: 86px;
  }

  .nav-contact {
    display: none;
  }

  .nav-links {
    gap: 14px;
  }

  .nav-actions {
    gap: 10px;
    padding-left: 12px;
  }

  .page-hero {
    grid-template-columns: minmax(0, 1fr) minmax(230px, 0.4fr);
  }

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

  .related-grid a {
    margin-top: -1px;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-button {
    display: flex;
  }

  .site-nav {
    align-items: stretch;
    background:
      linear-gradient(140deg, rgba(209, 167, 91, 0.08), transparent 40%),
      rgba(5, 7, 6, 0.99);
    display: flex;
    flex-direction: column;
    inset: 0;
    justify-content: center;
    opacity: 0;
    padding: calc(var(--header-height) + 36px) var(--page-pad) 42px;
    pointer-events: none;
    position: fixed;
    transform: translateY(-16px);
    transition:
      opacity 240ms ease,
      transform 300ms ease;
    visibility: hidden;
  }

  .menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .nav-links {
    align-items: stretch;
    display: grid;
    gap: 0;
  }

  .nav-links a {
    border-bottom: 1px solid var(--line-soft);
    font-size: clamp(20px, 5vw, 42px);
    font-weight: 400;
    letter-spacing: -0.02em;
    min-height: 64px;
    text-transform: none;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-actions {
    border: 0;
    flex-wrap: wrap;
    margin-top: 28px;
    padding: 0;
  }

  .nav-contact {
    display: inline-flex;
  }

  .nav-emergency {
    min-height: 48px;
  }

  .page-hero {
    display: block;
    padding-top: calc(var(--header-height) + 90px);
  }

  .hero-content {
    min-height: 600px;
  }

  .hero-stats {
    border-left: 0;
    border-top: 1px solid var(--line);
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
    max-width: none;
    padding: 24px 0 0;
  }

  .hero-stat {
    display: block;
  }

  .hero-stat strong,
  .hero-stat span {
    display: block;
  }

  .hero-stat span {
    margin-top: 7px;
  }

  .atlas-visual {
    opacity: 0.72;
  }

  .atlas-grid,
  .atlas-depth,
  .atlas-core {
    left: 72%;
    top: 42%;
  }

  .statement-grid,
  .mission-steps,
  .faq-list {
    margin-left: 20%;
  }

  .capability-grid,
  .split-layout,
  .home-portals,
  .pmesii-grid,
  .edition-list {
    margin-left: 0;
  }

  .shomer-orbit li {
    width: 36%;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 76px;
    --page-pad: 20px;
  }

  .site-header {
    padding-bottom: 8px;
    padding-top: 8px;
  }

  .site-header.is-compact {
    height: 70px;
  }

  .brand img {
    height: 51px;
  }

  .page-hero {
    min-height: 760px;
    padding-bottom: 34px;
    padding-top: calc(var(--header-height) + 56px);
  }

  .page-hero::before {
    background:
      linear-gradient(90deg, rgba(5, 7, 6, 0.93), rgba(5, 7, 6, 0.42)),
      linear-gradient(0deg, var(--ink) 0%, transparent 54%);
  }

  .hero-content {
    min-height: 500px;
  }

  .hero-breadcrumb {
    margin-bottom: 55px;
  }

  .hero-content h1 {
    font-size: clamp(45px, 13.6vw, 68px);
  }

  .hero-description {
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 32px;
  }

  .button {
    width: 100%;
  }

  .hero-stats {
    gap: 14px;
  }

  .hero-stat strong {
    font-size: 12px;
  }

  .hero-stat span {
    font-size: 8px;
    line-height: 1.35;
  }

  .scroll-cue {
    display: none;
  }

  .atlas-grid {
    height: 740px;
    left: 80%;
    top: 35%;
    width: 740px;
  }

  .atlas-core {
    height: 108px;
    left: 80%;
    top: 35%;
    width: 108px;
  }

  .atlas-depth {
    left: 80%;
    top: 35%;
  }

  .atlas-depth--far {
    height: 700px;
    width: 700px;
  }

  .atlas-depth--near {
    height: 330px;
    width: 330px;
  }

  .atlas-content::before {
    display: none;
  }

  .content-section {
    min-height: auto;
    padding: 96px 0;
    transform: none;
  }

  .content-section::before {
    display: none;
  }

  .section-marker {
    display: none;
  }

  .section-heading {
    display: block;
    margin-bottom: 48px;
  }

  .section-heading .eyebrow {
    padding-top: 0;
  }

  .section-heading h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .statement-grid,
  .mission-steps,
  .faq-list {
    margin-left: 0;
  }

  .statement-grid,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .statement-copy,
  .split-copy {
    font-size: 21px;
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }

  .capability-card {
    min-height: 320px;
    padding: 30px;
  }

  .mission-steps li {
    gap: 22px;
    grid-template-columns: 58px 1fr;
  }

  .mission-steps::before {
    left: 28px;
  }

  .step-number {
    height: 58px;
  }

  .mission-steps h3 {
    font-size: 27px;
    margin-top: 5px;
  }

  .shomer-orbit {
    min-height: auto;
  }

  .shomer-orbit::before,
  .shomer-orbit::after,
  .shomer-core {
    display: none;
  }

  .shomer-orbit ol {
    display: grid;
    gap: 12px;
    position: static;
  }

  .shomer-orbit li {
    border: 1px solid var(--line-soft);
    left: auto;
    max-width: none;
    padding: 22px;
    position: relative;
    top: auto;
    transform: none;
    width: 100%;
  }

  .faq-item button {
    font-size: 18px;
    min-height: 82px;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .related-grid a {
    min-height: 230px;
  }

  .contact-section {
    display: block;
    min-height: 640px;
    padding: 60px 28px;
  }

  .contact-actions {
    margin-top: 50px;
  }

  .site-footer {
    display: flex;
    flex-direction: column;
    min-height: 340px;
    text-align: center;
  }

  .footer-brand img {
    object-position: center;
  }

  .home-portals {
    grid-template-columns: 1fr;
  }

  .home-portal {
    min-height: 350px;
    padding: 30px;
  }

  .home-portal h3 {
    margin-top: 70px;
  }

  .method-teaser {
    display: block;
    min-height: auto;
    padding: 96px 0;
  }

  .method-teaser__visual {
    margin-bottom: 70px;
  }

  .method-teaser__visual span {
    height: 42px;
    width: 42px;
  }

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

  .pmesii-grid span {
    margin-top: -1px;
  }

  .edition-card,
  .edition-card--latest {
    align-items: start;
    gap: 20px;
    grid-template-columns: 74px 1fr;
    margin-left: 0;
    margin-right: 0;
    min-height: 250px;
    padding: 28px 0;
  }

  .edition-card > i {
    grid-column: 2;
  }
}

@media (max-height: 720px) and (min-width: 821px) {
  .page-hero {
    min-height: 720px;
    padding-top: calc(var(--header-height) + 35px);
  }

  .hero-breadcrumb {
    margin-bottom: 35px;
  }

  .hero-content h1 {
    font-size: clamp(48px, 5.5vw, 82px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .atlas-poster,
  .atlas-grid,
  .atlas-nodes,
  .atlas-core {
    transform: none;
  }
}


/* ===== SENIOR ART DIRECTION · 2026-07 ===== */

/*
 * BARUCH OPERATIONAL ATLAS
 * Senior typography + art-direction layer
 * Shared by every catalog page except /apresentacoes.
 */

:root {
  --font-display: "Newsreader", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --font-data: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  --text-primary: #f2efe7;
  --text-secondary: rgba(242, 239, 231, 0.76);
  --text-muted: rgba(242, 239, 231, 0.6);
  --text-data: rgba(242, 239, 231, 0.48);
  --gold-wash: rgba(209, 167, 91, 0.075);
  --gold-glow: rgba(235, 199, 126, 0.16);
  --measure-body: 64ch;
  --measure-lead: 32ch;
  --measure-heading: 18ch;
  --type-hero: clamp(4.7rem, 7.8vw, 8.6rem);
  --type-section: clamp(3.35rem, 5.7vw, 6.35rem);
  --type-card: clamp(2.05rem, 3vw, 3.35rem);
}

body {
  background:
    radial-gradient(circle at 78% 8%, rgba(209, 167, 91, 0.065), transparent 27rem),
    linear-gradient(rgba(255, 255, 255, 0.017) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.017) 1px, transparent 1px),
    var(--ink);
  background-size: auto, 72px 72px, 72px 72px, auto;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

h1,
h2,
h3,
.faq-item button {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 400;
}

p,
li {
  text-wrap: pretty;
}

.nav-links a,
.language-link,
.nav-contact,
.nav-emergency,
.button,
.text-link {
  font-family: var(--font-sans);
}

.hero-breadcrumb,
.eyebrow,
.section-marker,
.card-meta,
.hero-stat span,
.scroll-cue,
.edition-card time,
.footer-status,
.site-footer > small {
  font-family: var(--font-data);
}

.site-header {
  background:
    linear-gradient(90deg, rgba(209, 167, 91, 0.035), transparent 28%),
    linear-gradient(180deg, rgba(5, 7, 6, 0.96), rgba(5, 7, 6, 0.78));
}

.nav-links a,
.language-link,
.nav-contact {
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.105em;
}

.nav-emergency,
.button {
  font-size: 11px;
}

.page-hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.46fr);
  isolation: isolate;
}

.page-hero::after {
  color: rgba(235, 199, 126, 0.5);
  content: "23°33′S  ·  46°38′W  /  OPERATIONAL ATLAS";
  font: 500 9px/1.4 var(--font-data);
  letter-spacing: 0.14em;
  position: absolute;
  right: var(--page-pad);
  text-transform: uppercase;
  top: calc(var(--header-height) + 34px);
  z-index: 4;
}

.atlas-visual::after {
  background:
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(235, 199, 126, 0.24) 50%, transparent calc(50% + 0.5px)),
    linear-gradient(transparent calc(50% - 0.5px), rgba(235, 199, 126, 0.24) 50%, transparent calc(50% + 0.5px));
  border: 1px solid rgba(209, 167, 91, 0.2);
  border-radius: 50%;
  content: "";
  height: 46px;
  left: 68%;
  opacity: 0.72;
  position: absolute;
  top: 49%;
  transform: translate(-50%, -50%);
  width: 46px;
  z-index: 4;
}

.atlas-poster {
  filter: saturate(0.62) contrast(1.2) brightness(0.47);
  opacity: 0.62;
}

.atlas-depth--far {
  border-color: rgba(209, 167, 91, 0.26);
  box-shadow:
    0 0 0 64px rgba(209, 167, 91, 0.018),
    0 0 0 144px rgba(209, 167, 91, 0.012);
}

.atlas-depth--near {
  border-color: rgba(235, 199, 126, 0.48);
  box-shadow:
    0 0 0 38px rgba(209, 167, 91, 0.03),
    0 0 0 104px rgba(209, 167, 91, 0.02),
    0 0 120px rgba(209, 167, 91, 0.16);
}

.atlas-core {
  background:
    radial-gradient(circle, rgba(209, 167, 91, 0.15), rgba(5, 7, 6, 0.42) 58%, transparent 72%);
}

.atlas-core span {
  font-family: var(--font-display);
  font-size: 43px;
  font-variant-numeric: lining-nums tabular-nums;
}

.atlas-core small {
  font-family: var(--font-data);
  font-size: 9px;
}

.hero-content {
  max-width: 980px;
}

.hero-breadcrumb {
  color: var(--text-data);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.eyebrow {
  color: var(--gold-bright);
  font-family: var(--font-data);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.17em;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: var(--type-hero);
  font-optical-sizing: auto;
  font-weight: 400;
  letter-spacing: -0.032em;
  line-height: 0.88;
  max-width: 11.5ch;
  text-wrap: balance;
}

.hero-description {
  color: var(--text-secondary);
  font-size: clamp(17px, 1.25vw, 20px);
  font-weight: 400;
  line-height: 1.65;
  max-width: 54ch;
}

.button {
  letter-spacing: 0.105em;
  min-height: 56px;
  position: relative;
  transition:
    background 220ms ease,
    border 220ms ease,
    color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.button--primary {
  box-shadow: 0 12px 40px rgba(209, 167, 91, 0.08);
}

.button--primary:hover {
  box-shadow: 0 18px 48px rgba(209, 167, 91, 0.17);
}

.hero-stats {
  backdrop-filter: blur(14px);
  background: linear-gradient(90deg, rgba(5, 7, 6, 0.28), rgba(5, 7, 6, 0.62));
  border-bottom: 1px solid rgba(209, 167, 91, 0.16);
  border-left-color: rgba(209, 167, 91, 0.38);
  padding-bottom: 22px;
  padding-top: 22px;
}

.hero-stat strong {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: -0.01em;
}

.hero-stat span {
  color: var(--text-muted);
  font-size: 10px;
}

.atlas-content {
  counter-reset: atlas-section;
}

.content-section {
  counter-increment: atlas-section;
  isolation: isolate;
  min-height: 78vh;
  padding-block: clamp(120px, 14vw, 210px);
}

.content-section::before {
  background:
    radial-gradient(circle at center, rgba(209, 167, 91, 0.1), transparent 58%),
    repeating-radial-gradient(circle at center, transparent 0 52px, rgba(209, 167, 91, 0.08) 53px, transparent 54px 88px);
  border-color: rgba(209, 167, 91, 0.13);
  height: min(54vw, 760px);
  opacity: 0.92;
  right: -16vw;
  width: min(54vw, 760px);
  z-index: -1;
}

.content-section::after {
  color: rgba(209, 167, 91, 0.055);
  content: counter(atlas-section, decimal-leading-zero);
  font: 400 clamp(10rem, 22vw, 24rem) / 0.68 var(--font-display);
  font-variant-numeric: lining-nums tabular-nums;
  letter-spacing: -0.08em;
  pointer-events: none;
  position: absolute;
  right: -0.03em;
  top: clamp(44px, 6vw, 88px);
  z-index: -1;
}

.content-section:nth-of-type(even)::before {
  left: -18vw;
  right: auto;
}

.content-section:nth-of-type(even)::after {
  left: -0.08em;
  right: auto;
}

.section-marker {
  color: rgba(235, 199, 126, 0.46);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.17em;
}

.section-heading {
  grid-template-columns: minmax(165px, 0.3fr) minmax(0, 1fr);
  margin-bottom: clamp(72px, 9vw, 138px);
}

.section-heading::after {
  background: linear-gradient(90deg, var(--gold), rgba(209, 167, 91, 0));
  bottom: -34px;
  content: "";
  height: 1px;
  left: 30%;
  opacity: 0.45;
  position: absolute;
  width: min(42vw, 620px);
}

.section-heading h2 {
  font-family: var(--font-display);
  font-size: var(--type-section);
  font-optical-sizing: auto;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.92;
  max-width: var(--measure-heading);
}

.statement-grid {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
}

.statement-copy,
.split-copy {
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.65vw, 3.35rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.18;
  max-width: var(--measure-lead);
}

.statement-aside {
  align-content: center;
  aspect-ratio: 1;
  background:
    radial-gradient(circle, rgba(209, 167, 91, 0.13), rgba(5, 7, 6, 0.44) 56%, transparent 69%),
    repeating-radial-gradient(circle, transparent 0 32px, rgba(209, 167, 91, 0.08) 33px, transparent 34px 54px);
  border-color: rgba(209, 167, 91, 0.28);
  border-radius: 50%;
  display: grid;
  justify-self: end;
  max-width: 350px;
  padding: clamp(42px, 5vw, 72px);
  width: 100%;
}

.statement-aside::before {
  border: 1px solid rgba(209, 167, 91, 0.13);
  border-radius: inherit;
  content: "";
  inset: 11%;
  position: absolute;
}

.statement-aside::after {
  background: var(--gold-bright);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 9px rgba(209, 167, 91, 0.08), 0 0 24px rgba(209, 167, 91, 0.44);
  height: 6px;
  right: 10%;
  top: 28%;
  width: 6px;
}

.statement-aside > span {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 0.8;
  margin-bottom: 24px;
}

.statement-aside p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
}

.cards-section {
  background-image:
    linear-gradient(rgba(240, 238, 231, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 238, 231, 0.022) 1px, transparent 1px);
  background-size: 64px 64px;
}

.capability-grid {
  grid-template-columns: 1.08fr 0.92fr;
}

.capability-card {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.018), transparent 42%),
    rgba(5, 7, 6, 0.28);
  gap: 60px;
  min-height: 390px;
  padding: clamp(34px, 4.2vw, 62px);
}

.capability-card:nth-child(4n + 1),
.capability-card:nth-child(4n + 4) {
  min-height: 455px;
}

.capability-card::after {
  background:
    linear-gradient(var(--gold), var(--gold)) 0 0 / 28px 1px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 0 0 / 1px 28px no-repeat;
  content: "";
  inset: 18px auto auto 18px;
  opacity: 0.42;
  position: absolute;
  transition: opacity 220ms ease, transform 300ms ease;
  width: 28px;
  height: 28px;
}

.capability-card:hover::after {
  opacity: 0.9;
  transform: translate(6px, 6px);
}

.card-index {
  color: rgba(209, 167, 91, 0.17);
  font-family: var(--font-display);
  font-size: clamp(5.7rem, 8vw, 9rem);
  font-variant-numeric: lining-nums tabular-nums;
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.64;
  position: absolute;
  right: clamp(26px, 3.2vw, 52px);
  top: clamp(30px, 3.6vw, 56px);
}

.capability-card h3 {
  font-size: var(--type-card);
  letter-spacing: -0.025em;
  line-height: 0.98;
  margin-top: 72px;
  max-width: 11ch;
  position: relative;
  z-index: 2;
}

.capability-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.72;
  max-width: 44ch;
}

.card-meta {
  color: var(--text-data);
  font-size: 10px;
}

.mission-steps {
  margin-left: 28%;
}

.mission-steps::before {
  left: 54px;
  top: 54px;
}

.mission-steps li {
  gap: clamp(30px, 6vw, 90px);
  grid-template-columns: 110px 1fr;
  min-height: 205px;
}

.step-number {
  align-items: flex-start;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: rgba(209, 167, 91, 0.64);
  font-family: var(--font-display);
  font-size: clamp(4.8rem, 7.5vw, 8rem);
  font-variant-numeric: lining-nums tabular-nums;
  font-weight: 400;
  height: auto;
  justify-content: flex-start;
  letter-spacing: -0.07em;
  line-height: 0.78;
  padding-left: 3px;
}

.mission-steps h3 {
  font-size: var(--type-card);
  letter-spacing: -0.022em;
  line-height: 1;
  margin-top: 0;
}

.mission-steps p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: var(--measure-body);
}

.split-layout {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
}

.signal-list {
  background:
    linear-gradient(145deg, rgba(209, 167, 91, 0.08), transparent 42%),
    rgba(5, 7, 6, 0.5);
  border: 1px solid var(--line);
  padding: 18px 30px;
  position: relative;
}

.signal-list::before {
  background: linear-gradient(var(--gold-bright), rgba(209, 167, 91, 0.08));
  content: "";
  left: 33px;
  position: absolute;
  top: 45px;
  bottom: 45px;
  width: 1px;
}

.signal-list li {
  color: var(--text-secondary);
  font-size: 14px;
  min-height: 84px;
  padding-left: 28px;
  position: relative;
}

.signal-list li span {
  background: var(--ink);
  flex: 0 0 8px;
  position: relative;
  z-index: 2;
}

.shomer-orbit::before {
  background:
    repeating-conic-gradient(from 0deg, rgba(209, 167, 91, 0.16) 0 0.5deg, transparent 0.5deg 15deg);
  border-color: rgba(209, 167, 91, 0.27);
  mask: radial-gradient(circle, transparent 0 97%, #000 97.3%);
}

.shomer-core {
  background:
    radial-gradient(circle, rgba(209, 167, 91, 0.2), rgba(5, 7, 6, 0.96) 68%);
  box-shadow: 0 0 90px rgba(209, 167, 91, 0.09);
}

.shomer-core span {
  font-family: var(--font-display);
  font-size: 65px;
}

.shomer-core small {
  font-family: var(--font-data);
  font-size: 10px;
}

.shomer-letter {
  font-family: var(--font-display);
  font-size: 27px;
}

.shomer-orbit li h3 {
  font-size: 25px;
}

.shomer-orbit li small {
  color: var(--text-muted);
  font-size: 13px;
}

.faq-list {
  margin-left: 28%;
}

.faq-item button {
  font-size: clamp(1.65rem, 2.35vw, 2.45rem);
  line-height: 1.25;
  min-height: 112px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  max-width: 68ch;
}

.related-grid {
  gap: 1px;
}

.related-grid a {
  background:
    linear-gradient(145deg, rgba(209, 167, 91, 0.035), transparent 52%),
    rgba(5, 7, 6, 0.36);
  margin-left: 0;
  min-height: 310px;
  overflow: hidden;
}

.related-grid a::before {
  color: rgba(209, 167, 91, 0.09);
  font: 400 9rem/0.7 var(--font-display);
  pointer-events: none;
  position: absolute;
  right: -0.04em;
  top: 22px;
}

.related-grid a:nth-child(1)::before { content: "01"; }
.related-grid a:nth-child(2)::before { content: "02"; }
.related-grid a:nth-child(3)::before { content: "03"; }
.related-grid a:nth-child(4)::before { content: "04"; }

.related-grid span {
  font-family: var(--font-data);
  font-size: 10px;
}

.related-grid h2 {
  font-size: 30px;
  line-height: 1.02;
  margin-top: 82px;
}

.related-grid p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.62;
}

.contact-section {
  background:
    radial-gradient(circle at 88% 46%, rgba(209, 167, 91, 0.14), transparent 25%),
    linear-gradient(115deg, rgba(209, 167, 91, 0.09), transparent 46%),
    var(--ink-raised);
  min-height: 650px;
}

.contact-copy h2 {
  font-size: clamp(3.75rem, 6vw, 7.2rem);
  letter-spacing: -0.035em;
  line-height: 0.9;
  max-width: 10ch;
}

.contact-copy > p:last-child {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 58ch;
}

.contact-radar {
  opacity: 0.52;
}

.site-footer > p {
  color: var(--text-muted);
  font-size: 14px;
}

.site-footer > small {
  color: var(--text-data);
  font-size: 10px;
}

.home-portal {
  background:
    linear-gradient(160deg, rgba(209, 167, 91, 0.045), transparent 44%),
    rgba(5, 7, 6, 0.28);
  min-height: 470px;
  overflow: hidden;
}

.home-portal::before {
  color: rgba(209, 167, 91, 0.1);
  font: 400 10rem/0.7 var(--font-display);
  position: absolute;
  right: -0.03em;
  top: 32px;
}

.home-portal:nth-child(1)::before { content: "01"; }
.home-portal:nth-child(2)::before { content: "02"; }
.home-portal:nth-child(3)::before { content: "03"; }

.home-portal > span {
  font-family: var(--font-data);
  font-size: 10px;
}

.home-portal h3 {
  font-size: clamp(2.5rem, 3.5vw, 4.25rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-top: 126px;
}

.home-portal p,
.method-teaser__copy > p {
  color: var(--text-muted);
  font-size: 16px;
}

.method-teaser__visual {
  background:
    repeating-radial-gradient(circle, transparent 0 48px, rgba(209, 167, 91, 0.07) 49px, transparent 50px 84px),
    radial-gradient(circle, rgba(209, 167, 91, 0.08), transparent 64%);
}

.method-teaser__visual span {
  font-family: var(--font-display);
  font-size: 23px;
}

.method-teaser__copy h2 {
  font-size: clamp(3.4rem, 5.8vw, 6.7rem);
  letter-spacing: -0.032em;
  line-height: 0.92;
}

.radar-method {
  background-image:
    linear-gradient(rgba(240, 238, 231, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 238, 231, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}

.pmesii-grid {
  align-items: center;
  gap: 0;
  grid-template-columns: repeat(8, 1fr);
  position: relative;
}

.pmesii-grid::before {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
  height: 1px;
  left: 4%;
  opacity: 0.4;
  position: absolute;
  right: 4%;
  top: 50%;
}

.pmesii-grid span {
  backdrop-filter: blur(8px);
  background:
    radial-gradient(circle, rgba(209, 167, 91, 0.1), rgba(5, 7, 6, 0.85) 68%);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.6vw, 4.4rem);
  margin-left: -1px;
  position: relative;
  z-index: 2;
}

.pmesii-grid span:nth-child(even) {
  transform: translateY(18%);
}

.pmesii-grid span:nth-child(even):hover {
  transform: translateY(calc(18% - 5px));
}

.edition-card {
  grid-template-columns: 170px 1fr auto;
  min-height: 250px;
}

.edition-card::before {
  background: linear-gradient(90deg, var(--gold), transparent);
  bottom: -1px;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 220ms ease, width 420ms ease;
  width: 0;
}

.edition-card:hover::before {
  opacity: 0.8;
  width: 100%;
}

.edition-card > div:first-child span {
  color: rgba(209, 167, 91, 0.58);
  font-family: var(--font-display);
  font-size: 74px;
  letter-spacing: -0.065em;
  line-height: 0.8;
}

.edition-card time,
.edition-card > div:nth-child(2) > p {
  font-size: 10px;
}

.edition-card h3 {
  font-size: clamp(2rem, 3vw, 3.5rem);
  letter-spacing: -0.025em;
  line-height: 1;
}

.edition-card small {
  color: var(--text-muted);
  font-size: 13px;
}

@media (max-width: 1080px) {
  .page-hero::after {
    display: none;
  }

  .content-section::after {
    font-size: clamp(9rem, 25vw, 17rem);
  }

  .statement-grid,
  .mission-steps,
  .faq-list {
    margin-left: 16%;
  }

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

@media (max-width: 820px) {
  :root {
    --type-hero: clamp(3.55rem, 16vw, 5.25rem);
    --type-section: clamp(2.75rem, 12vw, 4.2rem);
    --type-card: clamp(2.1rem, 10vw, 3.25rem);
  }

  body {
    font-size: 16px;
  }

  .page-hero {
    min-height: 800px;
  }

  .hero-content h1 {
    font-size: var(--type-hero);
    line-height: 0.9;
    max-width: 10.8ch;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-stat strong {
    font-size: 17px;
  }

  .hero-stat span {
    font-size: 10px;
  }

  .content-section {
    overflow: hidden;
    padding-block: 110px;
  }

  .content-section::before {
    display: block;
    height: 520px;
    opacity: 0.55;
    right: -320px;
    top: 4%;
    width: 520px;
  }

  .content-section:nth-of-type(even)::before {
    left: -340px;
    right: auto;
  }

  .content-section::after {
    display: block;
    font-size: clamp(8rem, 42vw, 11rem);
    opacity: 0.7;
    right: -0.08em;
    top: 42px;
  }

  .section-heading {
    margin-bottom: 62px;
  }

  .section-heading::after {
    bottom: -26px;
    left: 0;
    width: 72%;
  }

  .section-heading h2 {
    font-size: var(--type-section);
    line-height: 0.94;
  }

  .statement-grid,
  .mission-steps,
  .faq-list {
    margin-left: 0;
  }

  .statement-copy,
  .split-copy {
    font-size: clamp(1.65rem, 7.5vw, 2.35rem);
    line-height: 1.2;
  }

  .statement-aside {
    justify-self: start;
    max-width: 310px;
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }

  .capability-card,
  .capability-card:nth-child(4n + 1),
  .capability-card:nth-child(4n + 4) {
    min-height: 370px;
  }

  .card-index {
    font-size: 7rem;
  }

  .capability-card h3 {
    font-size: var(--type-card);
  }

  .mission-steps li {
    gap: 20px;
    grid-template-columns: 76px 1fr;
    min-height: 185px;
  }

  .mission-steps::before {
    left: 36px;
  }

  .step-number {
    font-size: 4.8rem;
  }

  .signal-list {
    padding-inline: 20px;
  }

  .signal-list::before {
    left: 23px;
  }

  .shomer-orbit li h3 {
    font-size: 27px;
  }

  .shomer-orbit li small {
    font-size: 14px;
  }

  .shomer-orbit {
    overflow: hidden;
    padding-top: 290px;
  }

  .shomer-orbit::before,
  .shomer-orbit::after {
    display: block;
    height: 250px;
    left: 50%;
    top: 130px;
    width: 250px;
  }

  .shomer-orbit::after {
    height: 176px;
    width: 176px;
  }

  .shomer-core {
    display: flex;
    height: 126px;
    left: 50%;
    top: 130px;
    width: 126px;
  }

  .shomer-core span {
    font-size: 42px;
  }

  .shomer-orbit ol {
    display: grid;
    gap: 12px;
    grid-auto-columns: 86%;
    grid-auto-flow: column;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding-bottom: 18px;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--gold) transparent;
  }

  .shomer-orbit li {
    scroll-snap-align: start;
  }

  .faq-item button {
    font-size: 1.65rem;
    min-height: 104px;
  }

  .contact-copy h2 {
    font-size: clamp(3rem, 13vw, 4.7rem);
  }

  .home-portal {
    min-height: 410px;
  }

  .pmesii-grid {
    gap: 10px;
    grid-template-columns: repeat(4, 1fr);
  }

  .pmesii-grid span,
  .pmesii-grid span:nth-child(even),
  .pmesii-grid span:nth-child(even):hover {
    margin: 0;
    transform: none;
  }

  .edition-card,
  .edition-card--latest {
    grid-template-columns: 86px 1fr;
  }

  .edition-card > div:first-child span {
    font-size: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .capability-card,
  .pmesii-grid span,
  .edition-card::before {
    transform: none !important;
  }
}

/*
 * TYPOGRAPHY REPAIR — 2026-07
 * Restores a clear operational hierarchy and clips decorative depth layers.
 */

:root {
  --type-hero: clamp(3.8rem, 5.4vw, 6.4rem);
  --type-section: clamp(2.65rem, 4vw, 4.75rem);
  --type-card: clamp(1.55rem, 2vw, 2.2rem);
  --measure-heading: 20ch;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

main,
.atlas-content,
.page-hero,
.atlas-visual,
.content-section,
.contact-section {
  max-width: 100%;
  min-width: 0;
  overflow-x: clip;
}

h1,
h2,
h3,
.faq-item button {
  font-family: var(--font-sans);
  font-optical-sizing: auto;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.hero-content,
.section-heading,
.section-heading > *,
.statement-grid > *,
.split-layout > *,
.capability-card,
.mission-steps li > * {
  min-width: 0;
}

.hero-content h1 {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.96;
  max-width: 13.5ch;
}

.section-heading h2 {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  max-width: 19ch;
}

.capability-card h3,
.mission-steps h3,
.home-portal h3,
.edition-card h3,
.related-grid h2 {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.08;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.statement-copy,
.split-copy {
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 1.7vw, 1.75rem);
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.5;
  max-width: 58ch;
}

.contact-copy h2,
.method-teaser__copy h2 {
  font-family: var(--font-sans);
  font-size: clamp(3rem, 5.1vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
  max-width: 13ch;
}

.faq-item button {
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
  line-height: 1.38;
}

.home-portal h3 {
  font-size: clamp(1.8rem, 2.4vw, 2.5rem);
}

.edition-card h3 {
  font-size: clamp(1.6rem, 2.2vw, 2.75rem);
}

.hero-description,
.capability-card p,
.mission-steps p,
.faq-answer p,
.home-portal p,
.method-teaser__copy > p {
  overflow-wrap: break-word;
}

.eyebrow,
.hero-breadcrumb,
.chapter-detail,
.card-meta {
  max-width: 100%;
  overflow-wrap: break-word;
}

@media (max-width: 820px) {
  :root {
    --type-hero: clamp(3rem, 12vw, 4rem);
    --type-section: clamp(2.3rem, 9.6vw, 3.25rem);
    --type-card: clamp(1.5rem, 7vw, 2rem);
  }

  .hero-content h1 {
    line-height: 0.98;
    max-width: 13ch;
  }

  .content-section {
    padding-block: 92px;
  }

  .section-heading {
    margin-bottom: 54px;
  }

  .section-heading h2 {
    line-height: 1.03;
    max-width: 15ch;
  }

  .statement-copy,
  .split-copy {
    font-size: clamp(1.12rem, 4.8vw, 1.35rem);
    line-height: 1.5;
  }

  .capability-card,
  .capability-card:nth-child(4n + 1),
  .capability-card:nth-child(4n + 4) {
    gap: 38px;
    min-height: 330px;
  }

  .capability-card h3 {
    margin-top: 56px;
  }

  .card-index {
    font-size: 5.6rem;
  }

  .contact-copy h2,
  .method-teaser__copy h2 {
    font-size: clamp(2.65rem, 11vw, 3.8rem);
    line-height: 1;
    max-width: 12ch;
  }

  .home-portal h3 {
    font-size: clamp(1.75rem, 7.5vw, 2.15rem);
  }

  .faq-item button {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}
