:root {
  color-scheme: dark;
  --bg: #050814;
  --bg-soft: #0a1021;
  --surface: rgba(12, 20, 42, 0.68);
  --surface-strong: rgba(10, 18, 38, 0.92);
  --surface-glass: rgba(255, 255, 255, 0.055);
  --border: rgba(148, 163, 184, 0.16);
  --border-strong: rgba(125, 211, 252, 0.22);
  --text: #f7f9ff;
  --muted: #9aa8c7;
  --soft: #c5cee2;
  --blue: #2da8ff;
  --cyan: #20e5e9;
  --purple: #9a63ff;
  --pink: #ff4ec4;
  --green: #28e3a2;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #060b15;
  --bg-soft: #0a1021;
  --surface: rgba(12, 20, 42, 0.68);
  --surface-strong: rgba(10, 18, 38, 0.92);
  --surface-glass: rgba(255, 255, 255, 0.055);
  --border: rgba(148, 163, 184, 0.16);
  --border-strong: rgba(125, 211, 252, 0.22);
  --text: #f7f9ff;
  --muted: #9aa8c7;
  --soft: #c5cee2;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f7faff;
  --bg-soft: #eef5fb;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --surface-glass: rgba(14, 28, 51, 0.055);
  --border: rgba(104, 121, 145, 0.22);
  --border-strong: rgba(37, 99, 235, 0.26);
  --text: #0e1c33;
  --muted: #687991;
  --soft: #314156;
  --shadow: 0 18px 60px rgba(37, 99, 235, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  overflow-x: hidden;
}

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

.background {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg), var(--bg-soft));
}

.grid-fade {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(100, 116, 139, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 116, 139, .08) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black 0%, rgba(0,0,0,.5) 45%, transparent 88%);
}

.aurora {
  position: absolute;
  width: 58vw;
  height: 58vw;
  border-radius: 999px;
  filter: blur(90px);
  opacity: .16;
}

.aurora.one {
  left: -20vw;
  top: -25vw;
  background: linear-gradient(135deg, #1f6fff, #6f4cff, #00d9ff);
}

.aurora.two {
  right: -24vw;
  top: 16vh;
  background: linear-gradient(135deg, #ff31b8, #6f4cff, #18e4c8);
  opacity: .11;
}

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

.topbar {
  position: sticky;
  top: 14px;
  z-index: 30;
  width: min(1240px, calc(100% - 28px));
  min-height: 70px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  margin: 14px auto 0;
  padding: 12px 14px 12px 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  box-shadow: 0 10px 40px rgba(0,0,0,.08);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: white;
  background: linear-gradient(145deg, #1be1f0 0 25%, #1773ff 46% 65%, #aa53ff 85% 100%);
  box-shadow: 0 8px 28px rgba(45,168,255,.24);
  font-size: 18px;
  font-weight: 500;
}

.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand-logo.dark {
  display: block;
}

.brand-logo.light {
  display: none;
}

.brand-copy {
  display: grid;
  gap: 5px;
  line-height: 1;
}

.brand-copy b {
  font-size: 15px;
  letter-spacing: .15em;
  font-weight: 500;
}

.brand-copy small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .34em;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 500;
}

.nav a:hover {
  color: var(--text);
}

.actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0 14px;
  color: var(--text);
  background: var(--surface-glass);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: var(--border-strong);
  background: rgba(255,255,255,.09);
}

.button.primary {
  border-color: rgba(125, 211, 252, .32);
  background: linear-gradient(100deg, #2da8ff, #7a5cff 55%, #ff4ec4);
  color: white;
  box-shadow: 0 12px 34px rgba(72, 111, 255, .2);
}

.section,
.hero,
.statement,
.enterprise,
.buyer,
.cta {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 740px;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 72px;
  padding: 120px 0 82px;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.chip,
.kicker {
  color: #79cfff;
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 500;
  text-transform: uppercase;
}

.chip {
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(45,168,255,.08), rgba(154,99,255,.08));
  color: #8edaff;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 900px;
  font-size: clamp(52px, 6.5vw, 90px);
  line-height: .95;
  letter-spacing: -.055em;
  font-weight: 500;
}

h1 span {
  display: block;
  background: linear-gradient(90deg, #56d9ff 0%, #6d80ff 36%, #b45cff 70%, #ff59b7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.proof span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.proof i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
}

.visual {
  position: relative;
  min-height: 550px;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(119, 148, 255, .18);
  border-radius: 50%;
}

.orbit.one {
  width: 470px;
  height: 470px;
}

.orbit.two {
  width: 340px;
  height: 340px;
  border-style: dashed;
}

.core {
  position: relative;
  z-index: 3;
  width: 220px;
  height: 220px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 35% 25%, rgba(54,211,255,.34), transparent 32%),
    radial-gradient(circle at 70% 70%, rgba(151,75,255,.36), transparent 38%),
    var(--surface-strong);
  box-shadow: 0 0 0 16px rgba(255,255,255,.015), 0 20px 80px rgba(74,93,255,.22);
  backdrop-filter: blur(18px);
}

.core > span {
  font-size: 60px;
  letter-spacing: -.1em;
  background: linear-gradient(145deg, var(--cyan), #2486ff, var(--purple));
  -webkit-background-clip: text;
  color: transparent;
}

.core b {
  margin-top: 5px;
  font-size: 13px;
  letter-spacing: .13em;
}

.core small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .18em;
}

.orbit-products {
  position: absolute;
  inset: 0;
  z-index: 4;
}

.hero-product {
  position: absolute;
  min-width: 154px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  transition: transform .25s ease, border-color .25s ease;
}

.hero-product:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--border-strong);
}

.hero-product:nth-child(1) { left: 0; top: 42px; }
.hero-product:nth-child(2) { right: -18px; top: 108px; }
.hero-product:nth-child(3) { right: 10px; bottom: 86px; }
.hero-product:nth-child(4) { left: 54px; bottom: 18px; }
.hero-product:nth-child(5) { left: -28px; top: 255px; }

.hero-product small,
.product-card small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-product strong {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  letter-spacing: .05em;
}

.product-icon {
  width: 34px;
  height: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  flex: 0 0 auto;
}

.product-icon span {
  border-radius: 5px;
  background: linear-gradient(145deg, var(--icon-a), var(--icon-b));
}

