/* ==========================================================================
   SSR Agenda — public site stylesheet
   Institutional visual system: Caslon display + IBM Plex Sans/Mono,
   navy / paper / gold, hairline structural grids.
   ========================================================================== */

:root {
  --navy-950: #061020;
  --navy-900: #0c1c31;
  --navy-800: #16304e;
  --navy-700: #234b70;
  --gold-700: #674a1d;
  --gold-600: #7d5b25;
  --gold-500: #bf9553;
  --gold-300: #d9be8a;
  --paper: #f4f2ec;
  --paper-2: #eae6dc;
  --white: #fdfcf9;
  --ink: #0a1524;
  --body: #4d5866;
  --muted: #56616e;
  --line: #ded8cc;
  --line-soft: #e9e5db;
  --on-navy: #c3d0dc;
  --on-navy-dim: #8fa1b2;
  --success: #1d6b4f;
  --serif: 'Libre Caslon Display', Georgia, 'Times New Roman', serif;
  --serif-text: 'Libre Caslon Text', Georgia, 'Times New Roman', serif;
  --sans: 'IBM Plex Sans', system-ui, 'Segoe UI', Helvetica, Arial, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Consolas, monospace;
  --max: 1280px;
  --shadow: 0 26px 70px rgb(9 24 42 / 12%);
  --shadow-deep: 0 30px 90px rgb(0 0 0 / 30%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--navy-800);
  text-underline-offset: 4px;
  text-decoration-color: rgb(191 149 83 / 55%);
}

a:hover {
  color: var(--gold-600);
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--navy-950);
  font-family: var(--mono);
  font-size: 12px;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   Layer 1 — global appbar: institutional identity | navigation | actions
   -------------------------------------------------------------------------- */

.appbar {
  background: var(--navy-950);
  color: #dbe3ea;
  border-bottom: 1px solid rgb(191 149 83 / 28%);
}

.appbar-inner {
  position: relative;
  min-height: 66px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  padding-block: 10px;
}

.appbar-tag {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding-inline-end: 24px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-300);
  white-space: nowrap;
}

.appbar-tag > span:first-child {
  display: flex;
  align-items: center;
  gap: 9px;
}

.appbar-tag > span:first-child::before {
  content: '';
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  background: var(--gold-500);
  transform: rotate(45deg);
}

.appbar-tag small {
  padding-inline-start: 15px;
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: .19em;
  color: #78899b;
}

.appbar-rule {
  flex: 0 0 auto;
  width: 1px;
  background: rgb(255 255 255 / 16%);
}

.appbar-links {
  flex: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px;
  margin-inline-end: auto;
  padding-inline-start: 20px;
}

.appbar-links a {
  padding: 7px 12px;
  color: #eef3f8;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: inset 0 -1px 0 rgb(217 190 138 / 26%);
  transition: color .16s ease, box-shadow .16s ease;
}

.appbar-links a:hover,
.appbar-links a[aria-current='page'] {
  color: var(--gold-300);
  box-shadow: inset 0 -2px 0 var(--gold-500);
}

.appbar-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 18px;
  white-space: nowrap;
}

.appbar-actions > a:not(.appbar-login) {
  padding: 7px 12px;
  color: #eef3f8;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: inset 0 -1px 0 rgb(217 190 138 / 26%);
  transition: color .16s ease, box-shadow .16s ease;
}

.appbar-actions > a:not(.appbar-login):hover {
  color: var(--gold-300);
  box-shadow: inset 0 -2px 0 var(--gold-500);
}

.appbar-login {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 17px;
  border: 1px solid rgb(217 190 138 / 50%);
  color: var(--gold-300);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color .16s ease, color .16s ease, border-color .16s ease;
}

.appbar-login:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-950);
}

.lang-switch {
  flex: 0 0 auto;
  white-space: nowrap;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .13em;
}

.lang-switch > * {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 0;
  border-inline-end: 1px solid var(--line);
  text-decoration: none;
  background: transparent;
  color: #6b7683;
  font: inherit;
  letter-spacing: inherit;
  cursor: pointer;
}

.lang-switch > :last-child {
  border-inline-end: 0;
}

.lang-switch > [aria-current] {
  background: var(--navy-900);
  color: var(--gold-300);
  cursor: default;
}

.lang-switch > a:hover {
  color: var(--gold-700);
}

