:root {
  color-scheme: light;
  --ink: #07111f;
  --muted: #607083;
  --line: rgba(100, 118, 143, 0.22);
  --surface: #f5f7fa;
  --blue: #165dff;
  --cyan: #22a8df;
  --green: #0d8068;
  --amber: #b7741e;
  --white: #ffffff;
  --scroll-progress: 0;
  --story-progress: 0;
  --nav-height: 78px;

  /* Bluemouse AI-agents section palette */
  --bm-bg-primary: #06111f;
  --bm-bg-secondary: #0a1a2e;
  --bm-bg-radial-blue: #12395c;
  --bm-card-bg-start: #343b86;
  --bm-card-bg-end: #17245b;
  --bm-card-border: rgba(139, 156, 255, 0.28);
  --bm-card-border-hover: rgba(122, 206, 255, 0.72);
  --bm-text-primary: #f7faff;
  --bm-text-secondary: #cad6ea;
  --bm-text-muted: #9eaccb;
  --bm-accent-blue: #5bb8ff;
  --bm-accent-cyan: #70e3ff;
  --bm-accent-violet: #8b7cff;
  --bm-accent-teal: #50e3c2;
  --bm-pill-bg: rgba(255, 255, 255, 0.08);
  --bm-pill-border: rgba(255, 255, 255, 0.16);
  --bm-focus-ring: #70e3ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

p {
  color: var(--muted);
}

a,
button,
input,
select,
textarea {
  font: inherit;
}

.scroll-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: calc(var(--scroll-progress) * 100%);
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green), var(--amber));
  box-shadow: 0 0 18px rgba(34, 168, 223, 0.42);
}

.site-nav {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  right: 0;
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px clamp(22px, 6vw, 94px);
  background: #ffffff;
  border-bottom: 1px solid rgba(100, 118, 143, 0.16);
  transition: min-height 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.scrolled .site-nav {
  min-height: 66px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(7, 17, 31, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: clamp(168px, 13vw, 212px);
  max-width: 46vw;
}

.site-nav nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-nav a,
.site-footer a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 820;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--blue);
}

.login-link {
  min-height: 42px;
  display: inline-grid;
  place-items: center;
  padding: 0 16px;
  border: 1px solid rgba(22, 93, 255, 0.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(7, 17, 31, 0.08);
}

.story {
  position: relative;
  background: #050a12;
}

.story-stage {
  position: sticky;
  z-index: 0;
  top: 0;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  background: #050a12;
}

.stage-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 20%, rgba(34, 168, 223, 0.22), transparent 28%),
    linear-gradient(115deg, #040811 0%, #06111e 42%, #081827 100%);
}

.stage-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  transform: translateY(calc(var(--story-progress) * -80px));
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.stage-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 10, 18, 0.96), rgba(5, 10, 18, 0.5) 48%, rgba(5, 10, 18, 0.92)),
    linear-gradient(180deg, rgba(5, 10, 18, 0.02), #050a12 98%);
}

.stage-bg span {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(34, 168, 223, 0.56), transparent);
  filter: blur(0.2px);
  opacity: 0.36;
}

.stage-bg span:nth-child(1) {
  right: 12%;
  top: 28%;
  width: 44vw;
  height: 1px;
  transform: rotate(-13deg) translateX(calc(var(--story-progress) * -110px));
}

.stage-bg span:nth-child(2) {
  right: 4%;
  top: 60%;
  width: 48vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183, 116, 30, 0.56), transparent);
  transform: rotate(9deg) translateX(calc(var(--story-progress) * -90px));
}

.stage-bg span:nth-child(3) {
  left: 10%;
  bottom: 16%;
  width: 34vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13, 128, 104, 0.6), transparent);
  transform: rotate(16deg) translateX(calc(var(--story-progress) * 120px));
}

.motion-panel {
  position: absolute;
  z-index: 2;
  top: calc(var(--nav-height) + 42px);
  right: clamp(22px, 6vw, 94px);
  bottom: 48px;
  width: min(46vw, 760px);
  min-width: 520px;
  transition: left 760ms ease, right 760ms ease, transform 760ms ease;
}

.scene-1 .motion-panel,
.scene-3 .motion-panel {
  right: auto;
  left: clamp(22px, 6vw, 94px);
}

.scene-0 .motion-panel {
  left: 0;
  right: 0;
  top: var(--nav-height);
  bottom: 0;
  width: 100%;
  min-width: 0;
}

.panel-shell {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(9, 20, 35, 0.68);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
}

.motion-progress {
  position: absolute;
  z-index: 8;
  left: 22px;
  right: 22px;
  bottom: 20px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.motion-progress span {
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.scene-0 .motion-progress span:nth-child(1),
.scene-1 .motion-progress span:nth-child(-n + 2),
.scene-2 .motion-progress span:nth-child(-n + 3),
.scene-3 .motion-progress span:nth-child(-n + 4),
.scene-4 .motion-progress span:nth-child(-n + 5) {
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.visual-scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(36px) scale(0.96);
  transition: opacity 760ms ease, transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scene-0 .visual-overview,
.scene-1 .visual-model,
.scene-2 .visual-app,
.scene-3 .visual-compute,
.scene-4 .visual-infra {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.visual-scene img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.05);
}

.visual-model img {
  object-position: center;
  object-fit: contain;
  background: #040910;
  filter: saturate(1.04) contrast(1.05) brightness(1);
  transform: scale(1.12);
}

.visual-model::after {
  background: linear-gradient(180deg, rgba(5, 10, 18, 0.02), rgba(5, 10, 18, 0.05) 66%, rgba(5, 10, 18, 0.2));
}

.visual-app img {
  object-position: center;
  object-fit: contain;
  padding: clamp(12px, 2vw, 24px);
  background: #07111f;
  filter: saturate(1.02) contrast(1.02) brightness(0.94);
}

.visual-app::after {
  background: linear-gradient(180deg, rgba(5, 10, 18, 0.02), rgba(5, 10, 18, 0.06) 62%, rgba(5, 10, 18, 0.22));
}

.visual-compute img {
  object-position: center;
  filter: saturate(0.9) contrast(1.08) brightness(0.82);
}

.visual-infra img {
  object-position: center;
}

.visual-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 10, 18, 0.04), rgba(5, 10, 18, 0.18) 48%, rgba(5, 10, 18, 0.76));
}

.visual-overview {
  background: #050a12;
}

.visual-overview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.05) brightness(0.66);
  transform: scale(1.02);
}

.visual-overview::after {
  display: block;
  background:
    linear-gradient(90deg, rgba(5, 10, 18, 0.94) 0%, rgba(5, 10, 18, 0.74) 36%, rgba(5, 10, 18, 0.34) 66%, rgba(5, 10, 18, 0.7) 100%),
    linear-gradient(180deg, rgba(5, 10, 18, 0.42) 0%, rgba(5, 10, 18, 0.12) 48%, #050a12 100%);
}

.scene-0 .panel-shell {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.scene-0 .motion-progress {
  opacity: 0;
}

.visual-overview .overview-reference {
  display: none;
}

.hero-step .story-copy {
  width: min(100%, 680px);
}

.hero-proofline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 850;
}

.hero-proofline span {
  position: relative;
  padding-left: 14px;
}

.hero-proofline span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #5bd0fb;
}

.blueprint-shell {
  position: absolute;
  inset: 6%;
  overflow: hidden;
  border: 1px solid rgba(114, 180, 255, 0.36);
  border-radius: 8px;
  background:
    radial-gradient(circle at 48% 16%, rgba(47, 128, 255, 0.16), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    rgba(4, 13, 27, 0.78);
  background-size: auto, 52px 52px, 52px 52px, auto;
  box-shadow: inset 0 0 90px rgba(47, 128, 255, 0.08);
}

.blueprint-dots {
  position: absolute;
  z-index: 4;
  top: 22px;
  left: 28px;
  display: flex;
  gap: 9px;
}

.blueprint-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
}

.blueprint-orbits span {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(47, 128, 255, 0.24);
  border-radius: 50%;
}

.blueprint-orbits span:first-child {
  width: 58%;
  aspect-ratio: 1;
  left: 18%;
  top: -26%;
}

.blueprint-orbits span:last-child {
  width: 42%;
  aspect-ratio: 1;
  left: 29%;
  top: 2%;
}

.diagram-rail {
  position: absolute;
  z-index: 1;
  left: 10.6%;
  top: 15%;
  bottom: 14%;
  width: 1px;
  background: linear-gradient(180deg, rgba(66, 131, 255, 0.8), rgba(38, 218, 210, 0.8), rgba(255, 181, 77, 0.8));
  box-shadow: 0 0 22px rgba(48, 184, 255, 0.44);
}

.flow-row {
  --accent: #3f83ff;
  position: absolute;
  z-index: 3;
  left: 18%;
  right: 8%;
  height: 16.4%;
  display: grid;
  grid-template-columns: minmax(190px, 0.78fr) minmax(210px, 1fr);
  align-items: center;
  gap: 14px;
  padding: 16px 14px 16px clamp(24px, 3vw, 34px);
  border: 1px solid color-mix(in srgb, var(--accent), transparent 28%);
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--accent), transparent 86%), rgba(6, 17, 31, 0.68) 48%, rgba(6, 17, 31, 0.42)),
    rgba(6, 17, 31, 0.64);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
}

.flow-row::before,
.flow-row::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 1px;
  background: color-mix(in srgb, var(--accent), transparent 26%);
  box-shadow: 0 0 18px color-mix(in srgb, var(--accent), transparent 22%);
}

.flow-row::before {
  left: -72px;
  width: 72px;
}

.flow-row::after {
  right: -44px;
  width: 44px;
}

.data-row {
  --accent: #3f83ff;
  top: 11.5%;
}

.model-row {
  --accent: #26cde0;
  top: 31.2%;
}

.app-row {
  --accent: #28d3b3;
  top: 50.9%;
}

.gpu-row {
  --accent: #ffb64f;
  top: 70.6%;
}

.flow-icon {
  position: absolute;
  z-index: 4;
  left: -68px;
  top: 50%;
  width: 92px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, color-mix(in srgb, var(--accent), transparent 66%), transparent 58%),
    rgba(5, 14, 29, 0.9);
  box-shadow: 0 0 32px color-mix(in srgb, var(--accent), transparent 70%);
  transform: translateY(-50%);
}

.flow-icon::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid color-mix(in srgb, var(--accent), transparent 70%);
  border-radius: 50%;
}

.icon-lock span {
  width: 30px;
  height: 24px;
  display: block;
  border: 3px solid #bfe5ff;
  border-radius: 5px;
  box-shadow: 0 0 16px color-mix(in srgb, var(--accent), transparent 30%);
}

.icon-lock span::before {
  content: "";
  position: absolute;
  left: calc(50% - 14px);
  top: 26px;
  width: 28px;
  height: 24px;
  border: 3px solid #bfe5ff;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.icon-lock span::after {
  content: "";
  position: absolute;
  left: calc(50% - 2px);
  top: 52px;
  width: 4px;
  height: 10px;
  border-radius: 999px;
  background: #bfe5ff;
}

.icon-model span {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #bff8ff;
  box-shadow: 0 0 12px var(--accent);
}

.icon-model::after {
  content: "";
  width: 44px;
  height: 44px;
  border: 2px solid rgba(191, 248, 255, 0.7);
  clip-path: polygon(50% 0, 100% 28%, 86% 100%, 14% 100%, 0 28%);
}

.icon-model span:nth-child(1) { top: 25px; left: 41px; }
.icon-model span:nth-child(2) { top: 39px; left: 23px; }
.icon-model span:nth-child(3) { top: 39px; right: 23px; }
.icon-model span:nth-child(4) { bottom: 25px; left: 30px; }
.icon-model span:nth-child(5) { bottom: 25px; right: 30px; }

.icon-app span {
  position: absolute;
  width: 16px;
  height: 13px;
  border: 2px solid #c7fff3;
  border-radius: 3px;
}

.icon-app span:nth-child(1) {
  top: 26px;
  left: calc(50% - 8px);
}

.icon-app span:nth-child(2) {
  bottom: 25px;
  left: 20px;
}

.icon-app span:nth-child(3) {
  bottom: 25px;
  left: calc(50% - 8px);
}

.icon-app span:nth-child(4) {
  bottom: 25px;
  right: 20px;
}

.icon-app::after {
  content: "";
  width: 46px;
  height: 28px;
  border-left: 2px solid #c7fff3;
  border-right: 2px solid #c7fff3;
  border-top: 2px solid #c7fff3;
  transform: translateY(8px);
}

.icon-shield span {
  width: 42px;
  height: 48px;
  display: block;
  background: linear-gradient(135deg, rgba(255, 202, 117, 0.95), rgba(255, 160, 58, 0.24));
  clip-path: polygon(50% 0, 88% 16%, 80% 72%, 50% 100%, 20% 72%, 12% 16%);
  filter: drop-shadow(0 0 14px rgba(255, 181, 79, 0.7));
}

.icon-shield span::after {
  content: "";
  position: absolute;
  left: 37px;
  top: 39px;
  width: 18px;
  height: 9px;
  border-left: 3px solid #fff5d6;
  border-bottom: 3px solid #fff5d6;
  transform: rotate(-45deg);
}

.flow-copy {
  display: grid;
  gap: 8px;
}

.flow-copy span {
  color: var(--accent);
  font-size: 16px;
  font-weight: 940;
}

.flow-copy strong {
  font-size: clamp(20px, 1.65vw, 29px);
  line-height: 1.08;
}

.flow-art {
  min-width: 0;
  min-height: 100%;
  position: relative;
  display: grid;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(5, 14, 29, 0.34);
  overflow: hidden;
}

.data-art {
  grid-template-columns: 0.68fr 0.58fr 0.62fr;
  gap: 8px;
  padding: 10px;
}

.data-cylinder {
  position: relative;
  justify-self: center;
  width: 64px;
  height: 62px;
  border-radius: 50% / 18%;
  background: linear-gradient(180deg, rgba(68, 150, 255, 0.78), rgba(26, 75, 145, 0.42));
  box-shadow: inset 0 10px 0 rgba(119, 188, 255, 0.32), 0 0 28px rgba(63, 131, 255, 0.28);
}

.data-cylinder span {
  position: absolute;
  inset: 20px 18px;
  border: 3px solid #d9ecff;
  border-radius: 5px;
}

.data-cylinder span::before {
  content: "";
  position: absolute;
  left: 2px;
  top: -14px;
  width: 20px;
  height: 16px;
  border: 3px solid #d9ecff;
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
}

.data-files {
  width: 62px;
  height: 58px;
  justify-self: center;
  display: grid;
  align-items: end;
}

.data-files span {
  grid-area: 1 / 1;
  width: 44px;
  height: 34px;
  border: 1px solid rgba(114, 180, 255, 0.6);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(63, 131, 255, 0.62), rgba(63, 131, 255, 0.12));
}