.product-icon span:nth-child(1) { border-radius: 8px 3px 3px 3px; }
.product-icon span:nth-child(2) { border-radius: 3px 8px 3px 3px; }
.product-icon span:nth-child(3) { border-radius: 3px 3px 3px 8px; }
.product-icon span:nth-child(4) { border-radius: 3px 3px 8px 3px; }
.purple { --icon-a: #c95cff; --icon-b: #4e5cff; --card-glow: #8b5cff; }
.blue { --icon-a: #33e1ff; --icon-b: #176dff; --card-glow: #168dff; }
.green { --icon-a: #53f6a9; --icon-b: #00bdb7; --card-glow: #14d6a6; }
.pink { --icon-a: #ff63df; --icon-b: #ff8347; --card-glow: #ff4fb8; }
.cyan { --icon-a: #58e8ff; --icon-b: #3274ff; --card-glow: #1ee8ed; }

.statement {
  min-height: 280px;
  display: grid;
  grid-template-columns: 1fr .75fr;
  align-items: center;
  gap: 80px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

h2 {
  margin-top: 10px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
  letter-spacing: -.045em;
  font-weight: 500;
}

.section,
.enterprise,
.buyer,
.cta {
  padding: 88px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr .66fr;
  gap: 72px;
  align-items: end;
  margin-bottom: 38px;
}

.section-head.compact {
  grid-template-columns: 1fr;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.product-card {
  position: relative;
  min-height: 310px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.035), transparent 55%), var(--surface);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.product-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--card-glow);
  filter: blur(40px);
  opacity: .25;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  background: var(--surface-strong);
}

.product-number {
  position: absolute;
  top: 17px;
  right: 18px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .12em;
}

.product-card .product-icon {
  margin-bottom: 34px;
}

.product-card h3 {
  margin: 7px 0 10px;
  font-size: 22px;
  letter-spacing: -.03em;
  font-weight: 500;
}

.product-card p,
.enterprise-card p,
.buyer-flow span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.product-link {
  margin-top: auto;
  color: #6edcff;
  font-size: 13px;
  font-weight: 500;
}

.architecture,
.observability {
  border-top: 1px solid var(--border);
}

.marketing-visual-grid {
  display: grid;
  grid-template-columns: 1.25fr .9fr .9fr;
  gap: 16px;
}

.visual-card-wide {
  grid-column: span 3;
  min-height: 560px;
}

.visual-card {
  position: relative;
  min-height: 420px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 0%, rgba(45,168,255,.16), transparent 38%),
    radial-gradient(circle at 100% 80%, rgba(255,89,183,.12), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.052), rgba(255,255,255,.018)),
    var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visual-card:before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.045);
  border-radius: 22px;
  pointer-events: none;
}

.visual-card-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  max-width: 520px;
}

.visual-card-copy span {
  color: #79cfff;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.visual-card-copy h3 {
  color: var(--text);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.02;
  letter-spacing: -.035em;
  font-weight: 500;
}

.visual-card-copy p {
  max-width: 540px;
  font-size: 14px;
}

.value-orbit {
  position: relative;
  z-index: 2;
  min-height: 330px;
  display: grid;
  place-items: center;
}

.governance-orbit {
  min-height: 380px;
}

.value-orbit-ring {
  position: absolute;
  border: 1px solid rgba(119,148,255,.22);
  border-radius: 50%;
}

.value-orbit-ring.one {
  width: min(520px, 82%);
  height: min(520px, 82%);
}

.value-orbit-ring.two {
  width: min(360px, 58%);
  height: min(360px, 58%);
  border-style: dashed;
}

.value-core {
  position: relative;
  z-index: 3;
  width: 210px;
  height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(54,211,255,.34), transparent 32%),
    radial-gradient(circle at 70% 70%, rgba(151,75,255,.36), transparent 38%),
    var(--surface-strong);
  box-shadow: 0 0 0 16px rgba(255,255,255,.015), 0 20px 80px rgba(74,93,255,.22);
  backdrop-filter: blur(18px);
}

.value-core.compact {
  width: 150px;
  height: 150px;
}

.value-core span {
  font-size: 58px;
  letter-spacing: -.1em;
  background: linear-gradient(145deg, var(--cyan), #2486ff, var(--purple));
  -webkit-background-clip: text;
  color: transparent;
}

.value-core b {
  margin-top: 4px;
  color: var(--text);
  font-size: 13px;
  letter-spacing: .13em;
}

.value-core small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .18em;
}

.value-orbit-items {
  position: absolute;
  inset: 0;
  z-index: 4;
}

.hero-product.mini {
  min-width: 168px;
  transform: none;
}

.hero-product.mini:nth-child(1) { left: 7%; top: 9%; }
.hero-product.mini:nth-child(2) { right: 7%; top: 17%; }
.hero-product.mini:nth-child(3) { right: 10%; bottom: 15%; }
.hero-product.mini:nth-child(4) { left: 12%; bottom: 10%; }
.hero-product.mini:nth-child(5) { left: 2%; top: 48%; }

.value-signal {
  position: absolute;
  z-index: 1;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(86,217,255,.8), rgba(180,92,255,.65), transparent);
  box-shadow: 0 0 22px rgba(86,217,255,.32);
}

.value-signal-a { width: 72%; transform: rotate(12deg); }
.value-signal-b { width: 66%; transform: rotate(-19deg); }
.value-signal-c { width: 52%; transform: rotate(90deg); }

.protocol-picture {
  min-height: 320px;
}

.protocol-chip {
  position: absolute;
  z-index: 4;
  min-width: 74px;
  min-height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--soft);
  font-size: 12px;
  box-shadow: var(--shadow);
}

.protocol-chip.p1 { left: 50%; top: 1%; transform: translateX(-50%); }
.protocol-chip.p2 { right: 5%; top: 20%; }
.protocol-chip.p3 { right: 4%; bottom: 24%; }
.protocol-chip.p4 { left: 50%; bottom: 0; transform: translateX(-50%); }
.protocol-chip.p5 { left: 4%; bottom: 24%; }
.protocol-chip.p6 { left: 6%; top: 20%; }
.protocol-chip.p7 { left: 50%; top: 50%; transform: translate(-50%, -50%) translateY(98px); }

.enterprise-picture {
  position: relative;
  z-index: 2;
  min-height: 320px;
  display: grid;
  place-items: center;
}

.enterprise-stack {
  position: absolute;
  width: min(310px, 86%);
  height: 132px;
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 0%, rgba(86,217,255,.18), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,.095), rgba(255,255,255,.025));
  box-shadow: var(--shadow);
}

.enterprise-stack.layer-one { transform: translateY(-62px) rotate(-4deg); }
.enterprise-stack.layer-two { transform: translateY(0) rotate(3deg); opacity: .84; }
.enterprise-stack.layer-three { transform: translateY(62px) rotate(-2deg); opacity: .68; }

.enterprise-dots {
  position: relative;
  z-index: 3;
  width: min(260px, 74%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.enterprise-dots i {
  aspect-ratio: 1;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--cyan), var(--purple));
  box-shadow: 0 16px 44px rgba(45,168,255,.18);
}

.runtime-flow small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.runtime-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.runtime-flow > div {
  min-height: 168px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), transparent 55%), var(--surface);
}

.runtime-flow > i {
  display: none;
}

.runtime-flow b {
  color: var(--text);
  font-size: 20px;
  font-weight: 500;
}

.runtime-flow span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.cinematic-flow {
  position: relative;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background:
    radial-gradient(circle at 10% 50%, rgba(86,217,255,.18), transparent 35%),
    radial-gradient(circle at 90% 50%, rgba(255,89,183,.16), transparent 36%),
    var(--surface);
  box-shadow: var(--shadow);
}

.cinematic-flow:before {
  content: "";
  position: absolute;
  left: 11%;
  right: 11%;
  top: 50%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--pink));
  box-shadow: 0 0 24px rgba(86,217,255,.35);
}

.cinematic-flow > div {
  position: relative;
  z-index: 2;
  min-height: 150px;
  justify-items: center;
  text-align: center;
  border-radius: 50%;
}

