@import url("https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100..900;1,100..900&family=Exo+2:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

@font-face {
  font-family: "Bitter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/bitter-latin-variable.woff2") format("woff2");
}

@font-face {
  font-family: "Bitter";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/bitter-latin-italic-variable.woff2") format("woff2");
}

@font-face {
  font-family: "IPBitter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/ip-bitter-700.ttf") format("truetype");
}

@font-face {
  font-family: "IPBitter";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("assets/fonts/ip-bitter-900.ttf") format("truetype");
}

:root {
  --font-subhead: "Bitter", serif;
  color-scheme: dark;
  --ink: #f5f8fb;
  --ink-2: #d6e0e8;
  --muted: #91a3b3;
  --line: rgba(177, 196, 211, .18);
  --surface: #080d12;
  --surface-2: #101920;
  --panel: #111b23;
  --panel-2: #16232d;
  --white: #ffffff;
  --teal: #27d4bd;
  --teal-dark: #00a997;
  --blue: #5f9ed7;
  --orange: #ff6327;
  --amber: #f1b342;
  --charcoal: #060a0e;
  --shadow: 0 22px 60px rgba(0, 0, 0, .35);
}

:root[data-theme="light"] {
  color-scheme: light;
  --ink: #111820;
  --ink-2: #243544;
  --muted: #5f6f7d;
  --line: rgba(29, 54, 70, .15);
  --surface: #ffffff;
  --surface-2: #f7f8fa;
  --panel: #ffffff;
  --panel-2: #f6f8fa;
  --teal: #078c83;
  --teal-dark: #006f68;
  --blue: #236a9f;
  --charcoal: #ecf2f4;
  --shadow: 0 18px 48px rgba(20, 38, 51, .14);
}

* { box-sizing: border-box; }

html.theme-preload *,
html.theme-preload *:before,
html.theme-preload *:after {
  transition: none !important;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  position: relative;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(255, 99, 39, .06) 0%, rgba(8, 13, 18, 0) 360px),
    linear-gradient(120deg, rgba(39, 212, 189, .05), rgba(95, 158, 215, .04) 48%, rgba(8, 13, 18, 0) 80%),
    var(--surface);
}

:root[data-theme="light"] body {
  background:
    linear-gradient(180deg, rgba(255, 99, 39, .035) 0%, rgba(255, 255, 255, 0) 320px),
    var(--surface);
}

body:before {
  content: "";
  position: fixed;
  top: 112px;
  right: 0;
  bottom: 0;
  width: min(58vw, 760px);
  z-index: 0;
  background-image: url("assets/Pattern_Teal-transparent.png");
  background-size: 720px auto;
  background-position: top right;
  background-repeat: repeat-y;
  opacity: .18;
  pointer-events: none;
}

:root[data-theme="light"] body:before {
  opacity: .08;
  mix-blend-mode: multiply;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

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

img { max-width: 100%; }

p { color: var(--muted); line-height: 1.65; }

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

h1,
h2,
h3,
.btn,
.nav-pillar-button,
.card,
.faq-list summary {
  overflow-wrap: break-word;
}

h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-family: "Exo 2", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(46px, 7vw, 86px);
  line-height: .95;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-family: "Exo 2", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.02;
  font-weight: 850;
}

h3 {
  margin-bottom: 12px;
  font-family: "Exo 2", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 22px;
  line-height: 1.2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 13, 18, .88);
  backdrop-filter: blur(18px);
}

.top-alert {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 18px;
  color: #160903;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.top-alert span {
  font-weight: 700;
}

.top-alert:hover {
  filter: brightness(1.04);
}

:root[data-theme="light"] body .site-header {
  background: rgba(255, 255, 255, .9);
}