.lang-note {
  position: absolute;
  z-index: 2;
  inset-inline-end: 0;
  bottom: -9px;
  padding: 4px 10px;
  background: var(--gold-500);
  color: var(--navy-950);
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.lang-note:empty {
  display: none;
}

.nav-close {
  display: none;
}

/* --------------------------------------------------------------------------
   Layer 2 — institutional header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgb(253 252 249 / 93%);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  position: relative;
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  flex: 0 0 auto;
  display: block;
  text-decoration: none;
}

.brand img {
  width: 160px;
  height: 52px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand-rule {
  flex: 0 0 auto;
  width: 1px;
  height: 46px;
  background: var(--line);
}

.brand-copy {
  flex: 1;
  min-width: 0;
}

.brand-title {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: .005em;
}

.brand-subtitle {
  margin: 5px 0 0;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #5d6875;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-search {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 15px;
  border: 1px solid var(--line);
  background: var(--white);
  color: #5d6875;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color .16s ease, color .16s ease;
}

.site-search:hover {
  border-color: var(--gold-500);
  color: var(--navy-900);
}

.site-search svg {
  flex: 0 0 auto;
}

.menu-button {
  display: none;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy-900);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-button:hover {
  border-color: var(--gold-500);
}

.menu-bars {
  display: grid;
  gap: 3px;
  width: 15px;
}

.menu-bars span {
  height: 1.5px;
  background: currentColor;
}

/* --------------------------------------------------------------------------
   Layer 3 — contextual navigation + breadcrumb
   -------------------------------------------------------------------------- */

.contextual-nav {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 44px), transparent 100%);
  mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 44px), transparent 100%);
}

.contextual-nav::-webkit-scrollbar {
  height: 0;
}

.contextual-nav .container::after {
  content: '';
  flex: 0 0 52px;
}

.contextual-nav .container {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-height: 46px;
  white-space: nowrap;
}

.contextual-nav a {
  display: flex;
  align-items: center;
  padding: 0 15px;
  color: #4d5866;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .11em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .16s ease, box-shadow .16s ease;
}

.contextual-nav a:hover {
  color: var(--gold-600);
  box-shadow: inset 0 -2px 0 rgb(191 149 83 / 50%);
}

.contextual-nav a[aria-current='page'] {
  color: var(--navy-900);
  box-shadow: inset 0 -2px 0 var(--gold-500);
}

.breadcrumb {
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
}

.breadcrumb ol {
  min-height: 46px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-block: 0;
  padding: 0;
  list-style: none;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #5d6875;
}

.breadcrumb li + li::before {
  content: '/';
  margin-inline-end: 9px;
  color: var(--gold-500);
}

.breadcrumb a {
  color: #5d6875;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--gold-600);
}

[dir='rtl'] .contextual-nav {
  -webkit-mask-image: linear-gradient(270deg, #000 0, #000 calc(100% - 44px), transparent 100%);
  mask-image: linear-gradient(270deg, #000 0, #000 calc(100% - 44px), transparent 100%);
}

[dir='rtl'] .hero::before,
[dir='rtl'] .page-hero::before {
  right: auto;
  left: -260px;
}

[dir='rtl'] .cta-band::after {
  right: auto;
  left: -90px;
}

[dir='rtl'] .appbar-tag > span:first-child::before,
[dir='rtl'] .pillars-bus,
[dir='rtl'] .method-step::before {
  transform: none;
}

[dir='rtl'] .appbar-tag > span:first-child::before {
  transform: rotate(45deg);
}

/* --------------------------------------------------------------------------
   Heroes
   -------------------------------------------------------------------------- */

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(90deg, transparent 0 95px, rgb(255 255 255 / 4%) 95px 96px),
    repeating-linear-gradient(0deg, transparent 0 95px, rgb(255 255 255 / 3%) 95px 96px),
    linear-gradient(118deg, #061020 0%, #0c1c31 52%, #123056 100%);
  color: var(--white);
}

.hero::before,
.page-hero::before {
  content: '';
  position: absolute;
  width: 680px;
  height: 680px;
  right: -260px;
  top: -300px;
  border: 1px solid rgb(217 190 138 / 22%);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgb(217 190 138 / 4.5%),
    0 0 0 160px rgb(217 190 138 / 3.5%),
    0 0 0 240px rgb(217 190 138 / 2.5%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  align-items: center;
  gap: 72px;
  padding-block: 104px 96px;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding-block: 96px 84px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--gold-600);
}

.eyebrow::before {
  content: '';
  flex: 0 0 auto;
  width: 44px;
  height: 1px;
  background: currentColor;
}

.hero .eyebrow,
.page-hero .eyebrow,
.section.navy .eyebrow {
  color: var(--gold-300);
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy-900);
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  text-wrap: pretty;
}

p {
  text-wrap: pretty;
}

h1 {
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(40px, 5.4vw, 74px);
  line-height: 1.04;
  letter-spacing: -.018em;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(36px, 4.7vw, 62px);
}

.hero-lead,
.page-hero .lead {
  max-width: 700px;
  margin: 0;
  color: var(--on-navy);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.62;
}

.hero-kicker {
  margin: 26px 0 0;
  padding-inline-start: 18px;
  border-inline-start: 2px solid var(--gold-500);
  font-family: var(--serif-text);
  font-style: italic;
  font-size: 20px;
  line-height: 1.45;
  color: var(--gold-300);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid var(--gold-500);
  background: var(--gold-500);
  color: var(--navy-950);
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.button:hover {
  background: var(--gold-300);
  border-color: var(--gold-300);
  color: var(--navy-950);
  transform: translateY(-1px);
}

.button.secondary {
  border-color: rgb(255 255 255 / 34%);
  background: transparent;
  color: var(--white);
}

.button.secondary:hover {
  background: rgb(255 255 255 / 7%);
  border-color: rgb(217 190 138 / 70%);
  color: var(--white);
}

.button.dark {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: var(--white);
}

.button.dark:hover {
  background: var(--navy-950);
  border-color: var(--navy-950);
  color: var(--gold-300);
}

.button.outline {
  border-color: var(--navy-900);
  background: transparent;
  color: var(--navy-900);
}

.button.outline:hover {
  background: var(--navy-900);
  color: var(--white);
}

/* --------------------------------------------------------------------------
   3 + 1 framework diagram (home hero)
   -------------------------------------------------------------------------- */

.pillars {
  margin: 0;
  border: 1px solid rgb(217 190 138 / 40%);
  background: rgb(255 255 255 / 2.8%);
  box-shadow: var(--shadow-deep);
}

.pillars-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid rgb(217 190 138 / 28%);
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--on-navy-dim);
}

