/* ============================================================
   Self-hosted Inter.
   styles.css declared `font-family: Inter` but never loaded it, so every
   visitor without Inter installed locally — which is almost all of them —
   was seeing Helvetica. Subsets are vendored in /public/fonts (SIL OFL).
   ============================================================ */
@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-var-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Display";
  src: url("/fonts/inter-display-semibold-latin.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --void: #020611;
  --void-soft: #040a17;
  --surface: #071426;
  --surface-strong: #0a182c;
  --surface-soft: rgba(9, 24, 44, 0.72);
  --ink: #f7f9fd;
  --muted: #9baac1;
  --muted-strong: #bdc8d9;
  --blue: #0757ff;
  --blue-bright: #1689ff;
  --cyan: #11ddf4;
  --green: #22d98a;
  --yellow: #ffbb38;
  --red: #ff5964;
  --border: rgba(70, 120, 190, 0.28);
  --border-strong: rgba(49, 122, 255, 0.64);
  --shadow-blue: 0 24px 90px rgba(0, 83, 255, 0.15);
  --font-display: "Inter Display", "Inter", ui-sans-serif, -apple-system, sans-serif;
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --shell: min(1280px, calc(100vw - max(24px, env(safe-area-inset-left)) - max(24px, env(safe-area-inset-right))));
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--void);
  color-scheme: dark;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(11, 87, 255, 0.08), transparent 30%),
    var(--void);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img {
  height: auto;
}

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

a:not(.button):active {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

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

:where(section[id], h1[id], h2[id], h3[id]) {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--void);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.header-sentinel {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 18px;
  pointer-events: none;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  border-color: rgba(95, 135, 190, 0.16);
  background: rgba(2, 6, 17, 0.82);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
}

.brand {
  width: 148px;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 34px);
  color: var(--muted-strong);
  font-size: 13.5px;
  font-weight: 560;
}

.desktop-nav a,
.text-link,
.site-footer a {
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--ink);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.text-link {
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 600;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 28px;
  border: 1px solid rgba(76, 167, 255, 0.74);
  border-radius: 13px;
  background: linear-gradient(135deg, #0f6cff, #0757ff 58%, #148dff);
  box-shadow: 0 10px 36px rgba(7, 87, 255, 0.3), inset 0 1px rgba(255, 255, 255, 0.24);
  color: white;
  font-size: 16px;
  font-weight: 720;
  letter-spacing: -0.015em;
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(7, 87, 255, 0.4), inset 0 1px rgba(255, 255, 255, 0.28);
}

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 44px;
  padding-inline: 20px;
  border-radius: 11px;
  font-size: 14px;
}

.button-secondary {
  border-color: rgba(42, 137, 255, 0.7);
  background: rgba(4, 12, 27, 0.68);
  box-shadow: inset 0 0 0 1px rgba(2, 6, 17, 0.5);
}

.button-secondary:hover {
  border-color: rgba(94, 181, 255, 0.92);
  background: rgba(11, 29, 54, 0.74);
  box-shadow: 0 14px 44px rgba(7, 87, 255, 0.16);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: rgba(7, 20, 38, 0.72);
  color: white;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.menu-button:hover {
  border-color: var(--border-strong);
  background: rgba(12, 34, 64, 0.88);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: var(--header-height);
  inset-inline: 0;
  padding-top: 12px;
  padding-right: max(24px, env(safe-area-inset-right));
  padding-bottom: calc(28px + env(safe-area-inset-bottom));
  padding-left: max(24px, env(safe-area-inset-left));
  max-height: calc(100dvh - var(--header-height));
  overflow-y: auto;
  overscroll-behavior: contain;
  border-bottom: 1px solid var(--border);
  background: rgba(2, 6, 17, 0.97);
}

.mobile-menu a {
  display: flex;
  min-height: 50px;
  align-items: center;
  border-bottom: 1px solid rgba(95, 135, 190, 0.12);
  color: var(--muted-strong);
  font-weight: 620;
  transform-origin: left center;
  transition: color 160ms ease, transform 160ms ease;
}

.mobile-menu a:hover {
  color: white;
  transform: translateX(6px);
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(620px, 86dvh, 812px);
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  /* content sits high in the frame so the planet owns the lower half,
     instead of floating in the middle with dead space above it */
  align-content: start;
  padding: calc(var(--header-height) + clamp(28px, 5vh, 64px)) 0 clamp(120px, 18vh, 190px);
}

.hero::before {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(9, 70, 176, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(2, 6, 17, 0.3), var(--void) 90%);
  content: "";
}

.hero-art {
  position: absolute;
  z-index: -4;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0.92;
  filter: saturate(1.04) contrast(1.04);
  /* a very slow drift keeps the world feeling alive without a video */
  animation: planet-drift 64s ease-in-out infinite alternate;
  will-change: transform;
}

/* Scaled up and pushed down so the lit rim clears the CTA row. The drift is
   slow enough to read as the world turning rather than as an animation. */
@keyframes planet-drift {
  from { transform: scale(1.16) translate3d(-0.7%, 6.5%, 0); }
  to   { transform: scale(1.22) translate3d(0.7%, 5.2%, 0); }
}

.planet {
  position: absolute;
  z-index: -2;
  bottom: -650px;
  left: 50%;
  width: min(1700px, 134vw);
  aspect-ratio: 2 / 1;
  transform: translateX(-50%);
  border-top: 3px solid rgba(65, 181, 255, 0.98);
  border-radius: 50% 50% 0 0;
  background:
    radial-gradient(ellipse at 50% 2%, rgba(21, 102, 255, 0.58), rgba(7, 33, 87, 0.42) 20%, rgba(2, 8, 24, 0.92) 59%),
    repeating-radial-gradient(ellipse at 50% 0, rgba(47, 121, 255, 0.12) 0 2px, transparent 3px 12px);
  box-shadow: 0 -8px 36px rgba(16, 119, 255, 0.75), 0 -40px 130px rgba(0, 82, 255, 0.28);
}

.planet span {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}

.planet span::before,
.planet span::after {
  position: absolute;
  width: 45%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(42, 131, 255, 0.52), transparent);
  content: "";
  transform: rotate(11deg);
}