.cinematic-flow > div:before {
  content: "";
  width: 54px;
  height: 54px;
  border-radius: 20px;
  background: linear-gradient(145deg, var(--cyan), var(--purple));
  box-shadow: 0 16px 42px rgba(45,168,255,.20);
}

.observability-showcase {
  display: grid;
}

.observability-picture {
  min-height: 560px;
}

.observability-orbit {
  position: relative;
  z-index: 2;
  min-height: 390px;
  display: grid;
  place-items: center;
}

.observability-orbit:before,
.observability-orbit:after {
  content: "";
  position: absolute;
  border: 1px solid rgba(119,148,255,.20);
  border-radius: 50%;
}

.observability-orbit:before {
  width: min(570px, 86%);
  height: min(570px, 86%);
}

.observability-orbit:after {
  width: min(390px, 60%);
  height: min(390px, 60%);
  border-style: dashed;
}

.obs-core-screen {
  position: relative;
  z-index: 3;
  width: min(580px, 68%);
  min-height: 275px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 0%, rgba(86,217,255,.20), transparent 40%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.026)),
    rgba(8,16,34,.92);
  box-shadow: 0 28px 90px rgba(45,168,255,.16), var(--shadow);
}

.observability-orbit .hero-product {
  position: absolute;
  z-index: 4;
}

.observability-orbit .hero-product.obs-a { left: 5%; top: 13%; }
.observability-orbit .hero-product.obs-b { right: 5%; top: 21%; }
.observability-orbit .hero-product.obs-c { left: 50%; bottom: 3%; transform: translateX(-50%); }

.obs-art-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.obs-art-card {
  min-height: 132px;
  display: grid;
  align-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    radial-gradient(circle at 22% 0%, rgba(45,168,255,.16), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.024)),
    rgba(8,16,34,.68);
  box-shadow: 0 20px 58px rgba(0,0,0,.22);
  overflow: hidden;
}

.obs-art-card > span {
  color: var(--soft);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.log-lines,
.trace-blocks {
  display: grid;
  gap: 9px;
}

.log-lines i,
.trace-blocks i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(45,168,255,.88), rgba(154,99,255,.46), transparent);
}

.log-lines i:nth-child(2) { width: 72%; background: linear-gradient(90deg, rgba(40,227,162,.80), rgba(32,229,233,.34), transparent); }
.log-lines i:nth-child(3) { width: 88%; background: linear-gradient(90deg, rgba(255,78,196,.68), rgba(154,99,255,.34), transparent); }
.log-lines i:nth-child(4) { width: 58%; }

.analytics-rings {
  min-height: 70px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 14px;
}

.analytics-rings i {
  width: 52px;
  height: 52px;
  display: block;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(8,16,34,.94) 0 46%, transparent 47%),
    conic-gradient(from 210deg, var(--cyan), var(--blue), rgba(255,255,255,.10) 74%);
  box-shadow: 0 0 28px rgba(45,168,255,.18);
}

.analytics-rings i:nth-child(2) {
  width: 66px;
  height: 66px;
  background:
    radial-gradient(circle, rgba(8,16,34,.94) 0 46%, transparent 47%),
    conic-gradient(from 90deg, var(--purple), var(--pink), rgba(255,255,255,.10) 70%);
}

.analytics-rings i:nth-child(3) {
  width: 46px;
  height: 46px;
  background:
    radial-gradient(circle, rgba(8,16,34,.94) 0 46%, transparent 47%),
    conic-gradient(from 120deg, var(--green), var(--cyan), rgba(255,255,255,.10) 66%);
}

.trace-blocks {
  grid-template-columns: repeat(8, minmax(0, 1fr));
  align-items: end;
  min-height: 76px;
  gap: 7px;
}

.trace-blocks i {
  width: 100%;
  height: 22px;
  border-radius: 9px;
  background: linear-gradient(180deg, rgba(45,168,255,.86), rgba(45,168,255,.18));
}

.trace-blocks i:nth-child(1) { grid-column: 1 / 3; height: 62px; }
.trace-blocks i:nth-child(2) { grid-column: 3 / 5; height: 43px; background: linear-gradient(180deg, rgba(154,99,255,.86), rgba(154,99,255,.20)); }
.trace-blocks i:nth-child(3) { grid-column: 5 / 7; height: 54px; background: linear-gradient(180deg, rgba(40,227,162,.76), rgba(40,227,162,.18)); }
.trace-blocks i:nth-child(4) { grid-column: 7 / 9; height: 34px; background: linear-gradient(180deg, rgba(255,78,196,.72), rgba(255,78,196,.16)); }

.obs-screen {
  position: relative;
  min-height: 190px;
  display: grid;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 0%, rgba(86,217,255,.16), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.060), rgba(255,255,255,.018)),
    var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.obs-screen-main {
  grid-row: 1 / -1;
  min-height: 410px;
}

.screen-top {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.screen-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
}

.screen-top b {
  margin-left: 8px;
  color: var(--soft);
  font-weight: 500;
}

.obs-hero-chart {
  min-height: 250px;
  display: flex;
  align-items: end;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px;
  background: rgba(3,9,24,.32);
}

.obs-hero-chart i {
  flex: 1;
  height: var(--h);
  min-height: 48px;
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(180deg, var(--cyan), rgba(86,217,255,.12));
  box-shadow: 0 0 24px rgba(86,217,255,.20);
}

.obs-kpi-row {
  display: grid;
  grid-template-columns: repeat(6, auto);
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,.045);
}

.obs-kpi-row span {
  color: var(--muted);
  font-size: 12px;
}

.obs-kpi-row b {
  color: var(--text);
  font-size: 18px;
  font-weight: 500;
}

.logs-art i {
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(126,246,198,.88), rgba(86,217,255,.16));
}

.logs-art i:nth-child(3) { width: 76%; }
.logs-art i:nth-child(4) { width: 92%; }
.logs-art i:nth-child(5) { width: 63%; }
.logs-art i:nth-child(6) { width: 84%; }

.trace-art > div:not(.screen-top) {
  display: grid;
  gap: 13px;
  align-content: center;
}

.trace-art i {
  display: block;
  width: var(--w);
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  box-shadow: 0 0 18px rgba(86,217,255,.18);
}

.enterprise {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.enterprise-card,
.buyer-flow > div {
  min-height: 170px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
}

.enterprise-card > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(45,168,255,.09);
  color: #77d9ff;
}

.enterprise-card h3 {
  margin: 22px 0 8px;
  font-size: 18px;
  font-weight: 500;
}

.buyer-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.buyer-flow small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .12em;
}

.buyer-flow b {
  display: block;
  margin-top: 14px;
  font-size: 22px;
}

.buyer-flow span {
  display: block;
  margin-top: 8px;
}

.marketing-panorama {
  position: relative;
  min-height: 430px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 45%, rgba(86,217,255,.18), transparent 26%),
    radial-gradient(circle at 20% 80%, rgba(255,89,183,.13), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.052), rgba(255,255,255,.018)),
    var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.marketing-panorama:before,
.marketing-panorama:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(119,148,255,.20);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.marketing-panorama:before {
  width: 560px;
  height: 560px;
}

