:root {
  --page: #f7f9fc;
  --ink: #102033;
  --muted: #5d6d82;
  --panel: #ffffff;
  --line: #d9e2ee;
  --nav: rgba(255, 255, 255, 0.92);
  --blue: #1476a8;
  --blue-dark: #0c4e74;
  --green: #168f61;
  --amber: #d77b19;
  --red: #c94942;
  --shadow: 0 22px 52px rgba(18, 37, 62, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, "Avenir Next", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f9fd 34%, #edf3f8 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, rgba(20, 118, 168, 0.12), transparent 36%),
    linear-gradient(245deg, rgba(215, 123, 25, 0.1), transparent 38%);
}

#fx-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.22;
}

a {
  color: inherit;
}

.topbar,
main,
footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 10px;
  margin-top: 10px;
  z-index: 10;
  min-height: 76px;
  padding: 8px 12px;
  border: 1px solid rgba(217, 226, 238, 0.86);
  border-radius: 12px;
  background: var(--nav);
  box-shadow: 0 12px 34px rgba(18, 37, 62, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 92px;
  display: block;
}

.topbar nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.topbar nav a,
.nav-dropdown > button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #40516a;
  font-size: 12px;
  font-weight: 760;
  border-radius: 8px;
  padding: 0 9px;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px;
}

.nav-dropdown > button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.nav-dropdown > button::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 7px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

.topbar nav a:hover,
.nav-dropdown > button:hover,
.nav-dropdown:focus-within > button {
  background: #edf4fa;
  color: #102033;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  z-index: 20;
  width: 218px;
  border: 1px solid rgba(217, 226, 238, 0.96);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(18, 37, 62, 0.16);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu a {
  min-height: 34px;
  width: 100%;
  justify-content: flex-start;
  font-size: 13px;
}

.topbar nav a.pill,
.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 14px 30px rgba(20, 118, 168, 0.22);
}