.data-files span:nth-child(2) {
  transform: translate(13px, -12px);
}

.data-files span:nth-child(3) {
  transform: translate(25px, -24px);
}

.data-art ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 9px;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
}

.data-art li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.model-art {
  grid-template-columns: 1fr 0.85fr;
  gap: 10px;
  padding: 11px;
}

.model-network {
  position: relative;
  width: 132px;
  height: 78px;
  justify-self: center;
}

.model-network::before,
.model-network::after {
  content: "";
  position: absolute;
  inset: 18px 20px;
  border: 1px solid rgba(38, 205, 224, 0.54);
  transform: rotate(24deg);
}

.model-network::after {
  transform: rotate(-20deg);
}

.model-network span {
  position: absolute;
  z-index: 1;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(191, 248, 255, 0.8);
  border-radius: 50%;
  background: radial-gradient(circle, #bff8ff, rgba(38, 205, 224, 0.36));
}

.model-network span:nth-child(1) { left: 8px; top: 12px; }
.model-network span:nth-child(2) { left: 48px; top: 34px; }
.model-network span:nth-child(3) { left: 76px; top: 6px; }
.model-network span:nth-child(4) { right: 42px; top: 42px; }
.model-network span:nth-child(5) { right: 8px; top: 18px; }
.model-network span:nth-child(6) { left: 84px; bottom: 5px; }

.model-controls {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.model-controls span {
  position: relative;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
}

.model-controls span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 47%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) 68%, rgba(255, 181, 79, 0.9) 68%);
}

.app-art {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 18px;
}

.app-art span {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(40, 211, 179, 0.62);
  border-radius: 8px;
  color: #aefbee;
  font-size: 0;
  background: rgba(40, 211, 179, 0.08);
}

.app-art span:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(100% + 4px);
  top: 50%;
  width: 8px;
  height: 1px;
  background: var(--accent);
}

.app-art span:nth-child(1)::before { content: ">"; font-size: 22px; }
.app-art span:nth-child(2)::before { content: "<>"; font-size: 19px; }
.app-art span:nth-child(3)::before { content: "</>"; font-size: 14px; }
.app-art span:nth-child(4)::before { content: "DB"; font-size: 12px; font-weight: 900; }
.app-art span:nth-child(5)::before { content: "OK"; font-size: 12px; font-weight: 900; }

.gpu-art {
  grid-template-columns: 0.45fr 0.45fr 0.45fr 0.8fr;
  gap: 8px;
  padding: 10px;
}

.server-stack {
  display: grid;
  gap: 7px;
}

.server-stack span {
  height: 18px;
  border: 1px solid rgba(255, 181, 79, 0.42);
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(255, 181, 79, 0.18), rgba(255, 255, 255, 0.06));
}

.gpu-chip {
  min-height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 181, 79, 0.62);
  border-radius: 8px;
  color: #ffcf83;
  font-weight: 920;
  background: rgba(255, 181, 79, 0.08);
}

.runtime-stats {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
}

.runtime-stats span {
  white-space: nowrap;
}

.security-pills {
  position: absolute;
  z-index: 4;
  left: 27%;
  right: 27%;
  bottom: 6.2%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(5, 14, 29, 0.72);
  backdrop-filter: blur(14px);
}

.security-pills span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  text-align: center;
}

.visual-caption,
.gpu-spec,
.annotation {
  position: absolute;
  z-index: 3;
}

.visual-caption {
  left: clamp(20px, 4vw, 42px);
  right: clamp(20px, 4vw, 42px);
  bottom: 58px;
  display: grid;
  gap: 8px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(5, 10, 18, 0.7);
  backdrop-filter: blur(16px);
}

.visual-caption span,
.gpu-spec span,
.annotation {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.visual-caption strong,
.gpu-spec strong {
  color: #ffffff;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.05;
}

.annotation {
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(5, 10, 18, 0.62);
  backdrop-filter: blur(10px);
}

.annotation-a {
  top: 15%;
  left: 8%;
}

.annotation-b {
  top: 24%;
  right: 8%;
}

.annotation-c {
  left: 12%;
  bottom: 32%;
}

.gpu-spec {
  left: clamp(20px, 4vw, 42px);
  right: clamp(20px, 4vw, 42px);
  bottom: 58px;
  display: grid;
  gap: 10px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(5, 10, 18, 0.74);
  backdrop-filter: blur(18px);
}

.story-step {
  position: relative;
  z-index: 4;
  scroll-margin-top: var(--nav-height);
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: calc(var(--nav-height) + 48px) clamp(22px, 6vw, 94px) 76px;
}

.story-stage + .story-step {
  margin-top: -100svh;
}

.story-copy {
  width: min(100%, 610px);
  color: #ffffff;
  opacity: 0;
  transform: translateY(34px);
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.55);
  transition: opacity 700ms ease, transform 700ms ease;
}

.story-step.active .story-copy {
  opacity: 1;
  transform: translateY(0);
}

.align-right {
  justify-self: end;
  width: min(100%, 560px);
}

.eyebrow {
  margin: 0 0 14px;
  color: #5bd0fb;
  font-size: 12px;
  font-weight: 940;
  letter-spacing: 0;
  text-transform: uppercase;
}

.story h1,
.story h2,
.section-head h2,
.outcome-copy h2,
.contact-copy h2 {
  margin: 0;
  letter-spacing: 0;
}

.story h1,
.story h2 {
  max-width: 720px;
  color: #ffffff;
  font-size: clamp(36px, 4.25vw, 60px);
  line-height: 1.06;
}

.story h2 {
  max-width: 640px;
  font-size: clamp(32px, 3.55vw, 50px);
}

.story-copy p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.primary-action,
.secondary-action {
  min-height: 48px;
  display: inline-grid;
  place-items: center;
  padding: 0 21px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.primary-action {
  border: 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 18px 36px rgba(22, 93, 255, 0.34);
  cursor: pointer;
}

.secondary-action {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.primary-action:disabled {
  cursor: wait;
  opacity: 0.66;
}

.metric-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.metric-strip span,
.mini-steps li {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 820;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.metric-strip span {
  padding: 10px 13px;
  font-size: 14px;
}

.mini-steps {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.mini-steps li {
  width: min(100%, 460px);
  padding: 14px 16px;
}

.outcome-band {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: end;
  padding: 96px clamp(22px, 6vw, 94px);
  background: #ffffff;
}

.outcome-copy {
  max-width: 720px;
}

.outcome-copy h2,
.section-head h2,
.contact-copy h2 {
  color: var(--ink);
  font-size: clamp(30px, 3.35vw, 52px);
  line-height: 1.08;
}

.outcome-copy p,
.section-head .section-summary {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.64;
}

.outcome-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.outcome-metrics div {
  position: relative;
  min-height: 112px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border: 1px solid var(--line);
  border-width: 1px 0 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.outcome-metrics div::before {
  display: none;
}

.outcome-metrics div::after {
  display: none;
}

.outcome-metrics strong {
  color: #147fa6;
  font-size: 13px;
  font-weight: 940;
}

.outcome-metrics span {
  color: var(--ink);
  font-size: 20px;
  font-weight: 860;
  line-height: 1.2;
}

.capabilities {
  position: relative;
  z-index: 5;
  padding: 92px clamp(22px, 6vw, 94px);
  background: #f2f5f8;
}

.section-head {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 112px);
  align-items: end;
}

.section-head h2 {
  max-width: 1040px;
}

.section-head .eyebrow {
  margin: 0 0 12px;
  color: #6c7788;
}

.section-head .section-summary {
  position: relative;
  max-width: 560px;
  margin: 0 0 8px;
  padding: 22px 0 2px 26px;
  font-size: 19px;
  line-height: 1.58;
}

.section-head .section-summary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #54d0fb, #2f6df6);
  box-shadow: 0 0 18px rgba(47, 109, 246, 0.22);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.capability-card {
  min-height: 430px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 14px 18px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(7, 17, 31, 0.06);
  overflow: hidden;
}

.capability-card img {
  width: calc(100% + 36px);
  height: 190px;
  margin: -14px -18px 4px;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04);
}

.capability-card span {
  color: #147fa6;
  font-size: 12px;
  font-weight: 940;
  text-transform: uppercase;
}

.capability-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 1.45vw, 24px);
  line-height: 1.18;
}

.capability-card p {
  margin: 0;
  line-height: 1.58;
}

.enterprise-trust {
  position: relative;
  z-index: 5;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 58px clamp(22px, 6vw, 94px);
  color: var(--ink);
  border-top: 1px solid rgba(100, 118, 143, 0.18);
  border-bottom: 1px solid rgba(100, 118, 143, 0.2);
  background:
    linear-gradient(135deg, rgba(22, 93, 255, 0.08), rgba(13, 128, 104, 0) 34%),
    linear-gradient(180deg, #fbfdff 0%, #f3f7fb 54%, #edf3f8 100%);
}

.enterprise-trust::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.7;
  background-image:
    linear-gradient(rgba(20, 127, 166, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 127, 166, 0.05) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.enterprise-trust > * {
  position: relative;
  z-index: 1;
}

.trust-copy h2 {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 2.7vw, 42px);
  line-height: 1.1;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.trust-grid span {
  min-height: 74px;
  display: grid;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #475569;
  font-weight: 820;
  line-height: 1.35;
  background: #ffffff;
}

.agent-answers {
  grid-template-columns: minmax(270px, 0.46fr) minmax(0, 1.54fr);
  align-items: start;
}

.agent-answers-copy p {
  max-width: 520px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.agent-answer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.agent-answer-grid article {
  --answer-accent: #147fa6;
  position: relative;
  overflow: hidden;
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(100, 118, 143, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 254, 0.94)),
    #ffffff;
  box-shadow: 0 18px 42px rgba(7, 17, 31, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.agent-answer-grid article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--answer-accent), rgba(255, 255, 255, 0));
}

.agent-answer-grid article:nth-child(2) {
  --answer-accent: #2f6df6;
}

.agent-answer-grid article:nth-child(3) {
  --answer-accent: #0d8068;
}

.agent-answer-grid article:nth-child(4) {
  --answer-accent: #b7741e;
}

.agent-answer-grid article:nth-child(5) {
  --answer-accent: #5b6f8b;
}

.agent-answer-grid article:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--answer-accent) 38%, rgba(100, 118, 143, 0.18));
  box-shadow: 0 26px 60px rgba(7, 17, 31, 0.13);
}

.agent-answer-grid span {
  width: max-content;
  min-height: 28px;
  display: inline-grid;
  place-items: center;
  padding: 0 9px;
  border: 1px solid color-mix(in srgb, var(--answer-accent) 24%, transparent);
  border-radius: 999px;
  color: var(--answer-accent);
  background: color-mix(in srgb, var(--answer-accent) 8%, #ffffff);
  font-size: 11px;
  font-weight: 940;
}

.agent-answer-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.18;
}

.agent-answer-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.52;
}

.problem-section {
  position: relative;
  z-index: 5;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: center;
  padding: 96px clamp(22px, 6vw, 94px);
  border-bottom: 1px solid rgba(100, 118, 143, 0.16);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0 47%, rgba(22, 93, 255, 0.035) 47% 53%, rgba(255, 255, 255, 0) 53% 100%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
}

.problem-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(20, 127, 166, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 127, 166, 0.035) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 30%, #000 100%);
}

.problem-section > * {
  position: relative;
  z-index: 1;
}

.problem-copy h2,
.industries-copy h2,
.process-copy h2,
.final-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.35vw, 52px);
  line-height: 1.08;
}

.problem-copy p,
.industries-copy p,
.final-cta p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.64;
}

.workflow-board {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0;
  padding: 0;
  border: 1px solid rgba(91, 208, 251, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 55% 0%, rgba(47, 109, 246, 0.22), transparent 36%),
    linear-gradient(180deg, #0d1a2b 0%, #07111f 100%);
  box-shadow: 0 32px 86px rgba(7, 17, 31, 0.24);
}

.workflow-board::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.58;
  background-image:
    linear-gradient(rgba(91, 208, 251, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 208, 251, 0.06) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
}

.workflow-board > * {
  position: relative;
  z-index: 1;
}

.workflow-board-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 24px 18px;
  border-bottom: 1px solid rgba(160, 192, 223, 0.16);
}

.workflow-board-header div {
  display: grid;
  gap: 5px;
}

.workflow-board-header span {
  color: #5bd0fb;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.workflow-board-header strong {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.15;
}

.workflow-board-header p {
  min-height: 34px;
  display: inline-grid;
  place-items: center;
  margin: 0;
  padding: 0 13px;
  border: 1px solid rgba(73, 218, 179, 0.26);
  border-radius: 999px;
  color: #baf7e6;
  background: rgba(13, 128, 104, 0.18);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.workflow-track {
  position: relative;
  display: grid;
  gap: 0;
}

.workflow-track::before {
  display: none;
}

.workflow-row {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 124px;
  padding: 24px;
  border: 0;
  border-bottom: 1px solid rgba(160, 192, 223, 0.14);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

.workflow-row::after {
  display: none;
}

.workflow-row span,
.agent-card span,
.security-card span,
.process-grid span {
  color: #147fa6;
  font-size: 12px;
  font-weight: 940;
  text-transform: uppercase;
}

.workflow-row > span {
  display: grid;
  place-items: center;
  width: 40px;
  aspect-ratio: 1;
  border: 1px solid rgba(91, 208, 251, 0.28);
  border-radius: 8px;
  color: #8fe3ff;
  background:
    radial-gradient(circle at 50% 0%, rgba(91, 208, 251, 0.2), transparent 72%),
    rgba(5, 14, 29, 0.86);
  box-shadow: 0 0 24px rgba(34, 168, 223, 0.1);
}

.workflow-row strong {
  display: block;
  color: #ffffff;
  font-size: 21px;
  line-height: 1.2;
}

.workflow-row p {
  margin: 8px 0 0;
  color: rgba(225, 236, 248, 0.74);
  line-height: 1.55;
}

.workflow-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.workflow-tags em,
.workflow-board-footer span {
  display: inline-grid;
  place-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(160, 192, 223, 0.18);
  border-radius: 999px;
  color: rgba(225, 236, 248, 0.78);
  background: rgba(255, 255, 255, 0.055);
  font-size: 12px;
  font-style: normal;
  font-weight: 820;
}

.workflow-board-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid rgba(160, 192, 223, 0.1);
  padding: 18px 24px 24px;
}

.agent-categories {
  position: relative;
  z-index: 5;
  overflow: hidden;
  padding: 92px clamp(22px, 6vw, 94px);
  background:
    linear-gradient(180deg, #f8fbff 0%, #f3f7fb 48%, #eef4f8 100%);
}

.agent-categories::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(22, 93, 255, 0.06) 48% 52%, transparent 52% 100%),
    linear-gradient(rgba(20, 127, 166, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 127, 166, 0.04) 1px, transparent 1px);
  background-size: 100% 100%, 76px 76px, 76px 76px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 92%, transparent 100%);
}

