:root {
  --navy-950: #030914;
  --navy-900: #06101f;
  --navy-850: #08172a;
  --navy-800: #0a1d35;
  --ink: #07111f;
  --muted: #5c6d82;
  --line: rgba(7, 42, 77, 0.12);
  --cyan: #13bdf4;
  --cyan-bright: #62ddff;
  --blue: #2477ff;
  --amber: #f4a340;
  --paper: #f5f8fc;
  --white: #ffffff;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shadow: 0 32px 80px rgba(3, 18, 36, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::selection {
  color: var(--navy-950);
  background: var(--cyan-bright);
}

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

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

img,
svg {
  display: block;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--navy-950);
  background: var(--white);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.section-dark {
  color: var(--white);
  background: var(--navy-950);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease;
}

.site-header.scrolled {
  background: rgba(3, 9, 20, 0.82);
  border-color: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 0;
  border-radius: 9px;
}

.brand-logo {
  width: 96px;
  height: auto;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #c2cede;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
}

.main-nav .nav-cta {
  padding: 10px 18px;
  color: var(--white);
  border: 1px solid rgba(98, 221, 255, 0.5);
  border-radius: 999px;
  background: rgba(19, 189, 244, 0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 1px;
  display: block;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  min-height: 810px;
  padding: 150px 0 82px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 35%, rgba(0, 132, 255, 0.19), transparent 32%),
    linear-gradient(135deg, #030813 0%, #061325 52%, #020811 100%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(82, 181, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 181, 255, 0.12) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to right, black, transparent 34%, transparent 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 560px;
  height: 560px;
  left: -340px;
  bottom: -250px;
  border-radius: 50%;
  border: 1px solid rgba(19, 189, 244, 0.24);
  box-shadow: 0 0 100px rgba(19, 189, 244, 0.05);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: 34px;
}

.hero-copy {
  position: relative;
  z-index: 5;
  padding-bottom: 30px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--cyan-bright);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.eyebrow span {
  width: 24px;
  height: 1px;
  display: inline-block;
  margin: 0 10px 4px 0;
  background: currentColor;
}

.eyebrow-dark {
  color: #0079b9;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  color: var(--white);
  font-size: clamp(4rem, 7vw, 6.7rem);
  line-height: 0.91;
  font-weight: 770;
  letter-spacing: -0.066em;
}

.hero h1 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.4px var(--cyan-bright);
  text-shadow: 0 0 34px rgba(19, 189, 244, 0.16);
}

.hero-lede {
  max-width: 580px;
  margin: 30px 0 0;
  color: #aab8ca;
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.main-nav a:focus-visible,
.brand:focus-visible {
  outline: 2px solid var(--cyan-bright);
  outline-offset: 4px;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: #03101c;
  background: linear-gradient(120deg, var(--cyan-bright), #18bbed 48%, #2b8bff);
  box-shadow: 0 12px 32px rgba(19, 189, 244, 0.23);
}

.button-primary:hover {
  box-shadow: 0 17px 42px rgba(19, 189, 244, 0.34);
}

.button-ghost {
  color: #d8e4f1;
  border-color: rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.04);
}

.button-ghost:hover {
  border-color: rgba(98, 221, 255, 0.45);
  background: rgba(19, 189, 244, 0.07);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0 0;
  padding: 0;
  color: #7f91a8;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.06em;
  list-style: none;
}

.hero-tags li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-tags li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.hero-visual {
  min-height: 535px;
  position: relative;
}

.hero-frame {
  width: 760px;
  margin: 0;
  position: absolute;
  top: 26px;
  left: -42px;
  overflow: hidden;
  border: 1px solid rgba(98, 221, 255, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: 0 46px 120px rgba(0, 0, 0, 0.55), 0 0 70px rgba(0, 132, 255, 0.11);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 9, 20, 0.44), transparent 34%, transparent 80%, rgba(3, 9, 20, 0.14));
  pointer-events: none;
}

.hero-frame img {
  width: 100%;
  height: auto;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(98, 221, 255, 0.13);
  border-radius: 50%;
}