.nav {
  width: min(1180px, calc(100% - 44px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
}

.brand-logo {
  width: clamp(168px, 18vw, 236px);
  height: auto;
  display: block;
}

.site-footer .brand-logo {
  width: clamp(180px, 20vw, 260px);
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(255, 102, 36, .48);
  border-radius: 10px;
  color: var(--orange);
  background: linear-gradient(145deg, rgba(255, 102, 36, .13), transparent);
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.footer-socials {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.footer-socials .footer-social {
  margin-left: 0;
}

.footer-social:hover,
.footer-social:focus-visible {
  border-color: var(--orange);
  background: rgba(255, 102, 36, .2);
  box-shadow: 0 10px 28px rgba(255, 102, 36, .16);
  transform: translateY(-2px);
}

.footer-social img {
  width: 23px;
  height: 23px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  padding: 8px 0;
}

.nav-pillar {
  position: relative;
}

.nav-pillar-button {
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 9px 12px;
  color: var(--ink-2);
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.nav-pillar-button:after {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-pillar:hover .nav-pillar-button,
.nav-pillar:focus-within .nav-pillar-button {
  color: var(--orange);
  border-color: rgba(255, 99, 39, .35);
  background: rgba(255, 255, 255, .06);
}

.nav-pillar-menu {
  min-width: 280px;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 60;
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(39, 212, 189, .09), rgba(255, 99, 39, .07) 52%, rgba(17, 27, 35, .98)),
    rgba(17, 27, 35, .98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.nav-pillar:hover .nav-pillar-menu,
.nav-pillar:focus-within .nav-pillar-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-pillar-wide .nav-pillar-menu {
  width: min(760px, calc(100vw - 44px));
}

@media (min-width: 981px) {
  .nav-pillar-hover-only::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 12px;
  }

  .nav-pillar-hover-only .nav-pillar-menu {
    top: calc(100% + 4px);
  }

  .nav-pillar-hover-only:focus-within:not(:hover) .nav-pillar-button {
    color: var(--ink-2);
    border-color: transparent;
    background: transparent;
  }

  .nav-pillar-hover-only:focus-within:not(:hover) .nav-pillar-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
  }
}

.nav-pillar-wide:nth-child(2) .nav-pillar-menu {
  left: 50%;
  transform: translate(-36%, -6px);
}

.nav-pillar-wide:nth-child(2):hover .nav-pillar-menu,
.nav-pillar-wide:nth-child(2):focus-within .nav-pillar-menu {
  transform: translate(-36%, 0);
}

.nav-pillar-wide:nth-child(3) .nav-pillar-menu {
  left: 50%;
  transform: translate(-50%, -6px);
}

.nav-pillar-wide:nth-child(3):hover .nav-pillar-menu,
.nav-pillar-wide:nth-child(3):focus-within .nav-pillar-menu {
  transform: translate(-50%, 0);
}

.nav-pillar-wide:nth-child(4) .nav-pillar-menu {
  left: 50%;
  transform: translate(-68%, -6px);
}

.nav-pillar-wide:nth-child(4):hover .nav-pillar-menu,
.nav-pillar-wide:nth-child(4):focus-within .nav-pillar-menu {
  transform: translate(-68%, 0);
}

.nav-pillar-wide:nth-child(5) .nav-pillar-menu {
  left: 50%;
  transform: translate(-84%, -6px);
}

.nav-pillar-wide:nth-child(5):hover .nav-pillar-menu,
.nav-pillar-wide:nth-child(5):focus-within .nav-pillar-menu {
  transform: translate(-84%, 0);
}

.mega-menu {
  grid-template-columns: minmax(220px, .72fr) minmax(360px, 1.28fr);
  align-items: stretch;
}

.mega-feature {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
}

.mega-feature-link {
  color: inherit;
  text-decoration: none;
}

.mega-feature strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.08;
}

.mega-feature p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.mega-label {
  color: var(--orange);
  font-family: var(--font-subhead);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mega-cta {
  width: fit-content;
  margin-top: 4px;
  padding: 9px 12px !important;
  border-radius: 8px;
  color: #160903 !important;
  background: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

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

.mega-columns > div,
.compact-menu {
  display: grid;
  align-content: start;
  gap: 10px;
}

.mega-columns a,
.compact-menu a {
  min-height: 116px;
  align-content: start;
  border: 1px solid rgba(255, 102, 36, .22);
  background: linear-gradient(145deg, rgba(255, 102, 36, .08), transparent 62%);
}

.compact-menu a {
  min-height: 84px;
}

.compact-menu-label {
  font-family: var(--font-subhead);
  padding: 3px 4px 1px;
}

.nav-pillar-menu .mega-columns a strong,
.nav-pillar-menu .compact-menu a strong {
  color: var(--orange);
  font-size: 14px;
}

.nav-pillar-menu a {
  display: grid;
  gap: 3px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink-2);
}

.nav-pillar-menu a strong {
  color: inherit;
  font-size: 13px;
}

.nav-pillar-menu a span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
}

.nav-pillar-menu a:hover {
  color: var(--orange);
  border-color: rgba(255, 102, 36, .62);
  background: linear-gradient(145deg, rgba(255, 102, 36, .16), rgba(255, 102, 36, .04));
  box-shadow: inset 0 0 0 1px rgba(255, 102, 36, .08);
}

:root[data-theme="light"] body .nav-pillar:hover .nav-pillar-button,
:root[data-theme="light"] body .nav-pillar:focus-within .nav-pillar-button {
  background: rgba(8, 13, 18, .04);
}

:root[data-theme="light"] body .nav-pillar-menu {
  background:
    linear-gradient(135deg, rgba(7, 140, 131, .08), rgba(255, 99, 39, .08) 52%, rgba(255, 255, 255, .98)),
    rgba(255, 255, 255, .98);
}

:root[data-theme="light"] body .mega-feature {
  border-color: rgba(8, 13, 18, .08);
  background: rgba(8, 13, 18, .035);
}

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

.nav-cta {
  padding: 11px 15px !important;
  border-radius: 8px;
  color: #160903 !important;
  background: var(--orange);
}

.theme-toggle {
  min-height: 38px;
  order: 99;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  color: var(--ink-2);
  background: rgba(255, 255, 255, .06);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.theme-toggle:hover {
  color: var(--orange);
  border-color: rgba(255, 99, 39, .45);
}

:root[data-theme="light"] body .theme-toggle {
  background: rgba(8, 13, 18, .04);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--panel);
  font: inherit;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 74px));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-home:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("assets/Pattern_Teal-transparent.png");
  background-size: min(900px, 88vw) auto;
  background-position: right 8% center;
  background-repeat: no-repeat;
  opacity: 0;
  pointer-events: none;
}

:root[data-theme="light"] body .hero-home:before {
  opacity: 0;
  mix-blend-mode: multiply;
}

.hero-media {
  background-image: url("assets/ai-security-operations-hero-favicon.png");
  background-size: cover;
  background-position: center right;
  transform: scale(1.01);
  z-index: 0;
  opacity: .86;
  filter: saturate(.82) contrast(.9) brightness(.82);
}

.hero-home .hero-media {
  background-image: url("assets/homepage-hero-capitol-orange.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: none;
}

:root[data-theme="light"] body .hero-media {
  opacity: .54;
  filter: saturate(.74) contrast(.86) brightness(1.02);
}

:root[data-theme="light"] body .hero-home .hero-media {
  background-image: url("assets/homepage-hero-capitol-teal-light.jpg");
  opacity: .92;
  filter: saturate(1.02) contrast(1.02) brightness(.98);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 9, 13, .98) 0%, rgba(5, 9, 13, .78) 46%, rgba(5, 9, 13, .22) 78%),
    linear-gradient(0deg, rgba(5, 9, 13, .9) 0%, rgba(5, 9, 13, .08) 48%);
  z-index: 2;
}

:root[data-theme="light"] body .hero-overlay {
  background:
    linear-gradient(90deg, rgba(245, 248, 248, .94) 0%, rgba(245, 248, 248, .7) 42%, rgba(245, 248, 248, .12) 76%),
    linear-gradient(0deg, rgba(245, 248, 248, .68) 0%, rgba(245, 248, 248, .04) 48%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 120px 0 58px;
  color: var(--white);
}

.hero-home h1 {
  max-width: none;
  width: 100%;
}

.hero-home .hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

:root[data-theme="light"] body .hero-content {
  color: var(--ink);
}

.hero-subtitle {
  max-width: 760px;
  color: #dfe9ef;
  font-size: clamp(18px, 2vw, 22px);
}

:root[data-theme="light"] body .hero-subtitle {
  color: #405464;
}

.page-hero {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 96px 0 54px;
  position: relative;
}

.hero-platform .hero-media {
  background-image: url("assets/platform-ai-trust-hero.png");
}

.hero-cloud .hero-media {
  background-image: url("assets/cloud-spartan-hero.png");
  background-position: center right;
}

.hero-ai .hero-media {
  background-image: url("assets/ai-evidence-validation-hero.png");
  background-position: center right;
}

.hero-xdo .hero-media {
  background-image: url("assets/xdo-pentagon-defense-hero.png");
  background-position: center right;
}

.hero-defense-tech .hero-media {
  background-image: url("assets/defense-tech-ai-hero.png");
  background-position: center right;
}

.hero-fedramp .hero-media {
  background-image: url("assets/fedramp-authorization-hero.png");
  background-position: center right;
}

.hero-rev5 .hero-media {
  background-image: url("assets/xbu40-rev5-hero.png");
  background-position: center right;
}

.hero-advisory .hero-media {
  background-image: url("assets/advisory-strategy-hero.png");
  background-position: center right;
}

.hero-post-ato .hero-media {
  background-image: url("assets/post-ato-operations-hero.png");
  background-position: center right;
}

.hero-ato .hero-media {
  background-image: url("assets/outcome-ato-hero.png");
}

.hero-audit .hero-media {
  background-image: url("assets/outcome-audit-hero.png");
}

.hero-risk .hero-media {
  background-image: url("assets/outcome-risk-hero.png");
}

.hero-compliance .hero-media {
  background-image: url("assets/outcome-compliance-hero.png");
}

.service-hero-grid {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 84px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 48px;
  align-items: center;
  position: relative;
}

.service-hero-copy p {
  max-width: 820px;
  font-size: 20px;
}

.service-hero-grid:after {
  content: "";
  width: 88px;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 28px;
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
}

.service-logo-panel {
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-logo {
  width: 100%;
  height: auto;
  display: block;
}

.service-logo-inline {
  width: min(100%, 260px);
  height: auto;
  display: block;
  margin: 0 auto 18px;
  padding: 0;
  border-radius: 8px;
  background: transparent;
}

.page-hero:after {
  content: "";
  width: 88px;
  height: 3px;
  display: block;
  margin-top: 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
}

.page-hero p {
  max-width: 820px;
  font-size: 20px;
}

.not-found-hero {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 86px 0 58px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .85fr);
  gap: 44px;
  align-items: center;
}

.not-found-copy h1 {
  max-width: 760px;
}

.not-found-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.not-found-art {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(47, 133, 155, .35);
  border-radius: 14px;
  background:
    radial-gradient(circle at 20% 20%, rgba(241, 90, 36, .18), transparent 34%),
    linear-gradient(145deg, rgba(47, 133, 155, .18), rgba(17, 27, 35, .72));
  box-shadow: var(--shadow);
}

.not-found-art img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

:root[data-theme="light"] body .not-found-art {
  border-color: rgba(47, 133, 155, .28);
  background:
    radial-gradient(circle at 20% 20%, rgba(241, 90, 36, .16), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(237, 248, 250, .92));
  box-shadow: 0 24px 70px rgba(47, 133, 155, .16);
}

.product-hero {
  padding-bottom: 78px;
}

.product-hero h1 {
  max-width: 1040px;
}

.accent-hero,
.contact-hero {
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--orange);
  font-family: var(--font-subhead);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero .eyebrow { color: var(--orange); }

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

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 900;
  cursor: pointer;
}

.btn.primary {
  border-color: transparent;
  color: #160903;
  background: var(--orange);
}

.btn.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .08);
}

:root[data-theme="light"] body .hero .btn.secondary {
  color: var(--ink);
  border-color: rgba(17, 24, 32, .22);
  background: rgba(255, 255, 255, .68);
}

.text-link,
.card a {
  color: var(--teal);
  font-weight: 900;
}

.signal-strip {
  width: min(1180px, calc(100% - 44px));
  margin: -32px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(17, 27, 35, .94);
  box-shadow: var(--shadow);
}

:root[data-theme="light"] body .signal-strip {
  background: rgba(255, 255, 255, .92);
}

.signal-strip a {
  min-height: 138px;
  padding: 22px;
  border-right: 1px solid var(--line);
  transition: background .2s ease, color .2s ease;
}

.signal-strip a:hover {
  background: rgba(255, 99, 39, .08);
}

.signal-strip a:last-child { border-right: 0; }
.signal-strip strong { display: block; margin-bottom: 10px; font-size: 20px; }
.signal-strip span { color: var(--muted); line-height: 1.5; }

.section.signal-strip-section {
  margin-top: 16px;
  margin-bottom: 84px;
  position: relative;
  z-index: 3;
  padding: 0;
}

.product-signals {
  margin-top: -42px;
}

.standard-selector {
  width: min(1180px, calc(100% - 44px));
  margin: -38px auto 28px;
  position: relative;
  z-index: 5;
  padding: 18px;
  border: 1px solid rgba(47, 133, 155, .42);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(47, 133, 155, .2), rgba(255, 255, 255, .06)),
    rgba(8, 14, 20, .92);
  box-shadow: 0 22px 52px rgba(0, 0, 0, .26);
}