.marketing-panorama:after {
  width: 380px;
  height: 380px;
  border-style: dashed;
}

.panorama-core {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  width: 184px;
  height: 184px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(54,211,255,.34), transparent 32%),
    radial-gradient(circle at 70% 70%, rgba(151,75,255,.36), transparent 38%),
    var(--surface-strong);
  box-shadow: 0 0 0 16px rgba(255,255,255,.015), 0 20px 80px rgba(74,93,255,.22);
}

.panorama-core span {
  font-size: 58px;
  letter-spacing: -.1em;
  background: linear-gradient(145deg, var(--cyan), #2486ff, var(--purple));
  -webkit-background-clip: text;
  color: transparent;
}

.panorama-core b {
  color: var(--text);
  font-size: 12px;
  letter-spacing: .13em;
}

.panorama-lane {
  position: absolute;
  z-index: 1;
  left: 9%;
  right: 9%;
  top: 50%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(86,217,255,.86), rgba(180,92,255,.70), transparent);
  box-shadow: 0 0 24px rgba(86,217,255,.28);
}

.panorama-lane.lane-one { transform: rotate(0deg); }
.panorama-lane.lane-two { transform: rotate(18deg); }
.panorama-lane.lane-three { transform: rotate(-18deg); }

.marketing-panorama .hero-product {
  position: absolute;
  z-index: 5;
}

.marketing-panorama .pano-a { left: 7%; top: 12%; }
.marketing-panorama .pano-b { right: 7%; top: 16%; }
.marketing-panorama .pano-c { right: 10%; bottom: 13%; }
.marketing-panorama .pano-d { left: 12%; bottom: 10%; }
.marketing-panorama .pano-e { left: 4%; top: 48%; }

.cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

@media (max-width: 1180px) {
  .topbar,
  .hero,
  .statement,
  .section-head,
  .cta {
    grid-template-columns: 1fr;
  }

  .topbar {
    justify-items: start;
  }

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

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

  .marketing-visual-grid,
  .observability-showcase,
  .runtime-flow {
    grid-template-columns: 1fr;
  }

  .observability-showcase {
    grid-template-rows: auto;
  }

  .visual-card-wide {
    grid-column: auto;
  }

  .obs-art-grid {
    grid-template-columns: 1fr;
  }

  .value-orbit,
  .observability-orbit {
    min-height: 430px;
  }

  .hero-product.mini {
    min-width: 150px;
  }

  .enterprise-grid,
  .buyer-flow {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .topbar,
  .hero,
  .section,
  .statement,
  .enterprise,
  .buyer,
  .cta {
    width: min(100% - 20px, 1180px);
  }

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

  .hero {
    min-height: auto;
    padding: 64px 0 44px;
    gap: 32px;
  }

  h1 {
    font-size: clamp(42px, 16vw, 62px);
  }

  .visual {
    min-height: 470px;
    transform: scale(.9);
    transform-origin: center;
  }

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

  .section,
  .enterprise,
  .buyer,
  .cta {
    padding: 54px 0;
  }
}

/* Product marketing pages copied from the marketing-only prototype. */
.siteHeader {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 62px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(18px, 4vw, 64px);
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 84%, transparent);
  backdrop-filter: blur(18px);
}

.prototypeHero {
  grid-template-columns: minmax(0, 1fr) minmax(500px, 1fr);
  width: auto;
  max-width: 1500px;
  min-height: 650px;
  margin: auto;
  padding: 70px clamp(20px, 5vw, 80px);
}

.prototypeHero h1 {
  max-width: 850px;
  margin: 12px 0 18px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -.055em;
}

.prototypeHero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.family {
  position: relative;
  min-height: 520px;
}

.familyCore {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 210px;
  height: 210px;
  display: grid;
  place-content: center;
  justify-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 25%, #253a88, #10182c 62%, #24104c);
  color: #fff;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 80px rgba(99,102,241,.24);
}

.familyCore b {
  margin-top: 7px;
  letter-spacing: .16em;
  font-weight: 500;
}

.familyProduct {
  position: absolute;
  width: 220px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.familyProduct b,
.familyProduct small {
  display: block;
}

.familyProduct b {
  font-weight: 500;
}

.familyProduct small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.fp0 { left: 50%; top: 0; transform: translateX(-50%); }
.fp1 { left: 0; top: 140px; }
.fp2 { right: 0; top: 140px; }
.fp3 { left: 70px; bottom: 0; }
.fp4 { right: 70px; bottom: 0; }

.productSection,
.arch {
  max-width: 1500px;
  margin: auto;
  padding: 72px clamp(20px, 5vw, 80px);
}

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

.productCard {
  min-width: 0;
  display: grid;
  align-content: start;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  padding: 18px;
  box-shadow: var(--shadow);
}

.productCard > span:not(.brandIcon) {
  display: block;
  margin-top: 16px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .12em;
}

.productCard h3 {
  margin: 7px 0;
  font-size: 22px;
  font-weight: 500;
}

.productCard p {
  min-height: 88px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.productCard div {
  display: grid;
  gap: 5px;
  margin-bottom: 18px;
}

.productCard div small {
  padding: 6px 8px;
  border-radius: 7px;
  background: var(--surface-glass);
  color: var(--soft);
}

.productCard > b {
  color: #79cfff;
  font-size: 12px;
  font-weight: 500;
}

.archFlow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 7px;
}

.archFlow > div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.archFlow article {
  flex: 1;
  min-height: 105px;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--surface);
}

.archFlow small {
  color: #79cfff;
  font-weight: 500;
}

.archFlow b {
  display: block;
  margin-top: 24px;
  font-size: 12px;
  font-weight: 500;
}

.archFlow i {
  color: #77a8e5;
  font-style: normal;
}

.siteHeader .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: .13em;
  font-weight: 500;
}

.brandIcon {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: transparent;
}

.brandIcon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  transform: translateY(-160%);
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-soft);
  color: var(--text);
  padding: 10px 12px;
  box-shadow: var(--shadow);
  transition: transform .14s ease;
}

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

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

.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;
}

.siteHeader nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 13px;
}

.siteHeader nav a:hover,
.productsMenu > summary:hover,
.productsMenu[open] > summary {
  color: var(--text);
}

.productsMenu {
  position: relative;
  padding: 20px 0;
}

.productsMenu > summary {
  list-style: none;
  cursor: pointer;
  color: var(--muted);
}

.productsMenu > summary::-webkit-details-marker {
  display: none;
}

.productsMenu > div {
  display: none;
  position: absolute;
  top: 54px;
  left: -20px;
  width: 180px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}

.productsMenu:hover > div,
.productsMenu[open] > div {
  display: grid;
}

.productsMenu > div a {
  padding: 9px;
  border-radius: 8px;
}

.productsMenu > div a:hover {
  background: var(--surface-glass);
}

.utilities {
  display: flex;
  align-items: center;
  gap: 8px;
}

.utilities button,
.signin {
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--surface-glass);
  color: var(--text);
  padding: 8px 10px;
  font-size: 13px;
}

.utilities button {
  min-width: 38px;
  cursor: pointer;
}