.visual-orbit-one {
  width: 650px;
  height: 650px;
  top: -28px;
  left: 45px;
}

.visual-orbit-two {
  width: 480px;
  height: 480px;
  top: 55px;
  left: 126px;
  border-style: dashed;
}

.floating-status {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  color: var(--white);
  border: 1px solid rgba(115, 217, 255, 0.22);
  border-radius: 12px;
  background: rgba(5, 18, 34, 0.82);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.floating-status small,
.floating-status strong {
  display: block;
}

.floating-status small {
  color: #7f91a8;
  font-size: 11px;
}

.floating-status strong {
  font-size: 13px;
}

.status-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--cyan-bright);
  border-radius: 9px;
  background: rgba(19, 189, 244, 0.12);
}

.status-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.status-top {
  top: 4px;
  right: -70px;
}

.status-bottom {
  right: 2px;
  bottom: 6px;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #48e3a4;
  box-shadow: 0 0 0 5px rgba(72, 227, 164, 0.1), 0 0 15px rgba(72, 227, 164, 0.6);
}

.hero-ruler {
  width: min(1180px, calc(100% - 48px));
  height: 1px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: absolute;
  right: 0;
  bottom: 30px;
  left: 0;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.08);
}

.hero-ruler span {
  position: relative;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-ruler span::after {
  content: "";
  width: 3px;
  height: 3px;
  position: absolute;
  top: -1px;
  left: -2px;
  border-radius: 50%;
  background: var(--cyan);
}

.signal-strip {
  color: #bac8d8;
  background: #071426;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.signal-grid {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.signal-grid p {
  margin: 0;
  font-size: 13px;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signal-grid span {
  height: 1px;
  background: linear-gradient(90deg, rgba(19, 189, 244, 0.1), var(--cyan), rgba(19, 189, 244, 0.1));
}

.overview {
  padding: 120px 0 112px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 25%, rgba(19, 189, 244, 0.06), transparent 25%),
    var(--paper);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: end;
}

.section-heading h2,
.flow h2,
.deployment h2,
.cta-section h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.5vw, 4.6rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.overview-copy {
  padding: 0 0 6px 30px;
  border-left: 1px solid rgba(7, 42, 77, 0.18);
}

.overview-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
}