.agent-categories > * {
  position: relative;
  z-index: 1;
}

.agent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.agent-card {
  --agent-accent: #147fa6;
  position: relative;
  overflow: hidden;
  min-height: 336px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 26px;
  border: 1px solid rgba(100, 118, 143, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 254, 0.96)),
    #ffffff;
  box-shadow: 0 22px 54px rgba(7, 17, 31, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.agent-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--agent-accent), rgba(255, 255, 255, 0));
}

.agent-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--agent-accent) 7%, transparent), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(7, 17, 31, 0.025));
  opacity: 0.9;
}

.agent-card > * {
  position: relative;
  z-index: 1;
}

.agent-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--agent-accent) 34%, rgba(100, 118, 143, 0.18));
  box-shadow: 0 32px 72px rgba(7, 17, 31, 0.13);
}

.agent-card:nth-child(2),
.agent-card:nth-child(5) {
  --agent-accent: #2f6df6;
}

.agent-card:nth-child(3),
.agent-card:nth-child(6) {
  --agent-accent: #0d8068;
}

.agent-card:nth-child(4) {
  --agent-accent: #b7741e;
}

.agent-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 1.7vw, 29px);
  line-height: 1.12;
}

.agent-card p {
  margin: 0;
  line-height: 1.58;
}

.agent-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.agent-card li {
  min-height: 34px;
  display: inline-grid;
  place-items: center;
  padding: 0 11px;
  border: 1px solid color-mix(in srgb, var(--agent-accent) 18%, rgba(100, 118, 143, 0.18));
  border-radius: 8px;
  color: #334155;
  background: color-mix(in srgb, var(--agent-accent) 5%, #ffffff);
  font-size: 13px;
  font-weight: 760;
}

.industries-section {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
  padding: 92px clamp(22px, 6vw, 94px);
  color: var(--ink);
  background: #f8fafc;
}

.industries-copy {
  position: sticky;
  top: calc(var(--nav-height) + 34px);
}

.industries-copy h2 {
  color: var(--ink);
}

.industries-copy p {
  color: var(--muted);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.industry-grid article {
  min-height: 132px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.industry-grid strong {
  color: var(--ink);
  font-size: 20px;
}

.industry-grid span {
  color: var(--muted);
  line-height: 1.5;
}

.deployment-plans {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
  padding: 96px clamp(22px, 6vw, 94px);
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.deployment-intro {
  position: sticky;
  top: calc(var(--nav-height) + 34px);
  display: grid;
  gap: 18px;
  padding-top: 12px;
}

.deployment-intro h2 {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 3.4vw, 54px);
  line-height: 1.08;
}

.deployment-intro p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.deployment-track {
  display: grid;
  gap: 22px;
}

.deployment-card {
  position: sticky;
  top: calc(var(--nav-height) + 28px);
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(280px, 0.94fr) minmax(300px, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 26px 72px rgba(7, 17, 31, 0.1);
}

.deployment-card:nth-child(2) {
  top: calc(var(--nav-height) + 52px);
}

.deployment-card:nth-child(3) {
  top: calc(var(--nav-height) + 76px);
}

.deployment-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04) brightness(0.9);
}

.deployment-card img.workflow-plan-image {
  object-fit: contain;
  padding: 20px;
  background: #07111f;
  filter: saturate(1.02) contrast(1.02) brightness(0.94);
}

.deployment-card > div {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(24px, 4vw, 48px);
  background: #ffffff;
}

.deployment-card span,
.pricing-card span,
.pricing-addons strong {
  color: #5bd0fb;
}

.deployment-card span {
  color: #147fa6;
  font-size: 12px;
  font-weight: 940;
  text-transform: uppercase;
}

.deployment-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 2.65vw, 44px);
  line-height: 1.06;
}

.deployment-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.deployment-card ul {
  display: grid;
  gap: 10px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.deployment-card li {
  position: relative;
  padding-left: 24px;
  color: #334155;
  line-height: 1.45;
}

.deployment-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #147fa6;
  transform: translateY(-50%);
}

.pricing {
  position: relative;
  z-index: 5;
  padding: 92px clamp(22px, 6vw, 94px);
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 0%, rgba(91, 208, 251, 0.18), transparent 30%),
    radial-gradient(circle at 92% 28%, rgba(13, 128, 104, 0.18), transparent 28%),
    linear-gradient(135deg, #050a12 0%, #0b1726 52%, #07111f 100%);
}

.pricing .section-head h2,
.pricing .section-head .section-summary {
  color: #ffffff;
}

.pricing .section-head .section-summary {
  color: rgba(255, 255, 255, 0.74);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.pricing-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 10%, rgba(91, 208, 251, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.22);
}

.pricing-card.featured {
  border-color: rgba(91, 208, 251, 0.42);
  background:
    radial-gradient(circle at 82% 4%, rgba(91, 208, 251, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(22, 93, 255, 0.18), rgba(255, 255, 255, 0.07));
}

.pricing-card span {
  color: #5bd0fb;
  font-size: 12px;
  font-weight: 940;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(22px, 1.7vw, 30px);
  line-height: 1.12;
}

.pricing-card .price {
  margin: 0;
  color: #ffffff;
  font-size: clamp(26px, 2.25vw, 40px);
  font-weight: 930;
  line-height: 1.05;
}

.pricing-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.56;
}

.pricing-card .best-for {
  min-height: 78px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.45;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5bd0fb, #0d8068);
  transform: translateY(-50%);
}

.pricing-rules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.pricing-rules article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.pricing-rules strong {
  color: #ffffff;
  font-size: 17px;
}

.pricing-rules span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.pricing-addons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.pricing-addons article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.pricing-addons strong {
  font-size: 17px;
}

.pricing-addons span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.security-section {
  position: relative;
  z-index: 5;
  padding: 92px clamp(22px, 6vw, 94px);
  background: #f5f7fa;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.security-card {
  min-height: 218px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, #ffffff, #f7fbff);
  box-shadow: 0 14px 34px rgba(7, 17, 31, 0.06);
}

.security-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.16;
}

.security-card p {
  margin: 0;
  line-height: 1.55;
}

.process-section {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(300px, 0.5fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 78px);
  padding: 92px clamp(22px, 6vw, 94px);
  background: #ffffff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.process-grid article {
  min-height: 240px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 8%, rgba(22, 93, 255, 0.1), transparent 34%),
    #ffffff;
}

.process-grid strong {
  color: var(--ink);
  font-size: 22px;
}

.process-grid p {
  margin: 0;
  line-height: 1.55;
}

.final-cta {
  position: relative;
  z-index: 5;
  padding: 84px clamp(22px, 6vw, 94px);
  background:
    linear-gradient(135deg, #ffffff, #eef6fb);
}

.final-cta > div {
  max-width: 980px;
}

.final-cta .hero-actions {
  margin-top: 28px;
}

.contact {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
  padding: 96px clamp(22px, 6vw, 94px);
  color: #ffffff;
  background:
    radial-gradient(circle at 84% 8%, rgba(34, 168, 223, 0.22), transparent 30%),
    linear-gradient(135deg, #050a12, #073046);
}

.contact h2,
.contact p {
  color: #ffffff;
}

.contact-copy p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.62;
}

.uk-flag {
  width: 30px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.28);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 860;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(109, 130, 158, 0.36);
  border-radius: 8px;
  padding: 12px 13px;
  color: #0f1724;
  background: #f7fafc;
  outline-color: var(--cyan);
}

textarea {
  min-height: 168px;
  resize: vertical;
  line-height: 1.5;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form .primary-action {
  justify-self: start;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--blue) !important;
  font-weight: 820;
}

.site-footer {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 30px clamp(22px, 6vw, 94px);
  border-top: 1px solid var(--line);
  background: #ffffff;
  box-shadow: inset 0 1px 0 #ffffff;
}

.site-footer img {
  display: block;
  width: 185px;
}

.site-footer p {
  max-width: 460px;
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.5;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  max-width: 760px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.footer-contact a,
.footer-contact address {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: var(--muted);
  font-style: normal;
  font-weight: 760;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--blue);
}

.footer-contact .uk-flag {
  width: 23px;
  height: 17px;
  box-shadow: 0 0 0 1px rgba(100, 118, 143, 0.2);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.subpage {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 8%, rgba(34, 168, 223, 0.1), transparent 32%),
    radial-gradient(circle at 84% 18%, rgba(13, 128, 104, 0.08), transparent 30%),
    #f5f7fa;
}

.page-shell {
  padding-top: var(--nav-height);
}

.page-hero,
.page-section,
.page-cta,
.page-contact {
  padding-inline: clamp(22px, 6vw, 94px);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
  min-height: 660px;
  padding-block: clamp(82px, 10vw, 138px);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.page-hero > * {
  min-width: 0;
}

.page-hero h1,
.page-section h2,
.page-cta h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.98;
}

.page-hero h1 {
  max-width: 780px;
  font-size: 78px;
  overflow-wrap: break-word;
}

.page-hero .lede {
  max-width: 760px;
  margin: 26px 0 0;
  color: #334155;
  font-size: 22px;
  line-height: 1.42;
}

.page-hero .body-copy {
  max-width: 800px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.page-hero .secondary-action {
  color: var(--ink);
  border: 1px solid var(--line);
  background: #ffffff;
  backdrop-filter: none;
}

.page-visual {
  position: relative;
  min-width: 0;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  box-shadow: none;
}

.page-visual::before {
  content: "";
  position: absolute;
  inset: 11%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.48);
}

.visual-stack,
.visual-orbit,
.visual-dashboard {
  position: absolute;
  inset: 46px;
  display: grid;
  gap: 18px;
  align-content: center;
}

.visual-node,
.dashboard-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
}

