:root {
  --ink: #302e36;
  --ink-soft: #525252;
  --muted: #64748b;
  --paper: #f3f0f3;
  --paper-2: #e8deff;
  --surface: #fbf8ff;
  --line: #d8d7df;
  --steel: #ede5fc;
  --steel-dark: #9973ea;
  --black: #0e0a1b;
  --amber: #7f5eff;
  --amber-dark: #5f25c8;
  --green: #7c4dff;
  --red: #ff8cde;
  --blueprint: #784dd5;
  --violet: #8b6dff;
  --violet-light: #ba99ff;
  --focus: #7433ff;
  --shadow: 0 24px 80px rgba(76, 4, 129, 0.16);
  /* Enterprise dashboard tokens (product suite showcase) */
  --ui-bg: #ffffff;
  --ui-bg-soft: #faf9fe;
  --ui-line: rgba(20, 12, 46, 0.1);
  --ui-line-soft: rgba(20, 12, 46, 0.06);
  --ui-ink: #211c2e;
  --ui-muted: #6b6781;
  --ui-ok: #16a34a;
  --ui-ok-bg: rgba(22, 163, 74, 0.1);
  --ui-warn: #b46a0c;
  --ui-warn-bg: rgba(217, 119, 6, 0.13);
  --ui-alert: #d4393f;
  --ui-alert-bg: rgba(212, 57, 63, 0.1);
  --ui-tech: #8b6dff;
  --ui-tech-bg: rgba(139, 109, 255, 0.14);
  --ui-shadow: 0 24px 64px rgba(28, 14, 74, 0.12);
  --ui-shadow-sm: 0 1px 3px rgba(28, 14, 74, 0.08);
  --ui-radius: 16px;
  --ui-radius-inner: 10px;
  --font-sans: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
}

body.nav-open {
  overflow: hidden;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
}

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

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  transform: translateY(-150%);
  padding: 0.7rem 1rem;
  background: var(--black);
  color: #fff;
  border-radius: 6px;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.72rem clamp(1rem, 3vw, 2.5rem);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(243, 240, 243, 0.86);
  color: var(--ink);
  border-bottom: 1px solid rgba(48, 46, 54, 0.08);
  box-shadow: 0 14px 42px rgba(48, 46, 54, 0.06);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 8rem;
  min-height: 2.65rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

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

.site-header.is-scrolled .brand-logo-on-dark {
  display: none;
}

.site-header.is-scrolled .brand-logo-on-light {
  display: block;
}

.primary-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(0.72rem, 1.8vw, 1.35rem);
  font-size: 0.9rem;
  font-weight: 600;
  color: inherit;
}

.primary-nav a,
.text-link,
.footer-nav a,
.footer-secondary-cta,
.footer-bottom-links a {
  text-decoration: none;
}

.primary-nav a:hover,
.text-link:hover,
.footer-bottom-links a:hover {
  text-decoration: underline;
}

.primary-nav a:hover {
  text-decoration: none;
}

.primary-nav > a,
.nav-trigger {
  display: inline-flex;
  min-height: 2.35rem;
  align-items: center;
  gap: 0.42rem;
  padding: 0.48rem 0.12rem;
  border-radius: 6px;
  line-height: 1;
  white-space: nowrap;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-trigger::after {
  content: "";
  width: 0.38rem;
  height: 0.38rem;
  margin-top: -0.16rem;
  border-right: 1.7px solid currentColor;
  border-bottom: 1.7px solid currentColor;
  opacity: 0.72;
  transform: rotate(45deg);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-dropdown:hover .nav-trigger::after,
.nav-dropdown:focus-within .nav-trigger::after {
  opacity: 1;
  transform: translateY(2px) rotate(45deg);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 50%;
  z-index: 40;
  display: grid;
  min-width: 22rem;
  max-width: min(28rem, calc(100vw - 2rem));
  gap: 0.2rem;
  padding: 0.6rem;
  color: var(--ink);
  border: 1px solid rgba(48, 46, 54, 0.12);
  border-radius: 8px;
  background: rgba(251, 248, 255, 0.96);
  box-shadow: 0 24px 70px rgba(14, 10, 27, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -0.35rem);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
}

.nav-menu::before {
  content: "";
  position: absolute;
  top: -0.7rem;
  left: 0;
  width: 100%;
  height: 0.7rem;
}

.nav-menu-resources {
  min-width: 20rem;
}

.nav-menu-products {
  grid-template-columns: repeat(2, minmax(13rem, 1fr));
  width: min(44rem, calc(100vw - 2rem));
  max-width: min(44rem, calc(100vw - 2rem));
  gap: 0.7rem;
  padding: 0.8rem;
}

.nav-menu-overview {
  grid-column: 1 / -1;
  border: 1px solid rgba(127, 94, 255, 0.14);
  background: rgba(127, 94, 255, 0.08);
}

.nav-menu-group {
  display: grid;
  gap: 0.16rem;
  min-width: 0;
}

.nav-menu-label {
  display: block;
  padding: 0.42rem 0.74rem 0.28rem;
  color: var(--ink-soft);
  font-size: 0.64rem;
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.nav-menu a {
  display: grid;
  gap: 0.12rem;
  padding: 0.72rem 0.78rem;
  border-radius: 6px;
  color: var(--ink);
  line-height: 1.2;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--amber-dark);
  background: rgba(127, 94, 255, 0.1);
  transform: translateX(2px);
}

.nav-menu strong {
  font-size: 0.92rem;
}

.nav-menu-products .nav-menu-group a {
  grid-template-columns: 2.35rem minmax(0, 1fr);
  align-items: center;
  gap: 0.1rem 0.65rem;
}

.nav-menu-products .nav-menu-group a .product-mark {
  grid-row: 1 / span 2;
  grid-column: 1;
}

.nav-menu-products .nav-menu-group a strong,
.nav-menu-products .nav-menu-group a > span:not(.product-mark) {
  grid-column: 2;
}

.nav-menu span {
  color: rgba(48, 46, 54, 0.62);
  font-size: 0.78rem;
  font-weight: 500;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.text-link {
  font-weight: 600;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.15rem;
  background: var(--amber);
  color: #fff;
  border: 1px solid rgba(116, 51, 255, 0.42);
  border-radius: 6px;
  box-shadow: inset 0 -2px 0 rgba(54, 0, 171, 0.34), 0 14px 34px rgba(116, 51, 255, 0.2);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease;
}

.button .icon {
  width: 1.08rem;
  height: 1.08rem;
}

.button:hover {
  background: #7433ff;
  transform: translateY(-2px);
}

.button-small {
  min-height: 2.28rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.88rem;
}

.header-live-demo {
  display: inline-flex;
  min-height: 2.28rem;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  padding: 0.5rem 0.82rem;
  color: inherit;
  border: 1px solid rgba(251, 248, 255, 0.28);
  border-radius: 6px;
  background: rgba(251, 248, 255, 0.08);
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-live-demo .icon {
  width: 0.96rem;
  height: 0.96rem;
}

.header-live-demo:hover {
  border-color: rgba(251, 248, 255, 0.58);
  background: rgba(251, 248, 255, 0.15);
  transform: translateY(-2px);
}

.site-header.is-scrolled .header-live-demo {
  border-color: rgba(48, 46, 54, 0.14);
  background: rgba(255, 255, 255, 0.56);
}

.button-ghost {
  background: rgba(251, 248, 255, 0.08);
  color: #fff;
  border-color: rgba(251, 248, 255, 0.38);
  box-shadow: none;
}

.button-ghost:hover {
  background: rgba(251, 248, 255, 0.18);
}

.nav-toggle {
  display: none;
}

.hero {
  --hero-stage-y: 0px;
  --hero-grid-y: 0px;
  --hero-statement-y: 0px;
  --hero-statement-scale: 1;
  --hero-ribbon-x: 0px;
  --hero-ribbon-y: 0px;
  --hero-lines-x: 0px;
  --hero-lines-y: 0px;
  --hero-console-x: 0px;
  --hero-console-y: 0px;
  --hero-console-rotate: -16deg;
  --hero-product-scale: 0.9;
  --hero-product-opacity: 0.82;
  --hero-copy-opacity: 1;
  --hero-copy-y: 0px;
  --hero-proof-opacity: 1;
  --hero-proof-y: 0px;
  --hero-marker-opacity: 0.78;
  --hero-marker-y: 0px;
  --hero-brain-label-opacity: 0;
  --hero-brain-label-y: 18px;
  position: relative;
  min-height: 245vh;
  overflow: visible;
  color: #fff;
  background: var(--black);
  isolation: isolate;
}

.hero-pin {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-pin::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34vh;
  background:
    linear-gradient(to bottom, rgba(14, 10, 27, 0), rgba(14, 10, 27, 0.88)),
    linear-gradient(90deg, rgba(127, 94, 255, 0.14), transparent 48%);
  z-index: -1;
}

.hero-pin::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(105deg, transparent 0 58%, rgba(127, 94, 255, 0.18) 58% 58.28%, transparent 58.28% 100%),
    linear-gradient(105deg, transparent 0 68%, rgba(251, 248, 255, 0.08) 68% 68.12%, transparent 68.12% 100%);
  opacity: 0.42;
}

.hero-stage {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  transform: translate3d(0, var(--hero-stage-y), 0);
  will-change: transform;
  background:
    linear-gradient(90deg, rgba(14, 10, 27, 0.98) 0%, rgba(14, 10, 27, 0.88) 50%, rgba(14, 10, 27, 0.54) 100%),
    radial-gradient(circle at 82% 25%, rgba(127, 94, 255, 0.24), transparent 30%),
    linear-gradient(135deg, #0e0a1b 0%, #1a0d3f 58%, #3600ab 100%);
}

.signal-grid {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(243, 240, 243, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 240, 243, 0.18) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to right, transparent 0%, #000 16%, #000 86%, transparent 100%);
  transform: translate3d(0, var(--hero-grid-y), 0);
  will-change: transform;
}

.signal-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(251, 248, 255, 0.05) 0,
      rgba(251, 248, 255, 0.05) 1px,
      transparent 1px,
      transparent 8px
    );
}

.hero-brain {
  position: absolute;
  top: 50%;
  right: clamp(-8rem, -6vw, -3rem);
  width: min(58rem, 57vw);
  aspect-ratio: 1.02;
  opacity: var(--hero-product-opacity);
  pointer-events: auto;
  transform: translate3d(var(--hero-console-x), calc(-50% + var(--hero-console-y)), 0) rotate(calc(var(--hero-console-rotate) * 0.28)) scale(var(--hero-product-scale));
  transform-origin: 64% 50%;
  will-change: transform, opacity;
  contain: layout paint;
  cursor: grab;
}

.hero-brain::before {
  content: "";
  position: absolute;
  inset: 7% 0 5%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 122, 216, 0.2), transparent 20%),
    radial-gradient(circle at 33% 32%, rgba(127, 94, 255, 0.36), transparent 26%),
    radial-gradient(circle at 68% 32%, rgba(186, 153, 255, 0.3), transparent 25%),
    radial-gradient(circle at 50% 70%, rgba(127, 94, 255, 0.28), transparent 29%);
  filter: blur(18px);
  opacity: 0.82;
}

.hero-brain::after {
  content: "";
  position: absolute;
  inset: 5% 1% 4%;
  border: 1px solid rgba(186, 153, 255, 0.2);
  border-radius: 46% 46% 44% 44% / 42% 42% 50% 50%;
  background:
    linear-gradient(rgba(251, 248, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 248, 255, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 50%, #000 42%, transparent 75%);
  opacity: 0.72;
}

.hero-brain-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 24px 56px rgba(0, 0, 0, 0.48));
}

.hero-brain-glow {
  position: absolute;
  inset: 27% 25% 22%;
  z-index: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 122, 216, 0.34), transparent 30%),
    radial-gradient(circle, rgba(127, 94, 255, 0.26), transparent 62%);
  filter: blur(22px);
  animation: brainGlow 4.8s ease-in-out infinite;
}

.hero-brain-label {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 0.28rem;
  max-width: 15rem;
  padding: 0.78rem 0.92rem;
  border: 1px solid rgba(251, 248, 255, 0.18);
  border-radius: 8px;
  background: rgba(14, 10, 27, 0.64);
  color: rgba(251, 248, 255, 0.9);
  box-shadow: 0 18px 62px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(14px);
  opacity: var(--hero-brain-label-opacity);
  transform: translate3d(0, var(--hero-brain-label-y), 0);
  transition: opacity 220ms ease, transform 220ms ease;
}

.hero-brain-label span,
.hero-brain-feed span {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-brain-label span {
  color: #ff8cde;
}

.hero-brain-label strong {
  display: block;
  font-size: clamp(0.98rem, 1.4vw, 1.18rem);
  line-height: 1.05;
}

.hero-brain-label-primary {
  top: 13%;
  left: 6%;
}

.hero-brain-label-feed {
  right: 3%;
  bottom: 12%;
}

.hero-brain-feed {
  position: absolute;
  right: 7%;
  top: 17%;
  z-index: 3;
  display: grid;
  gap: 0.52rem;
}

.hero-brain-feed span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.42rem 0.7rem;
  border: 1px solid rgba(186, 153, 255, 0.24);
  border-radius: 999px;
  background: rgba(251, 248, 255, 0.09);
  color: rgba(251, 248, 255, 0.84);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.2);
  opacity: var(--hero-brain-label-opacity);
  transform: translate3d(0, var(--hero-brain-label-y), 0);
  animation: brainFeed 5.8s ease-in-out infinite;
  transition: opacity 220ms ease, transform 220ms ease;
}

.hero-brain-feed span:nth-child(2) {
  margin-left: 1.6rem;
  animation-delay: -1.2s;
}

.hero-brain-feed span:nth-child(3) {
  margin-left: 0.35rem;
  animation-delay: -2.5s;
}

.hero-brain-feed span:nth-child(4) {
  margin-left: 2.25rem;
  animation-delay: -3.7s;
}

@keyframes brainGlow {
  0%,
  100% {
    opacity: 0.68;
    transform: scale(0.96);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes brainFeed {
  0%,
  100% {
    opacity: calc(var(--hero-brain-label-opacity) * 0.62);
    transform: translate3d(0, 0, 0);
  }

  50% {
    opacity: var(--hero-brain-label-opacity);
    transform: translate3d(-0.45rem, 0, 0);
  }
}

.hero-statement {
  position: absolute;
  top: clamp(6.5rem, 14vh, 10rem);
  right: -0.18em;
  display: grid;
  gap: 0.08em;
  color: transparent;
  font-size: clamp(5.5rem, 10.5vw, 11.5rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.76;
  text-transform: uppercase;
  opacity: 0.38;
  -webkit-text-stroke: 1px rgba(251, 248, 255, 0.075);
  text-stroke: 1px rgba(251, 248, 255, 0.075);
  transform: translate3d(0, var(--hero-statement-y), 0) skewY(-7deg) scale(var(--hero-statement-scale));
  transform-origin: 90% 30%;
  will-change: transform;
}

.decision-ribbon {
  position: absolute;
  top: clamp(6rem, 14vh, 9rem);
  right: clamp(-18rem, -16vw, -12rem);
  display: flex;
  gap: 1px;
  width: min(36rem, 34vw);
  background: rgba(127, 94, 255, 0.38);
  color: var(--black);
  opacity: 0.34;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.2);
  transform: translate3d(var(--hero-ribbon-x), var(--hero-ribbon-y), 0) rotate(-7deg);
  will-change: transform;
}

.decision-ribbon span {
  flex: 1;
  min-width: 0;
  padding: 0.78rem 0.9rem;
  background: rgba(255, 209, 102, 0.78);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.blueprint-lines {
  position: absolute;
  right: -14rem;
  bottom: 5rem;
  width: min(56rem, 58vw);
  height: 31rem;
  border: 1px solid rgba(251, 248, 255, 0.08);
  opacity: 0.42;
  transform: translate3d(var(--hero-lines-x), var(--hero-lines-y), 0) rotate(-7deg);
  will-change: transform;
}

.blueprint-lines::before,
.blueprint-lines::after,
.blueprint-lines span {
  content: "";
  position: absolute;
  background: rgba(251, 248, 255, 0.08);
  transform-origin: center;
}

.blueprint-lines::before {
  top: 22%;
  left: -8%;
  width: 116%;
  height: 1px;
}

.blueprint-lines::after {
  top: -8%;
  left: 28%;
  width: 1px;
  height: 116%;
}

.blueprint-lines span:nth-child(1) {
  top: 58%;
  left: -10%;
  width: 120%;
  height: 1px;
}

.blueprint-lines span:nth-child(2) {
  top: -12%;
  left: 62%;
  width: 1px;
  height: 124%;
}

.blueprint-lines span:nth-child(3) {
  top: 50%;
  left: 50%;
  width: 82%;
  height: 1px;
  transform: translate(-50%, -50%) rotate(31deg);
  background: rgba(186, 153, 255, 0.18);
}

.enterprise-console {
  position: absolute;
  top: 50%;
  right: clamp(-26rem, -22vw, -16rem);
  width: min(62rem, 62vw);
  min-height: 34rem;
  display: grid;
  grid-template-columns: 4.6rem 1fr;
  border: 1px solid rgba(243, 240, 243, 0.22);
  background: rgba(48, 46, 54, 0.66);
  box-shadow: 0 48px 130px rgba(0, 0, 0, 0.48);
  opacity: var(--hero-product-opacity);
  filter: saturate(0.86);
  transform: translate3d(var(--hero-console-x), calc(-50% + var(--hero-console-y)), 0) rotate(var(--hero-console-rotate)) scale(var(--hero-product-scale));
  transform-origin: center right;
  will-change: transform;
}

.hero-product-markers {
  position: absolute;
  top: clamp(6.4rem, 16vh, 9rem);
  right: clamp(1rem, 7vw, 7rem);
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
  max-width: min(28rem, 38vw);
  opacity: var(--hero-marker-opacity);
  transform: translate3d(0, var(--hero-marker-y), 0);
  transition: opacity 180ms ease;
  will-change: transform, opacity;
}

.hero-product-markers span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.45rem 0.68rem;
  border: 1px solid rgba(251, 248, 255, 0.18);
  border-radius: 999px;
  background: rgba(14, 10, 27, 0.72);
  color: rgba(251, 248, 255, 0.84);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-product-markers span::before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  margin-right: 0.48rem;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 18px rgba(255, 209, 102, 0.68);
}

.console-rail {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.2rem;
  border-right: 1px solid rgba(243, 240, 243, 0.15);
  background: rgba(251, 248, 255, 0.05);
}

.console-rail span {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(243, 240, 243, 0.22);
  border-radius: 4px;
  background: rgba(243, 240, 243, 0.08);
}

.console-main {
  padding: 1.25rem;
}

.console-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(243, 240, 243, 0.14);
}

.console-kicker,
.eyebrow {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.console-topbar strong {
  display: block;
  font-size: clamp(1.2rem, 2vw, 2rem);
  line-height: 1.05;
}

.console-status {
  flex: 0 0 auto;
  padding: 0.45rem 0.65rem;
  color: #b8f3d2;
  border: 1px solid rgba(184, 243, 210, 0.5);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.console-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.85rem;
}

.console-panel {
  min-height: 12rem;
  padding: 1rem;
  border: 1px solid rgba(243, 240, 243, 0.16);
  border-radius: 8px;
  background: rgba(243, 240, 243, 0.06);
}

.panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 1rem;
  color: rgba(251, 248, 255, 0.78);
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.panel-head strong {
  color: #fff;
  font-size: 1.1rem;
}

.score-bars,
.clause-lines,
.price-stack {
  display: grid;
  gap: 0.7rem;
}

.score-bars span,
.clause-lines span {
  position: relative;
  height: 0.62rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(243, 240, 243, 0.12);
}

.score-bars span::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--score);
  background: linear-gradient(90deg, var(--green), var(--amber));
  border-radius: inherit;
}

.variance-map,
.vendor-matrix,
.portfolio-map {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
}

.variance-map span,
.vendor-matrix span,
.portfolio-map span {
  aspect-ratio: 1;
  border-radius: 5px;
  background: rgba(243, 240, 243, 0.12);
}

.variance-map span:nth-child(3n),
.portfolio-map .high {
  background: var(--red);
}

.variance-map span:nth-child(4n),
.portfolio-map .med {
  background: var(--amber);
}

.vendor-matrix {
  grid-template-columns: repeat(3, 1fr);
}

.vendor-matrix span:nth-child(2n),
.portfolio-map .low {
  background: var(--green);
}

.clause-lines span:nth-child(1)::after,
.clause-lines span:nth-child(3)::after {
  content: "";
  display: block;
  height: 100%;
  width: 64%;
  background: var(--red);
  border-radius: inherit;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(62rem, calc(100% - 2rem));
  margin-inline: auto;
  padding: 9.5rem 0 9rem;
  opacity: var(--hero-copy-opacity);
  transform: translate3d(0, var(--hero-copy-y), 0);
  will-change: transform, opacity;
  pointer-events: auto;
}

.hero[style*="--hero-copy-opacity: 0"] .hero-content {
  pointer-events: none;
}

.hero-content .eyebrow {
  color: #ba99ff;
}

.hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.8rem, 7.8vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 43rem;
  margin: 1.6rem 0 0;
  color: rgba(251, 248, 255, 0.84);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-proof {
  position: absolute;
  z-index: 3;
  right: clamp(1rem, 3vw, 2.5rem);
  bottom: clamp(1rem, 3vw, 2rem);
  left: clamp(1rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(68rem, calc(100% - 2rem));
  margin-left: auto;
  border: 1px solid rgba(243, 240, 243, 0.22);
  background: rgba(243, 240, 243, 0.22);
  backdrop-filter: blur(18px);
  opacity: var(--hero-proof-opacity);
  transform: translate3d(0, var(--hero-proof-y), 0);
  will-change: transform, opacity;
}

.hero-proof div {
  min-width: 0;
  padding: 1rem;
  background: rgba(14, 10, 27, 0.72);
}

.hero-proof span,
.enterprise-card span,
.workflow span,
.risk-grid span,
.security-grid span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-proof strong {
  display: block;
  color: #fff;
  font-size: clamp(0.92rem, 1.4vw, 1.06rem);
  line-height: 1.2;
}

.backed-by-section {
  position: relative;
  z-index: 2;
  padding: clamp(2.75rem, 5vw, 4.5rem) 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(127, 94, 255, 0.12), transparent 32%),
    linear-gradient(90deg, rgba(251, 248, 255, 0.92), rgba(232, 222, 255, 0.38) 48%, rgba(251, 248, 255, 0.9)),
    var(--paper);
  border-bottom: 1px solid rgba(48, 46, 54, 0.12);
  box-shadow: inset 0 1px 0 rgba(251, 248, 255, 0.72);
}

.backed-by-inner {
  display: grid;
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
  grid-template-columns: minmax(14rem, 0.34fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
}

.backed-by-copy {
  max-width: 25rem;
}

.backed-by-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.3vw, 2.15rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.recognition-grid {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(48, 46, 54, 0.16);
  background: rgba(48, 46, 54, 0.14);
}

.recognition-grid article {
  min-width: 0;
  padding: clamp(1rem, 2vw, 1.35rem);
  background:
    linear-gradient(135deg, rgba(251, 248, 255, 0.94), rgba(241, 236, 255, 0.78)),
    var(--surface);
}

.recognition-grid span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--blueprint);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recognition-grid strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.08;
}

.recognition-grid p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}

.backed-by-logos {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  margin: 0;
  overflow: clip;
  background: rgba(48, 46, 54, 0.12);
  border: 1px solid rgba(127, 94, 255, 0.18);
  border-radius: 8px;
  box-shadow:
    0 24px 70px rgba(76, 4, 129, 0.1),
    inset 0 1px 0 rgba(251, 248, 255, 0.82);
  list-style: none;
}

.backed-by-logos li {
  min-height: 5.45rem;
  display: grid;
  place-items: center;
  padding: 1rem 1.2rem;
  background:
    linear-gradient(135deg, rgba(251, 248, 255, 0.9), rgba(251, 248, 255, 0.68)),
    var(--surface);
}