.command-panel {
  min-height: 520px;
  display: grid;
  grid-template-columns: 190px 1fr;
  margin-top: 76px;
  overflow: hidden;
  border: 1px solid rgba(7, 42, 77, 0.12);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.command-sidebar {
  display: flex;
  flex-direction: column;
  padding: 28px 16px 18px;
  color: #9ba9ba;
  background: #071426;
}

.command-brand {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin: 0 10px 34px;
  color: var(--cyan-bright);
  border: 1px solid rgba(98, 221, 255, 0.35);
  transform: rotate(45deg);
}

.command-brand span {
  font-weight: 800;
  transform: rotate(-45deg);
}

.command-sidebar nav {
  display: grid;
  gap: 8px;
}

.command-sidebar nav span {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 13px;
}

.command-sidebar nav span i {
  width: 7px;
  height: 7px;
  border: 1px solid currentColor;
  border-radius: 2px;
}

.command-sidebar nav span.active {
  color: var(--white);
  background: rgba(19, 189, 244, 0.11);
}

.command-sidebar nav span.active i {
  border-color: var(--cyan);
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(19, 189, 244, 0.65);
}

.sidebar-footer {
  margin-top: auto;
  padding: 14px 10px 0;
  color: #6f8197;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 11px;
}

.sidebar-footer span {
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-right: 5px;
  border-radius: 50%;
  background: #48e3a4;
}

.command-main {
  padding: 28px 30px 30px;
  background: #f3f7fb;
}

.command-topline,
.card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.command-topline small,
.command-topline strong,
.card-title small,
.card-title strong {
  display: block;
}

.command-topline small,
.card-title small {
  color: #7a8a9d;
  font-size: 11px;
}

.command-topline strong {
  font-size: 20px;
}

.date-chip,
.card-title b {
  padding: 8px 12px;
  color: #4d6077;
  border: 1px solid rgba(7, 42, 77, 0.1);
  border-radius: 8px;
  background: var(--white);
  font-size: 11px;
  font-weight: 700;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.metrics-row article {
  min-height: 128px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7, 42, 77, 0.09);
  border-radius: 13px;
  background: var(--white);
}

.metrics-row small,
.metrics-row strong,
.metrics-row em {
  display: block;
}

.metrics-row small {
  color: #76879b;
  font-size: 11px;
}

.metrics-row strong {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.25;
}

.metrics-row em {
  margin-top: 8px;
  color: #92a0b0;
  font-size: 10px;
  font-style: normal;
}

.metric-tone {
  width: 3px;
  height: 34px;
  position: absolute;
  top: 20px;
  right: 0;
  border-radius: 3px 0 0 3px;
}

.metric-tone.blue { background: var(--blue); }
.metric-tone.cyan { background: var(--cyan); }
.metric-tone.amber { background: var(--amber); }

.data-grid {
  display: grid;
  grid-template-columns: 1.52fr 0.8fr;
  gap: 14px;
  margin-top: 14px;
}

.chart-card,
.activity-card {
  min-height: 270px;
  padding: 20px;
  border: 1px solid rgba(7, 42, 77, 0.09);
  border-radius: 13px;
  background: var(--white);
}

.card-title strong {
  font-size: 14px;
}

.chart-area {
  height: 150px;
  margin-top: 22px;
  position: relative;
}

.chart-lines {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chart-lines i {
  height: 1px;
  background: rgba(7, 42, 77, 0.065);
}

.chart-area svg {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: visible;
}

.chart-area .area {
  fill: url(#line-fill);
}

.chart-area .line {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 2.2;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 5px rgba(19, 189, 244, 0.35));
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  color: #95a4b4;
  font-size: 9px;
}

.activity-card ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.activity-card li {
  display: grid;
  grid-template-columns: 31px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(7, 42, 77, 0.07);
}

.activity-card li:last-child {
  border-bottom: 0;
}

.activity-card p {
  margin: 0;
}

.activity-card strong,
.activity-card small {
  display: block;
  line-height: 1.35;
}

.activity-card strong {
  font-size: 11px;
}

.activity-card small,
.activity-card time {
  color: #91a0b0;
  font-size: 9px;
}

.activity-icon {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
}

.activity-icon.ok { color: #119668; background: rgba(72, 227, 164, 0.13); }
.activity-icon.clock { color: #168eb6; background: rgba(19, 189, 244, 0.12); }
.activity-icon.alert { color: #bd7218; background: rgba(244, 163, 64, 0.14); }

.interface-note {
  margin-top: 16px;
  color: #8392a4;
  font-size: 12px;
  text-align: right;
}

.product-showcase {
  margin-top: 76px;
}

.product-stage {
  overflow: hidden;
  border: 1px solid rgba(7, 42, 77, 0.14);
  border-radius: 24px;
  background: #071426;
  box-shadow: var(--shadow);
}

.product-window {
  padding: 13px;
  background: #06101f;
}

.product-window-bar {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  color: #74879e;
}

.product-window-bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #31465e;
}

.product-window-bar > span:first-child {
  background: #13bdf4;
}

.product-window-bar p {
  margin: 0 0 0 7px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.product-viewport {
  aspect-ratio: 2.3 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(98, 221, 255, 0.13);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 50%, rgba(19, 189, 244, 0.08), transparent 54%),
    #020914;
}

.product-viewport img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  transform: scale(1);
  transition: opacity 180ms ease, transform 260ms ease;
}

.product-viewport img.is-changing {
  opacity: 0.16;
  transform: scale(0.993);
}

.product-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  padding: 30px 34px 34px;
  color: var(--white);
}

.product-kicker {
  margin: 0 0 9px;
  color: var(--cyan-bright);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.product-summary h3 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.product-summary p:last-child {
  max-width: 760px;
  margin: 13px 0 0;
  color: #91a4ba;
  font-size: 15px;
}

.product-counter {
  color: #668098;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  white-space: nowrap;
}

.product-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.product-tab {
  min-height: 86px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
  color: #34475c;
  border: 1px solid rgba(7, 42, 77, 0.12);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.78);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.product-tab:hover {
  color: var(--ink);
  border-color: rgba(19, 189, 244, 0.34);
  background: var(--white);
  transform: translateY(-2px);
}

.product-tab:focus-visible {
  outline: 2px solid #087fb8;
  outline-offset: 3px;
}

.product-tab.active {
  color: var(--white);
  border-color: rgba(98, 221, 255, 0.35);
  background: linear-gradient(135deg, #071426, #0b2742);
  box-shadow: 0 14px 30px rgba(3, 18, 36, 0.15);
}

.product-tab-index {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #087ba9;
  border: 1px solid rgba(19, 189, 244, 0.25);
  border-radius: 50%;
  background: rgba(19, 189, 244, 0.06);
  font-size: 10px;
  font-weight: 800;
}

.product-tab.active .product-tab-index {
  color: var(--cyan-bright);
  border-color: rgba(98, 221, 255, 0.36);
  background: rgba(19, 189, 244, 0.1);
}

.product-tab strong,
.product-tab small {
  display: block;
}

.product-tab strong {
  font-size: 14px;
}

.product-tab small {
  margin-top: 3px;
  color: #7d8ea1;
  font-size: 12px;
}

.product-tab.active small {
  color: #8da4bc;
}

.capabilities {
  padding: 120px 0;
  background:
    linear-gradient(rgba(19, 189, 244, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 189, 244, 0.035) 1px, transparent 1px),
    #040c18;
  background-size: 90px 90px;
}

.section-heading-light {
  display: grid;
  grid-template-columns: 1fr 0.48fr;
  column-gap: 80px;
  align-items: end;
}

.section-heading-light .eyebrow {
  grid-column: 1 / -1;
}

.section-heading-light h2 {
  max-width: 760px;
}

.section-heading-light > p:last-child {
  margin: 0 0 6px;
  color: #8ea0b7;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.capability {
  min-height: 305px;
  padding: 32px;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.015);
  transition: background 220ms ease, transform 220ms ease;
}

.capability:hover {
  z-index: 2;
  background: rgba(19, 189, 244, 0.065);
  transform: translateY(-4px);
}

.capability-number {
  position: absolute;
  top: 27px;
  right: 28px;
  color: rgba(255, 255, 255, 0.24);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.capability > svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--cyan-bright);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.capability h3 {
  margin: 70px 0 12px;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.capability p {
  margin: 0;
  color: #8b9bb0;
  font-size: 14px;
  line-height: 1.7;
}

.flow {
  padding: 124px 0;
  background: var(--white);
}

.flow-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 110px;
}

.flow-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}

.flow-copy p:last-child {
  max-width: 480px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 17px;
}

.flow-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.flow-steps li {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 24px;
  padding: 33px 0 36px;
  border-top: 1px solid rgba(7, 42, 77, 0.13);
}

.flow-steps li:last-child {
  border-bottom: 1px solid rgba(7, 42, 77, 0.13);
}

.flow-steps li > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #087aa8;
  border: 1px solid rgba(19, 189, 244, 0.3);
  border-radius: 50%;
  background: rgba(19, 189, 244, 0.045);
  font-size: 12px;
  font-weight: 800;
}

.flow-steps h3 {
  margin: 0;
  font-size: 25px;
  letter-spacing: -0.03em;
}

.flow-steps p {
  margin: 7px 0 0;
  color: var(--muted);
}

.deployment {
  padding: 112px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 55%, rgba(0, 133, 255, 0.17), transparent 34%),
    #06101f;
}