.pillars-head b {
  color: var(--gold-300);
  font-weight: 500;
}

.pillars-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pillar {
  padding: 26px 18px 22px;
  border-inline-end: 1px solid rgb(255 255 255 / 13%);
}

.pillar:last-child {
  border-inline-end: 0;
}

.pillar i {
  display: block;
  font-family: var(--mono);
  font-size: 9.5px;
  font-style: normal;
  letter-spacing: .16em;
  color: var(--gold-300);
}

.pillar em {
  display: block;
  margin-top: 3px;
  font-family: var(--mono);
  font-size: 9px;
  font-style: normal;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #7d8fa1;
}

.pillar strong {
  display: block;
  margin-top: 16px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
}

.pillars-bus {
  position: relative;
  height: 34px;
}

.pillars-bus::before {
  content: '';
  position: absolute;
  left: 16.66%;
  right: 16.66%;
  top: 22px;
  height: 1px;
  background: rgb(217 190 138 / 55%);
}

.pillars-bus span {
  position: absolute;
  top: 0;
  width: 1px;
  height: 22px;
  background: rgb(217 190 138 / 55%);
}

.pillars-bus span:nth-child(1) { left: 16.66%; }
.pillars-bus span:nth-child(2) { left: 50%; }
.pillars-bus span:nth-child(3) { left: 83.33%; }
.pillars-bus span:nth-child(4) { top: 22px; left: 50%; height: 12px; }

.pillars-base {
  padding: 24px 22px 28px;
  border-top: 1px solid var(--gold-500);
  background: rgb(6 16 32 / 55%);
}

.pillars-base i {
  display: block;
  font-family: var(--mono);
  font-size: 9.5px;
  font-style: normal;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-300);
}

.pillars-base strong {
  display: block;
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
}

.pillars-base p {
  margin: 12px 0 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.7;
  color: #93a5b6;
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

.section {
  padding-block: 112px;
}

.section.compact {
  padding-block: 76px;
}

.section.white {
  background: var(--white);
}

.section.navy {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  color: var(--on-navy);
}

.section.navy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 95px, rgb(255 255 255 / 3.5%) 95px 96px);
  pointer-events: none;
}

.section.navy > .container {
  position: relative;
  z-index: 1;
}

.section.gold-wash {
  background: linear-gradient(135deg, #e8dfcc, var(--paper));
}

.section-heading {
  max-width: 860px;
  margin-bottom: 56px;
}

.section-heading.wide {
  max-width: 980px;
}

.section-heading h2 {
  margin-bottom: 20px;
  font-size: clamp(30px, 4.1vw, 52px);
  letter-spacing: -.015em;
}

.section-heading > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.section.navy h2,
.section.navy h3 {
  color: var(--white);
}

.section.navy p:not(.eyebrow) {
  color: var(--on-navy);
}

/* --------------------------------------------------------------------------
   Hairline card register
   -------------------------------------------------------------------------- */

.grid-2,
.grid-3,
.grid-4,
.grid-5 {
  display: grid;
  gap: 0;
}

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

@media (min-width: 1181px) {
  .grid-3 > :nth-child(3n + 2):last-child {
    grid-column: span 2;
  }
}

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

.container.grid-2 {
  gap: 56px;
  align-items: start;
}

.card {
  position: relative;
  min-width: 0;
  margin-block: 0 -1px;
  margin-inline: 0 -1px;
  padding: 36px 30px 40px;
  border: 1px solid var(--line);
  background: var(--white);
}

.container.grid-2 > .card {
  margin: 0;
}

.section.navy .card {
  border-color: rgb(255 255 255 / 15%);
  background: rgb(255 255 255 / 3%);
  color: var(--on-navy);
}

.card h3 {
  margin-bottom: 14px;
  font-family: var(--serif-text);
  font-size: 24px;
  line-height: 1.18;
}

.card p:last-child,
.card ul:last-child,
.card .actions:last-child {
  margin-bottom: 0;
}

.card p {
  font-size: 15.5px;
  line-height: 1.68;
  color: var(--body);
}

.section.navy .card p {
  color: var(--on-navy);
}

.card-number {
  display: block;
  margin-bottom: 22px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--gold-600);
}