.productHero {
  min-height: 580px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  align-items: center;
  gap: 40px;
  max-width: 1500px;
  margin: auto;
  padding: 70px clamp(20px, 5vw, 80px);
}

.productHero h1 {
  max-width: 850px;
  margin: 12px 0 18px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -.055em;
}

.productHero p,
.sectionCopy p,
.roadmap p,
.protocolFeature p {
  max-width: 720px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.heroLogo {
  display: grid;
  place-items: center;
}

.heroLogo .brandIcon {
  width: min(280px, 58vw) !important;
  height: min(280px, 58vw) !important;
  filter: drop-shadow(0 28px 70px rgba(45,168,255,.22));
}

.capabilityArea,
.screenshotShowcase,
.productFlow {
  max-width: 1500px;
  margin: auto;
  padding: 72px clamp(20px, 5vw, 80px);
}

.sectionCopy {
  max-width: 760px;
  margin-bottom: 28px;
}

.sectionCopy > span,
.roadmap > span,
.eyebrow {
  color: #79cfff;
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 500;
  text-transform: uppercase;
}

.sectionCopy h2,
.protocolFeature h2,
.roadmap h2 {
  margin: 8px 0;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -.045em;
}

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

.capGrid article {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  padding: 18px;
  box-shadow: var(--shadow);
}

.capGrid small,
.productFlow span {
  color: #79cfff;
  font-weight: 500;
}

.capGrid article b {
  display: block;
  margin-top: 22px;
  font-weight: 500;
}

.capGrid p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.protocolFeature {
  max-width: 1500px;
  margin: 40px auto;
  padding: 70px clamp(20px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 50px;
}

.protocolFeature a {
  display: inline-flex;
  margin-top: 18px;
  padding: 11px 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  font-size: 13px;
}

.productSpotlight {
  width: min(1500px, calc(100% - 40px));
  margin: 44px auto;
  padding: 42px clamp(20px, 4vw, 54px);
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(380px, 1fr);
  gap: 34px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 12%, color-mix(in srgb, var(--purple) 14%, transparent), transparent 30%),
    var(--surface);
  box-shadow: var(--shadow);
}

.productSpotlight h2 {
  margin: 8px 0 10px;
  font-size: clamp(30px, 3.7vw, 56px);
  line-height: 1;
  letter-spacing: -.05em;
}

.productSpotlight p {
  max-width: 640px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.productSpotlight a {
  display: inline-flex;
  margin-top: 18px;
  padding: 11px 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  font-size: 13px;
}

.spotlightVisual {
  position: relative;
  min-height: 400px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, color-mix(in srgb, var(--blue) 20%, transparent), transparent 24%),
    radial-gradient(circle at 20% 80%, color-mix(in srgb, var(--purple) 16%, transparent), transparent 34%),
    var(--surface-strong);
}

.spotlightVisual:before,
.spotlightVisual:after {
  content: "";
  position: absolute;
  inset: 42px;
  border: 1px solid color-mix(in srgb, var(--blue) 24%, transparent);
  border-radius: 50%;
}

.spotlightVisual:after {
  inset: 92px;
  border-style: dashed;
}

.spotlightCore {
  position: relative;
  z-index: 4;
  width: 190px;
  height: 190px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 7px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(54,211,255,.24), transparent 32%),
    radial-gradient(circle at 70% 70%, rgba(151,75,255,.24), transparent 38%),
    var(--surface);
  box-shadow: 0 20px 70px rgba(45,168,255,.15);
  text-align: center;
}

.spotlightCore > .brandIcon,
.omniCore > .brandIcon {
  display: grid;
  place-items: center;
  margin: 0 auto 2px;
}

.spotlightCore > .brandIcon img,
.omniCore > .brandIcon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.spotlightCore strong {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .1em;
}

.spotlightCore span,
.spotlightCore small {
  color: var(--muted);
  font-size: 11px;
}

.spotlightVisual .node {
  position: absolute;
  z-index: 5;
  min-width: 88px;
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow);
  color: var(--text);
  font-size: 12px;
}

.spotlightVisual .n1 { left: 9%; top: 15%; }
.spotlightVisual .n2 { right: 10%; top: 16%; }
.spotlightVisual .n3 { left: 7%; bottom: 20%; }
.spotlightVisual .n4 { right: 8%; bottom: 17%; }
.spotlightVisual .n5 { left: 38%; top: 6%; }
.spotlightVisual .n6 { left: 39%; bottom: 7%; }

.workflowRibbon,
.connectPath,
.canvasFrame {
  position: absolute;
  z-index: 3;
  inset: auto 28px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.workflowRibbon span,
.connectPath span,
.canvasFrame span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-size: 12px;
}

.workflowRibbon i,
.connectPath i {
  width: 24px;
  height: 1px;
  background: var(--border-strong);
}

.canvasFrame {
  inset: 24px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-content: end;
}

.canvasFrame span {
  justify-content: center;
  border-radius: 14px;
}

.protocolOrbit {
  position: relative;
  min-height: 520px;
}

.protocolOrbit:before,
.protocolOrbit:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid color-mix(in srgb, var(--blue) 26%, transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.protocolOrbit:before {
  width: 470px;
  height: 470px;
}

.protocolOrbit:after {
  width: 340px;
  height: 340px;
  border-style: dashed;
}

.omniCore {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 3px;
  text-align: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, color-mix(in srgb, var(--blue) 28%, transparent), transparent 32%),
    radial-gradient(circle at 70% 70%, color-mix(in srgb, var(--purple) 24%, transparent), transparent 38%),
    var(--surface);
  color: var(--text);
  box-shadow: 0 0 0 16px rgba(255,255,255,.015), 0 20px 80px rgba(45,168,255,.18);
}

.omniCore strong,
.omniCore span,
.omniCore small {
  display: block;
}

.omniCore strong {
  margin-top: 0;
  letter-spacing: .13em;
  line-height: 1;
}

.omniCore span,
.omniCore small {
  margin-top: 2px;
}

.omniCore small {
  color: var(--muted);
}

.protocolOrbit > span {
  --a: calc(360deg / var(--n) * var(--i));
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  width: 92px;
  margin: -18px 0 0 -46px;
  transform: rotate(var(--a)) translateX(205px) rotate(calc(-1 * var(--a)));
  padding: 9px;
  border: 1px solid var(--border);
  border-radius: 99px;
  background: var(--bg-soft);
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  box-shadow: var(--shadow);
}

.productFlow > div:last-child {
  display: flex;
  align-items: center;
}