.deployment-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 70px;
}

.deployment-copy p:last-child {
  max-width: 500px;
  margin-top: 26px;
  color: #91a2b7;
  font-size: 17px;
}

.deployment-visual {
  min-height: 390px;
  position: relative;
}

.deployment-visual::before {
  content: "";
  width: 420px;
  height: 420px;
  position: absolute;
  top: -20px;
  left: 90px;
  border: 1px solid rgba(98, 221, 255, 0.13);
  border-radius: 50%;
}

.deployment-visual svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.deployment-visual svg path {
  fill: none;
  stroke: rgba(98, 221, 255, 0.38);
  stroke-width: 1;
  stroke-dasharray: 5 6;
}

.node {
  width: 98px;
  height: 98px;
  display: grid;
  place-items: center;
  align-content: center;
  position: absolute;
  z-index: 2;
  color: var(--white);
  border: 1px solid rgba(98, 221, 255, 0.3);
  border-radius: 50%;
  background: rgba(5, 19, 36, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25), inset 0 0 25px rgba(19, 189, 244, 0.06);
}

.node span,
.node small {
  display: block;
}

.node span {
  color: var(--cyan-bright);
  font-size: 18px;
  font-weight: 800;
}

.node small {
  margin-top: 2px;
  color: #7f91a8;
  font-size: 10px;
}