.section.navy .card-number {
  color: var(--gold-300);
}

.card.featured {
  z-index: 1;
  border-color: var(--gold-500);
  background: var(--navy-900);
  color: var(--on-navy);
  box-shadow: var(--shadow);
}

.card.featured h3 {
  color: var(--white);
}

.card.featured p {
  color: var(--on-navy);
}

.card.featured .card-number {
  color: var(--gold-300);
}

.card.featured .check-list li {
  border-bottom-color: rgb(255 255 255 / 14%);
}

.card.core-block {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(0, 1.15fr);
  column-gap: 48px;
  margin: 22px 0 0;
  padding: 44px 40px 48px;
  border: 0;
  border-top: 2px solid var(--gold-500);
}

.card.core-block .card-number {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 20px;
}

.card.core-block h3 {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.08;
}

.card.core-block p {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  font-size: 18px;
  line-height: 1.62;
}

.card-link {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  transition: background-color .18s ease;
}

.card-link:hover {
  background: var(--paper);
  color: inherit;
}

.card-link h3 {
  margin-bottom: 12px;
}

.card-link p {
  margin-bottom: 26px;
}

.card-link::after {
  content: 'Open →';
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-600);
}

[dir='rtl'] .card-link::after {
  content: 'Open ←';
}

.text-link::after {
  content: ' \2192';
}

[dir='rtl'] .text-link::after {
  content: ' \2190';
}

.text-link {
  color: var(--navy-800);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-underline-offset: 5px;
}

.section.navy .text-link {
  color: var(--gold-300);
}

/* --------------------------------------------------------------------------
   Ecosystem layer stack
   -------------------------------------------------------------------------- */

.eco-layer {
  display: grid;
  grid-template-columns: minmax(250px, .85fr) minmax(0, 1.35fr);
  gap: 40px;
  padding: 32px 0;
  border-top: 1px solid rgb(255 255 255 / 15%);
}

.eco-layer:first-child {
  border-top: 0;
  padding-top: 0;
}

.eco-layer.is-proposal {
  border-top-color: var(--gold-500);
}

.eco-index {
  display: block;
  margin-bottom: 12px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--gold-300);
}

.eco-layer h3 {
  margin: 0 0 12px;
  font-family: var(--serif-text);
  font-size: 24px;
  line-height: 1.16;
}

.eco-layer > div > p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #a8b8c7;
}

.eco-items {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 8px;
}

.eco-items > * {
  padding: 10px 14px;
  border: 1px solid rgb(255 255 255 / 18%);
  background: rgb(255 255 255 / 4%);
  color: #dbe3ea;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .05em;
  text-decoration: none;
}

.eco-items > a:hover {
  border-color: var(--gold-500);
  color: var(--gold-300);
}

.eco-items > .is-core {
  border-color: var(--gold-500);
  background: rgb(217 190 138 / 14%);
  color: var(--gold-300);
}

/* --------------------------------------------------------------------------
   Operating sequence axis (Understand → Transform)
   -------------------------------------------------------------------------- */

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

.method-line.cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.method-step {
  position: relative;
  padding-block: 0 8px;
  padding-inline: 0 26px;
  border-top: 1px solid rgb(217 190 138 / 45%);
}

.method-step:last-child {
  padding-inline-end: 0;
}

.method-step::before {
  content: '';
  display: block;
  width: 9px;
  height: 9px;
  margin-top: -5px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 4px var(--paper);
}

.section.white .method-step::before {
  box-shadow: 0 0 0 4px var(--white);
}

.section.navy .method-step::before {
  box-shadow: 0 0 0 4px var(--navy-900);
}

.method-step span {
  display: block;
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  color: var(--gold-600);
}

.section.navy .method-step span {
  color: var(--gold-300);
}

.method-step h3 {
  margin: 12px 0;
  font-size: 26px;
  line-height: 1.1;
}

.method-step p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--body);
}

.section.navy .method-step p {
  color: #a8b8c7;
}

/* --------------------------------------------------------------------------
   Editorial register (Daily Observatory)
   -------------------------------------------------------------------------- */

