:root {
  color-scheme: light;
  --color-brand-50: #eaf7fb;
  --color-brand-100: #cdeff7;
  --color-brand-600: #007599;
  --color-brand-700: #00617f;
  --color-brand-800: #004f68;
  --color-brand-900: #12313f;
  --color-accent-500: #b97815;
  --color-accent-700: #7a4c07;
  --color-success-700: #276a47;
  --color-background: #ffffff;
  --color-surface: #ffffff;
  --color-surface-raised: #f7fbfc;
  --color-surface-muted: #eef6f8;
  --color-text: #102434;
  --color-text-soft: #203747;
  --color-text-muted: #4c5f6c;
  --color-text-inverse: #ffffff;
  --color-border: #cbdbe2;
  --color-border-strong: #9ab5c1;
  --color-focus: #8bd3e8;
  --color-overlay: rgba(17, 36, 51, 0.42);
  --color-warning-surface: #fff7e8;
  --color-warning-border: #e1bd7c;
  --ink: var(--color-text);
  --ink-2: var(--color-text-soft);
  --muted: var(--color-text-muted);
  --line: var(--color-border);
  --line-strong: var(--color-border-strong);
  --paper: var(--color-surface);
  --soft: var(--color-surface-raised);
  --soft-2: var(--color-surface-muted);
  --teal: var(--color-brand-600);
  --teal-dark: var(--color-brand-800);
  --gold: var(--color-accent-500);
  --green: var(--color-success-700);
  --shadow: 0 24px 60px rgba(17, 36, 51, 0.12);
  --shadow-soft: 0 10px 30px rgba(17, 36, 51, 0.08);
  --radius: 8px;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --color-background: #081820;
    --color-surface: #102631;
    --color-surface-raised: #15303d;
    --color-surface-muted: #193846;
    --color-text: #f4fbfd;
    --color-text-soft: #e0edf1;
    --color-text-muted: #c0d2da;
    --color-text-inverse: #061116;
    --color-border: #315360;
    --color-border-strong: #5d7e8b;
    --color-focus: #f0b45a;
    --color-overlay: rgba(1, 8, 12, 0.64);
    --color-warning-surface: #2d261a;
    --color-warning-border: #7f6331;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.24);
  }

  :root:not([data-theme="light"]) .section-head > a {
    color: #8bd3e8;
  }

  :root:not([data-theme="light"]) .proof-strip {
    background: #102631;
  }

  :root:not([data-theme="light"]) .proof-strip span {
    color: #e0edf1;
  }

  :root:not([data-theme="light"]) .proof-strip strong {
    color: #8bd3e8;
  }
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --color-background: #081820;
  --color-surface: #102631;
  --color-surface-raised: #15303d;
  --color-surface-muted: #193846;
  --color-text: #f4fbfd;
  --color-text-soft: #e0edf1;
  --color-text-muted: #c0d2da;
  --color-text-inverse: #061116;
  --color-border: #315360;
  --color-border-strong: #5d7e8b;
  --color-focus: #f0b45a;
  --color-overlay: rgba(1, 8, 12, 0.64);
  --color-warning-surface: #2d261a;
  --color-warning-border: #7f6331;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.24);
}

:root[data-theme="dark"] .section-head > a {
  color: #8bd3e8;
}

:root[data-theme="dark"] .proof-strip {
  background: #102631;
}

:root[data-theme="dark"] .proof-strip span {
  color: #e0edf1;
}

:root[data-theme="dark"] .proof-strip strong {
  color: #8bd3e8;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--color-background);
  line-height: 1.6;
  overflow-x: clip;
}

a { color: inherit; }

button,
input,
textarea,
a {
  outline-offset: 3px;
}

:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--color-text-inverse);
  font-weight: 800;
  text-decoration: none;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  padding: 10px clamp(18px, 4vw, 44px);
  background: color-mix(in srgb, var(--color-surface) 92%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: max-content;
  border-radius: var(--radius);
}

.brand-mark {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1;
}

.brand small {
  color: var(--muted);
  display: block;
  font-size: 0.76rem;
}

.site-nav {
  flex: 1;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-mobile { display: none; }

.site-nav a,
.nav-group > button {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 12px;
  border-radius: var(--radius);
  font: inherit;
  font-size: 0.87rem;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.site-nav a:hover,
.site-nav a.active,
.nav-group > button:hover,
.nav-group > button.active {
  background: var(--soft);
  color: var(--teal-dark);
}

.nav-group { position: relative; }

.nav-group > button::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.subnav {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 380px;
  display: none;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.nav-group.expanded .subnav {
  display: grid;
  gap: 8px;
}

.subnav[hidden] {
  display: none;
}

.subnav a {
  justify-content: flex-start;
  white-space: normal;
}

.subnav-intro {
  padding: 10px 10px 8px;
  border-bottom: 1px solid var(--line);
}

.subnav-intro strong {
  display: block;
  color: var(--ink);
  line-height: 1.1;
}

.subnav-intro span,
.nav-card span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.35;
  margin-top: 2px;
}

.nav-card {
  display: grid !important;
  align-items: start !important;
  gap: 2px;
  min-height: 62px !important;
  padding: 11px 12px !important;
  border: 1px solid transparent;
}

.nav-card:hover,
.nav-card.active {
  border-color: var(--line);
  background: var(--soft) !important;
}

.nav-card strong {
  font-size: 0.92rem;
  line-height: 1.2;
}

.nav-cta {
  margin-left: 4px;
  background: var(--teal) !important;
  color: var(--color-text-inverse) !important;
  box-shadow: 0 8px 18px rgba(0, 117, 153, 0.18);
}

.header-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-search {
  position: relative;
  width: clamp(190px, 18vw, 280px);
}

.site-search input {
  width: 100%;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 0.88rem;
  padding: 8px 12px 8px 36px;
  background-image:
    linear-gradient(transparent, transparent),
    radial-gradient(circle at 50% 50%, transparent 44%, var(--muted) 47%, var(--muted) 58%, transparent 61%),
    linear-gradient(45deg, transparent 46%, var(--muted) 48%, var(--muted) 56%, transparent 58%);
  background-position: 0 0, 13px 12px, 25px 25px;
  background-repeat: no-repeat;
  background-size: 100% 100%, 12px 12px, 9px 9px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.site-search input::placeholder {
  color: var(--muted);
}

.site-search input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--teal) 18%, transparent);
  outline: 0;
}

.search-results {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 80;
  width: min(460px, 86vw);
  max-height: min(620px, calc(100vh - 120px));
  overflow: auto;
  padding: 10px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.search-results[hidden] {
  display: none;
}

.search-count,
.search-empty {
  margin: 0;
  padding: 8px 10px 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.search-list {
  display: grid;
  gap: 6px;
}

.search-result {
  display: grid;
  gap: 3px;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--ink);
  text-decoration: none;
}

.search-result:hover,
.search-result:focus-visible {
  border-color: var(--line);
  background: var(--soft);
}

.search-result strong {
  line-height: 1.2;
}

.search-result span {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.45;
}

.search-result mark {
  border-radius: 4px;
  background: color-mix(in srgb, var(--gold) 34%, transparent);
  color: inherit;
  padding-inline: 2px;
}

.theme-field {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.theme-field select {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 6px 28px 6px 10px;
}

.nav-cta:hover,
.nav-cta.active {
  background: var(--teal-dark) !important;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  width: 44px;
  height: 44px;
  padding: 0;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--color-overlay);
}

body.nav-open {
  overflow: hidden;
}

.hero {
  min-height: clamp(620px, 78vh, 780px);
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 74% 24%, rgba(185, 120, 21, 0.28), transparent 24%),
    linear-gradient(90deg, rgba(0, 43, 56, 0.88), rgba(0, 117, 153, 0.52)),
    url("https://img1.wsimg.com/isteam/ip/95e5dcb1-ff39-4afc-b337-408ac665696a/iStock-1257490460.jpg/:/rs=w:1800,m") center / cover;
  color: var(--color-text-inverse);
  overflow: hidden;
}

.hero-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 120px 0 82px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: clamp(32px, 6vw, 76px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  max-width: 880px;
  margin: 10px 0 18px;
  font-size: clamp(2.35rem, 6vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero p {
  max-width: 680px;
  margin: 0 0 26px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.92);
}

.command-panel {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(234, 247, 251, 0.9)),
    var(--paper);
  color: var(--ink);
  box-shadow: 0 34px 80px rgba(0, 20, 28, 0.32);
  animation: panel-enter 700ms ease both;
}