.standard-selector-label {
  margin: 0 0 12px;
  color: var(--muted);
  font-family: var(--font-subhead);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.standard-selector-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  gap: 10px;
}

.standard-tab {
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(47, 133, 155, .16), rgba(255, 255, 255, .04));
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.standard-tab:hover,
.standard-tab:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 99, 39, .55);
  background:
    linear-gradient(135deg, rgba(47, 133, 155, .24), rgba(255, 99, 39, .16));
  outline: none;
}

.standard-tab.is-active,
.standard-tab[aria-selected="true"] {
  color: #061117;
  border-color: rgba(47, 133, 155, .8);
  background: linear-gradient(135deg, #8bd7e6, var(--teal));
  box-shadow: 0 16px 36px rgba(47, 133, 155, .24);
}

:root[data-theme="light"] body .standard-selector {
  background:
    linear-gradient(135deg, rgba(47, 133, 155, .14), rgba(255, 255, 255, .84)),
    #ffffff;
}

:root[data-theme="light"] body .standard-tab {
  color: var(--ink);
  border-color: rgba(17, 24, 32, .14);
  background: linear-gradient(135deg, rgba(47, 133, 155, .1), rgba(255, 255, 255, .8));
}

:root[data-theme="light"] body .standard-tab.is-active,
:root[data-theme="light"] body .standard-tab[aria-selected="true"] {
  color: #061117;
}

.sitewide-standard-selector {
  width: min(760px, calc(100% - 44px));
  margin: 0;
  position: absolute;
  top: clamp(22px, 4vw, 44px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(47, 133, 155, .16), rgba(255, 255, 255, .04)),
    rgba(8, 14, 20, .82);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .28);
}

.sitewide-standard-selector .standard-selector-label {
  margin: 0;
  white-space: nowrap;
  font-size: 10px;
  letter-spacing: .1em;
}

.sitewide-standard-selector .standard-selector-actions {
  width: auto;
  display: flex;
  gap: 6px;
}

.sitewide-standard-selector .standard-tab {
  min-height: 32px;
  min-width: 66px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.sitewide-standard-selector-fallback {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  margin: 18px auto -18px;
}

.page-hero .sitewide-standard-selector,
.blog-hero .sitewide-standard-selector {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  width: min(620px, 100%);
  margin: 0 auto 28px;
}

.standard-context-card {
  max-width: 760px;
  margin: 24px 0;
  padding: 18px 20px;
  border: 1px solid rgba(47, 133, 155, .34);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(47, 133, 155, .16), rgba(255, 99, 39, .08)),
    rgba(8, 14, 20, .72);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
}

.standard-context-card strong {
  display: block;
  margin: 6px 0;
  color: inherit;
  font-family: var(--font-heading);
  font-size: clamp(19px, 2vw, 24px);
}

.standard-context-card p {
  margin: 0 0 12px;
  color: inherit;
}

.page-hero .standard-context-card,
.blog-hero .standard-context-card {
  margin-left: auto;
  margin-right: auto;
}

:root[data-theme="light"] body .standard-context-card {
  background:
    linear-gradient(135deg, rgba(47, 133, 155, .1), rgba(255, 99, 39, .08)),
    rgba(255, 255, 255, .9);
}

.home-standard-selector {
  width: min(760px, calc(100% - 44px));
  margin: 0;
  position: absolute;
  top: clamp(22px, 4vw, 44px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(47, 133, 155, .16), rgba(255, 255, 255, .04)),
    rgba(8, 14, 20, .72);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .28);
}

.home-standard-selector .standard-selector-label {
  margin: 0;
  white-space: nowrap;
  font-size: 10px;
  letter-spacing: .1em;
}

.home-standard-selector .standard-selector-actions {
  width: auto;
  display: flex;
  gap: 6px;
}

.home-standard-selector .standard-tab {
  min-height: 32px;
  min-width: 66px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.home-standard-selector .standard-tab.is-active,
.home-standard-selector .standard-tab[aria-selected="true"] {
  box-shadow: 0 8px 20px rgba(47, 133, 155, .18);
}

.home-brag-banner {
  position: relative;
  z-index: 3;
  align-self: center;
  width: 100%;
  margin: 30px auto 0;
  padding: 16px;
  border: 1px solid rgba(47, 133, 155, .42);
  border-radius: 22px;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(255, 99, 39, .22), transparent 34%),
    linear-gradient(135deg, rgba(47, 133, 155, .2), rgba(255, 255, 255, .05)),
    rgba(8, 14, 20, .78);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .32);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.home-brag-banner:before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--orange), rgba(47, 133, 155, .95));
  pointer-events: none;
}

.home-brag-kicker {
  margin: 0 0 7px;
  padding-inline: 4px;
  font-family: var(--font-subhead);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--orange);
}

.home-brag-proof,
.home-brag-close {
  margin: 0;
  padding-inline: 4px;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  line-height: 1.45;
}

.home-brag-close {
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
}

.home-brag-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
  margin: 12px 0 10px;
}

.home-brag-metrics div {
  min-height: 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 12px 14px;
  border: 1px solid rgba(139, 215, 230, .22);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .035)),
    rgba(47, 133, 155, .12);
}

.home-brag-metrics strong {
  display: block;
  margin: 0 0 5px;
  color: #8bd7e6;
  font-family: var(--font-heading);
  font-size: 36px;
  line-height: 1;
}

.home-brag-metrics span {
  display: block;
  margin-top: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

:root[data-theme="light"] body .home-brag-banner {
  color: var(--ink);
  border-color: rgba(47, 133, 155, .22);
  background:
    radial-gradient(circle at top right, rgba(255, 99, 39, .16), transparent 34%),
    linear-gradient(135deg, rgba(47, 133, 155, .12), rgba(255, 255, 255, .9)),
    rgba(255, 255, 255, .9);
  box-shadow: 0 20px 48px rgba(13, 32, 39, .16);
}

:root[data-theme="light"] body .home-brag-kicker {
  color: #b94a17;
}

:root[data-theme="light"] body .home-brag-proof,
:root[data-theme="light"] body .home-brag-close,
:root[data-theme="light"] body .home-brag-metrics span {
  color: #405464;
}

:root[data-theme="light"] body .home-brag-metrics div {
  border-color: rgba(47, 133, 155, .18);
  background:
    linear-gradient(180deg, rgba(47, 133, 155, .1), rgba(255, 255, 255, .86)),
    rgba(255, 255, 255, .82);
}

:root[data-theme="light"] body .home-brag-metrics strong {
  color: var(--teal);
}

:root[data-theme="light"] body .home-standard-selector {
  background:
    linear-gradient(135deg, rgba(47, 133, 155, .1), rgba(255, 255, 255, .86)),
    rgba(255, 255, 255, .9);
}

:root[data-theme="light"] body .sitewide-standard-selector {
  background:
    linear-gradient(135deg, rgba(47, 133, 155, .1), rgba(255, 255, 255, .86)),
    rgba(255, 255, 255, .9);
}

.section {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 84px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.answer-block {
  position: relative;
  width: min(100% - 48px, 1080px);
  margin: -34px auto 46px;
  padding: 26px 30px;
  border: 1px solid rgba(47, 133, 155, .34);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(255, 99, 39, .16), transparent 34%),
    linear-gradient(135deg, rgba(47, 133, 155, .18), rgba(255, 255, 255, .045)),
    rgba(8, 14, 20, .88);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .24);
  backdrop-filter: blur(18px);
}

.answer-block:before {
  content: "";
  position: absolute;
  inset: 18px auto 18px 0;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--teal), var(--orange));
}

.answer-block h2 {
  max-width: 880px;
  margin: 8px 0 10px;
  color: var(--white);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.answer-block p {
  max-width: 940px;
  margin: 0;
  color: rgba(255, 255, 255, .8);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.6;
}

:root[data-theme="light"] body .answer-block {
  border-color: rgba(47, 133, 155, .24);
  background:
    radial-gradient(circle at top right, rgba(255, 99, 39, .12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(47, 133, 155, .09)),
    rgba(255, 255, 255, .94);
  box-shadow: 0 24px 56px rgba(13, 32, 39, .12);
}

:root[data-theme="light"] body .answer-block h2 {
  color: var(--ink);
}

:root[data-theme="light"] body .answer-block p {
  color: #405464;
}

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

.customer-strip .section-heading {
  margin-bottom: 22px;
}

.customer-strip h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.customer-marquee {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(8, 13, 18, .98), rgba(17, 27, 35, .9), rgba(8, 13, 18, .98)),
    var(--panel);
}

:root[data-theme="light"] body .customer-marquee {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98), rgba(244, 249, 249, .92), rgba(255, 255, 255, .98)),
    var(--panel);
}