.planet span::before {
  top: 23%;
  left: 8%;
}

.planet span::after {
  right: 7%;
  top: 35%;
  transform: rotate(-9deg);
}

.hero-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 9px;
  margin: 0 0 25px;
  padding: 0 14px;
  border: 1px solid rgba(24, 130, 255, 0.4);
  border-radius: 999px;
  background: rgba(6, 48, 102, 0.32);
  color: #2f9bff;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border: 1px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 0 10px currentColor;
}

.eyebrow-plain {
  min-height: auto;
  margin-bottom: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
}

.hero h1 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(54px, 5.15vw, 78px);
  font-weight: 800;
  letter-spacing: -0.058em;
  line-height: 0.99;
  text-wrap: balance;
}

.hero h1 strong {
  color: #1687ff;
  font-weight: inherit;
  text-shadow: 0 0 34px rgba(7, 87, 255, 0.25);
}

.hero-copy {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted-strong);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 34px;
}

.hero-actions .button {
  min-width: 196px;
}

.problem-section {
  padding: 108px 0 88px;
  border-top: 1px solid rgba(70, 120, 190, 0.16);
  border-bottom: 1px solid rgba(70, 120, 190, 0.16);
}

.problem-intro {
  display: grid;
  align-items: end;
  padding-bottom: 52px;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(40px, 8vw, 120px);
}

.problem-intro h2 {
  margin: 0;
  font-size: clamp(40px, 4.5vw, 66px);
  font-weight: 780;
  letter-spacing: -0.052em;
  line-height: 1.02;
  text-wrap: balance;
}

.problem-intro h2 span {
  color: var(--blue-bright);
}

.problem-intro > p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
  text-wrap: pretty;
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(70, 120, 190, 0.25);
  border-bottom: 1px solid rgba(70, 120, 190, 0.25);
}

.problem-list article {
  padding: 34px clamp(24px, 3vw, 42px) 38px;
  border-left: 1px solid rgba(70, 120, 190, 0.25);
}

.problem-list article:first-child {
  border-left: 0;
}

.problem-list h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(19px, 1.8vw, 24px);
  letter-spacing: -0.025em;
}

.problem-list p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.product-section {
  padding: 112px 0 92px;
}

.section-intro {
  display: grid;
  max-width: 800px;
  margin: 0 auto 64px;
  justify-items: center;
  text-align: center;
}

.section-intro h2,
.feature-copy h2,
.cta-card h2 {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 62px);
  font-weight: 780;
  letter-spacing: -0.05em;
  line-height: 1.02;
  text-wrap: balance;
}

.section-intro h2 span {
  color: var(--blue-bright);
}

.section-intro > p:last-child {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  text-wrap: pretty;
}

.dashboard {
  position: relative;
  display: grid;
  min-height: 720px;
  overflow: hidden;
  grid-template-columns: 220px minmax(0, 1fr);
  border: 1px solid var(--border-strong);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(8, 26, 52, 0.76), rgba(2, 8, 20, 0.96) 60%),
    var(--surface);
  box-shadow: var(--shadow-blue), inset 0 1px rgba(255, 255, 255, 0.025);
}

.preview-label {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(93, 141, 204, 0.32);
  border-radius: 999px;
  background: rgba(2, 9, 22, 0.82);
  color: #9bb0cd;
  font-size: 10px;
  font-weight: 730;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dashboard-sidebar {
  padding: 34px 20px;
  border-right: 1px solid rgba(80, 123, 177, 0.22);
  background: rgba(1, 7, 18, 0.5);
}

.dashboard-sidebar > img {
  width: 128px;
  margin: 0 10px 36px;
}

.dashboard-sidebar ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dashboard-sidebar li {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  border-radius: 10px;
  color: #aebbd0;
  font-size: 13px;
}

.dashboard-sidebar li span {
  width: 20px;
  color: #88a3c7;
  font-size: 17px;
  text-align: center;
}

.dashboard-sidebar li.active {
  background: linear-gradient(90deg, rgba(15, 95, 224, 0.88), rgba(12, 61, 139, 0.66));
  color: white;
}

.dashboard-main {
  min-width: 0;
  padding: 36px;
}

.dashboard-heading {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dashboard-heading h3 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  border: 1px solid rgba(25, 189, 124, 0.22);
  border-radius: 999px;
  background: rgba(9, 69, 52, 0.28);
  color: #27e597;
  font-size: 12px;
  font-weight: 700;
}

.live-badge i,
.confidence-card p i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(34, 217, 138, 0.6);
}