main {
  padding: 34px 0 34px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 34px;
  align-items: center;
  min-height: calc(100vh - 112px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-lede {
  margin: 22px 0 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.58;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 8px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 830;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-secondary {
  color: #17304c;
  background: #ffffff;
  border-color: var(--line);
}

.proof-row {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
}

.proof-row div,
.value-list article,
.feature-grid article,
.outcome-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
}

.proof-row div {
  padding: 13px;
}

.proof-row strong {
  display: block;
  font-size: 19px;
  line-height: 1.1;
}

.proof-row span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.hero-visual {
  min-width: 0;
  border: 1px solid rgba(120, 143, 171, 0.32);
  border-radius: 18px;
  background: #dfe8f1;
  padding: 10px;
  box-shadow: var(--shadow);
}

.browser-bar {
  height: 28px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 8px;
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #9fafbf;
}

.browser-bar span:nth-child(1) {
  background: var(--red);
}

.browser-bar span:nth-child(2) {
  background: var(--amber);
}

.browser-bar span:nth-child(3) {
  background: var(--green);
}

.dashboard {
  border: 1px solid #c9d6e5;
  border-radius: 10px;
  background: #f8fafc;
  overflow: hidden;
}

.dash-header {
  min-height: 84px;
  padding: 18px;
  border-bottom: 1px solid #dce5ef;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  background: #ffffff;
}

.dash-header small {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.dash-header h2 {
  margin: 5px 0 0;
  font-size: 24px;
  line-height: 1.1;
}

.dash-header strong {
  border-radius: 8px;
  color: #0c563c;
  background: #dcf6e8;
  border: 1px solid #b9e8cd;
  padding: 7px 10px;
  font-size: 12px;
}

.pipeline {
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  border-bottom: 1px solid #dce5ef;
}

.system {
  min-height: 104px;
  display: grid;
  align-content: center;
  gap: 7px;
  border: 1px solid #d4dfeb;
  border-top: 4px solid var(--blue);
  border-radius: 8px;
  padding: 14px;
  background: #ffffff;
  position: relative;
}

.system::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #9eb2c8;
}

.system:last-child::after {
  display: none;
}

.system.control {
  border-top-color: var(--amber);
}

.system.target {
  border-top-color: var(--green);
}

.system span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.system strong {
  font-size: 16px;
  line-height: 1.2;
}

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

.dash-grid article {
  min-height: 128px;
  border: 1px solid #dce5ef;
  border-radius: 8px;
  background: #ffffff;
  padding: 15px;
}

.dash-grid h3 {
  margin: 10px 0 0;
  font-size: 16px;
}

.dash-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.status {
  display: block;
  width: 34px;
  height: 6px;
  border-radius: 999px;
  background: var(--green);
}

.status.blue {
  background: var(--blue);
}

.status.amber {
  background: var(--amber);
}

.status.red {
  background: var(--red);
}

section {
  margin-top: 74px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: start;
}

.section-head h2 {
  margin: 0;
  max-width: 800px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
}

.section-head.compact {
  max-width: 820px;
}

.section-head p:not(.eyebrow) {
  margin: 14px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.value-list,
.feature-grid,
.outcome-grid,
.faq-grid,
.deployment-grid,
.roadmap-grid {
  display: grid;
  gap: 12px;
}

.pipeline-section,
.ops-section,
.deployment-section,
.roadmap-section,
.faq-section {
  display: grid;
  gap: 18px;
}

.pipeline-visual,
.ops-dashboard {
  border: 1px solid #cbd8e7;
  border-radius: 12px;
  background: #f8fbfe;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.pipeline-topline,
.ops-toolbar {
  min-height: 54px;
  padding: 14px 18px;
  border-bottom: 1px solid #dce5ef;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #40516a;
  font-size: 12px;
  font-weight: 820;
}

.pipeline-topline span,
.ops-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pipeline-topline i,
.ops-live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(22, 143, 97, 0.12);
}

.pipeline-topline strong {
  border: 1px solid #c8e5d8;
  border-radius: 999px;
  color: #0c563c;
  background: #e8f8ef;
  padding: 7px 10px;
  white-space: nowrap;
}

.pipeline-visual svg {
  display: block;
  width: 100%;
  min-height: 340px;
  background:
    linear-gradient(180deg, rgba(20, 118, 168, 0.04), rgba(22, 143, 97, 0.04)),
    #f8fbfe;
}

.pipeline-grid path {
  fill: none;
  stroke: #b9c8da;
  stroke-width: 0.8;
  opacity: 0.38;
}

.lane-label {
  fill: #667992;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.flow-path {
  fill: none;
  stroke: url("#flowLine");
  stroke-width: 3;
  stroke-linecap: round;
}

.flow-path.muted {
  stroke-width: 2;
  opacity: 0.76;
}

.flow-packets circle {
  fill: var(--blue);
  filter: drop-shadow(0 0 8px rgba(20, 118, 168, 0.55));
}

.svg-node rect,
.stage-node rect {
  fill: #ffffff;
  stroke: #cbd8e7;
  stroke-width: 1.1;
}

.source-node rect {
  stroke-width: 1.4;
  stroke: rgba(20, 118, 168, 0.52);
}

.target-node rect {
  stroke-width: 1.4;
  stroke: rgba(22, 143, 97, 0.52);
}

.svg-node text,
.stage-node text {
  fill: #20344d;
  font-size: 14px;
  font-weight: 780;
}

.svg-node text:nth-of-type(2),
.stage-node text:nth-of-type(2) {
  fill: #687991;
  font-size: 12px;
  font-weight: 720;
}

.control-node circle:first-child {
  fill: rgba(20, 118, 168, 0.09);
  stroke: rgba(20, 118, 168, 0.16);
}

.control-node circle:nth-child(2) {
  fill: url("#controlCore");
  stroke: #ffffff;
  stroke-width: 2;
  filter: drop-shadow(0 18px 24px rgba(20, 118, 168, 0.24));
}

.control-node text {
  fill: #ffffff;
  font-size: 18px;
  font-weight: 900;
}

[data-mockup] {
  min-width: 0;
}

.product-frame {
  border: 1px solid rgba(120, 143, 171, 0.32);
  border-radius: 18px;
  background: #dfe8f1;
  padding: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-frame .browser-bar {
  height: 28px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 8px;
}

.browser-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #9fafbf;
}

.browser-dot:nth-child(1) {
  background: var(--red);
}

.browser-dot:nth-child(2) {
  background: var(--amber);
}

.browser-dot:nth-child(3) {
  background: var(--green);
}

.app {
  border: 1px solid #c9d6e5;
  border-radius: 10px;
  background: #f8fafc;
  overflow: hidden;
}

.app-main {
  margin: 0;
}

.app-top {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid #dce5ef;
  background: #ffffff;
}

.app-top h2,
.app-top p,
.cdc-control h3,
.cdc-control p,
.cdc-fleet h3,
.cdc-fleet p,
.cdc-detail h3,
.cdc-detail p,
.cdc-events h3 {
  margin: 0;
}

.app-top h2 {
  font-size: 26px;
  line-height: 1.05;
}

.app-top p {
  margin-top: 4px;
  color: var(--muted);
}

.toolbar,
.fleet-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tool-btn {
  min-height: 32px;
  border: 1px solid #cdd9e8;
  border-radius: 8px;
  background: #ffffff;
  color: #20344d;
  padding: 0 10px;
  font: inherit;
  font-size: 12px;
  font-weight: 820;
}

.tool-btn.fill {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}

.mock-body {
  padding: 14px;
  background: #eef4fa;
}

.cdc-screen {
  min-height: 720px;
  display: grid;
  grid-template-columns: 152px minmax(0, 1fr);
  border: 1px solid #d6e2ef;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
}

.project-rail {
  background: #f4f8fc;
  border-right: 1px solid #dce5ef;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rail-mark {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--blue-dark);
}

.rail-mark span {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--amber));
}

.rail-item {
  min-height: 34px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  color: #52647a;
  padding: 0 9px;
  font-size: 12px;
  font-weight: 800;
}

.rail-item.active {
  color: #ffffff;
  background: var(--blue);
}

.cdc-workbench {
  min-width: 0;
  padding: 14px;
  display: grid;
  gap: 12px;
}

.project-topbar,
.workspace-tabs,
.connection-control,
.cdc-fleet,
.cdc-detail,
.cdc-events {
  min-width: 0;
  border: 1px solid #dce5ef;
  border-radius: 8px;
  background: #ffffff;
}

.project-topbar {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
}

.project-topbar strong,
.project-topbar span {
  display: block;
}

.project-topbar span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.workspace-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 8px;
}