.backed-by-logos img {
  max-width: min(9.2rem, 100%);
  max-height: 3rem;
  object-fit: contain;
  opacity: 0.82;
  filter: saturate(0.82) contrast(1.02);
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.backed-by-logos li:hover img {
  opacity: 1;
  filter: saturate(1) contrast(1.04);
  transform: translateY(-2px);
}

.story-section {
  --story-board-y: 0px;
  --story-board-rotate: 0deg;
  --story-pipeline-x: 0px;
  position: relative;
  min-height: auto;
  padding: clamp(5rem, 9vw, 8rem) 0 clamp(5rem, 9vw, 8rem);
  background:
    linear-gradient(rgba(251, 248, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 248, 255, 0.04) 1px, transparent 1px),
    var(--black);
  background-size: 52px 52px;
  color: #fff;
  overflow: clip;
}

.story-section::before {
  content: "DECISION MEMORY";
  position: absolute;
  top: 4.5rem;
  right: -0.18em;
  color: transparent;
  font-size: clamp(4.5rem, 10vw, 10.5rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.8;
  -webkit-text-stroke: 1px rgba(251, 248, 255, 0.055);
  text-stroke: 1px rgba(251, 248, 255, 0.055);
  transform: rotate(-6deg);
}

.story-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
  grid-template-columns: minmax(0, 0.98fr) minmax(22rem, 0.72fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.story-visual {
  position: sticky;
  top: 6.25rem;
  min-height: calc(100vh - 7.5rem);
  display: grid;
  align-items: center;
  padding: 0;
}

.story-board {
  position: relative;
  min-height: clamp(25rem, 48vw, 32rem);
  overflow: hidden;
  border: 1px solid rgba(251, 248, 255, 0.24);
  background:
    radial-gradient(circle at 76% 24%, rgba(127, 94, 255, 0.28), transparent 30%),
    radial-gradient(circle at 18% 72%, rgba(255, 140, 222, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(251, 248, 255, 0.1), rgba(251, 248, 255, 0.025));
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.46);
  transform: translate3d(0, var(--story-board-y), 0) rotate(var(--story-board-rotate));
  transition: border-color 240ms ease, background 240ms ease;
  will-change: transform;
}

.story-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(251, 248, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 248, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.story-board-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(251, 248, 255, 0.16);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-board-head span {
  color: var(--amber);
}

.story-board-head strong {
  color: rgba(251, 248, 255, 0.82);
}

.story-pipeline {
  position: absolute;
  top: 50%;
  left: 8%;
  z-index: 1;
  display: grid;
  width: 84%;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
  transform: translate3d(var(--story-pipeline-x), -50%, 0);
  transition: opacity 260ms ease;
}

.story-pipeline span {
  height: 2px;
  background: linear-gradient(90deg, rgba(127, 94, 255, 0.1), rgba(251, 248, 255, 0.24), rgba(127, 94, 255, 0.1));
}

.story-documents,
.story-extraction,
.story-risks,
.story-decision {
  position: absolute;
  inset: 4.25rem 1rem 1rem;
  z-index: 2;
}

.story-documents span {
  position: absolute;
  display: grid;
  width: clamp(6.8rem, 8.5vw, 8.3rem);
  height: clamp(8.8rem, 11vw, 10.6rem);
  place-items: end start;
  padding: 0.9rem;
  background: rgba(251, 248, 255, 0.9);
  color: var(--ink);
  border: 1px solid rgba(251, 248, 255, 0.42);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.24);
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.08em;
  transform-origin: center;
  text-transform: uppercase;
  transition: transform 520ms ease, opacity 360ms ease, background 260ms ease, border-color 260ms ease;
}

.story-documents span::before {
  content: "";
  position: absolute;
  inset: 1rem 1rem auto;
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(127, 94, 255, 0.34);
  box-shadow: 0 1rem 0 rgba(127, 94, 255, 0.18), 0 2rem 0 rgba(51, 43, 60, 0.1);
}

.story-documents span:nth-child(1) {
  top: 9%;
  left: 6%;
  transform: rotate(-10deg);
}

.story-documents span:nth-child(2) {
  top: 26%;
  left: 24%;
  transform: rotate(7deg);
}

.story-documents span:nth-child(3) {
  top: 13%;
  left: 44%;
  transform: rotate(-4deg);
}

.story-documents span:nth-child(4) {
  top: 44%;
  left: 14%;
  transform: rotate(13deg);
}

.story-documents span:nth-child(5) {
  top: 45%;
  left: 58%;
  transform: rotate(-9deg);
}

.story-extraction {
  display: grid;
  align-content: center;
  gap: 0.8rem;
  opacity: 0;
  transform: translateX(2rem);
  transition: opacity 360ms ease, transform 520ms ease;
}

.story-extraction span {
  position: relative;
  min-height: 3rem;
  display: flex;
  align-items: center;
  padding: 0.7rem 1rem 0.7rem 3.4rem;
  background: rgba(251, 248, 255, 0.1);
  border: 1px solid rgba(251, 248, 255, 0.18);
  color: rgba(251, 248, 255, 0.86);
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(127, 94, 255, 0.08);
}

.story-extraction span::before {
  content: "";
  position: absolute;
  left: 1rem;
  width: 1.1rem;
  height: 1.1rem;
  background: var(--amber);
  border-radius: 50%;
}

.story-extraction span::after {
  content: "";
  position: absolute;
  right: 1rem;
  width: 2.3rem;
  height: 0.34rem;
  border-radius: 999px;
  background: rgba(251, 248, 255, 0.18);
}

.story-risks {
  display: grid;
  align-content: center;
  gap: 0.85rem;
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 360ms ease, transform 520ms ease;
}

.story-risks span {
  min-height: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  background: rgba(251, 248, 255, 0.08);
  border: 1px solid rgba(255, 140, 222, 0.58);
  color: #f8f4ff;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.story-risks span::after {
  content: "Uncaptured";
  color: var(--amber);
}

.story-decision {
  inset: auto 1rem 1rem;
  min-height: 10.75rem;
  padding: 1rem;
  background: rgba(251, 248, 255, 0.94);
  color: var(--ink);
  border: 1px solid rgba(251, 248, 255, 0.6);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
  opacity: 0;
  transform: translateY(2rem) scale(0.98);
  transition: opacity 360ms ease, transform 520ms ease;
}

.story-decision small {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--violet);
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-decision strong {
  display: block;
  max-width: 12ch;
  font-size: clamp(2rem, 3.8vw, 3.35rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.story-decision span {
  display: block;
  max-width: 26rem;
  margin-top: 0.9rem;
  color: var(--ink-soft);
}

.story-copy {
  padding: clamp(0.5rem, 3vh, 2rem) 0;
}

.story-copy > h2 {
  position: static;
  margin: 0 0 clamp(2rem, 6vh, 3.5rem);
  font-size: clamp(2.3rem, 4.2vw, 4.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.story-step {
  min-height: clamp(17rem, 43vh, 28rem);
  display: grid;
  align-content: center;
  padding: 1.25rem 0 1.25rem 1.1rem;
  border-left: 2px solid rgba(251, 248, 255, 0.18);
  opacity: 0.4;
  transition: opacity 260ms ease, border-color 260ms ease, transform 260ms ease;
}

.story-step.is-active {
  border-color: var(--amber);
  opacity: 1;
  transform: translateX(0.35rem);
}

.story-step span {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-step h3 {
  max-width: 15ch;
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3vw, 3.1rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.story-step p {
  max-width: 31rem;
  margin: 0;
  color: rgba(251, 248, 255, 0.72);
  font-size: 1.05rem;
}

.story-section[data-story-state="structure"] .story-documents span,
.story-section[data-story-state="risk"] .story-documents span,
.story-section[data-story-state="decision"] .story-documents span {
  opacity: 0.18;
}

.story-section[data-story-state="chaos"] .story-board-head span {
  color: var(--amber);
}

.story-section[data-story-state="chaos"] .story-documents span {
  background: rgba(251, 248, 255, 0.92);
}

.story-section[data-story-state="chaos"] .story-pipeline {
  opacity: 0.52;
}

.story-section[data-story-state="structure"] .story-documents span:nth-child(1),
.story-section[data-story-state="risk"] .story-documents span:nth-child(1),
.story-section[data-story-state="decision"] .story-documents span:nth-child(1) {
  transform: translate(25rem, 2rem) rotate(0deg) scale(0.62);
}

.story-section[data-story-state="structure"] .story-documents span:nth-child(2),
.story-section[data-story-state="risk"] .story-documents span:nth-child(2),
.story-section[data-story-state="decision"] .story-documents span:nth-child(2) {
  transform: translate(16rem, -1rem) rotate(0deg) scale(0.62);
}

.story-section[data-story-state="structure"] .story-documents span:nth-child(3),
.story-section[data-story-state="risk"] .story-documents span:nth-child(3),
.story-section[data-story-state="decision"] .story-documents span:nth-child(3) {
  transform: translate(5rem, 2rem) rotate(0deg) scale(0.62);
}

.story-section[data-story-state="structure"] .story-documents span:nth-child(4),
.story-section[data-story-state="risk"] .story-documents span:nth-child(4),
.story-section[data-story-state="decision"] .story-documents span:nth-child(4) {
  transform: translate(18rem, -8rem) rotate(0deg) scale(0.62);
}

.story-section[data-story-state="structure"] .story-documents span:nth-child(5),
.story-section[data-story-state="risk"] .story-documents span:nth-child(5),
.story-section[data-story-state="decision"] .story-documents span:nth-child(5) {
  transform: translate(-6rem, -4rem) rotate(0deg) scale(0.62);
}

.story-section[data-story-state="structure"] .story-extraction,
.story-section[data-story-state="risk"] .story-extraction,
.story-section[data-story-state="decision"] .story-extraction {
  opacity: 1;
  transform: translateX(0);
}

.story-section[data-story-state="structure"] .story-board-head span {
  color: #ff8cde;
}

.story-section[data-story-state="structure"] .story-extraction {
  gap: 1rem;
}

.story-section[data-story-state="structure"] .story-extraction span {
  min-height: 4rem;
  border-color: rgba(255, 140, 222, 0.34);
  background:
    linear-gradient(90deg, rgba(255, 140, 222, 0.12), rgba(127, 94, 255, 0.08)),
    rgba(251, 248, 255, 0.08);
}

.story-section[data-story-state="structure"] .story-pipeline span:nth-child(2),
.story-section[data-story-state="structure"] .story-pipeline span:nth-child(3) {
  background: rgba(255, 140, 222, 0.42);
}

.story-section[data-story-state="risk"] .story-extraction,
.story-section[data-story-state="decision"] .story-extraction {
  opacity: 0;
  transform: translateX(-2.4rem) scale(0.96);
  pointer-events: none;
}

.story-section[data-story-state="risk"] .story-documents span {
  opacity: 0.055;
  filter: blur(1px);
}

.story-section[data-story-state="risk"] .story-documents span:nth-child(1) {
  transform: translate(26rem, 2.5rem) rotate(0deg) scale(0.46);
}

.story-section[data-story-state="risk"] .story-documents span:nth-child(2) {
  transform: translate(20rem, 4.5rem) rotate(0deg) scale(0.46);
}

.story-section[data-story-state="risk"] .story-documents span:nth-child(3) {
  transform: translate(13rem, 1.5rem) rotate(0deg) scale(0.46);
}

.story-section[data-story-state="risk"] .story-documents span:nth-child(4) {
  transform: translate(23rem, -1rem) rotate(0deg) scale(0.46);
}

.story-section[data-story-state="risk"] .story-documents span:nth-child(5) {
  transform: translate(7rem, 6rem) rotate(0deg) scale(0.46);
}

.story-section[data-story-state="risk"] .story-risks,
.story-section[data-story-state="decision"] .story-risks {
  opacity: 1;
  transform: translateY(0);
}

.story-section[data-story-state="risk"] .story-board-head span {
  color: var(--green);
}

.story-section[data-story-state="risk"] .story-risks span {
  position: relative;
  z-index: 4;
  border-color: rgba(33, 190, 118, 0.42);
  background:
    linear-gradient(90deg, rgba(13, 246, 157, 0.1), rgba(127, 94, 255, 0.08)),
    rgba(9, 6, 23, 0.76);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24);
}

.story-section[data-story-state="risk"] .story-risks span::after {
  color: var(--green);
}

.story-section[data-story-state="decision"] .story-risks {
  opacity: 0.14;
  transform: translateY(-1.4rem);
}

.story-section[data-story-state="decision"] .story-documents span,
.story-section[data-story-state="decision"] .story-extraction {
  opacity: 0.06;
}

.story-section[data-story-state="decision"] .story-decision {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.story-section[data-story-state="decision"] .story-board {
  border-color: rgba(127, 94, 255, 0.72);
  background:
    radial-gradient(circle at 74% 22%, rgba(186, 153, 255, 0.28), transparent 28%),
    radial-gradient(circle at 24% 78%, rgba(255, 140, 222, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(251, 248, 255, 0.12), rgba(251, 248, 255, 0.035));
}

.story-section[data-story-state="decision"] .story-board-head span {
  color: var(--violet-light);
}

.section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  scroll-margin-top: 5.5rem;
}

.section-inner {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.section-heading {
  max-width: 52rem;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-heading.compact {
  max-width: 42rem;
}

.section-heading h2,
.demo-card h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 5.1rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.security-layout > div > p,
.demo-card p {
  max-width: 43rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.enterprise-strip {
  background: var(--paper);
}

.risk-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(17rem, 0.72fr) minmax(25rem, 1.28fr);
  min-height: 25rem;
  margin: 0 0 1px;
  overflow: hidden;
  border: 1px solid rgba(48, 46, 54, 0.32);
  background:
    linear-gradient(135deg, rgba(251, 248, 255, 0.96), rgba(232, 222, 255, 0.62)),
    var(--surface);
  box-shadow:
    0 32px 96px rgba(76, 4, 129, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.risk-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(48, 46, 54, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(48, 46, 54, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(90deg, #000 0 42%, transparent 78%);
}

.risk-visual-head {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.2rem, 2.4vw, 1.8rem);
  align-content: space-between;
  padding: clamp(1.4rem, 3vw, 2.1rem);
  border-right: 1px solid rgba(48, 46, 54, 0.2);
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 140, 222, 0.14), transparent 12rem),
    rgba(251, 248, 255, 0.6);
}

.risk-visual-head span,
.governance-header span,
.workflow-node span,
.security-core,
.truth-core span {
  display: block;
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.risk-visual-head strong {
  max-width: 12ch;
  font-size: clamp(2.35rem, 4.2vw, 4.5rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.risk-summary {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(48, 46, 54, 0.16);
}

.risk-summary span {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: baseline;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(48, 46, 54, 0.12);
}

.risk-summary b {
  color: var(--ink);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 0.9;
}

.risk-summary small {
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.risk-command-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(0.9rem, 1.8vw, 1.2rem);
  min-width: 0;
  padding: clamp(1rem, 2.2vw, 1.45rem);
  background:
    radial-gradient(circle at 82% 22%, rgba(127, 94, 255, 0.22), transparent 15rem),
    linear-gradient(rgba(251, 248, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 248, 255, 0.055) 1px, transparent 1px),
    var(--black);
  background-size: auto, 30px 30px, 30px 30px, auto;
  color: #fff;
}

.risk-command-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 42%, rgba(255, 140, 222, 0.08) 42.2% 42.6%, transparent 42.8% 100%);
}

.risk-panel-top,
.risk-matrix,
.risk-ledger {
  position: relative;
  z-index: 1;
}

.risk-panel-top {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(251, 248, 255, 0.14);
}

.risk-panel-top span,
.risk-panel-top b {
  color: #ba99ff;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.risk-panel-top strong {
  color: rgba(251, 248, 255, 0.92);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.05;
}

.risk-panel-top b {
  padding: 0.45rem 0.58rem;
  border: 1px solid rgba(255, 140, 222, 0.36);
  background: rgba(255, 140, 222, 0.1);
  color: #ff8cde;
  line-height: 1;
  white-space: nowrap;
}

.risk-matrix {
  min-height: 18rem;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(186, 153, 255, 0.28);
  background:
    linear-gradient(90deg, transparent calc(33.33% - 1px), rgba(186, 153, 255, 0.18) 33.33% calc(33.33% + 1px), transparent calc(33.33% + 1px) calc(66.66% - 1px), rgba(186, 153, 255, 0.18) 66.66% calc(66.66% + 1px), transparent calc(66.66% + 1px)),
    linear-gradient(transparent calc(50% - 1px), rgba(186, 153, 255, 0.18) 50% calc(50% + 1px), transparent calc(50% + 1px)),
    rgba(251, 248, 255, 0.035);
}

.risk-axis {
  position: absolute;
  z-index: 3;
  color: rgba(251, 248, 255, 0.48);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.risk-axis-impact {
  top: 50%;
  left: 0.62rem;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
}

.risk-axis-likelihood {
  right: 0.75rem;
  bottom: 0.7rem;
}

.risk-zone {
  min-width: 0;
  padding: 0.75rem 0.75rem 0.75rem 1.85rem;
  border-right: 1px solid rgba(186, 153, 255, 0.08);
  border-bottom: 1px solid rgba(186, 153, 255, 0.08);
  color: rgba(251, 248, 255, 0.44);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.zone-critical {
  color: rgba(255, 140, 222, 0.86);
  background: linear-gradient(135deg, rgba(255, 140, 222, 0.14), rgba(127, 94, 255, 0.05));
}

.zone-owner {
  color: rgba(186, 153, 255, 0.82);
  background: rgba(127, 94, 255, 0.08);
}

.zone-control {
  color: rgba(251, 248, 255, 0.5);
}

.risk-marker {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  max-width: 15rem;
  padding: 0.48rem 0.58rem;
  border: 1px solid rgba(251, 248, 255, 0.24);
  background: rgba(14, 10, 27, 0.92);
  color: #fff;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.1;
}

.risk-marker i {
  display: grid;
  width: 1.45rem;
  height: 1.45rem;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(251, 248, 255, 0.1);
  color: currentColor;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 700;
}

.marker-critical {
  top: 18%;
  right: 7%;
  border-color: rgba(255, 140, 222, 0.54);
  color: #ff8cde;
}

.marker-review {
  top: 50%;
  left: 38%;
  border-color: rgba(186, 153, 255, 0.45);
  color: #ba99ff;
}

.marker-monitor {
  left: 8%;
  bottom: 16%;
  border-color: rgba(127, 94, 255, 0.4);
  color: #d4c5ff;
}

.risk-ledger {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  max-width: none;
}

.risk-ledger span {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
  padding: 0.7rem 0.75rem;
  overflow-wrap: anywhere;
  background: rgba(251, 248, 255, 0.07);
  border: 1px solid rgba(251, 248, 255, 0.13);
  color: rgba(251, 248, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 700;
}

.risk-ledger b {
  color: #ba99ff;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.risk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.risk-grid article,
.enterprise-card,
.security-grid article,
.stakeholder-grid article {
  padding: clamp(1.1rem, 2vw, 1.6rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 248, 255, 0.52);
}

.card-icon {
  width: 2.45rem;
  height: 2.45rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  padding: 0.52rem;
  margin-bottom: 1rem;
  color: var(--amber-dark);
  background:
    linear-gradient(135deg, rgba(127, 94, 255, 0.16), rgba(255, 140, 222, 0.12));
  border: 1px solid rgba(127, 94, 255, 0.24);
  border-radius: 6px;
}

.card-icon-light {
  color: #fff;
  background: rgba(127, 94, 255, 0.22);
  border-color: rgba(186, 153, 255, 0.34);
}

.risk-grid h3,
.enterprise-card h3,
.workflow h3,
.security-grid h3,
.stakeholder-grid h3 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.risk-grid p,
.enterprise-card p,
.workflow p,
.security-grid p,
.stakeholder-grid p,
.tab-panel p,
.faq-answer p {
  margin: 0;
  color: var(--muted);
}

.scroll-video-section {
  --cinema-scene-x: 0px;
  --cinema-scene-y: 0px;
  --cinema-scene-scale: 1;
  --cinema-product-x: 0px;
  --cinema-product-y: 72px;
  --cinema-product-opacity: 0.2;
  --cinema-risk-opacity: 0;
  --cinema-award-opacity: 0;
  --cinema-card-y: 0px;
  position: relative;
  min-height: 340vh;
  background: var(--black);
}

.scroll-video-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(rgba(251, 248, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 248, 255, 0.04) 1px, transparent 1px),
    #090613;
  background-size: 46px 46px;
}

.scroll-video-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform:
    translate3d(var(--cinema-scene-x), var(--cinema-scene-y), 0)
    scale(var(--cinema-scene-scale));
  transform-origin: center;
  transition: transform 80ms linear;
}

.cinema-grade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(250, 214, 158, 0.34), rgba(127, 94, 255, 0.18) 45%, rgba(14, 10, 27, 0.94) 100%),
    linear-gradient(90deg, rgba(14, 10, 27, 0.62), transparent 42%, rgba(14, 10, 27, 0.34));
}

.cinema-grade::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(251, 248, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 248, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.76;
}

.cinema-crosshair {
  position: absolute;
  z-index: 6;
  pointer-events: none;
  background: rgba(251, 248, 255, 0.55);
}

.cinema-crosshair-x {
  right: 0;
  bottom: 28%;
  left: 0;
  height: 1px;
}

.cinema-crosshair-y {
  top: 0;
  bottom: 0;
  left: 17%;
  width: 1px;
}

.cinema-district {
  position: absolute;
  right: -6%;
  bottom: -8%;
  left: -5%;
  height: 78%;
}

.cinema-canopy {
  position: absolute;
  left: 16%;
  bottom: 43%;
  width: 33rem;
  height: 12rem;
  border: 1px solid rgba(251, 248, 255, 0.32);
  border-radius: 50% 50% 18% 18%;
  background:
    linear-gradient(135deg, rgba(251, 248, 255, 0.28), rgba(251, 248, 255, 0.02)),
    repeating-linear-gradient(45deg, rgba(14, 10, 27, 0.64) 0 8px, rgba(251, 248, 255, 0.16) 8px 10px);
  box-shadow: 0 32px 80px rgba(14, 10, 27, 0.44);
  transform: rotate(-8deg) skewX(-10deg);
}

.cinema-tower {
  position: absolute;
  bottom: 15%;
  display: grid;
  align-content: end;
  gap: 0.7rem;
  padding: 1rem;
  border: 1px solid rgba(251, 248, 255, 0.24);
  background:
    linear-gradient(rgba(251, 248, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 248, 255, 0.08) 1px, transparent 1px),
    rgba(251, 248, 255, 0.12);
  background-size: 32px 32px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 24px 70px rgba(14, 10, 27, 0.36);
}

.cinema-tower span {
  display: block;
  height: 2.1rem;
  border: 1px solid rgba(251, 248, 255, 0.18);
  background: rgba(14, 10, 27, 0.22);
}

.tower-a {
  left: 4%;
  width: 22rem;
  height: 22rem;
}

.tower-b {
  left: 31%;
  width: 28rem;
  height: 17rem;
}

.tower-c {
  right: 7%;
  width: 26rem;
  height: 20rem;
}

.cinema-crane {
  position: absolute;
  bottom: 28%;
  width: 18rem;
  height: 16rem;
  opacity: 0.8;
}

.cinema-crane i {
  position: absolute;
  display: block;
  background: rgba(251, 248, 255, 0.58);
}

.cinema-crane i:nth-child(1) {
  bottom: 0;
  left: 2.5rem;
  width: 2px;
  height: 15rem;
  transform: rotate(10deg);
}

.cinema-crane i:nth-child(2) {
  top: 1rem;
  left: 0;
  width: 17rem;
  height: 2px;
  transform: rotate(-10deg);
}

.cinema-crane i:nth-child(3) {
  top: 1rem;
  right: 2rem;
  width: 1px;
  height: 8rem;
}

.crane-a {
  left: 28%;
}

.crane-b {
  right: 11%;
  bottom: 34%;
  transform: scaleX(-1);
}

.cinema-road {
  position: absolute;
  right: -4%;
  bottom: 0;
  left: -4%;
  height: 18%;
  background:
    linear-gradient(100deg, rgba(251, 248, 255, 0.18), transparent 16% 70%, rgba(251, 248, 255, 0.12)),
    rgba(14, 10, 27, 0.72);
  transform: skewY(-3deg);
}

.cinema-site-label {
  position: absolute;
  z-index: 3;
  padding: 0.55rem 0.68rem;
  border: 1px solid rgba(251, 248, 255, 0.24);
  background: rgba(14, 10, 27, 0.64);
  color: rgba(251, 248, 255, 0.88);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.label-a {
  left: 9%;
  bottom: 47%;
}

.label-b {
  left: 40%;
  bottom: 38%;
}

.label-c {
  right: 14%;
  bottom: 43%;
}

.cinema-product-layer {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: grid;
  place-items: center end;
  padding: 6rem min(7vw, 7rem) 7rem;
  opacity: var(--cinema-product-opacity);
  transform: translate3d(var(--cinema-product-x), var(--cinema-product-y), 0);
  transition:
    opacity 120ms linear,
    transform 120ms linear;
}

.cinema-product-frame {
  width: min(44rem, 48vw);
  min-height: 27rem;
  border: 1px solid rgba(186, 153, 255, 0.36);
  background:
    linear-gradient(rgba(251, 248, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 248, 255, 0.045) 1px, transparent 1px),
    rgba(14, 10, 27, 0.9);
  background-size: 34px 34px;
  box-shadow:
    0 40px 120px rgba(14, 10, 27, 0.58),
    inset 0 1px 0 rgba(251, 248, 255, 0.12);
}

.cinema-product-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(186, 153, 255, 0.18);
}

.cinema-product-head span,
.cinema-product-head strong,
.cinema-product-grid span,
.cinema-product-grid small,
.scroll-video-chapters {
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cinema-product-head span,
.cinema-product-grid span {
  color: #ba99ff;
  font-size: 0.72rem;
}

.cinema-product-head strong {
  color: rgba(251, 248, 255, 0.72);
  font-size: 0.7rem;
}

.cinema-product-grid {
  display: grid;
  grid-template-columns: minmax(9rem, 0.72fr) minmax(0, 1fr);
  gap: 1px;
  padding: 1rem;
  background: rgba(186, 153, 255, 0.16);
}

.cinema-source-stack,
.cinema-score-panel,
.cinema-risk-panel,
.cinema-award-panel {
  display: grid;
  gap: 0.5rem;
  min-height: 9rem;
  padding: 1rem;
  background: rgba(14, 10, 27, 0.82);
}

.cinema-source-stack {
  align-content: stretch;
}

.cinema-source-stack span {
  display: flex;
  align-items: center;
  padding: 0.65rem;
  border: 1px solid rgba(186, 153, 255, 0.18);
  background: rgba(251, 248, 255, 0.06);
}

.cinema-score-panel,
.cinema-risk-panel,
.cinema-award-panel {
  align-content: end;
}

.cinema-score-panel {
  background: rgba(251, 248, 255, 0.92);
  color: var(--ink);
}

.cinema-risk-panel {
  opacity: var(--cinema-risk-opacity);
  background: rgba(255, 140, 222, 0.1);
}

.cinema-award-panel {
  grid-column: 1 / -1;
  opacity: var(--cinema-award-opacity);
  background: linear-gradient(135deg, rgba(127, 94, 255, 0.26), rgba(255, 140, 222, 0.1));
}

.cinema-product-grid strong {
  color: currentColor;
  font-size: 2.65rem;
  line-height: 0.95;
}

.cinema-product-grid small {
  color: currentColor;
  font-size: 0.68rem;
  opacity: 0.72;
}

.scroll-video-card {
  position: absolute;
  z-index: 10;
  left: max(2rem, calc((100vw - 1180px) / 2));
  bottom: 6vh;
  width: min(38rem, calc(100% - 4rem));
  padding: 1.4rem 1.55rem 1.55rem;
  background: rgba(251, 248, 255, 0.95);
  color: var(--ink);
  border: 1px solid rgba(251, 248, 255, 0.72);
  box-shadow: 0 34px 110px rgba(14, 10, 27, 0.32);
  transform: translateY(var(--cinema-card-y));
}

.scroll-video-card::before {
  content: "";
  display: block;
  width: 6.8rem;
  height: 0.38rem;
  margin: -1.4rem 0 1.1rem;
  background: var(--amber);
}

.scroll-video-card h2 {
  max-width: 11ch;
  margin: 0;
  font-size: 3.15rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.scroll-video-card p:not(.eyebrow) {
  max-width: 31rem;
  margin: 1rem 0 1.2rem;
  color: var(--ink-soft);
  font-size: 1rem;
}

.scroll-video-card .text-link {
  color: var(--ink);
}

.scroll-video-chapters {
  position: absolute;
  right: max(2rem, calc((100vw - 1180px) / 2));
  bottom: 7vh;
  z-index: 10;
  display: grid;
  gap: 0.45rem;
  width: min(15rem, calc(100% - 4rem));
  color: rgba(251, 248, 255, 0.58);
  font-size: 0.72rem;
}

.scroll-video-chapters span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.4rem;
  padding: 0.5rem 0.65rem;
  border: 1px solid rgba(251, 248, 255, 0.14);
  background: rgba(14, 10, 27, 0.55);
}

.scroll-video-chapters b {
  color: #ba99ff;
}

.scroll-video-section[data-cinema-state="intake"] [data-cinema-chapter="intake"],
.scroll-video-section[data-cinema-state="normalize"] [data-cinema-chapter="normalize"],
.scroll-video-section[data-cinema-state="risk"] [data-cinema-chapter="risk"],
.scroll-video-section[data-cinema-state="award"] [data-cinema-chapter="award"] {
  border-color: rgba(255, 140, 222, 0.44);
  background: rgba(127, 94, 255, 0.24);
  color: #fff;
}

.platform-section,
.security-section,
.demo-section {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.platform-section {
  padding-top: clamp(4rem, 7vw, 6rem);
}

.module-tabs {
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.tab-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-bottom: 1px solid var(--ink);
}

.tab-button {
  min-height: 3.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 0.7rem;
  background: transparent;
  border-right: 1px solid var(--ink);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

.tab-icon {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.tab-button:last-child {
  border-right: 0;
}

.tab-button.is-active {
  background: var(--ink);
  color: var(--paper);
}

.tab-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1.1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(1.25rem, 4vw, 3rem);
}

.tab-panel[hidden] {
  display: none;
}

.tab-panel h3 {
  max-width: 13ch;
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.check-list {
  display: grid;
  gap: 0.55rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--green);
  border-radius: 50%;
}

.product-shot {
  min-height: 25rem;
  padding: 1rem;
  border: 1px solid var(--ink);
  background:
    linear-gradient(rgba(48, 46, 54, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(48, 46, 54, 0.04) 1px, transparent 1px),
    var(--surface);
  background-size: 18px 18px;
}

.shot-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.9rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.shot-toolbar strong {
  color: var(--blueprint);
}

.matrix-table {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.matrix-table span,
.matrix-table strong,
.matrix-table b {
  min-height: 3.4rem;
  display: grid;
  align-items: center;
  padding: 0.75rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 248, 255, 0.72);
}

.matrix-table span {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
}

.matrix-table b {
  color: var(--blueprint);
  font-family: var(--font-mono);
}

.price-stack span {
  display: flex;
  width: var(--width);
  min-height: 3rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0.75rem;
  background: var(--steel);
  border-left: 5px solid var(--blueprint);
  font-weight: 600;
}

.price-stack span:nth-child(3) {
  border-left-color: var(--amber);
}

.price-stack span:nth-child(4) {
  border-left-color: var(--red);
}

.price-stack b {
  font-family: var(--font-mono);
  white-space: nowrap;
}

.contract-deltas {
  display: grid;
  gap: 1rem;
}

.contract-deltas p {
  padding: 1rem;
  border: 1px solid var(--line);
  background: rgba(251, 248, 255, 0.76);
}

mark {
  padding: 0.08rem 0.25rem;
  background: rgba(127, 94, 255, 0.18);
  color: var(--amber-dark);
  font-family: var(--font-mono);
  font-size: 0.9em;
}

.portfolio-map {
  grid-template-columns: repeat(6, 1fr);
}

.portfolio-map span {
  min-height: 4rem;
}

.query-board,
.cost-analysis-stack {
  display: grid;
  gap: 0.85rem;
}

.query-board div,
.cost-analysis-stack div {
  display: grid;
  gap: 0.28rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  background: rgba(251, 248, 255, 0.76);
}

.query-board span,
.cost-analysis-stack span,
.vendor-intel-card span {
  color: var(--amber-dark);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.query-board strong,
.cost-analysis-stack strong {
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.1;
}

.query-board small {
  color: var(--muted);
  font-weight: 700;
}

.cost-analysis-stack div {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  border-left: 5px solid var(--blueprint);
}

.cost-analysis-stack div:nth-child(2) {
  border-left-color: var(--red);
}

.cost-analysis-stack div:nth-child(3) {
  border-left-color: var(--green);
}

.cost-analysis-stack strong {
  font-family: var(--font-mono);
}

.vendor-intel-card {
  display: grid;
  gap: 1rem;
  min-height: 18rem;
  align-content: center;
  padding: 1.2rem;
  border: 1px solid rgba(127, 94, 255, 0.28);
  background:
    radial-gradient(circle at 72% 22%, rgba(127, 94, 255, 0.18), transparent 34%),
    rgba(251, 248, 255, 0.78);
}

.vendor-intel-card strong {
  color: var(--ink);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.vendor-intel-card div {
  display: grid;
  gap: 0.5rem;
}

.vendor-intel-card small {
  display: block;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
  color: var(--ink-soft);
  font-weight: 700;
}

.product-suite-heading {
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.58fr);
  align-items: end;
}

.suite-index,
.nav-menu-label,
.graph-panel-head span {
  color: var(--blueprint);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.suite-overview-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.35rem);
}

.suite-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(17rem, 0.58fr) minmax(0, 0.92fr);
  gap: clamp(1.2rem, 2.4vw, 2rem);
  align-items: stretch;
  min-height: 34rem;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(48, 46, 54, 0.16);
  background:
    linear-gradient(rgba(48, 46, 54, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(48, 46, 54, 0.035) 1px, transparent 1px),
    rgba(251, 248, 255, 0.86);
  background-size: 34px 34px;
  box-shadow: 0 24px 80px rgba(31, 16, 70, 0.08);
}

.suite-panel::before {
  content: "";
  position: absolute;
  inset: auto 14% -42% auto;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(127, 94, 255, 0.18), transparent 68%);
  pointer-events: none;
}

.suite-panel-decision {
  color: #fff;
  border-color: rgba(186, 153, 255, 0.24);
  background:
    linear-gradient(rgba(251, 248, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 248, 255, 0.045) 1px, transparent 1px),
    linear-gradient(145deg, #090613 0%, #130d24 52%, #21143d 100%);
  background-size: 34px 34px, 34px 34px, auto;
}

.suite-panel-decision .suite-index {
  color: #ba99ff;
}

.suite-panel-intelligence {
  background:
    linear-gradient(rgba(127, 94, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 94, 255, 0.05) 1px, transparent 1px),
    linear-gradient(160deg, rgba(251, 248, 255, 0.94), rgba(241, 236, 255, 0.74));
  background-size: 30px 30px, 30px 30px, auto;
}

.suite-panel-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  gap: 0.85rem;
  padding: clamp(0.6rem, 1.5vw, 1rem);
}

.suite-panel-copy h3 {
  margin: 0;
  color: inherit;
  font-size: clamp(2.25rem, 4.4vw, 4.4rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.suite-panel-copy p {
  max-width: 28rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.5;
}

.suite-panel-decision .suite-panel-copy p {
  color: rgba(251, 248, 255, 0.62);
}

.suite-product-shot {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  min-height: 22rem;
  margin: 0;
  padding: clamp(0.8rem, 1.7vw, 1.15rem);
  border: 1px solid rgba(127, 94, 255, 0.22);
  background:
    linear-gradient(rgba(127, 94, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 94, 255, 0.06) 1px, transparent 1px),
    rgba(255, 255, 255, 0.62);
  background-size: 22px 22px;
  box-shadow: 0 22px 72px rgba(31, 16, 70, 0.12);
}

.suite-panel-decision .suite-product-shot {
  background:
    linear-gradient(rgba(251, 248, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 248, 255, 0.045) 1px, transparent 1px),
    rgba(251, 248, 255, 0.06);
  border-color: rgba(186, 153, 255, 0.24);
  box-shadow: 0 24px 88px rgba(0, 0, 0, 0.24);
}

.suite-product-shot img {
  display: block;
  width: 100%;
  max-height: 26rem;
  object-fit: contain;
  border-radius: 8px;
  filter: saturate(0.98) contrast(1.02);
}

.suite-product-grid {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.7rem;
  padding: 0.85rem;
  border: 1px solid rgba(127, 94, 255, 0.18);
  background: rgba(127, 94, 255, 0.08);
}

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

.suite-product-grid a {
  display: grid;
  grid-template-columns: 3.55rem minmax(0, 1fr);
  gap: 0.28rem 0.8rem;
  align-items: center;
  min-height: 7.2rem;
  padding: 0.85rem;
  border: 1px solid rgba(127, 94, 255, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.suite-panel-decision .suite-product-grid a {
  background: rgba(251, 248, 255, 0.065);
  color: #fff;
}

.suite-product-grid a:hover {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(127, 94, 255, 0.38);
  transform: translateY(-2px);
}

.suite-panel-decision .suite-product-grid a:hover {
  background: rgba(127, 94, 255, 0.2);
}

.suite-product-grid img {
  grid-row: 1 / span 2;
  width: 3.55rem;
  height: 3.55rem;
  border: 1px solid rgba(127, 94, 255, 0.2);
  border-radius: 7px;
  object-fit: cover;
  background: rgba(251, 248, 255, 0.72);
}

.suite-product-grid span {
  color: var(--blueprint);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.suite-panel-decision .suite-product-grid span {
  color: #ba99ff;
}

.suite-product-grid strong {
  color: inherit;
  font-size: 0.94rem;
  line-height: 1.08;
}

.suite-tabs {
  display: grid;
  gap: clamp(2rem, 3.4vw, 3rem);
}

/* ---- Segmented suite selector ---- */
.suite-tab-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
  width: min(48rem, 100%);
  padding: 0.4rem;
  border: 1px solid var(--ui-line);
  border-radius: 16px;
  background: var(--ui-bg-soft);
  box-shadow: var(--ui-shadow-sm);
}

.suite-tab {
  display: grid;
  justify-items: start;
  align-content: center;
  gap: 0.28rem;
  min-height: 4.9rem;
  padding: 0.9rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 11px;
  background: transparent;
  color: var(--ui-muted);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease, color 180ms ease;
}

.suite-tab:hover {
  background: rgba(255, 255, 255, 0.6);
}

.suite-tab-index {
  color: var(--violet);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.suite-tab-name {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.15;
}

.suite-tab-meta {
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.25;
}

.suite-tab.is-active {
  border-color: var(--ui-line);
  background: var(--ui-bg);
  box-shadow: var(--ui-shadow);
  color: var(--ink-soft);
}

.suite-tab.is-active .suite-tab-index {
  color: var(--amber-dark);
}

/* ---- Panels ---- */
.suite-tab-panel {
  display: grid;
  gap: clamp(1.75rem, 3vw, 2.75rem);
}

.suite-tab-panel[hidden] {
  display: none;
}

.suite-tab-panel.is-active {
  animation: suitePanelIn 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes suitePanelIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.suite-panel-intro {
  display: grid;
  gap: 0.75rem;
  max-width: 52rem;
}

.suite-panel-intro h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.suite-panel-intro p {
  margin: 0;
  max-width: 42rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.55;
}

/* ---- Showcase: product window + capability highlights ---- */
.suite-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: clamp(1.5rem, 2.6vw, 2.5rem);
  align-items: start;
}

/* ===== Realistic app window ===== */
.app-window {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--ui-line);
  border-radius: var(--ui-radius);
  background: var(--ui-bg);
  box-shadow: var(--ui-shadow);
}

.app-bar {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1.05rem;
  border-bottom: 1px solid var(--ui-line-soft);
  background: linear-gradient(180deg, #fcfbff, #f7f5fd);
}

.app-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ui-ink);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.app-logo {
  height: 1.5rem;
  width: auto;
  object-fit: contain;
}

.app-crumb {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  color: var(--ui-muted);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.app-bar-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex: 0 0 auto;
}

.app-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  background: var(--ui-warn-bg);
  color: var(--ui-warn);
  font-size: 0.74rem;
  font-weight: 700;
}

.app-status::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: currentColor;
}

.app-status--neutral {
  background: rgba(124, 77, 255, 0.12);
  color: var(--amber-dark);
}

.app-action {
  padding: 0.42rem 0.78rem;
  border-radius: 8px;
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(109, 40, 217, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.app-action--ghost {
  background: #fff;
  border: 1px solid var(--ui-line);
  color: var(--ui-ink);
  box-shadow: var(--ui-shadow-sm);
}

.app-body {
  display: grid;
  grid-template-columns: 9.8rem minmax(0, 1fr);
}

.app-rail {
  display: grid;
  align-content: start;
  gap: 0.15rem;
  padding: 0.85rem 0.6rem;
  border-right: 1px solid var(--ui-line-soft);
  background: #faf9fd;
}

.app-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.6rem;
  border-radius: 8px;
  color: var(--ui-muted);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

.app-nav::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 3px;
  background: currentColor;
  opacity: 0.45;
}

.app-nav.is-active {
  background: rgba(124, 77, 255, 0.12);
  color: var(--amber-dark);
}

.app-nav.is-active::before {
  opacity: 1;
}

.app-main {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  padding: 1.1rem 1.15rem 1.2rem;
}

.app-main-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.app-main-title {
  color: var(--ui-ink);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.app-action--award {
  background: linear-gradient(135deg, #16a34a, #0f7a37);
  box-shadow: 0 2px 10px rgba(15, 122, 55, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* ---- Evaluation status chips ---- */
.eval-chips {
  display: inline-flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.eval-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0.26rem 0.6rem;
  border-radius: 999px;
  background: var(--ui-bg-soft);
  color: var(--ui-muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.eval-chip--done {
  background: var(--ui-ok-bg);
  color: var(--ui-ok);
}

.eval-chip--done::before {
  content: "\2713";
  font-weight: 800;
}

/* ---- Top ranked vendor (featured) ---- */
.rank-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1.15rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(22, 163, 74, 0.28);
  border-radius: var(--ui-radius-inner);
  background: linear-gradient(180deg, rgba(22, 163, 74, 0.07), rgba(22, 163, 74, 0.02));
}

.rank-donut {
  position: relative;
  width: 5.6rem;
  height: 5.6rem;
  flex: 0 0 auto;
}

.rank-donut svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.rank-donut-track {
  fill: none;
  stroke: rgba(20, 12, 46, 0.08);
  stroke-width: 7;
}

.rank-donut-value {
  fill: none;
  stroke: var(--ui-ok);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 170.5 213.6;
}

.rank-donut-num {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform: translateY(-0.3rem);
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ui-ink);
}

.rank-donut-cap {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform: translateY(0.85rem);
  color: var(--ui-muted);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rank-body {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
}

.rank-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.rank-name {
  color: var(--ui-ink);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.rank-badge {
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: #fbe7a6;
  color: #7a5a06;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rank-metric {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr) 3rem;
  align-items: center;
  gap: 0.6rem;
}

.rank-metric-label {
  color: var(--ui-muted);
  font-size: 0.76rem;
  font-weight: 600;
}

.rank-bar {
  height: 0.5rem;
  border-radius: 999px;
  background: rgba(20, 12, 46, 0.07);
  overflow: hidden;
}

.rank-bar span {
  display: block;
  width: var(--v, 0%);
  height: 100%;
  border-radius: 999px;
}

.rank-bar--tech span { background: var(--ui-tech); }
.rank-bar--comm span { background: var(--ui-ok); }

.rank-metric-value {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ui-ink);
  text-align: right;
}

/* ---- Vendor leaderboard (#2, #3) ---- */
.lead-board {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--ui-line-soft);
  border-radius: var(--ui-radius-inner);
  background: var(--ui-line-soft);
}

.lead-row {
  display: grid;
  grid-template-columns: 1.5rem minmax(0, 1fr) 6.5rem 3rem;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.85rem;
  background: var(--ui-bg);
}

.lead-rank {
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 7px;
  background: var(--ui-bg-soft);
  color: var(--ui-muted);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
}

.lead-name {
  color: var(--ui-ink);
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lead-bars {
  display: grid;
  gap: 0.28rem;
}

.lead-bar {
  height: 0.32rem;
  border-radius: 999px;
  background: rgba(20, 12, 46, 0.07);
  overflow: hidden;
}

.lead-bar span {
  display: block;
  width: var(--v, 0%);
  height: 100%;
  border-radius: 999px;
}

.lead-bar--tech span { background: var(--ui-tech); }
.lead-bar--comm span { background: var(--ui-ok); }

.lead-overall {
  font-family: var(--font-mono);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ui-ink);
  text-align: right;
}

/* ---- Cost intelligence dashboard ---- */
.app-trend {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: var(--ui-ok-bg);
  color: var(--ui-ok);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
}

.app-trend::before {
  content: "▲";
  font-size: 0.62rem;
}

.cost-graph {
  position: relative;
  display: grid;
  gap: 0.5rem;
  padding: 0.9rem 0.95rem 0.7rem;
  border: 1px solid var(--ui-line-soft);
  border-radius: var(--ui-radius-inner);
  background: linear-gradient(180deg, #fdfcff, #f8f6fd);
}

.cost-graph svg {
  width: 100%;
  height: 8.5rem;
}

.cost-grid {
  stroke: rgba(20, 12, 46, 0.08);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.cost-bench {
  stroke: rgba(20, 12, 46, 0.28);
  stroke-width: 1;
  stroke-dasharray: 4 4;
  vector-effect: non-scaling-stroke;
}

.cost-area {
  fill: rgba(124, 77, 255, 0.12);
  stroke: none;
}

.cost-line {
  fill: none;
  stroke: var(--violet);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.cost-dot {
  fill: #fff;
  stroke: #6d28d9;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.cost-axis {
  display: flex;
  justify-content: space-between;
  color: var(--ui-muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.kpi {
  display: grid;
  gap: 0.25rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--ui-line-soft);
  border-radius: var(--ui-radius-inner);
  background: var(--ui-bg);
}

.kpi span {
  color: var(--ui-muted);
  font-size: 0.74rem;
  font-weight: 600;
}

.kpi strong {
  color: var(--ui-ink);
  font-family: var(--font-mono);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.kpi strong em {
  font-size: 0.78rem;
  font-style: normal;
  color: var(--ui-muted);
}

.kpi strong.kpi-up {
  color: var(--ui-ok);
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.signal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.55rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--ui-line-soft);
  border-radius: var(--ui-radius-inner);
  background: var(--ui-bg);
  color: var(--ui-muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.signal strong {
  flex: 1 1 100%;
  color: var(--ui-ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.signal-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--ui-muted);
}

.signal-dot.ok {
  background: var(--ui-ok);
}

.signal-dot.warn {
  background: var(--ui-warn);
}

.signal-dot.alert {
  background: var(--ui-alert);
}

/* ---- Capability highlights (right column) ---- */
.suite-highlights {
  display: grid;
  align-content: start;
  gap: 0.7rem;
}

.suite-highlight {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  gap: 0.9rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--ui-line);
  border-radius: 14px;
  background: var(--ui-bg);
  box-shadow: var(--ui-shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.suite-highlight:hover {
  transform: translateY(-2px);
  box-shadow: var(--ui-shadow);
}

.suite-highlight-index {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 10px;
  background: rgba(124, 77, 255, 0.1);
  color: var(--amber-dark);
  font-family: var(--font-mono);
  font-size: 0.86rem;
  font-weight: 700;
}

.suite-highlight h4 {
  margin: 0 0 0.3rem;
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.2;
}

.suite-highlight p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* ---- Product breakdown / index ---- */
.suite-breakdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 0.75rem;
}

.suite-breakdown a {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.45rem 0.85rem;
  padding: 1.05rem 2.4rem 1.05rem 1.1rem;
  border: 1px solid var(--ui-line);
  border-radius: 14px;
  background: var(--ui-bg);
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--ui-shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.suite-breakdown a:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 77, 255, 0.4);
  box-shadow: var(--ui-shadow);
}

.suite-breakdown-index {
  color: var(--amber-dark);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.suite-breakdown strong {
  color: inherit;
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.15;
}

.suite-breakdown em {
  grid-column: 2;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-style: normal;
  line-height: 1.45;
}

.suite-breakdown .product-mark {
  grid-row: 1 / span 2;
  grid-column: 1;
  width: 2.1rem;
  height: 2.1rem;
  --pm-bg: rgba(255, 255, 255, 0.06);
  --pm-line: #b9a3ff;
  --pm-accent: #d8c6ff;
  box-shadow: none;
}

.suite-breakdown a::after {
  content: "";
  position: absolute;
  top: 1.35rem;
  right: 1.1rem;
  width: 0.55rem;
  height: 0.55rem;
  border-top: 2px solid var(--ui-muted);
  border-right: 2px solid var(--ui-muted);
  transform: rotate(45deg);
  transition: transform 200ms ease, border-color 200ms ease;
}

.suite-breakdown a:hover::after {
  border-color: var(--amber-dark);
  transform: translate(2px, -2px) rotate(45deg);
}

@media (prefers-reduced-motion: reduce) {
  .suite-tab-panel.is-active {
    animation: none;
  }

  .suite-highlight,
  .suite-breakdown a,
  .suite-breakdown a::after {
    transition: none;
  }
}

/* ---- Responsive ---- */
@media (max-width: 1080px) {
  .suite-showcase {
    grid-template-columns: 1fr;
  }

  .suite-highlights {
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  }
}

@media (max-width: 720px) {
  .suite-tab-list {
    grid-template-columns: 1fr;
  }

  .app-body {
    grid-template-columns: 1fr;
  }

  .app-rail {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    border-right: 0;
    border-bottom: 1px solid var(--ui-line-soft);
  }

  .app-nav {
    padding: 0.4rem 0.65rem;
  }

  .lead-row {
    grid-template-columns: 1.5rem minmax(0, 1fr) auto;
    gap: 0.7rem;
  }

  .lead-bars {
    display: none;
  }

  .rank-metric {
    grid-template-columns: 4.4rem minmax(0, 1fr) 2.8rem;
    gap: 0.5rem;
  }

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

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

  .suite-breakdown {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .app-crumb {
    display: none;
  }

  .kpi strong {
    font-size: 1.05rem;
  }
}


.product-mark {
  --pm-bg: rgba(127, 94, 255, 0.1);
  --pm-line: #7f5eff;
  --pm-accent: #ff8cde;
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  align-self: start;
  border: 1px solid color-mix(in srgb, var(--pm-line) 38%, transparent);
  border-radius: 9px;
  background:
    linear-gradient(rgba(127, 94, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 94, 255, 0.08) 1px, transparent 1px),
    var(--pm-bg);
  background-size: 9px 9px, 9px 9px, auto;
  box-shadow: 0 12px 28px rgba(31, 16, 70, 0.1);
}

.suite-card-dark .product-mark,
.product-page-switcher a:hover .product-mark,
.product-page-switcher a.is-current .product-mark {
  --pm-bg: rgba(251, 248, 255, 0.08);
  --pm-line: #ba99ff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.product-mark::before,
.product-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  box-sizing: border-box;
}

.product-mark-scope::before {
  width: 1.22rem;
  height: 1.22rem;
  border: 2px solid var(--pm-line);
  border-radius: 4px;
}

.product-mark-scope::after {
  width: 1.55rem;
  height: 1px;
  background: var(--pm-accent);
  box-shadow: 0 -0.38rem 0 -0.5px var(--pm-line), 0 0.38rem 0 -0.5px var(--pm-line);
  transform: rotate(45deg);
}

.product-mark-rfp::before {
  width: 1.05rem;
  height: 1.42rem;
  border: 2px solid var(--pm-line);
  border-radius: 3px;
  background: linear-gradient(135deg, transparent 0 72%, color-mix(in srgb, var(--pm-line) 22%, transparent) 73%);
}

.product-mark-rfp::after {
  width: 0.56rem;
  height: 0.36rem;
  border-top: 2px solid var(--pm-accent);
  border-bottom: 2px solid var(--pm-line);
  transform: translateY(0.18rem);
}

.product-mark-prequal::before {
  width: 1.45rem;
  height: 1.05rem;
  border: 2px solid var(--pm-line);
  border-bottom: 0;
  border-radius: 0.7rem 0.7rem 0 0;
}

.product-mark-prequal::after {
  width: 0.82rem;
  height: 0.42rem;
  border-left: 2px solid var(--pm-accent);
  border-bottom: 2px solid var(--pm-accent);
  transform: translate(0.12rem, 0.22rem) rotate(-45deg);
}

.product-mark-eval::before {
  width: 1.42rem;
  height: 1.42rem;
  border: 2px solid var(--pm-line);
  background:
    linear-gradient(90deg, transparent 31%, var(--pm-line) 32% 35%, transparent 36% 64%, var(--pm-line) 65% 68%, transparent 69%),
    linear-gradient(transparent 31%, var(--pm-line) 32% 35%, transparent 36% 64%, var(--pm-line) 65% 68%, transparent 69%);
  opacity: 0.95;
}

.product-mark-eval::after {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--pm-accent);
  transform: translate(0.36rem, -0.36rem);
}

.product-mark-contract::before {
  width: 1.1rem;
  height: 1.42rem;
  border: 2px solid var(--pm-line);
  border-radius: 3px;
}

.product-mark-contract::after {
  width: 0.9rem;
  height: 0.95rem;
  border-left: 2px solid var(--pm-accent);
  border-right: 2px solid var(--pm-accent);
  transform: scaleX(0.86);
}

.product-mark-cost::before {
  width: 1.48rem;
  height: 1.18rem;
  border-left: 2px solid var(--pm-line);
  border-bottom: 2px solid var(--pm-line);
}

.product-mark-cost::after {
  width: 1.36rem;
  height: 1rem;
  background:
    linear-gradient(var(--pm-line), var(--pm-line)) 8% 72% / 0.22rem 42% no-repeat,
    linear-gradient(var(--pm-accent), var(--pm-accent)) 48% 46% / 0.22rem 72% no-repeat,
    linear-gradient(var(--pm-line), var(--pm-line)) 88% 28% / 0.22rem 92% no-repeat;
}

.product-mark-vendor::before {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: var(--pm-accent);
  box-shadow: -0.55rem 0.5rem 0 -1px var(--pm-line), 0.55rem 0.5rem 0 -1px var(--pm-line);
}

.product-mark-vendor::after {
  width: 1.42rem;
  height: 0.82rem;
  border-right: 2px solid color-mix(in srgb, var(--pm-line) 72%, transparent);
  border-bottom: 2px solid color-mix(in srgb, var(--pm-line) 72%, transparent);
  border-left: 2px solid color-mix(in srgb, var(--pm-line) 72%, transparent);
  border-radius: 0 0 0.7rem 0.7rem;
  transform: translateY(0.18rem);
}

.product-mark-graph::before {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--pm-accent);
  box-shadow: -0.62rem -0.45rem 0 -1px var(--pm-line), 0.62rem -0.45rem 0 -1px var(--pm-line), 0 0.64rem 0 -1px var(--pm-line);
}

.product-mark-graph::after {
  width: 1.55rem;
  height: 1.35rem;
  border-top: 2px solid color-mix(in srgb, var(--pm-line) 70%, transparent);
  border-right: 2px solid color-mix(in srgb, var(--pm-line) 70%, transparent);
  border-left: 2px solid color-mix(in srgb, var(--pm-line) 70%, transparent);
  transform: translateY(0.12rem) rotate(45deg) scale(0.78);
}

.button .product-mark,
.product-chip .product-mark,
.site-footer .product-mark {
  display: none;
}

.knowledge-graph-visual {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
  border: 1px solid rgba(127, 94, 255, 0.28);
  background:
    linear-gradient(rgba(48, 46, 54, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(48, 46, 54, 0.06) 1px, transparent 1px),
    rgba(255, 255, 255, 0.48);
  background-size: 28px 28px;
}

.knowledge-graph-visual::before,
.knowledge-graph-visual::after {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(127, 94, 255, 0.25);
  transform: rotate(18deg);
}

.knowledge-graph-visual::after {
  inset: 28% 18%;
  transform: rotate(-15deg);
}

.knowledge-graph-visual i {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(127, 94, 255, 0.52), transparent);
  transform-origin: center;
}

.knowledge-graph-visual i:nth-of-type(1) {
  top: 37%;
  left: 16%;
  width: 68%;
  transform: rotate(15deg);
}

.knowledge-graph-visual i:nth-of-type(2) {
  top: 55%;
  left: 12%;
  width: 76%;
  transform: rotate(-18deg);
}

.knowledge-graph-visual i:nth-of-type(3) {
  top: 50%;
  left: 28%;
  width: 44%;
  transform: rotate(90deg);
}

.graph-node {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.5rem;
  min-height: 3rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(127, 94, 255, 0.38);
  background: rgba(251, 248, 255, 0.84);
  color: var(--ink);
  font-weight: 800;
  text-align: center;
  box-shadow: 0 18px 46px rgba(31, 16, 70, 0.12);
}

.graph-node-core {
  top: 50%;
  left: 50%;
  min-width: 11.5rem;
  min-height: 5.5rem;
  color: #fff;
  background: #0b0716;
  transform: translate(-50%, -50%);
}

.graph-node-cost {
  top: 11%;
  left: 10%;
}

.graph-node-vendor {
  top: 16%;
  right: 8%;
}

.graph-node-scope {
  bottom: 12%;
  left: 12%;
}

.graph-node-contract {
  right: 9%;
  bottom: 14%;
}

.product-preview-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(22rem, 1.22fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.product-page-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1.8rem;
  border: 1px solid var(--line);
  background: var(--line);
}

.product-page-links a {
  display: grid;
  grid-template-columns: 2.6rem auto minmax(0, 1fr);
  gap: 0.42rem;
  min-height: 9rem;
  padding: 1rem;
  background: rgba(251, 248, 255, 0.66);
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.product-page-links a:hover {
  background: var(--surface);
  transform: translateY(-2px);
}

.product-page-links span:not(.product-mark),
.product-chip,
.product-subnav a,
.product-detail-kicker,
.construction-motion-caption {
  color: var(--amber-dark);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-page-links strong {
  grid-column: 3;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.08;
}

.product-page-links small {
  grid-column: 3;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.35;
}

.product-page-links .product-mark {
  grid-row: 1 / span 3;
  grid-column: 1;
}

.product-page-links span:not(.product-mark) {
  grid-row: 1 / span 3;
  grid-column: 2;
}

.intelligence-graph-panel {
  margin: 0;
  padding: clamp(1rem, 2.5vw, 1.35rem);
  border: 1px solid rgba(127, 94, 255, 0.28);
  background:
    linear-gradient(rgba(251, 248, 255, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 248, 255, 0.055) 1px, transparent 1px),
    linear-gradient(145deg, #080512 0%, #160d2b 55%, #26134f 100%);
  background-size: 34px 34px, 34px 34px, auto;
  box-shadow:
    0 38px 120px rgba(31, 16, 70, 0.22),
    inset 0 1px 0 rgba(251, 248, 255, 0.12);
}

.graph-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  color: #fff;
}

.graph-panel-head strong {
  color: rgba(251, 248, 255, 0.88);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.graph-field {
  position: relative;
  min-height: clamp(29rem, 42vw, 36rem);
  overflow: hidden;
  border: 1px solid rgba(186, 153, 255, 0.24);
  background:
    radial-gradient(circle at 50% 52%, rgba(127, 94, 255, 0.24), transparent 33%),
    linear-gradient(rgba(251, 248, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 248, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 36px 36px, 36px 36px;
}

.graph-link {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 34%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 140, 222, 0.72), rgba(127, 94, 255, 0.08));
  transform-origin: left center;
}

.link-a {
  transform: rotate(-33deg);
}

.link-b {
  transform: rotate(26deg);
}

.link-c {
  transform: rotate(144deg);
}

.link-d {
  transform: rotate(212deg);
}

.graph-orbit {
  position: absolute;
  inset: 20%;
  border: 1px solid rgba(186, 153, 255, 0.22);
  transform: rotate(-12deg);
}

.graph-orbit::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 140, 222, 0.24);
  transform: rotate(24deg);
}

.graph-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: min(14rem, 44%);
  min-height: 8.5rem;
  place-items: center;
  padding: 1rem;
  border: 1px solid rgba(251, 248, 255, 0.28);
  background: #0b0716;
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transform: translate(-50%, -50%);
}

.graph-core::before {
  content: "";
  position: absolute;
  inset: -1.2rem;
  z-index: -1;
  border: 1px solid rgba(127, 94, 255, 0.34);
}

.graph-pill {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-width: 6.4rem;
  min-height: 3rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(186, 153, 255, 0.3);
  background: rgba(251, 248, 255, 0.92);
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 18px 48px rgba(9, 6, 19, 0.2);
}

.pill-a {
  top: 11%;
  left: 12%;
}

.pill-b {
  top: 17%;
  right: 12%;
}

.pill-c {
  top: 46%;
  left: 5%;
}

.pill-d {
  right: 5%;
  top: 47%;
}

.pill-e {
  left: 13%;
  bottom: 13%;
}

.pill-f {
  right: 14%;
  bottom: 12%;
}

.construction-motion {
  --construction-progress: 0;
  --construction-depth: 0px;
  margin: 0;
}

.motion-video-frame {
  position: relative;
  min-height: clamp(27rem, 48vw, 38rem);
  overflow: hidden;
  border: 1px solid rgba(186, 153, 255, 0.28);
  background:
    radial-gradient(circle at 68% 25%, rgba(255, 140, 222, 0.16), transparent 22%),
    radial-gradient(circle at 70% 28%, rgba(127, 94, 255, 0.34), transparent 27%),
    linear-gradient(155deg, #090613 0%, #150d2d 48%, #2a1460 100%);
  box-shadow:
    0 42px 130px rgba(30, 0, 86, 0.34),
    inset 0 1px 0 rgba(251, 248, 255, 0.12);
  color: #fff;
  transform: translate3d(0, calc(var(--construction-depth) * -0.25), 0);
}

.motion-video-frame::before {
  content: "CONSTRUCTION PROCUREMENT";
  position: absolute;
  left: -0.08em;
  bottom: 0.2em;
  z-index: 1;
  color: transparent;
  font-size: clamp(4.2rem, 8.5vw, 8rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.78;
  -webkit-text-stroke: 1px rgba(251, 248, 255, 0.08);
  text-stroke: 1px rgba(251, 248, 255, 0.08);
  transform: translateY(calc(var(--construction-progress) * -2rem)) rotate(-4deg);
}

.motion-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(251, 248, 255, 0.08), transparent 18%),
    radial-gradient(circle at 50% 54%, transparent 0 36%, rgba(9, 6, 19, 0.38) 72%),
    repeating-linear-gradient(0deg, rgba(251, 248, 255, 0.025) 0 1px, transparent 1px 5px);
  mix-blend-mode: screen;
  opacity: 0.72;
}

.motion-chrome {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9;
  display: flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(186, 153, 255, 0.22);
  background: rgba(9, 6, 19, 0.72);
  backdrop-filter: blur(14px);
}

.motion-chrome span,
.motion-control-strip span {
  color: #ba99ff;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.motion-chrome strong {
  color: rgba(251, 248, 255, 0.88);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.motion-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(251, 248, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 248, 255, 0.12) 1px, transparent 1px);
  background-size: 34px 34px;
  transform: translate3d(0, calc(var(--construction-progress) * 2rem), 0);
}

.motion-crane {
  position: absolute;
  z-index: 4;
  width: 16rem;
  height: 16rem;
  transform: translate3d(0, calc(var(--construction-depth) * -0.5), 0);
}

.crane-left {
  top: 8%;
  left: 8%;
}

.crane-right {
  top: 16%;
  right: 6%;
  transform: scaleX(-1) translate3d(0, calc(var(--construction-depth) * -0.42), 0);
  opacity: 0.7;
}

.crane-mast,
.crane-boom,
.crane-cable,
.crane-hook {
  position: absolute;
  display: block;
  background: rgba(251, 248, 255, 0.72);
}

.crane-mast {
  left: 4rem;
  bottom: 0;
  width: 0.22rem;
  height: 12rem;
  box-shadow:
    1.6rem 0 0 rgba(251, 248, 255, 0.2),
    0.8rem -2rem 0 rgba(251, 248, 255, 0.14);
}

.crane-boom {
  left: 4rem;
  top: 3rem;
  width: 11rem;
  height: 0.2rem;
  transform-origin: left center;
  animation: craneSweep 7.5s ease-in-out infinite alternate;
}

.crane-boom::after {
  content: "";
  position: absolute;
  right: -2.7rem;
  top: -1.1rem;
  width: 3.2rem;
  height: 2.1rem;
  border: 1px solid rgba(251, 248, 255, 0.34);
  border-left: 0;
  transform: skewX(-18deg);
}

.crane-cable {
  left: 12.7rem;
  top: 3rem;
  width: 1px;
  height: 5.6rem;
  background: rgba(186, 153, 255, 0.78);
  animation: hookLift 5.4s ease-in-out infinite;
}

.crane-hook {
  left: 12.35rem;
  top: 8.5rem;
  width: 0.72rem;
  height: 0.72rem;
  border: 2px solid #ff8cde;
  border-top: 0;
  background: transparent;
  border-radius: 0 0 50% 50%;
  animation: hookLift 5.4s ease-in-out infinite;
}

.site-foundation {
  position: absolute;
  right: 7%;
  bottom: 11%;
  left: 7%;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 1fr 0.74fr;
  align-items: end;
  gap: 0.8rem;
  transform: translate3d(calc(var(--construction-progress) * -1.5rem), calc(var(--construction-progress) * 0.85rem), 0);
}

.site-foundation span {
  min-height: 6rem;
  border: 1px solid rgba(251, 248, 255, 0.18);
  background:
    linear-gradient(rgba(251, 248, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 248, 255, 0.08) 1px, transparent 1px),
    rgba(251, 248, 255, 0.055);
  background-size: 16px 16px;
  box-shadow: inset 0 1px 0 rgba(251, 248, 255, 0.08);
}

.site-foundation span:nth-child(2) {
  min-height: 10rem;
}

.site-foundation span:nth-child(3) {
  min-height: 8rem;
}

.site-foundation span:nth-child(4) {
  min-height: 13rem;
}

.motion-packet {
  position: absolute;
  z-index: 5;
  display: grid;
  width: 4.4rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(251, 248, 255, 0.36);
  background: rgba(251, 248, 255, 0.9);
  color: var(--amber-dark);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.34);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.packet-a {
  left: 9%;
  bottom: 33%;
  animation: packetMoveA 8s cubic-bezier(0.77, 0, 0.18, 1) infinite;
}

.packet-b {
  left: 16%;
  bottom: 22%;
  animation: packetMoveB 9s cubic-bezier(0.77, 0, 0.18, 1) infinite;
}

.packet-c {
  left: 21%;
  bottom: 43%;
  animation: packetMoveC 7s cubic-bezier(0.77, 0, 0.18, 1) infinite;
}

.motion-decision-core {
  position: absolute;
  top: 42%;
  left: 50%;
  z-index: 6;
  display: grid;
  width: clamp(11rem, 18vw, 15.5rem);
  min-height: clamp(8.2rem, 13vw, 11.5rem);
  place-items: center;
  gap: 0.72rem;
  padding: 1.1rem;
  border: 1px solid rgba(186, 153, 255, 0.42);
  border-radius: 2px;
  background:
    linear-gradient(rgba(251, 248, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 248, 255, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 50% 45%, rgba(127, 94, 255, 0.24), transparent 36%),
    linear-gradient(145deg, #0d0719, #211141);
  background-size: 18px 18px, 18px 18px, auto, auto;
  box-shadow:
    0 0 0 0.85rem rgba(127, 94, 255, 0.09),
    0 0 0 1.65rem rgba(127, 94, 255, 0.045),
    0 28px 88px rgba(0, 0, 0, 0.48);
  text-align: center;
  transform: translate(-50%, -50%) translateY(calc(var(--construction-progress) * -1.1rem));
  animation: corePulse 4.8s ease-in-out infinite;
}

.motion-decision-core::before,
.motion-decision-core::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.motion-decision-core::before {
  inset: 0.7rem;
  border: 1px solid rgba(186, 153, 255, 0.22);
}

.motion-decision-core::after {
  top: 50%;
  left: 50%;
  width: 140%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(186, 153, 255, 0.58), transparent);
  transform: translate(-50%, -50%);
}

.decision-core-mark {
  position: relative;
  z-index: 1;
  display: grid;
  width: 3.8rem;
  height: 3.8rem;
  place-items: center;
  border: 1px solid rgba(186, 153, 255, 0.5);
  background:
    linear-gradient(135deg, rgba(127, 94, 255, 0.18), rgba(186, 153, 255, 0.08)),
    rgba(14, 10, 27, 0.92);
  box-shadow:
    inset 0 0 0 0.65rem rgba(127, 94, 255, 0.08),
    0 0 38px rgba(127, 94, 255, 0.32);
  transform: rotate(45deg);
}

.decision-core-mark::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(251, 248, 255, 0.72);
}

.decision-core-mark i {
  position: absolute;
  display: block;
  width: 0.45rem;
  height: 0.45rem;
  background: #ba99ff;
  box-shadow: 0 0 14px rgba(186, 153, 255, 0.72);
}

.decision-core-mark i:nth-child(1) {
  top: 0.55rem;
  left: 0.55rem;
}

.decision-core-mark i:nth-child(2) {
  top: 0.55rem;
  right: 0.55rem;
}

.decision-core-mark i:nth-child(3) {
  right: 0.55rem;
  bottom: 0.55rem;
}

.decision-core-mark i:nth-child(4) {
  bottom: 0.55rem;
  left: 0.55rem;
}

.motion-decision-core > span:last-child {
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 700;
  line-height: 1.05;
}

.motion-award-card {
  position: absolute;
  right: 10%;
  top: 48%;
  z-index: 7;
  display: grid;
  min-width: 9.5rem;
  gap: 0.34rem;
  padding: 0.9rem;
  background: rgba(251, 248, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  animation: awardReveal 6.8s ease-in-out infinite;
}

.motion-control-strip {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 9;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(186, 153, 255, 0.22);
  background: rgba(186, 153, 255, 0.22);
}

.motion-control-strip span {
  display: flex;
  min-height: 2.6rem;
  align-items: center;
  padding: 0.65rem 0.75rem;
  background: rgba(9, 6, 19, 0.72);
  color: rgba(251, 248, 255, 0.74);
}

.motion-award-card span {
  color: var(--amber-dark);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.motion-award-card strong {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.9;
}

.motion-award-card small {
  color: var(--ink-soft);
  font-weight: 700;
  line-height: 1.2;
}

.motion-scanline {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 48%;
  z-index: 3;
  width: 1px;
  background: linear-gradient(transparent, rgba(255, 140, 222, 0.84), transparent);
  box-shadow: 0 0 30px rgba(255, 140, 222, 0.62);
  animation: scanMotion 4.8s ease-in-out infinite alternate;
}

.product-page {
  background:
    radial-gradient(circle at 82% 8%, rgba(127, 94, 255, 0.18), transparent 24rem),
    var(--paper);
}

.product-hero {
  min-height: 100vh;
  padding: 8rem 0 5rem;
  position: relative;
  background:
    radial-gradient(circle at 68% 26%, rgba(127, 94, 255, 0.2), transparent 28rem),
    linear-gradient(120deg, rgba(255, 140, 222, 0.08), transparent 34%),
    var(--black);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(251, 248, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 248, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.product-hero::after {
  content: "PROCUREMENT CONTROL";
  position: absolute;
  right: -0.18em;
  bottom: 0.16em;
  z-index: -1;
  color: transparent;
  font-size: clamp(6rem, 12vw, 13rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.78;
  -webkit-text-stroke: 1px rgba(251, 248, 255, 0.045);
  text-stroke: 1px rgba(251, 248, 255, 0.045);
  transform: rotate(-5deg);
}

.product-hero-layout {
  display: grid;
  width: min(1280px, calc(100% - 2rem));
  margin-inline: auto;
  grid-template-columns: minmax(32rem, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.product-hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.2rem, 5.9vw, 5.35rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.product-hero-copy {
  max-width: 40rem;
  margin: 1.35rem 0 0;
  color: rgba(251, 248, 255, 0.78);
  font-size: clamp(1.06rem, 1.7vw, 1.25rem);
}

.product-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.product-hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 46rem;
  margin-top: 2rem;
  border: 1px solid rgba(186, 153, 255, 0.24);
  background: rgba(186, 153, 255, 0.22);
}

.product-hero-proof div {
  min-height: 6.2rem;
  padding: 0.85rem;
  background: rgba(9, 6, 19, 0.72);
}

.product-hero-proof span {
  display: block;
  margin-bottom: 0.48rem;
  color: #ba99ff;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-hero-proof strong {
  display: block;
  color: rgba(251, 248, 255, 0.9);
  font-size: 0.98rem;
  line-height: 1.18;
}

.product-subnav {
  position: sticky;
  top: 4.2rem;
  z-index: 10;
  border-block: 1px solid rgba(186, 153, 255, 0.18);
  background: rgba(14, 10, 27, 0.9);
  backdrop-filter: blur(16px);
}

.product-subnav-inner {
  display: flex;
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
  gap: 0.8rem;
  overflow-x: auto;
  padding: 0.8rem 0;
}

.product-subnav a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(186, 153, 255, 0.26);
  background: rgba(251, 248, 255, 0.04);
  color: rgba(251, 248, 255, 0.86);
  text-decoration: none;
}

.product-subnav .product-mark {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 7px;
}

.product-detail {
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 8.5rem;
}

.product-detail:nth-of-type(odd) {
  background:
    radial-gradient(circle at 80% 30%, rgba(127, 94, 255, 0.08), transparent 28rem),
    var(--surface);
}

.product-detail-layout {
  display: grid;
  width: min(1280px, calc(100% - 2rem));
  margin-inline: auto;
  grid-template-columns: minmax(26rem, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(5.5rem, 9vw, 8rem) 0;
}

.product-detail h2 {
  max-width: 11ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.product-detail p {
  max-width: 38rem;
  color: var(--ink-soft);
}

.product-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.35rem;
}

.product-chip {
  padding: 0.48rem 0.58rem;
  border: 1px solid rgba(127, 94, 255, 0.24);
  background: rgba(127, 94, 255, 0.08);
  text-decoration: none;
}

.product-chip-link {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.product-interface {
  position: relative;
  overflow: hidden;
  min-height: 30rem;
  border: 1px solid rgba(14, 10, 27, 0.8);
  background:
    radial-gradient(circle at 80% 18%, rgba(127, 94, 255, 0.18), transparent 22rem),
    linear-gradient(rgba(251, 248, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 248, 255, 0.035) 1px, transparent 1px),
    #100b1f;
  background-size: 100% 100%, 24px 24px, 24px 24px, auto;
  box-shadow:
    0 32px 110px rgba(76, 4, 129, 0.18),
    inset 0 1px 0 rgba(251, 248, 255, 0.12);
}

.product-interface::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 45%, rgba(127, 94, 255, 0.08) 45% 45.5%, transparent 45.5% 100%);
}

.product-interface-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(186, 153, 255, 0.2);
  background: rgba(9, 6, 19, 0.56);
}

.product-interface-head strong {
  color: rgba(251, 248, 255, 0.86);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-interface .product-detail-kicker,
.product-metrics span {
  color: #ba99ff;
}

.product-interface-command {
  position: relative;
  z-index: 1;
  margin: 1rem;
  padding: 1rem;
  border: 1px solid rgba(186, 153, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(127, 94, 255, 0.18), rgba(255, 140, 222, 0.08)),
    rgba(251, 248, 255, 0.04);
}

.product-interface-command span {
  display: block;
  margin-bottom: 0.55rem;
  color: #ba99ff;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-interface-command strong {
  display: block;
  max-width: 22rem;
  color: #fff;
  font-size: clamp(1.5rem, 2.7vw, 2.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.product-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 1rem;
  background: rgba(186, 153, 255, 0.18);
}

.product-flow span {
  min-height: 7rem;
  display: grid;
  align-content: end;
  gap: 0.4rem;
  padding: 0.8rem;
  background: rgba(251, 248, 255, 0.08);
  color: rgba(251, 248, 255, 0.9);
  font-weight: 700;
}

.product-flow span::before {
  content: "";
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0.45rem rgba(127, 94, 255, 0.14);
}

.product-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 1rem;
  background: rgba(186, 153, 255, 0.18);
}

.product-metrics div {
  min-height: 9rem;
  padding: 1rem;
  background: rgba(251, 248, 255, 0.1);
}

.product-metrics span {
  display: block;
  margin-bottom: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-metrics strong {
  display: block;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.9;
}

.product-cta-band {
  background:
    radial-gradient(circle at 82% 18%, rgba(127, 94, 255, 0.2), transparent 25rem),
    var(--black);
  color: #fff;
}

.product-cta-card {
  display: grid;
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.product-cta-card h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.product-cta-card p {
  max-width: 42rem;
  color: rgba(251, 248, 255, 0.72);
}

@keyframes craneSweep {
  from {
    transform: rotate(-3deg);
  }
  to {
    transform: rotate(7deg);
  }
}

@keyframes hookLift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(2.2rem);
  }
}

@keyframes packetMoveA {
  0%,
  18% {
    transform: translate3d(0, 0, 0) rotate(-3deg);
    opacity: 0.35;
  }
  48% {
    transform: translate3d(16rem, -3rem, 0) rotate(4deg);
    opacity: 1;
  }
  72%,
  100% {
    transform: translate3d(30rem, -1rem, 0) rotate(0);
    opacity: 0.08;
  }
}

@keyframes packetMoveB {
  0%,
  22% {
    transform: translate3d(0, 0, 0) rotate(5deg);
    opacity: 0.25;
  }
  55% {
    transform: translate3d(14rem, -1rem, 0) rotate(-2deg);
    opacity: 1;
  }
  78%,
  100% {
    transform: translate3d(27rem, -4rem, 0) rotate(0);
    opacity: 0.08;
  }
}

@keyframes packetMoveC {
  0%,
  16% {
    transform: translate3d(0, 0, 0) rotate(3deg);
    opacity: 0.32;
  }
  52% {
    transform: translate3d(13rem, 1.6rem, 0) rotate(-4deg);
    opacity: 1;
  }
  82%,
  100% {
    transform: translate3d(26rem, 0, 0) rotate(0);
    opacity: 0.08;
  }
}

@keyframes corePulse {
  0%,
  100% {
    box-shadow:
      0 0 0 0.85rem rgba(127, 94, 255, 0.09),
      0 0 0 1.65rem rgba(127, 94, 255, 0.045),
      0 28px 88px rgba(0, 0, 0, 0.48);
  }
  50% {
    box-shadow:
      0 0 0 1.05rem rgba(127, 94, 255, 0.12),
      0 0 0 2.2rem rgba(127, 94, 255, 0.06),
      0 28px 88px rgba(0, 0, 0, 0.5);
  }
}

@keyframes awardReveal {
  0%,
  38% {
    transform: translate3d(1.2rem, 0.8rem, 0);
    opacity: 0.14;
  }
  58%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes scanMotion {
  from {
    transform: translateX(-13rem);
    opacity: 0.28;
  }
  to {
    transform: translateX(13rem);
    opacity: 0.9;
  }
}

.enterprise-layout,
.security-layout,
.faq-layout,
.demo-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 7rem;
}

.enterprise-column {
  display: grid;
  gap: 1rem;
}

.governance-visual {
  position: relative;
  overflow: hidden;
  min-height: 23rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(48, 46, 54, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(48, 46, 54, 0.045) 1px, transparent 1px),
    var(--surface);
  background-size: 24px 24px;
  box-shadow: var(--shadow);
}

.governance-visual::after {
  content: "APPROVED";
  position: absolute;
  right: -0.18em;
  bottom: 0.18em;
  color: transparent;
  font-size: clamp(5rem, 13vw, 10rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.75;
  -webkit-text-stroke: 1px rgba(127, 94, 255, 0.18);
  text-stroke: 1px rgba(127, 94, 255, 0.18);
  transform: rotate(-7deg);
}

.governance-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.governance-header strong {
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.governance-timeline {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.governance-timeline span {
  position: relative;
  min-height: 3.1rem;
  display: flex;
  align-items: center;
  padding: 0.65rem 1rem 0.65rem 3.2rem;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}

.governance-timeline span::before {
  content: "";
  position: absolute;
  left: 1rem;
  width: 0.86rem;
  height: 0.86rem;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(127, 94, 255, 0.12);
}

.signature-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-top: 1rem;
}

.signature-row span {
  min-height: 3.5rem;
  display: grid;
  place-items: end start;
  padding: 0.6rem;
  border: 1px dashed rgba(48, 46, 54, 0.28);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.enterprise-cards,
.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(124, 77, 255, 0.14);
  border-left: 1px solid rgba(124, 77, 255, 0.14);
}

.enterprise-card {
  min-height: 17rem;
}

.workflow-section {
  background: var(--paper);
}

.workflow-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 3rem minmax(0, 1fr) 3rem minmax(0, 1fr) 3rem minmax(0, 1fr);
  align-items: center;
  gap: 0;
  margin-bottom: 1rem;
}

.workflow-node {
  min-height: 12rem;
  display: grid;
  align-content: space-between;
  padding: 1rem;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 84% 18%, rgba(127, 94, 255, 0.14), transparent 30%),
    var(--surface);
}

.workflow-step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.workflow-icon {
  width: 2.15rem;
  height: 2.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  padding: 0.46rem;
  color: var(--amber-dark);
  background: rgba(127, 94, 255, 0.12);
  border: 1px solid rgba(127, 94, 255, 0.24);
  border-radius: 6px;
}

.workflow-node strong {
  display: block;
  max-width: 10ch;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.workflow-node small {
  color: var(--muted);
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.workflow-link {
  height: 1px;
  background: linear-gradient(90deg, var(--amber), transparent);
}

.workflow-link::after {
  content: "";
  display: block;
  width: 0.55rem;
  height: 0.55rem;
  margin-left: auto;
  border-top: 2px solid var(--amber);
  border-right: 2px solid var(--amber);
  transform: translateY(-0.28rem) rotate(45deg);
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink);
  border: 1px solid var(--ink);
}

.workflow article {
  min-height: 18rem;
  padding: clamp(1.2rem, 2vw, 1.8rem);
  background: var(--surface);
}

.workflow article:nth-child(even) {
  background: var(--paper-2);
}

.security-layout {
  align-items: center;
}

.security-visual {
  position: relative;
  grid-column: 1 / -1;
  min-height: 21rem;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 50%, rgba(127, 94, 255, 0.2), transparent 28%),
    linear-gradient(rgba(48, 46, 54, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(48, 46, 54, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 32px 32px, 32px 32px, auto;
}

.security-visual::before,
.security-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.security-visual::before {
  top: 50%;
  left: 50%;
  width: 25rem;
  height: 25rem;
  border: 1px solid rgba(127, 94, 255, 0.12);
  box-shadow:
    0 0 0 2.1rem rgba(127, 94, 255, 0.055),
    0 0 0 4.2rem rgba(127, 94, 255, 0.032);
  transform: translate(-50%, -50%);
}

.security-visual::after {
  inset: 12%;
  background:
    linear-gradient(110deg, transparent 0 47%, rgba(127, 94, 255, 0.16) 47.2% 47.5%, transparent 47.7% 100%),
    linear-gradient(20deg, transparent 0 56%, rgba(255, 140, 222, 0.1) 56.2% 56.45%, transparent 56.7% 100%);
  opacity: 0.72;
}

.security-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16rem;
  height: 11.25rem;
  background:
    radial-gradient(circle at 50% 45%, rgba(127, 94, 255, 0.24), transparent 34%),
    linear-gradient(145deg, #0e0a1b, #1b0d35 62%, #10091f);
  color: #fff;
  border: 1px solid rgba(186, 153, 255, 0.42);
  border-radius: 45% 45% 42% 42% / 56% 56% 38% 38%;
  box-shadow:
    0 0 0 0.7rem rgba(127, 94, 255, 0.08),
    0 0 0 1.45rem rgba(127, 94, 255, 0.045),
    0 24px 70px rgba(76, 4, 129, 0.22);
  transform: translate(-50%, -50%);
}

.security-core::before,
.security-core::after {
  content: "";
  position: absolute;
  top: 1.4rem;
  bottom: 1.15rem;
  width: 6rem;
  border: 1px solid rgba(186, 153, 255, 0.26);
  pointer-events: none;
}

.security-core::before {
  left: 1.25rem;
  border-right: 0;
  border-radius: 56% 18% 26% 50% / 54% 20% 34% 48%;
}

.security-core::after {
  right: 1.25rem;
  border-left: 0;
  border-radius: 18% 56% 50% 26% / 20% 54% 48% 34%;
}

.security-core-shell {
  position: absolute;
  inset: 1.65rem 2.15rem 1.55rem;
  border: 1px solid rgba(255, 140, 222, 0.22);
  border-radius: 42% 42% 36% 36% / 52% 52% 38% 38%;
  box-shadow:
    inset 0 0 32px rgba(127, 94, 255, 0.12),
    0 0 28px rgba(255, 140, 222, 0.08);
}

.security-core-shell::before,
.security-core-shell::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 140, 222, 0.46), transparent);
}

.security-core-shell::before {
  left: 11%;
  transform: rotate(28deg);
}

.security-core-shell::after {
  right: 11%;
  transform: rotate(-28deg);
}

.security-neural-path {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(186, 153, 255, 0.58), transparent);
  transform-origin: center;
}

.security-neural-path::before,
.security-neural-path::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.42rem;
  height: 0.42rem;
  background: #ba99ff;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(186, 153, 255, 0.78);
  transform: translateY(-50%);
}

.security-neural-path::before {
  left: 14%;
}

.security-neural-path::after {
  right: 14%;
}

.path-a {
  top: 34%;
  left: 18%;
  width: 64%;
  transform: rotate(18deg);
}

.path-b {
  top: 56%;
  left: 17%;
  width: 66%;
  transform: rotate(-17deg);
}

.path-c {
  top: 50%;
  left: 24%;
  width: 52%;
  transform: rotate(0deg);
}

.security-node {
  position: absolute;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: #ff8cde;
  box-shadow:
    0 0 0 0.32rem rgba(255, 140, 222, 0.08),
    0 0 18px rgba(255, 140, 222, 0.72);
}

.node-a {
  top: 25%;
  left: 33%;
}

.node-b {
  top: 28%;
  right: 31%;
}

.node-c {
  bottom: 28%;
  left: 30%;
  background: #ba99ff;
}

.node-d {
  right: 29%;
  bottom: 26%;
  background: #ba99ff;
}

.security-logo-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 3.55rem;
  height: 3.55rem;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(251, 248, 255, 0.28);
  border-radius: 0.85rem;
  background: #3600ab;
  box-shadow:
    0 0 0 0.48rem rgba(127, 94, 255, 0.18),
    0 18px 44px rgba(14, 10, 27, 0.44);
  transform: translate(-50%, -50%);
}

.security-logo-mark img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.integration-grid {
  position: absolute;
  inset: 1rem;
}

.integration-grid span {
  position: absolute;
  display: grid;
  width: 4.5rem;
  height: 4.5rem;
  place-items: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.integration-grid span:nth-child(1) {
  top: 8%;
  left: 12%;
}

.integration-grid span:nth-child(2) {
  top: 10%;
  right: 14%;
}

.integration-grid span:nth-child(3) {
  top: 42%;
  left: 4%;
}

.integration-grid span:nth-child(4) {
  top: 44%;
  right: 5%;
}

.integration-grid span:nth-child(5) {
  bottom: 7%;
  left: 19%;
}

.integration-grid span:nth-child(6) {
  right: 20%;
  bottom: 8%;
}

.security-grid article {
  background: #fff;
  border-color: rgba(124, 77, 255, 0.14);
}

.security-grid article > span {
  display: inline-grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  margin-bottom: 1rem;
  background: linear-gradient(145deg, #7c4dff, #5521c4);
  color: #fff;
  border-radius: 10px;
  font-size: 0.72rem;
  box-shadow: 0 8px 20px rgba(124, 77, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.security-grid article > .capability-icon .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.proof-section {
  background: var(--black);
  color: #fff;
}

.proof-section .section-heading p:not(.eyebrow) {
  color: rgba(251, 248, 255, 0.76);
}

.memory-console {
  --memory-accent: var(--amber);
  display: grid;
  grid-template-columns: minmax(17rem, 0.64fr) minmax(0, 1.36fr);
  min-height: 38rem;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid rgba(243, 240, 243, 0.22);
  background:
    linear-gradient(90deg, rgba(251, 248, 255, 0.055), transparent 34%),
    #0b0715;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.38);
}

.memory-console[data-memory-state="patterns"] {
  --memory-accent: #ba99ff;
}

.memory-console[data-memory-state="risk"] {
  --memory-accent: var(--red);
}

.memory-console[data-memory-state="award"] {
  --memory-accent: var(--amber);
}

.memory-console-tabs {
  display: grid;
  align-content: stretch;
  border-right: 1px solid rgba(243, 240, 243, 0.18);
  background: rgba(251, 248, 255, 0.035);
}

.memory-tab {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 0.85rem;
  min-width: 0;
  padding: clamp(1rem, 2vw, 1.35rem);
  overflow: hidden;
  border-bottom: 1px solid rgba(243, 240, 243, 0.14);
  background: transparent;
  color: rgba(251, 248, 255, 0.66);
  text-align: left;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.memory-tab:last-child {
  border-bottom: 0;
}

.memory-tab::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--memory-accent);
  opacity: 0;
  transition: opacity 180ms ease;
}

.memory-tab:hover,
.memory-tab:focus-visible,
.memory-tab.is-active {
  background:
    linear-gradient(90deg, rgba(127, 94, 255, 0.18), transparent),
    rgba(251, 248, 255, 0.045);
  color: #fff;
}

.memory-tab.is-active {
  box-shadow: inset 0 0 0 1px rgba(186, 153, 255, 0.24);
}

.memory-tab.is-active::before {
  opacity: 1;
}

.memory-tab .icon {
  grid-row: 1 / span 3;
  width: 2.45rem;
  height: 2.45rem;
  padding: 0.52rem;
  color: var(--memory-accent);
  border: 1px solid rgba(186, 153, 255, 0.28);
  background: rgba(127, 94, 255, 0.12);
}

.memory-tab span {
  align-self: end;
  color: var(--memory-accent);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.memory-tab strong {
  color: currentColor;
  font-size: clamp(1.75rem, 2.6vw, 2.65rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.memory-tab small {
  color: rgba(251, 248, 255, 0.58);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.35;
}

.memory-console-stage {
  position: relative;
  display: grid;
  align-content: space-between;
  gap: clamp(1rem, 2vw, 1.3rem);
  min-width: 0;
  padding: clamp(1rem, 2.5vw, 1.6rem);
  background:
    linear-gradient(rgba(251, 248, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 248, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 50% 42%, rgba(127, 94, 255, 0.12), transparent 34%);
  background-size: 34px 34px, 34px 34px, auto;
}

.memory-stage-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(243, 240, 243, 0.16);
}

.memory-stage-topline span,
.memory-output-card span,
.memory-insight-panel > span {
  color: var(--memory-accent);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.memory-stage-topline strong {
  color: rgba(251, 248, 255, 0.9);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.1;
}

.memory-stage-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(9rem, 0.8fr) minmax(13rem, 1fr) minmax(10rem, 0.85fr);
  gap: clamp(0.85rem, 2vw, 1.1rem);
  align-items: center;
  min-width: 0;
  min-height: 19rem;
}

.memory-stage-grid::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 6%;
  left: 6%;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(186, 153, 255, 0.55), transparent);
  transform: translateY(-50%);
}

.memory-source-stack,
.memory-output-card,
.memory-core-card {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.memory-source-stack {
  display: grid;
  gap: 0.65rem;
}

.memory-source-stack span {
  display: block;
  min-width: 0;
  padding: 0.72rem 0.8rem;
  overflow-wrap: anywhere;
  border: 1px solid rgba(186, 153, 255, 0.25);
  background: rgba(14, 10, 27, 0.72);
  color: rgba(251, 248, 255, 0.74);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.25;
  text-transform: uppercase;
}

.memory-source-stack span:nth-child(even) {
  transform: translateX(0.9rem);
}

.memory-core-card {
  display: grid;
  min-height: 17.5rem;
  place-items: center;
  align-content: center;
  gap: 0.62rem;
  padding: clamp(1rem, 2.6vw, 1.65rem);
  border: 1px solid rgba(186, 153, 255, 0.42);
  background:
    linear-gradient(135deg, rgba(127, 94, 255, 0.18), rgba(255, 140, 222, 0.08)),
    #130d25;
  box-shadow:
    inset 0 0 0 1px rgba(251, 248, 255, 0.06),
    0 28px 82px rgba(0, 0, 0, 0.36);
  text-align: center;
}

.memory-core-card::before,
.memory-core-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.memory-core-card::before {
  inset: 1.1rem;
  border: 1px solid rgba(186, 153, 255, 0.2);
}

.memory-core-card::after {
  inset: 2.35rem;
  border: 1px solid rgba(251, 248, 255, 0.1);
}

.memory-core-card .decision-core-mark {
  width: 4.2rem;
  height: 4.2rem;
  margin-bottom: 0.2rem;
  border-color: rgba(251, 248, 255, 0.48);
  background:
    linear-gradient(135deg, rgba(127, 94, 255, 0.35), rgba(186, 153, 255, 0.12)),
    rgba(14, 10, 27, 0.96);
  box-shadow:
    inset 0 0 0 0.7rem rgba(127, 94, 255, 0.11),
    0 0 42px color-mix(in srgb, var(--memory-accent), transparent 56%);
}

.memory-core-card > span:not(.decision-core-mark) {
  position: relative;
  z-index: 1;
  color: var(--memory-accent);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.memory-core-card strong {
  position: relative;
  z-index: 1;
  max-width: 11ch;
  color: #fff;
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.memory-core-card small {
  position: relative;
  z-index: 1;
  max-width: 18rem;
  color: rgba(251, 248, 255, 0.68);
  font-size: 0.95rem;
  line-height: 1.45;
}

.memory-output-card {
  display: grid;
  gap: 0.25rem;
  padding: clamp(1rem, 2vw, 1.25rem);
  border: 1px solid rgba(243, 240, 243, 0.68);
  background:
    linear-gradient(135deg, rgba(251, 248, 255, 0.98), rgba(232, 224, 255, 0.94)),
    var(--surface);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.memory-output-card strong {
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 3.65rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.memory-output-card small {
  color: var(--ink-soft);
  font-weight: 700;
}

.memory-output-card em {
  width: max-content;
  max-width: 100%;
  margin-top: 0.65rem;
  padding: 0.42rem 0.55rem;
  border: 1px solid rgba(127, 94, 255, 0.24);
  background: rgba(127, 94, 255, 0.1);
  color: var(--amber-dark);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.memory-insight-panel {
  display: grid;
  grid-template-columns: minmax(13rem, 0.65fr) minmax(0, 1fr);
  gap: 0.6rem 1rem;
  padding: clamp(1rem, 2vw, 1.25rem);
  border: 1px solid rgba(243, 240, 243, 0.16);
  background: rgba(251, 248, 255, 0.055);
  color: rgba(251, 248, 255, 0.76);
}

.memory-insight-panel[hidden] {
  display: none;
}

.memory-insight-panel h3 {
  grid-column: 1;
  margin: 0;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.memory-insight-panel p {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  max-width: 35rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
}

.memory-proof-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.45rem;
}

.memory-proof-row strong {
  min-width: 0;
  padding: 0.62rem 0.72rem;
  overflow-wrap: anywhere;
  border: 1px solid rgba(186, 153, 255, 0.2);
  background: rgba(127, 94, 255, 0.11);
  color: rgba(251, 248, 255, 0.88);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stakeholder-visual {
  position: relative;
  min-height: 34rem;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid rgba(243, 240, 243, 0.24);
  background:
    radial-gradient(circle at 50% 48%, rgba(127, 94, 255, 0.24), transparent 22%),
    radial-gradient(circle at 50% 48%, transparent 0 32%, rgba(251, 248, 255, 0.08) 32.2% 32.5%, transparent 32.7% 50%, rgba(251, 248, 255, 0.08) 50.2% 50.5%, transparent 50.7%),
    linear-gradient(rgba(251, 248, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 248, 255, 0.04) 1px, transparent 1px);
  background-size: auto, auto, 36px 36px, 36px 36px;
}

.truth-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: min(48rem, 66%);
  min-height: 19rem;
  padding: 1.2rem;
  background:
    linear-gradient(135deg, rgba(251, 248, 255, 0.96), rgba(245, 241, 255, 0.9)),
    var(--paper);
  border: 1px solid rgba(243, 240, 243, 0.42);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.38);
  transform: translate(-50%, -50%);
}

.stakeholder-brain-visual {
  background:
    radial-gradient(circle at 50% 48%, rgba(127, 94, 255, 0.32), transparent 22%),
    radial-gradient(circle at 50% 48%, transparent 0 26%, rgba(186, 153, 255, 0.1) 26.2% 26.5%, transparent 26.7% 43%, rgba(255, 140, 222, 0.08) 43.2% 43.5%, transparent 43.7%),
    linear-gradient(rgba(251, 248, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 248, 255, 0.04) 1px, transparent 1px);
  background-size: auto, auto, 36px 36px, 36px 36px;
}

.recommendation-brain {
  width: min(25rem, 52%);
  min-height: 18rem;
  place-items: center;
  align-content: center;
  gap: 0.55rem;
  padding: clamp(1.3rem, 3vw, 2rem);
  overflow: visible;
  background:
    radial-gradient(circle at 35% 26%, rgba(255, 140, 222, 0.22), transparent 24%),
    radial-gradient(circle at 68% 68%, rgba(127, 94, 255, 0.28), transparent 30%),
    linear-gradient(145deg, #0e0a1b, #271247 72%, #160a2b);
  color: #fff;
  border: 1px solid rgba(186, 153, 255, 0.38);
  border-radius: 48% 52% 50% 50% / 58% 58% 42% 42%;
  box-shadow:
    0 0 0 1.2rem rgba(127, 94, 255, 0.08),
    0 0 0 2.3rem rgba(127, 94, 255, 0.045),
    0 36px 110px rgba(0, 0, 0, 0.44);
  text-align: center;
}

.recommendation-brain::before,
.recommendation-brain::after {
  content: "";
  position: absolute;
  top: 1.45rem;
  bottom: 1.45rem;
  width: 42%;
  border: 1px solid rgba(255, 140, 222, 0.18);
  pointer-events: none;
}

.recommendation-brain::before {
  left: 1.35rem;
  border-right: 0;
  border-radius: 56% 22% 30% 50% / 56% 24% 36% 48%;
}

.recommendation-brain::after {
  right: 1.35rem;
  border-left: 0;
  border-radius: 22% 56% 50% 30% / 24% 56% 48% 36%;
}

.recommendation-brain-icon {
  position: relative;
  z-index: 2;
  width: 4rem;
  height: 4rem;
  margin-bottom: 0.4rem;
  color: #ff8cde;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.recommendation-brain span,
.recommendation-brain strong,
.recommendation-brain small {
  position: relative;
  z-index: 2;
}

.recommendation-brain strong {
  display: block;
  max-width: 13ch;
  color: #fff;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.recommendation-brain small {
  display: block;
  max-width: 18rem;
  color: rgba(251, 248, 255, 0.7);
  font-size: 0.94rem;
  line-height: 1.45;
}

.brain-synapse {
  position: absolute;
  z-index: 1;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 22px rgba(255, 209, 102, 0.72);
}

.synapse-a {
  top: 26%;
  left: 29%;
}

.synapse-b {
  right: 26%;
  bottom: 28%;
  background: #ff8cde;
  box-shadow: 0 0 22px rgba(255, 140, 222, 0.66);
}

.synapse-c {
  top: 38%;
  right: 32%;
  background: #ba99ff;
  box-shadow: 0 0 22px rgba(186, 153, 255, 0.7);
}

.recommendation-thread-c {
  transform: translate(-50%, -50%) rotate(90deg);
}

.brain-signal-card,
.brain-approval-card {
  position: absolute;
  z-index: 3;
  display: grid;
  min-width: 11rem;
  gap: 0.28rem;
  padding: 0.85rem 0.9rem;
  background: rgba(251, 248, 255, 0.94);
  border: 1px solid rgba(243, 240, 243, 0.5);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  color: var(--ink);
}

.brain-memory-pill {
  position: absolute;
  top: 6%;
  left: 50%;
  z-index: 4;
  display: grid;
  width: min(22rem, 54%);
  gap: 0.28rem;
  padding: 0.72rem 0.9rem;
  background: rgba(14, 10, 27, 0.78);
  border: 1px solid rgba(186, 153, 255, 0.42);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.32);
  color: rgba(251, 248, 255, 0.9);
  text-align: center;
  transform: translateX(-50%);
}

.brain-signal-card span,
.brain-approval-card span,
.brain-memory-pill span {
  color: var(--amber-dark);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brain-memory-pill span {
  color: #ba99ff;
}

.brain-signal-card strong,
.brain-approval-card strong {
  color: var(--ink);
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.brain-memory-pill strong {
  color: #fff;
  font-size: clamp(0.96rem, 1.5vw, 1.16rem);
  line-height: 1.2;
  letter-spacing: 0;
}

.brain-signal-card small,
.brain-approval-card small {
  color: var(--ink-soft);
  font-weight: 600;
}

.signal-evidence {
  top: 17%;
  left: 12%;
}

.signal-risk {
  right: 12%;
  top: 18%;
}

.signal-forecast {
  bottom: 14%;
  left: 13%;
}

.brain-approval-card {
  right: 12%;
  bottom: 14%;
  min-width: 13rem;
  background:
    linear-gradient(135deg, rgba(251, 248, 255, 0.96), rgba(232, 224, 255, 0.94)),
    var(--paper);
}

.brain-approval-card::before {
  content: "";
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(73, 201, 122, 0.6);
}

.recommendation-pack::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(48, 46, 54, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(48, 46, 54, 0.035) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.recommendation-thread {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 74%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(186, 153, 255, 0.55), transparent);
  transform-origin: center;
}

.recommendation-thread-a {
  transform: translate(-50%, -50%) rotate(18deg);
}

.recommendation-thread-b {
  transform: translate(-50%, -50%) rotate(-22deg);
}

.recommendation-head,
.recommendation-score,
.recommendation-map,
.approval-strip {
  position: relative;
  z-index: 1;
}

.recommendation-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(48, 46, 54, 0.12);
}

.recommendation-head span,
.recommendation-score span,
.recommendation-map span {
  color: var(--amber-dark);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recommendation-head strong {
  display: block;
  max-width: 12ch;
  color: var(--ink);
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.recommendation-head em {
  align-self: start;
  padding: 0.45rem 0.65rem;
  background: rgba(73, 201, 122, 0.12);
  border: 1px solid rgba(73, 201, 122, 0.28);
  color: #226d3b;
  border-radius: 999px;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.recommendation-score {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 0.3rem 1rem;
  padding: 1rem 0;
}

.recommendation-score strong {
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.recommendation-score small {
  grid-row: 1 / span 2;
  grid-column: 2;
  display: grid;
  width: 6.3rem;
  height: 6.3rem;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(127, 94, 255, 0.2), transparent 58%),
    conic-gradient(var(--purple) 0 82%, rgba(48, 46, 54, 0.12) 82% 100%);
  color: var(--ink);
  border-radius: 50%;
  box-shadow: inset 0 0 0 0.65rem var(--paper);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.recommendation-map {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(48, 46, 54, 0.12);
  border-left: 1px solid rgba(48, 46, 54, 0.12);
}

.recommendation-map div {
  min-height: 7.4rem;
  padding: 0.85rem;
  border-right: 1px solid rgba(48, 46, 54, 0.12);
  border-bottom: 1px solid rgba(48, 46, 54, 0.12);
  background: rgba(255, 255, 255, 0.42);
}

.recommendation-map strong {
  display: block;
  margin: 0.8rem 0 0.1rem;
  color: var(--ink);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.recommendation-map small {
  color: var(--ink-soft);
  font-weight: 600;
}

.approval-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
}

.approval-strip span {
  position: relative;
  min-width: 0;
  padding: 0.58rem 0.6rem 0.58rem 1.95rem;
  background: rgba(127, 94, 255, 0.1);
  border: 1px solid rgba(127, 94, 255, 0.2);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.approval-strip span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.72rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(73, 201, 122, 0.58);
  transform: translateY(-50%);
}

.stakeholder-node {
  position: absolute;
  padding: 0.65rem 0.8rem;
  background: rgba(14, 10, 27, 0.72);
  border: 1px solid rgba(186, 153, 255, 0.34);
  color: rgba(251, 248, 255, 0.88);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.26);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.node-procurement {
  top: 13%;
  left: 8%;
}

.node-qs {
  top: 18%;
  right: 4%;
}

.node-technical {
  left: 5%;
  bottom: 18%;
}

.node-legal {
  right: 6%;
  bottom: 22%;
}

.node-pmo {
  top: 45%;
  right: 3%;
}

.stakeholder-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(243, 240, 243, 0.24);
  border-left: 1px solid rgba(243, 240, 243, 0.24);
}

.stakeholder-grid article {
  background: rgba(251, 248, 255, 0.05);
  border-color: rgba(243, 240, 243, 0.24);
}

.stakeholder-grid p {
  color: rgba(251, 248, 255, 0.7);
}

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

.faq-item {
  border-bottom: 1px solid var(--ink);
}

.faq-question {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 4.8rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
}

.faq-question span {
  position: relative;
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.faq-question span::before,
.faq-question span::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transform: translateY(-50%);
}

.faq-question span::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 150ms ease;
}

.faq-question[aria-expanded="true"] span::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-answer {
  padding: 0 0 1.4rem;
}

.demo-card {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.demo-intro {
  display: grid;
  align-content: start;
}

.brain-proof {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  max-width: 32rem;
  margin-top: 1.4rem;
  padding: 1rem 0 0 1rem;
  border-left: 2px solid var(--amber);
  color: var(--ink-soft);
  font-weight: 700;
}

.brain-proof .icon {
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.1rem;
  color: var(--amber-dark);
}

.demo-action-stack {
  display: grid;
  gap: 1.4rem;
}

.demo-product-figure {
  position: relative;
  margin: 0;
  padding: clamp(0.55rem, 1.5vw, 0.85rem);
  overflow: hidden;
  border: 1px solid rgba(127, 94, 255, 0.28);
  border-radius: 6px;
  background:
    linear-gradient(rgba(48, 46, 54, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(48, 46, 54, 0.05) 1px, transparent 1px),
    rgba(251, 248, 255, 0.6);
  background-size: 22px 22px;
  box-shadow:
    0 26px 70px rgba(76, 4, 129, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.demo-product-figure::before {
  content: "";
  position: absolute;
  top: 7%;
  right: 5%;
  width: 34%;
  aspect-ratio: 1;
  pointer-events: none;
  background: radial-gradient(circle, rgba(127, 94, 255, 0.24), transparent 62%);
  filter: blur(12px);
}

.demo-product-figure img {
  position: relative;
  z-index: 1;
  width: 100%;
  border: 1px solid rgba(14, 10, 27, 0.22);
  border-radius: 4px;
  box-shadow: 0 18px 46px rgba(14, 10, 27, 0.22);
}

.procurement-brain {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(10rem, 0.95fr) minmax(0, 0.85fr);
  gap: clamp(0.8rem, 2vw, 1.2rem);
  align-items: center;
  min-height: 15.5rem;
  margin: 0;
  padding: 0.5rem 0;
  background:
    linear-gradient(rgba(48, 46, 54, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(48, 46, 54, 0.055) 1px, transparent 1px);
  background-size: 24px 24px;
}

.procurement-brain::before {
  content: "";
  position: absolute;
  right: 12%;
  left: 12%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(127, 94, 255, 0.6), transparent);
}

.brain-inputs,
.brain-outputs {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.48rem;
}

.brain-inputs span,
.brain-outputs span {
  min-width: 0;
  padding: 0.55rem 0.7rem;
  background: rgba(251, 248, 255, 0.78);
  border: 1px solid rgba(127, 94, 255, 0.2);
  color: var(--amber-dark);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brain-inputs span:nth-child(even),
.brain-outputs span:nth-child(even) {
  transform: translateX(0.7rem);
}

.brain-core {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 12rem;
  place-items: center;
  align-content: center;
  gap: 0.58rem;
  padding: 1rem 0.85rem;
  background:
    linear-gradient(rgba(251, 248, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 248, 255, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 50% 45%, rgba(127, 94, 255, 0.22), transparent 38%),
    linear-gradient(145deg, var(--black), #24133f);
  background-size: 18px 18px, 18px 18px, auto, auto;
  color: #fff;
  border: 1px solid rgba(186, 153, 255, 0.36);
  border-radius: 4px;
  box-shadow: 0 18px 42px rgba(76, 4, 129, 0.18);
  text-align: center;
  overflow: hidden;
}

.brain-core::before,
.brain-core::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.brain-core::before {
  inset: 0.82rem;
  border: 1px solid rgba(186, 153, 255, 0.28);
}

.brain-core::after {
  top: 50%;
  left: 50%;
  width: 140%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(186, 153, 255, 0.5), transparent);
  transform: translate(-50%, -50%);
}

.brain-core .decision-core-mark {
  width: 3rem;
  height: 3rem;
}

.brain-core strong,
.brain-core small {
  position: relative;
  z-index: 1;
  display: block;
}

.brain-core strong {
  max-width: 8rem;
  font-size: clamp(1.1rem, 1.65vw, 1.35rem);
  line-height: 1;
  letter-spacing: 0;
}

.brain-core small {
  margin-top: 0.5rem;
  color: rgba(251, 248, 255, 0.72);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.demo-form {
  display: grid;
  gap: 1rem;
}

.demo-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink-soft);
  font-weight: 700;
}

.field-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.field-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  color: var(--amber-dark);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.demo-form input,
.demo-form select {
  min-height: 3.2rem;
  width: 100%;
  padding: 0.7rem 0.8rem;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.demo-form--enterprise {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.1rem;
  align-content: start;
}

.demo-form--enterprise > * {
  grid-column: 1 / -1;
}

.demo-form--enterprise > .is-half {
  grid-column: span 1;
}

@media (max-width: 600px) {
  .demo-form--enterprise > .is-half {
    grid-column: 1 / -1;
  }
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status {
  margin: 0;
  padding: 0.75rem 0.85rem;
  color: var(--ink-soft);
  background: rgba(127, 94, 255, 0.08);
  border: 1px solid rgba(127, 94, 255, 0.22);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-status.is-success {
  color: #25533d;
  background: rgba(63, 185, 132, 0.12);
  border-color: rgba(63, 185, 132, 0.34);
}

.form-status.is-error {
  color: var(--ink);
  background: rgba(231, 114, 205, 0.12);
  border-color: rgba(231, 114, 205, 0.38);
}

.button-ghost-dark {
  background: rgba(251, 248, 255, 0.08);
  color: #fff;
  border-color: rgba(251, 248, 255, 0.36);
  box-shadow: none;
}

.button-ghost-dark:hover {
  background: rgba(251, 248, 255, 0.16);
}

.content-page {
  background:
    radial-gradient(circle at 82% 8%, rgba(127, 94, 255, 0.12), transparent 26rem),
    var(--surface);
}

.content-page .site-header {
  background: rgba(243, 240, 243, 0.9);
  color: var(--ink);
  border-bottom: 1px solid rgba(48, 46, 54, 0.08);
  box-shadow: 0 14px 42px rgba(48, 46, 54, 0.06);
  backdrop-filter: blur(18px);
}

.content-page .site-header .brand-logo-on-dark {
  display: none;
}

.content-page .site-header .brand-logo-on-light {
  display: block;
}

.content-main {
  padding-top: 4.35rem;
  overflow: hidden;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.36fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
  padding: clamp(6rem, 11vw, 9rem) 0 clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--ink);
}

.page-hero h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 47rem;
  margin: 1.4rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.page-hero-note {
  position: relative;
  display: grid;
  min-height: 17rem;
  align-content: end;
  gap: 0.8rem;
  padding: clamp(1.25rem, 3vw, 1.8rem);
  overflow: hidden;
  background:
    linear-gradient(rgba(251, 248, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 248, 255, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 82% 18%, rgba(127, 94, 255, 0.42), transparent 44%),
    var(--black);
  background-size: 24px 24px, 24px 24px, auto, auto;
  color: #fff;
  border: 1px solid rgba(14, 10, 27, 0.2);
  box-shadow: 0 24px 70px rgba(76, 4, 129, 0.16);
}

.page-hero-note span,
.editorial-card span,
.book-card span,
.principle-grid span,
.demo-agenda li::before {
  display: block;
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero-note strong {
  position: relative;
  z-index: 1;
  max-width: 15rem;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.resource-band {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.resource-band + .resource-band {
  border-top: 1px solid rgba(48, 46, 54, 0.14);
}

.insight-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
  padding: clamp(1.3rem, 4vw, 2.2rem);
  overflow: hidden;
  background:
    linear-gradient(rgba(251, 248, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 248, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 86% 14%, rgba(127, 94, 255, 0.32), transparent 28rem),
    var(--black);
  background-size: 30px 30px, 30px 30px, auto, auto;
  color: #fff;
  border: 1px solid rgba(14, 10, 27, 0.2);
  box-shadow: var(--shadow);
}

.insight-feature h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(2.2rem, 4.4vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.insight-feature p:not(.eyebrow) {
  max-width: 46rem;
  margin: 1.1rem 0 0;
  color: rgba(251, 248, 255, 0.72);
  font-size: 1.06rem;
}

.article-feature {
  grid-template-columns: minmax(17rem, 0.48fr) minmax(0, 1fr);
  align-items: stretch;
}

.feature-cover-link {
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.article-feature .abstract-cover {
  height: 100%;
  min-height: 23rem;
}

.feature-copy {
  display: grid;
  align-content: end;
  justify-items: start;
}

.feature-copy .button {
  margin-top: 1.35rem;
}

.editorial-grid,
.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.editorial-card,
.principle-grid article {
  min-width: 0;
  min-height: 17rem;
  padding: clamp(1.1rem, 3vw, 1.55rem);
  background: rgba(251, 248, 255, 0.62);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-card {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  color: inherit;
  text-decoration: none;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.article-card:hover,
.article-card:focus-visible {
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 24px 60px rgba(76, 4, 129, 0.12);
  transform: translateY(-3px);
}

.article-card em {
  align-self: end;
  color: var(--amber-dark);
  font-style: normal;
  font-weight: 800;
}

.abstract-cover {
  --cover-a: #7f5eff;
  --cover-b: #ba99ff;
  --cover-c: #0e0a1b;
  --cover-line: rgba(251, 248, 255, 0.2);
  --cover-field: rgba(251, 248, 255, 0.085);
  position: relative;
  display: block;
  min-height: 11.5rem;
  overflow: hidden;
  aspect-ratio: 1.26;
  background:
    linear-gradient(rgba(251, 248, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 248, 255, 0.052) 1px, transparent 1px),
    linear-gradient(118deg, rgba(251, 248, 255, 0.06), transparent 38%),
    linear-gradient(145deg, var(--cover-c), color-mix(in srgb, var(--cover-a) 20%, #120d1f) 62%, #0b0814);
  background-size: 26px 26px, 26px 26px, auto, auto;
  border: 1px solid rgba(48, 46, 54, 0.22);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(251, 248, 255, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.28);
}

.abstract-cover::before,
.abstract-cover::after,
.abstract-cover span,
.abstract-cover i {
  position: absolute;
  content: "";
  display: block;
}

.abstract-cover::before {
  inset: 13% 12% 18% 13%;
  border: 1px solid var(--cover-line);
  transform: rotate(-7deg);
  opacity: 0.82;
}

.abstract-cover::after {
  inset: 18% 16%;
  background:
    linear-gradient(115deg, transparent 0 34%, color-mix(in srgb, var(--cover-b) 74%, #fff) 34.2% 34.8%, transparent 35% 100%),
    linear-gradient(65deg, transparent 0 48%, rgba(251, 248, 255, 0.18) 48.2% 48.8%, transparent 49% 100%),
    repeating-linear-gradient(0deg, transparent 0 1.15rem, rgba(251, 248, 255, 0.075) 1.15rem calc(1.15rem + 1px));
  opacity: 0.68;
  mix-blend-mode: screen;
}

.abstract-cover span {
  margin: 0;
  color: transparent;
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.abstract-cover span:nth-child(1) {
  top: 19%;
  left: 18%;
  width: 28%;
  height: 42%;
  border: 1px solid rgba(251, 248, 255, 0.16);
  background:
    linear-gradient(145deg, var(--cover-field), transparent 72%),
    rgba(251, 248, 255, 0.02);
  transform: rotate(-7deg);
}

.abstract-cover span:nth-child(2) {
  top: 26%;
  right: 18%;
  width: 31%;
  height: 52%;
  border: 1px solid color-mix(in srgb, var(--cover-a) 42%, transparent);
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--cover-a) 18%, transparent), transparent 70%),
    rgba(251, 248, 255, 0.025);
  transform: rotate(9deg);
}

.abstract-cover span:nth-child(3) {
  right: 22%;
  bottom: 18%;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--cover-b) 82%, #fff), transparent);
  border: 0;
  transform: rotate(-11deg);
}

.abstract-cover i {
  left: 12%;
  bottom: 14%;
  width: 72%;
  height: 58%;
  border: 1px solid rgba(251, 248, 255, 0.08);
  background:
    linear-gradient(90deg, transparent 49.5%, color-mix(in srgb, var(--cover-a) 40%, transparent) 49.5% 50.5%, transparent 50.5%),
    linear-gradient(0deg, transparent 49.5%, color-mix(in srgb, var(--cover-b) 36%, transparent) 49.5% 50.5%, transparent 50.5%);
  transform: rotate(4deg);
  opacity: 0.7;
}

.cover-award {
  --cover-a: #7f5eff;
  --cover-b: #ba99ff;
  --cover-c: #0e0a1b;
  --cover-field: rgba(186, 153, 255, 0.12);
}

.cover-evidence {
  --cover-a: #6f5cff;
  --cover-b: #d8cdfc;
  --cover-c: #111827;
  --cover-field: rgba(216, 205, 252, 0.11);
}

.cover-evidence span:nth-child(1) {
  top: 18%;
  left: 16%;
  width: 46%;
  height: 1px;
  background: rgba(251, 248, 255, 0.5);
  transform: rotate(-4deg);
}

.cover-evidence span:nth-child(2) {
  top: 36%;
  right: 15%;
  width: 54%;
  height: 1px;
  background: color-mix(in srgb, var(--cover-b) 74%, transparent);
  transform: rotate(-4deg);
}

.cover-evidence span:nth-child(3) {
  bottom: 32%;
  right: 17%;
  width: 52%;
  transform: rotate(-4deg);
}

.cover-commercial {
  --cover-a: #6f5cff;
  --cover-b: #78d7ce;
  --cover-c: #101923;
  --cover-field: rgba(120, 215, 206, 0.1);
}

.cover-commercial::after {
  inset: 16% 14%;
  background:
    repeating-linear-gradient(90deg, rgba(251, 248, 255, 0.16) 0 1px, transparent 1px 18%),
    linear-gradient(0deg, transparent 0 62%, color-mix(in srgb, var(--cover-b) 66%, transparent) 62% calc(62% + 1px), transparent calc(62% + 1px));
  opacity: 0.72;
}

.cover-commercial i {
  transform: rotate(0deg);
}

.cover-contract {
  --cover-a: #9b75ff;
  --cover-b: #d7c3ff;
  --cover-c: #190f2c;
  --cover-field: rgba(155, 117, 255, 0.1);
}

.cover-contract::before {
  inset: 13% 24% 16% 19%;
  transform: rotate(-3deg);
}

.cover-contract span:nth-child(1) {
  width: 34%;
  height: 52%;
  transform: rotate(-3deg);
}

.cover-contract span:nth-child(2) {
  right: 19%;
  width: 23%;
  height: 44%;
  transform: rotate(3deg);
}

.cover-queries {
  --cover-a: #715cff;
  --cover-b: #b8a4ff;
  --cover-c: #132238;
  --cover-field: rgba(184, 164, 255, 0.11);
}

.cover-queries span:nth-child(1),
.cover-queries span:nth-child(2) {
  height: 28%;
  border-radius: 999px;
}

.cover-queries span:nth-child(1) {
  top: 25%;
  left: 17%;
  width: 37%;
}

.cover-queries span:nth-child(2) {
  top: 43%;
  right: 16%;
  width: 34%;
  transform: rotate(-4deg);
}

.cover-cost {
  --cover-a: #755cff;
  --cover-b: #78d7ce;
  --cover-c: #10131f;
  --cover-field: rgba(120, 215, 206, 0.1);
}

.cover-cost::after {
  inset: 18% 18% 20%;
  background:
    linear-gradient(90deg, transparent 0 18%, color-mix(in srgb, var(--cover-b) 48%, transparent) 18% 18.6%, transparent 18.6% 100%),
    linear-gradient(90deg, transparent 0 48%, color-mix(in srgb, var(--cover-a) 46%, transparent) 48% 48.6%, transparent 48.6% 100%),
    linear-gradient(90deg, transparent 0 76%, rgba(251, 248, 255, 0.2) 76% 76.6%, transparent 76.6% 100%),
    linear-gradient(0deg, transparent 0 54%, rgba(251, 248, 255, 0.16) 54% calc(54% + 1px), transparent calc(54% + 1px));
  opacity: 0.78;
}

.cover-vendor {
  --cover-a: #9b75ff;
  --cover-b: #78d7ce;
  --cover-c: #111827;
  --cover-field: rgba(155, 117, 255, 0.1);
}

.cover-vendor::before {
  inset: 17% 22%;
  border-radius: 0;
  transform: rotate(45deg);
}

.cover-vendor::after {
  inset: 22% 18%;
  background:
    linear-gradient(90deg, transparent 0 49.5%, color-mix(in srgb, var(--cover-b) 58%, transparent) 49.5% 50.5%, transparent 50.5%),
    linear-gradient(0deg, transparent 0 49.5%, color-mix(in srgb, var(--cover-a) 44%, transparent) 49.5% 50.5%, transparent 50.5%),
    linear-gradient(45deg, transparent 0 49.6%, rgba(251, 248, 255, 0.16) 49.6% 50.4%, transparent 50.4%),
    linear-gradient(-45deg, transparent 0 49.6%, rgba(251, 248, 255, 0.12) 49.6% 50.4%, transparent 50.4%);
  opacity: 0.72;
}

.editorial-card h3,
.book-card h3,
.principle-grid h3 {
  margin: 0.9rem 0 0;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.editorial-card p,
.book-card p,
.principle-grid p,
.about-layout p,
.demo-agenda li {
  color: var(--ink-soft);
}

.editorial-card p,
.book-card p,
.principle-grid p {
  margin: 0.9rem 0 0;
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.book-card {
  min-width: 0;
  min-height: 22rem;
  display: grid;
  align-content: space-between;
  gap: 1rem;
  padding: clamp(1.15rem, 3vw, 1.6rem);
  background: rgba(251, 248, 255, 0.72);
}

.book-card.is-featured {
  grid-column: span 2;
  background:
    radial-gradient(circle at 88% 12%, rgba(127, 94, 255, 0.34), transparent 18rem),
    var(--black);
  color: #fff;
}

.book-card.is-featured p {
  color: rgba(251, 248, 255, 0.72);
}

.book-card.is-featured .text-link {
  color: #fff;
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.56fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
  padding: clamp(6rem, 11vw, 9rem) 0 clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--ink);
}

.article-hero h1 {
  max-width: 16ch;
  margin: 0.7rem 0 0;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.4rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-meta span {
  padding: 0.38rem 0.55rem;
  border: 1px solid rgba(48, 46, 54, 0.14);
  border-radius: 999px;
  background: rgba(251, 248, 255, 0.58);
}

.article-hero .abstract-cover {
  min-height: clamp(22rem, 34vw, 31rem);
  box-shadow: 0 30px 90px rgba(76, 4, 129, 0.2);
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 43rem) minmax(16rem, 0.35fr);
  gap: clamp(2rem, 7vw, 5rem);
  align-items: start;
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.article-body {
  min-width: 0;
}

.article-body .lede {
  color: var(--ink);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.16;
}

.article-body h2 {
  margin: 2.8rem 0 0.75rem;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
  letter-spacing: 0;
}

.article-body p,
.article-body li {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.article-body p {
  margin: 1rem 0 0;
}

.article-body ul {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}

.article-body li {
  position: relative;
  padding-left: 1.2rem;
}

.article-body li::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--amber);
  transform: rotate(45deg);
}

.article-aside {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 1rem;
}

.article-aside-card {
  padding: 1rem;
  background:
    linear-gradient(rgba(48, 46, 54, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(48, 46, 54, 0.045) 1px, transparent 1px),
    rgba(251, 248, 255, 0.7);
  background-size: 22px 22px;
  border: 1px solid rgba(48, 46, 54, 0.14);
  border-radius: 8px;
}

.article-aside-card span {
  display: block;
  color: var(--amber-dark);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-aside-card strong {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.25rem;
  line-height: 1.08;
}

.article-aside-card p {
  margin: 0.7rem 0 0;
  color: var(--ink-soft);
}

.article-next-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.article-next-grid a {
  min-height: 9rem;
  display: grid;
  align-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: rgba(251, 248, 255, 0.78);
  color: inherit;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.article-next-grid a:hover,
.article-next-grid a:focus-visible {
  background: #fff;
  transform: translateY(-2px);
}

.article-next-grid span {
  color: var(--amber-dark);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-next-grid strong {
  font-size: 1.18rem;
  line-height: 1.08;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.75fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.about-layout h2,
.demo-agenda h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.about-layout p {
  max-width: 42rem;
  margin: 0 0 1rem;
  font-size: 1.1rem;
}

.team-section {
  display: grid;
  gap: clamp(1.4rem, 3vw, 2rem);
}

.team-heading {
  display: grid;
  grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: end;
}

.team-heading h2 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.team-heading p:not(.eyebrow) {
  max-width: 42rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.founder-card {
  position: relative;
  min-width: 0;
  min-height: 24rem;
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.8rem);
  overflow: hidden;
  background:
    linear-gradient(rgba(48, 46, 54, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(48, 46, 54, 0.035) 1px, transparent 1px),
    rgba(251, 248, 255, 0.76);
  background-size: 28px 28px;
}


.founder-card-dark {
  background:
    linear-gradient(rgba(251, 248, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 248, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 86% 16%, rgba(127, 94, 255, 0.34), transparent 20rem),
    var(--black);
  background-size: 28px 28px, 28px 28px, auto, auto;
  color: #fff;
}

.founder-card > span,
.team-operating-grid span {
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-card h3 {
  max-width: 17ch;
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.founder-card p {
  max-width: 35rem;
  margin: 0.4rem 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.founder-card-dark p {
  color: rgba(251, 248, 255, 0.7);
}

.founder-card ul {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.founder-card li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: inherit;
  font-weight: 700;
}

.founder-card li::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--amber);
}

/* ---- Framed founder portraits ---- */
.founder-photo {
  position: relative;
  margin: 0 0 0.6rem;
  padding: 0.55rem;
  color: var(--blueprint);
  border: 1px solid rgba(127, 94, 255, 0.34);
  background:
    linear-gradient(rgba(127, 94, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 94, 255, 0.08) 1px, transparent 1px),
    rgba(251, 248, 255, 0.85);
  background-size: 14px 14px;
}

.founder-photo::before,
.founder-photo::after {
  content: "";
  position: absolute;
  width: 0.85rem;
  height: 0.85rem;
  border: 2px solid currentColor;
}

.founder-photo::before {
  top: -2px;
  left: -2px;
  border-right: 0;
  border-bottom: 0;
}

.founder-photo::after {
  right: -2px;
  bottom: -2px;
  border-top: 0;
  border-left: 0;
}

.founder-photo-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 4;
}

.founder-photo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  filter: grayscale(1) contrast(1.05) brightness(1.02);
}

.founder-photo.is-placeholder .founder-photo-media {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 140, 222, 0.22), transparent 42%),
    rgba(127, 94, 255, 0.08);
}

.founder-photo.is-placeholder span {
  color: var(--amber-dark);
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.founder-card-dark .founder-photo {
  color: #ba99ff;
  border-color: rgba(186, 153, 255, 0.36);
  background:
    linear-gradient(rgba(251, 248, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 248, 255, 0.07) 1px, transparent 1px),
    rgba(251, 248, 255, 0.05);
  background-size: 14px 14px;
}

.founder-card-dark .founder-photo.is-placeholder .founder-photo-media {
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 140, 222, 0.2), transparent 42%),
    rgba(251, 248, 255, 0.06);
}

.founder-card-dark .founder-photo.is-placeholder span {
  color: #ba99ff;
}

.advisor-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1rem, 2.5vw, 1.6rem);
  align-items: center;
  padding: clamp(1.1rem, 2.5vw, 1.6rem);
  border: 1px solid var(--line);
  border-top: 0;
  background:
    linear-gradient(rgba(48, 46, 54, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(48, 46, 54, 0.035) 1px, transparent 1px),
    rgba(251, 248, 255, 0.76);
  background-size: 28px 28px;
}

.advisor-photo {
  width: clamp(8.5rem, 14vw, 10.5rem);
  margin: 0;
  padding: 0.45rem;
}

.advisor-photo .founder-photo-media {
  aspect-ratio: 1 / 1;
}

.advisor-body > span {
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.advisor-body h3 {
  margin: 0.25rem 0 0.35rem;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.advisor-body p {
  max-width: 52rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.team-operating-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.team-operating-grid article {
  min-width: 0;
  min-height: 17rem;
  padding: clamp(1rem, 2.5vw, 1.45rem);
  background: rgba(251, 248, 255, 0.58);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.team-operating-grid span {
  display: block;
  max-width: 15rem;
  line-height: 1.25;
}

.team-operating-grid h3 {
  margin: 0.8rem 0 0;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.team-operating-grid p {
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
}

.principle-grid article {
  min-height: 18rem;
}

.demo-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(22rem, 1fr);
  gap: 1px;
  padding: 0;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.demo-agenda,
.demo-page-form {
  min-width: 0;
  padding: clamp(1.25rem, 4vw, 2rem);
}

.demo-agenda {
  background:
    linear-gradient(rgba(251, 248, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 248, 255, 0.045) 1px, transparent 1px),
    var(--black);
  background-size: 28px 28px;
  color: #fff;
}

.demo-agenda ol {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: demo-step;
}

.demo-agenda li {
  position: relative;
  min-height: 4.4rem;
  padding: 0 0 0 3.25rem;
  color: rgba(251, 248, 255, 0.76);
}

.demo-agenda li::before {
  counter-increment: demo-step;
  content: counter(demo-step, decimal-leading-zero);
  position: absolute;
  top: 0.1rem;
  left: 0;
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border: 1px solid rgba(127, 94, 255, 0.62);
  border-radius: 6px;
  background: rgba(127, 94, 255, 0.18);
}

.demo-page-form {
  background: rgba(251, 248, 255, 0.82);
}

.demo-page-form .button {
  width: 100%;
}

.product-internal-page {
  background:
    linear-gradient(rgba(48, 46, 54, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(48, 46, 54, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 86% 10%, rgba(127, 94, 255, 0.16), transparent 30rem),
    var(--surface);
  background-size: 36px 36px, 36px 36px, auto, auto;
}

.product-internal-hero {
  align-items: end;
}

.product-internal-hero h1 {
  max-width: 12ch;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1.8rem;
}

.product-page-switcher {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.product-page-switcher a {
  display: grid;
  grid-template-columns: 2.35rem minmax(0, 1fr);
  min-width: 0;
  min-height: 7.5rem;
  align-content: space-between;
  gap: 0.7rem;
  padding: 0.85rem;
  background: rgba(251, 248, 255, 0.74);
  color: var(--ink);
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.product-page-switcher a:hover,
.product-page-switcher a.is-current {
  background: var(--black);
  color: #fff;
}

.product-page-switcher a:hover {
  transform: translateY(-2px);
}

.product-page-switcher span:not(.product-mark),
.product-proof-grid span {
  display: block;
  color: var(--amber-dark);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-page-switcher a.is-current span:not(.product-mark),
.product-page-switcher a:hover span:not(.product-mark) {
  color: #ba99ff;
}

.product-page-switcher strong {
  grid-column: 2;
  font-size: 0.95rem;
  line-height: 1.08;
}

.product-page-switcher .product-mark {
  grid-row: 1 / span 2;
  grid-column: 1;
}

.product-page-switcher span:not(.product-mark) {
  grid-column: 2;
}

.product-workflow-panel {
  display: grid;
  grid-template-columns: minmax(22rem, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.product-workflow-panel h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 4.8vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.product-workflow-panel p:not(.eyebrow) {
  max-width: 38rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.product-visual-card {
  position: relative;
  display: grid;
  gap: 0.75rem;
  min-width: 0;
  margin: 0;
}

.product-visual-card::before {
  content: "";
  position: absolute;
  inset: -1.1rem -0.9rem 2.4rem;
  z-index: 0;
  border: 1px solid rgba(127, 94, 255, 0.18);
  background:
    linear-gradient(rgba(48, 46, 54, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(48, 46, 54, 0.035) 1px, transparent 1px),
    rgba(251, 248, 255, 0.42);
  background-size: 28px 28px;
}

.product-visual-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(127, 94, 255, 0.26);
  border-radius: 8px;
  background: #0b0716;
  box-shadow:
    0 34px 100px rgba(76, 4, 129, 0.18),
    0 1px 0 rgba(251, 248, 255, 0.7) inset;
}

.product-visual-card figcaption {
  position: relative;
  z-index: 1;
  justify-self: start;
  padding: 0.5rem 0.65rem;
  border: 1px solid rgba(127, 94, 255, 0.2);
  background: rgba(251, 248, 255, 0.78);
  color: var(--amber-dark);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-proof-grid article {
  min-height: 17rem;
  padding: clamp(1.1rem, 3vw, 1.55rem);
  background: rgba(251, 248, 255, 0.68);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-proof-grid h3 {
  margin: 0.9rem 0 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.product-proof-grid p {
  margin: 0.9rem 0 0;
  color: var(--ink-soft);
}

.product-next-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
  padding: clamp(1.4rem, 4vw, 2rem);
  margin-bottom: clamp(3.5rem, 7vw, 5rem);
  background:
    linear-gradient(rgba(251, 248, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 248, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 88% 16%, rgba(127, 94, 255, 0.34), transparent 26rem),
    var(--black);
  background-size: 30px 30px, 30px 30px, auto, auto;
  color: #fff;
  border: 1px solid rgba(14, 10, 27, 0.18);
  box-shadow: var(--shadow);
}

.product-next-step h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.product-next-step p:not(.eyebrow) {
  max-width: 38rem;
  color: rgba(251, 248, 255, 0.72);
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 6.2rem) 0 1.4rem;
  background:
    radial-gradient(circle at 82% 10%, rgba(127, 94, 255, 0.34), transparent 26rem),
    radial-gradient(circle at 8% 88%, rgba(255, 140, 222, 0.18), transparent 24rem),
    linear-gradient(135deg, #0e0a1b 0%, #120b24 48%, #070511 100%);
  color: #fff;
  border-top: 1px solid rgba(251, 248, 255, 0.12);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(251, 248, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 248, 255, 0.08) 1px, transparent 1px);
  background-size: 4.2rem 4.2rem;
  mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 82%, transparent);
}

.site-footer::after {
  content: "";
  position: absolute;
  right: -9rem;
  bottom: 16%;
  z-index: -1;
  width: 36rem;
  height: 10rem;
  transform: rotate(-18deg);
  background: linear-gradient(90deg, transparent, rgba(127, 94, 255, 0.28), transparent);
  filter: blur(14px);
}

.footer-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.footer-cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: end;
  padding: clamp(1.4rem, 4vw, 2.8rem);
  overflow: hidden;
  border: 1px solid rgba(251, 248, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(251, 248, 255, 0.1), rgba(127, 94, 255, 0.12)),
    rgba(251, 248, 255, 0.04);
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.28);
}

.footer-cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(251, 248, 255, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(255, 140, 222, 0.16), transparent 52%);
  opacity: 0.74;
}

.footer-cta-copy,
.footer-cta-actions {
  position: relative;
  z-index: 1;
}

.footer-kicker {
  margin: 0 0 0.85rem;
  color: #bda8ff;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-cta-copy h2 {
  max-width: 52rem;
  margin: 0;
  color: #fff;
  font-size: clamp(2.4rem, 5.8vw, 5.7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.footer-cta-copy p:not(.footer-kicker) {
  max-width: 44rem;
  margin: 1.15rem 0 0;
  color: rgba(251, 248, 255, 0.74);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.footer-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.8rem;
  min-width: min(100%, 15rem);
}

.footer-primary-cta {
  justify-content: center;
  min-height: 3.25rem;
  box-shadow: 0 18px 44px rgba(127, 94, 255, 0.34);
}

.footer-secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.78rem 1rem;
  color: rgba(251, 248, 255, 0.88);
  font-weight: 700;
  border: 1px solid rgba(251, 248, 255, 0.16);
  border-radius: 8px;
  background: rgba(251, 248, 255, 0.06);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.footer-secondary-cta:hover {
  color: #fff;
  border-color: rgba(189, 168, 255, 0.55);
  background: rgba(251, 248, 255, 0.1);
  transform: translateY(-2px);
}

.footer-main-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1.55fr);
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: clamp(2rem, 5vw, 4.4rem);
  padding: clamp(1.8rem, 4vw, 3rem) 0;
  border-top: 1px solid rgba(251, 248, 255, 0.12);
  border-bottom: 1px solid rgba(251, 248, 255, 0.1);
}

.footer-brand-panel {
  min-width: 0;
}

.footer-brand {
  width: 9rem;
  margin-bottom: 1.2rem;
}

.footer-brand-panel > p {
  max-width: 28rem;
  margin: 0;
  color: rgba(251, 248, 255, 0.72);
  font-size: 1rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 2.5rem);
}

.footer-column {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.58rem;
}

.footer-column h3 {
  margin: 0 0 0.35rem;
  color: #bda8ff;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  color: rgba(251, 248, 255, 0.72);
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.22;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  color: rgba(251, 248, 255, 0.54);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(251, 248, 255, 0.74);
  font-weight: 700;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    position: relative;
    z-index: 30;
    display: inline-grid;
    width: 2.7rem;
    height: 2.7rem;
    place-items: center;
    background: rgba(251, 248, 255, 0.12);
    border: 1px solid currentColor;
    border-radius: 6px;
    color: inherit;
  }

  .nav-toggle-line {
    display: block;
    width: 1.1rem;
    height: 2px;
    background: currentColor;
  }

  .primary-nav,
  .header-actions {
    display: none;
  }

  body.nav-open .header-actions {
    position: fixed;
    right: 1rem;
    bottom: 1.1rem;
    left: 1rem;
    z-index: 30;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.65rem;
  }

  body.nav-open .header-actions .button,
  body.nav-open .header-live-demo {
    width: 100%;
    min-height: 3.1rem;
  }

  .primary-nav.is-open {
    position: fixed;
    inset: 0;
    z-index: 25;
    display: grid;
    align-content: center;
    justify-items: stretch;
    gap: 1.1rem;
    overflow-y: auto;
    padding: 7rem 1rem 9rem;
    background: var(--black);
    color: #fff;
    font-size: 1rem;
  }

  .primary-nav.is-open > a,
  .primary-nav.is-open .nav-dropdown {
    width: min(30rem, 100%);
    margin-inline: auto;
  }

  .primary-nav.is-open > a,
  .primary-nav.is-open .nav-trigger {
    width: 100%;
    min-height: auto;
    justify-content: space-between;
    padding: 0.82rem 0;
    border-bottom: 1px solid rgba(251, 248, 255, 0.16);
    border-radius: 0;
    color: #fff;
    font-size: 1.2rem;
  }

  .primary-nav.is-open .nav-dropdown {
    display: grid;
  }

  .primary-nav.is-open .nav-menu {
    position: static;
    display: grid;
    max-width: none;
    min-width: 0;
    margin-top: 0.55rem;
    padding: 0.55rem;
    color: #fff;
    border-color: rgba(251, 248, 255, 0.14);
    background: rgba(251, 248, 255, 0.07);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .primary-nav.is-open .nav-menu a {
    color: #fff;
  }

  .primary-nav.is-open .nav-menu span {
    color: rgba(251, 248, 255, 0.58);
  }

  .primary-nav.is-open .nav-menu-products {
    width: auto;
    grid-template-columns: minmax(0, 1fr);
  }

  .primary-nav.is-open .nav-menu-overview {
    grid-column: auto;
  }

  .primary-nav.is-open .nav-menu-label {
    color: #ba99ff;
  }

  .enterprise-console {
    right: -22rem;
    width: 58rem;
    opacity: var(--hero-product-opacity);
  }

  .hero-brain {
    right: clamp(-12rem, -16vw, -6rem);
    width: min(56rem, 72vw);
  }

  .hero-brain-label-primary {
    left: 2%;
  }

  .hero-brain-label-feed {
    right: 0;
  }

  .hero-statement {
    right: -0.24em;
    font-size: clamp(5.5rem, 14vw, 9rem);
  }

  .decision-ribbon {
    right: -18rem;
    width: 40rem;
    opacity: 0.48;
  }

  .hero-content {
    padding-top: 8rem;
  }

  .hero-product-markers {
    right: 1rem;
    max-width: min(28rem, 52vw);
  }

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

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

  .tab-button {
    border-bottom: 1px solid var(--ink);
  }

  .tab-button:nth-child(3n) {
    border-right: 0;
  }

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

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

  .memory-console-tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid rgba(243, 240, 243, 0.18);
  }

  .memory-tab {
    border-right: 1px solid rgba(243, 240, 243, 0.14);
    border-bottom: 0;
  }

  .memory-tab:last-child {
    border-right: 0;
  }

  .memory-tab::before {
    right: 0;
    bottom: auto;
    width: auto;
    height: 3px;
  }

  .memory-stage-grid {
    grid-template-columns: minmax(8rem, 0.8fr) minmax(13rem, 1fr);
  }

  .memory-output-card {
    grid-column: 1 / -1;
  }

  .risk-visual,
  .workflow-visual {
    grid-template-columns: 1fr;
  }

  .risk-visual-head {
    min-height: auto;
    padding: clamp(1.2rem, 3vw, 1.6rem);
    border-right: 0;
    border-bottom: 1px solid rgba(48, 46, 54, 0.2);
  }

  .risk-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    border-top: 0;
    background: rgba(48, 46, 54, 0.12);
  }

  .risk-summary span {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: 0.85rem;
    border: 0;
    background: rgba(251, 248, 255, 0.7);
  }

  .risk-ledger {
    grid-column: 1 / -1;
  }

  .scroll-video-card {
    left: 1.5rem;
    bottom: 4rem;
    width: min(34rem, calc(100% - 3rem));
  }

  .scroll-video-chapters {
    right: 1.5rem;
    width: 13rem;
  }

  .cinema-product-layer {
    padding-inline: 1.5rem;
  }

  .cinema-product-frame {
    width: min(40rem, 58vw);
  }

  .cinema-canopy {
    left: 8%;
  }

  .tower-a {
    left: -3%;
  }

  .tower-b {
    left: 26%;
  }

  .tower-c {
    right: -4%;
  }

  .workflow-link {
    width: 1px;
    height: 2rem;
    margin-inline: 1.2rem auto;
    background: linear-gradient(var(--amber), transparent);
  }

  .workflow-link::after {
    margin-left: -0.25rem;
    transform: translateY(1.4rem) rotate(135deg);
  }

  .story-inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.78fr);
    gap: 2rem;
  }

  .backed-by-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .backed-by-copy {
    max-width: 34rem;
  }

  .recognition-grid,
  .backed-by-logos {
    grid-column: 1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .story-board {
    min-height: 28rem;
  }

  .story-documents span {
    width: 6.6rem;
    height: 8.8rem;
  }

  .enterprise-layout,
  .security-layout,
  .faq-layout,
  .demo-card,
  .tab-panel,
  .product-suite-heading,
  .suite-panel,
  .product-hero-layout,
  .product-detail-layout,
  .page-hero,
  .article-hero,
  .article-shell,
  .insight-feature,
  .about-layout,
  .team-heading,
  .demo-page-layout {
    grid-template-columns: 1fr;
  }

  .page-hero-note {
    min-height: 12rem;
  }

  .suite-panel {
    min-height: auto;
  }

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

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

  .editorial-grid,
  .principle-grid,
  .team-operating-grid,
  .article-next-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-aside {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .product-workflow-panel,
  .product-next-step {
    grid-template-columns: 1fr;
  }

  .product-hero {
    padding-top: 7rem;
  }

  .product-hero h1 {
    max-width: 12ch;
  }

  .motion-video-frame {
    min-height: 32rem;
  }

  .procurement-brain {
    grid-template-columns: minmax(0, 0.7fr) minmax(10rem, 0.85fr) minmax(0, 0.7fr);
  }

  .sticky-heading {
    position: static;
  }

  .footer-cta-panel,
  .footer-main-grid {
    grid-template-columns: 1fr;
  }

  .footer-cta-actions {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }

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

@media (max-width: 720px) {
  .site-header {
    padding: 0.85rem 1rem;
  }

  .hero {
    min-height: 215vh;
  }

  .hero-stage {
    background:
      linear-gradient(180deg, rgba(14, 10, 27, 0.86) 0%, rgba(14, 10, 27, 0.98) 74%),
      radial-gradient(circle at 88% 19%, rgba(127, 94, 255, 0.2), transparent 34%),
      linear-gradient(135deg, #0e0a1b 0%, #1a0d3f 60%, #3600ab 100%);
  }

  .hero-statement {
    top: 8.2rem;
    right: -0.32em;
    gap: 0.12em;
    font-size: clamp(4.8rem, 22vw, 7rem);
    line-height: 0.82;
    opacity: 0.28;
    -webkit-text-stroke-color: rgba(251, 248, 255, 0.12);
    text-stroke-color: rgba(251, 248, 255, 0.12);
  }

  .decision-ribbon {
    top: auto;
    right: -14rem;
    bottom: 11rem;
    width: 38rem;
    opacity: 0.38;
  }

  .decision-ribbon span {
    padding: 0.62rem 0.75rem;
    font-size: 0.64rem;
  }

  .blueprint-lines {
    right: -23rem;
    bottom: 9rem;
    width: 42rem;
    height: 34rem;
    opacity: 0.2;
  }

  .enterprise-console {
    top: 56%;
    right: -30rem;
    width: 52rem;
    min-height: 30rem;
    opacity: var(--hero-product-opacity);
  }

  .hero-brain {
    top: 44%;
    right: -10.5rem;
    width: 37rem;
    max-width: none;
    opacity: calc(var(--hero-product-opacity) * 0.9);
    transform-origin: center;
  }

  .hero-brain::after {
    background-size: 34px 34px;
    opacity: 0.46;
  }

  .hero-brain-label,
  .hero-brain-feed {
    display: none;
  }

  .hero-content {
    width: min(100% - 2rem, 42rem);
    padding: 7.5rem 0 12rem;
  }

  .hero-product-markers {
    top: auto;
    right: 1rem;
    bottom: 9rem;
    justify-content: flex-start;
    max-width: calc(100% - 2rem);
  }

  .hero-product-markers span {
    min-height: 1.8rem;
    padding: 0.38rem 0.56rem;
    font-size: 0.62rem;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 13.5vw, 4.1rem);
    line-height: 0.94;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    width: calc(100% - 2rem);
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }

  .suite-panel {
    padding: 1.05rem;
  }

  .suite-panel-copy h3 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

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

  .suite-product-grid a {
    min-height: auto;
    padding: 0.85rem;
  }

  .knowledge-graph-visual,
  .graph-field {
    min-height: 26rem;
  }

  .graph-node {
    min-width: 5.4rem;
    min-height: 2.6rem;
    padding: 0.58rem 0.7rem;
    font-size: 0.86rem;
  }

  .graph-node-core {
    min-width: 9rem;
  }

  .graph-pill {
    min-width: 5.3rem;
    min-height: 2.6rem;
    padding: 0.55rem 0.68rem;
    font-size: 0.86rem;
  }

  .pill-c,
  .pill-d {
    top: 50%;
  }

  .story-section {
    min-height: auto;
    padding: 4.5rem 0 4rem;
  }

  .story-section::before {
    top: 5rem;
    right: -0.6em;
    font-size: clamp(4rem, 23vw, 7rem);
  }

  .story-inner {
    display: block;
  }

  .story-visual {
    position: relative;
    top: 0;
    min-height: auto;
    padding: 4.5rem 0 1rem;
  }

  .story-board {
    min-height: 20rem;
  }

  .story-board-head {
    padding: 0.75rem;
    font-size: 0.64rem;
  }

  .story-documents,
  .story-extraction,
  .story-risks,
  .story-decision {
    inset: 3.5rem 0.65rem 0.65rem;
  }

  .story-documents span {
    width: 5.2rem;
    height: 6.9rem;
    padding: 0.55rem;
    font-size: 0.72rem;
  }

  .story-extraction {
    gap: 0.45rem;
  }

  .story-extraction span {
    min-height: 2.35rem;
    padding: 0.45rem 0.6rem 0.45rem 2.2rem;
    font-size: 0.78rem;
  }

  .story-extraction span::before {
    left: 0.7rem;
    width: 0.72rem;
    height: 0.72rem;
  }

  .story-risks {
    gap: 0.48rem;
  }

  .story-risks span {
    min-height: 2.9rem;
    padding: 0.55rem 0.65rem;
    font-size: 0.62rem;
  }

  .story-decision {
    inset: auto 0.65rem 0.65rem;
    min-height: 9.4rem;
    padding: 0.75rem;
  }

  .story-decision strong {
    font-size: clamp(2rem, 11vw, 3.1rem);
  }

  .story-decision span {
    font-size: 0.86rem;
  }

  .story-copy {
    padding: 2rem 0 5rem;
  }

  .story-copy > h2 {
    position: static;
    margin: 0 0 2rem;
    font-size: clamp(2.4rem, 13vw, 3.7rem);
  }

  .backed-by-section {
    padding: 2.6rem 0;
  }

  .recognition-grid,
  .backed-by-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recognition-grid article:first-child {
    grid-column: 1 / -1;
  }

  .backed-by-logos li {
    min-height: 5.35rem;
    padding: 0.9rem;
  }

  .backed-by-logos img {
    max-width: min(8rem, 100%);
    max-height: 2.55rem;
  }

  .story-step {
    min-height: auto;
    padding-left: 0.9rem;
    margin: 0 0 1.2rem;
  }

  .story-step h3 {
    font-size: clamp(2rem, 11vw, 3.3rem);
  }

  .section {
    padding: 4rem 0;
  }

  .section-heading h2,
  .demo-card h2 {
    font-size: clamp(2.2rem, 12vw, 3.6rem);
  }

  .brain-proof {
    margin-top: 1.1rem;
    padding-left: 0.85rem;
    font-size: 0.96rem;
  }

  .procurement-brain {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 0.75rem;
    padding-block: 0.25rem;
  }

  .procurement-brain::before {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: auto;
    background: linear-gradient(transparent, rgba(127, 94, 255, 0.5), transparent);
  }

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

  .brain-inputs span:nth-child(even),
  .brain-outputs span:nth-child(even) {
    transform: none;
  }

  .brain-core {
    min-height: 10.5rem;
  }

  .risk-grid,
  .workflow,
  .enterprise-cards,
  .security-grid,
  .stakeholder-grid,
  .tab-list,
  .product-page-links,
  .product-flow,
  .product-metrics,
  .product-cta-card {
    grid-template-columns: 1fr;
  }

  .content-main {
    padding-top: 4.4rem;
  }

  .page-hero {
    padding: 5.5rem 0 3rem;
  }

  .article-hero {
    padding: 5.5rem 0 3rem;
  }

  .page-hero h1 {
    font-size: clamp(2.7rem, 12vw, 4rem);
    line-height: 0.94;
  }

  .article-hero h1 {
    font-size: clamp(2.55rem, 11vw, 4rem);
    line-height: 0.95;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .page-hero-note,
  .insight-feature,
  .demo-agenda,
  .demo-page-form {
    padding: 1rem;
  }

  .page-hero-note {
    min-height: auto;
  }

  .resource-band {
    padding: 3rem 0;
  }

  .resource-band.demo-page-layout {
    padding: 0;
  }

  .insight-feature h2,
  .about-layout h2,
  .team-heading h2,
  .demo-agenda h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .editorial-grid,
  .principle-grid,
  .book-grid,
  .founder-grid,
  .team-operating-grid,
  .article-aside,
  .article-next-grid {
    grid-template-columns: 1fr;
  }

  .article-feature .abstract-cover,
  .article-hero .abstract-cover {
    min-height: 18rem;
  }

  .book-card.is-featured {
    grid-column: auto;
  }

  .editorial-card,
  .book-card,
  .founder-card,
  .principle-grid article,
  .team-operating-grid article,
  .product-proof-grid article {
    min-height: auto;
  }

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

  .product-page-switcher a {
    min-height: 5.2rem;
  }

  .product-workflow-panel h2,
  .product-next-step h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

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

  .memory-console-tabs {
    grid-template-columns: 1fr;
  }

  .memory-tab {
    grid-template-columns: auto 1fr auto;
    border-right: 0;
    border-bottom: 1px solid rgba(243, 240, 243, 0.14);
  }

  .memory-tab:last-child {
    border-bottom: 0;
  }

  .memory-tab .icon {
    grid-row: 1 / span 2;
  }

  .memory-tab span,
  .memory-tab small {
    grid-column: 2;
  }

  .memory-tab strong {
    grid-row: 1 / span 2;
    grid-column: 3;
    align-self: center;
    font-size: 2rem;
  }

  .memory-stage-topline {
    display: grid;
    gap: 0.35rem;
  }

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

  .memory-stage-grid::before {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: auto;
    background: linear-gradient(transparent, rgba(186, 153, 255, 0.42), transparent);
    transform: translateX(-50%);
  }

  .memory-source-stack span:nth-child(even) {
    transform: none;
  }

  .memory-core-card {
    min-height: 15.5rem;
  }

  .memory-insight-panel,
  .memory-proof-row {
    grid-template-columns: 1fr;
  }

  .memory-insight-panel h3,
  .memory-insight-panel p {
    grid-column: auto;
    grid-row: auto;
  }

  .product-hero {
    min-height: auto;
    padding: 6.75rem 0 3.5rem;
  }

  .product-hero h1 {
    font-size: clamp(2.85rem, 13vw, 4.2rem);
  }

  .product-hero-proof {
    display: none;
  }

  .product-subnav {
    top: 4.4rem;
  }

  .product-detail-layout {
    padding: 4rem 0;
  }

  .product-detail h2,
  .product-cta-card h2 {
    font-size: clamp(2.25rem, 12vw, 3.7rem);
  }

  .motion-video-frame {
    min-height: 25rem;
  }

  .motion-chrome {
    min-height: 3rem;
    padding: 0.7rem;
  }

  .motion-chrome strong {
    display: none;
  }

  .motion-control-strip {
    display: none;
  }

  .motion-video-frame::before {
    font-size: clamp(3.8rem, 19vw, 6rem);
  }

  .motion-crane {
    width: 12rem;
    height: 12rem;
  }

  .crane-left {
    left: -1.5rem;
  }

  .crane-right {
    right: -2rem;
  }

  .crane-mast {
    height: 9rem;
  }

  .crane-boom {
    width: 8rem;
  }

  .crane-cable,
  .crane-hook {
    left: 10.2rem;
  }

  .site-foundation {
    right: 1rem;
    left: 1rem;
    grid-template-columns: repeat(4, minmax(3rem, 1fr));
    gap: 0.4rem;
  }

  .site-foundation span {
    min-height: 4.2rem;
  }

  .site-foundation span:nth-child(2) {
    min-height: 6.8rem;
  }

  .site-foundation span:nth-child(3) {
    min-height: 5.8rem;
  }

  .site-foundation span:nth-child(4) {
    min-height: 8.2rem;
  }

  .motion-packet {
    width: 3.6rem;
    height: 2.55rem;
    font-size: 0.62rem;
  }

  .motion-decision-core {
    top: 38%;
    width: 10.5rem;
    min-height: 8.5rem;
  }

  .motion-award-card {
    right: 1rem;
    top: 56%;
    min-width: 7.5rem;
  }

  .motion-award-card strong {
    font-size: 2rem;
  }

  .product-interface {
    min-height: auto;
  }

  .product-interface-command strong {
    font-size: 1.45rem;
  }

  .risk-visual {
    min-height: auto;
  }

  .scroll-video-section {
    min-height: 320vh;
  }

  .scroll-video-sticky {
    min-height: 100svh;
  }

  .cinema-crosshair-y {
    left: 32%;
  }

  .cinema-district {
    right: -56%;
    bottom: 3%;
    left: -36%;
    height: 62%;
  }

  .cinema-canopy {
    left: 10%;
    width: 21rem;
    height: 8rem;
  }

  .cinema-tower {
    padding: 0.7rem;
  }

  .cinema-tower span {
    height: 1.4rem;
  }

  .tower-a {
    width: 15rem;
    height: 16rem;
  }

  .tower-b {
    width: 18rem;
    height: 13rem;
  }

  .tower-c {
    width: 17rem;
    height: 15rem;
  }

  .cinema-crane {
    width: 12rem;
    height: 11rem;
  }

  .cinema-site-label {
    display: none;
  }

  .cinema-product-layer {
    place-items: start center;
    padding: 10.2rem 1rem 0;
  }

  .cinema-product-frame {
    width: min(100%, 26rem);
    min-height: 20rem;
  }

  .cinema-product-head {
    display: grid;
    gap: 0.35rem;
  }

  .cinema-product-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0.7rem;
  }

  .cinema-source-stack,
  .cinema-score-panel,
  .cinema-risk-panel,
  .cinema-award-panel {
    min-height: 6.8rem;
    padding: 0.75rem;
  }

  .cinema-source-stack span {
    padding: 0.42rem;
  }

  .cinema-product-grid strong {
    font-size: 1.65rem;
  }

  .scroll-video-card {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    width: auto;
    padding: 1.15rem;
  }

  .scroll-video-card h2 {
    max-width: 12ch;
    font-size: 2.1rem;
  }

  .scroll-video-card p:not(.eyebrow) {
    font-size: 0.95rem;
  }

  .scroll-video-chapters {
    top: 4.8rem;
    right: 1rem;
    bottom: auto;
    left: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: auto;
    gap: 1px;
    font-size: 0.56rem;
  }

  .scroll-video-chapters span {
    display: grid;
    gap: 0.18rem;
    min-height: 2.65rem;
    justify-items: center;
    padding: 0.42rem 0.24rem;
    text-align: center;
  }

  .risk-summary,
  .risk-ledger {
    grid-template-columns: 1fr;
  }

  .risk-panel-top {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .risk-panel-top b {
    width: max-content;
  }

  .risk-matrix {
    min-height: 22rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
    background:
      linear-gradient(90deg, transparent calc(50% - 1px), rgba(186, 153, 255, 0.18) 50% calc(50% + 1px), transparent calc(50% + 1px)),
      linear-gradient(transparent calc(33.33% - 1px), rgba(186, 153, 255, 0.18) 33.33% calc(33.33% + 1px), transparent calc(33.33% + 1px) calc(66.66% - 1px), rgba(186, 153, 255, 0.18) 66.66% calc(66.66% + 1px), transparent calc(66.66% + 1px)),
      rgba(251, 248, 255, 0.035);
  }

  .risk-zone {
    padding: 0.56rem 0.56rem 0.56rem 1.45rem;
    font-size: 0.56rem;
  }

  .risk-marker {
    max-width: 10.8rem;
    font-size: 0.72rem;
  }

  .marker-critical {
    top: 18%;
    right: 0.65rem;
  }

  .marker-review {
    top: 48%;
    left: 22%;
  }

  .marker-monitor {
    left: 0.65rem;
    bottom: 13%;
  }

  .governance-visual {
    min-height: 24rem;
  }

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

  .workflow-node {
    min-height: 9.5rem;
  }

  .security-visual {
    min-height: 22rem;
  }

  .stakeholder-visual {
    min-height: 42rem;
  }

  .stakeholder-brain-visual {
    display: grid;
    gap: 0.75rem;
    min-height: auto;
    padding: 1rem;
  }

  .stakeholder-brain-visual .recommendation-thread {
    display: none;
  }

  .recommendation-brain,
  .brain-signal-card,
  .brain-approval-card,
  .brain-memory-pill {
    position: relative;
    inset: auto;
    width: 100%;
    min-width: 0;
    transform: none;
  }

  .recommendation-brain {
    min-height: 15.5rem;
    border-radius: 38% 44% 40% 42% / 46% 48% 38% 40%;
  }

  .recommendation-brain::before,
  .recommendation-brain::after {
    top: 1rem;
    bottom: 1rem;
  }

  .recommendation-brain-icon {
    width: 3rem;
    height: 3rem;
  }

  .recommendation-brain strong {
    font-size: clamp(1.9rem, 8vw, 2.35rem);
  }

  .recommendation-brain small {
    font-size: 0.86rem;
  }

  .brain-signal-card,
  .brain-approval-card,
  .brain-memory-pill {
    padding: 0.72rem;
  }

  .brain-signal-card strong,
  .brain-approval-card strong {
    font-size: 1.85rem;
  }

  .security-core {
    width: 11rem;
    height: 7.7rem;
  }

  .security-core::before,
  .security-core::after {
    top: 0.85rem;
    bottom: 0.8rem;
    width: 4rem;
  }

  .security-core::before {
    left: 0.8rem;
  }

  .security-core::after {
    right: 0.8rem;
  }

  .security-core-shell {
    inset: 1.05rem 1.45rem 1rem;
  }

  .security-logo-mark {
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 0.7rem;
  }

  .integration-grid span {
    width: 3.6rem;
    height: 3.6rem;
    font-size: 0.72rem;
  }

  .truth-core {
    width: min(24rem, calc(100% - 2rem));
    min-height: auto;
    padding: 0.85rem;
  }

  .recommendation-head {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .recommendation-head strong {
    font-size: clamp(2rem, 11vw, 3.1rem);
  }

  .recommendation-head em {
    width: max-content;
    max-width: 100%;
  }

  .recommendation-score {
    grid-template-columns: 1fr auto;
    padding: 0.85rem 0;
  }

  .recommendation-score small {
    width: 4.8rem;
    height: 4.8rem;
    box-shadow: inset 0 0 0 0.5rem var(--paper);
    font-size: 0.62rem;
  }

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

  .recommendation-map div {
    min-height: 4.8rem;
    padding: 0.7rem;
  }

  .recommendation-map strong {
    margin-top: 0.35rem;
    font-size: 1.8rem;
  }

  .approval-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
  }

  .approval-strip span {
    padding: 0.48rem 0.5rem 0.48rem 1.55rem;
    font-size: 0.58rem;
  }

  .approval-strip span::before {
    left: 0.55rem;
    width: 0.45rem;
    height: 0.45rem;
  }

  .stakeholder-node {
    display: none;
  }

  .node-procurement {
    left: 5%;
  }

  .node-qs {
    right: 5%;
  }

  .tab-button {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .tab-button:last-child {
    border-bottom: 0;
  }

  .product-shot {
    min-height: 20rem;
  }

  .matrix-table {
    grid-template-columns: 1.2fr repeat(3, minmax(3.2rem, 1fr));
    font-size: 0.82rem;
  }

  .matrix-table span,
  .matrix-table strong,
  .matrix-table b {
    min-height: 3rem;
    padding: 0.55rem;
  }

  .site-footer {
    padding-top: 3rem;
  }

  .footer-cta-panel {
    padding: 1.15rem;
  }

  .footer-cta-copy h2 {
    font-size: clamp(2.15rem, 14vw, 3.35rem);
  }

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

  .footer-primary-cta,
  .footer-secondary-cta {
    width: 100%;
  }

  .footer-main-grid {
    gap: 2rem;
    margin-top: 2.2rem;
  }

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

  .footer-column {
    padding-top: 1rem;
    border-top: 1px solid rgba(251, 248, 255, 0.1);
  }

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

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

/* Final product-suite override: global TruBuild product OS */
.platform-section {
  background:
    radial-gradient(circle at 78% 22%, rgba(169, 139, 255, 0.08), transparent 30rem),
    radial-gradient(circle at 15% 72%, rgba(127, 94, 255, 0.11), transparent 30rem),
    var(--surface);
}

.suite-tabs {
  position: relative;
  display: grid;
  gap: 0;
  overflow: hidden;
  padding: 1px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(169, 139, 255, 0.16) 28%, rgba(127, 94, 255, 0.1) 62%, rgba(0, 0, 0, 0));
  box-shadow: 0 34px 110px rgba(31, 16, 70, 0.22);
}

.suite-tabs::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 23px;
  background:
    radial-gradient(circle at 82% 16%, rgba(169, 139, 255, 0.14), transparent 26rem),
    radial-gradient(circle at 16% 86%, rgba(127, 94, 255, 0.28), transparent 30rem),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    #080512;
  background-size: auto, auto, 36px 36px, 36px 36px, auto;
  pointer-events: none;
}

.suite-tab-list,
.suite-tab-panels {
  position: relative;
  z-index: 1;
}

.suite-tab-list {
  width: 100%;
  gap: 1px;
  padding: 0.45rem;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
  backdrop-filter: blur(24px);
}

.suite-tab {
  min-height: 4.7rem;
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  box-shadow: none;
}

.suite-tab:hover {
  background: rgba(255, 255, 255, 0.075);
  color: #fff;
}

.suite-tab-name {
  color: inherit;
}

.suite-tab-index {
  color: rgba(169, 139, 255, 0.8);
}

.suite-tab-meta {
  color: rgba(255, 255, 255, 0.52);
}

.suite-tab.is-active {
  border-color: rgba(255, 255, 255, 0.15);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.42);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 18px 54px rgba(0, 0, 0, 0.28);
}

.suite-tab.is-active .suite-tab-index {
  color: #a98bff;
}

.suite-tab-panels {
  padding: clamp(1rem, 2vw, 1.5rem);
}

.suite-tab-panel {
  gap: clamp(1rem, 2vw, 1.55rem);
}

.suite-panel-intro {
  grid-template-columns: minmax(0, 0.72fr) minmax(18rem, 0.28fr);
  align-items: end;
  max-width: none;
  padding: clamp(0.25rem, 1vw, 0.55rem);
}

.suite-panel-intro h3 {
  grid-column: 1;
  grid-row: 1 / span 2;
  max-width: 11ch;
  color: #fff;
  font-size: clamp(2.35rem, 4.45vw, 4.6rem);
  line-height: 0.92;
}

.suite-panel-intro p {
  grid-column: 2;
  max-width: 27rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
}

.suite-panel-intro .suite-index {
  grid-column: 2;
  color: #a98bff;
}

.suite-showcase {
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.58fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.1);
}

.app-window {
  min-height: clamp(29rem, 44vw, 36rem);
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 78% 14%, rgba(169, 139, 255, 0.11), transparent 26rem),
    linear-gradient(rgba(255, 255, 255, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(23, 23, 23, 0.78);
  background-size: auto, 28px 28px, 28px 28px, auto;
  box-shadow: none;
}

.app-bar {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
}

.app-brand,
.app-main-title,
.eval-bidder,
.eval-score,
.app-foot-value,
.kpi strong,
.signal strong {
  color: #fff;
}

.app-logo {
  background: transparent;
  box-shadow: none;
}

.app-crumb,
.app-nav,
.app-filter span,
.eval-row--head,
.cost-axis,
.kpi span,
.signal,
.app-foot-label {
  color: rgba(255, 255, 255, 0.58);
}

.app-action,
.app-foot-label {
  background: #a98bff;
  color: #080512;
  box-shadow: 0 0 28px rgba(169, 139, 255, 0.2);
}

.app-action--ghost {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.app-status,
.app-status--neutral {
  background: rgba(169, 139, 255, 0.1);
  color: #a98bff;
}

.app-body {
  min-height: calc(clamp(29rem, 44vw, 36rem) - 3.7rem);
}

.app-rail {
  border-right-color: rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.22);
}

.app-nav.is-active {
  background: rgba(169, 139, 255, 0.1);
  color: #a98bff;
}

.app-filter,
.eval-board,
.cost-graph,
.kpi,
.signal,
.app-foot {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.065);
}

.eval-row {
  background: rgba(255, 255, 255, 0.052);
}

.eval-row--head {
  background: rgba(255, 255, 255, 0.075);
}

.eval-meter {
  background: rgba(255, 255, 255, 0.12);
}

.eval-meter span {
  background: linear-gradient(90deg, #a98bff, #7f5eff);
}

.cost-line {
  stroke: #a98bff;
}

.cost-area {
  fill: rgba(169, 139, 255, 0.12);
}

.cost-grid,
.cost-bench {
  stroke: rgba(255, 255, 255, 0.14);
}

.cost-dot {
  fill: #080512;
  stroke: #a98bff;
}

.suite-highlights {
  gap: 1px;
  padding: 0;
  background: rgba(255, 255, 255, 0.1);
}

.suite-highlight {
  min-height: 9.5rem;
  padding: clamp(1rem, 1.5vw, 1.25rem);
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
}

.suite-highlight:hover {
  background: rgba(169, 139, 255, 0.075);
  box-shadow: none;
}

.suite-highlight-index {
  background: rgba(169, 139, 255, 0.1);
  color: #a98bff;
}

.suite-highlight h4 {
  color: #fff;
}

.suite-highlight p {
  color: rgba(255, 255, 255, 0.6);
}

.suite-breakdown {
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
}

.suite-breakdown a {
  min-height: 7rem;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  box-shadow: none;
}

.suite-breakdown a:hover {
  background: rgba(169, 139, 255, 0.075);
  box-shadow: none;
}

.suite-breakdown-index {
  color: #a98bff;
}

.suite-breakdown em {
  color: rgba(255, 255, 255, 0.56);
}

.suite-breakdown a::after {
  border-color: rgba(255, 255, 255, 0.54);
}

.suite-breakdown a:hover::after {
  border-color: #a98bff;
}

/* ---- Evaluation / award product image (dark) ---- */
.eval-chip {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.6);
}

.eval-chip--done {
  background: rgba(52, 211, 153, 0.16);
  color: #5be0a8;
}

.app-action--award {
  background: linear-gradient(135deg, #34d399, #16a34a);
  color: #052e16;
  box-shadow: 0 0 24px rgba(52, 211, 153, 0.22);
}

.rank-card {
  border-color: rgba(169, 139, 255, 0.32);
  background: linear-gradient(180deg, rgba(169, 139, 255, 0.12), rgba(169, 139, 255, 0.03));
}

.rank-donut-track {
  stroke: rgba(255, 255, 255, 0.12);
}

.rank-donut-value {
  stroke: #a98bff;
}

.rank-donut-num {
  color: #fff;
}

.rank-donut-cap {
  color: rgba(255, 255, 255, 0.55);
}

.rank-name {
  color: #fff;
}

.rank-badge {
  background: rgba(255, 214, 102, 0.18);
  color: #ffd666;
}

.rank-metric-label {
  color: rgba(255, 255, 255, 0.6);
}

.rank-metric-value,
.lead-overall {
  color: #fff;
}

.rank-bar,
.lead-bar {
  background: rgba(255, 255, 255, 0.1);
}

.rank-bar--tech span,
.lead-bar--tech span {
  background: #a98bff;
}

.rank-bar--comm span,
.lead-bar--comm span {
  background: #34d399;
}

.lead-board {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.lead-row {
  background: rgba(255, 255, 255, 0.04);
}

.lead-rank {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}

.lead-name {
  color: #fff;
}

.app-trend {
  background: rgba(52, 211, 153, 0.16);
  color: #5be0a8;
}

.kpi strong em {
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1020px) {
  .suite-panel-intro,
  .suite-showcase {
    grid-template-columns: 1fr;
  }

  .suite-panel-intro h3,
  .suite-panel-intro p,
  .suite-panel-intro .suite-index {
    grid-column: 1;
  }

  .suite-panel-intro h3 {
    grid-row: auto;
  }

  .app-window {
    min-height: auto;
    border-radius: 0;
  }
}

@media (max-width: 620px) {
  .suite-tab-panels {
    padding: 0.75rem;
  }

  .suite-panel-intro h3 {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

  .app-body {
    grid-template-columns: 1fr;
  }

  .app-rail {
    display: none;
  }

  .app-bar {
    flex-wrap: wrap;
  }

  .app-bar-actions {
    width: 100%;
    justify-content: space-between;
  }

  .eval-row {
    grid-template-columns: minmax(0, 1fr) 3rem;
  }

  .eval-row > :nth-child(2),
  .eval-row > :nth-child(4) {
    display: none;
  }

  .suite-highlight {
    min-height: auto;
  }
}

/* === Product suite scroll-scrub: contained card -> full-bleed, products reveal === */
.platform-scrub .suite-tabs {
  /* start aligned with the content width, grow to a wider card that always
     keeps side gutters (never full-bleed); never narrower than the start. */
  --w0: min(1180px, var(--vw, 100vw) - 2rem);
  --w1: max(var(--w0), min(88rem, var(--vw, 100vw) - 6rem));
  position: relative;
  left: 50%;
  width: calc(var(--w0) + (var(--w1) - var(--w0)) * var(--p, 0));
  transform: translateX(-50%);
  will-change: width;
}

.platform-scrub .suite-tab-panels {
  opacity: var(--reveal, 0);
  transform: translateY(calc((1 - var(--reveal, 0)) * 1.4rem));
  will-change: opacity, transform;
}

@media (prefers-reduced-motion: reduce) {
  .platform-scrub .suite-tabs {
    left: auto;
    width: auto;
    transform: none;
  }

  .platform-scrub .suite-tab-panels {
    opacity: 1;
    transform: none;
  }
}

/* === Careers: life at TruBuild drafting board === */
.careers-board {
  position: relative;
  min-height: clamp(34rem, 44vw, 44rem);
  border: 1px solid rgba(127, 94, 255, 0.3);
  background:
    linear-gradient(rgba(127, 94, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 94, 255, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(251, 248, 255, 0.92), rgba(241, 236, 255, 0.65));
  background-size: 36px 36px, 36px 36px, auto;
}

.board-plate {
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 5;
  padding: 0.45rem 0.85rem;
  background: var(--black);
  color: #ba99ff;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.board-word {
  position: absolute;
  left: 50%;
  top: 52%;
  z-index: 1;
  transform: translate(-50%, -50%);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(127, 94, 255, 0.22);
  font-size: clamp(5rem, 17vw, 15rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.board-cross {
  position: absolute;
  left: var(--bx, 50%);
  top: var(--by, 50%);
  z-index: 1;
  width: 1.1rem;
  height: 1.1rem;
  transform: translate(-50%, -50%);
  pointer-events: none;
  background:
    linear-gradient(var(--blueprint), var(--blueprint)) center / 1px 100% no-repeat,
    linear-gradient(var(--blueprint), var(--blueprint)) center / 100% 1px no-repeat;
  opacity: 0.45;
}

.board-photo {
  position: absolute;
  z-index: 2;
  margin: 0;
  padding: 0.55rem 0.55rem 0;
  background: #fff;
  border: 1px solid rgba(48, 46, 54, 0.16);
  box-shadow: 0 18px 44px rgba(31, 16, 70, 0.16);
  transform: rotate(var(--tilt, 0deg));
  transition: transform 240ms ease, box-shadow 240ms ease, z-index 0s;
}

.board-photo:hover {
  z-index: 4;
  transform: rotate(0deg) translateY(-6px) scale(1.015);
  box-shadow: 0 30px 70px rgba(31, 16, 70, 0.24);
}

.board-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.board-photo figcaption {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.55rem 0.15rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.board-photo figcaption i {
  font-style: normal;
  color: var(--amber-dark);
}

.board-photo figcaption span {
  color: var(--ink-soft);
}

.photo-product {
  --tilt: -1.6deg;
  left: 4%;
  top: 11%;
  width: min(33%, 25rem);
}

.photo-product img {
  aspect-ratio: 1 / 1;
}

.photo-site {
  --tilt: 2.2deg;
  left: 33.5%;
  top: 26%;
  width: min(24%, 19rem);
  z-index: 3;
}

.photo-site img {
  aspect-ratio: 3 / 4;
}

.photo-skyline {
  --tilt: -1.1deg;
  right: 4.5%;
  top: 15%;
  width: min(37%, 29rem);
}

.photo-skyline img {
  aspect-ratio: 4 / 3;
}

.board-tags {
  position: absolute;
  left: 4%;
  bottom: 6%;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.board-tags li {
  padding: 0.34rem 0.7rem;
  background: #fff;
  border: 1px solid rgba(127, 94, 255, 0.36);
  color: var(--amber-dark);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(-1.2deg);
}

.board-tags li:nth-child(even) {
  transform: rotate(1.4deg);
}

@media (prefers-reduced-motion: reduce) {
  .board-photo,
  .board-photo:hover {
    transition: none;
    transform: rotate(var(--tilt, 0deg));
  }
}

@media (max-width: 860px) {
  .careers-board {
    min-height: auto;
    display: grid;
    gap: 1.5rem;
    padding: 3.4rem 1rem 1.4rem;
  }

  .board-word {
    display: none;
  }

  .board-cross {
    display: none;
  }

  .board-photo,
  .photo-product,
  .photo-site,
  .photo-skyline {
    position: static;
    width: 100%;
  }

  .photo-product img,
  .photo-site img,
  .photo-skyline img {
    aspect-ratio: 4 / 3;
  }

  .board-tags {
    position: static;
  }
}
/* === Article pull quotes (news/announcement pages) === */
.article-body blockquote {
  margin: 1.7rem 0;
  padding: 0.4rem 0 0.4rem 1.25rem;
  border-left: 3px solid var(--amber);
}

.article-body blockquote p {
  margin: 0 0 0.55rem;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.55;
}

.article-body blockquote footer {
  color: var(--blueprint);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
