@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/onest-latin-400-700.woff2") format("woff2");
}

:root {
  --site-width: 1312px;
  --site-ink: #0d1820;
  --site-ink-soft: #4f6470;
  --site-canvas: #f6f8fb;
  --site-surface: #ffffff;
  --site-surface-soft: #eef3f7;
  --site-line: #d8e2ea;
  --site-line-strong: #bdcbd6;
  --site-night: #06151e;
  --site-night-soft: #0a2230;
  --site-blue: #2468ff;
  --site-cyan: #22d9ec;
  --site-green: #42d392;
  --site-signal: #2fe6c5;
  --site-signal-dark: #087883;
  --site-white: #f9fbfb;
  --site-radius: 10px;
  --site-control-radius: 7px;
  --site-nav-height: 68px;
  --site-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --site-hero-title: clamp(2.5rem, 4.8vw, 4rem);
  --site-page-title: clamp(2.1rem, 4.2vw, 3.25rem);
  --site-section-title: clamp(1.75rem, 2.6vw, 2.25rem);
  --site-capability-title: clamp(1.5rem, 2vw, 2rem);
  --site-section-space: clamp(3.5rem, 5vw, 4.5rem);
  --site-copy-width: 72ch;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--site-nav-height);
}

body.public-site {
  margin: 0;
  background: var(--site-canvas);
  color: var(--site-ink);
  font-family: "Onest", "Helvetica Neue", sans-serif;
  font-size: 0.95rem;
  font-kerning: normal;
  font-optical-sizing: auto;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

.public-site .container {
  width: min(100% - 2.5rem, var(--site-width));
  max-width: var(--site-width);
}

.public-site a {
  color: inherit;
}

.public-site a,
.public-site button {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(47, 230, 197, 0.22);
}

.public-site h1,
.public-site h2,
.public-site h3 {
  margin-top: 0;
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-wrap: balance;
}

.public-site p,
.public-site li {
  text-wrap: pretty;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1100;
  padding: 0.65rem 0.9rem;
  background: var(--site-white);
  color: var(--site-night);
  transform: translateY(-160%);
  transition: transform 160ms var(--site-ease);
}

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

.site-nav {
  min-height: var(--site-nav-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(5, 18, 27, 0.92);
  backdrop-filter: blur(18px);
  color: var(--site-white);
}

.site-brand {
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
  color: var(--site-white);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.site-brand:hover,
.site-brand:focus {
  color: var(--site-white);
}

.site-brand-mark {
  position: relative;
  display: inline-flex;
  width: 2.15rem;
  height: 1.1rem;
  align-items: center;
  justify-content: space-between;
}

.site-brand-mark::before {
  position: absolute;
  right: 0.25rem;
  left: 0.25rem;
  height: 1px;
  background: var(--site-signal);
  content: "";
}

.site-brand-mark span {
  position: relative;
  width: 0.55rem;
  height: 0.55rem;
  border: 1px solid var(--site-signal);
  border-radius: 50%;
  background: var(--site-night);
}

.site-brand-mark span:nth-child(2) {
  background: var(--site-signal);
}

.site-nav .nav-link {
  padding: 0.7rem 0.72rem;
  color: rgba(249, 251, 251, 0.78);
  font-size: 0.82rem;
  font-weight: 550;
}

.site-nav .btn {
  min-height: 2.45rem;
  padding: 0.5rem 0.95rem;
  border-radius: var(--site-control-radius);
  font-size: 0.8rem;
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus {
  color: var(--site-white);
}

.site-nav .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--site-white);
}

.site-nav .navbar-toggler-icon {
  filter: invert(1) grayscale(1) brightness(2);
}

.nav-action {
  margin-left: 0.55rem;
}

.btn-signal,
.btn-signal:visited {
  border: 1px solid var(--site-blue);
  border-radius: var(--site-control-radius);
  background: var(--site-blue);
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(36, 104, 255, 0.2);
  font-weight: 700;
  transition: background-color 180ms var(--site-ease), border-color 180ms var(--site-ease), transform 180ms var(--site-ease);
}

.btn-signal:hover,
.btn-signal:focus {
  border-color: #4a84ff;
  background: #4a84ff;
  color: #ffffff;
  transform: translateY(-1px);
}

.site-main {
  min-height: 70vh;
  padding-top: var(--site-nav-height);
}

.public-site :focus-visible {
  outline: 3px solid var(--site-blue);
  outline-offset: 3px;
}

@media (max-width: 991.98px) {
  .site-nav .navbar-collapse {
    margin: 0.8rem 0 0.5rem;
    padding: 0.8rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-nav .nav-link {
    padding: 0.7rem 0;
  }

  .nav-action {
    width: 100%;
    margin: 0.55rem 0 0;
  }

  .nav-action .btn {
    width: 100%;
  }
}

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

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

/* Home page */
.signal-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--site-nav-height));
  padding: clamp(5rem, 9vw, 9rem) 0 clamp(5rem, 8vw, 8rem);
  background:
    radial-gradient(circle at 78% 38%, rgba(45, 107, 255, 0.22), transparent 31rem),
    linear-gradient(145deg, #071820 0%, #092630 62%, #0a333a 100%);
  color: var(--site-white);
}

.signal-hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% + 9rem);
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(47, 230, 197, 0.4), transparent);
  content: "";
}

.signal-hero-copy {
  position: relative;
  z-index: 1;
  animation: hero-enter 700ms var(--site-ease) both;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.5rem;
  color: var(--site-signal);
  font-size: 0.9rem;
  font-weight: 650;
}