.workspace-tabs span {
  flex: 0 0 auto;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  color: #52647a;
  background: #f4f8fc;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 820;
}

.workspace-tabs span.active {
  color: #ffffff;
  background: var(--blue);
}

.connection-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
}

.mini-eyebrow {
  color: var(--amber);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.cdc-control h3 {
  margin-top: 6px;
  font-size: 22px;
}

.cdc-control p:not(.mini-eyebrow) {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.badge {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  border: 1px solid #b9e8cd;
  border-radius: 999px;
  color: #0c563c;
  background: #dcf6e8;
  padding: 0 8px;
  font-size: 11px;
  font-weight: 820;
  white-space: nowrap;
}

.badge.blue {
  color: var(--blue-dark);
  background: #e6f2f9;
  border-color: #bddbec;
}

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

.connection-stats article {
  border: 1px solid #dce5ef;
  border-radius: 8px;
  background: #ffffff;
  padding: 14px;
}

.connection-stats strong,
.connection-stats span {
  display: block;
}

.connection-stats strong {
  color: var(--blue-dark);
  font-size: 26px;
  line-height: 1;
}

.connection-stats span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.cdc-fleet,
.cdc-detail,
.cdc-events {
  padding: 14px;
}

.cdc-fleet > header,
.cdc-detail > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.cdc-fleet h3,
.cdc-detail h3,
.cdc-events h3 {
  margin-top: 4px;
  font-size: 19px;
}

.fleet-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.fleet-pills span {
  border: 1px solid #dce5ef;
  border-radius: 999px;
  background: #f8fafc;
  color: #52647a;
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 780;
}

.cdc-fleet-row {
  display: grid;
  grid-template-columns: 12px minmax(190px, 1.4fr) minmax(76px, 0.55fr) minmax(70px, 0.45fr) minmax(70px, 0.45fr) minmax(78px, 0.5fr) auto auto auto auto;
  align-items: center;
  gap: 9px;
  border: 1px solid #dce5ef;
  border-radius: 8px;
  background: #f8fafc;
  padding: 10px;
}

.cdc-fleet-row + .cdc-fleet-row {
  margin-top: 8px;
}

.cdc-fleet-row.selected {
  border-color: rgba(20, 118, 168, 0.42);
  background: #eef7fc;
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #9fafbf;
}

.pulse.live {
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(22, 143, 97, 0.12);
}

.cdc-fleet-row strong,
.cdc-fleet-row small {
  display: block;
}

.cdc-fleet-row strong {
  font-size: 13px;
  line-height: 1.2;
}

.cdc-fleet-row small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.fleet-bar {
  height: 8px;
  border-radius: 999px;
  background: #dce5ef;
  overflow: hidden;
}

.fleet-bar span {
  display: block;
  width: 82%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.polling {
  color: var(--green);
  font-weight: 820;
}

.cdc-warning {
  display: flex;
  gap: 10px;
  border: 1px solid #f0cf9f;
  border-radius: 8px;
  background: #fff4e6;
  padding: 10px;
  color: #7b3f00;
}

.cdc-warning strong {
  flex: 0 0 auto;
}

.cdc-detail-grid,
.cdc-signal-grid {
  display: grid;
  gap: 10px;
}

.cdc-detail-grid {
  margin-top: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cdc-detail-grid article,
.cdc-signal-grid article {
  border: 1px solid #dce5ef;
  border-radius: 8px;
  background: #f8fafc;
  padding: 12px;
}

.cdc-detail-grid h4 {
  margin: 0 0 8px;
  font-size: 14px;
}

.cdc-detail-grid p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.setup-bar {
  height: 8px;
  border-radius: 999px;
  background: #dce5ef;
  overflow: hidden;
}

.setup-bar.wide {
  margin: 8px 0;
}

.setup-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.workload-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 8px;
  align-items: center;
}

.workload-row + .workload-row {
  margin-top: 8px;
}

.workload-row strong,
.workload-row span {
  display: block;
  font-size: 11px;
}

.workload-row span {
  color: var(--muted);
}

.cdc-signal-grid {
  margin-top: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-icon {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #ffffff;
  background: var(--blue);
  font-size: 12px;
  font-weight: 850;
}

.cdc-signal-grid strong,
.cdc-signal-grid small {
  display: block;
}

.cdc-signal-grid strong {
  margin-top: 9px;
  font-size: 13px;
}

.cdc-signal-grid small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.table-wrap {
  margin-top: 12px;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
}

.table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  font-size: 12px;
}

.table th,
.table td {
  border-bottom: 1px solid #dce5ef;
  padding: 9px 8px;
  text-align: left;
  white-space: nowrap;
}

.table th {
  color: #52647a;
  background: #f4f8fc;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.deployment-card,
.road-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  padding: 18px;
  box-shadow: 0 10px 24px rgba(18, 37, 62, 0.06);
}

.pattern-label,
.road-card span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border-radius: 999px;
  padding: 0 9px;
  color: var(--blue-dark);
  background: #e8f3fa;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.deployment-card h3,
.road-card h3 {
  margin: 16px 0 0;
  font-size: 20px;
}

.deployment-card p,
.road-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.mini-diagram,
.hub-diagram {
  margin-top: 18px;
  min-height: 104px;
  border: 1px solid #dce5ef;
  border-radius: 8px;
  background: #f8fafc;
  padding: 14px;
}

.mini-diagram {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
}

.mini-diagram.target-heavy {
  grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1.65fr);
}

.mini-diagram span,
.mini-diagram strong,
.hub-diagram span,
.hub-diagram strong {
  border: 1px solid #d4dfeb;
  border-radius: 8px;
  background: #ffffff;
  padding: 12px 10px;
  text-align: center;
  color: #20344d;
  font-size: 12px;
  font-weight: 840;
}

.mini-diagram strong,
.hub-diagram strong {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-color: transparent;
}

.mini-diagram b {
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.hub-diagram {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.hub-diagram > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.ops-toolbar span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ops-toolbar strong {
  display: block;
  margin-top: 4px;
  font-size: 16px;
  color: var(--ink);
}

.ops-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: #dce5ef;
}

.ops-kpis article {
  min-height: 128px;
  padding: 18px;
  background: #ffffff;
}

.ops-kpis span,
.ops-kpis small {
  display: block;
  color: var(--muted);
}

.ops-kpis span {
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ops-kpis strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
  color: var(--blue-dark);
}

.ops-kpis small {
  margin-top: 8px;
  font-size: 13px;
}

.ops-panels {
  padding: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.95fr);
  gap: 14px;
}

.ops-panel {
  border: 1px solid #dce5ef;
  border-radius: 8px;
  background: #ffffff;
  padding: 16px;
}

.ops-panel.wide {
  grid-row: span 2;
}

.cdc-dashboard .ops-panels {
  align-items: stretch;
}

.cdc-fleet-panel {
  grid-column: 1 / 2;
  grid-row: span 2;
}

.cdc-selected-panel {
  grid-column: 2 / 3;
}

.ops-panel header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.ops-panel h3 {
  margin: 0;
  font-size: 18px;
}

.ops-panel header span,
.pill-ok {
  color: var(--muted);
  font-size: 12px;
  font-weight: 820;
}

.pill-ok {
  color: #0c563c;
  border: 1px solid #b9e8cd;
  border-radius: 999px;
  background: #dcf6e8;
  padding: 6px 9px;
}

.ops-path {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr) 42px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}

.ops-path div {
  min-height: 92px;
  border: 1px solid #d4dfeb;
  border-radius: 8px;
  background: #f8fafc;
  padding: 14px;
  display: grid;
  align-content: center;
  gap: 7px;
}

.ops-path strong,
.ops-path span {
  display: block;
}

.ops-path strong {
  font-size: 16px;
  line-height: 1.2;
}

.ops-path span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ops-path b {
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  position: relative;
}

.ops-path b::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -4px;
  border-left: 8px solid var(--green);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.ops-events {
  height: 138px;
  margin-top: 18px;
  border: 1px solid #dce5ef;
  border-radius: 8px;
  background:
    linear-gradient(180deg, transparent 0 24%, rgba(185, 200, 218, 0.36) 25%, transparent 26% 49%, rgba(185, 200, 218, 0.36) 50%, transparent 51% 74%, rgba(185, 200, 218, 0.36) 75%, transparent 76%),
    #fbfdff;
  padding: 14px;
  display: flex;
  align-items: end;
  gap: 9px;
}

.ops-events span {
  flex: 1;
  min-width: 8px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--blue), var(--green));
  opacity: 0.84;
}