.edition-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold-500);
  background: var(--white);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

.edition-bar b {
  color: var(--navy-900);
  font-weight: 600;
}

.signal {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) 180px;
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.signal:last-child {
  border-bottom: 0;
}

.signal-domain {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-700);
}

.signal h3 {
  margin: 0 0 8px;
  font-family: var(--serif-text);
  font-size: 21px;
  line-height: 1.2;
}

.signal p {
  margin: 0;
  font-size: 15px;
  line-height: 1.62;
  color: var(--body);
}

.signal-read {
  font-family: var(--mono);
  font-size: 10.5px;
  line-height: 1.7;
  letter-spacing: .06em;
  color: var(--muted);
}

.signal-read b {
  display: block;
  margin-bottom: 5px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--navy-900);
}

/* --------------------------------------------------------------------------
   Map tiles (Maps preview)
   -------------------------------------------------------------------------- */

.map-tile {
  display: flex;
  flex-direction: column;
  margin-block: 0 -1px;
  margin-inline: 0 -1px;
  border: 1px solid var(--line);
  background: var(--white);
  color: inherit;
  text-decoration: none;
}

.map-plate {
  position: relative;
  aspect-ratio: 16 / 10;
  background:
    repeating-linear-gradient(135deg, rgb(22 48 78 / 9%) 0 2px, transparent 2px 9px),
    repeating-linear-gradient(0deg, transparent 0 31px, rgb(22 48 78 / 8%) 31px 32px),
    repeating-linear-gradient(90deg, transparent 0 31px, rgb(22 48 78 / 8%) 31px 32px),
    var(--paper-2);
}

.map-plate span {
  position: absolute;
  left: 14px;
  bottom: 12px;
  padding: 5px 9px;
  background: var(--white);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}

.map-body {
  padding: 22px 22px 26px;
}

.map-body b {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-900);
  font-family: var(--serif-text);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

.map-body small {
  display: block;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--body);
}

.map-layers {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.map-layers i {
  padding: 5px 9px;
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 9.5px;
  font-style: normal;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Service ladder
   -------------------------------------------------------------------------- */

.service-ladder {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--white);
}

.service-ladder > div {
  min-height: 170px;
  padding: 28px 24px;
  border-inline-end: 1px solid var(--line);
}

.service-ladder > div:last-child {
  border-inline-end: 0;
}

.service-ladder span {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  background: var(--navy-900);
  color: var(--gold-300);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
}

.service-ladder strong {
  display: block;
  margin-top: 20px;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.1;
}

.service-ladder small {
  display: block;
  margin-top: 10px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--body);
}

/* --------------------------------------------------------------------------
   NTL gate track
   -------------------------------------------------------------------------- */

.ntl-track {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin-bottom: 34px;
}

.ntl-cycle {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 14px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--muted);
}

.ntl-cycle b {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 500;
  color: var(--navy-900);
}

.ntl-cycle b::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--gold-500);
}

.ntl-cycle b + b::before {
  background: var(--navy-700);
}

.ntl-node {
  position: relative;
  padding-block: 0 4px;
  padding-inline: 0 14px;
  border-top: 2px solid var(--gold-500);
}

.ntl-node:nth-child(n + 3) {
  border-top-color: var(--navy-700);
}

.ntl-node:last-child {
  padding-inline-end: 0;
}

.ntl-node::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  margin-top: -5px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 4px var(--paper);
}

.ntl-node:nth-child(n + 3)::before {
  background: var(--navy-700);
}

.ntl-node b {
  display: block;
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .13em;
  color: var(--navy-900);
}

.ntl-node span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--body);
}

/* --------------------------------------------------------------------------
   Tables, quotes, notices, lists
   -------------------------------------------------------------------------- */

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--white);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}

th,
td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--navy-900);
  color: var(--white);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}

td {
  color: var(--body);
}

td strong {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--navy-900);
}

tbody tr:nth-child(even) {
  background: #fbfaf6;
}

tr:last-child td {
  border-bottom: 0;
}

.quote {
  margin: 0;
  padding: 40px 44px;
  border-inline-start: 3px solid var(--gold-500);
  background: var(--white);
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: clamp(24px, 3.3vw, 38px);
  font-weight: 400;
  line-height: 1.26;
}