.customer-marquee:before,
.customer-marquee:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(18vw, 180px);
  z-index: 2;
  pointer-events: none;
}

.customer-marquee:before {
  left: 0;
  background: linear-gradient(90deg, var(--surface), transparent);
}

.customer-marquee:after {
  right: 0;
  background: linear-gradient(270deg, var(--surface), transparent);
}

.customer-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  animation: customer-scroll 62s linear infinite;
}

.customer-marquee:hover .customer-track {
  animation-play-state: paused;
}

.customer-track img {
  width: 178px;
  height: 100px;
  object-fit: contain;
  padding: 12px 18px;
  border: 1px solid rgba(177, 196, 211, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  filter: grayscale(1) contrast(.95);
  opacity: .86;
}

:root[data-theme="light"] body .customer-track img {
  background: rgba(255, 255, 255, .96);
  filter: grayscale(1) contrast(.98);
}

@keyframes customer-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: start;
}

.lead-stack p {
  font-size: 18px;
}

:is(.trust-problem-section, .trust-model-section) {
  align-items: center;
  gap: 34px;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 99, 39, .16), rgba(39, 212, 189, .08) 36%, rgba(95, 158, 215, .09)),
    #0b1117;
}

:is(.trust-problem-section, .trust-model-section) .eyebrow {
  color: var(--orange);
}

.trust-model-section .section-heading {
  max-width: none;
}

:is(.trust-problem-section, .trust-model-section) p {
  color: #d2e0e6;
}

:root[data-theme="light"] body :is(.trust-problem-section, .trust-model-section) {
  background:
    linear-gradient(135deg, rgba(255, 99, 39, .13), rgba(7, 140, 131, .09) 36%, rgba(35, 106, 159, .08)),
    #ffffff;
}

:root[data-theme="light"] body :is(.trust-problem-section, .trust-model-section) p {
  color: var(--muted);
}

.agency-trust-section,
.agency-command-section {
  position: relative;
  overflow: hidden;
}

.agency-trust-section:before,
.agency-command-section:before {
  content: "";
  position: absolute;
  inset: 18px auto auto 18px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(47, 133, 155, .24), transparent 68%);
  pointer-events: none;
}

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

.agency-trust-panel div {
  min-height: 148px;
  padding: 20px;
  border: 1px solid rgba(139, 215, 230, .22);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035)),
    rgba(47, 133, 155, .1);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
}

.agency-trust-panel strong {
  display: block;
  margin-bottom: 8px;
  color: #8bd7e6;
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.1;
}

.agency-trust-panel span {
  color: #d2e0e6;
  font-size: 14px;
  line-height: 1.5;
}

.agency-hero .hero-media {
  background-image: url("assets/platform-ai-trust-hero.png");
}

.agency-board {
  align-self: stretch;
}

:root[data-theme="light"] body .agency-trust-panel div {
  border-color: rgba(47, 133, 155, .22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .78)),
    rgba(47, 133, 155, .08);
  box-shadow: 0 18px 42px rgba(47, 133, 155, .12);
}

:root[data-theme="light"] body .agency-trust-panel strong {
  color: var(--teal);
}

:root[data-theme="light"] body .agency-trust-panel span {
  color: var(--muted);
}

.cards {
  display: grid;
  gap: 16px;
}

.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.four { grid-template-columns: repeat(4, 1fr); }

.card {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(22, 35, 45, .96), rgba(17, 27, 35, .96));
  box-shadow: 0 1px 0 rgba(255, 255, 255, .03);
}

:root[data-theme="light"] body .card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(244, 249, 249, .96));
  box-shadow: 0 1px 0 rgba(20, 38, 51, .05);
}

:root[data-theme="light"] body .card:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(235, 245, 245, .98));
}

.card .service-logo-inline {
  width: min(100%, 220px);
  margin: 0 auto 10px;
  align-self: center;
}

.card:hover {
  border-color: rgba(255, 99, 39, .38);
  background: linear-gradient(180deg, rgba(28, 44, 55, .98), rgba(17, 27, 35, .98));
}

.card.tall { min-height: 320px; }
.compact .card { min-height: 205px; }
.card p { margin-bottom: 0; }

.news-card {
  justify-content: flex-start;
}

.news-card-media {
  width: calc(100% + 48px);
  height: 170px;
  margin: -24px -24px 2px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: rgba(255, 255, 255, .06);
}

.news-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(.86) contrast(1.05);
  transition: transform .28s ease, filter .28s ease;
}

.news-card:hover .news-card-media img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.08);
}

.news-detail-hero {
  padding-bottom: 92px;
}

.news-article {
  max-width: 980px;
  margin: -92px auto 0;
  position: relative;
  z-index: 2;
}

.news-article-image {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  display: block;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, .06);
}

.article-body {
  margin: 34px auto 0;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 24px;
  background: rgba(8, 19, 27, .74);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .22);
}

.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.article-body p {
  margin: 0 0 18px;
}

.article-body h2,
.article-body h3,
.article-body h4 {
  margin: 28px 0 12px;
}

.article-body a {
  color: var(--amber);
  font-weight: 800;
}

.article-body ul,
.article-body ol {
  margin: 0 0 20px 24px;
  padding: 0;
}

.centered-content {
  text-align: center;
}

.card-kicker {
  color: var(--amber);
  font-family: var(--font-subhead);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.live-metrics {
  padding-bottom: 42px;
}

.metric-cards {
  align-items: stretch;
}

.metric-card {
  min-height: 230px;
}

.metric-card strong {
  display: block;
  margin: 4px 0 10px;
  color: var(--ink);
  font-size: clamp(44px, 6vw, 72px);
  line-height: .9;
  font-weight: 900;
}

.metric-card.is-loading strong {
  color: var(--muted);
}

.metric-card.is-stale {
  border-color: rgba(241, 179, 66, .32);
}

.metric-source-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.cr-timeline-section {
  overflow: hidden;
}

.cr-timeline-section .section-heading {
  max-width: 860px;
}

.cr-critical-path {
  position: relative;
  min-height: 430px;
  margin-top: 34px;
  padding: 28px 30px 54px;
  border: 1px solid rgba(255, 102, 36, .28);
  border-radius: 18px;
  background:
    radial-gradient(circle at 0 0, rgba(47, 133, 155, .14), transparent 22%),
    radial-gradient(circle at 100% 100%, rgba(255, 102, 36, .12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .025));
  box-shadow: var(--shadow);
}

.cr-critical-banner {
  margin: 0 0 64px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 800;
  text-align: center;
}

.cr-line {
  position: absolute;
  top: 214px;
  left: 48px;
  right: 58px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--control-teal) 0%, var(--control-teal) 46%, var(--response-orange) 74%, var(--orange) 100%);
  box-shadow: 0 0 18px rgba(255, 102, 36, .22);
}

.cr-arrow {
  position: absolute;
  top: 206px;
  right: 44px;
  width: 18px;
  height: 18px;
  border-top: 4px solid var(--orange);
  border-right: 4px solid var(--orange);
  filter: drop-shadow(0 0 6px rgba(255, 102, 36, .32));
  transform: rotate(45deg);
}

.cr-node {
  position: absolute;
  left: var(--x);
  width: 134px;
  transform: translateX(-50%);
  text-align: center;
}

.cr-node.enforcement-node {
  width: 176px;
}

.cr-node:before {
  content: "";
  position: absolute;
  left: 50%;
  width: 3px;
  height: 38px;
  transform: translateX(-50%);
  background: var(--ink);
}

.cr-node:after {
  content: "";
  position: absolute;
  left: 50%;
  width: 15px;
  height: 15px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: var(--ink);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .08);
}

.cr-node.node-top {
  top: 84px;
}

.cr-node.node-top:not(.enforcement-node) {
  padding-top: 19px;
}

.cr-node.node-top:before {
  top: 105px;
}

.cr-node.node-top:after {
  top: 123px;
}

.cr-node.node-bottom {
  top: 215px;
  padding-top: 56px;
}

.cr-node.node-bottom:before {
  top: 0;
}

.cr-node.node-bottom:after {
  top: -7px;
}

.cr-node span {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.22;
}

.cr-node em {
  display: block;
  margin-bottom: 7px;
  color: var(--orange);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.date-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 27px;
  padding: 4px 10px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  color: #08131a;
  background: #ffffff;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .01em;
  text-transform: uppercase;
  white-space: nowrap;
}