.cdc-stream-rows {
  display: grid;
  gap: 10px;
}

.cdc-stream-row {
  min-height: 82px;
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr) 54px 42px minmax(92px, auto);
  align-items: center;
  gap: 10px;
  border: 1px solid #dce5ef;
  border-radius: 8px;
  background: #f8fafc;
  padding: 12px;
}

.cdc-stream-row.selected {
  border-color: rgba(20, 118, 168, 0.46);
  background: #eef7fc;
}

.stream-led {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(22, 143, 97, 0.12);
}

.stream-led.warn {
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(215, 123, 25, 0.12);
}

.cdc-stream-row strong,
.cdc-stream-row small,
.cdc-stream-row b,
.cdc-stream-row em {
  display: block;
}

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

.cdc-stream-row small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.cdc-stream-row b {
  color: var(--blue-dark);
  font-size: 20px;
  line-height: 1;
}

.cdc-stream-row em {
  justify-self: end;
  border: 1px solid #c8e5d8;
  border-radius: 999px;
  color: #0c563c;
  background: #e8f8ef;
  padding: 6px 8px;
  font-size: 11px;
  font-style: normal;
  font-weight: 820;
  white-space: nowrap;
}

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

.cdc-spotlight-grid div {
  border: 1px solid #dce5ef;
  border-radius: 8px;
  background: #f8fafc;
  padding: 10px;
}