.command-panel::before {
  content: "";
  position: absolute;
  inset: -28px -18px auto auto;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(0, 117, 153, 0.18);
  border-radius: 999px;
  background: rgba(0, 117, 153, 0.08);
  z-index: -1;
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.panel-topline span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.panel-topline strong {
  max-width: 190px;
  text-align: right;
  line-height: 1.1;
}

.panel-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.panel-metrics div {
  min-height: 92px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.panel-metrics strong {
  display: block;
  color: var(--teal-dark);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1;
}

.panel-metrics span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.25;
}

.activity-list {
  display: grid;
  gap: 8px;
}

.activity-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  animation: slide-up 520ms ease both;
  animation-delay: var(--delay);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.activity-row:hover,
.activity-row:focus-visible {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.activity-row span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.activity-row strong {
  font-size: 0.82rem;
  color: var(--teal-dark);
}

.activity-row.review { border-left-color: var(--gold); }
.activity-row.done { border-left-color: var(--green); }
.activity-row.linked { border-left-color: #6d5bd0; }

.module-orbit {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 2px;
}

.module-orbit a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--soft-2);
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 850;
  text-decoration: none;
  animation: pulse-chip 2400ms ease-in-out infinite;
  animation-delay: var(--delay);
}

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

.proof-strip {
  width: min(1180px, calc(100% - 36px));
  margin: -34px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.proof-strip div {
  padding: 20px;
  display: grid;
  gap: 2px;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  color: var(--teal-dark);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1;
}

.proof-strip span {
  color: #203747;
  font-size: 0.9rem;
  font-weight: 700;
}

.command-workflow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding-top: 34px;
  padding-bottom: 10px;
}

.command-workflow a {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(17, 36, 51, 0.04);
  color: var(--ink);
  text-decoration: none;
  overflow: hidden;
  animation: slide-up 520ms ease both;
  animation-delay: var(--delay);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.command-workflow a::after {
  content: "";
  position: absolute;
  inset: auto 18px 14px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 180ms ease;
}

.command-workflow a:hover,
.command-workflow a:focus-visible {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.command-workflow a:hover::after,
.command-workflow a:focus-visible::after {
  transform: scaleX(1);
}

.command-workflow span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.command-workflow strong {
  font-size: 1.2rem;
  line-height: 1.1;
}

.command-workflow em {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.35;
}

@keyframes panel-enter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-chip {
  0%, 100% {
    transform: translateY(0);
    box-shadow: none;
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 117, 153, 0.12);
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: var(--teal);
  color: white;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0, 117, 153, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--teal-dark);
  box-shadow: 0 16px 30px rgba(0, 117, 153, 0.22);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}

.page-hero {
  background:
    radial-gradient(circle at 85% 20%, rgba(58, 122, 104, 0.14), transparent 28%),
    linear-gradient(135deg, #f8fbfc 0%, #e7f3f6 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero .container {
  padding-top: 70px;
  padding-bottom: 58px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--teal-dark);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.page-jump {
  position: sticky;
  top: 74px;
  z-index: 30;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px max(18px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.page-jump a,
.page-jump button {
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  font-size: 0.82rem;
  font-weight: 750;
  font-family: inherit;
  text-decoration: none;
  background: var(--paper);
  cursor: pointer;
}

.page-jump a:hover,
.page-jump button:hover,
.page-jump button:focus-visible {
  border-color: var(--teal);
  color: var(--teal-dark);
  outline: none;
}

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 68px 0;
}

.section-title {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.section-head .section-title {
  margin: 0;
}

.section-head > a {
  flex: 0 0 auto;
  color: #00445a;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.section-head > a:hover {
  text-decoration: underline;
}

.lead {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 850px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(17, 36, 51, 0.04);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: var(--radius) 0 0 var(--radius);
  background: var(--teal);
  opacity: 0;
  transition: opacity 160ms ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}

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

.card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

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

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

.card-link:hover h3 {
  color: var(--teal-dark);
}

.card-meta {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #dff0f4;
  color: #003f54;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.tag-list span {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  font-size: 0.78rem;
  font-weight: 750;
  background: var(--soft);
}

.solution-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
}

.solution-grid .card,
.resource-grid .card {
  min-height: 100%;
}

.module-map {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 0.75fr 1.65fr 1.1fr;
  gap: clamp(18px, 3vw, 30px);
  min-height: 620px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(220, 239, 244, 0.2), rgba(217, 241, 232, 0.5)),
    var(--paper);
  box-shadow: var(--shadow-soft);
}

.module-map::after {
  content: "";
  position: absolute;
  inset: auto 10% 24px;
  z-index: -1;
  height: 120px;
  background: radial-gradient(ellipse, rgba(0, 117, 153, 0.18), transparent 68%);
  animation: map-pulse 5.5s ease-in-out infinite;
}

.map-roof {
  position: absolute;
  inset: 34px -6% auto;
  z-index: -1;
  height: 360px;
  background: linear-gradient(180deg, rgba(214, 229, 38, 0.72), rgba(214, 229, 38, 0.06));
  clip-path: polygon(50% 0, 100% 46%, 100% 100%, 0 100%, 0 46%);
  opacity: 0.88;
}

.map-detail {
  position: absolute;
  top: 22px;
  left: 50%;
  z-index: 2;
  width: min(380px, calc(100% - 44px));
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 36px rgba(17, 36, 51, 0.12);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.map-detail span {
  display: block;
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-detail strong {
  display: block;
  margin-top: 4px;
  font-size: 1.25rem;
  line-height: 1.1;
}

.map-detail p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.map-column {
  display: grid;
  align-content: end;
  gap: 18px;
  min-width: 0;
}

.map-research {
  align-content: stretch;
}

.module-stack {
  display: grid;
  gap: 14px;
  align-content: center;
}

.research-stack {
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  align-items: center;
}

.module-pill {
  --module-bg: var(--teal-dark);
  display: grid;
  place-items: center;
  min-height: 72px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--module-bg);
  color: white;
  font-weight: 850;
  line-height: 1.18;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(0, 79, 104, 0.18);
  transform: translateY(10px);
  opacity: 0;
  animation: module-rise 580ms ease forwards;
  animation-delay: var(--delay);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.module-pill.infrastructure {
  --module-bg: #5f9f32;
}

.module-pill.research {
  --module-bg: #167899;
}

.module-pill.compliance {
  --module-bg: #087b86;
}

.module-pill.featured {
  grid-column: 2;
  min-height: 82px;
  background: linear-gradient(135deg, #0d7194, #0b5775);
}

.module-pill:nth-child(2) {
  margin-top: 8px;
}

.module-pill:hover,
.module-pill:focus-visible,
.module-pill.selected {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 22px 42px rgba(0, 79, 104, 0.24);
}

.module-pill span {
  max-width: 18ch;
}

.map-note {
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: var(--radius);
  background: rgba(228, 246, 241, 0.82);
  box-shadow: 0 12px 28px rgba(17, 36, 51, 0.08);
  backdrop-filter: blur(12px);
}

.map-note strong {
  display: block;
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.map-note p {
  margin: 10px 0 0;
  color: var(--ink-2);
}

.map-note.infrastructure strong {
  color: #3f7c22;
}

@keyframes module-rise {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes map-pulse {
  0%, 100% { opacity: 0.5; transform: scaleX(0.92); }
  50% { opacity: 1; transform: scaleX(1.08); }
}

.lifecycle-explorer {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.life-tabs {
  display: grid;
  align-content: start;
  background: var(--ink);
  padding: 10px;
}

.life-tab {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  padding: 9px 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: left;
}

.life-tab span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 0.74rem;
}

.life-tab:hover,
.life-tab.active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: white;
}

.life-tab.active span {
  background: var(--gold);
  color: var(--ink);
}

.life-tab.active::after {
  content: "";
  position: absolute;
  inset: auto 8px 5px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
  transform-origin: left;
  animation: life-progress 5.2s linear;
}

@keyframes life-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.life-panels {
  min-width: 0;
}

.life-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: clamp(22px, 4vw, 48px);
  min-height: 440px;
  padding: clamp(24px, 5vw, 52px);
  align-items: center;
  background:
    radial-gradient(circle at 90% 12%, rgba(200, 144, 47, 0.16), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #f3f8fa 100%);
}

.life-panel[hidden] {
  display: none;
}

.life-copy {
  display: grid;
  justify-items: start;
  gap: 16px;
}

.life-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.98;
}

.life-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--ink-2);
  font-size: 1.06rem;
}

.life-copy .button {
  margin-top: 4px;
}

.life-flow {
  display: grid;
  gap: 12px;
  position: relative;
}

.life-flow::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: var(--line-strong);
}

.flow-node {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 0 rgba(17, 36, 51, 0.04);
}

.flow-node span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-dark);
  color: white;
  font-size: 0.8rem;
  font-weight: 900;
}

.flow-node strong {
  color: var(--ink);
  line-height: 1.2;
}

.lifecycle {
  display: grid;
  grid-template-columns: repeat(6, minmax(160px, 1fr));
  gap: 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.lifecycle-step {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 180px;
  min-height: 210px;
  padding: 22px;
  color: inherit;
  text-decoration: none;
  border-right: 1px solid var(--line);
  transition: background 160ms ease, color 160ms ease;
}

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

.lifecycle-step span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft-2);
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 900;
}

.lifecycle-step strong {
  font-size: 1rem;
  line-height: 1.15;
}

.lifecycle-step em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.45;
}

.lifecycle-step:hover {
  background: var(--soft);
}

.lifecycle-step:hover strong {
  color: var(--teal-dark);
}

.trust-section {
  padding-top: 46px;
  padding-bottom: 46px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trust-grid article {
  display: grid;
  gap: 6px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 117, 153, 0.08), transparent 60%),
    var(--paper);
}

.trust-grid strong {
  color: var(--teal-dark);
  font-size: 1.05rem;
}

.trust-grid span {
  color: var(--muted);
  font-weight: 700;
}

.band {
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.copy > * + * { margin-top: 18px; }
.copy h2 { margin-bottom: 6px; font-size: 1.85rem; line-height: 1.15; }
.copy h3 { margin-bottom: 6px; color: var(--teal-dark); }
.copy p { margin-bottom: 0; }
.copy ul { padding-left: 1.2rem; }
.copy li + li { margin-top: 8px; }

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}

.stat {
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  font-weight: 800;
  box-shadow: 0 1px 0 rgba(17, 36, 51, 0.04);
}

.quote {
  border-left: 4px solid var(--gold);
  padding: 16px 18px;
  margin: 0;
  background: var(--paper);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: 0 1px 0 rgba(17, 36, 51, 0.04);
}

.quote p { font-size: 1.03rem; }
.quote cite { display: block; margin-top: 8px; color: var(--muted); font-style: normal; font-weight: 700; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.person {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(17, 36, 51, 0.04);
}

.person img,
.person-initials {
  width: 100%;
  height: 220px;
  background: var(--soft);
}

.person img { object-fit: cover; }

.person-initials {
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--teal-dark), var(--green));
  font-size: 3rem;
  font-weight: 800;
}

.person div { padding: 20px; }
.person h3 { margin: 0 0 10px; }
.person p { margin: 0; color: var(--muted); }
.person p + p { margin-top: 12px; }

.feature-list {
  display: grid;
  gap: 14px;
}

.feature {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.feature h3 { margin: 0 0 8px; }
.feature ul { margin: 0; padding-left: 1.2rem; }

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  font: inherit;
  background-color: #ffffff;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 117, 153, 0.2);
  outline: 0;
}

.contact-form textarea { min-height: 140px; }

.checkbox-field {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: var(--ink-2);
}

.checkbox-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-honey {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.notice {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--color-warning-surface);
  border: 1px solid var(--color-warning-border);
}

.section-head--compact {
  align-items: end;
  gap: 16px;
}

.section-head--compact p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.native-visual-section,
.visual-gallery-section {
  padding-top: clamp(38px, 5vw, 62px);
  padding-bottom: clamp(38px, 5vw, 62px);
}

.visual-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 18%, rgba(139, 211, 232, 0.3), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(185, 120, 21, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(234, 247, 251, 0.86), rgba(255, 255, 255, 0.96));
  box-shadow: var(--shadow-soft);
}

.visual-shell::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px dashed rgba(0, 117, 153, 0.18);
  border-radius: var(--radius);
  pointer-events: none;
}

.visual-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.visual-card {
  display: grid;
  gap: 12px;
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(234, 247, 251, 0.72), rgba(255, 255, 255, 0.98)),
    var(--paper);
  color: inherit;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.visual-card:hover,
.visual-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.visual-card-graphic {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 118px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 117, 153, 0.1), rgba(95, 159, 50, 0.12)),
    var(--soft);
  overflow: hidden;
}

.interest-fieldset {
  display: grid;
  gap: 10px;
  margin: 6px 0;
  padding: 18px;
  border: 1px solid rgba(6, 74, 102, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(214, 244, 9, 0.18), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(234, 247, 251, 0.9));
}

.interest-fieldset[hidden] {
  display: none;
}

.interest-fieldset legend {
  padding: 0 8px;
  color: var(--ri-navy, var(--teal-dark));
  font-weight: 900;
}

.served-audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.served-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  min-height: 158px;
  padding: 24px;
  border: 1px solid rgba(6, 74, 102, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(16, 185, 173, 0.1), transparent 12rem),
    linear-gradient(180deg, #ffffff, #eef8fb);
  box-shadow: 0 18px 44px rgba(5, 27, 43, 0.08);
  animation: module-rise 540ms ease both;
  animation-delay: var(--delay);
}