.productFlow article {
  flex: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 13px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.productFlow article:first-child {
  border-radius: 12px 0 0 12px;
}

.productFlow article:last-child {
  border-radius: 0 12px 12px 0;
}

.productFlow i {
  color: #70a7e6;
  font-style: normal;
}

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

.mockScreen {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.mockScreen header {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
}

.mockScreen header small {
  color: var(--muted);
}

.mockBody {
  height: 220px;
  display: grid;
  grid-template-columns: 65px 1fr;
}

.mockSidebar {
  border-right: 1px solid var(--border);
  background: var(--surface-glass);
}

.mockContent {
  padding: 12px;
}

.mockRow {
  display: grid;
  grid-template-columns: 26px 1fr 60px;
  gap: 8px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.mockRow i {
  height: 24px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.mockRow span,
.mockRow b {
  height: 8px;
  border-radius: 99px;
  background: var(--surface-glass);
}

.mockRow b {
  background: rgba(125, 211, 252, .26);
}

.wellArchitected {
  position: relative;
  width: min(1500px, calc(100% - 40px));
  margin: 72px auto;
  padding: 72px clamp(20px, 5vw, 80px);
}

.wellArchitectedIntro {
  max-width: 820px;
  margin-bottom: 36px;
}

.wellArchitectedIntro > span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.wellArchitectedIntro h2 {
  margin: 9px 0 14px;
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.05em;
}

.wellArchitectedIntro p {
  max-width: 700px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.wellArchitectedTop {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 24px;
  border: 1px solid color-mix(in srgb, var(--blue) 42%, var(--border));
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 0%, rgba(45, 168, 255, .12), transparent 42%),
    linear-gradient(135deg, color-mix(in srgb, var(--surface-strong) 94%, var(--blue)), var(--surface));
  box-shadow: 0 24px 70px rgba(49, 88, 255, .11);
  text-align: center;
}

.wellArchitectedTop::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: -2px;
  left: 8%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--purple), var(--cyan), transparent);
}

.wellArchitectedTop small {
  color: color-mix(in srgb, var(--cyan) 68%, var(--muted));
  font-size: 11px;
  letter-spacing: .2em;
}

.wellArchitectedTop strong {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 500;
}

.wellArchitectedTop strong i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
}

.wellArchitectedTop > span {
  color: var(--muted);
  font-size: 13px;
}

.wellArchitectedBeam {
  position: relative;
  display: grid;
  height: 38px;
  place-items: center;
}

.wellArchitectedBeam::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  width: 1px;
  background: linear-gradient(var(--blue), color-mix(in srgb, var(--blue) 30%, var(--border)));
}

.wellArchitectedBeam span {
  position: relative;
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .14em;
}

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

.wellArchitectedPillar {
  display: grid;
  grid-template-rows: auto 1fr 48px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px 14px 5px 5px;
  background: linear-gradient(180deg, var(--surface), color-mix(in srgb, var(--surface-glass) 75%, var(--surface)));
  box-shadow: var(--shadow);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.wellArchitectedPillar:hover {
  border-color: var(--border-strong);
  box-shadow: 0 24px 60px rgba(37, 99, 235, .14);
  transform: translateY(-6px);
}

.wellArchitectedCap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 12px;
  border-bottom: 1px solid var(--border);
}

.wellArchitectedCap span {
  color: var(--muted);
  font-size: 12px;
}

.wellArchitectedCap b {
  color: var(--blue);
  font-size: 24px;
  font-weight: 500;
}

.wellArchitectedBody {
  padding: 14px 12px;
}

.wellArchitectedBody > small {
  display: block;
  min-height: 32px;
  color: var(--blue);
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wellArchitectedBody h3 {
  min-height: 48px;
  margin: 10px 0 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
}

.wellArchitectedBody p {
  min-height: 112px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.wellArchitectedBody > div {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 12px;
}

.wellArchitectedBody > div span {
  padding: 5px 7px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
}

.wellArchitectedColumn {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
  padding: 9px 14px;
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--blue) 6%, var(--surface-glass)));
}

.wellArchitectedColumn i {
  border: 1px solid color-mix(in srgb, var(--blue) 35%, var(--border));
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(37, 99, 235, .08), rgba(34, 211, 238, .1), rgba(37, 99, 235, .08));
}

.wellArchitectedFoundation {
  margin-top: 9px;
  padding: 16px 18px;
  border: 1px solid color-mix(in srgb, var(--blue) 42%, var(--border));
  border-radius: 6px 6px 16px 16px;
  background: linear-gradient(90deg, #07172b, #10264a, #151944, #10264a, #07172b);
  color: #eaf4ff;
}

.wellArchitectedFoundation > span {
  display: block;
  margin-bottom: 10px;
  color: #68bfff;
  font-size: 11px;
  letter-spacing: .16em;
  text-align: center;
}

.wellArchitectedFoundation > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 13px;
}

.wellArchitectedFoundation b {
  font-weight: 500;
}

.wellArchitectedFoundation i {
  width: 1px;
  height: 12px;
  background: #335172;
}

.wellArchitectedNote {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 14px;
  border-left: 2px solid var(--blue);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.wellArchitectedNote b {
  color: var(--text);
  font-weight: 500;
}

.roadmap {
  max-width: 1340px;
  margin: 70px auto;
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  text-align: center;
}

.roadmap p {
  margin: auto;
}

.availabilityTrack {
  max-width: 980px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 28px auto 0;
  padding: 0;
  list-style: none;
}

.availabilityTrack li {
  position: relative;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-glass);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
}

.availabilityTrack li[data-active="true"] {
  border-color: color-mix(in srgb, var(--blue) 44%, var(--border));
  background: color-mix(in srgb, var(--blue) 12%, var(--surface));
  color: var(--text);
}

.availabilityTrack li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(100% + 2px);
  top: 50%;
  width: 6px;
  height: 1px;
  background: var(--border-strong);
}

.customerObs {
  width: min(1500px, calc(100% - 40px));
  margin: 64px auto;
  padding: 32px clamp(20px, 4vw, 54px);
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    radial-gradient(circle at 5% 0%, color-mix(in srgb, var(--blue) 20%, transparent), transparent 27%),
    radial-gradient(circle at 90% 5%, color-mix(in srgb, var(--purple) 18%, transparent), transparent 24%),
    var(--surface);
  color: var(--text);
  box-shadow: var(--shadow);
}

.customerObsHead {
  display: grid;
  grid-template-columns: minmax(0, 720px) auto;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 18px;
}

.customerObsHead h2 {
  margin: 8px 0;
  font-size: clamp(30px, 3.6vw, 48px);
  letter-spacing: -.045em;
}

.customerObsHead p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

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

.obsPills span {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-glass);
  padding: 7px 9px;
  color: var(--muted);
  font-size: 8px;
}

.heroDash {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 9px;
}

.detailDash {
  display: grid;
  grid-template-columns: .72fr 1.2fr 1.08fr;
  gap: 9px;
  margin-top: 9px;
}

.dashCard {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface-strong) 86%, var(--blue) 14%), var(--surface));
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(15,23,42,.12);
}

.dashCard > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
}

.dashCard header div {
  display: grid;
  gap: 2px;
}

.dashCard header small {
  color: var(--muted);
  font-size: 7px;
  letter-spacing: .16em;
}

.dashCard header b {
  font-size: 10px;
  font-weight: 500;
}

.dashCard header > span {
  color: var(--muted);
  font-size: 8px;
}

.kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  padding: 9px;
}

.kpis div {
  position: relative;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: color-mix(in srgb, var(--surface-strong) 88%, transparent);
}

.kpis small,
.kpis strong,
.kpis em {
  display: block;
}

.kpis small {
  color: var(--muted);
  font-size: 7px;
}

.kpis strong {
  margin-top: 3px;
  font-size: 15px;
  font-weight: 500;
}