.visual-node span,
.dashboard-row span {
  color: #5bd0fb;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visual-node strong,
.dashboard-row strong {
  min-width: 0;
  overflow-wrap: break-word;
  font-size: 18px;
}

.visual-orbit {
  place-items: center;
}

.orbit-core {
  display: grid;
  place-items: center;
  width: 168px;
  aspect-ratio: 1;
  border: 1px solid #cde8f4;
  border-radius: 50%;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  background: #eaf7fd;
  box-shadow: none;
}

.orbit-chip {
  position: absolute;
  min-width: 132px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  font-weight: 850;
}

.orbit-chip:nth-child(2) { top: 20%; left: 8%; }
.orbit-chip:nth-child(3) { top: 13%; right: 10%; }
.orbit-chip:nth-child(4) { bottom: 17%; right: 8%; }
.orbit-chip:nth-child(5) { bottom: 13%; left: 12%; }

.visual-dashboard {
  align-content: end;
}

.dashboard-row small {
  color: var(--muted);
  font-weight: 760;
}

.page-section {
  padding-block: clamp(76px, 8vw, 118px);
}

.page-section.alt {
  background: #ffffff;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.page-section h2,
.page-cta h2 {
  max-width: 900px;
  color: var(--ink);
  font-size: 56px;
}

.page-section .section-lede {
  max-width: 920px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.page-grid,
.agent-page-grid,
.industry-page-grid,
.governance-grid,
.resource-grid,
.process-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.two-column-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.page-card,
.feature-card,
.workflow-card,
.resource-card,
.case-card,
.process-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(100, 118, 143, 0.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(7, 17, 31, 0.07);
}

.page-card.dark,
.feature-card.dark {
  border-color: rgba(154, 198, 255, 0.18);
  background: #07111f;
  color: #ffffff;
}

.page-card span,
.feature-card span,
.workflow-card span,
.process-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--blue);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-card h3,
.feature-card h3,
.workflow-card h3,
.resource-card h3,
.case-card h3,
.process-card h3 {
  margin: 0;
  color: inherit;
  font-size: 23px;
  line-height: 1.12;
}

.page-card p,
.feature-card p,
.workflow-card p,
.resource-card p,
.case-card p,
.process-card p {
  margin: 13px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.page-card.dark p,
.feature-card.dark p {
  color: rgba(255, 255, 255, 0.7);
}

.bullet-list,
.check-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.bullet-list li,
.check-list li {
  position: relative;
  padding-left: 23px;
  color: var(--muted);
  line-height: 1.5;
}

.bullet-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.comparison-table {
  width: 100%;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(100, 118, 143, 0.2);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(7, 17, 31, 0.07);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(100, 118, 143, 0.16);
}

.comparison-row:first-child {
  border-top: 0;
  background: #07111f;
  color: #ffffff;
}

.comparison-row > div {
  padding: 18px 20px;
  border-left: 1px solid rgba(100, 118, 143, 0.16);
}

.comparison-row > div:first-child {
  border-left: 0;
}

.page-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.page-link::after {
  content: "->";
}

.page-cta {
  padding-block: clamp(76px, 8vw, 118px);
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(5, 10, 18, 0.96), rgba(8, 33, 47, 0.94)),
    #050a12;
}

.page-cta h2,
.page-cta p {
  color: #ffffff;
}

.page-cta p {
  max-width: 780px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
  line-height: 1.56;
}

.subpage .contact-form {
  max-width: 980px;
  margin-top: 34px;
}

@media (max-width: 1240px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav nav {
    gap: 10px;
  }

  .site-nav a {
    font-size: 13px;
  }

  .login-link {
    padding-inline: 12px;
  }

  .page-hero {
    grid-template-columns: 1fr;
  }

  .page-visual {
    min-height: 380px;
  }

  .motion-panel {
    width: min(41vw, 500px);
    min-width: 430px;
  }

  .story-copy {
    width: min(100%, 500px);
  }

  .align-right {
    width: min(100%, 440px);
  }

  .story h2 {
    font-size: clamp(30px, 3vw, 40px);
  }

  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid,
  .agent-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .security-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-card {
    min-height: 390px;
  }
}

@media (max-width: 980px) {
  :root {
    --nav-height: 74px;
  }

  .site-nav {
    padding: 14px 20px;
    overflow: hidden;
  }

  .site-nav nav {
    min-width: 0;
    justify-content: flex-end;
    gap: 11px;
    font-size: 14px;
  }

  .page-grid,
  .agent-page-grid,
  .industry-page-grid,
  .governance-grid,
  .resource-grid,
  .process-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-column-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: auto;
    padding-inline: 20px;
    padding-block: 76px;
  }

  .page-hero > div:first-child,
  .page-visual {
    max-width: 350px;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  .page-hero .lede {
    font-size: 18px;
  }

  .page-section h2,
  .page-cta h2 {
    font-size: 38px;
  }

  .page-section .section-lede {
    font-size: 18px;
  }

  .motion-panel,
  .scene-0 .motion-panel,
  .scene-1 .motion-panel,
  .scene-3 .motion-panel {
    left: 20px;
    right: auto;
    top: calc(var(--nav-height) + 36px);
    bottom: auto;
    width: calc(100vw - 40px);
    min-width: 0;
    height: min(43vh, 400px);
  }

  .scene-0 .motion-panel {
    left: 0;
    right: 0;
    top: var(--nav-height);
    bottom: 0;
    width: 100%;
    height: auto;
  }

  .motion-progress {
    left: 16px;
    right: 16px;
    bottom: 14px;
  }

  .blueprint-shell {
    inset: 0;
  }

  .blueprint-dots,
  .blueprint-orbits,
  .diagram-rail,
  .flow-row::before,
  .flow-row::after,
  .flow-art,
  .security-pills {
    display: none;
  }

  .flow-row {
    left: 54px;
    right: 16px;
    height: 17.5%;
    grid-template-columns: 1fr;
    padding: 10px 13px 10px 34px;
  }

  .flow-icon {
    left: -38px;
    width: 64px;
  }

  .flow-copy {
    gap: 3px;
  }

  .flow-copy span {
    font-size: 12px;
  }

  .flow-copy strong {
    font-size: clamp(18px, 5vw, 26px);
  }

  .annotation {
    display: none;
  }

  .visual-caption,
  .gpu-spec {
    left: 14px;
    right: 14px;
    bottom: 34px;
    padding: 14px;
  }

  .visual-caption strong,
  .gpu-spec strong {
    font-size: clamp(22px, 5.8vw, 32px);
  }

  .story-step {
    align-items: end;
    padding: calc(var(--nav-height) + min(43vh, 400px) + 36px) 20px 58px;
  }

  .hero-step {
    align-items: center;
    padding: calc(var(--nav-height) + 52px) 20px 68px;
  }

  .story-copy,
  .align-right {
    justify-self: start;
    width: calc(100vw - 40px);
    max-width: 650px;
    min-width: 0;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(5, 10, 18, 0.76);
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(18px);
    text-shadow: none;
  }

  .hero-step .story-copy {
    width: min(100%, 660px);
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.66);
  }

  .hero-proofline {
    max-width: 520px;
  }

  .story-copy h1,
  .story-copy h2,
  .story-copy p {
    max-width: 100%;
  }

  .story h1 {
    max-width: calc(100vw - 40px);
    font-size: clamp(34px, 7.4vw, 48px);
  }

  .story h2 {
    max-width: calc(100vw - 40px);
    font-size: clamp(30px, 6.8vw, 42px);
  }

  .story-copy p {
    font-size: 18px;
  }

  .metric-strip {
    margin-top: 20px;
  }

  .metric-strip span,
  .mini-steps li {
    background: rgba(255, 255, 255, 0.1);
  }

  .enterprise-trust,
  .problem-section,
  .industries-section,
  .deployment-plans,
  .process-section,
  .outcome-band,
  .contact {
    grid-template-columns: 1fr;
  }

  .agent-answer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .agent-answer-grid article {
    min-height: auto;
  }

  .agent-answer-grid article:last-child {
    grid-column: 1 / -1;
  }

  .deployment-intro {
    position: relative;
    top: auto;
  }

  .workflow-board {
    padding: 0;
  }

  .workflow-board-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
  }

  .workflow-row {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    min-height: auto;
    padding: 18px;
  }

  .workflow-row > span {
    width: 36px;
  }

  .workflow-row::after {
    display: none;
  }

  .workflow-track::before {
    left: 27px;
  }

  .workflow-row strong {
    font-size: 18px;
  }

  .workflow-tags {
    gap: 6px;
  }

  .industries-copy {
    position: relative;
    top: auto;
  }

  .deployment-card,
  .deployment-card:nth-child(2),
  .deployment-card:nth-child(3) {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .deployment-card img {
    min-height: 280px;
    height: 280px;
  }

  .enterprise-trust,
  .problem-section,
  .agent-categories,
  .industries-section,
  .outcome-band,
  .deployment-plans,
  .capabilities,
  .security-section,
  .process-section,
  .pricing,
  .final-cta,
  .contact {
    padding: 70px 20px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-head h2 {
    max-width: 860px;
  }

  .section-head .section-summary {
    max-width: 720px;
    margin: 0;
  }
}

@media (max-width: 720px) {
  .page-hero,
  .page-section,
  .page-cta,
  .page-contact {
    padding-inline: 20px;
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .page-hero .lede {
    font-size: 18px;
  }

  .page-section h2,
  .page-cta h2 {
    font-size: 36px;
  }

  .page-section .section-lede {
    font-size: 17px;
  }

  .page-visual {
    min-height: 330px;
  }

  .visual-stack,
  .visual-orbit,
  .visual-dashboard {
    inset: 24px;
  }

  .visual-node,
  .dashboard-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-row small {
    overflow-wrap: break-word;
  }

  .orbit-core {
    width: 128px;
    font-size: 16px;
  }

  .orbit-chip {
    position: static;
    width: 100%;
  }

  .page-grid,
  .agent-page-grid,
  .industry-page-grid,
  .governance-grid,
  .resource-grid,
  .process-page-grid {
    grid-template-columns: 1fr;
  }

  /* Keep the chatbot vs AI agent comparison two-up on mobile */
  .comparison-row > div {
    padding: 14px 14px;
    font-size: 14px;
  }

  .brand img {
    width: 172px;
  }

  .site-nav nav a:not(.login-link) {
    display: none;
  }

  .login-link {
    min-height: 38px;
    padding: 0 11px;
    font-size: 13px;
  }

  .story-stage {
    min-height: 640px;
  }

  .story h1 {
    font-size: clamp(31px, 7vw, 40px);
  }

  .story h2 {
    font-size: clamp(29px, 6.7vw, 36px);
  }

  .outcome-copy h2,
  .section-head h2,
  .contact-copy h2 {
    font-size: clamp(29px, 7.5vw, 38px);
  }

  .hero-actions,
  .primary-action,
  .secondary-action,
  .contact-form .primary-action {
    width: 100%;
  }

  .metric-strip span {
    font-size: 13px;
  }

  .section-head .section-summary {
    padding: 16px 0 0 18px;
    font-size: 16px;
  }

  .trust-grid,
  .agent-answer-grid,
  .outcome-metrics,
  .capability-grid,
  .agent-grid,
  .industry-grid,
  .security-grid,
  .process-grid,
  .pricing-grid,
  .pricing-rules,
  .pricing-addons,
  .form-row {
    grid-template-columns: 1fr;
  }

  .outcome-metrics div {
    min-height: 112px;
  }

  .agent-card,
  .industry-grid article,
  .security-card,
  .process-grid article {
    min-height: auto;
  }

  .capability-card {
    min-height: auto;
  }

  .pricing-card {
    min-height: auto;
  }

  .capability-card img {
    height: 210px;
  }

  .site-footer {
    display: grid;
    padding: 28px 20px;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  .footer-contact {
    display: grid;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .site-nav {
    justify-content: flex-start;
  }

  .site-nav .login-link {
    display: none;
  }

  .motion-panel,
  .scene-0 .motion-panel,
  .scene-1 .motion-panel,
  .scene-3 .motion-panel {
    width: 350px;
    max-width: calc(100vw - 40px);
  }

  .scene-0 .motion-panel {
    width: 100%;
    max-width: none;
  }

  .story-copy,
  .align-right {
    width: 350px;
    max-width: calc(100vw - 40px);
  }

  .hero-step .story-copy {
    width: calc(100vw - 40px);
    max-width: 440px;
  }

  .hero-step .story-copy > p:not(.eyebrow),
  .hero-proofline,
  .hero-step .hero-actions {
    max-width: min(100%, 350px);
  }
}

@media (max-width: 440px) {
  .site-nav {
    gap: 12px;
  }

  .brand img {
    width: 156px;
  }

  .comparison-row > div {
    padding: 12px 10px;
    font-size: 13px;
  }

  .login-link {
    min-height: 36px;
    padding: 0 9px;
    font-size: 13px;
  }

  .story h1 {
    max-width: 300px;
    font-size: 28px;
  }

  .story h2 {
    max-width: 300px;
    font-size: 27px;
  }

  .story-copy p,
  .contact-copy p,
  .outcome-copy p {
    font-size: 16px;
  }

  .motion-panel,
  .scene-0 .motion-panel {
    width: 350px;
    max-width: calc(100vw - 40px);
    height: 36vh;
  }

  .scene-0 .motion-panel {
    width: 100%;
    max-width: none;
    height: auto;
  }

  .story-step {
    padding-top: calc(var(--nav-height) + 39vh + 30px);
  }

  .hero-step {
    padding-top: calc(var(--nav-height) + 36px);
  }

  .hero-step h1 {
    max-width: 340px;
    font-size: clamp(32px, 10vw, 40px);
  }

  .hero-step .story-copy > p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.48;
  }

  .hero-proofline {
    gap: 8px 13px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal,
  .story-copy {
    opacity: 1;
    transform: none;
  }
}

/* Mobile navigation menu (progressive enhancement: button injected by JS) */
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, top 180ms ease, background 120ms ease;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.site-nav.nav-open .nav-toggle span {
  background: transparent;
}

.site-nav.nav-open .nav-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

.site-nav.nav-open .nav-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (max-width: 980px) {
  .site-nav {
    overflow: visible;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px clamp(20px, 6vw, 44px) 16px;
    background: #ffffff;
    border-bottom: 1px solid rgba(100, 118, 143, 0.16);
    box-shadow: 0 26px 50px rgba(7, 17, 31, 0.16);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.nav-open nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav nav a,
  .site-nav nav a:not(.login-link) {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 13px 4px;
    font-size: 15px;
    border-bottom: 1px solid rgba(100, 118, 143, 0.14);
  }

  .site-nav nav a:last-child {
    border-bottom: 0;
  }

  .site-nav .login-link {
    display: flex;
    justify-content: center;
    margin-top: 12px;
    min-height: 48px;
    border: 1px solid rgba(22, 93, 255, 0.2);
    border-radius: 11px;
    box-shadow: none;
  }
}

/* Keyboard focus, in-page anchor offset, and skip link */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

section[id],
main [id] {
  scroll-margin-top: calc(var(--nav-height) + 16px);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 11px 18px;
  border-radius: 9px;
  background: var(--ink);
  color: #ffffff;
  font-size: 14px;
  font-weight: 820;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
  color: #ffffff;
}

/* Honeypot anti-spam field (hidden from people, tempting to bots) */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ============================================================
   UI redesign batch 1 (2026-06-05): section layout balance,
   enriched "what you get", and a dark subpage hero board.
   Layered as overrides so the change stays contained/reversible.
   ============================================================ */

/* #2 Subpage hero visual -> dark product board (shared component) */
.page-visual {
  border: 1px solid rgba(91, 208, 251, 0.18);
  border-radius: 16px;
  background:
    radial-gradient(circle at 72% -12%, rgba(47, 109, 246, 0.30), transparent 46%),
    linear-gradient(160deg, #0c2348 0%, #08152e 58%, #050d1d 100%);
  box-shadow: 0 34px 80px rgba(7, 17, 31, 0.30);
}

.page-visual::before {
  inset: 0;
  border: 0;
  border-radius: inherit;
  background:
    linear-gradient(rgba(123, 182, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 182, 255, 0.09) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.7;
  -webkit-mask-image: radial-gradient(circle at 64% 26%, #000, transparent 82%);
  mask-image: radial-gradient(circle at 64% 26%, #000, transparent 82%);
}

.visual-stack,
.visual-orbit,
.visual-dashboard {
  inset: 32px;
  gap: 14px;
}

.visual-node,
.dashboard-row {
  min-height: 66px;
  border: 1px solid rgba(123, 182, 255, 0.16);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.028));
  color: #eaf2ff;
}

.visual-node strong,
.dashboard-row strong {
  color: #f4f8ff;
}

.dashboard-row small {
  color: rgba(234, 242, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
}

/* #3 "What you get" -> stacked header + enriched 4-up cards */
.outcome-band {
  display: block;
  padding-bottom: 88px;
}

.outcome-copy {
  max-width: 760px;
  margin-bottom: 44px;
}

.outcome-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.outcome-metrics div {
  min-height: 0;
  align-content: start;
  gap: 12px;
  padding: 24px 22px;
  border: 1px solid rgba(100, 118, 143, 0.18);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f7fafe);
  box-shadow: 0 16px 38px rgba(7, 17, 31, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.outcome-metrics div:hover {
  transform: translateY(-3px);
  border-color: rgba(22, 93, 255, 0.32);
  box-shadow: 0 26px 56px rgba(7, 17, 31, 0.12);
}

.outcome-metrics div::before {
  display: block;
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.outcome-metrics strong {
  color: var(--blue);
  font-size: 13px;
}

.outcome-metrics span {
  font-size: 18px;
}

.outcome-metrics p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* #1 Industries -> stacked full-width header + 4-up grid */
.industries-section {
  display: block;
}

.industries-copy {
  position: static;
  top: auto;
  max-width: 720px;
  margin-bottom: 40px;
}

.industry-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.industry-grid article {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(100, 118, 143, 0.18);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f7fafe);
  box-shadow: 0 14px 34px rgba(7, 17, 31, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.industry-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(22, 93, 255, 0.3);
  box-shadow: 0 24px 50px rgba(7, 17, 31, 0.11);
}

/* Responsive for the new multi-up grids */
@media (max-width: 1180px) {
  .outcome-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .outcome-metrics {
    grid-template-columns: 1fr;
  }

  .industry-grid {
    grid-template-columns: 1fr;
  }
}

/* #1b Deployment -> stacked header + 3-up vertical cards */
.deployment-plans {
  display: block;
}

.deployment-intro {
  position: static;
  top: auto;
  max-width: 760px;
  margin-bottom: 44px;
  padding-top: 0;
}

.deployment-track {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.deployment-card,
.deployment-card:nth-child(2),
.deployment-card:nth-child(3) {
  position: static;
  top: auto;
  min-height: 0;
  grid-template-columns: 1fr;
  grid-template-rows: 200px auto;
}

.deployment-card img,
.deployment-card img.workflow-plan-image {
  min-height: 0;
  height: 200px;
}

.deployment-card > div {
  align-content: start;
  gap: 14px;
  padding: clamp(22px, 2.2vw, 30px);
}

.deployment-card h3 {
  font-size: clamp(22px, 1.7vw, 28px);
}

.deployment-card p {
  font-size: 16px;
}

.deployment-card li {
  font-size: 15px;
}

@media (max-width: 1024px) {
  .deployment-track {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .deployment-card,
  .deployment-card:nth-child(2),
  .deployment-card:nth-child(3) {
    grid-template-rows: 240px auto;
  }

  .deployment-card img,
  .deployment-card img.workflow-plan-image {
    height: 240px;
  }
}

/* ============================================================
   UI refinement batch 2 (2026-06-05): refined-enterprise depth
   for the light sections — soft borders, gentle surfaces, and a
   consistent, restrained elevation + hover (Stripe/Linear feel).
   ============================================================ */

:root {
  --card-border: rgba(13, 38, 76, 0.09);
  --card-surface: linear-gradient(180deg, #ffffff, #f5f8fc);
  --card-shadow: 0 16px 40px rgba(10, 22, 44, 0.07);
  --card-shadow-hover: 0 28px 60px rgba(10, 22, 44, 0.13);
  --card-radius: 14px;
}

.capability-card,
.security-card,
.process-grid article,
.agent-card {
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  background: var(--card-surface);
  box-shadow: var(--card-shadow);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.capability-card:hover,
.security-card:hover,
.process-grid article:hover,
.agent-card:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 93, 255, 0.26);
  box-shadow: var(--card-shadow-hover);
}

/* Keep the bleed image crisply clipped to the rounded card top */
.capability-card {
  overflow: hidden;
}

.capability-card img {
  height: 184px;
}

/* Process cards: tidy the accent wash on the new surface */
.process-grid article {
  background:
    radial-gradient(circle at 92% 6%, rgba(22, 93, 255, 0.08), transparent 38%),
    var(--card-surface);
}

/* Align the just-redesigned grids to the same refined tokens */
.industry-grid article,
.outcome-metrics div {
  border-color: var(--card-border);
  background: var(--card-surface);
  box-shadow: var(--card-shadow);
}

.industry-grid article:hover,
.outcome-metrics div:hover {
  border-color: rgba(22, 93, 255, 0.26);
  box-shadow: var(--card-shadow-hover);
}

/* Section rhythm: crisp hairline separation between light sections */
.capabilities,
.security-section,
.process-section,
.industries-section,
.deployment-plans,
.outcome-band,
.agent-categories {
  border-top: 1px solid rgba(13, 38, 76, 0.06);
}

/* ------------------------------------------------------------
   Temporarily hidden pages (2026-06-06): deployment, security,
   case studies, resources, platform, company. Hides every link
   to them (nav, footer, in-content CTAs) site-wide. Delete this
   block to restore navigation to these pages.
   ------------------------------------------------------------ */
a[href="/platform"],
a[href="/deployment-options"],
a[href="/security-governance"],
a[href="/case-studies"],
a[href="/resources"],
a[href="/company"] {
  display: none !important;
}

/* ============================================================
   Modern gradient hero (batch 3, 2026-06-06): scene-0 becomes a
   bright, centered gradient hero with no photo, then dissolves
   into the existing scroll story. Scoped to .scene-0 / .hero-step
   so the rest of the story is untouched.
   ============================================================ */
.scene-0 .stage-bg {
  background:
    radial-gradient(135% 95% at 50% -25%, rgba(255, 255, 255, 0.30), transparent 56%),
    radial-gradient(72% 58% at 82% 8%, rgba(91, 208, 251, 0.40), transparent 60%),
    radial-gradient(60% 50% at 12% 90%, rgba(34, 168, 223, 0.28), transparent 62%),
    linear-gradient(180deg, #9094f7 0%, #6361f1 42%, #3f34cf 100%);
}

.scene-0 .stage-bg::after {
  display: none;
}

.scene-0 .stage-bg::before {
  opacity: 0.16;
}

.scene-0 .motion-panel {
  display: none;
}

.hero-step {
  justify-items: center;
}

.hero-step .story-copy {
  width: min(100%, 880px);
  margin: 0 auto;
  text-align: center;
  text-shadow: 0 1px 12px rgba(26, 20, 78, 0.18);
}

.hero-step .story-copy h1 {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(42px, 6.4vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.01em;
}

.hero-step .story-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-step .eyebrow {
  color: rgba(255, 255, 255, 0.92);
}

.hero-step .hero-proofline,
.hero-step .hero-actions {
  justify-content: center;
}

/* White pill CTAs in the hero, like a modern SaaS landing page */
.hero-step .primary-action,
.hero-step .secondary-action {
  min-height: 54px;
  padding: 0 30px;
  border-radius: 999px;
}

.hero-step .primary-action {
  color: #2a2270;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(20, 16, 70, 0.28);
}

.hero-step .secondary-action {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

/* ============================================================
   Code-built gradient media (batch 4, 2026-06-06): replaces the
   remaining stock photos (story scenes, capability + deployment
   cards) with on-brand gradient panels and clean line icons.
   ============================================================ */
.media-art {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #ffffff;
}

.media-art > svg {
  position: relative;
  z-index: 1;
  width: clamp(46px, 30%, 86px);
  height: auto;
  opacity: 0.96;
  filter: drop-shadow(0 6px 16px rgba(8, 14, 40, 0.35));
}

.media-art::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(circle at 50% 42%, #000, transparent 72%);
  mask-image: radial-gradient(circle at 50% 42%, #000, transparent 72%);
}

.media-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(46% 40% at 50% 32%, rgba(255, 255, 255, 0.16), transparent 66%);
}

.media-art.ga { background: linear-gradient(150deg, #3f5bd6, #22a8df); }
.media-art.gb { background: linear-gradient(150deg, #5b4bf0, #3f7fe0); }
.media-art.gc { background: linear-gradient(150deg, #1f6feb, #0fa39a); }
.media-art.gd { background: linear-gradient(150deg, #3a36c9, #6d5bf0); }

/* Capability card header (bleed past the card padding) */
.capability-card .media-art {
  height: 188px;
  margin: -14px -18px 16px;
  border-radius: var(--card-radius) var(--card-radius) 0 0;
}

/* Deployment card banner (fills the 200px image row) */
.deployment-card .media-art {
  height: 100%;
  padding: 0;
}

/* Story scene panels (full-bleed inside the motion panel) */
.visual-scene .media-art {
  position: absolute;
  inset: 0;
}

.visual-scene .media-art > svg {
  width: clamp(72px, 22%, 132px);
}

/* The dark photo overlay would muddy the gradient panels — lighten it */
.visual-scene:has(.media-art)::after {
  background: linear-gradient(180deg, rgba(5, 10, 18, 0) 56%, rgba(5, 10, 18, 0.34));
}

/* ============================================================
   Lean redesign (batch 5, 2026-06-06): static gradient hero,
   Viktor-style pricing with a credits dropdown, and image-free
   subpage heroes. CSS for removed sections above is now inert.
   ============================================================ */

/* Static gradient hero (replaces the scroll-story) */
.hero {
  position: relative;
  overflow: hidden;
  min-height: min(92vh, 840px);
  display: grid;
  place-items: center;
  padding: calc(var(--nav-height) + 70px) clamp(22px, 6vw, 94px) 96px;
  text-align: center;
  color: #ffffff;
  background:
    radial-gradient(135% 95% at 50% -25%, rgba(255, 255, 255, 0.30), transparent 56%),
    radial-gradient(72% 58% at 82% 8%, rgba(91, 208, 251, 0.40), transparent 60%),
    radial-gradient(60% 50% at 12% 92%, rgba(34, 168, 223, 0.28), transparent 62%),
    linear-gradient(180deg, #9094f7 0%, #6361f1 42%, #3f34cf 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background:
    linear-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.6) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: radial-gradient(circle at 50% 35%, #000, transparent 75%);
  mask-image: radial-gradient(circle at 50% 35%, #000, transparent 75%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 900px);
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.92);
}

.hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 6.6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.015em;
}

.hero-sub {
  max-width: 640px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
}

.hero .hero-proofline {
  justify-content: center;
  margin-top: 24px;
}

.hero .hero-actions {
  justify-content: center;
  margin-top: 34px;
}

.hero .primary-action,
.hero .secondary-action {
  min-height: 54px;
  padding: 0 30px;
  border-radius: 999px;
}

.hero .primary-action {
  color: #2a2270;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(20, 16, 70, 0.28);
}

.hero .secondary-action {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

/* Viktor-style pricing */
.pricing {
  position: relative;
  z-index: 5;
  padding: 96px clamp(22px, 6vw, 94px) 104px;
  color: #ffffff;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(255, 255, 255, 0.12), transparent 55%),
    linear-gradient(180deg, #5b4bf0 0%, #4a3fe0 52%, #382fc4 100%);
}

.pricing-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.pricing-head .eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 3.4vw, 50px);
  line-height: 1.08;
}

.pricing-head p {
  margin: 16px auto 0;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.6;
}

.plan-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.plan-card {
  display: grid;
  gap: 18px;
  padding: 36px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 34px 80px rgba(18, 14, 64, 0.32);
}

.plan-card.enterprise {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.24);
}

.plan-name {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: var(--blue);
}

.plan-card.enterprise .plan-name {
  color: #cdd2ff;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
}

.plan-price strong {
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.plan-price span,
.plan-flex {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.plan-card.enterprise .plan-price strong {
  color: #ffffff;
}

.plan-card.enterprise .plan-price span,
.plan-card.enterprise .plan-flex {
  color: rgba(255, 255, 255, 0.7);
}

.plan-credits {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
}

.plan-credits select {
  min-height: 52px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

/* Custom credits dropdown (listbox) */
.credit-select {
  position: relative;
}

.credit-trigger {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  color: var(--ink);
  font-size: 16px;
  font-weight: 760;
  text-align: left;
  cursor: pointer;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

.credit-trigger:hover {
  border-color: rgba(22, 93, 255, 0.4);
}

.credit-select.is-open .credit-trigger,
.credit-trigger:focus-visible {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(22, 93, 255, 0.16);
}

.credit-caret {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--muted);
  transition: transform 160ms ease;
}

.credit-select.is-open .credit-caret {
  transform: rotate(180deg);
}

.credit-menu {
  position: absolute;
  z-index: 30;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  max-height: 320px;
  overflow-y: auto;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 30px 70px rgba(7, 17, 31, 0.22);
  outline: none;
  scrollbar-width: thin;
  scrollbar-color: rgba(100, 118, 143, 0.4) transparent;
}

.credit-menu[hidden] {
  display: none;
}

.credit-menu::-webkit-scrollbar {
  width: 10px;
}

.credit-menu::-webkit-scrollbar-thumb {
  background: rgba(100, 118, 143, 0.35);
  border: 3px solid #ffffff;
  border-radius: 999px;
}

.credit-group + .credit-group {
  margin-top: 2px;
}

.credit-group-label {
  padding: 12px 14px 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.credit-option {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 12px;
  cursor: pointer;
}

.credit-option.is-active {
  background: rgba(22, 93, 255, 0.07);
}

.credit-option[aria-selected="true"] {
  background: rgba(22, 93, 255, 0.1);
}

.credit-mark {
  display: inline-grid;
  place-items: center;
  width: 20px;
  color: var(--blue);
}

.credit-check {
  width: 18px;
  height: 18px;
  opacity: 0;
}

.credit-option[aria-selected="true"] .credit-check {
  opacity: 1;
}

.credit-credits {
  color: var(--ink);
  font-size: 15px;
  font-weight: 740;
}

.credit-option[aria-selected="true"] .credit-credits {
  color: var(--blue);
  font-weight: 850;
}

.credit-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.credit-price {
  color: var(--muted);
  font-size: 15px;
  font-weight: 760;
}

.credit-badge {
  display: inline-grid;
  place-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(183, 116, 30, 0.14);
  color: #9a5f12;
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
}

/* Trusted-by strip (continues the indigo hero) */
.trust-strip {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px clamp(20px, 4vw, 44px);
  padding: 22px clamp(22px, 6vw, 94px);
  background: linear-gradient(180deg, #3b30c4 0%, #2c2293 100%);
}

.trust-label {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.trust-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-logos li {
  display: inline-flex;
  align-items: center;
  padding: 0 clamp(18px, 3vw, 36px);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-logos li:first-child {
  border-left: 0;
}

.trust-logos img {
  height: 40px;
  width: auto;
  opacity: 0.92;
  filter: grayscale(1) brightness(1.06);
}

.trust-logos img[src$=".svg"] {
  height: 26px;
}

@media (max-width: 600px) {
  .trust-logos li {
    padding: 0 14px;
  }
  .trust-logos img {
    height: 32px;
  }
  .trust-logos img[src$=".svg"] {
    height: 22px;
  }
}

/* How credits work (pricing page) */
.credits-how-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.credit-info,
.credit-highlight {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
}

.credit-info {
  display: grid;
  align-content: start;
  gap: 12px;
  box-shadow: 0 14px 34px rgba(7, 17, 31, 0.05);
}

.credit-info h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

.credit-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.credit-highlight {
  display: grid;
  align-content: center;
  gap: 22px;
  border-color: rgba(124, 108, 246, 0.28);
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(255, 196, 120, 0.18), transparent 52%),
    radial-gradient(120% 120% at 0% 100%, rgba(124, 108, 246, 0.16), transparent 52%),
    #ffffff;
  box-shadow: 0 22px 54px rgba(7, 17, 31, 0.08);
}

.credit-highlight h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.16;
  letter-spacing: -0.01em;
}

.credit-highlight .primary-action {
  width: max-content;
}

@media (max-width: 760px) {
  .credits-how-grid {
    grid-template-columns: 1fr;
  }
}

/* AI Agents hero: animated tool coverflow */
.tool-card {
  position: relative;
  width: 100%;
  min-height: 420px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(124, 108, 246, 0.16);
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(124, 108, 246, 0.1), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f3f4ff 100%);
  box-shadow: 0 34px 90px rgba(18, 14, 64, 0.18);
}

.tool-coverflow {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
}

.tool-tile {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(100, 118, 143, 0.14);
  box-shadow: 0 16px 36px rgba(7, 17, 31, 0.12);
  transition: transform 720ms cubic-bezier(0.4, 0.7, 0.3, 1), opacity 720ms ease;
  will-change: transform, opacity;
}

.tool-tile.no-anim {
  transition: none;
}

.tool-tile.is-center {
  box-shadow: 0 26px 60px rgba(18, 14, 64, 0.22);
}

.tool-tile img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.tool-card-foot {
  display: grid;
  gap: 8px;
  padding: 24px 28px 28px;
  border-top: 1px solid rgba(100, 118, 143, 0.12);
}

.tool-card-foot strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.15;
}

.tool-card-foot span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .tool-card {
    min-height: 360px;
  }
  .tool-coverflow {
    min-height: 210px;
  }
  .tool-tile {
    width: 80px;
    height: 80px;
  }
  .tool-tile img {
    width: 38px;
    height: 38px;
  }
}

/* Configurator: animated finance-automation flow diagram */
.flow-wrap {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.flow-diagram {
  position: relative;
  width: 620px;
  height: 312px;
  flex: none;
  transform-origin: top center;
}

.flow-edges {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.flow-edge {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.flow-edge.solid {
  stroke: #6b7bd6;
  transition: stroke-dashoffset 0.6s ease;
}

.flow-edge.dashed {
  stroke: #9aa6e8;
  stroke-dasharray: 6 8;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.flow-edge.dashed.is-in {
  opacity: 1;
  animation: flowdash 1.1s linear infinite;
}

@keyframes flowdash {
  to {
    stroke-dashoffset: -28;
  }
}

.fnode {
  position: absolute;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  transition: opacity 0.5s ease, transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fnode.is-in {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.fn-main {
  width: 116px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(100, 118, 143, 0.18);
  box-shadow: 0 14px 30px rgba(7, 17, 31, 0.1);
}

.fn-main.fn-agent {
  width: 138px;
  height: 62px;
  border-color: rgba(22, 93, 255, 0.32);
  box-shadow: 0 18px 38px rgba(22, 93, 255, 0.18);
}

.fn-ic {
  flex: none;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #2f6df6;
  background: rgba(22, 93, 255, 0.1);
}

.fn-agent .fn-ic {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.fn-ic svg {
  width: 18px;
  height: 18px;
}

.fn-tx {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.fn-tx strong {
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.12;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fn-tx small {
  color: var(--muted);
  font-size: 9.5px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fn-sub {
  width: 54px;
  height: 54px;
}

.fn-circle {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #2f6df6;
  background: #ffffff;
  border: 1px solid rgba(100, 118, 143, 0.2);
  box-shadow: 0 12px 26px rgba(7, 17, 31, 0.1);
}

.fn-circle svg {
  width: 22px;
  height: 22px;
}

.fn-sub small {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .flow-edge.dashed.is-in {
    animation: none;
  }
}

/* Industries hero: animated outcomes dashboard */
.metric-dash {
  position: relative;
  width: min(100%, 470px);
  margin-left: auto;
  padding: 22px 24px 24px;
  border-radius: 18px;
  color: #ffffff;
  background:
    radial-gradient(120% 90% at 100% -10%, rgba(34, 168, 223, 0.22), transparent 55%),
    linear-gradient(160deg, #0e1c3e 0%, #0a1330 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 72px rgba(8, 18, 48, 0.34);
}

.md-dots {
  position: absolute;
  top: 16px;
  left: 22px;
  display: flex;
  gap: 7px;
}

.md-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.md-dots i:nth-child(1) { background: #ff5f57; }
.md-dots i:nth-child(2) { background: #febc2e; }
.md-dots i:nth-child(3) { background: #28c840; }

.md-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.md-avatar {
  flex: none;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 900;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.md-title {
  flex: 1;
  min-width: 0;
}

.md-title strong {
  display: block;
  color: #ffffff;
  font-size: 17px;
}

.md-title small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12.5px;
  font-weight: 700;
}

.md-status {
  flex: none;
  min-height: 28px;
  display: inline-grid;
  place-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #7ef0c0;
  font-size: 12px;
  font-weight: 850;
  background: rgba(13, 128, 104, 0.22);
  border: 1px solid rgba(73, 218, 179, 0.3);
}

.md-label {
  margin: 20px 0 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.md-metrics {
  display: grid;
  gap: 14px;
}

.md-row {
  display: grid;
  gap: 7px;
}

.md-row-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.md-name {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13.5px;
  font-weight: 700;
}

.md-num {
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

.md-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.md-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), #5bd0fb);
  transition: width 1.1s cubic-bezier(0.3, 0.8, 0.3, 1);
}

.md-ba {
  display: grid;
  gap: 9px;
}

.md-ba-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 10px;
}

.md-ba-row span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 800;
}

.ba-before { background: linear-gradient(90deg, #b7741e, #e7a13c); }
.ba-after { background: linear-gradient(90deg, #0d8068, #2fd3a6); }

.md-foot {
  margin-top: 18px;
}

.md-pill {
  display: inline-grid;
  place-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  color: #bfe3ff;
  font-size: 12.5px;
  font-weight: 850;
  background: rgba(91, 208, 251, 0.12);
  border: 1px solid rgba(91, 208, 251, 0.26);
}

/* Industries hero: looping "chaos -> agent -> report" scene */
.scene-card {
  position: relative;
  padding: clamp(16px, 2vw, 24px);
  border-radius: 18px;
  border: 1px solid rgba(13, 38, 76, 0.1);
  background:
    radial-gradient(120% 90% at 80% -10%, rgba(124, 108, 246, 0.1), transparent 55%),
    linear-gradient(180deg, #fbfcff, #eef1fb);
  box-shadow: 0 22px 54px rgba(7, 17, 31, 0.08);
  overflow: hidden;
}

.scene-wrap {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.outcome-scene {
  position: relative;
  width: 440px;
  height: 280px;
  flex: none;
  transform-origin: top center;
}

.sc-clock {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid #e0524d;
  color: #e0524d;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(7, 17, 31, 0.1);
  transition: color 0.4s ease, border-color 0.4s ease;
}

.sc-hand {
  position: absolute;
  left: 50%;
  bottom: 50%;
  width: 3px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: currentColor;
  transform-origin: bottom center;
}

.sc-hand-h { height: 14px; animation: scspin 3s linear infinite; }
.sc-hand-m { height: 19px; animation: scspin 0.9s linear infinite; }

@keyframes scspin { to { transform: rotate(360deg); } }

.sc-check {
  position: absolute;
  inset: 11px;
  width: auto;
  height: auto;
  color: #16a06a;
  opacity: 0;
  transition: opacity 0.4s ease 0.15s;
}

.sc-box {
  position: absolute;
  left: 132px;
  top: 92px;
  width: 96px;
  height: 96px;
  color: #8a93b5;
  transition: transform 0.6s cubic-bezier(0.4, 0.7, 0.3, 1), opacity 0.5s ease;
}

.sc-smallboxes {
  position: absolute;
  left: 140px;
  top: 150px;
  display: flex;
  gap: 10px;
  opacity: 0;
  transform: translateY(8px) scale(0.7);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.4, 0.7, 0.3, 1);
}

.sc-smallboxes i {
  position: relative;
  width: 26px;
  height: 24px;
  border-radius: 4px;
  border: 2px solid #6b7bd6;
  background: rgba(107, 123, 214, 0.12);
}

.sc-smallboxes i::before {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: -5px;
  height: 4px;
  border-radius: 3px 3px 0 0;
  background: #6b7bd6;
}

.sc-papers i {
  position: absolute;
  left: 168px;
  top: 96px;
  transition: transform 0.8s cubic-bezier(0.4, 0.7, 0.3, 1), opacity 0.5s ease;
}

.sc-papers span {
  display: block;
  width: 32px;
  height: 42px;
  border-radius: 4px;
  background-color: #ffffff;
  background-image:
    linear-gradient(#c9d3e6, #c9d3e6),
    linear-gradient(#c9d3e6, #c9d3e6),
    linear-gradient(#c9d3e6, #c9d3e6);
  background-repeat: no-repeat;
  background-position: 6px 12px, 6px 19px, 6px 26px;
  background-size: 20px 2px, 20px 2px, 14px 2px;
  border: 1px solid rgba(100, 118, 143, 0.28);
  box-shadow: 0 6px 14px rgba(7, 17, 31, 0.12);
}

.sc-papers i:nth-child(1) { transform: translate(-86px, -34px) rotate(-16deg); }
.sc-papers i:nth-child(2) { transform: translate(-24px, -62px) rotate(11deg); }
.sc-papers i:nth-child(3) { transform: translate(44px, -50px) rotate(19deg); }
.sc-papers i:nth-child(4) { transform: translate(-112px, 8px) rotate(-7deg); }
.sc-papers i:nth-child(5) { transform: translate(16px, -18px) rotate(-12deg); }

.p-chaos .sc-papers span { animation: scwob 2.2s ease-in-out infinite alternate; }

@keyframes scwob {
  from { transform: translateY(-2px) rotate(-2deg); }
  to { transform: translateY(2px) rotate(2deg); }
}

.p-organize .sc-papers i:nth-child(1) { transform: translate(82px, 4px) rotate(-3deg); }
.p-organize .sc-papers i:nth-child(2) { transform: translate(86px, 9px) rotate(2deg); }
.p-organize .sc-papers i:nth-child(3) { transform: translate(84px, 14px) rotate(-1deg); }
.p-organize .sc-papers i:nth-child(4) { transform: translate(88px, 19px) rotate(3deg); }
.p-organize .sc-papers i:nth-child(5) { transform: translate(83px, 24px) rotate(0deg); }

.p-merge .sc-papers i,
.p-done .sc-papers i {
  transform: translate(86px, 20px) scale(0.35);
  opacity: 0;
}

.sc-agent {
  position: absolute;
  left: 250px;
  top: 34px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 14px 30px rgba(22, 93, 255, 0.32);
  opacity: 0;
  transform: translate(34px, -8px) scale(0.6);
  transition: opacity 0.5s ease, transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sc-agent svg { width: 28px; height: 28px; }

.sc-report {
  position: absolute;
  left: 250px;
  top: 92px;
  width: 74px;
  height: 92px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(100, 118, 143, 0.28);
  box-shadow: 0 16px 36px rgba(7, 17, 31, 0.16);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.5s ease, transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sc-report b {
  position: absolute;
  left: 12px;
  height: 3px;
  border-radius: 2px;
  background: #c9d3e6;
}

.sc-report b:nth-child(1) { top: 16px; width: 50px; }
.sc-report b:nth-child(2) { top: 26px; width: 42px; }
.sc-report b:nth-child(3) { top: 36px; width: 48px; }
.sc-report b:nth-child(4) { top: 46px; width: 34px; }

.sc-report-check {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  width: 26px;
  height: 26px;
  color: #16a06a;
  opacity: 0;
  transition: opacity 0.4s ease 0.1s;
}

.p-organize .sc-box,
.p-merge .sc-box,
.p-done .sc-box {
  opacity: 0;
  transform: scale(0.4) translateY(6px);
}

.p-organize .sc-smallboxes,
.p-merge .sc-smallboxes {
  opacity: 1;
  transform: none;
}

.p-done .sc-smallboxes {
  opacity: 0;
  transform: scale(0.7);
}

.p-agent .sc-agent,
.p-organize .sc-agent,
.p-merge .sc-agent,
.p-done .sc-agent {
  opacity: 1;
  transform: none;
}

.p-merge .sc-report,
.p-done .sc-report {
  opacity: 1;
  transform: none;
}

.p-done .sc-report-check { opacity: 1; }

.p-done .sc-clock {
  color: #16a06a;
  border-color: #16a06a;
}

.p-done .sc-hand {
  opacity: 0;
  animation: none;
}

.p-done .sc-check { opacity: 1; }

.sc-caption {
  margin: 8px 0 0;
  min-height: 20px;
  text-align: center;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 800;
}

@media (prefers-reduced-motion: reduce) {
  .sc-hand { animation: none !important; }
  .p-chaos .sc-papers span { animation: none !important; }
}

/* Industries hero: animated process diagram */
.pipe-card {
  position: relative;
  padding: clamp(16px, 2vw, 24px);
  border-radius: 18px;
  border: 1px solid rgba(13, 38, 76, 0.1);
  background:
    radial-gradient(120% 90% at 78% -10%, rgba(124, 108, 246, 0.09), transparent 56%),
    linear-gradient(rgba(99, 97, 241, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 97, 241, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, #fbfcff, #eef1fb);
  background-size: auto, 26px 26px, 26px 26px, auto;
  box-shadow: 0 22px 54px rgba(7, 17, 31, 0.08);
  overflow: hidden;
}

.pipe-wrap {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.pipe-stage {
  position: relative;
  width: 480px;
  height: 300px;
  flex: none;
  transform-origin: top center;
}

.pipe-edges {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.pe {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.pe.solid { stroke: #6b7bd6; }

.pe.dash {
  stroke: #9aa6e8;
  stroke-dasharray: 5 7;
  animation: pedash 1s linear infinite;
}

@keyframes pedash { to { stroke-dashoffset: -24; } }

.pdot {
  position: absolute;
  left: 0;
  top: 0;
  width: 9px;
  height: 9px;
  margin: -4.5px;
  border-radius: 50%;
  background: radial-gradient(circle, #5bd0fb, var(--blue));
  box-shadow: 0 0 10px rgba(34, 168, 223, 0.8);
  opacity: 0;
  offset-rotate: 0deg;
}

.pdot1 { offset-path: path("M136 78 L182 78"); }
.pdot2 { offset-path: path("M298 78 L344 78"); }

.p-run1 .pdot1 { animation: ptravel 1s ease forwards; }
.p-out .pdot2 { animation: ptravel 1s ease forwards; }

@keyframes ptravel {
  0% { offset-distance: 0%; opacity: 0; }
  14% { opacity: 1; }
  86% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

.pnode {
  position: absolute;
  transform: translate(-50%, -50%);
}

.pn-main {
  width: 116px;
  height: 58px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(100, 118, 143, 0.18);
  box-shadow: 0 12px 26px rgba(7, 17, 31, 0.1);
}

.pn-agent {
  width: 130px;
  height: 62px;
  border-color: rgba(22, 93, 255, 0.32);
  box-shadow: 0 16px 34px rgba(22, 93, 255, 0.18);
}

.pn-ic {
  flex: none;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #2f6df6;
  background: rgba(22, 93, 255, 0.1);
}

.pn-agent .pn-ic {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.pn-ic svg { width: 18px; height: 18px; }

.pn-tx { display: grid; gap: 1px; min-width: 0; }

.pn-tx strong {
  color: var(--ink);
  font-size: 11.5px;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.pn-tx small {
  color: var(--muted);
  font-size: 9.5px;
  font-weight: 700;
  white-space: nowrap;
}

.pn-status .st-run {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #2f6df6;
}

.pn-status .st-run i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2f6df6;
  animation: pblink 1s ease-in-out infinite;
}

@keyframes pblink { 50% { opacity: 0.3; } }

.pn-status .st-done { display: none; color: #16a06a; }
.p-out .pn-status .st-run, .p-hold .pn-status .st-run { display: none; }
.p-out .pn-status .st-done, .p-hold .pn-status .st-done { display: inline; }

.pn-report { opacity: 0.62; transition: opacity 0.4s ease; }
.p-out .pn-report, .p-hold .pn-report { opacity: 1; }

.pn-check {
  position: absolute;
  top: -9px;
  right: -9px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: #16a06a;
  box-shadow: 0 6px 14px rgba(22, 160, 106, 0.4);
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pn-check svg { width: 13px; height: 13px; }
.p-out .pn-check, .p-hold .pn-check { opacity: 1; transform: scale(1); }

.pn-step {
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(100, 118, 143, 0.2);
  box-shadow: 0 8px 18px rgba(7, 17, 31, 0.07);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  opacity: 0.5;
  transition: opacity 0.4s ease, border-color 0.4s ease, color 0.4s ease;
}

.pn-step::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: #cdd5e6;
  transition: background 0.4s ease;
}

.p-steps .pn-step, .p-out .pn-step, .p-hold .pn-step {
  opacity: 1;
  border-color: rgba(22, 93, 255, 0.38);
  color: var(--ink);
}

.p-steps .pn-step::before, .p-out .pn-step::before, .p-hold .pn-step::before {
  background: #2fb472;
}

.pn-step.s0 { transition-delay: 0.05s; }
.pn-step.s1 { transition-delay: 0.45s; }
.pn-step.s2 { transition-delay: 0.85s; }
.pn-step.s3 { transition-delay: 1.25s; }

.pipe-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.pipe-clock {
  width: 18px;
  height: 18px;
  color: #e0524d;
  transition: color 0.4s ease;
}

.pipe-clock svg { width: 18px; height: 18px; display: block; }
.p-out .pipe-clock, .p-hold .pipe-clock { color: #16a06a; }

.stat-manual { color: #b4453f; font-size: 13px; font-weight: 850; }
.stat-agent { display: none; color: #16a06a; font-size: 13px; font-weight: 850; }
.p-out .stat-manual, .p-hold .stat-manual { display: none; }
.p-out .stat-agent, .p-hold .stat-agent { display: inline; }

/* Industries hero: AI Agent hub with orbiting industries */
.orbit-card {
  position: relative;
  padding: clamp(14px, 2vw, 22px);
  border-radius: 18px;
  border: 1px solid rgba(13, 38, 76, 0.1);
  background:
    radial-gradient(70% 70% at 50% 50%, rgba(124, 108, 246, 0.1), transparent 70%),
    linear-gradient(180deg, #fbfcff, #eef1fb);
  box-shadow: 0 22px 54px rgba(7, 17, 31, 0.08);
  overflow: hidden;
}

.orbit-wrap {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.orbit-stage {
  position: relative;
  width: 600px;
  height: 460px;
  flex: none;
  transform-origin: top center;
}

.orbit-track {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 380px;
  height: 380px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px dashed rgba(99, 97, 241, 0.26);
}

.orbit-ring {
  position: absolute;
  inset: 0;
  animation: orbitspin 38s linear infinite;
}

@keyframes orbitspin { to { transform: rotate(360deg); } }

.orbit-item {
  position: absolute;
  left: 50%;
  top: 50%;
}

.i1 { transform: translate(-50%, -50%) translate(0, -190px); }
.i2 { transform: translate(-50%, -50%) translate(134px, -134px); }
.i3 { transform: translate(-50%, -50%) translate(190px, 0); }
.i4 { transform: translate(-50%, -50%) translate(134px, 134px); }
.i5 { transform: translate(-50%, -50%) translate(0, 190px); }
.i6 { transform: translate(-50%, -50%) translate(-134px, 134px); }
.i7 { transform: translate(-50%, -50%) translate(-190px, 0); }
.i8 { transform: translate(-50%, -50%) translate(-134px, -134px); }

.orbit-chip {
  box-sizing: border-box;
  width: 138px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(100, 118, 143, 0.18);
  box-shadow: 0 10px 22px rgba(7, 17, 31, 0.1);
  color: var(--ink);
  font-size: 11.5px;
  font-weight: 800;
  white-space: nowrap;
  animation: orbitspin 38s linear infinite reverse;
}

.orbit-chip .oi {
  flex: none;
  width: 15px;
  height: 15px;
  color: #2f6df6;
}

.orbit-center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  display: grid;
  justify-items: center;
  gap: 9px;
  text-align: center;
}

.oc-node {
  position: relative;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 18px 42px rgba(22, 93, 255, 0.34);
}

.oc-node::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 168, 223, 0.4), transparent 70%);
  z-index: -1;
  animation: ocpulse 2.8s ease-in-out infinite;
}

@keyframes ocpulse {
  0%, 100% { transform: scale(0.88); opacity: 0.45; }
  50% { transform: scale(1.16); opacity: 0.85; }
}

.oc-node svg { width: 40px; height: 40px; }

.orbit-center strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

@media (prefers-reduced-motion: reduce) {
  .orbit-ring,
  .orbit-chip,
  .oc-node::before {
    animation: none !important;
  }
}

.plan-card .primary-action,
.plan-card .secondary-action {
  width: 100%;
  min-height: 54px;
  border-radius: 999px;
}

.plan-card.enterprise .secondary-action {
  border: 0;
  color: #2a2270;
  background: #ffffff;
}

.plan-everything {
  margin: 4px 0 0;
  font-weight: 800;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.86);
}

.plan-features {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.plan-features li {
  position: relative;
  padding-left: 28px;
  line-height: 1.45;
  color: #334155;
}

.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  color: var(--blue);
}

.plan-card.enterprise .plan-features li {
  color: rgba(255, 255, 255, 0.84);
}

.plan-card.enterprise .plan-features li::before {
  color: #9fb3ff;
}

/* Image-free subpage heroes */
.page-visual {
  display: none !important;
}

.page-hero:not(.has-figure) {
  grid-template-columns: 1fr !important;
}

@media (max-width: 760px) {
  .plan-cards {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Premium section system (batch 6, 2026-06-06): AI Agents as a
   dark glass showcase; Industries with icon chips. Creates a
   confident light/dark rhythm across the page.
   ============================================================ */

/* AI Agents -> dark premium showcase */
/* AI agents by department — premium card grid */
.agent-categories {
  border-top: 0;
  color: var(--bm-text-primary);
  background:
    radial-gradient(80% 120% at 85% -12%, var(--bm-bg-radial-blue), transparent 55%),
    linear-gradient(160deg, var(--bm-bg-secondary) 0%, var(--bm-bg-primary) 100%);
}

.agent-categories::before {
  content: none;
  display: none;
}

.agent-intro {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.agent-categories .agent-intro .eyebrow {
  margin: 0 0 14px;
  color: var(--bm-accent-blue);
}

.agent-intro h2 {
  margin: 0;
  color: var(--bm-text-primary);
  font-size: clamp(30px, 3.5vw, 52px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.agent-intro-sub {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--bm-text-secondary);
  font-size: 18px;
  line-height: 1.62;
}

.agent-intro-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.agent-marquee {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  overflow-x: auto;
  scrollbar-width: none;
}

.agent-marquee::-webkit-scrollbar {
  display: none;
}

.agent-marquee.is-live {
  overflow: hidden;
}

.agent-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 16px 6px;
}

.agent-marquee.is-live .agent-track {
  animation: agentmarquee 48s linear infinite;
}

.agent-marquee.is-live:hover .agent-track,
.agent-marquee.is-live:focus-within .agent-track {
  animation-play-state: paused;
}

@keyframes agentmarquee {
  to {
    transform: translateX(-50%);
  }
}

.agent-categories .agent-card {
  --agent-accent: var(--bm-accent-blue);
  --agent-ink: color-mix(in srgb, var(--agent-accent) 60%, #14233f);
  position: relative;
  flex: none;
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
  padding: 24px 24px 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(7, 17, 31, 0.2);
  color: var(--ink);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.agent-categories .agent-card::before {
  height: 3px;
  background: linear-gradient(90deg, var(--agent-accent), transparent 78%);
  opacity: 0.95;
}

.agent-categories .agent-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(120% 90% at 100% 0%, color-mix(in srgb, var(--agent-accent) 14%, transparent), transparent 58%);
  opacity: 0.4;
  transition: opacity 0.22s ease;
}

.agent-categories .agent-card > * {
  position: relative;
  z-index: 1;
}

.agent-categories .agent-card:hover,
.agent-categories .agent-card:focus-visible {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--agent-accent) 55%, var(--line));
  box-shadow: 0 22px 44px rgba(7, 17, 31, 0.26);
}

.agent-categories .agent-card:hover::after,
.agent-categories .agent-card:focus-visible::after {
  opacity: 0.85;
}

.agent-categories .agent-card:focus-visible {
  outline: 2px solid var(--bm-focus-ring);
  outline-offset: 3px;
}

.agent-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.agent-categories .agent-card .agent-ic {
  flex: none;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--agent-ink);
  background: color-mix(in srgb, var(--agent-accent) 14%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--agent-accent) 30%, var(--line));
}

.agent-categories .agent-card .agent-ic svg {
  width: 20px;
  height: 20px;
}

.agent-categories .agent-card .agent-eyebrow {
  color: var(--agent-ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.agent-categories .agent-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(19px, 1.4vw, 22px);
  line-height: 1.16;
}

.agent-categories .agent-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.agent-categories .agent-card .agent-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.agent-categories .agent-card .agent-tags li {
  min-height: 0;
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(7, 17, 31, 0.04);
  color: #475569;
  font-size: 12px;
  font-weight: 600;
}

.agent-categories .agent-card .agent-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 4px;
  color: var(--agent-ink);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  opacity: 0.9;
  transition: opacity 0.2s ease, gap 0.2s ease;
}

.agent-categories .agent-card .agent-cta svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}

.agent-categories .agent-card:hover .agent-cta,
.agent-categories .agent-card:focus-visible .agent-cta {
  opacity: 1;
  gap: 9px;
}

.agent-categories .agent-card:hover .agent-cta svg,
.agent-categories .agent-card:focus-visible .agent-cta svg {
  transform: translateX(3px);
}

.agent-categories .agent-card.recommended {
  border-color: color-mix(in srgb, var(--agent-accent) 50%, var(--bm-card-border));
}

.agent-categories .agent-card .agent-badge {
  align-self: flex-start;
  display: inline-grid;
  place-items: center;
  margin-bottom: 2px;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--agent-ink);
  border: 1px solid transparent;
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: none;
}

@media (max-width: 640px) {
  .agent-categories .agent-card {
    width: 280px;
  }
  .agent-intro-cta {
    width: 100%;
  }
  .agent-intro-cta .primary-action,
  .agent-intro-cta .secondary-action {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .agent-marquee.is-live {
    overflow-x: auto;
  }
  .agent-marquee.is-live .agent-track {
    animation: none;
  }
}

/* Industries -> icon chips + tidy cards */
.industry-grid article {
  min-height: 0;
  gap: 12px;
  padding: 24px;
}

.industry-grid .card-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 2px;
  border-radius: 13px;
  color: var(--blue);
  background: linear-gradient(150deg, rgba(22, 93, 255, 0.12), rgba(34, 168, 223, 0.12));
  border: 1px solid rgba(22, 93, 255, 0.18);
}

.industry-grid .card-icon svg {
  width: 23px;
  height: 23px;
}

.industry-grid strong {
  font-size: 19px;
}

/* ============================================================
   Applications page (2026-06-09): showcase the two client apps
   with screenshots + per-app login. Screenshots use .app-frame
   (not .page-visual), so they are not hidden by the image-free
   rule above.
   ============================================================ */
.apps-hero {
  grid-template-columns: 1fr;
  min-height: 0;
  text-align: center;
  justify-items: center;
}

.apps-hero > div {
  max-width: 760px;
  margin: 0 auto;
}

.apps-hero .hero-actions {
  justify-content: center;
}

.apps-showcase {
  display: grid;
  gap: clamp(56px, 8vw, 104px);
  padding: clamp(32px, 6vw, 72px) clamp(22px, 6vw, 94px);
}

.app-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
  scroll-margin-top: calc(var(--nav-height) + 24px);
}

.app-feature.reverse .app-feature-copy {
  order: 2;
}

.app-feature-copy h2 {
  margin: 6px 0 14px;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.app-feature-copy > p {
  max-width: 46ch;
  font-size: 17px;
  line-height: 1.6;
}

.app-feature-points {
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.app-feature-points li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.5;
}

.app-feature-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 19px;
  height: 19px;
  border-radius: 6px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23165dff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.2 4.2L19 6.5'/%3E%3C/svg%3E") center / 13px no-repeat,
    linear-gradient(150deg, rgba(22, 93, 255, 0.14), rgba(34, 168, 223, 0.14));
  border: 1px solid rgba(22, 93, 255, 0.2);
}

.app-feature-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--muted);
  background: rgba(13, 38, 76, 0.04);
  border: 1px solid var(--line);
}

.app-feature-media {
  display: grid;
  gap: 22px;
}

.app-frame {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #0c1230;
  border: 1px solid rgba(13, 38, 76, 0.1);
  box-shadow: 0 30px 70px rgba(8, 18, 48, 0.22);
}

.app-frame-bar {
  display: flex;
  gap: 7px;
  padding: 12px 16px;
  background: linear-gradient(180deg, #11183a, #0c1230);
}

.app-frame-bar i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.app-frame-bar i:first-child { background: #ff5f57; }
.app-frame-bar i:nth-child(2) { background: #febc2e; }
.app-frame-bar i:nth-child(3) { background: #28c840; }

.app-frame img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 860px) {
  .app-feature {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .app-feature.reverse .app-feature-copy {
    order: 0;
  }

  .app-feature-copy > p {
    max-width: none;
  }
}

/* ============================================================
   Subpage UI/UX refresh (2026-06-09): elevate the shared
   secondary-page components — hero, cards, kickers, sections,
   CTA — so they match the homepage polish. CSS-only and scoped
   to .subpage, so it overrides the base rules above and is fully
   reversible by deleting this block. No HTML changes.
   ============================================================ */

/* Hero: single column on a soft gradient band with an intentional
   corner glow, replacing the empty right half left by the hidden
   .page-visual. Typography tuned down from the oversized fixed sizes. */
.subpage .page-hero {
  position: relative;
  grid-template-columns: 1fr;
  min-height: 0;
  overflow: hidden;
  padding-block: clamp(74px, 9vw, 118px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(66% 88% at 100% -12%, rgba(22, 93, 255, 0.16), transparent 58%),
    radial-gradient(48% 72% at 0% 112%, rgba(34, 168, 223, 0.14), transparent 60%),
    linear-gradient(180deg, #e9f0fd 0%, #f6f9ff 72%);
}

.subpage .page-hero > div {
  position: relative;
  max-width: 880px;
}

.subpage .page-hero h1 {
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.03;
  letter-spacing: -0.018em;
}

.subpage .page-hero .lede {
  font-size: clamp(18px, 1.7vw, 21px);
}

/* Keep the already-approved Applications hero centered and narrower. */
.subpage .apps-hero > div {
  max-width: 760px;
  margin: 0 auto;
}

/* Section typography + rhythm. */
.subpage .page-section h2,
.subpage .page-cta h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.015em;
}

/* Section colour + texture rhythm: tinted, grid-textured sections
   alternate with clean white bloom sections so pages stop reading as
   flat white. */
.subpage .page-section:not(.alt) {
  background-color: #e3ebf8;
  background-image:
    linear-gradient(rgba(22, 93, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 93, 255, 0.06) 1px, transparent 1px),
    radial-gradient(60% 64% at 100% 0%, rgba(34, 168, 223, 0.20), transparent 62%),
    radial-gradient(56% 60% at 0% 100%, rgba(22, 93, 255, 0.18), transparent 64%);
  background-size: 46px 46px, 46px 46px, cover, cover;
}

.subpage .page-section.alt {
  background-color: #ffffff;
  background-image:
    radial-gradient(50% 62% at 0% 0%, rgba(22, 93, 255, 0.05), transparent 56%),
    radial-gradient(54% 60% at 100% 100%, rgba(34, 168, 223, 0.06), transparent 60%);
}

/* Section kicker as a tinted pill. */
.subpage .section-kicker {
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--blue);
  font-size: 12px;
  letter-spacing: 0.12em;
  background: rgba(22, 93, 255, 0.08);
  border: 1px solid rgba(22, 93, 255, 0.16);
}

/* Cards: rounder, deeper, hover lift with a revealed accent bar. */
.subpage .page-card,
.subpage .feature-card,
.subpage .workflow-card,
.subpage .resource-card,
.subpage .case-card,
.subpage .process-card {
  position: relative;
  overflow: hidden;
  padding: 26px 24px;
  border-radius: 14px;
  border-color: rgba(13, 38, 76, 0.09);
  box-shadow: 0 1px 2px rgba(7, 17, 31, 0.04), 0 16px 40px rgba(7, 17, 31, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.subpage .page-card::before,
.subpage .feature-card::before,
.subpage .workflow-card::before,
.subpage .process-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  opacity: 0;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: opacity 0.18s ease;
}

.subpage .page-card:hover,
.subpage .feature-card:hover,
.subpage .workflow-card:hover,
.subpage .resource-card:hover,
.subpage .case-card:hover,
.subpage .process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 93, 255, 0.26);
  box-shadow: 0 1px 2px rgba(7, 17, 31, 0.05), 0 26px 56px rgba(13, 38, 76, 0.13);
}

.subpage .page-card:hover::before,
.subpage .feature-card:hover::before,
.subpage .workflow-card:hover::before,
.subpage .process-card:hover::before {
  opacity: 1;
}

/* Category label as a chip (page/feature/workflow cards). */
.subpage .page-card > span,
.subpage .feature-card > span,
.subpage .workflow-card > span {
  align-items: center;
  padding: 6px 11px;
  border-radius: 999px;
  letter-spacing: 0.1em;
  background: rgba(22, 93, 255, 0.08);
  border: 1px solid rgba(22, 93, 255, 0.14);
}

/* Process step number as a rounded badge. */
.subpage .process-card > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 12px;
  font-size: 15px;
  color: var(--blue);
  background: linear-gradient(150deg, rgba(22, 93, 255, 0.14), rgba(34, 168, 223, 0.14));
  border: 1px solid rgba(22, 93, 255, 0.18);
}

/* Link arrow with motion. */
.subpage .page-link::after {
  content: "\2192";
  transition: transform 0.16s ease;
}

.subpage .page-link:hover::after {
  transform: translateX(3px);
}

/* Comparison table rounding to match the new cards. */
.subpage .comparison-table {
  border-radius: 14px;
}

/* CTA: keep dark, add a soft cyan glow for depth. */
.subpage .page-cta {
  background:
    radial-gradient(58% 120% at 85% -12%, rgba(34, 168, 223, 0.22), transparent 60%),
    linear-gradient(120deg, rgba(5, 10, 18, 0.96), rgba(8, 33, 47, 0.94)),
    #050a12;
}

@media (max-width: 880px) {
  .subpage .page-grid,
  .subpage .agent-page-grid,
  .subpage .industry-page-grid,
  .subpage .governance-grid,
  .subpage .resource-grid,
  .subpage .process-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .subpage .page-grid,
  .subpage .agent-page-grid,
  .subpage .industry-page-grid,
  .subpage .governance-grid,
  .subpage .resource-grid,
  .subpage .process-page-grid,
  .subpage .two-column-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Fuller subpage treatment (2026-06-09): product-window hero
   visual, card icons, a stat band, and tighter vertical rhythm,
   so pages read as full rather than empty. Reusable across pages.
   ============================================================ */

/* Tighter rhythm. */
.subpage .page-section,
.subpage .page-cta {
  padding-block: clamp(56px, 6vw, 92px);
}

/* Hero that carries a product visual: two columns again. */
.subpage .page-hero.has-figure {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  gap: clamp(34px, 5vw, 66px);
  align-items: center;
}

.subpage .page-hero.has-figure > div:first-child {
  max-width: 600px;
}

@media (max-width: 920px) {
  .subpage .page-hero.has-figure {
    grid-template-columns: 1fr;
  }
  .hero-figure {
    display: none;
  }
}

/* Product-window hero visual. */
.hero-figure {
  position: relative;
}

.hero-figure::before {
  content: "";
  position: absolute;
  inset: -10% -6% -12% -4%;
  z-index: 0;
  background:
    radial-gradient(58% 58% at 72% 18%, rgba(22, 93, 255, 0.22), transparent 60%),
    radial-gradient(50% 50% at 18% 92%, rgba(34, 168, 223, 0.18), transparent 62%);
}

.hero-window {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 16px;
  background: #0c1230;
  border: 1px solid rgba(13, 38, 76, 0.12);
  box-shadow: 0 34px 80px rgba(8, 18, 48, 0.28);
}

.hw-bar {
  display: flex;
  gap: 7px;
  padding: 13px 16px;
  background: linear-gradient(180deg, #11183a, #0c1230);
}

.hw-bar i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.hw-bar i:first-child { background: #ff5f57; }
.hw-bar i:nth-child(2) { background: #febc2e; }
.hw-bar i:nth-child(3) { background: #28c840; }

.hw-body {
  padding: 22px;
  color: #ffffff;
}

.hw-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hw-avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-weight: 900;
  color: #ffffff;
  background: linear-gradient(150deg, var(--blue), var(--cyan));
}

.hw-head strong { display: block; font-size: 16px; }
.hw-head small { color: rgba(255, 255, 255, 0.6); font-size: 13px; }

.hw-status {
  margin-left: auto;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: #7ef0c4;
  background: rgba(40, 200, 120, 0.14);
  border: 1px solid rgba(40, 200, 120, 0.3);
}

.hw-steps {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 13px;
}

.hw-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14.5px;
}

.hw-steps li i {
  width: 18px;
  height: 18px;
  flex: none;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.hw-steps li.done {
  color: #ffffff;
}

.hw-steps li.done i {
  border-color: transparent;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.2 4.2L19 6.5'/%3E%3C/svg%3E") center / 12px no-repeat,
    linear-gradient(150deg, var(--blue), var(--cyan));
}

.hw-steps li.active i {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(34, 168, 223, 0.18);
}

.hw-foot {
  margin-top: 20px;
}

.hw-pill {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #cfe0ff;
  background: rgba(22, 93, 255, 0.16);
  border: 1px solid rgba(22, 93, 255, 0.3);
}

/* Card icon tile (replaces the text category chip where used). */
.subpage .page-card .card-icon,
.subpage .feature-card .card-icon,
.subpage .workflow-card .card-icon,
.subpage .credit-info .card-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  margin-bottom: 16px;
  border-radius: 13px;
  color: var(--blue);
  background: linear-gradient(150deg, rgba(22, 93, 255, 0.12), rgba(34, 168, 223, 0.12));
  border: 1px solid rgba(22, 93, 255, 0.18);
}

.subpage .page-card .card-icon svg,
.subpage .feature-card .card-icon svg,
.subpage .workflow-card .card-icon svg,
.subpage .credit-info .card-icon svg {
  width: 24px;
  height: 24px;
}

/* Stat band: a dark, content-dense strip for rhythm and proof. */
.subpage .stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: clamp(32px, 4.2vw, 52px) clamp(22px, 6vw, 80px);
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(80% 180% at 100% -20%, rgba(34, 168, 223, 0.28), transparent 60%),
    radial-gradient(60% 160% at 0% 120%, rgba(91, 75, 240, 0.22), transparent 60%),
    linear-gradient(120deg, #0c1230, #0a1f3e);
}

.subpage .stat-strip .stat {
  position: relative;
  padding: 4px clamp(16px, 3vw, 40px);
}

.subpage .stat-strip .stat + .stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 46px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.subpage .stat-strip .stat strong {
  display: block;
  font-size: clamp(32px, 3.4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(180deg, #ffffff 0%, #8fd0ff 155%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subpage .stat-strip .stat span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13.5px;
  font-weight: 600;
}

@media (max-width: 720px) {
  .subpage .stat-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 0;
  }
  .subpage .stat-strip .stat:nth-child(odd)::before {
    display: none;
  }
}

/* ============================================================
   Agents vs Industries differentiation (2026-06-09):
   - AI Agents = the builder (interactive agent configurator).
   - Industries = the outcomes (industry selector, workflow flow,
     illustrative metrics) with a teal "outcomes" accent.
   ============================================================ */

/* ---- Agent configurator (AI Agents page) ---- */
.configurator {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(22px, 3.5vw, 44px);
  align-items: start;
  margin-top: 36px;
}

.config-panel {
  padding: 26px;
  border-radius: 16px;
  border: 1px solid rgba(13, 38, 76, 0.1);
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(7, 17, 31, 0.06);
}

.config-group + .config-group {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.config-group h4 {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.config-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.config-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

.config-chip:hover { border-color: rgba(22, 93, 255, 0.4); }
.config-chip:active { transform: translateY(1px); }

.config-chip[aria-pressed="true"] {
  border-color: var(--blue);
  background: rgba(22, 93, 255, 0.1);
  color: var(--blue);
}

.config-chip .tick {
  width: 15px;
  height: 15px;
  display: none;
}

.config-chip[aria-pressed="true"] .tick { display: inline-block; }

.config-approval {
  display: grid;
  gap: 8px;
}

.config-opt {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #ffffff;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.config-opt:hover { border-color: rgba(22, 93, 255, 0.4); }

.config-opt[aria-pressed="true"] {
  border-color: var(--blue);
  background: rgba(22, 93, 255, 0.06);
}

.config-opt .dot {
  margin-top: 3px;
  width: 15px;
  height: 15px;
  flex: none;
  border-radius: 50%;
  border: 2px solid var(--line);
}

.config-opt[aria-pressed="true"] .dot {
  border-color: var(--blue);
  background:
    radial-gradient(circle at center, var(--blue) 0 4px, transparent 5px);
}

.config-opt strong { display: block; font-size: 14.5px; }
.config-opt small { color: var(--muted); font-size: 13px; }

.config-preview {
  position: sticky;
  top: calc(var(--nav-height) + 16px);
  padding: clamp(18px, 2vw, 26px);
  border-radius: 18px;
  border: 1px solid rgba(13, 38, 76, 0.1);
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(124, 108, 246, 0.08), transparent 60%),
    linear-gradient(rgba(99, 97, 241, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 97, 241, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, #fbfcff, #eef1fb);
  background-size: auto, 26px 26px, 26px 26px, auto;
  box-shadow: 0 18px 44px rgba(7, 17, 31, 0.07);
  overflow: hidden;
}

.config-preview .hero-window { box-shadow: 0 26px 64px rgba(8, 18, 48, 0.22); }

.hw-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 4px 0 2px;
}

.hw-tool {
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  color: #cfe0ff;
  background: rgba(22, 93, 255, 0.16);
  border: 1px solid rgba(22, 93, 255, 0.3);
}

.hw-section-label {
  margin: 18px 0 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.config-cta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 18px;
}

@media (max-width: 900px) {
  .configurator { grid-template-columns: 1fr; }
  .config-preview { position: static; }
}

/* ---- Industries = outcomes, teal accent ---- */
.industries-outcomes {
  --accent: #0d8068;
  --accent-soft: rgba(13, 128, 104, 0.1);
  --accent-line: rgba(13, 128, 104, 0.22);
}

/* Retune the hero glow + kickers + links toward teal on Industries. */
.industries-outcomes .page-hero.has-figure {
  background:
    radial-gradient(66% 88% at 100% -12%, rgba(13, 128, 104, 0.16), transparent 58%),
    radial-gradient(48% 72% at 0% 112%, rgba(20, 160, 130, 0.13), transparent 60%),
    linear-gradient(180deg, #e8f6f1 0%, #f5fbf9 72%);
}

.industries-outcomes .section-kicker {
  color: var(--accent);
  background: var(--accent-soft);
  border-color: var(--accent-line);
}

.industries-outcomes .page-link { color: var(--accent); }
.industries-outcomes .hw-status {
  color: #7ef0c4;
  background: rgba(13, 128, 104, 0.2);
  border-color: rgba(40, 200, 120, 0.34);
}

/* Outcome metric band */
.metric-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding: clamp(30px, 4vw, 48px) clamp(22px, 6vw, 94px) 14px;
}

.metric-band .metric strong {
  display: block;
  font-size: clamp(32px, 4vw, 50px);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--accent);
}

.metric-band .metric span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.45;
}

.illustrative-note {
  padding: 0 clamp(22px, 6vw, 94px);
  margin: 0 0 4px;
  font-size: 12.5px;
  color: var(--muted);
}

/* Industry selector */
.ind-selector { margin-top: 30px; }

.ind-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.ind-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 750;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.ind-tab:hover { border-color: var(--accent-line); }

.ind-tab[aria-selected="true"] {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

.ind-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  padding: clamp(26px, 3.4vw, 40px);
  border-radius: 18px;
  border: 1px solid var(--accent-line);
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(13, 128, 104, 0.07), transparent 60%),
    linear-gradient(180deg, #ffffff, #f3faf7);
}

.ind-pain {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #9a5a1e;
  background: rgba(183, 116, 30, 0.1);
  border: 1px solid rgba(183, 116, 30, 0.22);
}

.ind-panel h3 {
  margin: 16px 0 10px;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.12;
}

.ind-panel > div > p { margin: 0 0 18px; }

.ind-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ind-metric {
  flex: 1 1 0;
  min-width: 120px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid var(--accent-line);
}

.ind-metric strong {
  display: block;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--accent);
}

.ind-metric span { font-size: 12.5px; color: var(--muted); }

/* Workflow flow */
.workflow-flow {
  display: grid;
  gap: 12px;
}

.flow-node {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 17px;
  border-radius: 13px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.flow-node:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 31px;
  bottom: -13px;
  width: 2px;
  height: 13px;
  background: var(--accent-line);
}

.flow-ic {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 900;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
}

.flow-node.is-human .flow-ic {
  color: var(--blue);
  background: rgba(22, 93, 255, 0.1);
  border-color: rgba(22, 93, 255, 0.2);
}

.flow-node.is-outcome {
  background: linear-gradient(120deg, rgba(13, 128, 104, 0.1), rgba(20, 160, 130, 0.06));
  border-color: var(--accent-line);
}

.flow-node strong { font-size: 14.5px; display: block; }
.flow-node small { color: var(--muted); font-size: 13px; }

@media (max-width: 880px) {
  .metric-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ind-panel { grid-template-columns: 1fr; }
}