.node-center {
  width: 126px;
  height: 126px;
  top: 127px;
  left: calc(50% - 63px);
  border-color: var(--cyan);
  box-shadow: 0 0 55px rgba(19, 189, 244, 0.16), inset 0 0 34px rgba(19, 189, 244, 0.1);
}

.node-one { top: 24px; left: 55px; }
.node-two { top: 26px; right: 8px; }
.node-three { right: 18px; bottom: 4px; }

.cta-section {
  padding: 96px 0;
  background: var(--paper);
}

.cta-shell {
  min-height: 360px;
  display: grid;
  grid-template-columns: 1fr 0.38fr;
  align-items: center;
  gap: 70px;
  padding: 64px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  border-radius: 26px;
  background:
    linear-gradient(112deg, rgba(3, 9, 20, 0.96), rgba(6, 28, 51, 0.93)),
    var(--navy-950);
  box-shadow: 0 34px 80px rgba(3, 18, 36, 0.23);
}

.cta-shell::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(98, 221, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98, 221, 255, 0.2) 1px, transparent 1px);
  background-size: 60px 60px;
}

.cta-shell h2 {
  max-width: 720px;
}

.cta-shell > div > p:last-child {
  max-width: 650px;
  margin: 24px 0 0;
  color: #9cafc5;
  font-size: 17px;
}