.section.white .quote {
  background: var(--paper);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgb(29 107 79 / 30%);
  background: rgb(29 107 79 / 8%);
  color: var(--success);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.status.preview {
  border-color: rgb(191 149 83 / 40%);
  background: rgb(191 149 83 / 11%);
  color: var(--gold-600);
}

.proposed {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  border: 1px dashed var(--gold-500);
  color: var(--gold-700);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.section.navy .proposed {
  border-color: rgb(217 190 138 / 60%);
  color: var(--gold-300);
}

.notice {
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-inline-start: 3px solid var(--gold-500);
  background: var(--paper-2);
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
}

.section.white .notice {
  background: var(--paper);
}

.section.navy .notice {
  border-color: rgb(255 255 255 / 15%);
  border-inline-start-color: var(--gold-500);
  background: rgb(255 255 255 / 4%);
  color: var(--on-navy);
}

.check-list,
.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-block: 14px;
  padding-inline: 26px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15px;
  color: var(--body);
}

.check-list li::before {
  content: '';
  position: absolute;
  inset-inline-start: 2px;
  top: 22px;
  width: 7px;
  height: 1px;
  background: var(--gold-500);
}

.section.navy .check-list li,
.card.featured .check-list li {
  color: var(--on-navy);
}

.check-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.plain-list li + li {
  margin-top: 8px;
}

.domain-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.domain-row span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy-800);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
}

.section.navy .domain-row span {
  border-color: rgb(255 255 255 / 18%);
  background: rgb(255 255 255 / 4%);
  color: var(--on-navy);
}

/* --------------------------------------------------------------------------
   Credential
   -------------------------------------------------------------------------- */

.credential {
  overflow: hidden;
  border: 1px solid var(--gold-500);
  background: var(--white);
  box-shadow: var(--shadow);
}

.credential-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  background: var(--navy-900);
  color: var(--white);
}

.credential-head strong {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.15;
}

.credential-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.credential-field {
  padding: 24px 32px;
  border-inline-end: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.credential-field:nth-child(2n) {
  border-inline-end: 0;
}

.credential-field small {
  display: block;
  margin-bottom: 7px;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: #5d6875;
}

.credential-field strong {
  color: var(--navy-900);
  font-size: 15.5px;
}

.credential-field:has(.copy-button) {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 0;
}

.credential-field:has(.copy-button) small {
  flex: 1 0 100%;
}

.credential-head .status {
  border-color: rgb(255 255 255 / 30%);
  background: rgb(255 255 255 / 8%);
  color: #7fd3ac;
}

.copy-button {
  flex: 0 0 auto;
  margin-inline-start: 12px;
  padding: 9px 14px;
  border: 1px solid var(--gold-500);
  background: var(--white);
  color: var(--gold-600);
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color .16s ease, color .16s ease;
}

.copy-button:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-950);
}

/* --------------------------------------------------------------------------
   Prose
   -------------------------------------------------------------------------- */

.prose {
  max-width: 860px;
}

.prose h2 {
  margin-top: 72px;
  margin-bottom: 20px;
  font-size: clamp(28px, 3.4vw, 40px);
}

.prose h3 {
  margin-top: 44px;
  margin-bottom: 12px;
  font-family: var(--serif-text);
  font-size: 25px;
}

.prose p,
.prose li {
  color: #333e4a;
  font-size: 17px;
  line-height: 1.72;
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--gold-500);
  color: var(--navy-950);
}

.cta-band::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  right: -90px;
  bottom: -260px;
  border: 1px solid rgb(9 24 42 / 26%);
  border-radius: 50%;
  box-shadow: 0 0 0 52px rgb(9 24 42 / 5.5%), 0 0 0 104px rgb(9 24 42 / 4.5%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
  padding-block: 80px;
}

.cta-inner h2 {
  max-width: 780px;
  margin-bottom: 16px;
  color: var(--navy-950);
  font-size: clamp(30px, 4.1vw, 50px);
  letter-spacing: -.015em;
}

.cta-inner p {
  max-width: 740px;
  margin: 0;
  font-size: 17.5px;
  line-height: 1.6;
  color: #25313f;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--navy-950);
  color: var(--on-navy-dim);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 1fr);
  gap: 48px;
  padding-block: 80px 64px;
}

.footer-lockup {
  display: block;
  text-decoration: none;
}

.footer-lockup b {
  display: block;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .02em;
  color: var(--white);
}

.footer-lockup i {
  display: block;
  width: 66px;
  height: 1px;
  margin: 10px 0;
  background: var(--gold-500);
}

.footer-lockup span {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold-300);
}

.footer-note {
  margin: 24px 0 0;
  max-width: 320px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--on-navy-dim);
}

.footer-grid h2 {
  margin-bottom: 20px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--gold-300);
}

.footer-grid > div > a {
  display: block;
  padding-block: 4.5px;
  color: var(--on-navy);
  font-size: 13.5px;
  text-decoration: none;
}

.footer-grid > div > a:hover {
  color: var(--gold-300);
}

.footer-bottom {
  min-height: 66px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 18px;
  border-top: 1px solid rgb(255 255 255 / 11%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #7d8fa1;
}

.footer-bottom span:last-child {
  color: var(--gold-300);
}

.error-code {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-300);
  font-family: var(--serif);
  font-size: clamp(80px, 16vw, 176px);
  line-height: .8;
  letter-spacing: -.05em;
}