.network-map {
  position: relative;
  height: 400px;
  margin: 14px 0 0;
}

.network-lines {
  position: absolute;
  inset: 10px 150px 10px 0;
  width: calc(100% - 150px);
  height: calc(100% - 20px);
  overflow: visible;
}

.network-lines path {
  fill: none;
  stroke: url(#network-line);
  stroke-width: 2.5;
  vector-effect: non-scaling-stroke;
}

.network-lines circle {
  fill: #8df4ff;
  stroke: #0b88ff;
  stroke-width: 4;
}

.service-card {
  position: absolute;
  display: flex;
  width: 174px;
  min-height: 86px;
  align-items: flex-start;
  gap: 11px;
  padding: 15px;
  border: 1px solid rgba(72, 119, 177, 0.34);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(14, 38, 70, 0.92), rgba(5, 16, 31, 0.96));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.service-card > div {
  min-width: 0;
}

.service-card b,
.service-card small,
.service-card em {
  display: block;
}

.service-card em.attention {
  color: var(--yellow);
}

.service-card b {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.service-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.service-card em {
  margin-top: 8px;
  color: var(--green);
  font-size: 10px;
  font-style: normal;
}

.service-symbol {
  display: grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  background: #030812;
  color: white;
  font-size: 11px;
  font-weight: 800;
}

.service-symbol.green { color: #74df49; border-color: rgba(116, 223, 73, 0.4); }
.service-symbol.yellow { color: #ffd842; border-color: rgba(255, 216, 66, 0.38); }
.service-symbol.cyan { color: #45e6ff; border-color: rgba(69, 230, 255, 0.4); }
.service-symbol.blue { color: #63b5ff; border-color: rgba(99, 181, 255, 0.4); }
.service-symbol.red { color: #ff4b4b; border-color: rgba(255, 75, 75, 0.4); }

.service-1 { left: 1%; top: 30px; }
.service-2 { left: 34%; top: 32px; }
.service-3 { left: 67%; top: 30px; }
.service-4 { left: 13%; top: 225px; }
.service-5 { left: 42%; top: 225px; }
.service-6 { left: 70%; top: 225px; }

.confidence-card {
  position: absolute;
  top: 30px;
  right: 0;
  display: grid;
  width: 144px;
  min-height: 235px;
  place-items: center;
  padding: 19px 12px;
  border: 1px solid rgba(68, 116, 175, 0.32);
  border-radius: 15px;
  background: rgba(4, 15, 30, 0.84);
  color: #bbcae0;
  font-size: 12px;
  text-align: center;
}

.score-ring {
  display: grid;
  width: 105px;
  height: 105px;
  place-items: center;
  border: 8px solid #1185ff;
  border-right-color: #14d5ef;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(7, 112, 255, 0.28), inset 0 0 22px rgba(7, 112, 255, 0.16);
}

.score-ring strong {
  color: white;
  font-size: 17px;
  letter-spacing: -0.01em;
}

.confidence-card p {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: white;
  font-size: 11px;
}

.dashboard-stats {
  display: grid;
  margin: 18px 0 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.dashboard-stats div {
  min-width: 0;
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(68, 116, 175, 0.2);
  border-radius: 13px;
  background: rgba(5, 16, 32, 0.72);
}

.dashboard-stats dt {
  overflow: hidden;
  color: #96a9c5;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-stats dd {
  margin: 7px 0 0;
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 750;
  line-height: 1.2;
}

.dashboard-stats dd.success {
  color: var(--green);
}

.capabilities {
  display: grid;
  gap: 28px;
  padding: 44px 0 120px;
}

.feature-panel,
.deployment-section,
.cloud-section {
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 26px;
  background:
    radial-gradient(circle at 90% 10%, rgba(7, 87, 255, 0.09), transparent 30%),
    linear-gradient(125deg, rgba(7, 24, 47, 0.86), rgba(3, 11, 24, 0.94));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.feature-panel::after,
.cloud-section::after {
  position: absolute;
  z-index: 0;
  right: -30px;
  bottom: -20px;
  width: 34%;
  height: 50%;
  opacity: 0.16;
  background-image: radial-gradient(circle, rgba(28, 130, 255, 0.82) 1px, transparent 1.3px);
  background-size: 17px 17px;
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 70%);
  mask-image: radial-gradient(circle at center, black, transparent 70%);
  content: "";
}

.feature-panel {
  min-height: 560px;
  padding: clamp(48px, 6vw, 84px);
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(48px, 7vw, 104px);
}

.feature-copy {
  position: relative;
  z-index: 2;
}

.feature-copy h2 {
  max-width: 540px;
  font-size: clamp(40px, 4.25vw, 64px);
}

.feature-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.65;
  text-wrap: pretty;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  color: #168cff;
  font-weight: 700;
}

.inline-link span {
  font-size: 22px;
  transition: transform 160ms ease;
}

.inline-link:hover span {
  transform: translateX(4px);
}

.activity-timeline {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0 0 0 42px;
  list-style: none;
}

.activity-timeline::before {
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 13px;
  width: 2px;
  background: linear-gradient(var(--blue), #2ca4ff);
  box-shadow: 0 0 14px rgba(7, 87, 255, 0.7);
  content: "";
}

.activity-timeline li {
  position: relative;
  display: grid;
  min-height: 88px;
  align-items: center;
  padding: 14px 18px;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 16px;
  border: 1px solid rgba(71, 118, 177, 0.34);
  border-radius: 14px;
  background: rgba(4, 17, 34, 0.82);
}

.timeline-dot {
  position: absolute;
  top: 50%;
  left: -42px;
  width: 20px;
  height: 20px;
  border: 3px solid #217fff;
  border-radius: 50%;
  background: #dff5ff;
  box-shadow: 0 0 16px #086cff;
  transform: translateY(-50%);
}

.activity-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(70, 125, 194, 0.42);
  border-radius: 12px;
  color: #75b2ff;
  font-weight: 700;
}

.green-icon {
  color: var(--green);
}

.activity-timeline strong,
.activity-timeline small {
  display: block;
}

.activity-timeline strong {
  font-size: 17px;
}

.activity-timeline small,
.activity-meta {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.activity-meta {
  justify-self: end;
  white-space: nowrap;
}

.diff {
  display: flex;
  gap: 8px;
  font-size: 13px;
}

.diff b {
  color: var(--green);
}

.diff i {
  color: var(--red);
  font-style: normal;
}

.stack-health {
  grid-template-columns: minmax(300px, 0.75fr) minmax(420px, 1fr) minmax(200px, 0.45fr);
  gap: clamp(32px, 4vw, 62px);
}

.orbit-map {
  position: relative;
  z-index: 2;
  width: min(100%, 460px);
  aspect-ratio: 1;
  margin: 0 auto;
}

.orbit {
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(31, 117, 244, 0.54);
  border-radius: 50%;
}

.orbit::before {
  position: absolute;
  top: -4px;
  left: 52%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 12px var(--blue);
  content: "";
}

.orbit-two {
  inset: 26%;
  border-color: rgba(20, 210, 196, 0.55);
}

.orbit-three {
  inset: 38%;
  border: 2px solid rgba(40, 130, 255, 0.75);
  box-shadow: 0 0 40px rgba(7, 87, 255, 0.16), inset 0 0 36px rgba(7, 87, 255, 0.1);
}

.orbit-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 74px;
  transform: translate(-50%, -50%);
}

.orbit-node {
  position: absolute;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 1px solid rgba(76, 125, 190, 0.45);
  border-radius: 50%;
  background: #09172b;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.26);
  font-size: 14px;
  font-weight: 800;
}

.orbit-node small {
  position: absolute;
  top: calc(100% + 5px);
  color: #d8e0eb;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.node-js { top: 4%; left: 27%; color: #7ed94a; }
.node-react { top: 8%; right: 17%; color: #55dff7; }
.node-ts { top: 42%; left: 1%; color: #48a2ff; }
.node-db { top: 42%; right: 0; color: #88c9ff; }
.node-py { bottom: 4%; left: 27%; color: #ffd94d; }
.node-redis { right: 17%; bottom: 4%; color: #ff5151; }

.health-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0;
  margin: 0;
}

.health-list div {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(81, 123, 177, 0.25);
}

.health-list div:last-child {
  border-bottom: 0;
}

.health-list dt {
  color: #d6deea;
  font-size: 14px;
  font-weight: 650;
}

.health-list dd {
  margin: 0;
  color: #258aff;
  font-size: clamp(15px, 1.55vw, 19px);
  font-weight: 800;
  text-align: right;
}

.health-list .warning dd { color: var(--yellow); }
.health-list .danger dd { color: var(--red); }
.health-list .healthy dd { color: var(--green); }

.deployment-section {
  min-height: 600px;
  padding: clamp(48px, 6vw, 84px);
  grid-template-columns: minmax(320px, 0.75fr) minmax(520px, 1.25fr);
  gap: clamp(60px, 9vw, 140px);
  border-color: transparent;
  background:
    linear-gradient(rgba(22, 80, 158, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 80, 158, 0.035) 1px, transparent 1px);
  background-size: 26px 26px;
}

.deployment-ledger {
  overflow: hidden;
  border: 1px solid rgba(82, 134, 202, 0.44);
  border-radius: 19px;
  background: rgba(5, 17, 33, 0.83);
}

.deployment-ledger table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.ledger-icon-column { width: 7%; }
.ledger-branch-column { width: 24%; }
.ledger-change-column { width: 31%; }
.ledger-status-column { width: 22%; }
.ledger-time-column { width: 16%; }

.deployment-ledger tbody tr {
  border-bottom: 1px solid rgba(91, 128, 173, 0.22);
}

.deployment-ledger tbody tr:last-child {
  border-bottom: 0;
}

.deployment-ledger th,
.deployment-ledger td {
  height: 74px;
  padding: 0 8px;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.deployment-ledger td:first-child {
  padding-left: 22px;
}

.deployment-ledger td:last-child {
  padding-right: 22px;
}

.deployment-ledger .deployment-icon {
  color: var(--blue-bright);
  font-size: 22px;
}

.deployment-ledger th {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.deployment-ledger .deployment-change,
.deployment-ledger em,
.deployment-ledger time {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  font-style: normal;
}

.deployment-ledger em {
  color: #168cff;
  white-space: nowrap;
}

.deployment-ledger em.deployed {
  color: var(--green);
}

.deployment-ledger em.attention {
  color: var(--yellow);
}

.cloud-section {
  min-height: 490px;
  padding: clamp(44px, 5vw, 72px);
  grid-template-columns: minmax(300px, 0.8fr) minmax(350px, 0.85fr) minmax(350px, 0.75fr);
  gap: clamp(34px, 5vw, 68px);
  background:
    radial-gradient(circle at 17% 54%, rgba(7, 87, 255, 0.22), transparent 29%),
    linear-gradient(115deg, #061a3e, #07152c 52%, #040d1c);
}

.cloud-visual {
  position: relative;
  z-index: 2;
}

.cloud-visual svg {
  overflow: visible;
}

.cloud-visual path:first-of-type {
  fill: rgba(3, 14, 32, 0.35);
  stroke: #2086ff;
  stroke-width: 5;
  filter: url(#cloud-glow);
}

.cloud-visual .branch-line {
  fill: none;
  stroke: #2086ff;
  stroke-width: 7;
  stroke-linecap: round;
  filter: url(#cloud-glow);
}

.cloud-visual circle {
  fill: #07152c;
  stroke: #2086ff;
  stroke-width: 6;
  filter: url(#cloud-glow);
}

.cloud-section .feature-copy h2 {
  font-size: clamp(36px, 3.6vw, 54px);
}

.qa-list {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(83, 133, 199, 0.46);
  border-radius: 17px;
  background: rgba(3, 13, 29, 0.66);
  list-style: none;
}

.qa-list li {
  display: flex;
  min-height: 70px;
  align-items: center;
  gap: 18px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(92, 132, 181, 0.27);
  font-weight: 650;
}

.qa-list li:last-child {
  border-bottom: 0;
}

.qa-list span {
  color: #168cff;
  font-size: 23px;
}

.setup-section {
  position: relative;
  overflow: hidden;
  padding: 124px 0;
  border-top: 1px solid rgba(70, 120, 190, 0.16);
  border-bottom: 1px solid rgba(70, 120, 190, 0.16);
  background:
    radial-gradient(circle at 12% 56%, rgba(7, 87, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(4, 13, 28, 0.66), rgba(2, 7, 17, 0.86));
}

.setup-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  gap: clamp(70px, 10vw, 150px);
}

.setup-copy h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(40px, 4.6vw, 66px);
  font-weight: 780;
  letter-spacing: -0.052em;
  line-height: 1.02;
  text-wrap: balance;
}

.setup-copy > p {
  max-width: 550px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

.privacy-note {
  display: grid;
  max-width: 550px;
  margin-top: 38px;
  padding-top: 24px;
  grid-template-columns: minmax(150px, 0.65fr) minmax(0, 1.35fr);
  gap: 24px;
  border-top: 1px solid rgba(70, 120, 190, 0.3);
}

.privacy-note strong {
  color: var(--cyan);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-note span {
  color: var(--muted-strong);
  font-size: 14px;
  line-height: 1.65;
}

.setup-flow {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(82, 134, 202, 0.4);
  list-style: none;
}

.setup-flow li {
  display: grid;
  min-height: 150px;
  align-items: center;
  padding: 28px 0;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 28px;
  border-bottom: 1px solid rgba(82, 134, 202, 0.3);
}

.setup-flow > li > span {
  color: var(--blue-bright);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.setup-flow h3 {
  margin: 0;
  font-size: clamp(20px, 1.85vw, 26px);
  letter-spacing: -0.025em;
}

.setup-flow p {
  max-width: 520px;
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0 120px;
  background:
    radial-gradient(circle at 50% 110%, rgba(7, 87, 255, 0.46), transparent 41%),
    linear-gradient(180deg, transparent, rgba(4, 17, 43, 0.7));
}

.cta-orbits {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    radial-gradient(circle at 8% 79%, #168cff 0 2px, transparent 3px),
    radial-gradient(circle at 86% 72%, #168cff 0 2px, transparent 3px),
    radial-gradient(circle at 23% 93%, #168cff 0 2px, transparent 3px),
    radial-gradient(circle at 77% 96%, #168cff 0 2px, transparent 3px);
}

.cta-orbits::before,
.cta-orbits::after {
  position: absolute;
  bottom: -72%;
  left: -10%;
  width: 120%;
  height: 110%;
  border: 1px solid rgba(24, 112, 240, 0.34);
  border-radius: 50%;
  content: "";
  transform: rotate(8deg);
}

.cta-orbits::after {
  bottom: -85%;
  transform: rotate(-7deg);
}

.cta-card {
  position: relative;
  display: flex;
  min-height: 470px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
  border: 1px solid rgba(62, 130, 224, 0.64);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0, rgba(17, 88, 208, 0.2), transparent 46%),
    rgba(5, 15, 32, 0.86);
  box-shadow: 0 26px 100px rgba(0, 46, 140, 0.25);
  text-align: center;
}

.cta-card > img {
  width: 64px;
  margin-bottom: 30px;
}

.cta-card h2 {
  font-size: clamp(42px, 5vw, 68px);
}

.cta-card > p {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.cta-card > .cta-status {
  max-width: 560px;
  margin-top: 20px;
  color: #71819b;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.site-footer {
  padding: 52px 0;
  border-top: 1px solid rgba(80, 121, 170, 0.18);
  background: #01040b;
}

.footer-grid {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr auto;
  gap: 42px;
}

.footer-grid > div img {
  width: 136px;
}

.footer-grid > div p {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}

.copyright {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  color: #71819b;
  font-size: 12px;
}

.not-found {
  display: grid;
  width: min(760px, calc(100% - 40px));
  min-height: 100svh;
  margin-inline: auto;
  align-content: center;
  justify-items: start;
  padding-block: 80px;
}

.not-found > img {
  width: 72px;
  height: auto;
  margin-bottom: 32px;
}

.not-found h1 {
  max-width: 720px;
  margin: 20px 0 0;
  font-size: clamp(50px, 9vw, 96px);
  letter-spacing: -0.065em;
  line-height: 0.96;
  text-wrap: balance;
}

.not-found > p:not(.eyebrow) {
  margin: 26px 0 34px;
  color: var(--muted);
  font-size: 18px;
}

.reveal-ready [data-reveal] {
  animation: reveal-up 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-play-state: paused;
}

.reveal-ready [data-reveal].is-visible {
  animation-play-state: running;
}

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1180px) {
  :root {
    --shell: min(1120px, calc(100vw - max(20px, env(safe-area-inset-left)) - max(20px, env(safe-area-inset-right))));
  }

  .dashboard {
    grid-template-columns: 188px minmax(0, 1fr);
  }

  .dashboard-main {
    padding: 30px 24px;
  }

  .service-card {
    width: 150px;
  }

  .feature-panel {
    grid-template-columns: minmax(260px, 0.7fr) minmax(480px, 1.3fr);
    padding: 58px;
    gap: 48px;
  }

  .stack-health {
    grid-template-columns: minmax(260px, 0.7fr) minmax(390px, 1fr);
  }

  .stack-health .health-list {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .health-list div {
    min-height: 74px;
    padding: 0 14px;
    border: 1px solid rgba(81, 123, 177, 0.25);
    border-radius: 12px;
  }

  .deployment-section {
    gap: 54px;
  }

  .cloud-section {
    grid-template-columns: 0.7fr 1fr;
  }

  .cloud-section .qa-list {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .qa-list li:nth-child(odd) {
    border-right: 1px solid rgba(92, 132, 181, 0.27);
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 72px;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .desktop-only {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .brand {
    width: 140px;
  }

  .hero {
    min-height: max(720px, 100dvh);
    padding-top: calc(var(--header-height) + 52px);
  }

  .hero h1 {
    font-size: clamp(48px, 8vw, 68px);
  }

  .planet {
    bottom: -430px;
  }

  .problem-intro,
  .setup-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .problem-intro > p {
    max-width: 620px;
  }

  .dashboard {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    display: none;
  }

  .dashboard-main {
    padding: 68px 24px 30px;
  }

  .network-map {
    height: 520px;
    padding-right: 0;
  }

  .network-lines {
    inset: 28px 0 150px;
    width: 100%;
    height: 320px;
  }

  .service-1 { left: 2%; top: 26px; }
  .service-2 { left: 50%; top: 26px; transform: translateX(-50%); }
  .service-3 { right: 2%; left: auto; top: 26px; }
  .service-4 { left: 9%; top: 210px; }
  .service-5 { left: 50%; top: 210px; transform: translateX(-50%); }
  .service-6 { right: 9%; left: auto; top: 210px; }

  .confidence-card {
    top: 360px;
    right: 0;
    left: 0;
    display: flex;
    width: 100%;
    min-height: 130px;
    align-items: center;
    justify-content: space-around;
  }

  .score-ring {
    width: 85px;
    height: 85px;
  }

  .feature-panel,
  .deployment-section,
  .cloud-section {
    grid-template-columns: 1fr;
  }

  .feature-panel {
    padding: 64px;
  }

  .activity-timeline {
    margin-top: 12px;
  }

  .stack-health .health-list {
    grid-column: auto;
  }

  .orbit-map {
    width: min(100%, 440px);
  }

  .deployment-section {
    padding: 64px;
  }

  .cloud-section {
    padding: 64px;
  }

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

  .cloud-section .qa-list {
    grid-column: auto;
  }

  .setup-copy h2,
  .setup-copy > p,
  .privacy-note {
    max-width: 720px;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100vw - max(16px, env(safe-area-inset-left)) - max(16px, env(safe-area-inset-right)));
  }

  .nav-actions .button-small {
    display: none;
  }

  .hero {
    min-height: max(720px, 100dvh);
    padding-bottom: 24px;
  }

  .hero-art {
    object-position: 46% center;
    opacity: 0.48;
  }

  .hero h1 {
    max-width: 600px;
    font-size: clamp(42px, 11.5vw, 58px);
    line-height: 1.01;
  }

  .hero-copy {
    margin-top: 24px;
    font-size: 16px;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.11em;
  }

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

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

  .problem-section {
    padding: 84px 0 74px;
  }

  .problem-intro {
    padding-bottom: 36px;
    gap: 22px;
  }

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

  .problem-list article {
    padding: 26px 4px 29px;
    border-top: 1px solid rgba(70, 120, 190, 0.25);
    border-left: 0;
  }

  .problem-list article:first-child {
    border-top: 0;
  }

  .planet {
    bottom: -140px;
    width: 180vw;
    height: 260px;
  }

  .product-section {
    padding-top: 96px;
  }

  .section-intro {
    justify-items: start;
    text-align: left;
  }

  .section-intro h2,
  .feature-copy h2,
  .cta-card h2 {
    font-size: clamp(38px, 10vw, 50px);
  }

  .dashboard {
    border-radius: 20px;
  }

  .dashboard-main {
    padding: 66px 16px 24px;
  }

  .network-map {
    display: grid;
    height: auto;
    margin-top: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .network-lines {
    display: none;
  }

  .service-card,
  .service-1,
  .service-2,
  .service-3,
  .service-4,
  .service-5,
  .service-6 {
    position: static;
    width: 100%;
    min-height: 98px;
    transform: none;
  }

  .confidence-card {
    position: static;
    display: grid;
    width: 100%;
    min-height: 190px;
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }

  .confidence-card > span {
    grid-column: 1 / -1;
  }

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

  .feature-panel,
  .deployment-section,
  .cloud-section {
    min-height: auto;
    padding: 48px 24px;
    border-radius: 20px;
  }

  .feature-copy h2 {
    max-width: none;
  }

  .activity-timeline {
    padding-left: 30px;
  }

  .activity-timeline::before {
    left: 8px;
  }

  .activity-timeline li {
    padding: 14px;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 11px;
  }

  .activity-icon {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }

  .timeline-dot {
    left: -30px;
    width: 16px;
    height: 16px;
  }

  .activity-meta {
    font-size: 11px;
  }

  .activity-timeline .diff {
    display: none;
  }

  .orbit-map {
    width: min(100%, 360px);
  }

  .orbit-node {
    width: 56px;
    height: 56px;
    font-size: 12px;
  }

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

  .ledger-icon-column { width: 12%; }
  .ledger-branch-column { width: 51%; }
  .ledger-status-column { width: 37%; }

  .deployment-ledger table,
  .deployment-ledger tbody {
    display: block;
  }

  .deployment-ledger colgroup {
    display: none;
  }

  .deployment-ledger tbody tr {
    display: grid;
    min-height: 98px;
    align-items: center;
    padding: 14px 12px;
    grid-template-columns: 22px minmax(0, 1fr) auto;
    gap: 5px 10px;
  }

  .deployment-ledger th,
  .deployment-ledger td {
    display: block;
    height: auto;
    padding: 0;
  }

  .deployment-ledger .deployment-icon {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .deployment-ledger th {
    grid-column: 2;
    grid-row: 1;
  }

  .deployment-ledger .deployment-status {
    grid-column: 3;
    grid-row: 1;
  }

  .deployment-ledger .deployment-change {
    grid-column: 2;
    grid-row: 2;
  }

  .deployment-ledger .deployment-time {
    grid-column: 3;
    grid-row: 2;
    text-align: right;
  }

  .cloud-section .qa-list {
    grid-template-columns: 1fr;
  }

  .qa-list li:nth-child(odd) {
    border-right: 0;
  }

  .setup-section {
    padding: 88px 0;
  }

  .setup-grid {
    gap: 52px;
  }

  .privacy-note {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .setup-flow li {
    min-height: auto;
    padding: 26px 0;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cta-section {
    padding: 72px 0 88px;
  }

  .cta-card {
    min-height: 480px;
    padding: 48px 24px;
    border-radius: 22px;
  }

  .cta-card > p {
    font-size: 17px;
  }

  .footer-grid {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 16px 24px;
  }
}

@media (max-width: 420px) {
  .brand {
    width: 128px;
  }

  .hero {
    min-height: max(720px, 100dvh);
  }

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

  .dashboard-heading h3 {
    font-size: 25px;
  }

  .network-map,
  .dashboard-stats,
  .stack-health .health-list {
    grid-template-columns: 1fr;
  }

  .confidence-card {
    grid-column: auto;
  }

  .activity-timeline li {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .activity-meta {
    display: block;
    grid-column: 2;
    justify-self: start;
  }

  .orbit-map {
    transform: scale(0.94);
  }
}

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

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

/* ============================================================
   Hero globe + motion upgrades
   ============================================================ */

/* The canvas globe now draws the horizon and its lit rim, so the old CSS arc
   would give the hero a second, misaligned edge. Keep only its soft ground
   glow and drop the border entirely. */
.planet {
  border-top: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(14, 74, 190, 0.20), transparent 62%);
  box-shadow: none;
}
.planet span { display: none; }

/* ---------- staggered rise ---------- */
.reveal-ready [data-rise] {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition:
    opacity 800ms cubic-bezier(0.16, 1, 0.3, 1) var(--rise-delay, 0ms),
    transform 800ms cubic-bezier(0.16, 1, 0.3, 1) var(--rise-delay, 0ms);
}
.reveal-ready [data-rise].is-risen { opacity: 1; transform: none; }

/* ---------- pointer spotlight on the panels ---------- */
.feature-panel,
.deployment-section,
.cloud-section,
.dashboard {
  position: relative;
}
.feature-panel::after,
.deployment-section::after,
.cloud-section::after,
.dashboard::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    420px circle at var(--mx, 50%) var(--my, 50%),
    rgba(65, 140, 255, 0.09),
    transparent 68%
  );
  opacity: 0;
  transition: opacity 420ms ease;
  pointer-events: none;
  content: "";
}
.feature-panel:hover::after,
.deployment-section:hover::after,
.cloud-section:hover::after,
.dashboard:hover::after { opacity: 1; }
/* z-index alone: these are grid/flex containers, so their children take a
   stacking order without being positioned. Forcing position:relative here
   would clobber absolutely-positioned children such as .preview-label and
   turn them into layout items. */
.feature-panel > *,
.deployment-section > *,
.cloud-section > *,
.dashboard > * { z-index: 1; }

/* ---------- pulses travelling the delivery map ---------- */
.network-lines .flow {
  stroke: var(--cyan, #11ddf4);
  stroke-width: 2.4;
  stroke-linecap: round;
  fill: none;
  stroke-dasharray: 16 260;
  stroke-dashoffset: 276;
  filter: drop-shadow(0 0 5px rgba(17, 221, 244, 0.8));
  animation: net-flow 3.2s linear infinite;
}
.network-lines .flow:nth-of-type(2) { animation-delay: -0.8s; animation-duration: 2.7s; }
.network-lines .flow:nth-of-type(3) { animation-delay: -1.6s; animation-duration: 3.6s; }
.network-lines .flow:nth-of-type(4) { animation-delay: -2.2s; animation-duration: 3s; }
.network-lines .flow:nth-of-type(5) { animation-delay: -0.4s; animation-duration: 3.4s; }
@keyframes net-flow { to { stroke-dashoffset: 0; } }

/* ---------- buttons get a little more life ---------- */
.button {
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms ease, background-color 220ms ease, border-color 220ms ease;
}
.button:hover { transform: translateY(-2px); }
.button span { transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1); }
.button:hover span { transform: translateX(3px); }

@media (prefers-reduced-motion: reduce) {
  .hero-art { animation: none; transform: scale(1.16) translateY(6.5%); }
  .network-lines .flow { animation: none; opacity: 0.5; stroke-dashoffset: 0; stroke-dasharray: none; }
  .reveal-ready [data-rise] { opacity: 1; transform: none; transition: none; }
  .button:hover { transform: none; }
}

/* ============================================================
   Stack orbit — real dependency logos, not letter badges
   ============================================================ */
.orbit-map { display: grid; place-items: center; }
.orbit-svg { width: 100%; max-width: 560px; height: auto; overflow: visible; }
.ob-chip {
  fill: rgba(15, 24, 42, 0.94);
  stroke: rgba(139, 168, 214, 0.2);
  stroke-width: 1;
  transition: stroke 320ms ease;
}
.ob-node:hover .ob-chip { stroke: rgba(75, 139, 255, 0.65); }
.ob-node path { opacity: 0.94; }
.ob-label {
  font: 600 15px/1 var(--font);
  fill: #dbe4f2;
  letter-spacing: -0.01em;
}
.ob-ver {
  font: 400 11.5px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  fill: #7585a0;
}
.ob-mark { filter: drop-shadow(0 0 26px rgba(23, 120, 255, 0.55)); }

/* the rings turn, and a satellite rides each one */
.ob-ring, .ob-sat { transform-origin: 280px 280px; }
.r2 { animation: ob-spin 90s linear infinite reverse; }
.ob-sat  { animation: ob-spin 26s linear infinite; }
.ob-sat2 { animation: ob-spin 38s linear infinite reverse; }
.ob-sat3 { animation: ob-spin 54s linear infinite; }
@keyframes ob-spin { to { transform: rotate(360deg); } }

/* ============================================================
   Agent timeline — state-coloured nodes on a filling rail
   ============================================================ */
/* The rail and the dots are anchored to ONE variable so they cannot drift
   apart again. --rail is the rail's centre, measured from the list's left
   edge; --rail-pad is the list's own left padding, which the dots are
   positioned against because they live inside each <li>. */
.activity-timeline {
  --rail: 14px;
  --rail-pad: 42px;
}
.activity-timeline::before {
  left: calc(var(--rail) - 1px);   /* the rail is 2px wide */
}
.activity-timeline .timeline-dot {
  left: calc(var(--rail) - var(--rail-pad));
  width: 11px;
  height: 11px;
  border: 2px solid rgba(75, 139, 255, 0.55);
  border-radius: 50%;
  background: var(--void, #020611);
  box-shadow: none;
  transform: translate(-50%, -50%);
}
.activity-timeline li:nth-child(-n + 3) .timeline-dot {
  border-color: #2fd98a;
  background: #2fd98a;
}
.activity-timeline li:last-child .timeline-dot {
  border-color: #4b8bff;
  background: #4b8bff;
  box-shadow: 0 0 0 0 rgba(75, 139, 255, 0.5);
  animation: dot-ping 2.4s ease-out infinite;
}
@keyframes dot-ping {
  70% { box-shadow: 0 0 0 9px rgba(75, 139, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(75, 139, 255, 0); }
}

@media (max-width: 720px) {
  .activity-timeline { --rail: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  .r2, .ob-sat, .ob-sat2, .ob-sat3,
  .activity-timeline li:last-child .timeline-dot { animation: none; }
}

/* ------------------------------------------------------------
   Feature-panel headlines were breaking to two or three words a
   line: the copy column was 0.8fr against a 520px minimum on the
   art, so it collapsed well below its natural measure.
   ------------------------------------------------------------ */
@media (min-width: 1181px) {
  .feature-panel { grid-template-columns: minmax(360px, 1fr) minmax(440px, 1.15fr); }
  .stack-health {
    grid-template-columns: minmax(330px, 0.95fr) minmax(400px, 1fr) minmax(180px, 0.4fr);
  }
  .feature-copy h2,
  .deployment-copy h2 { text-wrap: balance; }
}


/* Display optical size for headings; text Inter keeps its own metrics for copy. */
h1, h2, h3,
.hero h1,
.feature-copy h2,
.deployment-copy h2 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}