.cta-glow {
  width: 420px;
  height: 420px;
  position: absolute;
  z-index: -1;
  top: -190px;
  right: -130px;
  border: 1px solid rgba(98, 221, 255, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(19, 189, 244, 0.09), inset 0 0 100px rgba(19, 189, 244, 0.05);
}

.cta-actions .button {
  width: 100%;
}

.cta-actions p {
  margin: 13px 0 0;
  color: #71869f;
  font-size: 11px;
  text-align: center;
}

footer {
  padding: 38px 0;
  color: #788ba1;
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  font-size: 12px;
}

.footer-grid p {
  margin: 0;
}

.footer-grid p:last-child {
  text-align: right;
}

.footer-grid .brand-logo {
  width: 84px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .hero-frame {
    width: 680px;
  }

  .status-top {
    right: -14px;
  }

  .capability {
    padding: 28px;
  }
}

@media (max-width: 920px) {
  .container {
    width: min(100% - 36px, 740px);
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    right: 18px;
    left: 18px;
    display: none;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(4, 13, 25, 0.97);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(18px);
  }

  .main-nav.open {
    display: grid;
  }

  .main-nav .nav-cta {
    margin-top: 4px;
    text-align: center;
  }

  .nav-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(3px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-of-type(3) {
    transform: translateY(-3px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  .hero-grid,
  .overview-grid,
  .section-heading-light,
  .flow-grid,
  .deployment-grid,
  .cta-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 690px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 12vw, 6.1rem);
  }

  .hero-visual {
    min-height: 460px;
    margin-top: 10px;
  }

  .hero-frame {
    width: 112%;
    left: -6%;
  }

  .status-top {
    right: -4px;
  }

  .overview-grid,
  .deployment-grid {
    gap: 38px;
  }

  .overview-copy {
    padding: 0;
    border: 0;
  }

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

  .command-panel {
    grid-template-columns: 68px 1fr;
  }

  .command-sidebar {
    padding-inline: 10px;
  }

  .command-sidebar nav span {
    justify-content: center;
    padding: 0;
    font-size: 0;
  }

  .command-brand {
    margin-inline: auto;
  }

  .sidebar-footer {
    padding-inline: 0;
    font-size: 0;
    text-align: center;
  }

  .section-heading-light {
    gap: 22px;
  }

  .section-heading-light .eyebrow {
    grid-column: auto;
  }

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

  .flow-grid {
    gap: 50px;
  }

  .flow-copy {
    position: static;
  }

  .deployment-visual {
    width: min(100%, 640px);
    margin-inline: auto;
  }

  .cta-shell {
    gap: 42px;
  }

  .cta-actions {
    max-width: 320px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 560px);
  }

  .nav-shell {
    min-height: 70px;
  }

  .brand-logo {
    width: 76px;
  }

  .hero {
    padding: 118px 0 68px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 16.8vw, 5.15rem);
  }

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

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-tags {
    gap: 10px 18px;
  }

  .hero-visual {
    min-height: 330px;
    margin-top: 20px;
  }

  .hero-frame {
    width: 132%;
    top: 18px;
    left: -15%;
    border-radius: 18px;
  }

  .visual-orbit-one {
    width: 390px;
    height: 390px;
    left: -10px;
  }

  .visual-orbit-two {
    width: 300px;
    height: 300px;
    left: 38px;
  }

  .floating-status {
    display: none;
  }

  .signal-grid {
    min-height: 104px;
    grid-template-columns: 1fr;
    gap: 4px;
    padding-block: 22px;
    text-align: center;
  }

  .signal-grid span {
    width: 60px;
    margin-inline: auto;
  }

  .overview,
  .capabilities,
  .flow,
  .deployment {
    padding: 84px 0;
  }

  .section-heading h2,
  .flow h2,
  .deployment h2,
  .cta-section h2 {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
  }

  .product-showcase {
    margin-top: 52px;
  }

  .product-stage {
    border-radius: 17px;
  }

  .product-window {
    padding: 7px;
  }

  .product-window-bar {
    min-height: 31px;
    padding-inline: 7px;
  }

  .product-window-bar p {
    font-size: 11px;
  }

  .product-viewport {
    aspect-ratio: 1.82 / 1;
    border-radius: 10px;
  }

  .product-summary {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 21px 27px;
  }

  .product-counter {
    justify-self: start;
  }

  .product-tabs {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(242px, 78%);
    overflow-x: auto;
    padding: 2px 2px 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .product-tab {
    scroll-snap-align: start;
  }

  .interface-note {
    text-align: left;
  }

  .command-panel {
    min-height: 530px;
    grid-template-columns: 1fr;
    margin-top: 52px;
    border-radius: 17px;
  }

  .command-sidebar {
    display: none;
  }

  .command-main {
    padding: 20px 16px;
  }

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

  .metrics-row article {
    min-height: 105px;
  }

  .data-grid {
    grid-template-columns: 1fr;
  }

  .activity-card {
    display: none;
  }

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

  .capability {
    min-height: 260px;
  }

  .flow-steps li {
    grid-template-columns: 54px 1fr;
    gap: 16px;
  }

  .flow-steps li > span {
    width: 46px;
    height: 46px;
  }

  .deployment-visual {
    min-height: 335px;
    transform: scale(0.88);
    transform-origin: center;
  }

  .node-one { left: -5px; }
  .node-two { right: -5px; }
  .node-three { right: -12px; }

  .cta-section {
    padding: 62px 0;
  }

  .cta-shell {
    min-height: 0;
    padding: 42px 25px;
    border-radius: 18px;
  }

  .cta-actions,
  .cta-actions .button {
    max-width: none;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .footer-grid .brand {
    justify-content: center;
  }

  .footer-grid p:last-child {
    text-align: center;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Inner pages */

.main-nav a[aria-current="page"] {
  color: var(--white);
}

.main-nav a[aria-current="page"]:not(.nav-cta) {
  position: relative;
}

.main-nav a[aria-current="page"]:not(.nav-cta)::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  background: var(--cyan-bright);
  box-shadow: 0 0 10px rgba(98, 221, 255, 0.55);
}

.subpage-hero {
  min-height: 660px;
  padding: 170px 0 100px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 40%, rgba(0, 132, 255, 0.2), transparent 34%),
    linear-gradient(135deg, #030813 0%, #07182c 58%, #020811 100%);
}

.subpage-hero::before,
.contact-page::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(82, 181, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 181, 255, 0.12) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, black, transparent 38%, transparent 100%);
}

.subpage-hero.compact {
  min-height: 620px;
}

.subpage-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  align-items: center;
  gap: 62px;
}