.served-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(214, 244, 9, 0.36);
  border-radius: 18px;
  background: linear-gradient(145deg, var(--ri-deep, #061c2e), var(--ri-panel, #0a3148));
  color: var(--ri-lime, #d6f409);
  box-shadow: 0 14px 28px rgba(5, 27, 43, 0.16);
}

.served-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.served-card h3 {
  margin: 0 0 8px;
  color: var(--ri-navy, #08263a);
  font-size: 1.12rem;
  line-height: 1.15;
}

.served-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.dual-cta .button.secondary {
  border-color: rgba(6, 74, 102, 0.24);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ri-navy, #08263a);
}

.persona-detail-list {
  display: grid;
  gap: 18px;
}

.persona-detail-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(6, 74, 102, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(214, 244, 9, 0.16), transparent 16rem),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(6, 45, 62, 0.08);
  animation: module-rise 560ms ease both;
  animation-delay: var(--delay);
  scroll-margin-top: 112px;
}

.persona-detail-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(16, 185, 173, 0.14);
  color: var(--ri-teal, #10b9ad);
}

.persona-detail-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.persona-detail-copy h3 {
  margin: 6px 0 10px;
  color: var(--ri-navy, #08263a);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.05;
}

.persona-detail-copy > p {
  max-width: 82ch;
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.55;
}

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

.persona-columns h4 {
  margin: 0 0 8px;
  color: var(--ri-deep, #061c2e);
}

.persona-columns ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.persona-columns li + li {
  margin-top: 6px;
}

.persona-module-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.persona-module-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(8, 38, 58, 0.08);
  color: var(--ri-navy, #08263a);
  font-size: 0.8rem;
  font-weight: 800;
}

.section-action {
  margin-top: 18px;
}

.visual-card-graphic::before,
.visual-card-graphic::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 2px solid rgba(0, 117, 153, 0.28);
}

.visual-card-graphic::before {
  width: 110px;
  height: 46px;
  transform: rotate(-18deg);
}

.visual-card-graphic::after {
  width: 80px;
  height: 80px;
  border-color: rgba(95, 159, 50, 0.34);
}

.visual-card-graphic i {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow:
    -42px 24px 0 var(--green),
    42px 24px 0 var(--gold);
}

.visual-card strong {
  color: var(--teal-dark);
  font-size: 1.08rem;
}

.visual-card em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.45;
}

.pillar-visual {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(24px, 4vw, 44px);
}

.pillar-hub {
  position: absolute;
  inset: auto 50% 34px auto;
  z-index: 0;
  display: grid;
  place-items: center;
  width: 168px;
  height: 168px;
  border: 3px solid rgba(0, 117, 153, 0.8);
  border-radius: 50%;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 20px 46px rgba(0, 79, 104, 0.14);
  transform: translateX(50%);
}

.pillar-hub span {
  margin-top: -38px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pillar-visual-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  min-height: 260px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(0, 117, 153, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  color: inherit;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  animation: module-rise 580ms ease both;
  animation-delay: var(--delay);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.pillar-visual-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 22px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--green), var(--gold));
}

.pillar-visual-card:hover,
.pillar-visual-card:focus-visible {
  transform: translateY(-5px);
  border-color: var(--teal);
  box-shadow: var(--shadow);
}

.pillar-visual-card span {
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 900;
}

.pillar-visual-card strong {
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1;
}

.pillar-visual-card em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.45;
}

.module-ecosystem {
  display: grid;
  grid-template-columns: 0.75fr 1.4fr 0.95fr;
  gap: 18px;
  padding: clamp(22px, 4vw, 42px);
}

.module-cluster {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(0, 117, 153, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  animation: module-rise 580ms ease both;
  animation-delay: var(--delay);
}

.module-cluster--research {
  background: rgba(234, 247, 251, 0.88);
}

.module-cluster-head {
  display: flex;
  align-items: start;
  gap: 12px;
}

.module-cluster-head > span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #dff0f4;
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.module-cluster-head strong {
  display: block;
  color: var(--teal-dark);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.module-cluster-head p {
  margin: 5px 0 0;
  color: var(--muted);
  line-height: 1.35;
}

.module-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.module-cluster--infrastructure .module-chip-grid,
.module-cluster--compliance .module-chip-grid {
  grid-template-columns: 1fr;
}

.module-chip {
  display: grid;
  place-items: center;
  min-height: 56px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: var(--teal-dark);
  color: white;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 14px 26px rgba(0, 79, 104, 0.14);
  animation: module-rise 580ms ease both;
  animation-delay: var(--delay);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.module-chip:hover,
.module-chip:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 20px 34px rgba(0, 79, 104, 0.22);
}

.module-chip--featured {
  grid-column: 1 / -1;
  min-height: 68px;
  background: linear-gradient(135deg, #0d7194, #0b5775);
}

.module-cluster--infrastructure .module-chip {
  background: #5f9f32;
}

.module-cluster--compliance .module-chip {
  background: #087b86;
}

.architecture-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 22px;
  padding: clamp(24px, 4vw, 42px);
}

.architecture-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.architecture-layer {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 84px;
  padding: 16px;
  border: 1px solid rgba(0, 117, 153, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  animation: module-rise 560ms ease both;
  animation-delay: var(--delay);
}

.architecture-layer span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #dff0f4;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.architecture-layer strong {
  display: block;
  color: var(--ink);
  font-size: 1.08rem;
}

.architecture-layer p {
  margin: 3px 0 0;
  color: var(--muted);
}

.architecture-side {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--teal-dark);
  color: white;
  box-shadow: var(--shadow-soft);
}

.architecture-side strong {
  font-size: 1.35rem;
  line-height: 1.1;
}

.architecture-side div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.architecture-side span {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  font-weight: 800;
}

.integration-ecosystem-native {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 190px;
  align-items: center;
  gap: clamp(18px, 3vw, 30px);
  min-height: 440px;
  padding: clamp(24px, 4vw, 42px);
}

.integration-orbit {
  position: absolute;
  inset: 40px 210px 40px 180px;
  border: 2px dashed rgba(0, 117, 153, 0.18);
  border-radius: 50%;
  animation: map-pulse 6s ease-in-out infinite;
}

.integration-center {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 190px;
  padding: 22px;
  border: 4px solid rgba(0, 117, 153, 0.72);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--teal-dark);
  text-align: center;
  box-shadow: 0 20px 46px rgba(0, 79, 104, 0.14);
}

.integration-center span {
  margin-top: -46px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
}