.enforcement-node .date-pill {
  border-color: var(--orange);
  color: var(--orange);
  background: #ffffff;
}

.enforcement-node span {
  width: min(154px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.cr-critical-caption {
  position: absolute;
  right: 22px;
  bottom: 14px;
  left: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-style: italic;
  text-align: center;
}

.cr-critical-caption a {
  color: var(--orange);
  font-style: normal;
  font-weight: 900;
  text-decoration: none;
}

.cr-critical-caption a:hover,
.cr-critical-caption a:focus-visible {
  text-decoration: underline;
}

:root[data-theme="light"] body .cr-critical-path {
  background:
    radial-gradient(circle at 0 0, rgba(47, 133, 155, .12), transparent 22%),
    radial-gradient(circle at 100% 100%, rgba(255, 102, 36, .12), transparent 24%),
    #fffdf8;
}

:is(.feature-band, .feature-section) {
  width: min(1180px, calc(100% - 44px));
  margin: 24px auto;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 34px;
  align-items: center;
  padding: 48px;
  border-radius: 8px;
  color: var(--white);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 99, 39, .16), rgba(39, 212, 189, .08) 36%, rgba(95, 158, 215, .09)),
    #0b1117;
}

:root[data-theme="light"] body :is(.feature-band, .feature-section) {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 99, 39, .13), rgba(7, 140, 131, .09) 36%, rgba(35, 106, 159, .08)),
    #ffffff;
}

:root[data-theme="light"] body :is(.feature-band, .feature-section) p,
:root[data-theme="light"] body .agent-board span,
:root[data-theme="light"] body .metric-panel span {
  color: var(--muted);
}

:root[data-theme="light"] body .agent-board .eyebrow {
  color: var(--orange);
}

:is(.feature-band, .feature-section) p { color: #d2e0e6; }

:is(.feature-band, .feature-section) .eyebrow { color: var(--orange); }
.feature-copy { max-width: 520px; }

.testimonial-band {
  width: min(1180px, calc(100% - 44px));
  margin: 18px auto 24px;
  padding: 40px;
  align-items: center;
  gap: 36px;
  border: 1px solid rgba(255, 99, 39, .45);
  border-radius: 8px;
  background:
    linear-gradient(125deg, rgba(255, 99, 39, .2), rgba(241, 179, 66, .12) 42%, rgba(39, 212, 189, .08)),
    #0f151c;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .24);
}

.testimonial-band .eyebrow {
  color: var(--orange);
}

.testimonial-intro {
  max-width: 360px;
}

.testimonial-quote-wrap {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(22, 35, 45, .96), rgba(17, 27, 35, .96));
  box-shadow: 0 1px 0 rgba(255, 255, 255, .03);
}

.testimonial-band blockquote {
  margin: 0;
  color: var(--white);
  font-size: clamp(27px, 3.1vw, 44px);
  line-height: 1.1;
  font-weight: 900;
  text-wrap: balance;
}

.testimonial-source {
  margin-top: 14px;
  color: #d2e0e6;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

:root[data-theme="light"] body .testimonial-band {
  border-color: rgba(255, 99, 39, .34);
  background:
    linear-gradient(125deg, rgba(255, 99, 39, .18), rgba(241, 179, 66, .11) 42%, rgba(39, 212, 189, .08)),
    #ffffff;
  box-shadow: 0 10px 26px rgba(14, 31, 43, .12);
}

:root[data-theme="light"] body .testimonial-band blockquote {
  color: #1c2c38;
}

:root[data-theme="light"] body .testimonial-quote-wrap {
  background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(244, 249, 249, .96));
  box-shadow: 0 1px 0 rgba(20, 38, 51, .05);
}

:root[data-theme="light"] body .testimonial-source {
  color: #4f6677;
}

.services-workflow-section {
  display: grid;
  grid-template-columns: minmax(260px, .84fr) minmax(360px, 1.16fr);
  align-items: center;
}

.services-workflow-copy {
  display: grid;
  gap: 14px;
}

.services-workflow-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(47, 133, 155, .48);
  border-radius: 8px;
  background: rgba(5, 9, 13, .46);
  box-shadow: 0 22px 52px rgba(0, 0, 0, .3);
}

.services-workflow-visual img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.services-workflow-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.workflow-label {
  min-width: 118px;
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 2px;
  padding: 9px 11px;
  border: 1px solid rgba(140, 230, 231, .44);
  border-radius: 999px;
  color: #f5fbff;
  background:
    linear-gradient(135deg, rgba(47, 133, 155, .78), rgba(9, 20, 30, .72)),
    rgba(9, 20, 30, .82);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .32), 0 0 22px rgba(47, 133, 155, .24);
  backdrop-filter: blur(10px);
  text-align: center;
}

.workflow-label strong {
  font-family: "Exo 2", "Open Sans", sans-serif;
  font-size: clamp(12px, 1.15vw, 16px);
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.workflow-label small {
  color: rgba(229, 244, 249, .86);
  font-size: clamp(9px, .85vw, 11px);
  font-weight: 800;
  line-height: 1.1;
}

.workflow-label-build {
  top: 17%;
  left: 12%;
}

.workflow-label-operate {
  top: 17%;
  right: 10%;
}

.workflow-label-prove {
  left: 10%;
  bottom: 17%;
}

.workflow-label-defend {
  right: 9%;
  bottom: 17%;
  border-color: rgba(255, 154, 94, .5);
  background:
    linear-gradient(135deg, rgba(47, 133, 155, .74), rgba(255, 99, 39, .28)),
    rgba(9, 20, 30, .82);
}

.workflow-label-center {
  min-width: 154px;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(255, 154, 94, .62);
  background:
    linear-gradient(135deg, rgba(47, 133, 155, .88), rgba(255, 99, 39, .28)),
    rgba(9, 20, 30, .88);
}

.services-workflow-section .timeline {
  grid-column: 1 / -1;
}

:root[data-theme="light"] body .services-workflow-visual {
  border-color: rgba(47, 133, 155, .28);
  background: rgba(255, 255, 255, .68);
  box-shadow: 0 16px 34px rgba(14, 31, 43, .14);
}

:root[data-theme="light"] body .workflow-label {
  color: #f8fbfd;
}

.insights-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.insights-tabs a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, .06);
  font-weight: 900;
}

:root[data-theme="light"] body .insights-tabs a {
  background: rgba(255, 255, 255, .78);
}

.podcast-feature {
  grid-template-columns: minmax(0, .78fr) minmax(320px, 1.22fr);
  margin-bottom: 88px;
}

.video-embed {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(0, 0, 0, .28);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .22);
}

:root[data-theme="light"] body .video-embed {
  border-color: var(--line);
  background: rgba(8, 13, 18, .05);
  box-shadow: var(--shadow);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.podcast-library {
  padding-top: 18px;
}

.podcast-card {
  min-height: 245px;
}

.podcast-hero {
  padding-bottom: 52px;
}

.podcast-video {
  width: min(980px, calc(100% - 44px));
  margin: 0 auto 54px;
}

.source-note {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 14px !important;
  font-weight: 700;
}

.agent-board,
.metric-panel,
.timeline,
.process-band,
.mini-list {
  display: grid;
  gap: 12px;
}

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

.agent-board div,
.metric-panel div,
.timeline div,
.process-band div {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

:root[data-theme="light"] body .agent-board div,
:root[data-theme="light"] body .metric-panel div {
  border-color: var(--line);
  background: rgba(255, 255, 255, .56);
}

.agent-board strong,
.metric-panel strong,
.timeline strong,
.process-band strong {
  display: block;
  margin-bottom: 8px;
}

.agent-board span,
.metric-panel span,
.timeline span,
.process-band span {
  color: #d2e0e6;
  line-height: 1.5;
}

.agent-board .card-kicker {
  color: var(--orange);
  display: block;
  margin-bottom: 6px;
}

.agent-board div > span + span {
  display: block;
}

.timeline div,
.process-band div {
  border-color: var(--line);
  background: var(--panel);
}

.timeline span,
.process-band span {
  color: var(--muted);
}

.process-band {
  width: min(1180px, calc(100% - 44px));
  margin: 10px auto 90px;
  grid-template-columns: repeat(4, 1fr);
}

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

.cta {
  width: min(980px, calc(100% - 44px));
  margin: 34px auto 88px;
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 99, 39, .14), rgba(39, 212, 189, .08)),
    var(--panel);
  box-shadow: var(--shadow);
}

.cta h2 {
  margin-left: auto;
  margin-right: auto;
}

.cta p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
}

.blog-hero {
  width: min(980px, calc(100% - 44px));
  margin: 0 auto;
  padding: 86px 0 32px;
}