.hero-kicker::before {
  width: 2.4rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.signal-hero h1 {
  max-width: 12ch;
  margin-bottom: 1.65rem;
  font-size: var(--site-hero-title);
  letter-spacing: -0.04em;
}

.hero-lead {
  max-width: 64ch;
  margin: 0 0 2.1rem;
  color: #c8d5d9;
  font-size: clamp(1.05rem, 1.65vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.2rem;
}

.hero-actions .btn,
.home-cta .btn {
  min-height: 3.25rem;
  padding: 0.75rem 1.35rem;
  font-size: 0.98rem;
}

.hero-actions .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  color: var(--site-white);
  font-weight: 650;
}

.hero-actions .btn-outline-light:hover,
.hero-actions .btn-outline-light:focus {
  border-color: var(--site-white);
  background: var(--site-white);
  color: var(--site-night);
}

.hero-footnote {
  max-width: 56ch;
  margin: 0;
  color: #93aab1;
  font-size: 0.88rem;
}

.signal-console {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(138, 235, 219, 0.35);
  border-radius: var(--site-radius);
  background: #0a1f27;
  animation: console-enter 780ms 100ms var(--site-ease) both;
}

.signal-console::after {
  position: absolute;
  right: -5rem;
  bottom: -7rem;
  width: 17rem;
  height: 17rem;
  border: 1px solid rgba(47, 230, 197, 0.16);
  border-radius: 50%;
  content: "";
}

.signal-console-head {
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #95aab1;
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-live {
  color: var(--site-signal);
}

.signal-live i {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.4rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 0 rgba(47, 230, 197, 0.45);
  animation: live-pulse 2.4s infinite;
}

.signal-path {
  padding: 1.45rem 1.35rem 1.55rem;
}

.signal-node {
  position: relative;
  display: grid;
  grid-template-columns: 2rem 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.85rem;
  align-items: center;
  padding: 0.85rem 0;
}

.signal-node > span {
  grid-row: 1 / 3;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid rgba(47, 230, 197, 0.5);
  border-radius: 50%;
  color: var(--site-signal);
  font-size: 0.68rem;
  font-weight: 700;
}

.signal-node strong {
  color: var(--site-white);
  font-size: 1.05rem;
}

.signal-node small {
  color: #8ea4aa;
  font-size: 0.78rem;
}

.signal-connector {
  position: relative;
  width: 1px;
  height: 1.55rem;
  margin-left: 1rem;
  overflow: hidden;
  background: rgba(47, 230, 197, 0.24);
}

.signal-connector i {
  position: absolute;
  top: -45%;
  left: 0;
  width: 1px;
  height: 45%;
  background: var(--site-signal);
  animation: route-pulse 1.8s linear infinite;
}

.signal-console-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem 1.2rem 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.signal-console-meta span {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: #102f39;
  color: #a8bec5;
  font-size: 0.7rem;
}

.workflow-section,
.architecture-section,
.network-evidence,
.service-boundary {
  padding-top: var(--site-section-space);
  padding-bottom: var(--site-section-space);
  scroll-margin-top: var(--site-nav-height);
}

.workflow-section {
  background: var(--site-surface);
}

.architecture-section {
  background: var(--site-canvas);
}

.capability-section {
  overflow: hidden;
  padding-top: var(--site-section-space);
  background: var(--site-surface);
  scroll-margin-top: var(--site-nav-height);
}

.section-heading {
  margin-bottom: clamp(2.75rem, 5vw, 4.5rem);
}

.section-heading h2,
.capability-intro h2,
.boundary-layout > header h2,
.executive-contact h2,
.home-cta h2 {
  max-width: 18ch;
  margin-bottom: 0;
  font-size: var(--site-section-title);
}

.section-heading p:not(.section-context) {
  max-width: 65ch;
  margin: 1rem 0 0;
  color: var(--site-ink-soft);
  font-size: 1.02rem;
}

.section-heading-dark p:not(.section-context) {
  color: #c6d6da;
}

.section-context {
  margin: 0 0 1.1rem;
  color: var(--site-signal-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.workflow-routes {
  border-top: 1px solid var(--site-ink);
}

.workflow-route {
  display: grid;
  grid-template-columns: minmax(13rem, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  padding: clamp(2rem, 3.5vw, 3rem) 0;
  border-bottom: 1px solid var(--site-line);
}

.workflow-route h3,
.capability-copy h3 {
  margin: 0;
  font-size: var(--site-capability-title);
}

.workflow-route > div > p:first-child {
  max-width: 68ch;
  margin: 0 0 1.35rem;
  color: var(--site-ink-soft);
}

.workflow-route > div > small {
  display: block;
  margin-top: 1rem;
  color: var(--site-signal-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.route-line {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  margin: 0;
}

.route-line span {
  flex: 0 1 auto;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  background: #edf1f2;
  color: #26343a;
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.25;
}

.route-line i {
  position: relative;
  flex: 1 1 2rem;
  min-width: 1.5rem;
  height: 1px;
  background: #9eaaae;
}

.route-line i::after {
  position: absolute;
  top: -3px;
  right: -1px;
  width: 0;
  height: 0;
  border-top: 3.5px solid transparent;
  border-bottom: 3.5px solid transparent;
  border-left: 5px solid #69777c;
  content: "";
}

.option-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--site-line);
  border-bottom: 1px solid var(--site-line);
  list-style: none;
}

.option-paths li {
  min-width: 0;
  padding: 0.85rem;
  border-right: 1px solid var(--site-line);
}

.option-paths li:first-child {
  padding-left: 0;
}

.option-paths li:last-child {
  border-right: 0;
}

.option-paths small,
.option-paths strong {
  display: block;
}

.option-paths small {
  margin-bottom: 0.3rem;
  color: #68757a;
  font-size: 0.66rem;
}

.option-paths strong {
  color: var(--site-ink);
  font-size: 0.76rem;
  line-height: 1.35;
}

.architecture-frame {
  border: 1px solid #bac3c7;
  background: var(--site-surface);
}

.media-plane,
.business-plane {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.media-plane {
  background: var(--site-night);
  color: var(--site-white);
}

.media-plane header,
.business-plane header {
  display: flex;
  gap: 1.5rem;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.media-plane header span,
.business-plane header span {
  flex: 0 0 auto;
  color: var(--site-signal);
  font-size: 0.78rem;
  font-weight: 700;
}

.media-plane header h3,
.business-plane header h3 {
  max-width: 28ch;
  margin: 0;
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  text-align: right;
}

.media-route {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr) 1.25rem) minmax(0, 1fr);
  align-items: stretch;
  padding: clamp(2rem, 4vw, 3.5rem) 0;
}

.architecture-node {
  display: flex;
  min-width: 0;
  min-height: 16rem;
  flex-direction: column;
  padding: 1rem;
  border: 1px solid rgba(164, 197, 207, 0.3);
  border-radius: 8px;
  background: var(--site-night-soft);
}

.architecture-node > span {
  margin-bottom: 0.7rem;
  color: var(--site-signal);
  font-size: 0.66rem;
  font-weight: 700;
}

.architecture-node strong {
  margin-bottom: 0.65rem;
  color: var(--site-white);
  font-size: 0.95rem;
  line-height: 1.3;
}

.architecture-options small {
  display: block;
  margin-bottom: 0.16rem;
  color: #a9bec5;
  font-size: 0.62rem;
  font-weight: 700;
}

.architecture-options {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  color: #c2d1d5;
  font-size: 0.68rem;
  line-height: 1.45;
  list-style: none;
  overflow-wrap: anywhere;
}

.architecture-option-featured {
  color: var(--site-white);
  font-weight: 700;
}

.architecture-option-featured small {
  color: var(--site-signal);
}

.source-node,
.destination-node {
  border-color: rgba(47, 230, 197, 0.65);
}

.route-connector {
  position: relative;
  display: block;
  height: 1px;
  background: rgba(47, 230, 197, 0.48);
}

.route-connector::after {
  position: absolute;
  top: -3px;
  right: 0;
  border-top: 3.5px solid transparent;
  border-bottom: 3.5px solid transparent;
  border-left: 5px solid var(--site-signal);
  content: "";
}

.output-protocols,
.business-capabilities,
.edge-delivery-modes,
.protection-layers,
.client-paths,
.client-transport-options {
  margin: 0;
  padding: 0;
  list-style: none;
}

.edge-delivery {
  display: grid;
  grid-template-columns: minmax(9rem, 0.24fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.edge-delivery > strong {
  display: flex;
  align-items: center;
  color: var(--site-signal);
  font-size: 0.74rem;
}

.edge-delivery-modes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
}

.edge-delivery-modes li {
  min-width: 0;
  padding: 0.9rem;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.edge-delivery-modes small,
.edge-delivery-modes span {
  display: block;
}

.edge-delivery-modes small {
  margin-bottom: 0.35rem;
  color: #8fa7ae;
  font-size: 0.61rem;
}

.edge-delivery-modes span {
  color: var(--site-white);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
}

.client-delivery {
  margin-top: -1px;
}

.output-protocols {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  padding-top: 1.25rem;
}

.output-protocols::before {
  margin-right: 0.4rem;
  color: #8fa7ae;
  content: "Live outputs";
  font-size: 0.72rem;
  font-weight: 700;
}

.output-protocols li,
.business-capabilities li {
  padding: 0.38rem 0.58rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 650;
}

.output-protocols li {
  background: #15323c;
  color: #d6e5e8;
}

.business-plane {
  border-top: 1px solid var(--site-blue);
  background: #e9edff;
}

.business-plane header {
  border-bottom-color: #aeb9de;
}

.business-plane header span {
  color: #174fd6;
}

.business-plane header h3 {
  color: #1b274c;
}

.business-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.5rem 0 1.25rem;
}

.business-capabilities li {
  border: 1px solid #aeb9de;
  background: rgba(255, 255, 255, 0.56);
  color: #25345d;
}

.business-plane > p {
  max-width: 72ch;
  margin: 0;
  color: #435174;
}

.capability-intro {
  display: flex;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  justify-content: space-between;
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
  border-bottom: 1px solid var(--site-ink);
}

.capability-intro h2 {
  max-width: 19ch;
}

.capability-intro p {
  max-width: 58ch;
  margin: 0;
  color: var(--site-ink-soft);
}

.capability-scene {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(20rem, 1.12fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
  min-height: 30rem;
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  border-bottom: 1px solid var(--site-line);
  scroll-margin-top: var(--site-nav-height);
}

.edge-capability {
  border-color: rgba(255, 255, 255, 0.16);
  background: #0b2730;
  box-shadow: 0 0 0 100vmax #0b2730;
  color: var(--site-white);
  clip-path: inset(0 -100vmax);
}

.client-capability {
  background: #e9edff;
  box-shadow: 0 0 0 100vmax #e9edff;
  clip-path: inset(0 -100vmax);
}

.rights-capability {
  border-color: rgba(255, 255, 255, 0.25);
  background: var(--site-blue);
  box-shadow: 0 0 0 100vmax var(--site-blue);
  color: var(--site-white);
  clip-path: inset(0 -100vmax);
}

.capability-copy p {
  max-width: 65ch;
  margin: 1.25rem 0;
  color: var(--site-ink-soft);
}

.capability-copy > strong {
  display: block;
  max-width: 62ch;
  color: var(--site-ink);
  font-size: 0.92rem;
  line-height: 1.55;
}

.capability-copy > small {
  display: block;
  max-width: 62ch;
  margin-top: 0.8rem;
  color: #52617f;
  font-size: 0.76rem;
  line-height: 1.55;
}

.edge-capability .capability-copy p,
.rights-capability .capability-copy p {
  color: #c4d5da;
}

.edge-capability .capability-copy > strong,
.rights-capability .capability-copy > strong {
  color: var(--site-white);
}

.edge-capability .capability-copy > small {
  color: #9fb4ba;
}

.media-visual {
  min-width: 0;
}

.protocol-matrix {
  display: grid;
  grid-template-columns: minmax(7rem, 1fr) 2.5rem minmax(5.5rem, 0.6fr) 2.5rem minmax(7rem, 1fr);
  gap: 0.5rem;
  align-items: center;
}

.protocol-matrix > i {
  position: relative;
  height: 1px;
  background: #879399;
}

.protocol-matrix > i::after {
  position: absolute;
  top: -3px;
  right: 0;
  border-top: 3.5px solid transparent;
  border-bottom: 3.5px solid transparent;
  border-left: 5px solid #657278;
  content: "";
}

.protocol-column {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-content: center;
}

.protocol-column small {
  flex: 0 0 100%;
  margin-bottom: 0.35rem;
  color: #5b686e;
  font-size: 0.72rem;
  font-weight: 700;
}

.protocol-column .protocol-column-break {
  margin-top: 0.5rem;
}

.protocol-column span {
  padding: 0.4rem 0.55rem;
  border: 1px solid #c2cbce;
  border-radius: 999px;
  background: var(--site-surface);
  color: #263238;
  font-size: 0.72rem;
  font-weight: 650;
}

.protocol-column .protocol-featured {
  border-color: var(--site-blue);
  background: var(--site-blue);
  color: var(--site-white);
}

.matrix-process {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--site-signal);
  color: #06231e;
  font-size: 0.78rem;
}

.ai-caption-strip {
  margin-top: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid #aab4b8;
  border-bottom: 1px solid #c8ced1;
}

.ai-caption-strip > small,
.ai-caption-strip > strong {
  display: block;
}

.ai-caption-strip > small {
  margin-bottom: 0.25rem;
  color: var(--site-signal-dark);
  font-size: 0.66rem;
  font-weight: 700;
}

.ai-caption-strip > strong {
  color: var(--site-ink);
  font-size: 0.84rem;
}

.ai-caption-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.8rem 0 0;
}

.ai-caption-flow span {
  color: #536066;
  font-size: 0.7rem;
  font-weight: 650;
}

.ai-caption-flow span:not(:last-child)::after {
  margin-left: 0.4rem;
  color: var(--site-blue);
  content: "→";
}

.edge-globe {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
  border: 1px solid rgba(47, 230, 197, 0.55);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(45, 107, 255, 0.24), transparent 58%),
    #0c323b;
}

.edge-globe::before,
.edge-globe::after,
.globe-latitude,
.globe-longitude {
  position: absolute;
  border: 1px solid rgba(133, 219, 207, 0.22);
  border-radius: 50%;
  content: "";
}

.edge-globe::before {
  inset: 23% 5%;
}

.edge-globe::after {
  inset: 41% 2%;
}

.globe-latitude {
  inset: 8% 20%;
}

.globe-longitude {
  inset: 5% 38%;
}

.edge-globe > span {
  position: absolute;
  padding: 0.35rem 0.5rem;
  background: #0b2730;
  color: #d6e8eb;
  font-size: 0.68rem;
  font-weight: 650;
  line-height: 1.2;
}

.region-north-america { top: 28%; left: 10%; }
.region-south-america { top: 64%; left: 25%; }
.region-europe { top: 24%; left: 47%; }
.region-africa { top: 52%; left: 46%; }
.region-asia { top: 32%; right: 12%; }
.region-oceania { right: 15%; bottom: 20%; }

.edge-route-caption {
  position: absolute;
  right: 10%;
  bottom: 7%;
  left: 10%;
  z-index: 1;
  display: flex;
  gap: 0.55rem;
  align-items: center;
  margin: 0;
  padding: 0.65rem 0.75rem;
  background: #071f27;
  color: #b8cdd2;
  font-size: 0.66rem;
}

.edge-route-caption span {
  flex: 0 1 auto;
}

.edge-route-caption i {
  position: relative;
  flex: 1;
  height: 1px;
  background: rgba(47, 230, 197, 0.55);
}

.edge-route-caption i::after {
  position: absolute;
  top: -3px;
  right: 0;
  border-top: 3.5px solid transparent;
  border-bottom: 3.5px solid transparent;
  border-left: 5px solid var(--site-signal);
  content: "";
}

.edge-route-caption strong {
  flex: 0 0 auto;
  color: var(--site-white);
}

.operations-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid #aab4b8;
  border-bottom: 1px solid #c8ced1;
  list-style: none;
  counter-reset: operations;
}

.operations-flow li {
  position: relative;
  min-height: 9rem;
  padding: 3.25rem 0.8rem 1rem;
  border-right: 1px solid var(--site-line);
  color: #263238;
  counter-increment: operations;
  font-size: 0.78rem;
  font-weight: 650;
}

.operations-flow li:first-child {
  border-left: 1px solid var(--site-line);
}

.operations-flow li::before {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  color: var(--site-blue);
  content: counter(operations, decimal-leading-zero);
  font-size: 0.7rem;
}

.client-platform {
  min-width: 0;
}

.client-paths,
.client-transport-options {
  display: grid;
  border-top: 1px solid #9facd6;
  border-bottom: 1px solid #aeb9de;
}

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

.client-transport-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.25rem;
}

.client-paths li,
.client-transport-options li {
  min-width: 0;
  padding: 1rem;
  border-right: 1px solid #aeb9de;
}

.client-paths li:first-child,
.client-transport-options li:first-child {
  padding-left: 0;
}

.client-paths li:last-child,
.client-transport-options li:last-child {
  border-right: 0;
}

.client-paths small,
.client-paths strong,
.client-paths span,
.client-transport-options strong,
.client-transport-options span {
  display: block;
}

.client-paths small {
  margin-bottom: 0.65rem;
  color: #174fd6;
  font-size: 0.64rem;
  font-weight: 700;
}

.client-paths strong,
.client-transport-options strong {
  margin-bottom: 0.5rem;
  color: #1b274c;
  font-size: 0.8rem;
  line-height: 1.35;
}

.client-paths span,
.client-transport-options span {
  color: #52617f;
  font-size: 0.7rem;
  line-height: 1.5;
}

.protection-visual {
  min-width: 0;
}

.protection-layers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
}

.protection-layers li {
  min-width: 0;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.protection-layers li:first-child {
  padding-left: 0;
}

.protection-layers li:last-child {
  border-right: 0;
}

.protection-layers small,
.protection-layers strong,
.protection-layers span {
  display: block;
}

.protection-layers small {
  margin-bottom: 0.8rem;
  color: #b9fff2;
  font-size: 0.64rem;
  font-weight: 700;
}

.protection-layers strong {
  margin-bottom: 0.65rem;
  color: var(--site-white);
  font-size: 0.82rem;
  line-height: 1.35;
}

.protection-layers span {
  color: #cfdaff;
  font-size: 0.7rem;
  line-height: 1.5;
}

.network-evidence {
  background: var(--site-night);
  color: var(--site-white);
}

.section-heading-dark h2 {
  color: var(--site-white);
}

.technology-definitions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.technology-definitions article {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.technology-definitions article:first-child {
  padding-left: 0;
}

.technology-definitions article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.technology-definitions small {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--site-signal);
  font-size: 0.7rem;
  font-weight: 700;
}

.technology-definitions h3 {
  margin-bottom: 1rem;
  color: var(--site-white);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

.technology-definitions p,
.benchmark-intro p {
  color: #c6d6da;
}

.technology-definitions p {
  max-width: 58ch;
  margin: 0 0 1rem;
}

.technology-definitions strong {
  display: block;
  color: var(--site-white);
  font-size: 0.82rem;
  line-height: 1.5;
}

.benchmark-intro {
  display: grid;
  grid-template-columns: minmax(12rem, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-top: clamp(3rem, 5vw, 4.5rem);
}

.benchmark-intro h3 {
  max-width: 19ch;
  margin: 0;
  color: var(--site-white);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.benchmark-intro p {
  max-width: 62ch;
  margin: 0;
}

.benchmark-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: 2rem;
}

.benchmark-case {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.benchmark-case > small {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--site-signal);
  font-size: 0.76rem;
  font-weight: 700;
}

.benchmark-case h3 {
  max-width: 24ch;
  margin-bottom: 1.25rem;
  color: var(--site-white);
  font-size: 1.2rem;
  line-height: 1.25;
}

.benchmark-case dl {
  margin: 0;
  padding: 0;
}

.benchmark-case dl div {
  display: grid;
  grid-template-columns: minmax(7.5rem, 0.6fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.benchmark-case dt {
  color: #91a8af;
  font-size: 0.72rem;
  font-weight: 650;
}

.benchmark-case dd {
  margin: 0;
  color: #e1eaec;
  font-size: 0.78rem;
  line-height: 1.5;
}

.benchmark-result dd {
  color: var(--site-signal);
  font-weight: 700;
}

.benchmark-case > p {
  margin: 1rem 0 0;
  color: #b5c8cd;
  font-size: 0.75rem;
}

.evidence-note {
  max-width: 76ch;
  margin: 1.5rem 0 0;
  color: #91a8af;
  font-size: 0.72rem;
}

.service-boundary {
  background: var(--site-blue);
  color: var(--site-white);
}

.boundary-layout {
  display: grid;
  grid-template-columns: minmax(13rem, 0.7fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3.5rem);
}

.boundary-layout > header h2 {
  max-width: 13ch;
}

.boundary-layout article {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.boundary-layout article h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.boundary-layout article p {
  max-width: 56ch;
  margin: 0;
  color: #e5ebff;
}

.home-cta {
  padding: clamp(4.5rem, 7vw, 6.5rem) 0;
  background: #dffcf5;
}

.home-cta h2 {
  max-width: 16ch;
}

.home-cta p {
  max-width: 62ch;
  margin: 1.25rem 0 0;
  color: #2f4943;
  font-size: 1.05rem;
}

.home-cta .btn-signal {
  border-color: var(--site-night);
  background: var(--site-night);
  color: var(--site-white);
}

.home-cta .btn-signal:hover,
.home-cta .btn-signal:focus {
  border-color: var(--site-blue);
  background: var(--site-blue);
  color: var(--site-white);
}
/* Footer */
.site-footer {
  padding: 1.25rem 0 0.75rem;
  background: #041218;
  color: var(--site-white);
}

.site-footer .row {
  --bs-gutter-y: 1.5rem;
}

.site-footer-brand {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--site-white);
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
}

.site-footer-brand:hover,
.site-footer-brand:focus {
  color: var(--site-signal);
}

.site-footer p {
  max-width: 48ch;
  margin: 0;
  color: #9eb3ba;
  font-size: 0.8rem;
}

.site-footer h2 {
  margin-bottom: 1rem;
  color: #7f989f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 0.5rem;
}

.site-footer li a {
  color: #d7e2e5;
  font-size: 0.8rem;
  text-decoration: none;
}

.site-footer li a:hover,
.site-footer li a:focus {
  color: var(--site-signal);
}

.site-footer-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #779098;
  font-size: 0.78rem;
}

@keyframes hero-enter {
  from {
    opacity: 0.2;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes console-enter {
  from {
    opacity: 0.2;
    transform: translateY(1.5rem) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes route-pulse {
  to {
    transform: translateY(3.4rem);
  }
}

@keyframes live-pulse {
  60% {
    box-shadow: 0 0 0 0.45rem rgba(47, 230, 197, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(47, 230, 197, 0);
  }
}

@media (max-width: 1199.98px) {
  .media-route {
    max-width: 44rem;
    grid-template-columns: 1fr;
    margin: 0 auto;
  }

  .edge-delivery {
    max-width: 44rem;
    margin-right: auto;
    margin-left: auto;
  }

  .architecture-node {
    min-height: 0;
  }

  .route-connector {
    width: 1px;
    height: 1.5rem;
    margin: 0 auto;
  }

  .route-connector::after {
    top: auto;
    right: -3px;
    bottom: 0;
    border-top: 5px solid var(--site-signal);
    border-right: 3.5px solid transparent;
    border-bottom: 0;
    border-left: 3.5px solid transparent;
  }
}

@media (max-width: 991.98px) {
  .signal-hero {
    min-height: auto;
  }

  .signal-hero::before {
    display: none;
  }

  .signal-hero h1 {
    max-width: 14ch;
  }

  .section-heading p:not(.section-context) {
    margin-top: 1.5rem;
  }

  .capability-scene,
  .technology-definitions,
  .benchmark-grid,
  .boundary-layout {
    grid-template-columns: 1fr;
  }

  .capability-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .capability-scene {
    min-height: 0;
    padding: 4.5rem 0;
  }

  .capability-copy {
    max-width: 46rem;
  }

  .media-visual,
  .edge-globe,
  .operations-flow,
  .client-platform,
  .protection-visual {
    width: 100%;
    max-width: 44rem;
  }

  .technology-definitions article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .technology-definitions article,
  .technology-definitions article:first-child {
    padding: 1.75rem 0;
  }

  .benchmark-intro {
    grid-template-columns: 1fr;
  }

  .edge-delivery {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .edge-delivery > strong {
    padding: 0.9rem 0;
  }

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

  .boundary-layout > header h2 {
    max-width: 16ch;
  }

  .site-footer-meta {
    gap: 0.4rem;
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .signal-hero {
    padding-top: 4rem;
  }

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

  .hero-actions .btn {
    width: 100%;
  }

  .workflow-route {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .route-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .route-line span {
    width: 100%;
    text-align: left;
  }

  .route-line i {
    flex: none;
    width: 1px;
    min-width: 0;
    height: 1rem;
    margin-left: 0.75rem;
  }

  .route-line i::after {
    top: auto;
    right: -3px;
    bottom: -1px;
    border-top: 5px solid currentColor;
    border-right: 3.5px solid transparent;
    border-bottom: 0;
    border-left: 3.5px solid transparent;
  }

  .media-plane header,
  .business-plane header {
    align-items: flex-start;
    flex-direction: column;
  }

  .media-plane header h3,
  .business-plane header h3 {
    text-align: left;
  }

  .protocol-matrix {
    grid-template-columns: 1fr;
  }

  .protocol-matrix > i {
    width: 1px;
    height: 1.25rem;
    margin: 0 auto;
  }

  .protocol-matrix > i::after {
    top: auto;
    right: -3px;
    bottom: 0;
    border-top: 5px solid #657278;
    border-right: 3.5px solid transparent;
    border-bottom: 0;
    border-left: 3.5px solid transparent;
  }

  .protocol-column {
    justify-content: center;
  }

  .protocol-column small {
    text-align: center;
  }

  .option-paths,
  .client-paths,
  .client-transport-options {
    grid-template-columns: 1fr;
  }

  .option-paths li,
  .option-paths li:first-child,
  .client-paths li,
  .client-paths li:first-child,
  .client-transport-options li,
  .client-transport-options li:first-child {
    padding: 1rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--site-line);
  }

  .option-paths li:last-child,
  .client-paths li:last-child,
  .client-transport-options li:last-child {
    border-bottom: 0;
  }

  .matrix-process {
    min-height: 4rem;
    aspect-ratio: auto;
    border-radius: 8px;
  }

  .edge-delivery-modes {
    grid-template-columns: 1fr;
  }

  .edge-delivery-modes li {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .edge-globe {
    min-height: 18rem;
  }

  .edge-route-caption {
    right: 6%;
    bottom: 4%;
    left: 6%;
  }

  .protection-layers {
    grid-template-columns: 1fr;
  }

  .protection-layers li,
  .protection-layers li:first-child {
    padding: 1rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .protection-layers li:last-child {
    border-bottom: 0;
  }

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

  .operations-flow li {
    min-height: 0;
    padding: 2.75rem 1rem 1rem;
    border-right: 1px solid var(--site-line);
    border-bottom: 1px solid var(--site-line);
    border-left: 1px solid var(--site-line);
  }

  .benchmark-case dl div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .business-capabilities {
    gap: 0.4rem;
  }

  .home-cta .btn {
    width: 100%;
  }
}

@media (forced-colors: active) {
  .public-site .btn,
  .public-site .contact-link,
  .contact-route-map,
  .contact-route-source,
  .contact-route-requests li,
  .contact-route-owners li,
  .executive-route-panel,
  .legal-document-meta,
  .legal-contact-box,
  .signal-console,
  .signal-node,
  .architecture-node,
  .protocol-column span,
  .ai-caption-strip,
  .edge-delivery-modes li,
  .edge-globe,
  .operations-flow li,
  .option-paths li,
  .client-paths li,
  .client-transport-options li,
  .protection-layers li,
  .technology-definitions article,
  .benchmark-case {
    border: 1px solid ButtonText;
  }

  .route-connector,
  .route-line i,
  .protocol-matrix > i,
  .edge-route-caption i,
  .contact-route-lines path {
    background: ButtonText;
    stroke: ButtonText;
  }
}
/* Contact and legal pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 5vw, 4rem) 0;
  background:
    radial-gradient(circle at 76% 35%, rgba(36, 104, 255, 0.2), transparent 28rem),
    linear-gradient(145deg, #04111a 0%, var(--site-night) 58%, #071c28 100%);
  color: var(--site-white);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(117, 202, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 202, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 94%);
  content: "";
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-context {
  margin: 0 0 1rem;
  color: #7eeefa;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 14ch;
  margin: 0;
  font-size: var(--site-page-title);
  letter-spacing: -0.04em;
  line-height: 1;
}

.page-hero p:not(.page-context):not(.legal-updated) {
  max-width: 48ch;
  margin: 1.2rem 0 0;
  color: #b8c8d2;
  font-size: 0.98rem;
  line-height: 1.64;
}

.contact-hero {
  min-height: 380px;
  display: flex;
  align-items: center;
}

.contact-hero-layout {
  display: grid;
  grid-template-columns: minmax(20rem, 0.78fr) minmax(36rem, 1.22fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.contact-route-map {
  overflow: hidden;
  border: 1px solid rgba(143, 190, 210, 0.26);
  border-radius: var(--site-radius);
  background: rgba(7, 27, 39, 0.9);
}

.contact-route-map-head {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.8rem;
  border-bottom: 1px solid rgba(143, 190, 210, 0.18);
}

.contact-route-map-head span {
  color: #7eeefa;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-route-map-head strong {
  color: #d9e7ed;
  font-size: 0.68rem;
  font-weight: 600;
}

.contact-route-labels,
.contact-route-diagram {
  display: grid;
  grid-template-columns: minmax(7.5rem, 0.72fr) minmax(10rem, 1.08fr) minmax(7.5rem, 0.78fr);
  column-gap: clamp(1.75rem, 3vw, 3.25rem);
}

.contact-route-labels {
  padding: 0.55rem 0.9rem;
  border-bottom: 1px solid rgba(143, 190, 210, 0.12);
  color: #8299a5;
  font-size: 0.56rem;
  font-weight: 650;
}

.contact-route-diagram {
  position: relative;
  min-height: 218px;
  align-items: center;
  padding: 0.75rem 0.9rem;
}

.contact-route-source,
.contact-route-requests,
.contact-route-owners {
  position: relative;
  z-index: 1;
}

.contact-route-source {
  padding: 0.8rem;
  border: 1px solid rgba(34, 217, 236, 0.45);
  border-radius: var(--site-control-radius);
  background: #0a2230;
}

.contact-route-source span,
.contact-route-source strong,
.contact-route-source small {
  display: block;
}

.contact-route-source span {
  margin-bottom: 0.6rem;
  color: var(--site-cyan);
  font-size: 0.56rem;
  font-weight: 700;
}

.contact-route-source strong {
  margin-bottom: 0.35rem;
  color: #f1f8fb;
  font-size: 0.74rem;
}

.contact-route-source small {
  color: #8fa6b1;
  font-size: 0.57rem;
  line-height: 1.42;
}

.contact-route-requests,
.contact-route-owners {
  display: grid;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-route-requests li,
.contact-route-owners li {
  display: flex;
  min-height: 2.4rem;
  align-items: center;
  padding: 0.48rem 0.58rem;
  border: 1px solid rgba(143, 190, 210, 0.18);
  border-radius: 6px;
  background: #0b2532;
  color: #c8d7dd;
  font-size: 0.61rem;
  line-height: 1.25;
}

.contact-route-owners li {
  gap: 0.5rem;
  background: rgba(10, 34, 48, 0.72);
  color: #f1f8fb;
}

.contact-route-owners i,
.executive-route-label i {
  width: 0.4rem;
  height: 0.4rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--site-green);
}

.contact-route-lines {
  position: absolute;
  z-index: 0;
  inset: 0.75rem 0.9rem;
  width: calc(100% - 1.8rem);
  height: calc(100% - 1.5rem);
  fill: none;
  pointer-events: none;
  stroke: rgba(34, 217, 236, 0.48);
  stroke-dasharray: 5 8;
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
  animation: contact-route-flow 5s linear infinite;
}

.executive-route {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--site-line);
  background: var(--site-surface-soft);
}

.executive-route-panel {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr) minmax(18rem, 0.72fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  padding: 1.2rem 1.4rem;
  border: 1px solid #153847;
  border-radius: var(--site-radius);
  background: var(--site-night-soft);
  color: var(--site-white);
}

.executive-route-label {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  color: #a7bbc4;
  font-size: 0.68rem;
  font-weight: 700;
}

.executive-route-copy h2 {
  margin-bottom: 0.4rem;
  color: #ffffff;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.1;
}

.executive-route-copy p {
  max-width: 62ch;
  margin: 0;
  color: #9eb2bc;
  font-size: 0.78rem;
}

.executive-route address {
  display: flex;
  min-width: 0;
  flex-direction: column;
  margin: 0;
  padding-left: clamp(1.25rem, 2.5vw, 2.25rem);
  border-left: 1px solid #31515e;
  font-style: normal;
}

.executive-route address strong {
  color: #ffffff;
  font-size: 1.12rem;
}

.executive-route address span {
  margin-top: 0.12rem;
  color: #91a8b3;
  font-size: 0.68rem;
}

.executive-route address a {
  margin-top: 0.55rem;
  color: #7eeefa;
  font-size: 0.82rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-directory {
  padding: var(--site-section-space) 0;
  background: var(--site-surface);
}

.contact-section-heading {
  display: grid;
  grid-template-columns: minmax(20rem, 1.1fr) minmax(18rem, 0.9fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.section-context {
  margin: 0 0 0.65rem;
  color: #1760db;
  font-size: 0.72rem;
  font-weight: 700;
}

.contact-section-heading h2,
.project-brief h2 {
  max-width: 21ch;
  margin-bottom: 0;
  font-size: var(--site-section-title);
  line-height: 1.08;
}

.contact-section-heading > p {
  max-width: 54ch;
  margin: 0;
  color: var(--site-ink-soft);
  font-size: 0.88rem;
}

.contact-ledger {
  border-top: 1px solid var(--site-line-strong);
}

.contact-row {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr) minmax(15rem, 0.55fr);
  gap: clamp(1.25rem, 3vw, 3rem);
  align-items: start;
  padding: clamp(1.35rem, 2.4vw, 1.85rem) clamp(0rem, 1.2vw, 0.9rem);
  border-bottom: 1px solid var(--site-line);
  transition: background-color 180ms var(--site-ease);
}

.contact-row:hover {
  background: var(--site-surface-soft);
}

.contact-code {
  padding-top: 0.2rem;
  color: #1760db;
  font-size: 0.68rem;
  font-weight: 700;
}

.contact-row h3 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.15;
}

.contact-row p {
  max-width: 60ch;
  margin: 0;
  color: var(--site-ink-soft);
  font-size: 0.84rem;
  line-height: 1.62;
}

.contact-link-group {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.contact-link {
  display: inline-flex;
  gap: 0.45rem;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--site-line-strong);
  color: #174fd6;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 180ms var(--site-ease), color 180ms var(--site-ease);
}

.contact-link:hover,
.contact-link:focus {
  border-color: var(--site-blue);
  color: var(--site-blue);
}

.project-brief {
  padding: var(--site-section-space) 0;
  border-top: 1px solid var(--site-line);
  background: var(--site-surface-soft);
}

.project-brief-layout {
  display: grid;
  grid-template-columns: minmax(20rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.project-brief-intro > p:not(.section-context):not(.project-brief-security) {
  max-width: 48ch;
  margin: 1rem 0 0;
  color: var(--site-ink-soft);
  font-size: 0.85rem;
}

.project-brief-security {
  display: grid;
  max-width: 47ch;
  grid-template-columns: 1.4rem minmax(0, 1fr);
  gap: 0.6rem;
  align-items: start;
  margin: 1.25rem 0 0;
  color: #314e61;
  font-size: 0.75rem;
}

.project-brief-security span {
  display: grid;
  width: 1.25rem;
  height: 1.25rem;
  place-items: center;
  border: 1px solid #7ca6c4;
  border-radius: 50%;
  color: #1760db;
  font-size: 0.66rem;
  font-weight: 700;
}

.brief-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--site-line-strong);
  list-style: none;
}

.brief-list li {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--site-line);
  color: var(--site-ink);
  font-size: 0.84rem;
  font-weight: 600;
}

.brief-list span {
  color: #1760db;
  font-size: 0.66rem;
  font-weight: 700;
}

@keyframes contact-route-flow {
  to {
    stroke-dashoffset: -52;
  }
}

.legal-hero {
  min-height: 300px;
  display: flex;
  align-items: center;
}

.legal-hero h1 {
  max-width: 19ch;
  font-size: var(--site-page-title);
}

.legal-hero-layout {
  display: grid;
  grid-template-columns: minmax(20rem, 1fr) minmax(22rem, 0.72fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: end;
}

.legal-document-meta {
  margin: 0;
  border-top: 1px solid rgba(143, 190, 210, 0.3);
  border-bottom: 1px solid rgba(143, 190, 210, 0.3);
}

.legal-document-meta div {
  display: grid;
  grid-template-columns: 6rem minmax(0, 1fr);
  gap: 1rem;
  padding: 0.55rem 0;
}

.legal-document-meta div + div {
  border-top: 1px solid rgba(143, 190, 210, 0.14);
}

.legal-document-meta dt,
.legal-document-meta dd {
  margin: 0;
  font-size: 0.68rem;
  line-height: 1.45;
}

.legal-document-meta dt {
  color: #7eeefa;
  font-weight: 700;
}

.legal-document-meta dd {
  color: #c4d3da;
}

.legal-page {
  padding: clamp(3.75rem, 6vw, 5.5rem) 0;
  background: var(--site-canvas);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(13rem, 15rem) minmax(0, var(--site-copy-width));
  gap: clamp(3.5rem, 8vw, 7rem);
  justify-content: center;
}

.legal-index {
  align-self: start;
  position: sticky;
  top: calc(var(--site-nav-height) + 1.5rem);
}

.legal-index h2 {
  margin-bottom: 0.8rem;
  color: var(--site-ink);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.legal-index ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--site-line);
  list-style: none;
  counter-reset: legal-index;
}

.legal-index li {
  counter-increment: legal-index;
  border-bottom: 1px solid var(--site-line);
}

.legal-index a {
  display: grid;
  grid-template-columns: 1.65rem minmax(0, 1fr);
  gap: 0.35rem;
  padding: 0.62rem 0;
  color: #50636f;
  font-size: 0.74rem;
  line-height: 1.4;
  text-decoration: none;
}

.legal-index a::before {
  color: #1760db;
  content: counter(legal-index, decimal-leading-zero);
  font-size: 0.67rem;
}

.legal-index a:hover,
.legal-index a:focus {
  color: var(--site-blue);
}

.legal-copy {
  min-width: 0;
  max-width: var(--site-copy-width);
}

.legal-copy section {
  padding: 0 0 clamp(2.4rem, 4vw, 3.25rem);
  scroll-margin-top: calc(var(--site-nav-height) + 2rem);
}

.legal-copy section + section {
  padding-top: clamp(2.4rem, 4vw, 3.25rem);
  border-top: 1px solid var(--site-line);
}

.legal-copy h2 {
  max-width: 28ch;
  margin-bottom: 1.2rem;
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  line-height: 1.14;
}

.legal-copy h3 {
  margin: 1.6rem 0 0.55rem;
  font-size: 1.08rem;
  letter-spacing: -0.015em;
}

.legal-copy p,
.legal-copy li {
  color: #344955;
  font-size: 0.95rem;
  line-height: 1.76;
}

.legal-copy p {
  margin: 0 0 1rem;
}

.legal-copy ul,
.legal-copy ol {
  margin: 1rem 0 1.4rem;
  padding-left: 1.4rem;
}

.legal-copy li + li {
  margin-top: 0.65rem;
}

.legal-copy a {
  color: #174fd6;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.legal-copy a:hover,
.legal-copy a:focus {
  color: #0b318f;
}

.legal-requirements {
  padding-left: 1.6rem;
}

.legal-contact-box {
  margin-top: 1.75rem;
  padding: 1.25rem;
  border: 1px solid #bed3e6;
  border-radius: var(--site-radius);
  background: #edf4ff;
}

.legal-contact-box h3 {
  margin-top: 0;
}

.legal-contact-box p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .contact-hero {
    min-height: 0;
  }

  .contact-hero-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-hero-copy {
    max-width: 42rem;
  }

  .executive-route-panel {
    grid-template-columns: 8rem minmax(0, 1fr);
  }

  .executive-route address {
    grid-column: 2;
    padding-top: 1rem;
    padding-left: 0;
    border-top: 1px solid #31515e;
    border-left: 0;
  }

  .contact-section-heading,
  .project-brief-layout {
    grid-template-columns: 1fr;
  }

  .contact-section-heading {
    gap: 1rem;
  }

  .project-brief-layout {
    gap: 2.5rem;
  }

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

  .legal-hero-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-hero-layout {
    gap: 2rem;
  }

  .legal-document-meta {
    max-width: 42rem;
  }

  .legal-layout {
    gap: 3rem;
  }

  .contact-row {
    grid-template-columns: 6rem minmax(0, 1fr);
  }

  .contact-row > .contact-link,
  .contact-link-group {
    grid-column: 2;
  }

  .legal-index {
    position: static;
  }

  .legal-index ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2rem;
  }
}

@media (max-width: 767.98px) {
  .page-hero {
    padding: 2.75rem 0 3rem;
  }

  .contact-hero-layout {
    gap: 2rem;
  }

  .contact-route-labels,
  .contact-route-diagram {
    grid-template-columns: minmax(0, 1fr) minmax(7rem, 0.78fr);
    column-gap: 0.65rem;
  }

  .contact-route-labels span:first-child {
    display: none;
  }

  .contact-route-source {
    grid-column: 1 / -1;
    margin-bottom: 0.35rem;
  }

  .contact-route-diagram {
    align-items: stretch;
  }

  .contact-route-lines {
    display: none;
  }

  .contact-route-map-head strong {
    display: none;
  }

  .executive-route-panel {
    grid-template-columns: 1fr;
    padding: 1.15rem;
  }

  .executive-route address {
    grid-column: 1;
  }

  .contact-section-heading {
    grid-template-columns: 1fr;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-row > .contact-link,
  .contact-link-group {
    grid-column: 1;
    margin-top: 0.5rem;
  }

  .project-brief-layout {
    gap: 2rem;
  }

  .legal-index ol {
    grid-template-columns: 1fr;
  }

  .legal-page {
    padding: 3rem 0;
  }

  .legal-layout {
    gap: 2.5rem;
  }

  .legal-document-meta div {
    grid-template-columns: 5.25rem minmax(0, 1fr);
  }

  .legal-copy h2 {
    font-size: clamp(1.45rem, 7vw, 1.75rem);
  }

  .legal-copy p,
  .legal-copy li {
    font-size: 0.94rem;
  }
}

@media print {
  .site-nav,
  .site-footer,
  .skip-link {
    display: none !important;
  }

  .site-main {
    padding-top: 0;
  }

  .page-hero {
    min-height: 0;
    padding: 0 0 2rem;
    background: #fff !important;
    color: #000 !important;
  }

  .page-hero::before {
    display: none;
  }

  .page-hero p,
  .legal-document-meta dt,
  .legal-document-meta dd {
    color: #000 !important;
  }

  .legal-hero-layout,
  .legal-layout {
    display: block;
  }

  .legal-document-meta {
    max-width: none;
    margin-top: 1.25rem;
    border-color: #777;
  }

  .legal-page {
    padding: 0;
    background: #fff;
  }

  .legal-index {
    position: static;
    margin-bottom: 2rem;
  }

  .legal-copy section {
    break-inside: auto;
  }

  .legal-copy p,
  .legal-copy li {
    orphans: 3;
    widows: 3;
  }

  .legal-copy h2,
  .legal-copy h3 {
    break-after: avoid-page;
  }
}
