:root {
  color-scheme: light;
  --ink: #0f172a;
  --text: #46556b;
  --muted: #718096;
  --line: #dfe7f1;
  --line-strong: #ced9e7;
  --blue: #087af5;
  --blue-deep: #0567d4;
  --blue-soft: #eef6ff;
  --surface: #f7faff;
  --white: #ffffff;
  --green: #22a96b;
  --navy: #0c162b;
  --max: 1344px;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(22, 48, 84, 0.12);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(8, 122, 245, 0.36);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--ink);
  transition: top 160ms ease;
}

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

span.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(18px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 48px));
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-size: 19px;
  font-weight: 760;
  letter-spacing: -0.03em;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  min-width: 0;
  font-size: 14px;
  font-weight: 650;
}

.primary-nav a {
  color: #2f3d52;
  transition: color 150ms ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--white);
}

.language-switcher a {
  min-width: 40px;
  padding: 8px 9px;
  border-radius: 999px;
  color: #536177;
  text-align: center;
  font-size: 13px;
  font-weight: 720;
}

.language-switcher a[aria-current="page"] {
  color: var(--white);
  background: var(--ink);
}

.nav-cta,
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 760;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.nav-cta {
  min-height: 46px;
  padding-inline: 20px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(8, 122, 245, 0.2);
}

.nav-cta:hover,
.button-primary:hover {
  transform: translateY(-1px);
  background: var(--blue-deep);
  box-shadow: 0 15px 34px rgba(8, 122, 245, 0.24);
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(8, 122, 245, 0.2);
}

.button-secondary {
  border-color: var(--line-strong);
  color: var(--blue-deep);
  background: var(--white);
}

.button-secondary:hover {
  border-color: #a9c9ee;
  background: var(--blue-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue-deep);
  font-weight: 740;
}

.text-link::after {
  content: "→";
}

.menu-button {
  display: none;
  min-width: 52px;
  min-height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 14px;
  font-weight: 720;
}

.language-suggestion {
  width: min(760px, calc(100% - 40px));
  margin: 12px auto 0;
  padding: 10px 12px 10px 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  border: 1px solid #cde2fb;
  border-radius: 14px;
  background: #f4f9ff;
  color: #29435f;
  font-size: 13px;
}

.language-suggestion[hidden] {
  display: none;
}

.language-suggestion p {
  margin: 0;
}

.language-suggestion a,
.language-suggestion button {
  padding: 8px 11px;
  border-radius: 9px;
  font: inherit;
  font-weight: 720;
}

.language-suggestion a {
  color: var(--white);
  background: var(--blue);
}

.language-suggestion button {
  border: 0;
  color: #536177;
  background: transparent;
  cursor: pointer;
}

.enterprise-hero,
.section,
.final-cta {
  scroll-margin-top: 88px;
}