body.policy-page .blog-hero {
  padding-top: 72px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--muted);
  font-family: var(--font-subhead);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow,
.card-kicker,
.mega-label,
.compact-menu-label,
.blog-meta,
.blog-meta span {
  font-family: var(--font-subhead) !important;
}

.blog-meta span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
}

:root[data-theme="light"] body .blog-meta span {
  background: rgba(8, 13, 18, .04);
}

.blog-hero h1 {
  max-width: 960px;
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 74px);
  text-shadow: 0 16px 40px rgba(0, 0, 0, .36);
}

.blog-hero h1:before {
  content: "";
  position: absolute;
  top: .08em;
  bottom: .08em;
  left: 0;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange), var(--amber));
  box-shadow: 0 0 28px rgba(255, 99, 39, .34);
}

:root[data-theme="light"] body .blog-hero h1 {
  text-shadow: none;
}

.blog-hero p {
  max-width: 820px;
  font-size: 20px;
}

.blog-image {
  width: min(1180px, calc(100% - 44px));
  height: clamp(260px, 38vw, 440px);
  margin: 10px auto 54px;
  position: relative;
  border: 1px solid rgba(177, 196, 211, .12);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 99, 39, .12), rgba(39, 212, 189, .08)),
    var(--panel);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .24);
}

.blog-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: .72;
  filter: saturate(.95) contrast(.94) brightness(.9);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 14%, #000 82%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 14%, #000 82%, transparent 100%);
  mask-composite: intersect;
}

.blog-image:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, rgba(39, 212, 189, .16), transparent 34%),
    linear-gradient(180deg, rgba(8, 13, 18, .18), rgba(8, 13, 18, .46));
}

:root[data-theme="light"] body .blog-image img {
  opacity: .82;
  filter: saturate(.96) contrast(.92) brightness(1.06);
}

:root[data-theme="light"] body .blog-image:after {
  background:
    radial-gradient(circle at 18% 20%, rgba(7, 140, 131, .13), transparent 34%),
    linear-gradient(180deg, rgba(245, 248, 248, .1), rgba(245, 248, 248, .32));
}

.blog-layout {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 46px;
  align-items: start;
}

.blog-article {
  max-width: 760px;
}

.blog-article h2 {
  margin-top: 40px;
  font-size: clamp(28px, 3vw, 40px);
}

.blog-article p,
.blog-article li {
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.72;
}

.blog-article ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 22px;
}

.blog-sidebar {
  position: sticky;
  top: 130px;
  display: grid;
  gap: 14px;
}

.blog-sidebar .card {
  min-height: auto;
}

.blog-sidebar strong {
  color: var(--ink);
}

.blog-cta {
  width: min(980px, calc(100% - 44px));
  margin: 64px auto 88px;
}

.faq-section {
  padding-top: 36px;
}

.ctp-faq-section {
  padding-top: 36px;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(22, 35, 45, .96), rgba(17, 27, 35, .96));
}

:root[data-theme="light"] body .faq-list details {
  background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(244, 249, 249, .96));
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary:after {
  content: "+";
  color: var(--orange);
  font-size: 22px;
  line-height: 1;
}

.faq-list details[open] summary:after {
  content: "-";
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
}

.faq-source-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 12px 8px 0 0;
  padding: 9px 12px;
  border: 1px solid rgba(255, 102, 36, .52);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 102, 36, .18), rgba(47, 133, 155, .14));
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.faq-source-link:hover,
.faq-source-link:focus-visible {
  transform: translateY(-1px);
  border-color: var(--orange);
  background: linear-gradient(135deg, rgba(255, 102, 36, .28), rgba(47, 133, 155, .2));
  color: var(--white);
}

:root[data-theme="light"] body .faq-source-link {
  color: #0e2730;
  background: linear-gradient(135deg, rgba(255, 102, 36, .18), rgba(47, 133, 155, .1));
}

:root[data-theme="light"] body .faq-source-link:hover,
:root[data-theme="light"] body .faq-source-link:focus-visible {
  color: #0b1720;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  gap: 34px;
}

.contact-form,
.contact-aside {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

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

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

label {
  display: grid;
  gap: 8px;
  color: var(--ink-2);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #0c141b;
  font: inherit;
}

.btn:disabled {
  cursor: wait;
  opacity: .72;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--ink-2);
  font-weight: 800;
}

.form-status.is-pending {
  color: var(--teal);
}

.form-status.is-success {
  color: #76e3b7;
}

.form-status.is-error {
  color: var(--orange);
}

:root[data-theme="light"] body input,
:root[data-theme="light"] body select,
:root[data-theme="light"] body textarea {
  background: #f5f8f8;
}

.mini-list span {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-2);
  font-weight: 800;
}

.site-footer {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 38px 0 64px;
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.footer-brand-panel {
  display: grid;
  gap: 12px;
}

.footer-brand-panel .footer-socials {
  margin-left: 0;
}

.site-footer p {
  max-width: 560px;
  margin: 14px 0 0;
}

.footer-tagline,
.footer-rule {
  color: var(--ink) !important;
  font-weight: 900;
}

.footer-rule {
  margin-top: 2px !important;
  color: var(--orange) !important;
}

.footer-column h3 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 15px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-weight: 800;
}

.footer-links a,
.footer-contact a {
  width: fit-content;
  color: var(--muted);
  transition: color .2s ease, transform .2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--orange);
  transform: translateX(2px);
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-contact p {
  margin-top: 0;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  color: var(--muted);
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
}

.footer-policy-links a {
  color: var(--muted);
  font-weight: 800;
  transition: color .2s ease;
}

.footer-policy-links a:hover,
.footer-policy-links a:focus-visible {
  color: var(--orange);
}

/* Compact canonical footer */
.site-footer {
  padding: 24px 0 30px;
  border-top: 0;
}

.footer-main {
  gap: 0;
}

.footer-brand-panel {
  display: grid;
  grid-template-columns: minmax(190px, 260px) minmax(0, 1fr) auto;
  grid-template-areas:
    "logo tagline socials"
    "logo copy socials"
    "logo rule socials";
  align-items: center;
  gap: 4px 28px;
  padding: 22px 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(47, 133, 155, .16), rgba(255, 99, 39, .07) 52%, rgba(17, 27, 35, .88)),
    var(--panel);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .18);
}

.footer-brand-panel > .brand {
  grid-area: logo;
  align-self: center;
}

.footer-brand-panel .footer-tagline {
  grid-area: tagline;
}

.footer-brand-panel > p:not(.footer-tagline):not(.footer-rule) {
  grid-area: copy;
}

.footer-brand-panel .footer-rule {
  grid-area: rule;
}

.footer-brand-panel .footer-socials {
  grid-area: socials;
  justify-self: end;
  align-self: center;
}

.site-footer .brand-logo {
  width: clamp(176px, 17vw, 232px);
}

.site-footer p {
  max-width: none;
  margin: 0;
  line-height: 1.42;
}

.footer-tagline {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.05 !important;
}