.kpis em {
  position: absolute;
  right: 7px;
  top: 8px;
  color: #3bd5a0;
  font-size: 7px;
  font-style: normal;
}

.bigChart {
  position: relative;
  height: 210px;
  margin: 0 10px 9px;
}

.bigChart svg {
  position: absolute;
  inset: 0 0 25px;
  width: 100%;
  height: calc(100% - 25px);
}

.aiArea {
  fill: url(#aiArea);
}

.requests,
.tokens {
  fill: none;
  stroke-width: 2;
}

.requests {
  stroke: #17b8ff;
}

.tokens {
  stroke: #9b6cff;
}

.gridLines {
  position: absolute;
  inset: 0 0 25px;
  display: grid;
  grid-template-rows: repeat(4, 1fr);
}

.gridLines i {
  border-top: 1px solid var(--border);
}

.legend {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 7px;
}

.legend span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.legend i {
  width: 12px;
  height: 2px;
}

.legend .l1 {
  background: #17b8ff;
}

.legend .l2 {
  background: #9b6cff;
}

.legend b {
  margin-left: auto;
  color: var(--muted);
  font-weight: 500;
}

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

.agentFunnel {
  display: grid;
  gap: 7px;
  padding: 4px 10px 8px;
}

.agentFunnel div {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
  padding-bottom: 5px;
  font-size: 8px;
}

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

.agentFunnel i {
  grid-column: 1 / -1;
  height: 3px;
  border-radius: 99px;
  background: color-mix(in srgb, var(--border) 70%, transparent);
}

.agentFunnel i:after {
  content: "";
  display: block;
  width: inherit;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #23d4b1, #16a8ff);
}

.agentSignals {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  padding: 8px 10px 10px;
  border-top: 1px solid var(--border);
}

.agentSignals span {
  padding: 5px 6px;
  border-radius: 5px;
  background: var(--surface-glass);
  color: var(--muted);
  font-size: 7px;
}

.protocolBars {
  display: grid;
  gap: 7px;
  padding: 11px;
}

.protocolBars div {
  display: grid;
  grid-template-columns: 54px 1fr 28px;
  align-items: center;
  gap: 7px;
  font-size: 7px;
}

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

.protocolBars i {
  height: 5px;
  border-radius: 99px;
  background: color-mix(in srgb, var(--border) 70%, transparent);
  overflow: hidden;
}

.protocolBars i b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #16b8ff, #6d65ff);
}

.protocolBars strong {
  text-align: right;
  color: var(--muted);
  font-weight: 500;
}

.liveDot {
  color: #3bd5a0 !important;
}

.logFilter {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 5px;
  padding: 7px;
  border-bottom: 1px solid var(--border);
}

.logFilter > * {
  padding: 5px;
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--muted);
  font-size: 7px;
  font-weight: 500;
}

.customerLogs {
  padding: 0 8px;
}

.customerLogs div {
  display: grid;
  grid-template-columns: 45px 40px 26px minmax(90px, 1fr) 34px;
  gap: 5px;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 7px;
}

.customerLogs time,
.customerLogs code {
  color: var(--muted);
}

.customerLogs b {
  color: #65c9ff;
  font-weight: 500;
}

.customerLogs em {
  color: #3bd5a0;
  font-style: normal;
}

.customerLogs em[data-status="504"] {
  color: #ff697a;
}

.customerLogs span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.traceMeta {
  display: flex;
  justify-content: space-between;
  padding: 7px 9px;
  color: var(--muted);
  font-size: 7px;
}

.waterfall {
  padding: 0 9px 9px;
}

.waterfall div {
  display: grid;
  grid-template-columns: 82px 1fr 34px;
  gap: 5px;
  align-items: center;
  margin: 5px 0;
  font-size: 7px;
}

.waterfall span {
  color: var(--muted);
  white-space: nowrap;
}

.waterfall i {
  height: 5px;
  border-radius: 99px;
  background: color-mix(in srgb, var(--border) 70%, transparent);
}

.waterfall i b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8b5cf6, #16b8ff);
}

.waterfall time {
  text-align: right;
  color: var(--muted);
}

.obsValue {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--surface-glass);
  color: var(--muted);
  font-size: 8px;
}

.obsValue b {
  color: var(--text);
  letter-spacing: .04em;
  font-weight: 500;
}

.obsValue i {
  color: #4a86c7;
  font-style: normal;
}

body > header,
body > main,
body > footer {
  position: relative;
  z-index: 1;
}

.prototypeHero .heroOrbitVisual {
  min-height: 590px;
}

.heroOrbitVisual .core {
  gap: 3px;
  text-align: center;
}

.heroOrbitVisual .core > span {
  -webkit-background-clip: initial;
  background: transparent;
  color: inherit;
  letter-spacing: normal;
  display: grid;
  place-items: center;
  margin: 0 auto 2px;
}

.heroOrbitVisual .core > span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.heroOrbitVisual .core b {
  margin-top: 0;
  line-height: 1;
}

.heroOrbitVisual .core small {
  margin-top: 2px;
  font-size: 8.4px;
  line-height: 1.15;
  letter-spacing: .13em;
}

.heroOrbitVisual .hero-product {
  min-width: 178px;
}

.heroOrbitVisual .hero-product.purple {
  box-shadow: 0 18px 60px rgba(139, 92, 246, .16);
}

.heroOrbitVisual .hero-product.blue {
  box-shadow: 0 18px 60px rgba(45, 168, 255, .16);
}

.heroOrbitVisual .hero-product.green {
  box-shadow: 0 18px 60px rgba(34, 197, 94, .14);
}

.heroOrbitVisual .hero-product.pink {
  box-shadow: 0 18px 60px rgba(236, 72, 153, .14);
}

.heroOrbitVisual .hero-product.cyan {
  box-shadow: 0 18px 60px rgba(32, 229, 233, .14);
}