.enterprise-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 24px 46px;
  background:
    radial-gradient(circle at 72% 18%, rgba(8, 122, 245, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.enterprise-hero::after {
  position: absolute;
  right: -160px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(8, 122, 245, 0.11);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(540px, 1.14fr);
  align-items: center;
  gap: 54px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.enterprise-hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(46px, 5.2vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero-copy {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--text);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.hero-boundary {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.hero-media {
  position: relative;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-media::before {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 9px;
  color: #40516a;
  background: rgba(255, 255, 255, 0.9);
  content: attr(data-demo-label);
  font-size: 11px;
  font-weight: 720;
  backdrop-filter: blur(12px);
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.hero-media figcaption {
  padding: 12px 6px 2px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.section {
  padding: 96px 24px;
}

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

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-head {
  max-width: 780px;
}

.section h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.section h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.section-lead {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.68;
}

.workflow-rail {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.workflow-step {
  min-height: 190px;
  padding: 24px 20px 28px;
  border-right: 1px solid var(--line);
}

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

.workflow-step small {
  color: var(--blue);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.1em;
}

.workflow-step h3 {
  margin-top: 38px;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.workflow-step p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.role-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  gap: 80px;
  align-items: start;
}

.role-copy {
  position: sticky;
  top: 116px;
}

.role-list {
  border-top: 1px solid var(--line-strong);
}

.role-row {
  display: grid;
  grid-template-columns: 58px minmax(150px, 0.55fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.role-index {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #b8d5f5;
  border-radius: 50%;
  color: var(--blue-deep);
  background: var(--blue-soft);
  font-size: 12px;
  font-weight: 800;
}

.role-row h3 {
  font-size: 22px;
}

.role-row p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
}

.capability-layout {
  margin-top: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 24px;
  align-items: start;
}

.capability-media {
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 54px rgba(22, 48, 84, 0.1);
}

.capability-media img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center top;
  border-radius: 14px;
}

.capability-list {
  padding: 10px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.capability-row {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.capability-row:last-child {
  border-bottom: 0;
}

.capability-row small {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.capability-row h3 {
  margin-top: 9px;
  font-size: 20px;
}

.capability-row p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.integration-rail {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.integration-rail article {
  min-height: 220px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.integration-rail article:last-child {
  border-right: 0;
}

.integration-status {
  display: inline-block;
  margin-bottom: 46px;
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.integration-rail h3 {
  font-size: 22px;
}

.integration-rail p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.boundary-note {
  max-width: 920px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.reliability-section {
  padding: 100px 24px;
  color: var(--white);
  background: var(--navy);
}

.reliability-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(600px, 1.2fr);
  gap: 78px;
  align-items: start;
}

.reliability-section .section-kicker {
  color: #75baff;
}

.reliability-section h2 {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.reliability-section .section-lead {
  color: #aebbd0;
}

.reliability-list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.reliability-row {
  display: grid;
  grid-template-columns: minmax(170px, 0.46fr) minmax(0, 1fr);
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.reliability-row strong {
  font-size: 17px;
}

.reliability-row span {
  color: #aebbd0;
  font-size: 14px;
  line-height: 1.65;
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  gap: 88px;
  align-items: start;
}

.scope-list {
  border-top: 1px solid var(--line-strong);
}

.scope-row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.scope-row strong {
  font-size: 16px;
}

.scope-row span {
  color: var(--text);
  font-size: 15px;
  line-height: 1.62;
}

.pilot-note {
  margin: 28px 0 0;
  padding: 18px 20px;
  border-left: 3px solid var(--blue);
  color: #34506d;
  background: var(--blue-soft);
  font-size: 14px;
  line-height: 1.65;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(560px, 1.22fr);
  gap: 84px;
  align-items: start;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 38px 24px 0;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 740;
}

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

.faq-list summary::after {
  position: absolute;
  top: 24px;
  right: 2px;
  color: var(--blue);
  content: "+";
  font-size: 20px;
  line-height: 1;
}

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

.faq-list details p {
  margin: -4px 40px 24px 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
}

.final-cta {
  padding: 90px 24px;
  text-align: center;
  color: var(--white);
  background: var(--navy);
}

.final-cta h2 {
  max-width: 880px;
  margin-inline: auto;
}

.final-cta p {
  max-width: 660px;
  margin: 20px auto 0;
  color: #aebbd0;
  font-size: 16px;
  line-height: 1.65;
}

.final-cta .hero-actions {
  justify-content: center;
}

.final-cta .button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.subpage-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 24px 64px;
  background:
    radial-gradient(circle at 80% 12%, rgba(8, 122, 245, 0.1), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.subpage-hero::after {
  position: absolute;
  right: -220px;
  bottom: -300px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(8, 122, 245, 0.1);
  border-radius: 50%;
  content: "";
}

.subpage-hero-grid {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: 72px;
  align-items: center;
}

.subpage-breadcrumb {
  margin: 0 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
}

.subpage-breadcrumb a:hover {
  color: var(--blue);
}

.subpage-breadcrumb span[aria-hidden="true"] {
  color: #aab6c6;
}

.subpage-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(48px, 5.6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.subpage-copy {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--text);
  font-size: 19px;
  line-height: 1.62;
}

.subpage-boundary {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.hero-panel {
  position: relative;
  min-height: 420px;
  padding: 26px;
  border: 1px solid #263550;
  border-radius: 26px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 30px 90px rgba(22, 48, 84, 0.2);
}

.hero-panel-light {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-panel-light .panel-topline {
  border-color: var(--line);
}

.panel-topline strong {
  font-size: 14px;
}

.panel-label {
  color: #8fc8ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-panel-light .panel-label {
  color: var(--blue-deep);
}

.sample-metrics {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
}

.sample-metric {
  padding: 16px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.sample-metric:last-child {
  border-right: 0;
}

.sample-metric small {
  display: block;
  color: #98a8bf;
  font-size: 9px;
  line-height: 1.3;
}

.sample-metric strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
  letter-spacing: -0.04em;
}

.ops-route-list {
  margin-top: 22px;
}

.ops-route {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ops-route:last-child {
  border-bottom: 0;
}

.route-code {
  display: inline-flex;
  justify-content: center;
  padding: 7px 8px;
  border-radius: 8px;
  color: #77b9ff;
  background: rgba(8, 122, 245, 0.17);
  font-size: 11px;
  font-weight: 820;
}

.route-progress strong,
.route-progress small {
  display: block;
}

.route-progress strong {
  font-size: 13px;
}

.route-progress small {
  margin-top: 5px;
  color: #93a4bd;
  font-size: 10px;
}

.route-state {
  color: #8edeb7;
  font-size: 10px;
  font-weight: 760;
}

.workflow-rail-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.permission-table-wrap,
.readiness-table-wrap {
  margin-top: 46px;
  overflow-x: auto;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.permission-table,
.readiness-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
}

.permission-table th,
.permission-table td,
.readiness-table th,
.readiness-table td {
  padding: 20px 18px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.permission-table tr:last-child td,
.readiness-table tr:last-child td {
  border-bottom: 0;
}

.permission-table th,
.readiness-table th {
  color: var(--muted);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.permission-table td,
.readiness-table td {
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}

.permission-table td:first-child,
.readiness-table td:first-child {
  color: var(--ink);
  font-weight: 760;
}

.status-word {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--blue-deep);
  background: var(--blue-soft);
  font-size: 10px;
  font-weight: 780;
  white-space: nowrap;
}

.status-word-required {
  color: #8a5200;
  background: #fff4d9;
}

.status-word-boundary {
  color: #7f335f;
  background: #fff0f8;
}

.event-flow {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.event-node {
  position: relative;
  min-height: 190px;
  padding: 26px 24px;
  border-right: 1px solid var(--line);
}

.event-node:last-child {
  border-right: 0;
}

.event-node::before {
  display: block;
  width: 9px;
  height: 9px;
  margin-bottom: 44px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 1px #96c6fa;
  content: "";
}

.event-node h3 {
  font-size: 18px;
}

.event-node p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.58;
}

.code-window {
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: #081122;
}

.code-window pre {
  margin: 0;
  padding: 22px;
  overflow-x: auto;
  color: #b9d8f8;
  font: 12px/1.72 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  white-space: pre-wrap;
}

.code-key {
  color: #72b6ff;
}

.code-value {
  color: #9ce5bd;
}

.contract-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.contract-row {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 20px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contract-row:nth-child(even) {
  border-right: 0;
}

.contract-row:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.contract-row strong {
  font-size: 15px;
}

.contract-row span {
  color: var(--text);
  font-size: 14px;
  line-height: 1.58;
}

.path-list {
  margin-top: 46px;
  border-top: 1px solid var(--line-strong);
}

.path-row {
  display: grid;
  grid-template-columns: 44px minmax(190px, 0.45fr) minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.path-number {
  color: var(--blue);
  font-size: 11px;
  font-weight: 820;
}

.path-row h3 {
  font-size: 21px;
}

.path-row p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.62;
}

.architecture-stack {
  margin-top: 22px;
}

.architecture-layer {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.architecture-layer:last-child {
  border-bottom: 0;
}

.architecture-layer b {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(117, 186, 255, 0.42);
  border-radius: 50%;
  color: #8fc8ff;
  font-size: 10px;
}

.architecture-layer strong {
  font-size: 13px;
}

.architecture-layer span {
  color: #91a2bb;
  font-size: 10px;
}

.security-principles {
  margin-top: 48px;
  border-top: 1px solid var(--line-strong);
}

.security-principle {
  display: grid;
  grid-template-columns: 42px minmax(190px, 0.38fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.security-principle small {
  color: var(--blue);
  font-size: 11px;
  font-weight: 820;
}

.security-principle h3 {
  font-size: 21px;
}

.security-principle p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.65;
}

.recovery-model {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.recovery-path {
  padding: 30px;
  border-right: 1px solid var(--line);
}

.recovery-path:last-child {
  border-right: 0;
}

.recovery-path small {
  color: var(--blue-deep);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recovery-path h3 {
  margin-top: 38px;
  font-size: 25px;
}

.recovery-path p {
  margin: 12px 0 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.65;
}

.restore-runbook {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.restore-step {
  min-height: 220px;
  padding: 26px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

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

.restore-step small {
  color: #75baff;
  font-size: 10px;
  font-weight: 820;
}

.restore-step h3 {
  margin-top: 52px;
  color: var(--white);
  font-size: 18px;
}

.restore-step p {
  margin: 10px 0 0;
  color: #aebbd0;
  font-size: 13px;
  line-height: 1.62;
}

.geo-ladder {
  margin-top: 22px;
}

.geo-level {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.geo-level:last-child {
  border-bottom: 0;
}

.geo-level small {
  color: #75baff;
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.geo-level strong {
  font-size: 14px;
}

.directory-shell {
  margin-top: 46px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 22px 60px rgba(22, 48, 84, 0.08);
}

.directory-toolbar {
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(180px, 0.34fr) minmax(170px, 0.3fr) auto;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.directory-toolbar input,
.directory-toolbar select,
.pilot-form input,
.pilot-form select,
.pilot-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--ink);
  background: var(--white);
  font: 600 14px/1.4 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

.directory-toolbar input:focus,
.directory-toolbar select:focus,
.pilot-form input:focus,
.pilot-form select:focus,
.pilot-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(8, 122, 245, 0.14);
}

.directory-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  padding: 0 14px;
  border-radius: 12px;
  color: var(--blue-deep);
  background: var(--blue-soft);
  font-size: 12px;
  font-weight: 780;
}

.network-map-explorer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  min-height: 560px;
  border-bottom: 1px solid var(--line);
}

.network-map-stage {
  position: relative;
  min-width: 0;
  min-height: 560px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: #eaf2f9;
}

.network-map-stage__heading {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 5;
  max-width: min(340px, calc(100% - 116px));
  padding: 11px 14px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 34px rgba(22, 48, 84, 0.13);
  backdrop-filter: blur(14px);
}

.network-map-stage__heading span {
  color: var(--blue-deep);
  font-size: 9px;
  font-weight: 840;
  letter-spacing: 0.09em;
}

.network-map-stage__heading strong {
  font-size: 13px;
  line-height: 1.25;
}

.network-overview-map,
.network-overview-map .maplibregl-map {
  position: absolute;
  inset: 0;
}

.network-overview-map {
  font: inherit;
}

.network-overview-map__loading {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 30px;
  color: #5d6e83;
  font-size: 13px;
  text-align: center;
}

.network-overview-map.is-error .network-overview-map__loading {
  z-index: 4;
  background: rgba(234, 242, 249, 0.96);
}

.network-overview-map .maplibregl-ctrl-group {
  overflow: hidden;
  border: 1px solid rgba(185, 202, 221, 0.9);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(22, 48, 84, 0.12);
}

.network-overview-map .maplibregl-ctrl-attrib {
  border-radius: 7px;
  font-size: 9px;
}

.network-map-marker-anchor {
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
}

.network-map-marker {
  min-width: 48px;
  min-height: 44px;
  padding: 7px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 2px solid #ffffff;
  border-radius: 14px;
  color: #ffffff;
  background: #087af5;
  box-shadow: 0 8px 22px rgba(7, 55, 115, 0.28);
  font: 800 11px/1.05 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  white-space: nowrap;
  cursor: pointer;
  transition: background 150ms ease, box-shadow 150ms ease;
}

.network-map-marker:hover,
.network-map-marker:focus-visible {
  background: #005ec7;
  box-shadow: 0 10px 28px rgba(7, 55, 115, 0.38);
}

.network-map-marker:focus-visible {
  outline: 3px solid rgba(8, 122, 245, 0.3);
  outline-offset: 3px;
}

.network-map-marker--metro {
  min-width: 72px;
  min-height: 46px;
  background: #07172c;
}

.network-map-marker--metro:hover,
.network-map-marker--metro:focus-visible {
  background: #173d69;
}

.network-map-marker__count {
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #07172c;
  background: #ffffff;
  font-size: 10px;
}

.network-map-marker--area.is-selected {
  color: #07172c;
  background: #c8f2d6;
  border-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(45, 193, 105, 0.24), 0 10px 26px rgba(7, 55, 115, 0.3);
}

.network-map-legend {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 5;
  padding: 9px 11px;
  display: grid;
  gap: 3px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(22, 48, 84, 0.12);
  backdrop-filter: blur(14px);
}

.network-map-legend span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 760;
}

.network-map-legend i {
  width: 9px;
  height: 9px;
  border: 2px solid #087af5;
  border-radius: 3px;
  background: rgba(8, 122, 245, 0.17);
}

.network-map-legend small {
  color: var(--muted);
  font-size: 9px;
}

.network-map-reset {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 6;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(185, 202, 221, 0.9);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(22, 48, 84, 0.12);
  font: 760 11px/1 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  cursor: pointer;
  backdrop-filter: blur(14px);
}

.network-map-reset[hidden] {
  display: none;
}

.network-map-selection {
  min-width: 0;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

.network-map-selection .section-kicker {
  margin: 0;
}

.network-map-selection h3 {
  margin-top: 13px;
  font-size: 28px;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.network-map-selection > p:not(.section-kicker) {
  margin: 14px 0 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}

.network-selection-boundary {
  margin-top: auto;
  padding: 14px;
  border: 1px solid #d9e6f4;
  border-radius: 14px;
  color: #52667e;
  background: #f7fbff;
  font-size: 11px;
  line-height: 1.55;
}

.network-selection-options {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.network-selection-option {
  min-height: 38px;
  padding: 0 11px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink);
  background: #ffffff;
  font: 720 11px/1 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  cursor: pointer;
}

.network-selection-option:hover,
.network-selection-option:focus-visible {
  border-color: #8dc1f8;
  color: var(--blue-deep);
  background: var(--blue-soft);
}

.network-selection-option:focus-visible {
  outline: 3px solid rgba(8, 122, 245, 0.2);
  outline-offset: 2px;
}

.network-selection-status {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.network-selection-status span {
  min-height: 27px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #b9dcff;
  border-radius: 999px;
  color: var(--blue-deep);
  background: var(--blue-soft);
  font-size: 9px;
  font-weight: 820;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.network-selection-meta {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.network-selection-metrics {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.network-selection-metrics span {
  min-width: 0;
  padding: 14px 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.network-selection-metrics small,
.network-selection-metrics strong {
  display: block;
}

.network-selection-metrics small {
  color: var(--muted);
  font-size: 9px;
}

.network-selection-metrics strong {
  margin-top: 5px;
  font-size: 18px;
}

.network-selection-actions {
  margin-top: 20px;
  display: grid;
  gap: 9px;
}

.network-selection-actions .button {
  width: 100%;
  min-height: 46px;
}

.network-selection-actions .button-secondary {
  color: var(--blue-deep);
}

.directory-list-head {
  padding: 18px 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  color: var(--ink);
  background: #f8fbff;
}

.directory-list-head strong {
  font-size: 14px;
}

.directory-list-head span {
  color: var(--muted);
  font-size: 11px;
}

.directory-empty {
  min-height: 310px;
  padding: 56px 28px;
  display: grid;
  place-items: center;
  text-align: center;
}

.directory-empty-inner {
  max-width: 620px;
}

.directory-empty-mark {
  width: 54px;
  height: 54px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border: 1px solid #b8d5f5;
  border-radius: 50%;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 22px;
  font-weight: 760;
}

.directory-empty h3 {
  font-size: 26px;
}

.directory-empty p {
  margin: 12px 0 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
}

.network-capacity-rail {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.network-capacity-rail > div {
  min-height: 132px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.network-capacity-rail > div:last-child {
  border-right: 0;
}

.network-capacity-rail small {
  color: var(--blue-deep);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.09em;
}

.network-capacity-rail strong {
  margin-top: 8px;
  font-size: 32px;
  letter-spacing: -0.055em;
}

.network-capacity-rail span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.directory-grid {
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  background: #f8fbff;
}

.directory-card {
  min-width: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 8px 26px rgba(22, 48, 84, 0.045);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.directory-card:hover {
  transform: translateY(-2px);
  border-color: #abd0fa;
  box-shadow: 0 16px 36px rgba(22, 48, 84, 0.1);
}

.directory-card:focus-visible {
  outline: 3px solid rgba(8, 122, 245, 0.24);
  outline-offset: 2px;
}

.directory-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}

.directory-card__identity {
  min-width: 0;
}

.directory-card__identity small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.directory-card__identity h3 {
  margin-top: 7px;
  overflow-wrap: anywhere;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.directory-card__identity p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.directory-card__status,
.demo-status {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 9px;
  border: 1px solid #b9dcff;
  border-radius: 999px;
  color: var(--blue-deep);
  background: var(--blue-soft);
  font-size: 9px;
  font-weight: 820;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.directory-card__metrics {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.directory-card__metrics span {
  min-width: 0;
  padding: 14px 8px 14px 0;
}

.directory-card__metrics small,
.directory-card__metrics strong {
  display: block;
}

.directory-card__metrics small {
  color: var(--muted);
  font-size: 9px;
}

.directory-card__metrics strong {
  margin-top: 5px;
  font-size: 16px;
  letter-spacing: -0.03em;
}

.directory-card__footer {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 760;
}

.directory-card__footer span:last-child {
  font-size: 17px;
}

body.network-sheet-open {
  overflow: hidden;
}

.network-demo-sheet[hidden] {
  display: none;
}

.network-demo-sheet {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(720px, 1080px);
}

.network-demo-sheet__scrim {
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(7, 17, 34, 0.5);
  backdrop-filter: blur(5px);
  cursor: pointer;
}

.network-demo-sheet__panel {
  min-width: 0;
  height: 100dvh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  color: var(--ink);
  background: var(--white);
  box-shadow: -30px 0 90px rgba(7, 22, 46, 0.24);
}

.network-demo-sheet__header {
  min-width: 0;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.network-demo-sheet__header h2 {
  margin: 9px 0 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.network-demo-sheet__header p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.network-demo-sheet__close {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font: 720 13px/1 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  cursor: pointer;
}

.network-demo-sheet__body {
  min-width: 0;
  overflow: auto;
  padding: 22px 26px 34px;
  overscroll-behavior: contain;
}

.network-demo-map {
  position: relative;
  height: min(44vh, 440px);
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #eaf2f9;
}

.network-demo-map__loading {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  color: #5d6e83;
  font-size: 13px;
  text-align: center;
  padding: 24px;
}

.network-demo-map.is-error .network-demo-map__loading {
  z-index: 4;
  color: #4f6279;
  background: rgba(234, 242, 249, 0.94);
}

.network-demo-map .maplibregl-map {
  position: absolute;
  inset: 0;
  z-index: 2;
  font: inherit;
}

.network-demo-map .maplibregl-ctrl-group {
  overflow: hidden;
  border: 1px solid rgba(185, 202, 221, 0.9);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(22, 48, 84, 0.12);
}

.network-demo-map .maplibregl-ctrl-attrib {
  border-radius: 7px;
  font-size: 9px;
}

.network-map-popup {
  display: grid;
  gap: 4px;
}

.network-map-popup strong {
  font-size: 13px;
}

.network-map-popup span {
  color: #5d6e83;
  font-size: 11px;
}

.network-demo-metrics {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.network-demo-metrics > div {
  min-width: 0;
  padding: 16px;
  border-right: 1px solid var(--line);
}

.network-demo-metrics > div:last-child {
  border-right: 0;
}

.network-demo-metrics small,
.network-demo-metrics strong {
  display: block;
}

.network-demo-metrics small {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.3;
}

.network-demo-metrics strong {
  margin-top: 7px;
  font-size: 21px;
  letter-spacing: -0.04em;
}

.network-demo-section {
  margin-top: 26px;
  border-top: 1px solid var(--line-strong);
}

.network-demo-section__head {
  padding: 18px 0 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}

.network-demo-section__head small {
  color: var(--blue-deep);
  font-size: 9px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.network-demo-section__head h3 {
  margin-top: 7px;
  font-size: 20px;
  letter-spacing: -0.035em;
}

.network-demo-section__head > span {
  color: var(--muted);
  font-size: 11px;
}

.network-driver-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.network-driver-row {
  min-width: 0;
  padding: 13px 14px;
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.network-driver-row:nth-child(even) {
  border-right: 0;
}

.network-driver-row:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.network-driver-row__color {
  width: 9px;
  height: 34px;
  border-radius: 999px;
}

.network-driver-row strong,
.network-driver-row small {
  display: block;
}

.network-driver-row strong {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.network-driver-row small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}

.network-driver-row > span:last-child {
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 760;
  white-space: nowrap;
}

.network-package-table-wrap {
  overflow-x: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.network-package-table {
  width: 100%;
  min-width: 840px;
  border-collapse: collapse;
  text-align: left;
}

.network-package-table th,
.network-package-table td {
  padding: 12px 13px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.network-package-table td strong,
.network-package-table td small {
  display: block;
}

.network-package-table td small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 560;
}

.network-package-table tr:last-child td {
  border-bottom: 0;
}

.network-package-table th {
  color: var(--muted);
  font-size: 9px;
  font-weight: 820;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.network-package-table td {
  color: var(--text);
  font-size: 11px;
  line-height: 1.45;
}

.network-package-table td:first-child,
.network-package-table td:last-child {
  color: var(--ink);
  font-weight: 720;
  white-space: nowrap;
}

.network-demo-disclosure {
  margin: 20px 0 0;
  padding: 14px 16px;
  border-left: 3px solid var(--blue);
  color: #4f6279;
  background: var(--blue-soft);
  font-size: 11px;
  line-height: 1.65;
}

.network-demo-sheet__footer {
  padding: 16px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
}

.network-demo-sheet__footer strong,
.network-demo-sheet__footer span {
  display: block;
}

.network-demo-sheet__footer strong {
  font-size: 14px;
}

.network-demo-sheet__footer span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}

.network-demo-sheet__footer .button {
  flex: 0 0 auto;
}

.listing-schema {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.listing-field {
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.listing-field:nth-child(3n) {
  border-right: 0;
}

.listing-field:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.listing-field small {
  color: var(--blue);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.listing-field h3 {
  margin-top: 28px;
  font-size: 18px;
}

.listing-field p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.pilot-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(560px, 1.26fr);
  gap: 76px;
  align-items: start;
}

.pilot-sticky {
  position: sticky;
  top: 116px;
}

.pilot-checklist {
  margin-top: 34px;
  border-top: 1px solid var(--line-strong);
}

.pilot-check {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.pilot-check b {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-deep);
  background: var(--blue-soft);
  font-size: 11px;
}

.pilot-check span {
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}

.pilot-form {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(22, 48, 84, 0.1);
}

.pilot-form h2 {
  font-size: 34px;
  letter-spacing: -0.045em;
}

.pilot-form > p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label,
.form-label {
  color: #344258;
  font-size: 12px;
  font-weight: 760;
}

.pilot-form textarea {
  min-height: 132px;
  resize: vertical;
}

.form-consent {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--text);
  font-size: 12px;
  line-height: 1.55;
}

.form-consent input {
  width: 18px;
  min-height: 18px;
  margin: 1px 0 0;
  padding: 0;
}

.form-actions {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.form-actions .button {
  border: 0;
  cursor: pointer;
}

.form-status {
  margin: 18px 0 0;
  padding: 13px 15px;
  border-radius: 12px;
  color: #25523d;
  background: #eaf8f0;
  font-size: 12px;
  line-height: 1.55;
}

.form-status[hidden] {
  display: none;
}

.process-timeline {
  margin-top: 46px;
  border-top: 1px solid var(--line-strong);
}

.process-stage {
  display: grid;
  grid-template-columns: 46px minmax(190px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.process-stage small {
  color: var(--blue);
  font-size: 11px;
  font-weight: 820;
}

.process-stage h3 {
  font-size: 21px;
}

.process-stage p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.65;
}

.site-footer {
  padding: 54px 24px 26px;
  color: #c7d2e4;
  background: #091226;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid,
.footer-bottom {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(560px, 1.2fr);
  gap: 80px;
}

.site-footer .brand {
  color: var(--white);
}

.footer-brand p {
  max-width: 320px;
  margin: 18px 0 0;
  color: #7f8ca4;
  font-size: 13px;
  line-height: 1.65;
}

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

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links a {
  color: #98a7bd;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #6f7d94;
  font-size: 11px;
  line-height: 1.55;
}

body[data-page-language="zh-Hans"] .enterprise-hero h1,
body[data-page-language="zh-Hans"] .subpage-hero h1,
body[data-page-language="zh-Hans"] .section h2,
body[data-page-language="zh-Hans"] .final-cta h2 {
  letter-spacing: -0.045em;
}

body[data-page-language="zh-Hans"] .enterprise-hero h1 {
  font-size: clamp(50px, 4.1vw, 64px);
  line-height: 1.02;
}

body[data-page-language="zh-Hans"] .subpage-hero h1 {
  font-size: clamp(48px, 4.7vw, 66px);
  line-height: 1.04;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

body[data-page-language="zh-Hans"] .hero-copy,
body[data-page-language="zh-Hans"] .section-lead {
  letter-spacing: 0.005em;
}

@media (max-width: 1120px) {
  .primary-nav {
    gap: 17px;
    font-size: 13px;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
    gap: 34px;
  }

  .subpage-hero-grid {
    gap: 44px;
  }

  .workflow-step {
    padding-inline: 14px;
  }

  .role-layout,
  .reliability-grid,
  .founder-layout,
  .faq-layout,
  .pilot-layout {
    gap: 52px;
  }

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

  .network-map-explorer {
    grid-template-columns: minmax(0, 1fr) 310px;
  }

  .network-demo-sheet {
    grid-template-columns: minmax(0, 1fr) minmax(680px, 88vw);
  }
}

@media (max-width: 900px) {
  .nav-shell {
    width: min(100% - 32px, var(--max));
    min-height: 64px;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .header-actions {
    justify-self: end;
  }

  .menu-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 13px 12px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .enterprise-hero {
    padding-top: 48px;
  }

  .subpage-hero {
    padding-top: 52px;
  }

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

  .enterprise-hero h1 {
    max-width: 760px;
  }

  .hero-media {
    margin-top: 8px;
  }

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

  .workflow-step:nth-child(3) {
    border-right: 0;
  }

  .workflow-step:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .role-layout,
  .reliability-grid,
  .founder-layout,
  .faq-layout,
  .pilot-layout {
    grid-template-columns: 1fr;
  }

  .role-copy {
    position: static;
  }

  .pilot-sticky {
    position: static;
  }

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

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

  .event-node:nth-child(2),
  .restore-step:nth-child(2) {
    border-right: 0;
  }

  .event-node:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .restore-step:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .directory-toolbar {
    grid-template-columns: minmax(0, 1fr) minmax(170px, 0.38fr);
  }

  .network-map-explorer {
    grid-template-columns: 1fr;
  }

  .network-map-stage {
    min-height: 520px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .network-map-selection {
    min-height: 0;
  }

  .network-selection-boundary {
    margin-top: 22px;
  }

  .directory-count {
    grid-column: 1 / -1;
    min-height: 44px;
  }

  .network-demo-sheet {
    grid-template-columns: 1fr;
  }

  .network-demo-sheet__scrim {
    display: none;
  }

  .network-demo-sheet__panel {
    width: 100%;
  }

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

  .network-demo-metrics > div:nth-child(3) {
    border-right: 0;
  }

  .network-demo-metrics > div:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

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

  .capability-media img {
    min-height: 0;
  }

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

  .integration-rail article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .integration-rail article:last-child {
    border-bottom: 0;
  }

  .integration-status {
    margin-bottom: 24px;
  }

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

@media (max-width: 640px) {
  .nav-shell {
    width: calc(100% - 28px);
  }

  .brand {
    gap: 8px;
    font-size: 18px;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .language-switcher a {
    min-width: 37px;
    padding: 7px 8px;
  }

  .menu-button {
    min-width: 50px;
    padding-inline: 10px;
  }

  .language-suggestion {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .language-suggestion button {
    grid-column: 1 / -1;
  }

  .enterprise-hero {
    padding: 42px 20px 34px;
  }

  .subpage-hero {
    padding: 44px 20px 42px;
  }

  .enterprise-hero h1 {
    font-size: clamp(43px, 13.3vw, 58px);
    line-height: 0.99;
  }

  .subpage-hero h1 {
    font-size: clamp(41px, 12.6vw, 54px);
    line-height: 0.99;
  }

  body[data-page-language="zh-Hans"] .enterprise-hero h1 {
    font-size: clamp(34px, 10vw, 40px);
    line-height: 1.04;
  }

  body[data-page-language="zh-Hans"] .subpage-hero h1 {
    font-size: clamp(35px, 10.3vw, 43px);
    line-height: 1.06;
  }

  .subpage-copy {
    margin-top: 22px;
    font-size: 17px;
  }

  .hero-panel {
    min-height: auto;
    padding: 20px;
    border-radius: 20px;
  }

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

  .sample-metric:nth-child(2) {
    border-right: 0;
  }

  .sample-metric:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .ops-route {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .route-state {
    grid-column: 2;
  }

  .hero-copy {
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.6;
  }

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

  .button {
    width: 100%;
  }

  .hero-media {
    padding: 7px;
    border-radius: 18px;
  }

  .hero-media img {
    border-radius: 12px;
  }

  .hero-media::before {
    top: 16px;
    right: 16px;
  }

  .section,
  .reliability-section,
  .final-cta {
    padding: 72px 20px;
  }

  .section h2,
  .reliability-section h2,
  .final-cta h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  body[data-page-language="zh-Hans"] .section h2,
  body[data-page-language="zh-Hans"] .reliability-section h2,
  body[data-page-language="zh-Hans"] .final-cta h2 {
    font-size: clamp(34px, 10vw, 45px);
  }

  .section-lead {
    font-size: 16px;
  }

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

  .workflow-rail-five {
    grid-template-columns: 1fr;
  }

  .workflow-step {
    min-height: auto;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .workflow-step:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .workflow-step h3 {
    margin-top: 16px;
    font-size: 20px;
  }

  .role-row {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
  }

  .role-row p {
    grid-column: 2;
  }

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

  .capability-row {
    padding-block: 20px;
  }

  .integration-rail article {
    padding-inline: 0;
  }

  .event-flow,
  .contract-grid,
  .recovery-model,
  .restore-runbook,
  .listing-schema,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .event-node,
  .event-node:nth-child(2),
  .restore-step,
  .restore-step:nth-child(2),
  .recovery-path,
  .listing-field,
  .listing-field:nth-child(3n),
  .contract-row,
  .contract-row:nth-child(even) {
    border-right: 0;
  }

  .event-node,
  .restore-step,
  .recovery-path,
  .listing-field,
  .contract-row,
  .contract-row:nth-last-child(-n + 2),
  .listing-field:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .restore-step {
    border-bottom-color: rgba(255, 255, 255, 0.14);
  }

  .event-node:last-child,
  .restore-step:last-child,
  .recovery-path:last-child,
  .listing-field:last-child,
  .contract-row:last-child {
    border-bottom: 0;
  }

  .contract-row,
  .path-row,
  .security-principle,
  .process-stage {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .directory-toolbar {
    grid-template-columns: 1fr;
  }

  .directory-count {
    grid-column: auto;
  }

  .network-map-stage {
    min-height: 430px;
  }

  .network-map-stage__heading {
    top: 76px;
    left: 12px;
    max-width: calc(100% - 112px);
    padding: 9px 11px;
  }

  .network-map-stage__heading strong {
    font-size: 11px;
  }

  .network-map-reset {
    top: 76px;
    right: 12px;
    min-height: 38px;
    padding-inline: 11px;
  }

  .network-map-marker--metro {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    border-radius: 50%;
    font-size: 9px;
  }

  .network-map-marker--metro .network-map-marker__count {
    display: none;
  }

  .network-map-legend {
    right: 12px;
    bottom: 12px;
  }

  .network-map-selection {
    padding: 24px 20px;
  }

  .network-map-selection h3 {
    font-size: 25px;
  }

  .directory-list-head {
    padding: 16px 12px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

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

  .network-capacity-rail > div:nth-child(2) {
    border-right: 0;
  }

  .network-capacity-rail > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .directory-grid {
    padding: 12px;
    grid-template-columns: 1fr;
  }

  .directory-card {
    padding: 18px;
  }

  .network-demo-sheet__header {
    padding: 17px 18px;
  }

  .network-demo-sheet__header h2 {
    font-size: 28px;
  }

  .network-demo-sheet__close {
    min-height: 38px;
    padding-inline: 12px;
  }

  .network-demo-sheet__body {
    padding: 16px 18px 26px;
  }

  .network-demo-map {
    height: 310px;
    min-height: 310px;
    border-radius: 16px;
  }

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

  .network-demo-metrics > div,
  .network-demo-metrics > div:nth-child(3) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .network-demo-metrics > div:nth-child(even) {
    border-right: 0;
  }

  .network-demo-metrics > div:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }

  .network-driver-list {
    grid-template-columns: 1fr;
  }

  .network-driver-row,
  .network-driver-row:nth-child(even),
  .network-driver-row:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .network-driver-row:last-child {
    border-bottom: 0;
  }

  .network-demo-sheet__footer {
    padding: 13px 18px calc(13px + env(safe-area-inset-bottom));
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .network-demo-sheet__footer .button {
    width: 100%;
  }

  .pilot-form {
    padding: 22px;
    border-radius: 19px;
  }

  .pilot-form h2 {
    font-size: 30px;
  }

  .form-field-full {
    grid-column: auto;
  }

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

  .reliability-row,
  .scope-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .faq-list summary {
    padding-block: 21px;
  }

  .faq-list summary::after {
    top: 21px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