.footer-rule {
  margin-top: 0 !important;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.footer-bottom {
  margin-top: 14px;
  padding-top: 14px;
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .footer-brand-panel {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo socials"
      "tagline tagline"
      "copy copy"
      "rule rule";
    gap: 8px 18px;
    padding: 20px;
  }

  .footer-brand-panel .footer-socials {
    justify-self: end;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding-block: 18px 26px;
  }

  .footer-brand-panel {
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "tagline"
      "copy"
      "rule"
      "socials";
    justify-items: start;
    padding: 18px;
  }

  .footer-brand-panel .footer-socials {
    justify-self: start;
    margin-top: 4px;
  }

  .footer-bottom {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 1180px) {
  .nav {
    width: min(100% - 32px, 1180px);
    gap: 12px;
  }

  .brand-logo {
    width: clamp(154px, 16vw, 214px);
  }

  .nav-links {
    gap: 8px;
    font-size: 13px;
  }

  .nav-pillar-wide .nav-pillar-menu {
    width: min(700px, calc(100vw - 32px));
  }

  .nav-pillar-button {
    padding-inline: 9px;
  }

  .nav-cta {
    padding-inline: 12px !important;
  }
}

@media (max-width: 980px) {
  .nav {
    position: relative;
    min-height: 68px;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    max-height: calc(100vh - 132px);
    overflow-y: auto;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav-links.open { display: flex; }
  .nav-pillar {
    width: 100%;
  }
  .nav-pillar-button {
    width: 100%;
    justify-content: space-between;
    text-align: left;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, .04);
  }
  .nav-pillar-menu {
    width: 100%;
    min-width: 0;
    position: static;
    margin-top: 8px;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
  }
  .nav-pillar.is-open .nav-pillar-menu {
    display: block;
  }
  .nav-pillar-wide:nth-child(2) .nav-pillar-menu,
  .nav-pillar-wide:nth-child(2):hover .nav-pillar-menu,
  .nav-pillar-wide:nth-child(2):focus-within .nav-pillar-menu,
  .nav-pillar-wide:nth-child(3) .nav-pillar-menu,
  .nav-pillar-wide:nth-child(3):hover .nav-pillar-menu,
  .nav-pillar-wide:nth-child(3):focus-within .nav-pillar-menu,
  .nav-pillar-wide:nth-child(4) .nav-pillar-menu,
  .nav-pillar-wide:nth-child(4):hover .nav-pillar-menu,
  .nav-pillar-wide:nth-child(4):focus-within .nav-pillar-menu,
  .nav-pillar-wide:nth-child(5) .nav-pillar-menu,
  .nav-pillar-wide:nth-child(5):hover .nav-pillar-menu,
  .nav-pillar-wide:nth-child(5):focus-within .nav-pillar-menu {
    transform: none;
  }
  .mega-menu,
  .resources-menu,
  .mega-columns {
    grid-template-columns: 1fr;
  }
  .mega-feature {
    padding: 14px;
  }
  .services-workflow-section {
    grid-template-columns: 1fr;
    padding: 28px;
  }
  .workflow-label {
    min-width: 94px;
    padding: 7px 8px;
  }
  .workflow-label small {
    display: none;
  }
  .workflow-label-center {
    min-width: 130px;
  }
  :root[data-theme="light"] body .nav-pillar-menu {
    background: transparent;
  }
  .nav-links > a,
  .nav-cta,
  .theme-toggle {
    width: 100%;
  }
  .theme-toggle {
    justify-content: center;
  }
  .menu-toggle { display: inline-flex; }
  .signal-strip,
  .cards.four,
  .process-band,
  .xbu40-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards.three,
  .split,
  .feature-band,
  .feature-section,
  .blog-layout,
  .footer-main,
  .contact-grid,
  .service-hero-grid {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }

  .home-brag-banner {
    width: min(720px, 100%);
  }

  .hero-home .hero-content {
    padding-top: 120px;
  }
}

@media (max-width: 1260px) {
  .cr-critical-path {
    min-height: 0;
    padding: 28px 22px 40px;
  }
  .cr-critical-banner {
    margin-bottom: 26px;
    text-align: left;
  }
  .cr-line,
  .cr-arrow {
    display: none;
  }
  .cr-node,
  .cr-node.node-top,
  .cr-node.node-bottom {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    display: grid;
    grid-template-columns: minmax(150px, auto) 1fr;
    gap: 14px;
    align-items: center;
    margin: 0 0 14px;
    padding: 14px 16px;
    transform: none;
    text-align: left;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
  }
  .cr-node:before,
  .cr-node:after {
    display: none;
  }
  .cr-node em {
    grid-column: 1 / -1;
    margin: 0 0 -4px;
  }
  .cr-node span {
    margin: 0;
    font-size: 13px;
  }
  .date-pill {
    width: fit-content;
  }
  .cr-critical-caption {
    position: static;
    margin-top: 18px;
    text-align: left;
  }
}

@media (max-width: 680px) {
  h1 { font-size: clamp(40px, 13vw, 58px); }
  .hero { min-height: 720px; }
  .hero-overlay {
    background: linear-gradient(0deg, rgba(8, 15, 21, .96) 0%, rgba(8, 15, 21, .78) 64%, rgba(8, 15, 21, .34) 100%);
  }
  .hero-content,
  .page-hero,
  .blog-hero,
  .blog-image,
  .blog-layout,
  .service-hero-grid,
  .section,
  .feature-band,
  .feature-section,
  .standard-selector,
  .site-footer,
    .signal-strip,
    .process-band {
    width: min(100% - 32px, 1180px);
  }
  .hero-content,
  .page-hero,
  .blog-hero,
  .service-hero-grid,
  .section {
    padding-block: 56px;
  }

  body.policy-page .blog-hero {
    padding-top: 48px;
  }

  .hero-content {
    padding-top: 92px;
  }
  .hero-actions {
    gap: 10px;
  }
  .signal-strip,
  .standard-selector-actions,
  .agency-trust-panel,
  .cards.three,
  .cards.four,
  .agent-board,
  .process-band,
  .xbu40-timeline {
    grid-template-columns: 1fr;
  }
  .cr-critical-path {
    min-height: 0;
    padding: 28px 22px 40px;
  }
  .cr-critical-banner {
    margin-bottom: 26px;
    text-align: left;
  }
  .cr-line,
  .cr-arrow {
    display: none;
  }
  .cr-node,
  .cr-node.node-top,
  .cr-node.node-bottom {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    display: grid;
    grid-template-columns: minmax(150px, auto) 1fr;
    gap: 14px;
    align-items: center;
    margin: 0 0 14px;
    padding: 14px 16px;
    transform: none;
    text-align: left;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
  }
  .cr-node:before,
  .cr-node:after {
    display: none;
  }
  .cr-node em {
    grid-column: 1 / -1;
    margin: 0 0 -4px;
  }
  .cr-node span {
    margin: 0;
    font-size: 13px;
  }
  .date-pill {
    width: fit-content;
  }
  .cr-critical-caption {
    position: static;
    margin-top: 18px;
    text-align: left;
  }
  .section.signal-strip-section {
    margin-top: 16px;
    margin-bottom: 84px;
  }
  .signal-strip a {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .signal-strip a:last-child { border-bottom: 0; }
  .signal-strip,
  .product-signals {
    margin-top: 16px;
  }
  .standard-selector:not(.home-standard-selector):not(.sitewide-standard-selector) {
    margin-top: 16px;
  }
  .home-standard-selector,
  .sitewide-standard-selector {
    width: min(100% - 32px, 760px);
    top: 16px;
    margin: 0;
    padding: 7px;
    flex-direction: column;
    gap: 6px;
    border-radius: 12px;
  }
  .home-standard-selector .standard-selector-actions,
  .sitewide-standard-selector .standard-selector-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(58px, 1fr));
  }
  .home-standard-selector .standard-tab,
  .sitewide-standard-selector .standard-tab {
    min-width: 0;
    min-height: 30px;
    padding: 6px 8px;
    font-size: 12px;
  }
  .home-brag-banner {
    width: 100%;
    margin-top: 24px;
    padding: 14px;
    border-radius: 16px;
  }
  .home-brag-kicker {
    font-size: 13px;
  }
  .home-brag-proof,
  .home-brag-close {
    font-size: 13px;
  }
  .home-brag-metrics {
    grid-template-columns: repeat(5, minmax(92px, 1fr));
    gap: 6px;
    margin: 10px 0;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }
  .home-brag-metrics div {
    min-height: 86px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    text-align: center;
    padding: 10px 12px;
    border-radius: 12px;
  }
  .home-brag-metrics strong {
    min-width: 0;
    margin: 0;
    font-size: 30px;
  }
  .home-brag-metrics span {
    margin-top: 0;
    font-size: 12px;
  }
  .hero-home .hero-content {
    padding-top: 92px;
  }
  .feature-band,
  .feature-section { padding: 28px; }
  .trust-problem-section,
  .trust-model-section { padding: 28px; }
  .customer-track {
    animation-duration: 70s;
  }
  .customer-track img {
    width: 154px;
    height: 86px;
  }
  .service-logo-panel { padding: 0; }
  .cta { width: min(100% - 32px, 980px); padding: 30px; }
  .brand-logo { width: 172px; }
  .site-footer { flex-direction: column; }
  .cr-critical-path {
    min-height: 0;
    padding: 24px 18px 34px;
  }
  .cr-critical-banner {
    margin-bottom: 24px;
    text-align: left;
  }
  .cr-line,
  .cr-arrow {
    display: none;
  }
  .cr-node,
  .cr-node.node-top,
  .cr-node.node-bottom {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    display: grid;
    grid-template-columns: minmax(140px, auto) 1fr;
    gap: 12px;
    align-items: center;
    margin: 0 0 14px;
    padding: 14px;
    transform: none;
    text-align: left;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
  }
  .cr-node:before,
  .cr-node:after {
    display: none;
  }
  .cr-node em {
    grid-column: 1 / -1;
    margin: 0 0 -4px;
  }
  .cr-node span {
    margin: 0;
  }
  .date-pill {
    width: fit-content;
  }
  .cr-critical-caption {
    position: static;
    margin-top: 18px;
    text-align: left;
  }
}

@media (max-width: 520px) {
  body:before {
    top: 104px;
    width: 100vw;
    background-size: 520px auto;
    opacity: .12;
  }

  :root[data-theme="light"] body:before {
    opacity: .16;
  }

  .top-alert {
    padding: 7px 12px;
    font-size: 12px;
    line-height: 1.3;
  }

  .nav {
    width: min(100% - 24px, 1180px);
    min-height: 62px;
  }

  .brand-logo {
    width: 150px;
  }

  .nav-links {
    max-height: calc(100vh - 118px);
    padding: 14px;
  }

  h1 {
    font-size: clamp(34px, 12vw, 46px);
    line-height: 1;
  }

  h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  h3 {
    font-size: 20px;
  }

  p,
  .blog-article li {
    font-size: 16px;
  }

  .hero {
    min-height: 640px;
  }

  .hero-content,
  .page-hero,
  .blog-hero,
  .blog-image,
  .blog-layout,
  .service-hero-grid,
  .section,
  .feature-band,
  .feature-section,
  .standard-selector,
  .site-footer,
  .signal-strip,
  .process-band,
  .blog-cta,
  .cta {
    width: min(100% - 24px, 1180px);
  }

  .hero-content,
  .page-hero,
  .blog-hero,
  .service-hero-grid,
  .section {
    padding-block: 44px;
  }

  body.policy-page .blog-hero {
    padding-top: 40px;
  }

  .hero-content {
    padding-top: 82px;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    text-align: center;
  }

  .card,
  .contact-form,
  .contact-aside,
  .feature-band,
  .feature-section,
  .cta {
    padding: 22px;
  }

  .metric-card {
    min-height: auto;
  }

  .metric-card strong {
    font-size: clamp(38px, 15vw, 56px);
  }

  .customer-strip {
    padding-block: 34px;
  }

  .customer-marquee:before,
  .customer-marquee:after {
    width: 56px;
  }

  .customer-track {
    gap: 16px;
  }

  .customer-track img {
    width: 130px;
    height: 74px;
    padding: 9px 12px;
  }

  .blog-hero h1 {
    padding-left: 16px;
    font-size: clamp(34px, 11vw, 46px);
  }

  .blog-hero h1:before {
    width: 4px;
  }

  .blog-hero p {
    font-size: 17px;
  }

  .blog-image {
    min-height: 220px;
    margin-bottom: 36px;
  }

  .faq-list summary {
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    font-size: 16px;
  }

  .faq-list details p {
    padding: 0 16px 16px;
  }

  .site-footer {
    padding-bottom: 42px;
  }
}

@media (max-width: 480px) {
  .hero-home {
    min-height: auto;
    align-items: start;
  }

  .hero-home .hero-media {
    background-position: 58% center;
  }

  .hero-home .hero-overlay {
    background:
      linear-gradient(0deg, rgba(8, 15, 21, .96) 0%, rgba(8, 15, 21, .74) 66%, rgba(8, 15, 21, .4) 100%),
      linear-gradient(90deg, rgba(8, 15, 21, .92) 0%, rgba(8, 15, 21, .58) 62%, rgba(8, 15, 21, .24) 100%);
  }

  :root[data-theme="light"] body .hero-home .hero-overlay {
    background:
      linear-gradient(0deg, rgba(255, 255, 255, .94) 0%, rgba(255, 255, 255, .74) 62%, rgba(255, 255, 255, .28) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, .92) 0%, rgba(255, 255, 255, .58) 62%, rgba(255, 255, 255, .16) 100%);
  }

  .hero-home .hero-content {
    width: min(100% - 24px, 1180px);
    padding-top: 116px;
    padding-bottom: 34px;
  }

  .hero-home h1 {
    max-width: 100%;
    font-size: clamp(32px, 10.5vw, 42px);
    line-height: 1.04;
    letter-spacing: -.045em;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .hero-subtitle {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 4px;
  }

  .home-brag-banner {
    margin-top: 18px;
    padding: 13px;
    border-radius: 15px;
  }

  .home-brag-kicker {
    margin-bottom: 5px;
    font-size: 11px;
    letter-spacing: .06em;
  }

  .home-brag-proof,
  .home-brag-close {
    font-size: 12px;
    line-height: 1.35;
  }

  .home-brag-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    overflow: visible;
    padding-bottom: 0;
  }

  .home-brag-metrics div {
    min-height: 74px;
    padding: 9px 8px;
  }

  .home-brag-metrics div:nth-child(5) {
    grid-column: 1 / -1;
  }

  .home-brag-metrics strong {
    font-size: 26px;
  }

  .home-brag-metrics span {
    font-size: 11px;
    line-height: 1.18;
  }
}