.cdc-spotlight-grid span,
.cdc-spotlight-grid strong {
  display: block;
}

.cdc-spotlight-grid span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.cdc-spotlight-grid strong {
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.2;
}

.ops-list,
.runbook-steps {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ops-list li,
.runbook-steps div {
  border: 1px solid #dce5ef;
  border-radius: 8px;
  background: #f8fafc;
  padding: 10px;
}

.ops-list strong,
.ops-list span {
  display: block;
}

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

.ops-list span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.runbook-steps div {
  color: #40516a;
  font-size: 13px;
  font-weight: 760;
}

.runbook-steps .done {
  color: #0c563c;
  background: #e8f8ef;
  border-color: #b9e8cd;
}

.runbook-steps .active {
  color: #7b3f00;
  background: #fff4e6;
  border-color: #f0cf9f;
}

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

.road-card {
  min-height: 260px;
  border-top: 4px solid var(--blue);
}

.road-card.now {
  border-top-color: var(--green);
}

.road-card.next {
  border-top-color: var(--amber);
}

.value-list article,
.feature-grid article,
.outcome-grid article {
  padding: 18px;
  box-shadow: 0 10px 24px rgba(18, 37, 62, 0.06);
}

.value-list h3,
.feature-grid h3 {
  margin: 0;
  font-size: 18px;
}

.value-list p,
.feature-grid p {
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.timeline {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.timeline li {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 16px;
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 28px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--blue);
  font-size: 12px;
  font-weight: 850;
}

.timeline h3 {
  margin: 18px 0 0;
  font-size: 20px;
}

.timeline p {
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.feature-grid {
  margin-top: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid article {
  min-height: 166px;
  border-top: 4px solid var(--blue);
}

.feature-grid article:nth-child(2),
.feature-grid article:nth-child(5) {
  border-top-color: var(--green);
}

.feature-grid article:nth-child(3),
.feature-grid article:nth-child(6) {
  border-top-color: var(--amber);
}

.outcomes {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 30px;
  align-items: center;
  border: 1px solid #cfdbe9;
  border-radius: 12px;
  background:
    linear-gradient(120deg, rgba(20, 118, 168, 0.1), transparent 45%),
    #ffffff;
  padding: 28px;
}

.outcomes h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
}

.outcomes p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

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

.outcome-grid strong {
  display: block;
  font-size: 17px;
}

.outcome-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

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

.faq-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  padding: 18px;
  box-shadow: 0 10px 24px rgba(18, 37, 62, 0.06);
}

.faq-grid h3 {
  margin: 0;
  font-size: 18px;
}

.faq-grid p {
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid #cfdbe9;
  border-radius: 12px;
  background:
    linear-gradient(120deg, rgba(20, 118, 168, 0.1), transparent 45%),
    #ffffff;
  padding: 28px;
}

.contact-section h2,
.contact-section p {
  margin: 0;
}

.contact-section h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.contact-section p:not(.eyebrow) {
  margin-top: 14px;
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.contact-section .btn {
  flex: 0 0 auto;
}

footer {
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

footer p {
  margin: 0;
  color: #35465c;
  font-weight: 760;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero,
  .split-section,
  .outcomes {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .timeline,
  .feature-grid,
  .outcome-grid,
  .faq-grid,
  .ops-kpis,
  .deployment-grid,
  .roadmap-grid,
  .connection-stats,
  .cdc-detail-grid,
  .cdc-signal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cdc-screen {
    grid-template-columns: 1fr;
  }

  .project-rail {
    border-right: 0;
    border-bottom: 1px solid #dce5ef;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .rail-mark {
    width: 100%;
  }

  .cdc-fleet-row {
    grid-template-columns: 12px minmax(220px, 1fr) repeat(3, minmax(74px, auto));
  }

  .cdc-fleet-row .fleet-bar,
  .cdc-fleet-row .badge,
  .cdc-fleet-row .polling,
  .cdc-fleet-row .fleet-actions {
    grid-column: 2 / -1;
  }

  .ops-panels {
    grid-template-columns: 1fr;
  }

  .ops-panel.wide,
  .cdc-fleet-panel,
  .cdc-selected-panel {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  .topbar,
  main,
  footer {
    width: min(1180px, calc(100% - 24px));
  }

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

  .topbar nav {
    justify-content: flex-start;
  }

  .nav-menu {
    left: 0;
    right: auto;
  }

  main {
    padding-top: 28px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .proof-row,
  .pipeline,
  .dash-grid,
  .timeline,
  .feature-grid,
  .outcome-grid,
  .faq-grid,
  .ops-kpis,
  .ops-path,
  .deployment-grid,
  .roadmap-grid,
  .mini-diagram,
  .mini-diagram.target-heavy,
  .cdc-spotlight-grid,
  .connection-stats,
  .cdc-detail-grid,
  .cdc-signal-grid {
    grid-template-columns: 1fr;
  }

  .system::after {
    display: none;
  }

  .pipeline-topline,
  .ops-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .pipeline-topline strong {
    white-space: normal;
  }

  .pipeline-visual {
    overflow-x: auto;
  }

  .pipeline-visual svg {
    width: 940px;
    min-height: 360px;
  }

  .ops-path b {
    width: 2px;
    height: 28px;
    justify-self: center;
  }

  .ops-path b::after {
    right: -4px;
    top: auto;
    bottom: -2px;
    border-top: 8px solid var(--green);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 0;
  }

  .mini-diagram b {
    width: 2px;
    height: 24px;
    justify-self: center;
  }

  .product-frame {
    margin-inline: -4px;
    padding: 8px;
  }

  .app-top,
  .project-topbar,
  .connection-control,
  .cdc-fleet > header,
  .cdc-detail > header,
  .cdc-warning {
    align-items: flex-start;
    flex-direction: column;
  }

  .mock-body,
  .cdc-workbench {
    padding: 10px;
  }

  .cdc-fleet-row {
    grid-template-columns: 12px minmax(0, 1fr);
  }

  .cdc-fleet-row > div,
  .cdc-fleet-row > small,
  .cdc-fleet-row > .badge,
  .cdc-fleet-row > .polling,
  .cdc-fleet-row > .fleet-actions,
  .cdc-fleet-row > .fleet-bar {
    grid-column: 2;
  }

  .cdc-stream-row {
    grid-template-columns: 14px minmax(0, 1fr);
  }

  .cdc-stream-row b,
  .cdc-stream-row > small,
  .cdc-stream-row em {
    grid-column: 2;
    justify-self: start;
  }

  .outcomes {
    padding: 18px;
  }

  .contact-section {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px;
  }
}