/* --------------------------------------------------------------------------
   Case meta
   -------------------------------------------------------------------------- */

.case-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--white);
}

.case-meta div {
  padding: 20px 22px;
  border-inline-end: 1px solid var(--line-soft);
}

.case-meta div:last-child {
  border-inline-end: 0;
}

.case-meta small {
  display: block;
  margin-bottom: 7px;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #5d6875;
}

.case-meta strong {
  color: var(--navy-900);
  font-family: var(--serif-text);
  font-size: 18px;
  font-weight: 400;
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */

.mt-18 { margin-top: 18px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-28 { margin-top: 28px; }
.span-all { grid-column: 1 / -1; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
    padding-block: 84px 76px;
  }

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

  .pillars {
    max-width: 760px;
  }

  .grid-5,
  .service-ladder,
  .ntl-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-ladder > div:nth-child(3n) {
    border-inline-end: 0;
  }

  .service-ladder > div:not(:nth-last-child(-n + 2)) {
    border-bottom: 1px solid var(--line);
  }

  .ntl-track {
    gap: 26px 0;
  }

  .footer-grid {
    grid-template-columns: 1.25fr repeat(2, 1fr);
    gap: 44px;
  }
}

@media (max-width: 760px) {
  .appbar-inner {
    min-height: 58px;
    gap: 14px;
  }

  .appbar-tag {
    padding-right: 0;
  }

  .appbar-rule {
    display: none;
  }

  .appbar-actions {
    margin-left: auto;
    padding-left: 0;
  }

  .site-search {
    display: none;
  }

  .appbar-login,
  .copy-button {
    min-height: 44px;
    padding-inline: 19px;
  }

  .lang-switch > * {
    min-height: 44px;
  }

  .menu-button {
    display: inline-flex;
    margin-left: auto;
  }

  /* Global navigation becomes a full-screen institutional drawer */
  .appbar-links {
    position: fixed;
    z-index: 300;
    inset: 0;
    display: none;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 26px 26px 40px;
    background: var(--navy-950);
    overflow-y: auto;
  }

  .appbar-links[data-open] {
    display: flex;
  }

  .appbar-links a {
    padding: 18px 2px;
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 400;
    color: var(--white);
    box-shadow: inset 0 -1px 0 rgb(255 255 255 / 12%);
  }

  .appbar-links a:hover,
  .appbar-links a[aria-current='page'] {
    color: var(--gold-300);
    box-shadow: inset 0 -1px 0 var(--gold-500);
  }

  .nav-close {
    display: flex;
    align-items: center;
    gap: 9px;
    align-self: flex-end;
    min-height: 44px;
    margin-bottom: 22px;
    padding: 10px 15px;
    border: 1px solid rgb(255 255 255 / 26%);
    background: transparent;
    color: var(--gold-300);
    font-family: var(--mono);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    cursor: pointer;
  }

}

@media (max-width: 1040px) {
  .grid-3,
  .grid-4,
  .grid-5,
  .ntl-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .eco-layer {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .signal {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 8px 24px;
  }

  .signal-read {
    grid-column: 2;
  }


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

  .service-ladder > div:nth-child(2n) {
    border-inline-end: 0;
  }

  .service-ladder > div:nth-child(3n) {
    border-inline-end: 1px solid var(--line);
  }

  .method-line,
  .method-line.cols-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 0;
  }

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

  .case-meta div:nth-child(2n) {
    border-inline-end: 0;
  }

  .case-meta div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-soft);
  }

  .container.grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .card.core-block {
    grid-template-columns: 1fr;
    row-gap: 18px;
    padding: 36px 30px 40px;
  }

  .card.core-block h3,
  .card.core-block p {
    grid-column: 1;
    grid-row: auto;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-inner > .button {
    justify-self: start;
  }
}

@media (min-width: 761px) and (max-width: 1180px) {
  .grid-3 > :nth-child(3n + 2):last-child,
  .grid-5 > :nth-child(3n + 2):last-child,
  .service-ladder > div:nth-child(3n + 2):last-child {
    grid-column: span 2;
  }

  .ntl-track > :nth-child(3n + 1):last-child {
    grid-column: span 3;
  }
}