@media (max-width: 380px) {
  .top-alert strong,
  .top-alert span {
    display: inline;
  }

  .brand-logo {
    width: 136px;
  }

  .menu-toggle,
  .theme-toggle {
    min-width: 42px;
  }

  h1 {
    font-size: clamp(31px, 12vw, 38px);
  }

  .customer-track img {
    width: 116px;
    height: 66px;
  }
}

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

  *,
  *:before,
  *:after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Team */
.team-hero {
  padding-bottom: 44px;
}

.team-hero p {
  max-width: 820px;
  font-size: clamp(18px, 2vw, 22px);
}

.team-section {
  padding-top: 18px;
}

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

.team-card {
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(255, 102, 36, .38);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 102, 36, .08);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .38), 0 0 0 1px rgba(255, 102, 36, .2);
}

.team-card:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.team-card img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1) contrast(1.08) brightness(.94);
  transition: filter .25s ease, transform .25s ease;
}

.team-card:hover img {
  filter: grayscale(1) contrast(1.12) brightness(1);
  transform: scale(1.015);
}

.team-card div {
  min-height: 108px;
  padding: 18px;
  border-top: 5px solid var(--orange);
  background:
    linear-gradient(135deg, rgba(255, 102, 36, .13), transparent 58%),
    var(--panel);
}

.team-card h3 {
  margin: 0 0 7px;
  font-size: 19px;
  line-height: 1.2;
}

.team-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.team-card p:after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  margin-top: 12px;
  background: var(--orange);
}

.team-card-action {
  display: inline-flex;
  margin-top: 14px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.team-card-linkedin {
  display: inline-flex;
  margin: 14px 0 0 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
}

.team-card-linkedin:hover,
.team-card-linkedin:focus-visible {
  color: var(--orange);
}

.team-card-memorial div {
  border-top-color: var(--teal);
}

.team-card-memorial p:after {
  background: var(--teal);
}

.team-card-memorial h3 span {
  display: block;
  margin-top: 5px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.team-cta {
  margin-bottom: 50px;
  text-align: center;
}

.team-cta p {
  max-width: 680px;
  margin-inline: auto;
}

.team-dialog {
  width: min(900px, calc(100% - 36px));
  max-height: calc(100vh - 48px);
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(255, 102, 36, .55);
  border-radius: 22px;
  background: var(--panel);
  color: var(--ink);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .65);
}

.team-dialog::backdrop {
  background: rgba(3, 8, 12, .82);
  backdrop-filter: blur(8px);
}

.team-dialog-close {
  position: sticky;
  z-index: 2;
  top: 14px;
  float: right;
  margin: 14px 14px 0 0;
  padding: 9px 13px;
  border: 1px solid rgba(255, 102, 36, .65);
  border-radius: 999px;
  background: var(--orange);
  color: #11131e;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.team-dialog-layout {
  display: grid;
  grid-template-columns: minmax(250px, 38%) 1fr;
  min-height: 520px;
}

.team-dialog-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1) contrast(1.08) brightness(.94);
}

.team-dialog-copy {
  align-self: center;
  padding: 70px 46px 46px;
}

.team-dialog-copy h2 {
  margin: 8px 0;
}

.team-dialog-role {
  margin: 0 0 26px;
  color: var(--orange);
  font-weight: 800;
}

.team-dialog-bio {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.team-dialog-linkedin {
  display: inline-flex;
  margin-top: 8px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 102, 36, .55);
  border-radius: 999px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.team-dialog-linkedin:hover,
.team-dialog-linkedin:focus-visible {
  background: var(--orange);
  color: #11131e;
}

@media (max-width: 980px) {
  .not-found-hero {
    grid-template-columns: 1fr;
    padding-top: 58px;
  }

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

@media (max-width: 700px) {
  .not-found-hero {
    width: min(100% - 28px, 1180px);
    gap: 28px;
  }

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

  .team-card div {
    min-height: 100px;
    padding: 14px;
  }

  .team-card h3 {
    font-size: 16px;
  }

  .team-dialog-layout {
    display: block;
  }

  .team-dialog-image {
    height: 310px;
    min-height: 0;
  }

  .team-dialog-copy {
    padding: 30px 24px 36px;
  }
}

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