.subpage-hero h1,
.contact-copy h1 {
  max-width: 670px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3.4rem, 5.5vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.subpage-hero-grid > div > p:not(.eyebrow),
.contact-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 28px 0 34px;
  color: #aab8ca;
  font-size: 18px;
  line-height: 1.75;
}

.subpage-screen {
  margin: 0;
  padding: 9px;
  position: relative;
  border: 1px solid rgba(98, 221, 255, 0.2);
  border-radius: 22px;
  background: rgba(3, 15, 30, 0.72);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.42), 0 0 70px rgba(19, 189, 244, 0.08);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.subpage-screen::after {
  content: "";
  position: absolute;
  inset: -50px;
  z-index: -1;
  border: 1px solid rgba(98, 221, 255, 0.12);
  border-radius: 50%;
}

.subpage-screen img,
.screen-card img,
.wide-screen img {
  width: 100%;
  height: auto;
}

.subpage-screen img {
  border-radius: 14px;
}

.detail-section {
  padding: 124px 0;
  background: var(--paper);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 72px;
}

.pillar-card {
  min-height: 250px;
  padding: 34px;
  border: 1px solid rgba(7, 42, 77, 0.1);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(3, 18, 36, 0.06);
}

.pillar-card > span {
  color: #087ba9;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.pillar-card h3 {
  margin: 58px 0 12px;
  font-size: 23px;
  letter-spacing: -0.035em;
}

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

.screen-story,
.process-proof,
.capability-band {
  padding: 118px 0;
  background:
    linear-gradient(rgba(19, 189, 244, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 189, 244, 0.03) 1px, transparent 1px),
    #040c18;
  background-size: 90px 90px;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 68px;
}

.screen-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(98, 221, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}

.screen-card img {
  aspect-ratio: 1.9 / 1;
  object-fit: cover;
  object-position: top left;
  background: #eef3f8;
}

.screen-card figcaption {
  display: grid;
  gap: 4px;
  padding: 23px 25px 26px;
}

.screen-card figcaption strong {
  color: var(--white);
  font-size: 17px;
}

.screen-card figcaption span {
  color: #8fa2b8;
  font-size: 13px;
}

.page-cta {
  padding: 80px 0;
  background: var(--paper);
}

.page-cta-shell {
  min-height: 230px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 54px 60px;
  color: var(--white);
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 20%, rgba(19, 189, 244, 0.18), transparent 28%),
    linear-gradient(112deg, #030914, #09233e);
  box-shadow: var(--shadow);
}

.page-cta-shell .eyebrow {
  margin-bottom: 16px;
}

.page-cta-shell h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.capabilities-page {
  color: var(--white);
}

.capabilities-page .section-heading {
  max-width: 840px;
}

.capabilities-page .eyebrow-dark {
  color: var(--cyan-bright);
}

.capability-band-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 72px;
}