.enterpriseDesign {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

.enterpriseDesign .sectionCopy {
  max-width: 760px;
  margin-bottom: 22px;
}

.enterpriseDesign .enterprise-grid {
  align-items: stretch;
}

.enterpriseDesign .enterprise-card {
  min-height: 190px;
}

.productEndToEnd {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 62px 0 0;
}

.productEndToEnd .flow-shell {
  margin-top: 18px;
}

.flow-shell {
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 18px;
  background:
    radial-gradient(circle at 15% 20%, rgba(86,217,255,.14), transparent 28%),
    radial-gradient(circle at 90% 82%, rgba(151,75,255,.14), transparent 30%),
    var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.flow-track,
.flow-track-5 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(190px, .9fr) auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.flow-matrix {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(190px, .9fr) auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.flow-stack {
  min-width: 0;
}

.flow-label {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.flow-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.flow-pills.dense {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.flow-pill {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 9px;
  border: 1px solid var(--pill-border);
  border-radius: 999px;
  background: var(--pill-bg);
  color: var(--text);
  font-size: 12px;
  white-space: nowrap;
}

.flow-pill-blue { --pill-border: rgba(47,135,255,.28); --pill-bg: rgba(47,135,255,.09); }
.flow-pill-purple { --pill-border: rgba(154,99,255,.28); --pill-bg: rgba(154,99,255,.09); }
.flow-pill-green { --pill-border: rgba(40,227,162,.28); --pill-bg: rgba(40,227,162,.09); }
.flow-pill-pink { --pill-border: rgba(255,78,196,.28); --pill-bg: rgba(255,78,196,.09); }
.flow-pill-cyan { --pill-border: rgba(32,229,233,.28); --pill-bg: rgba(32,229,233,.09); }

.flow-arrow {
  display: grid;
  grid-template-columns: 40px auto;
  align-items: center;
  gap: 5px;
  color: var(--muted);
}

.flow-arrow span {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong));
}

.flow-arrow b {
  color: var(--text);
  font-size: 24px;
  font-weight: 500;
}

.flow-core {
  min-height: 184px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  padding: 18px;
  border: 1px solid var(--core-border);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), transparent 58%), var(--surface-strong);
  box-shadow: 0 22px 70px var(--core-glow);
  text-align: center;
}

.flow-core > .brandIcon {
  display: grid;
  place-items: center;
  margin: 0 auto 2px;
}

.flow-core > .brandIcon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.flow-core-purple { --core-border: rgba(160,91,255,.34); --core-glow: rgba(150,80,255,.22); }
.flow-core-blue { --core-border: rgba(47,160,255,.34); --core-glow: rgba(0,188,255,.20); }
.flow-core-green { --core-border: rgba(40,227,162,.30); --core-glow: rgba(40,227,162,.18); }
.flow-core-pink { --core-border: rgba(255,78,196,.30); --core-glow: rgba(255,78,196,.18); }

.flow-kicker {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .2em;
}

.flow-core strong {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .08em;
}

.flow-core small {
  color: var(--muted);
  font-size: 12px;
}

.core-tags,
.protocol-rail,
.flow-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
}

.core-tags span,
.protocol-rail span,
.flow-footer span {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: color-mix(in srgb, var(--surface-strong) 72%, transparent);
  font-size: 11px;
}

.protocol-rail,
.flow-footer {
  margin-top: 16px;
}

.site-footer.marketingFooter {
  width: min(1180px, calc(100% - 40px));
  margin: 72px auto 22px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: color-mix(in srgb, var(--surface-strong) 86%, transparent);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, .75fr));
  gap: 24px;
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-grid b {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.footer-grid p b {
  color: var(--text);
  font-size: 21px;
  letter-spacing: 0;
  text-transform: none;
}

.footer-grid a:not(.brand-lockup) {
  color: var(--muted);
  font-size: 14px;
}

.footer-grid a:not(.brand-lockup):hover {
  color: var(--text);
}

.footer-brand-art {
  width: 92px;
  height: 92px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}

.companyPage {
  width: min(980px, calc(100% - 40px));
  margin: 112px auto 0;
}

.companyHero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, .75fr);
  gap: 18px;
  align-items: stretch;
}

.companyStatement,
.companyFacts {
  border: 1px solid var(--border);
  border-radius: 26px;
  background: color-mix(in srgb, var(--surface-strong) 86%, transparent);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.companyStatement {
  padding: 34px;
}

.companyStatement h1 {
  margin: 10px 0 12px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: .96;
  letter-spacing: -.06em;
}

.companyStatement p {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.companyMission {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.companyMission h2 {
  margin: 0 0 8px;
  font-size: 24px;
  letter-spacing: -.03em;
}

.companyFacts {
  display: grid;
  align-content: start;
  gap: 0;
  padding: 10px;
}

.companyFact {
  display: grid;
  gap: 5px;
  padding: 16px;
  border-bottom: 1px solid var(--border);
}

.companyFact:last-child {
  border-bottom: 0;
}

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

.companyFact b,
.companyFact a {
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
}

.companyFact a:hover {
  color: var(--accent);
}

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

.companyCompactCard {
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: color-mix(in srgb, var(--surface) 86%, transparent);
}

.companyCompactCard h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.companyCompactCard p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.companyPartnerFit {
  margin-top: 14px;
}

.companyPartnerFit h2 {
  margin: 8px 0 10px;
  font-size: 28px;
  letter-spacing: -.04em;
}

@media (max-width: 1050px) {
  .siteHeader nav {
    display: none;
  }

  .productHero,
  .prototypeHero,
  .protocolFeature,
  .productSpotlight,
  .customerObsHead,
  .heroDash,
  .detailDash {
    grid-template-columns: 1fr;
  }

  .family {
    min-height: 650px;
  }

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

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

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

  .productFlow > div:last-child {
    display: grid;
  }

  .flow-track,
  .flow-track-5,
  .flow-matrix,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .wellArchitectedBody p {
    min-height: 84px;
  }

  .flow-arrow {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .flow-arrow span {
    width: 1px;
    height: 24px;
  }

  .productFlow article {
    border-radius: 10px !important;
  }

  .obsPills {
    justify-content: flex-start;
  }
}

@media (max-width: 650px) {
  .capGrid,
  .productGrid,
  .archFlow,
  .mockGrid {
    grid-template-columns: 1fr;
  }

  .family {
    display: grid;
    gap: 8px;
    min-height: auto;
  }

  .familyCore,
  .familyProduct {
    position: static;
    width: 100%;
    height: auto;
    transform: none;
  }

  .familyCore {
    border-radius: 18px;
    padding: 24px;
  }

  .protocolOrbit {
    min-height: 420px;
  }

  .productSpotlight {
    width: min(100% - 20px, 1500px);
    padding: 30px 16px;
  }

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

  .availabilityTrack li:not(:last-child)::after {
    display: none;
  }

  .spotlightVisual {
    min-height: 360px;
  }

  .canvasFrame {
    grid-template-columns: 1fr;
    align-content: end;
  }

  .protocolOrbit > span {
    width: 72px;
    margin-left: -36px;
    transform: rotate(var(--a)) translateX(150px) rotate(calc(-1 * var(--a)));
    font-size: 8px;
  }

  .omniCore {
    width: 170px;
    height: 170px;
  }

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

  .customerLogs div {
    grid-template-columns: 42px 34px 24px 1fr;
  }

  .customerLogs code {
    display: none;
  }

  .obsValue {
    flex-wrap: wrap;
  }

  .heroOrbitVisual .hero-product {
    position: static;
    width: 100%;
    min-width: 0;
  }

  .heroOrbitVisual .orbit-products {
    position: static;
    display: grid;
    gap: 8px;
    width: 100%;
  }

  .heroOrbitVisual .orbit {
    display: none;
  }

  .heroOrbitVisual .core {
    width: 100%;
    height: auto;
    border-radius: 18px;
    padding: 22px;
  }

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

  .companyHero,
  .companyCompactGrid {
    grid-template-columns: 1fr;
  }

  .companyStatement {
    padding: 24px;
  }

  .wellArchitected {
    width: min(100% - 20px, 1500px);
    padding: 42px 16px;
  }

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

  .wellArchitectedBody > small,
  .wellArchitectedBody h3,
  .wellArchitectedBody p {
    min-height: 0;
  }

  .wellArchitectedFoundation > div {
    flex-wrap: wrap;
  }

  .wellArchitectedNote {
    flex-direction: column;
  }
}