@media (min-width: 761px) and (max-width: 1040px) {
  /* a trailing full-width block pushes the item before it into a row of its own */
  .grid-3:has(> .span-all:last-child) > :nth-child(odd):nth-last-child(2) {
    grid-column: span 2;
  }

  .grid-3 > :nth-child(odd):last-child,
  .grid-4 > :nth-child(odd):last-child,
  .grid-5 > :nth-child(odd):last-child,
  .service-ladder > div:nth-child(odd):last-child,
  .method-line > :nth-child(odd):last-child,
  .ntl-track > :nth-child(odd):last-child {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, var(--max));
  }

  .appbar-inner {
    min-height: 54px;
    padding-block: 9px;
  }

  .appbar-tag {
    font-size: 10px;
    letter-spacing: .18em;
  }

  .appbar-tag small {
    font-size: 9.5px;
    letter-spacing: .12em;
    white-space: normal;
  }

  .appbar-actions > a:not(.appbar-login) {
    display: none;
  }

  .appbar-actions {
    gap: 8px;
  }

  .lang-switch > * {
    min-height: 44px;
    padding: 0 9px;
    letter-spacing: .08em;
  }

  .signal {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 0;
  }

  .signal-read {
    grid-column: 1;
    padding-top: 4px;
  }

  .edition-bar {
    font-size: 9.5px;
  }

  .header-inner {
    min-height: 72px;
    gap: 14px;
  }

  .brand img {
    width: 124px;
    height: 42px;
  }

  .brand-rule {
    display: none;
  }

  .brand-title {
    font-size: 19px;
  }

  .brand-subtitle {
    display: none;
  }

  .menu-button span:last-child {
    display: none;
  }

  .menu-button {
    padding: 10px 12px;
  }

  .contextual-nav .container {
    min-height: 44px;
  }

  .contextual-nav a {
    padding: 0 12px;
    font-size: 10.5px;
  }

  .hero-grid {
    padding-block: 64px 60px;
    gap: 44px;
  }

  .page-hero-inner {
    padding-block: 64px 56px;
  }

  h1,
  .page-hero h1 {
    font-size: clamp(33px, 10vw, 46px);
  }

  .hero-lead,
  .page-hero .lead {
    font-size: 17px;
  }

  .hero-kicker {
    font-size: 18px;
  }

  .actions {
    margin-top: 30px;
  }

  .button {
    width: 100%;
  }

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

  .pillar {
    border-inline-end: 0;
    border-bottom: 1px solid rgb(255 255 255 / 13%);
    padding: 20px 18px;
  }

  .pillar strong {
    margin-top: 10px;
    font-size: 21px;
  }

  .pillars-bus {
    display: none;
  }

  .pillars-base strong {
    font-size: 25px;
  }

  .section {
    padding-block: 72px;
  }

  .section.compact {
    padding-block: 54px;
  }

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

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

  .section-heading > p:not(.eyebrow) {
    font-size: 17px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5,
  .method-line,
  .method-line.cols-5,
  .service-ladder,
  .credential-body,
  .case-meta,
  .ntl-track,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 28px 24px 32px;
  }

  .card.core-block {
    grid-template-columns: 1fr;
    row-gap: 16px;
    padding: 32px 24px 36px;
  }

  .card.core-block h3,
  .card.core-block p {
    grid-column: 1;
    grid-row: auto;
  }

  .method-line,
  .method-line.cols-5 {
    gap: 34px 0;
  }

  .method-step,
  .method-step:last-child {
    padding-right: 0;
  }

  .method-step h3 {
    font-size: 23px;
  }

  .service-ladder > div,
  .service-ladder > div:nth-child(2n),
  .service-ladder > div:nth-child(3n) {
    min-height: 0;
    border-inline-end: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-ladder > div:last-child {
    border-bottom: 0;
  }

  .ntl-track {
    gap: 22px 0;
    margin-bottom: 28px;
  }

  .ntl-node,
  .ntl-node:last-child {
    padding-right: 0;
  }

  .case-meta div,
  .case-meta div:nth-child(2n) {
    border-inline-end: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .case-meta div:last-child {
    border-bottom: 0;
  }

  .credential-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding: 22px 24px;
  }

  .credential-head strong {
    font-size: 25px;
  }

  .credential-field,
  .credential-field:nth-child(2n) {
    border-inline-end: 0;
    padding: 20px 24px;
  }

  .quote {
    padding: 28px 24px;
  }

  .cta-inner {
    padding-block: 60px;
    gap: 26px;
  }

  .footer-grid {
    gap: 34px;
    padding-block: 60px 48px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

  .prose h2 {
    margin-top: 52px;
  }

  th,
  td {
    padding: 14px 16px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

@media print {
  .appbar,
  .lang-switch,
  .site-header,
  .contextual-nav,
  .breadcrumb,
  .site-footer,
  .cta-band,
  .actions,
  .menu-button,
  .site-search {
    display: none !important;
  }

  body,
  .section,
  .section.navy,
  .page-hero,
  .hero {
    background: #fff !important;
    color: #000 !important;
  }

  .hero::before,
  .page-hero::before,
  .section.navy::before {
    display: none !important;
  }

  h1,
  h2,
  h3,
  .page-hero h1,
  .section.navy h2,
  .section.navy h3 {
    color: #000 !important;
  }

  .card,
  .table-wrap,
  .notice {
    border-color: #999 !important;
    background: #fff !important;
  }
}