.capability-band-grid h2 {
  margin: 0;
  font-size: clamp(2.8rem, 4.8vw, 5rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.capability-band-grid > div > p:last-child {
  max-width: 500px;
  margin: 25px 0 0;
  color: #94a7bd;
  font-size: 17px;
}

.flow-page {
  padding: 124px 0 140px;
}

.process-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 66px;
}

.process-card {
  min-height: 190px;
  padding: 30px;
  border: 1px solid rgba(98, 221, 255, 0.14);
  background: rgba(255, 255, 255, 0.025);
}

.process-card strong {
  color: var(--white);
  font-size: 19px;
}

.process-card p {
  margin: 18px 0 0;
  color: #8fa2b8;
  font-size: 14px;
}

.wide-screen {
  margin: 28px 0 0;
  padding: 9px;
  border: 1px solid rgba(98, 221, 255, 0.15);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.wide-screen img {
  border-radius: 13px;
}

/* Contact form */

.contact-page {
  min-height: calc(100vh - 111px);
  padding: 164px 0 100px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 36%, rgba(0, 132, 255, 0.2), transparent 31%),
    linear-gradient(135deg, #030813 0%, #07182c 58%, #020811 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: 84px;
}

.contact-copy {
  padding-top: 38px;
}

.contact-benefits {
  display: grid;
  gap: 17px;
  margin: 46px 0 0;
  padding: 0;
  color: #9eb0c5;
  list-style: none;
  font-size: 14px;
}

.contact-benefits li {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 14px;
}

.contact-benefits span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--cyan-bright);
  border: 1px solid rgba(98, 221, 255, 0.26);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
}

.contact-panel {
  padding: 38px;
  border: 1px solid rgba(98, 221, 255, 0.18);
  border-radius: 24px;
  background: rgba(9, 25, 45, 0.78);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(20px);
}

.contact-form,
.form-field {
  display: grid;
}

.contact-form {
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-field {
  gap: 8px;
}

.form-field label {
  color: #dce8f5;
  font-size: 13px;
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  outline: 0;
  background: rgba(255, 255, 255, 0.055);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-field input {
  min-height: 50px;
  padding: 0 15px;
}

.form-field textarea {
  min-height: 144px;
  padding: 13px 15px;
  resize: vertical;
}

.form-field textarea::placeholder {
  color: #7589a1;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(98, 221, 255, 0.72);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 0 0 3px rgba(19, 189, 244, 0.1);
}

.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: #ff8d8d;
}

.field-error {
  min-height: 0;
  color: #ffaaaa;
  font-size: 12px;
  line-height: 1.35;
}

.field-error:empty {
  display: none;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.consent-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: #9cafc5;
  font-size: 12px;
  cursor: pointer;
}

.consent-field input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--cyan);
}

.submit-button {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.form-status {
  display: none;
  padding: 13px 15px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.5;
}

.form-status.success,
.form-status.error {
  display: block;
}

.form-status.success {
  color: #baf6d2;
  border: 1px solid rgba(83, 222, 143, 0.25);
  background: rgba(83, 222, 143, 0.09);
}

.form-status.error {
  color: #ffc2c2;
  border: 1px solid rgba(255, 112, 112, 0.25);
  background: rgba(255, 112, 112, 0.08);
}

@media (max-width: 920px) {
  .subpage-hero-grid,
  .capability-band-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .subpage-hero-grid,
  .contact-grid {
    gap: 50px;
  }

  .subpage-screen {
    width: min(100%, 760px);
    transform: none;
  }

  .pillar-grid,
  .process-card-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card,
  .process-card {
    min-height: auto;
  }

  .pillar-card h3 {
    margin-top: 38px;
  }

  .page-cta-shell {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    padding-top: 0;
  }
}

@media (max-width: 680px) {
  .main-nav a[aria-current="page"]:not(.nav-cta)::after {
    display: none;
  }

  .subpage-hero,
  .subpage-hero.compact {
    min-height: auto;
    padding: 126px 0 76px;
  }

  .subpage-hero h1,
  .contact-copy h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .subpage-hero-grid > div > p:not(.eyebrow),
  .contact-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .subpage-screen::after {
    display: none;
  }

  .detail-section,
  .screen-story,
  .process-proof,
  .capability-band,
  .flow-page {
    padding: 82px 0;
  }

  .pillar-grid,
  .screen-grid,
  .process-card-grid {
    margin-top: 46px;
  }

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

  .page-cta {
    padding: 56px 0;
  }

  .page-cta-shell {
    padding: 38px 24px;
    border-radius: 18px;
  }

  .page-cta-shell .button {
    width: 100%;
  }

  .contact-page {
    padding: 126px 0 74px;
  }

  .contact-panel {
    padding: 26px 20px;
    border-radius: 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