.integration-node-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.integration-node-native {
  display: grid;
  gap: 4px;
  min-height: 82px;
  padding: 14px;
  border: 1px solid rgba(0, 117, 153, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  color: inherit;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  animation: module-rise 560ms ease both;
  animation-delay: var(--delay);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.integration-node-native:hover,
.integration-node-native:focus-visible {
  transform: translateY(-3px);
  border-color: var(--teal);
  box-shadow: var(--shadow);
}

.integration-node-native strong {
  color: var(--ink);
  font-size: 1rem;
}

.integration-node-native span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.integration-rail {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.integration-rail span {
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(0, 117, 153, 0.1);
  color: var(--teal-dark);
  font-size: 0.84rem;
  font-weight: 850;
  text-align: center;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.65fr);
  align-items: start;
  gap: clamp(28px, 6vw, 72px);
  padding: 44px clamp(18px, 4vw, 48px);
  background: #003f54;
  color: var(--color-text-inverse);
}

.site-footer p { margin: 0; color: #eaf7fb; }
.site-footer a { color: inherit; text-decoration: none; }

.footer-brand {
  display: grid;
  gap: 14px;
  max-width: 430px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.footer-logo strong {
  display: block;
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1;
}

.footer-logo small {
  display: block;
  color: #eaf7fb;
  font-size: 0.78rem;
}

.footer-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
}

.footer-copy {
  padding-top: 8px;
  font-size: 0.88rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 22px;
}

.footer-nav div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-nav strong {
  margin-bottom: 3px;
  color: #ffffff;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-nav a {
  color: #eaf7fb;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--color-text-inverse);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 1120px) {
  .site-header { gap: 12px; }
  .site-nav a,
  .nav-group > button {
    padding-inline: 9px;
    font-size: 0.82rem;
  }
  .theme-field span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
  .hero-shell {
    grid-template-columns: 1fr;
    padding-top: 104px;
  }
  .command-panel {
    max-width: 760px;
  }
  .command-workflow {
    grid-template-columns: repeat(5, minmax(180px, 1fr));
    overflow-x: auto;
    padding-bottom: 16px;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
    order: 3;
  }
  .site-header {
    align-items: center;
    min-height: 68px;
  }
  .header-controls {
    margin-left: auto;
    order: 2;
  }
  .site-search {
    width: clamp(150px, 36vw, 220px);
  }
  .theme-field select {
    max-width: 110px;
  }
  .site-nav {
    position: fixed;
    inset: 72px 0 0 0;
    z-index: 60;
    display: none;
    width: 100vw;
    height: calc(100dvh - 72px);
    padding: 18px;
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: 0 24px 60px rgba(0, 44, 58, 0.22);
    transform: translateX(105%);
    transition: transform 220ms ease;
    overflow-y: auto;
    order: 4;
  }
  .site-nav.open {
    display: block;
    transform: translateX(0);
  }
  .nav-desktop { display: none; }
  .nav-mobile {
    display: grid;
    gap: 4px;
  }
  .site-nav a,
  .nav-group > button {
    width: 100%;
    justify-content: flex-start;
    min-height: 46px;
    white-space: normal;
  }
  .mobile-section {
    display: grid;
    gap: 4px;
    padding: 12px 0;
    border-top: 1px solid var(--line);
  }
  .mobile-section > span {
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .nav-mobile > a {
    font-weight: 800;
  }
  .nav-mobile .nav-cta {
    margin: 10px 0 0;
    justify-content: center;
  }
  .page-jump {
    top: 68px;
    padding-inline: 14px;
  }
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .lifecycle-explorer {
    grid-template-columns: 1fr;
    overflow: hidden;
  }
  .life-tabs {
    grid-auto-flow: column;
    grid-auto-columns: minmax(132px, 1fr);
    overflow-x: auto;
    max-width: 100%;
    padding: 8px;
  }
  .life-tab {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 74px;
    text-align: center;
  }
  .life-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .module-map {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 150px;
  }
  .pillar-visual,
  .module-ecosystem,
  .architecture-visual,
  .integration-ecosystem-native {
    grid-template-columns: 1fr;
  }
  .pillar-hub,
  .integration-orbit {
    display: none;
  }
  .pillar-visual-card {
    min-height: 190px;
  }
  .integration-ecosystem-native {
    min-height: 0;
  }
  .integration-center {
    width: min(220px, 100%);
    min-height: 220px;
    margin: 0 auto;
  }
  .integration-node-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .integration-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .map-roof {
    inset: 24px -35% auto;
    height: 420px;
  }
  .map-detail {
    top: 16px;
  }
  .map-column,
  .map-research {
    align-content: start;
  }
  .research-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .module-pill.featured {
    grid-column: 1 / -1;
  }
  .lifecycle {
    grid-template-columns: repeat(6, minmax(220px, 1fr));
  }
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .split { grid-template-columns: 1fr; }
  .hero { min-height: 520px; }
}

@media (max-width: 640px) {
  .site-header {
    gap: 8px;
    padding-inline: 12px;
  }
  .brand small {
    display: none;
  }
  .brand strong {
    font-size: 1rem;
  }
  .brand-mark {
    width: 38px;
    height: 38px;
  }
  .header-controls {
    flex: 1 1 auto;
    min-width: 0;
    gap: 6px;
  }
  .site-search {
    flex: 1 1 92px;
    min-width: 0;
    width: auto;
  }
  .site-search input {
    min-height: 36px;
    padding-right: 8px;
  }
  .theme-field select {
    max-width: 76px;
    min-height: 36px;
    padding-inline: 8px 20px;
  }
  .search-results {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 70px;
    width: auto;
  }
}

@media (max-width: 620px) {
  .brand small { display: none; }
  .hero-shell,
  .container,
  .proof-strip { width: min(100% - 28px, 1180px); }
  .hero-shell {
    padding: 88px 0 54px;
    gap: 24px;
  }
  .command-panel {
    padding: 16px;
  }
  .panel-topline {
    display: grid;
  }
  .panel-topline strong {
    max-width: none;
    text-align: left;
  }
  .panel-metrics {
    grid-template-columns: 1fr;
  }

  .command-panel--summary .panel-metrics {
    grid-template-columns: 1fr !important;
  }
  .activity-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .module-orbit a {
    flex: 1 1 120px;
    justify-content: center;
  }
  .command-workflow {
    width: min(100% - 28px, 1180px);
    grid-template-columns: 1fr;
    overflow: visible;
    padding-top: 28px;
  }
  .command-workflow a {
    min-height: 112px;
  }
  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -24px;
  }
  .proof-strip div {
    padding: 16px;
    border-top: 1px solid var(--line);
  }
  .proof-strip div:nth-child(1),
  .proof-strip div:nth-child(2) {
    border-top: 0;
  }
  .proof-strip div:nth-child(even) {
    border-right: 0;
  }
  .actions .button { width: 100%; }
  .solution-grid,
  .resource-grid,
  .trust-grid,
  .visual-gallery,
  .module-chip-grid,
  .integration-node-grid,
  .integration-rail {
    grid-template-columns: 1fr;
  }
  .native-visual-section,
  .visual-gallery-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .visual-shell {
    padding: 18px;
  }
  .visual-shell::before {
    inset: 10px;
  }
  .visual-card {
    min-height: 0;
    padding: 18px;
  }
  .pillar-visual-card {
    min-height: 0;
  }
  .module-cluster {
    padding: 14px;
  }
  .module-cluster-head {
    display: grid;
  }
  .architecture-layer {
    align-items: flex-start;
  }
  .architecture-side {
    padding: 18px;
  }
  .integration-center {
    border-radius: var(--radius);
    min-height: 140px;
  }
  .integration-center span {
    margin-top: -28px;
  }
  .lifecycle-step {
    min-width: 230px;
    min-height: 190px;
  }
  .life-panel {
    padding: 22px;
  }
  .life-copy h3 {
    font-size: 2.2rem;
  }
  .flow-node {
    grid-template-columns: 48px 1fr;
  }
  .life-flow::before {
    left: 23px;
  }
  .module-map {
    padding: 20px;
    padding-top: 156px;
  }
  .research-stack {
    grid-template-columns: 1fr;
  }
  .module-pill {
    min-height: 62px;
  }
  .map-note {
    min-height: 0;
  }
  .site-footer {
    grid-template-columns: 1fr;
  }
  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

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


/* Home scroll reduction pass */
body:has(.command-hero) .container {
  padding-top: clamp(34px, 5vw, 52px);
  padding-bottom: clamp(34px, 5vw, 52px);
}

body:has(.command-hero) .section-head {
  margin-bottom: 18px;
}

body:has(.command-hero) .section-title {
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  margin-bottom: 8px;
}

body:has(.command-hero) .grid,
body:has(.command-hero) .solution-grid,
body:has(.command-hero) .resource-grid,
body:has(.command-hero) .trust-grid,
body:has(.command-hero) .stats {
  gap: 12px;
}

body:has(.command-hero) .card,
body:has(.command-hero) .stat,
body:has(.command-hero) .trust-grid article {
  padding: 20px;
}

body:has(.command-hero) .module-map {
  padding: clamp(18px, 3vw, 34px);
}

body:has(.command-hero) .trust-section {
  padding-top: 38px;
  padding-bottom: 38px;
}

@media (max-width: 720px) {
  body:has(.command-hero) .container {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}


/* Home operating-system text sizing pass */
body:has(.command-hero) .operating-system-shell {
  grid-template-columns: 1fr;
  gap: 22px;
  padding: clamp(18px, 3vw, 28px);
}

body:has(.command-hero) .operating-system-copy {
  max-width: 820px;
}

body:has(.command-hero) .operating-system-copy .section-title {
  max-width: 760px;
  font-size: clamp(1.7rem, 2.45vw, 2.2rem);
  line-height: 1.12;
}

body:has(.command-hero) .operating-system-copy p {
  max-width: 760px;
  font-size: 0.98rem;
  line-height: 1.5;
}

body:has(.command-hero) .operating-system-orbit {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

body:has(.command-hero) .os-node {
  min-height: 176px;
  border-radius: 18px;
  text-align: left;
  align-content: start;
  justify-items: start;
  padding: 18px;
}

body:has(.command-hero) .os-node h3 {
  margin: 0.65rem 0 0.35rem;
  font-size: 1rem;
  line-height: 1.18;
}

body:has(.command-hero) .os-node p {
  font-size: 0.88rem;
  line-height: 1.42;
}

@media (max-width: 1120px) {
  body:has(.command-hero) .operating-system-orbit {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body:has(.command-hero) .operating-system-copy .section-title {
    font-size: clamp(1.55rem, 8vw, 2rem);
  }

  body:has(.command-hero) .operating-system-orbit {
    grid-template-columns: 1fr;
  }

  body:has(.command-hero) .os-node {
    min-height: auto;
  }
}


/* July 2026 feedback updates */
.command-panel--summary .panel-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.command-panel--summary .module-orbit {
  margin-top: 18px;
}

.module-pill {
  min-height: 74px;
  padding: 14px 18px;
}

.module-pill span {
  max-width: 24ch;
  text-align: center;
  line-height: 1.18;
}

.module-pill.featured {
  min-height: 94px;
}

.trust-section--prominent {
  background: linear-gradient(135deg, rgba(0, 117, 153, 0.08), rgba(214, 229, 38, 0.14));
  border-radius: 24px;
}

.trust-section--prominent .section-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  padding: 18px 20px;
}

.faq-item summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.capability-grid article {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.capability-grid h3 {
  margin: 0 0 8px;
  color: var(--teal-dark);
}

.capability-grid p {
  margin: 0;
  color: var(--muted);
}

/* Design audit pass - July 2026 */
.command-hero {
  overflow-x: clip;
}

.hero-shell {
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  max-width: calc(100vw - 36px);
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.35rem, 5.2vw, 4.65rem);
  line-height: 1;
}

.command-panel {
  box-sizing: border-box;
  width: min(100%, 520px);
  justify-self: end;
  overflow: hidden;
}

.panel-metrics div {
  min-width: 0;
}

.module-pill {
  box-sizing: border-box;
  overflow-wrap: anywhere;
}

.module-pill span {
  max-width: 26ch;
}

@media (max-width: 1120px) {
  .command-panel {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .hero-shell {
    max-width: calc(100vw - 28px);
    padding-top: 76px;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.9rem);
    line-height: 1.04;
  }

  .command-panel {
    width: 100%;
  }

  .command-panel--summary .panel-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .panel-metrics div {
    min-height: 86px;
    padding: 12px 8px;
  }

  .panel-metrics strong {
    font-size: clamp(1.35rem, 7vw, 1.8rem);
  }

  .module-stack {
    gap: 16px;
  }

  .module-pill {
    min-height: 68px;
    padding: 14px 16px;
  }
}


/* Customer feedback pass - July 2026 */
.page-hero {
  padding-block: clamp(48px, 7vw, 76px);
}

.proof-strip div strong {
  white-space: nowrap;
}

.module-map {
  grid-template-columns: minmax(180px, 0.85fr) minmax(320px, 1.55fr) minmax(220px, 1fr);
  min-height: auto;
  padding-top: clamp(24px, 4vw, 42px);
}

.map-column {
  align-content: start;
}

.map-detail {
  display: none;
}

.map-note {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  min-height: 116px;
  padding: 18px;
}

.map-note > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #dff3f7;
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.map-note p {
  margin-top: 6px;
  line-height: 1.35;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pillar-card {
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(0, 117, 153, 0.11), rgba(185, 120, 21, 0.08)),
    var(--paper);
  box-shadow: var(--shadow-soft);
  transform: translateY(8px);
  opacity: 0;
  animation: module-rise 520ms ease forwards;
  animation-delay: var(--delay);
}

.pillar-card span {
  color: var(--green);
  font-weight: 900;
}

.pillar-card h3 {
  margin: 0;
  color: var(--teal-dark);
  font-size: 1.55rem;
}

.pillar-card p {
  margin: 0;
  color: var(--ink-2);
}

.integration-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at center, rgba(0, 117, 153, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(205, 239, 247, 0.72), rgba(243, 248, 229, 0.88));
  overflow: hidden;
}

.integration-map::before,
.integration-map::after {
  content: "";
  position: absolute;
  inset: 50% 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 79, 104, 0.34), transparent);
}

.integration-map::after {
  transform: rotate(90deg);
}

.integration-hub,
.integration-node {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 104px;
  padding: 18px;
  border-radius: var(--radius);
  text-align: center;
  text-decoration: none;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(154, 181, 193, 0.8);
  box-shadow: var(--shadow-soft);
}

.integration-hub {
  grid-column: 2 / span 2;
  min-height: 132px;
  background: linear-gradient(135deg, #005f7d, #0a8f9a);
  color: white;
}

.integration-hub strong {
  display: block;
  font-size: 1.7rem;
}

.integration-hub span,
.integration-node span {
  color: inherit;
  opacity: 0.82;
  font-weight: 750;
}

.integration-node {
  transform: translateY(8px);
  opacity: 0;
  animation: module-rise 520ms ease forwards;
  animation-delay: var(--delay);
}

.integration-node strong {
  color: var(--teal-dark);
  font-size: 1.05rem;
}

.feature-list--compact {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-list--compact .feature p {
  margin: 0;
  color: var(--ink-2);
}

.contact-form select {
  appearance: auto;
}

.contact-form select option {
  background-color: #ffffff;
  color: #142334;
}

.contact-aside {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.trust-section--prominent .section-title {
  text-align: center;
}

.trust-grid article {
  text-align: center;
  justify-items: center;
}

@media (max-width: 900px) {
  .module-map,
  .pillar-grid,
  .integration-map {
    grid-template-columns: 1fr;
  }

  .integration-hub {
    grid-column: auto;
  }

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

  .section-head--compact {
    align-items: start;
  }
}


/* PDF-inspired redesign pass */
:root {
  --color-brand-50: #f1f8fb;
  --color-brand-100: #d8eff5;
  --color-brand-600: #087c96;
  --color-brand-700: #075f78;
  --color-brand-800: #064a66;
  --color-brand-900: #163146;
  --color-accent-500: #ef9c3b;
  --color-accent-700: #a75d17;
  --color-success-700: #4f8d37;
  --color-background: #f7fbfd;
  --color-surface: #ffffff;
  --color-surface-raised: #edf7fa;
  --color-surface-muted: #e7f2f4;
  --color-text: #142334;
  --color-text-soft: #26394a;
  --color-text-muted: #526477;
  --color-border: #b9d4dc;
  --color-border-strong: #82adbc;
  --ink: var(--color-text);
  --ink-2: var(--color-text-soft);
  --muted: var(--color-text-muted);
  --line: var(--color-border);
  --line-strong: var(--color-border-strong);
  --paper: var(--color-surface);
  --soft: var(--color-surface-raised);
  --soft-2: var(--color-surface-muted);
  --teal: var(--color-brand-600);
  --teal-dark: var(--color-brand-800);
  --gold: var(--color-accent-500);
  --green: var(--color-success-700);
  --deck-purple: #6b4fb3;
  --deck-blue: #1f8fc4;
  --deck-lime: #c8df35;
  --deck-navy: #163146;
  --shadow: 0 26px 70px rgba(16, 35, 52, 0.16);
  --shadow-soft: 0 14px 34px rgba(16, 35, 52, 0.1);
}

body {
  background:
    radial-gradient(circle at 0 0, rgba(200, 223, 53, 0.16), transparent 26rem),
    radial-gradient(circle at 100% 10%, rgba(107, 79, 179, 0.13), transparent 24rem),
    var(--color-background);
}

.site-header {
  background: rgba(255, 255, 255, 0.88);
}

.brand strong {
  color: var(--deck-navy);
}

.button,
.nav-cta {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  box-shadow: 0 14px 28px rgba(6, 74, 102, 0.22);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.88);
  color: var(--teal-dark);
  border-color: rgba(6, 74, 102, 0.24);
  box-shadow: none;
}

.hero.command-hero {
  min-height: clamp(560px, 78vh, 760px);
  background:
    radial-gradient(circle at 72% 24%, rgba(200, 223, 53, 0.28), transparent 16rem),
    radial-gradient(circle at 88% 74%, rgba(107, 79, 179, 0.22), transparent 18rem),
    linear-gradient(135deg, #eff8fb 0%, #ffffff 48%, #eef8f0 100%);
}

.command-hero::before {
  opacity: 0.28;
}

.hero-copy h1 {
  max-width: 830px;
  color: var(--deck-navy);
  font-size: clamp(3.1rem, 8vw, 6.8rem);
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 690px;
  color: var(--ink-2);
}

.command-panel {
  border: 1px solid rgba(6, 74, 102, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(241, 248, 251, 0.95)),
    var(--paper);
  box-shadow: 0 24px 54px rgba(22, 49, 70, 0.16);
}

.panel-topline span {
  color: var(--deck-purple);
}

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

.panel-metrics div {
  border: 1px solid rgba(6, 74, 102, 0.16);
  background: #ffffff;
}

.panel-metrics strong {
  color: var(--teal-dark);
}

.panel-note {
  margin: 0;
  padding: 16px;
  border-left: 5px solid var(--deck-lime);
  border-radius: var(--radius);
  background: rgba(200, 223, 53, 0.18);
  color: var(--deck-navy);
  font-weight: 760;
  line-height: 1.4;
}

.theme-field {
  display: none;
}

.page-hero {
  background:
    radial-gradient(circle at 85% 16%, rgba(107, 79, 179, 0.18), transparent 22rem),
    radial-gradient(circle at 16% 22%, rgba(200, 223, 53, 0.2), transparent 20rem),
    linear-gradient(135deg, #ffffff, #edf7fa);
}

.page-hero h1 {
  color: var(--deck-navy);
}

.container {
  padding-top: clamp(42px, 5vw, 68px);
  padding-bottom: clamp(42px, 5vw, 68px);
}

.section-title {
  color: var(--deck-navy);
}

.module-map {
  grid-template-columns: minmax(170px, 0.8fr) minmax(330px, 1.3fr) minmax(260px, 1.1fr);
  gap: 20px;
  background:
    radial-gradient(circle at 50% 18%, rgba(200, 223, 53, 0.46), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(236, 248, 250, 0.92));
}

.map-roof {
  background: linear-gradient(180deg, rgba(200, 223, 53, 0.76), rgba(107, 79, 179, 0.05));
}

.map-note {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(6, 74, 102, 0.12);
}

.module-pill,
.module-chip {
  border-radius: var(--radius);
}

.research-stack {
  grid-template-columns: repeat(2, minmax(160px, 1fr));
}

.module-pill {
  min-height: 74px;
  word-break: normal;
  overflow-wrap: anywhere;
}

.module-pill span {
  max-width: 15ch;
}

.module-pill.infrastructure,
.module-cluster--infrastructure .module-chip {
  background: linear-gradient(135deg, #7bb93f, #4f8d37);
}

.module-pill.research,
.module-chip {
  background: linear-gradient(135deg, #1f8fc4, #075f78);
}

.module-pill.compliance,
.module-cluster--compliance .module-chip {
  background: linear-gradient(135deg, #6b4fb3, #087c96);
}

.visual-shell,
.deck-overview,
.architecture-visual,
.integration-ecosystem-native {
  background:
    radial-gradient(circle at 12% 18%, rgba(200, 223, 53, 0.24), transparent 18rem),
    radial-gradient(circle at 90% 8%, rgba(107, 79, 179, 0.18), transparent 20rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(238, 248, 250, 0.96));
}

.deck-overview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(24px, 4vw, 44px);
}

.deck-platform-center {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(6, 74, 102, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--deck-navy), #075f78);
  color: #ffffff;
}

.deck-platform-center strong {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1;
}

.deck-platform-center span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(200, 223, 53, 0.2);
  font-weight: 900;
  text-transform: uppercase;
}

.deck-pillar {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 330px;
  padding: 20px;
  border: 1px solid rgba(6, 74, 102, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  animation: module-rise 560ms ease both;
  animation-delay: var(--delay);
}

.deck-pillar > span,
.module-pillar-label {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(8, 124, 150, 0.12);
  color: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deck-pillar h3 {
  margin: 0;
  color: var(--deck-navy);
  font-size: 1.24rem;
  line-height: 1.1;
}

.deck-pillar div {
  display: grid;
  gap: 8px;
}

.deck-pillar a {
  padding: 9px 10px;
  border: 1px solid rgba(6, 74, 102, 0.12);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 820;
  text-decoration: none;
  background: rgba(241, 248, 251, 0.72);
}

.deck-pillar a:hover,
.deck-pillar a:focus-visible {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.deck-pillar--research {
  border-top: 7px solid var(--deck-blue);
}

.deck-pillar--compliance {
  border-top: 7px solid var(--deck-purple);
}

.deck-pillar--innovation {
  border-top: 7px solid var(--gold);
}

.deck-pillar--administration {
  border-top: 7px solid var(--green);
}

.integration-ecosystem-native {
  grid-template-columns: minmax(200px, 0.8fr) minmax(0, 1.4fr) minmax(180px, 0.65fr);
}

.integration-center {
  border-color: rgba(107, 79, 179, 0.52);
}

.integration-node-native:nth-child(3n + 1) {
  border-top: 5px solid var(--deck-blue);
}

.integration-node-native:nth-child(3n + 2) {
  border-top: 5px solid var(--deck-purple);
}

.integration-node-native:nth-child(3n) {
  border-top: 5px solid var(--deck-lime);
}

.architecture-side {
  background: linear-gradient(135deg, var(--deck-purple), var(--teal-dark));
}

.stats {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.stat {
  color: var(--deck-navy);
  border: 1px solid rgba(6, 74, 102, 0.14);
  background: linear-gradient(180deg, #ffffff, #edf7fa);
  box-shadow: var(--shadow-soft);
}

.value-grid,
.module-directory,
.module-detail-grid {
  display: grid;
  gap: 16px;
}

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

.value-grid article,
.module-directory-group,
.module-detail-panel {
  padding: 22px;
  border: 1px solid rgba(6, 74, 102, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.value-grid article {
  animation: module-rise 560ms ease both;
  animation-delay: var(--delay);
}

.value-grid span,
.module-directory-group > span {
  color: var(--deck-purple);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.value-grid h3,
.module-detail-panel h3 {
  margin: 8px 0 12px;
  color: var(--deck-navy);
  line-height: 1.1;
}

.value-grid ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.value-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.value-metrics strong {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--deck-navy);
  color: #ffffff;
  font-size: 1.6rem;
}

.value-metrics span {
  color: #e7f2f4;
  font-size: 0.82rem;
  text-transform: uppercase;
}

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

.module-directory-group div {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}

.module-directory-group a {
  display: grid;
  gap: 2px;
  min-height: 74px;
  padding: 12px;
  border: 1px solid rgba(6, 74, 102, 0.13);
  border-radius: var(--radius);
  color: inherit;
  text-decoration: none;
  background: var(--soft);
}

.module-directory-group a:hover,
.module-directory-group a:focus-visible {
  border-color: var(--teal);
  background: #ffffff;
}

.module-directory-group strong {
  color: var(--deck-navy);
  line-height: 1.15;
}

.module-directory-group em {
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
  line-height: 1.2;
}

.module-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(230px, 0.7fr);
  gap: 20px;
  align-items: stretch;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(6, 74, 102, 0.15);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 0, rgba(200, 223, 53, 0.24), transparent 18rem),
    linear-gradient(135deg, #ffffff, #edf7fa);
  box-shadow: var(--shadow-soft);
}

.module-detail-hero h2 {
  margin: 12px 0 10px;
  color: var(--deck-navy);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.98;
}

.module-detail-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--ink-2);
  font-size: 1.08rem;
}

.module-detail-hero aside {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 22px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--deck-navy), var(--deck-purple));
  color: #ffffff;
}

.module-detail-hero aside strong {
  font-size: 1.35rem;
  line-height: 1.1;
}

.module-detail-hero aside span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.module-detail-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 16px;
}

.module-detail-panel {
  min-height: 220px;
}

.module-detail-panel div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.module-detail-panel span {
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(8, 124, 150, 0.1);
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 800;
}

.cta,
.container.band:has(.button) {
  text-align: center;
}

@media (max-width: 1080px) {
  .deck-overview,
  .module-directory,
  .value-grid,
  .module-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .module-detail-grid .module-detail-panel:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .panel-metrics,
  .deck-overview,
  .module-directory,
  .value-grid,
  .value-metrics,
  .module-detail-grid,
  .module-detail-hero {
    grid-template-columns: 1fr;
  }

  .deck-platform-center {
    display: grid;
  }

  .deck-pillar,
  .module-detail-panel {
    min-height: 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 14vw, 4.4rem);
  }
}

.command-panel .panel-note {
  background: #f3f8d8;
  color: #142334;
  text-shadow: none;
}

.module-map--hub {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3vw, 28px);
  min-height: 0;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(151, 199, 216, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 6%, rgba(17, 79, 105, 0.72), transparent 20rem),
    radial-gradient(circle at 0% 78%, rgba(13, 92, 111, 0.58), transparent 18rem),
    linear-gradient(145deg, #08263a 0%, #061c2e 52%, #09283b 100%);
  box-shadow: 0 28px 70px rgba(5, 27, 43, 0.28);
  overflow: hidden;
}

.module-map--hub::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 42%, black, transparent 78%);
  pointer-events: none;
}

.module-map-kicker {
  position: relative;
  z-index: 2;
  color: #d6f409;
  font-size: clamp(1.15rem, 3vw, 2.2rem);
  font-weight: 950;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}

.module-orbit-shell {
  position: relative;
  z-index: 2;
  width: min(100%, 980px);
  aspect-ratio: 1.52;
  margin: 0 auto;
}

.hub-orbit {
  position: absolute;
  inset: 13%;
  border: 3px solid rgba(151, 199, 216, 0.24);
  border-radius: 50%;
  box-shadow: inset 0 0 38px rgba(10, 184, 184, 0.08);
  pointer-events: none;
}

.hub-orbit--outer {
  inset: 9%;
}

.hub-orbit--inner {
  inset: 32%;
  border-width: 20px;
  border-color: rgba(255, 255, 255, 0.92);
  background:
    conic-gradient(from -24deg, #08b5ad 0 58deg, transparent 58deg 108deg, #167f9f 108deg 177deg, transparent 177deg 229deg, #7b58d5 229deg 300deg, transparent 300deg 360deg);
  box-shadow:
    0 26px 68px rgba(0, 0, 0, 0.36),
    inset 0 0 0 3px rgba(6, 37, 58, 0.1);
}

.module-hub-center {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  gap: 8px;
  width: clamp(148px, 23vw, 245px);
  height: clamp(148px, 23vw, 245px);
  padding: clamp(22px, 4vw, 40px);
  border: 5px solid rgba(210, 224, 234, 0.98);
  border-radius: 50%;
  background: #f8fbfd;
  color: #08263a;
  text-align: center;
  box-shadow:
    0 0 0 14px rgba(255, 255, 255, 0.1),
    0 26px 58px rgba(0, 0, 0, 0.36);
  transform: translate(-50%, -50%);
}

.module-hub-center img {
  width: min(78%, 142px);
  height: auto;
  filter: drop-shadow(0 16px 22px rgba(7, 46, 70, 0.14));
}

.module-hub-center span {
  color: #0b6d82;
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hub-orbit-node {
  position: absolute;
  z-index: 4;
  left: var(--x);
  top: var(--y);
  display: grid;
  grid-template-columns: 58px minmax(86px, 122px);
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  transform: translate(0, -50%);
  animation: module-rise 540ms ease both;
  animation-delay: var(--delay);
  transition: transform 180ms ease, filter 180ms ease;
}

.hub-orbit-node::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 29px;
  top: 50%;
  width: clamp(54px, 9vw, 120px);
  height: 2px;
  background: linear-gradient(90deg, var(--node-color), rgba(255, 255, 255, 0));
  opacity: 0.58;
}

.hub-orbit-node--left {
  grid-template-columns: minmax(86px, 122px) 58px;
  text-align: right;
  transform: translate(-100%, -50%);
}

.hub-orbit-node--left::before {
  left: auto;
  right: 29px;
  background: linear-gradient(270deg, var(--node-color), rgba(255, 255, 255, 0));
}

.hub-orbit-node--left .hub-node-number {
  grid-column: 2;
}

.hub-orbit-node--left .hub-node-label {
  grid-column: 1;
  grid-row: 1;
}

.hub-orbit-node--center {
  grid-template-columns: 58px;
  justify-items: center;
}

.hub-orbit-node--center::before {
  display: none;
}

.hub-orbit-node--center .hub-node-label {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  width: 140px;
  text-align: center;
  transform: translateX(-50%);
}

.hub-node-number {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 6px solid var(--node-color);
  border-radius: 50%;
  background: #0b2c43;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.hub-node-label {
  max-width: 122px;
  color: #f7fbff;
  font-size: clamp(0.66rem, 1vw, 0.78rem);
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 1.12;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.36);
}

.hub-orbit-node--research,
.hub-orbit-node--administration {
  --node-color: #10b9ad;
}

.hub-orbit-node--compliance {
  --node-color: #167f9f;
}

.hub-orbit-node--innovation {
  --node-color: #7d5bd6;
}

.hub-orbit-node:hover,
.hub-orbit-node:focus-visible {
  transform: translate(0, -50%) scale(1.06);
  filter: brightness(1.12);
  outline: none;
}

.hub-orbit-node--left:hover,
.hub-orbit-node--left:focus-visible {
  transform: translate(-100%, -50%) scale(1.06);
}

.hub-orbit-node:focus-visible .hub-node-number {
  box-shadow: 0 0 0 4px #ffffff, 0 0 0 8px var(--node-color);
}

.hub-category-row {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(10px, 2vw, 22px);
}

.hub-category {
  min-width: min(100%, 176px);
  padding: 13px 24px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.hub-category--research {
  background: #10b9ad;
}

.hub-category--compliance {
  background: #167f9f;
}

.hub-category--innovation {
  background: #7d5bd6;
}

.hub-foundation {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 auto;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #dbeafe;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-card--data-model .visual-card-graphic {
  background:
    radial-gradient(circle at 50% 50%, rgba(77, 139, 255, 0.2), transparent 46%),
    linear-gradient(135deg, #111827, #1b2840);
}

.visual-card--data-model .visual-card-graphic::before {
  width: 132px;
  height: 132px;
  border-color: rgba(77, 139, 255, 0.52);
  transform: none;
}

.visual-card--data-model .visual-card-graphic::after {
  width: 64px;
  height: 64px;
  border-color: rgba(200, 223, 53, 0.6);
}

.visual-card--architecture .visual-card-graphic {
  display: grid;
  grid-template-rows: repeat(4, 18px);
  gap: 9px;
  align-content: center;
  padding: 24px;
  background: linear-gradient(135deg, #edf7fa, #ffffff);
}

.visual-card--architecture .visual-card-graphic::before,
.visual-card--architecture .visual-card-graphic::after {
  display: none;
}

.visual-card--architecture .visual-card-graphic i {
  width: 100%;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #4d8bff, #1bd1ad);
  box-shadow: none;
}

.visual-card--enterprise-integrations .visual-card-graphic {
  background:
    radial-gradient(circle at 50% 50%, rgba(6, 74, 102, 0.22), transparent 24%),
    linear-gradient(135deg, #ffffff, #edf7fa);
}

.visual-card--enterprise-integrations .visual-card-graphic::before {
  width: 150px;
  height: 1px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, transparent, #087c96, transparent);
  transform: rotate(25deg);
}

.visual-card--enterprise-integrations .visual-card-graphic::after {
  width: 150px;
  height: 1px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, transparent, #875cff, transparent);
  transform: rotate(-25deg);
}

.visual-card--enterprise-integrations .visual-card-graphic i {
  width: 18px;
  height: 18px;
  background: #087c96;
  box-shadow:
    -52px -24px 0 #4d8bff,
    52px -24px 0 #875cff,
    -52px 24px 0 #1bd1ad,
    52px 24px 0 #c8df35;
}

@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden;
  }

  .site-header {
    flex-wrap: nowrap;
  }

  .site-search {
    display: none;
  }

  .hero.command-hero {
    min-height: 0;
  }

  .hero-shell {
    display: grid;
    grid-template-columns: 1fr !important;
    width: min(100% - 28px, 1180px);
    padding-top: 70px;
    padding-bottom: 44px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(3rem, 17vw, 4.2rem);
    line-height: 0.98;
  }

  .hero-copy p {
    max-width: 30ch;
    font-size: 1.05rem;
    white-space: normal !important;
  }

  .command-panel {
    width: 100%;
    max-width: 100%;
  }

  .panel-metrics {
    grid-template-columns: 1fr;
  }

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

  .actions .button {
    width: 100%;
  }

  .section-head {
    display: grid;
    gap: 10px;
  }

  .section-title,
  .hero-copy p,
  .panel-note,
  .section-head,
  .section-head > * {
    max-width: min(100%, 32ch);
    overflow-wrap: anywhere;
    white-space: normal !important;
  }

  .section-title {
    font-size: clamp(1.9rem, 9vw, 2.35rem);
    line-height: 1.05;
  }

  .module-map {
    grid-template-columns: 1fr !important;
    padding: 18px;
  }

  .research-stack,
  .module-stack {
    grid-template-columns: 1fr !important;
  }

  .module-pill {
    min-height: 64px;
  }

  .module-pill span {
    max-width: 100%;
  }

  .module-map--hub {
    grid-template-columns: 1fr !important;
    min-height: 0;
    padding: 18px;
    border-radius: var(--radius);
  }

  .module-map--hub::before,
  .hub-orbit {
    display: none;
  }

  .module-map-kicker {
    max-width: 100%;
    font-size: clamp(1rem, 6vw, 1.45rem);
    overflow-wrap: anywhere;
  }

  .module-orbit-shell {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    aspect-ratio: auto;
  }

  .module-hub-center {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    min-height: 132px;
    border-radius: var(--radius);
    transform: none;
  }

  .module-hub-center img {
    width: 110px;
  }

  .hub-orbit-node {
    position: relative;
    left: auto;
    top: auto;
    grid-template-columns: 44px 1fr;
    width: 100%;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
    transform: none;
  }

  .hub-orbit-node--left,
  .hub-orbit-node--center {
    grid-template-columns: 44px 1fr;
    text-align: left;
  }

  .hub-orbit-node::before {
    display: none;
  }

  .hub-orbit-node--left .hub-node-number,
  .hub-orbit-node--left .hub-node-label {
    grid-column: auto;
    grid-row: auto;
  }

  .hub-orbit-node--center .hub-node-label {
    position: static;
    width: auto;
    text-align: left;
    transform: none;
  }

  .hub-node-number {
    width: 44px;
    height: 44px;
    border-width: 4px;
    font-size: 0.92rem;
  }

  .hub-node-label {
    max-width: none;
    font-size: 0.82rem;
    text-align: left;
  }

  .hub-orbit-node:hover,
  .hub-orbit-node:focus-visible {
    transform: translateY(-2px);
  }

  .hub-foundation {
    border-radius: var(--radius);
  }
}

@media (max-width: 760px) {
  body:has(.command-hero) .hero-shell,
  body:has(.command-hero) .hero-copy,
  body:has(.command-hero) .command-panel,
  body:has(.command-hero) .panel-note,
  body:has(.command-hero) .panel-metrics,
  body:has(.command-hero) .section-head,
  body:has(.command-hero) .section-title {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  body:has(.command-hero) .hero-copy p {
    max-width: 25ch;
    overflow-wrap: normal;
  }

  body:has(.command-hero) .hero-copy h1 {
    max-width: 10ch;
    font-size: clamp(3rem, 13vw, 3.45rem);
    line-height: 1;
    white-space: normal !important;
  }

  body:has(.command-hero) .command-panel {
    justify-self: stretch;
    max-width: calc(100vw - 28px) !important;
    padding: 16px;
  }

  body:has(.command-hero) .panel-note {
    display: block;
    width: auto;
    max-width: 22ch !important;
    padding: 14px;
    font-size: 0.9rem;
    white-space: normal !important;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  body:has(.command-hero) .panel-metrics div {
    width: 100%;
  }

  body:has(.command-hero) .section-title {
    max-width: 14ch;
    font-size: clamp(1.8rem, 8vw, 2.2rem);
  }
}

/* Complete UX theme pass: align the full site to the banner-inspired hub system */
:root {
  --ri-deep: #061c2e;
  --ri-navy: #08263a;
  --ri-panel: #0a3148;
  --ri-panel-2: #0d3c54;
  --ri-teal: #10b9ad;
  --ri-blue: #167f9f;
  --ri-purple: #7d5bd6;
  --ri-lime: #d6f409;
  --ri-ice: #eaf7fb;
  --ri-muted: #b9ccda;
  --ri-line: rgba(185, 212, 220, 0.22);
  --ri-glow: 0 28px 70px rgba(5, 27, 43, 0.34);
}

body {
  background:
    radial-gradient(circle at 4% 0%, rgba(16, 185, 173, 0.11), transparent 26rem),
    radial-gradient(circle at 96% 0%, rgba(125, 91, 214, 0.1), transparent 28rem),
    #f4fbfd;
}

.site-header {
  border-bottom-color: rgba(185, 212, 220, 0.18);
  background: rgba(6, 28, 46, 0.92);
  box-shadow: 0 12px 30px rgba(5, 27, 43, 0.18);
  backdrop-filter: blur(16px);
}

.brand strong,
.site-nav a,
.nav-group > button {
  color: #ffffff;
}

.brand small,
.nav-caret {
  color: var(--ri-muted);
}

.site-nav a:hover,
.site-nav a.active,
.nav-group > button:hover,
.nav-group > button[aria-expanded="true"] {
  background: rgba(16, 185, 173, 0.14);
  color: #ffffff;
}

.site-search input {
  border-color: rgba(185, 212, 220, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.site-search input::placeholder {
  color: rgba(234, 247, 251, 0.72);
}

.search-results,
.nav-menu,
.subnav {
  border-color: var(--ri-line);
  background: rgba(8, 38, 58, 0.98);
  box-shadow: var(--ri-glow);
}

.search-result,
.nav-menu a,
.subnav a,
.subnav-intro strong,
.nav-card strong {
  color: var(--ri-ice);
}

.subnav-intro {
  border-color: var(--ri-line);
}

.subnav-intro span,
.subnav .nav-card span {
  color: rgba(234, 247, 251, 0.72);
}

.subnav .nav-card:hover,
.subnav .nav-card:focus-visible,
.subnav .nav-card.active {
  border-color: rgba(214, 244, 9, 0.28);
  background: rgba(16, 185, 173, 0.14) !important;
}

.search-result:hover,
.search-result:focus-visible,
.nav-menu a:hover,
.nav-menu a:focus-visible,
.subnav a:hover,
.subnav a:focus-visible {
  background: rgba(16, 185, 173, 0.14);
}

@media (max-width: 860px) {
  .site-nav {
    background: #08263a;
    border-left-color: var(--ri-line);
  }

  .mobile-section {
    border-color: var(--ri-line);
  }

  .mobile-section > span,
  .site-nav .nav-card span {
    color: rgba(234, 247, 251, 0.72);
  }
}

.hero.command-hero,
.page-hero {
  color: #ffffff;
  background:
    radial-gradient(circle at 76% 18%, rgba(214, 244, 9, 0.18), transparent 18rem),
    radial-gradient(circle at 90% 78%, rgba(125, 91, 214, 0.26), transparent 22rem),
    radial-gradient(circle at 8% 20%, rgba(16, 185, 173, 0.18), transparent 24rem),
    linear-gradient(145deg, var(--ri-deep), var(--ri-navy) 58%, #0b3148);
}

.command-hero::before {
  opacity: 0.18;
}

.eyebrow,
.page-hero .eyebrow {
  color: var(--ri-lime);
}

.hero-copy h1,
.page-hero h1 {
  color: #ffffff;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.hero-copy p,
.page-hero p,
.page-hero .intro {
  color: #d8e9f0;
}

.page-hero .breadcrumbs,
.page-hero .breadcrumbs a,
.page-hero .breadcrumbs span {
  color: rgba(234, 247, 251, 0.78);
}

.page-hero .breadcrumbs a:hover,
.page-hero .breadcrumbs a:focus-visible {
  color: var(--ri-lime);
}

.command-panel,
.card,
.visual-card,
.stat,
.trust-grid article,
.quote-card,
.faq-item,
.support-faq,
.contact-card,
.form-panel,
.module-detail-panel,
.audience-card,
.resource-card,
.download-card,
.matrix-card {
  border-color: var(--ri-line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 249, 251, 0.92));
  box-shadow: 0 18px 44px rgba(5, 27, 43, 0.1);
}

.command-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(234, 247, 251, 0.9));
}

.button,
.nav-cta {
  background: linear-gradient(135deg, #087c96, #10b9ad);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(6, 74, 102, 0.28);
}

.button.secondary {
  border-color: rgba(214, 244, 9, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.section-title {
  color: var(--ri-navy);
}

.section-head > a {
  color: #00617f;
}

.container:nth-of-type(even) {
  background:
    radial-gradient(circle at 88% 8%, rgba(125, 91, 214, 0.06), transparent 24rem),
    radial-gradient(circle at 8% 92%, rgba(16, 185, 173, 0.08), transparent 24rem);
}

.module-map--hub {
  padding: clamp(30px, 4vw, 58px);
  background:
    radial-gradient(circle at 92% 6%, rgba(13, 92, 111, 0.78), transparent 20rem),
    radial-gradient(circle at 0% 78%, rgba(16, 185, 173, 0.34), transparent 18rem),
    linear-gradient(145deg, #061c2e 0%, #08263a 52%, #0b3148 100%);
}

.module-map-kicker {
  max-width: 100%;
  color: var(--ri-lime);
}

.module-spoke-system {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) minmax(330px, 1fr) minmax(190px, 0.72fr);
  align-items: center;
  gap: clamp(16px, 2.5vw, 34px);
}

.module-spoke-rail {
  display: grid;
  gap: 10px;
}

.hub-spoke-link {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 9px 12px;
  border: 1px solid rgba(185, 212, 220, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.075);
  color: #ffffff;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.module-spoke-rail--left .hub-spoke-link {
  grid-template-columns: 1fr 42px;
  text-align: right;
}

.module-spoke-rail--left .hub-spoke-link span {
  grid-column: 2;
}

.module-spoke-rail--left .hub-spoke-link strong {
  grid-column: 1;
  grid-row: 1;
}

.hub-spoke-link span,
.hub-orbit-dot {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 4px solid var(--spoke-color);
  border-radius: 50%;
  background: #0b2c43;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 950;
  line-height: 1;
}

.hub-spoke-link strong {
  color: #f8fcff;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 1.12;
  text-transform: uppercase;
}

.hub-spoke-link--research,
.hub-spoke-link--administration,
.hub-orbit-dot--research,
.hub-orbit-dot--administration {
  --spoke-color: var(--ri-teal);
}

.hub-spoke-link--compliance,
.hub-orbit-dot--compliance {
  --spoke-color: var(--ri-blue);
}

.hub-spoke-link--innovation,
.hub-orbit-dot--innovation {
  --spoke-color: var(--ri-purple);
}

.hub-spoke-link:hover,
.hub-spoke-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(214, 244, 9, 0.44);
  background: rgba(255, 255, 255, 0.13);
  outline: 3px solid var(--ri-lime);
  outline-offset: 3px;
}

.module-orbit-shell {
  min-width: 0;
  width: 100%;
  aspect-ratio: 1;
}

.hub-orbit--middle {
  inset: 19%;
  border-color: rgba(16, 185, 173, 0.2);
}

.hub-orbit-dot {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  width: clamp(38px, 4vw, 50px);
  height: clamp(38px, 4vw, 50px);
  font-size: clamp(0.78rem, 1vw, 0.98rem);
  transform:
    rotate(calc((360deg / 14) * var(--i) - 90deg))
    translate(clamp(132px, 16vw, 190px))
    rotate(calc(-1 * ((360deg / 14) * var(--i) - 90deg)));
  animation: module-rise 540ms ease both;
  animation-delay: var(--delay);
}

.module-hub-center {
  width: clamp(150px, 17vw, 225px);
  height: clamp(150px, 17vw, 225px);
}

.hub-orbit-node {
  display: none;
}

.visual-gallery-section,
.trust-section--prominent,
.cta-section,
.native-visual-section {
  border-top: 1px solid rgba(6, 74, 102, 0.08);
}

.visual-card-graphic {
  border-color: rgba(185, 212, 220, 0.18);
  background:
    radial-gradient(circle at 50% 50%, rgba(214, 244, 9, 0.14), transparent 42%),
    linear-gradient(135deg, var(--ri-deep), var(--ri-panel));
}

.visual-card strong,
.card h3,
.trust-grid strong,
.stat strong {
  color: #064a66;
}

.stats .stat {
  border-top: 4px solid var(--ri-teal);
}

.stats .stat:nth-child(3n + 2) {
  border-top-color: var(--ri-blue);
}

.stats .stat:nth-child(3n + 3) {
  border-top-color: var(--ri-purple);
}

.site-footer {
  background:
    radial-gradient(circle at 18% 0%, rgba(16, 185, 173, 0.18), transparent 18rem),
    radial-gradient(circle at 90% 20%, rgba(125, 91, 214, 0.18), transparent 22rem),
    linear-gradient(145deg, #061c2e, #08263a);
}

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

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

  .module-spoke-rail--left .hub-spoke-link {
    grid-template-columns: 42px 1fr;
    text-align: left;
  }

  .module-spoke-rail--left .hub-spoke-link span,
  .module-spoke-rail--left .hub-spoke-link strong {
    grid-column: auto;
    grid-row: auto;
  }

  .module-orbit-shell {
    max-width: 430px;
    margin-inline: auto;
  }

  .hub-orbit-dot {
    transform:
      rotate(calc((360deg / 14) * var(--i) - 90deg))
      translate(clamp(118px, 31vw, 178px))
      rotate(calc(-1 * ((360deg / 14) * var(--i) - 90deg)));
  }
}

@media (max-width: 760px) {
  body {
    background:
      radial-gradient(circle at 10% 0%, rgba(16, 185, 173, 0.16), transparent 18rem),
      linear-gradient(180deg, #061c2e 0%, #09283b 24%, #f4fbfd 24%, #f4fbfd 100%);
  }

  body:not(:has(.command-hero)) {
    background: #f4fbfd;
  }

  .site-header {
    background: rgba(6, 28, 46, 0.96);
  }

  .menu-toggle span {
    background: #08263a;
  }

  .module-map--hub {
    padding: 18px;
  }

  .module-map-kicker {
    max-width: 15ch;
    margin-inline: auto;
    white-space: normal !important;
    line-height: 1.08;
  }

  .module-spoke-system {
    gap: 14px;
  }

  .module-spoke-rail {
    grid-template-columns: 1fr;
  }

  .module-orbit-shell {
    order: -1;
    display: none;
    max-width: 310px;
    min-height: 310px;
  }

  .module-hub-center {
    position: relative;
    left: auto;
    top: auto;
    order: -1;
    justify-self: center;
    width: 142px;
    height: 142px;
    min-height: 142px;
    border-radius: 50%;
    transform: none;
  }

  .hub-orbit-dot {
    display: none;
  }

  .hub-category {
    min-width: 0;
    flex: 1 1 120px;
  }

  .hub-spoke-link {
    min-height: 50px;
  }
}

/* Interior page hero compaction */
.page-hero {
  min-height: 0;
  padding-block: 0;
}

.page-hero .container {
  padding-top: clamp(24px, 3vw, 34px);
  padding-bottom: clamp(24px, 3vw, 34px);
}

.page-hero h1 {
  max-width: 980px;
  margin: 6px 0 10px;
  font-size: clamp(2.15rem, 4.8vw, 4rem);
  line-height: 1;
}

.page-hero .breadcrumbs {
  margin-bottom: 12px;
}

.page-hero .intro,
.page-hero p {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

/* PDF-inspired module detail pages */
.module-detail-section {
  padding-top: clamp(22px, 4vw, 42px);
}

.module-detail-deck {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3.5vw, 42px);
  border: 1px solid rgba(88, 158, 255, 0.24);
  border-radius: 22px;
  color: #ffffff;
  background:
    radial-gradient(circle at 6% 14%, rgba(16, 185, 173, 0.22), transparent 24rem),
    radial-gradient(circle at 92% 8%, rgba(125, 91, 214, 0.26), transparent 25rem),
    linear-gradient(145deg, #071323 0%, #0b1830 54%, #11143c 100%);
  box-shadow: 0 30px 80px rgba(5, 27, 43, 0.22);
}

.module-detail-deck::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.32;
}

.module-detail-titlebar,
.module-detail-story,
.module-detail-grid {
  position: relative;
  z-index: 1;
}

.module-detail-titlebar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(210px, 0.34fr);
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  margin-bottom: clamp(20px, 3vw, 34px);
}

.module-detail-badge {
  display: grid;
  place-items: center;
  width: clamp(58px, 6vw, 76px);
  height: clamp(58px, 6vw, 76px);
  border: 1px solid rgba(88, 158, 255, 0.54);
  border-radius: 22px;
  background: rgba(88, 158, 255, 0.16);
  color: #67a8ff;
  font-weight: 950;
}

.module-detail-titlebar h2 {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.module-detail-titlebar p {
  justify-self: end;
  max-width: 28ch;
  margin: 0;
  color: rgba(234, 247, 251, 0.82);
  text-align: right;
}

.module-detail-deck .module-pillar-label {
  display: inline-flex;
  width: fit-content;
  padding: 7px 14px;
  border: 1px solid rgba(185, 212, 220, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #b8d7ff;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.module-detail-story {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 18px;
  margin-bottom: 18px;
}

.module-summary-panel,
.module-mini-flow,
.module-detail-panel {
  border: 1px solid rgba(88, 158, 255, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.module-summary-panel {
  padding: 20px;
  border-left: 5px solid #4e97ff;
}

.module-summary-panel strong,
.module-detail-panel h3 {
  color: #72adff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.module-summary-panel p {
  max-width: 74ch;
  margin: 10px 0 0;
  color: rgba(234, 247, 251, 0.86);
}

.module-mini-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 18px;
}

.module-mini-flow span,
.module-mini-flow strong {
  display: grid;
  min-height: 72px;
  place-items: center;
  padding: 12px;
  border-radius: 14px;
  background: rgba(11, 44, 67, 0.86);
  color: #ffffff;
  text-align: center;
}

.module-mini-flow strong {
  border: 2px solid #27d7c7;
}

.module-mini-flow i {
  width: 28px;
  height: 2px;
  background: #27d7c7;
}

.module-detail-deck .module-detail-grid {
  grid-template-columns: minmax(280px, 1.2fr) repeat(2, minmax(220px, 1fr));
  align-items: stretch;
}

.module-detail-deck .module-detail-panel {
  min-height: 0;
  padding: 20px;
  animation: module-rise 560ms ease both;
  animation-delay: var(--delay);
}

.module-detail-deck .module-detail-panel:nth-child(1) {
  grid-row: span 2;
  border-color: rgba(78, 151, 255, 0.64);
  border-left: 5px solid #4e97ff;
}

.module-detail-deck .module-detail-panel:nth-child(2),
.module-detail-deck .module-detail-panel:nth-child(3) {
  border-top: 5px solid #27d7c7;
}

.module-detail-deck .module-detail-panel:nth-child(4) {
  border-top: 5px solid #ff8a2a;
}

.module-detail-deck .module-detail-panel:nth-child(5) {
  border-top: 5px solid #9f79ff;
}

.module-detail-deck .module-detail-panel div {
  display: grid;
  gap: 9px;
}

.module-detail-deck .module-detail-panel span {
  display: block;
  padding: 11px 12px;
  border: 1px solid rgba(185, 212, 220, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.25;
}

.module-detail-deck--compliance .module-detail-badge,
.module-detail-deck--compliance .module-detail-panel:nth-child(1),
.module-detail-deck--compliance .module-summary-panel {
  border-color: rgba(39, 215, 199, 0.7);
}

.module-detail-deck--innovation .module-detail-badge,
.module-detail-deck--innovation .module-detail-panel:nth-child(1),
.module-detail-deck--innovation .module-summary-panel {
  border-color: rgba(159, 121, 255, 0.7);
}

.module-detail-deck--administration .module-detail-badge,
.module-detail-deck--administration .module-detail-panel:nth-child(1),
.module-detail-deck--administration .module-summary-panel {
  border-color: rgba(214, 244, 9, 0.58);
}

.trust-section--prominent .trust-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.trust-section--prominent .trust-grid article {
  min-height: 112px;
  display: grid;
  align-content: center;
  text-align: center;
}

.trust-section--prominent .trust-grid strong {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.trust-logo-grid {
  align-items: stretch;
}

.trust-logo-grid article {
  min-height: 126px;
  padding: 18px;
  background: #ffffff;
}

.trust-logo-grid img {
  display: block;
  width: 100%;
  max-width: 280px;
  max-height: 76px;
  object-fit: contain;
}

.integration-ecosystem-native--pdf {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 34px);
  background:
    radial-gradient(circle at 82% 10%, rgba(125, 91, 214, 0.18), transparent 22rem),
    radial-gradient(circle at 8% 86%, rgba(16, 185, 173, 0.16), transparent 24rem),
    linear-gradient(145deg, #071323 0%, #0b1830 58%, #11143c 100%);
}

.integration-pdf-visual {
  overflow: hidden;
  border: 1px solid rgba(88, 158, 255, 0.22);
  border-radius: 18px;
  background: rgba(6, 19, 35, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.integration-pdf-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.integration-ecosystem-native--pdf .integration-node-grid {
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
}

.integration-ecosystem-native--pdf .integration-node-native {
  min-height: 84px;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(185, 212, 220, 0.18);
  color: #ffffff;
}

.integration-ecosystem-native--pdf .integration-node-native strong {
  color: #ffffff;
}

.integration-ecosystem-native--pdf .integration-node-native span {
  color: rgba(234, 247, 251, 0.72);
}

.integration-ecosystem-native--pdf .integration-rail {
  justify-content: center;
}

.persona-module-row {
  display: none;
}

.policy-statement {
  padding-top: clamp(28px, 4vw, 48px);
}

.policy-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.policy-card {
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(6, 74, 102, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 249, 251, 0.92));
  box-shadow: 0 18px 44px rgba(5, 27, 43, 0.1);
}

.policy-card--lead,
.policy-card--footer {
  grid-column: 1 / -1;
}

.policy-card--lead {
  color: #ffffff;
  background:
    radial-gradient(circle at 84% 12%, rgba(214, 244, 9, 0.2), transparent 18rem),
    linear-gradient(145deg, #061c2e, #08263a);
}

.policy-card--status {
  border-left: 5px solid var(--ri-teal);
}

.policy-card h2,
.policy-card h3 {
  margin: 0 0 12px;
  color: var(--ri-navy);
  line-height: 1.1;
}

.policy-card--lead h2,
.policy-card--lead h3 {
  color: #ffffff;
}

.policy-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.policy-card h3 {
  font-size: clamp(1.12rem, 2vw, 1.45rem);
}

.policy-card p,
.policy-card li,
.policy-card dd {
  color: var(--ink-2);
  line-height: 1.65;
}

.policy-card--lead p {
  color: #d8e9f0;
}

.policy-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.policy-card dl {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
}

.policy-card dl div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(6, 74, 102, 0.1);
}

.policy-card dt {
  color: var(--ri-navy);
  font-weight: 900;
}

.policy-card dd {
  margin: 0;
}

.policy-card a {
  color: #00617f;
  font-weight: 850;
}

.policy-tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.policy-tech-list span {
  padding: 8px 12px;
  border: 1px solid rgba(6, 74, 102, 0.14);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ri-navy);
  font-size: 0.86rem;
  font-weight: 900;
}

@media (max-width: 640px) {
  .page-hero .container {
    padding-top: 24px;
    padding-bottom: 28px;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .persona-detail-card,
  .persona-columns,
  .policy-layout,
  .module-detail-titlebar,
  .module-detail-story,
  .module-detail-deck .module-detail-grid {
    grid-template-columns: 1fr;
  }

  .policy-card--lead,
  .policy-card--footer {
    grid-column: auto;
  }

  .policy-card dl div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .module-detail-titlebar p {
    justify-self: start;
    text-align: left;
  }

  .module-mini-flow {
    grid-template-columns: 1fr;
  }

  .module-mini-flow i {
    width: 2px;
    height: 22px;
    justify-self: center;
  }

  .module-detail-deck .module-detail-panel:nth-child(1) {
    grid-row: auto;
  }

  .persona-detail-card {
    gap: 14px;
  }

  .served-audience-grid {
    grid-template-columns: 1fr;
  }

  .served-card {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 20px;
  }

  .served-card h3,
  .served-card p,
  .persona-detail-copy,
  .persona-detail-copy h3,
  .persona-detail-copy p {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .page-jump {
    scrollbar-width: none;
  }

  .page-jump::-webkit-scrollbar {
    display: none;
  }
}
