:root {
  --paper: #f9f8f4;
  --paper-2: #f1efe7;
  --paper-3: #ebe6da;
  --ink: #171717;
  --stone: #24211d;
  --muted: #625d55;
  --soft: #82786b;
  --line: #ddd7ca;
  --gold: #b89355;
  --gold-2: #d7bd83;
  --velociti-orange: #ff653b;
  --velociti-orange-hot: #f7653b;
  --velociti-orange-bright: #ff7042;
  --velociti-peach: #ff8b5d;
  --velociti-orange-rgb: 255, 101, 59;
  --velociti-peach-rgb: 255, 139, 93;
  --white: #ffffff;
  --success: #245947;
  --danger: #7b2e2e;
  --shadow: 0 22px 70px rgba(24, 21, 17, 0.11);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

::selection {
  background: var(--gold);
  color: var(--ink);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(221, 215, 202, 0.76);
  background: rgba(249, 248, 244, 0.93);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 136px;
}

.brand img {
  width: 116px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.nav-links a {
  color: #474139;
  text-decoration: none;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.menu-toggle span {
  position: relative;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 40px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.66rem 0.98rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-1px);
}

.button.secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--gold);
  color: #5c4219;
  background: #fffaf0;
}

.button.velociti-site-link,
.button.light.velociti-site-link {
  border-color: rgba(var(--velociti-orange-rgb), 0.72);
  background: linear-gradient(135deg, var(--velociti-orange), var(--velociti-orange-bright));
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(var(--velociti-orange-rgb), 0.22);
}

.button.velociti-site-link:hover,
.button.velociti-site-link:focus-visible,
.button.light.velociti-site-link:hover,
.button.light.velociti-site-link:focus-visible {
  border-color: var(--velociti-orange-hot);
  background: var(--velociti-orange-bright);
  color: var(--ink);
}

.button.light {
  background: var(--gold-2);
  color: var(--ink);
}

.button.light:hover,
.button.light:focus-visible {
  background: var(--white);
}

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

.section {
  padding: clamp(3.35rem, 6.5vw, 5.8rem) 0;
}

.section.tight {
  padding: clamp(2.8rem, 6vw, 4.8rem) 0;
}

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

.section.white {
  background: var(--white);
}

.grid-bg {
  background-image:
    linear-gradient(rgba(23, 23, 23, 0.048) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 23, 0.048) 1px, transparent 1px);
  background-size: 34px 34px;
}

.section.dark.grid-bg {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: center;
  padding: clamp(4rem, 7vw, 7rem) 0 clamp(3rem, 6vw, 5.5rem);
}

.hero-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.75rem, 6.7vw, 5.55rem);
  max-width: 820px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.65rem);
  max-width: 760px;
}

h3 {
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
  line-height: 1.08;
}

p {
  margin: 0;
  color: var(--muted);
}

.lead {
  margin-top: 1.35rem;
  max-width: 720px;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  color: #524c44;
}

.dark p,
.dark .lead {
  color: rgba(255, 255, 255, 0.73);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  padding: 0.52rem 0.7rem;
  color: #3d372f;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.dark .pill {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  color: var(--gold-2);
}

.hero-visual {
  position: relative;
  min-height: clamp(420px, 56vw, 620px);
  display: grid;
  place-items: center;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(184, 147, 85, 0.33);
  border-radius: 999px;
}

.hero-visual::after {
  inset: 20%;
  border-color: rgba(36, 33, 29, 0.18);
}

.hero-visual img {
  position: relative;
  z-index: 2;
  max-height: 570px;
  object-fit: contain;
  filter: drop-shadow(0 34px 54px rgba(24, 21, 17, 0.16));
}

.signal-card {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 5%;
  width: min(315px, 76%);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.signal-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.signal-card p {
  font-size: 0.92rem;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head p:last-child {
  font-size: 1.08rem;
}

.about-process-head {
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

.about-process-head h2 {
  max-width: 980px;
}

.about-process-head p:last-child {
  max-width: 820px;
}

.artifact-section-head {
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

.artifact-section-head h2 {
  max-width: 1120px;
}

.artifact-section-head p:last-child {
  max-width: 760px;
  margin-left: auto;
}

.workflow-boundary-summary {
  min-width: 0;
}

.workflow-section-head {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: clamp(1.4rem, 3vw, 2.6rem);
}

.workflow-section-head h2 {
  max-width: 860px;
}

.workflow-boundary-summary > p {
  max-width: 720px;
  margin-bottom: 1rem;
  font-size: 1.08rem;
}

.boundary-mini-visual {
  display: grid;
  gap: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.72rem;
  box-shadow: 0 12px 38px rgba(24, 21, 17, 0.07);
}

.mini-path {
  display: grid;
  grid-template-columns: minmax(84px, 1fr) 26px minmax(98px, 1fr) 26px minmax(84px, 1fr) minmax(100px, auto);
  gap: 0.35rem;
  align-items: center;
}

.mini-path-external {
  grid-template-columns: minmax(98px, 1fr) 28px minmax(130px, 1.15fr) 28px minmax(90px, 1fr);
}

.mini-path span,
.mini-path strong {
  min-width: 0;
  border: 1px solid rgba(221, 215, 202, 0.96);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.42rem 0.55rem;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
}

.mini-path-local strong {
  border-color: rgba(36, 89, 71, 0.26);
  background: rgba(36, 89, 71, 0.1);
  color: var(--success);
}

.mini-path-external strong {
  border-color: rgba(123, 46, 46, 0.26);
  background: rgba(123, 46, 46, 0.08);
  color: var(--danger);
}

.mini-path i {
  position: relative;
  height: 2px;
  border-radius: 999px;
  background: rgba(36, 89, 71, 0.55);
}

.mini-path i::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--success);
  border-right: 2px solid var(--success);
  transform: translateY(-50%) rotate(45deg);
}

.mini-path-external i {
  background: repeating-linear-gradient(90deg, rgba(123, 46, 46, 0.5) 0 6px, transparent 6px 10px);
}

.mini-path-external i::after {
  width: 18px;
  height: 18px;
  right: 50%;
  border: 2px solid var(--danger);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  transform: translate(50%, -50%);
}

.mini-path-external i::before {
  content: "";
  position: absolute;
  right: 50%;
  top: 50%;
  z-index: 1;
  width: 14px;
  height: 2px;
  background: var(--danger);
  transform: translate(50%, -50%) rotate(-38deg);
}

.local-boundary-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) auto minmax(0, 0.88fr);
  gap: 0.8rem;
  align-items: stretch;
  margin: 0 0 clamp(1.5rem, 3vw, 2.35rem);
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(249, 248, 244, 0.7)),
    radial-gradient(circle at 22% 12%, rgba(36, 89, 71, 0.12), transparent 34%),
    radial-gradient(circle at 86% 16%, rgba(123, 46, 46, 0.1), transparent 30%);
  box-shadow: 0 18px 54px rgba(24, 21, 17, 0.08);
}

.local-boundary-visual.capability-model {
  grid-template-columns: 1fr;
}

.capability-model .boundary-panel-head strong {
  max-width: 460px;
}

.boundary-panel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(221, 215, 202, 0.95);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  padding: clamp(1rem, 1.8vw, 1.35rem);
}

.boundary-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(221, 215, 202, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(221, 215, 202, 0.28) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.55;
}

.boundary-panel > * {
  position: relative;
  z-index: 1;
}

.boundary-panel-local {
  border-color: rgba(36, 89, 71, 0.28);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(237, 247, 242, 0.86));
}

.boundary-panel-external {
  border-color: rgba(123, 46, 46, 0.24);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 239, 237, 0.82));
}

.boundary-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(221, 215, 202, 0.82);
}

.boundary-panel-head span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.boundary-panel-head strong {
  max-width: 260px;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.25;
  text-align: right;
}

.boundary-flow-map {
  display: grid;
  grid-template-columns: minmax(104px, 1fr) 34px minmax(104px, 1fr) 34px minmax(104px, 1fr) 34px minmax(104px, 1fr);
  gap: 0.45rem;
  align-items: center;
}

.boundary-node,
.external-cloud {
  min-width: 0;
  min-height: 124px;
  border: 1px solid rgba(221, 215, 202, 0.96);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  padding: 0.78rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

.boundary-node span,
.external-cloud span {
  display: inline-flex;
  margin-bottom: 0.52rem;
  border-radius: 999px;
  background: rgba(36, 89, 71, 0.1);
  color: var(--success);
  padding: 0.22rem 0.48rem;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.boundary-node strong,
.external-cloud strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.18;
}

.boundary-node small,
.external-cloud small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.sentinel-node {
  border-color: rgba(184, 147, 85, 0.55);
  background: rgba(255, 249, 234, 0.95);
}

.model-node,
.output-node {
  border-color: rgba(36, 89, 71, 0.34);
}

.boundary-arrow {
  position: relative;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(36, 89, 71, 0.35), rgba(36, 89, 71, 0.95));
}

.boundary-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 8px;
  height: 8px;
  border-top: 3px solid var(--success);
  border-right: 3px solid var(--success);
  transform: translateY(-50%) rotate(45deg);
}

.boundary-control-row,
.boundary-deny-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.95rem;
}

.boundary-control-row span,
.boundary-deny-row span {
  border: 1px solid rgba(36, 89, 71, 0.22);
  border-radius: 999px;
  background: rgba(36, 89, 71, 0.08);
  color: var(--success);
  padding: 0.38rem 0.58rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.boundary-vs {
  align-self: center;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(221, 215, 202, 0.95);
  border-radius: 999px;
  background: var(--white);
  color: var(--soft);
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(24, 21, 17, 0.08);
}

.external-flow-map {
  display: grid;
  grid-template-columns: minmax(108px, 1fr) 68px minmax(108px, 1fr);
  gap: 0.55rem;
  align-items: center;
}

.boundary-node.muted span,
.external-cloud span {
  background: rgba(123, 46, 46, 0.09);
  color: var(--danger);
}

.external-block-line {
  position: relative;
  height: 3px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, rgba(123, 46, 46, 0.5) 0 8px, transparent 8px 13px);
}

.external-block-line::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 32px;
  height: 32px;
  border: 2px solid var(--danger);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  transform: translate(-50%, -50%);
}

.external-block-line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 21px;
  height: 2px;
  background: var(--danger);
  transform: translate(-50%, -50%) rotate(-38deg);
}

.external-block-line span {
  position: absolute;
  left: 50%;
  top: calc(100% + 0.52rem);
  transform: translateX(-50%);
  color: var(--danger);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
}

.external-cloud {
  border-color: rgba(123, 46, 46, 0.24);
  background: rgba(255, 247, 245, 0.94);
}

.boundary-deny-row span {
  border-color: rgba(123, 46, 46, 0.2);
  background: rgba(123, 46, 46, 0.07);
  color: var(--danger);
}

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

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

.workflow-sector-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.78rem;
}

.card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  padding: clamp(1.15rem, 2.2vw, 1.65rem);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.45) inset;
}

.dark .card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: none;
}

.card h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.25rem, 1.9vw, 1.55rem);
}

.card p + p {
  margin-top: 0.8rem;
}

.card-link {
  display: inline-flex;
  margin-top: 1rem;
  color: #5c4219;
  font-weight: 900;
  text-decoration: none;
}

.card-link:hover,
.card-link:focus-visible {
  text-decoration: underline;
}

.icon-box {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: var(--ink);
  color: var(--gold-2);
  font-weight: 900;
}

.dark .icon-box {
  background: var(--gold-2);
  color: var(--ink);
}

.diagram {
  position: relative;
  border: 1px solid var(--line);
  background: var(--paper-2);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 3vw, 2rem);
  overflow: hidden;
}

.diagram::before {
  content: "";
  position: absolute;
  inset: 1.4rem;
  border: 1px solid rgba(184, 147, 85, 0.35);
  border-radius: 999px;
}

.diagram-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.diagram-node {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  border-radius: var(--radius);
  padding: 1rem;
}

.diagram-node strong {
  display: block;
  margin-bottom: 0.25rem;
}

.timeline {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.step {
  counter-increment: steps;
  position: relative;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.step::before {
  content: counter(steps);
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  margin-bottom: 0.85rem;
  background: var(--ink);
  color: var(--gold-2);
  font-size: 0.9rem;
  font-weight: 900;
}

.dark .step {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.065);
}

.dark .step::before {
  background: var(--gold-2);
  color: var(--ink);
}

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

.check-list li {
  position: relative;
  padding-left: 1.55rem;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  background: var(--gold);
}

.dark .check-list li {
  color: rgba(255, 255, 255, 0.72);
}

.feature-list {
  margin: 1.1rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.feature-list li {
  margin-bottom: 0.55rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.article {
  max-width: 820px;
}

.article h2 {
  margin-top: 2.2rem;
  margin-bottom: 0.8rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.article h3 {
  margin-top: 1.55rem;
  margin-bottom: 0.5rem;
}

.article p,
.article li {
  font-size: 1.04rem;
}

.article p + p {
  margin-top: 1rem;
}

.article ul,
.article ol {
  color: var(--muted);
}

.sidebar {
  position: sticky;
  top: 100px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.sidebar a {
  color: #5c4219;
  font-weight: 800;
  text-decoration: none;
}

.sidebar a:hover,
.sidebar a:focus-visible {
  text-decoration: underline;
}

.page-hero {
  padding: clamp(4rem, 7vw, 7rem) 0 clamp(2.8rem, 5vw, 4.2rem);
}

.page-hero h1 {
  max-width: 920px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
  color: var(--soft);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: #6a4b18;
  text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  text-decoration: underline;
}

.cta-band {
  border: 1px solid rgba(184, 147, 85, 0.42);
  background:
    linear-gradient(135deg, rgba(184, 147, 85, 0.13), transparent 42%),
    var(--stone);
  color: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 4vw, 2.4rem);
}

.cta-band p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.72);
}

.form-card {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}

.fillout-card {
  display: grid;
  gap: 1rem;
}

.fillout-embed {
  width: 100%;
  min-height: 680px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fffdfa;
  overflow: hidden;
}

.fillout-iframe {
  display: block;
  width: 100%;
  min-height: 680px;
  height: min(78vh, 780px);
  border: 0;
  background: #fffdfa;
}

.direct-contact-panel {
  display: grid;
  gap: 0.82rem;
  margin-top: 1.25rem;
  border-top: 1px solid rgba(221, 215, 202, 0.95);
  border-bottom: 1px solid rgba(221, 215, 202, 0.95);
  padding: 1rem 0;
}

.direct-contact-title {
  margin: 0;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.direct-contact-list {
  display: grid;
  gap: 0;
}

.direct-contact-list p {
  display: grid;
  grid-template-columns: minmax(78px, 0.26fr) minmax(0, 1fr);
  gap: 1rem;
  margin: 0;
  border-top: 1px solid rgba(221, 215, 202, 0.72);
  padding: 0.62rem 0;
  color: var(--muted);
}

.direct-contact-list p:first-child {
  border-top: 0;
  padding-top: 0;
}

.direct-contact-list span {
  color: var(--soft);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.direct-contact-list a {
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.direct-contact-list a:hover,
.direct-contact-list a:focus-visible {
  color: var(--gold);
}

.direct-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}

.direct-contact-actions a {
  border: 1px solid rgba(221, 215, 202, 0.95);
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.78);
  color: var(--ink);
  padding: 0.44rem 0.72rem;
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.direct-contact-actions a:hover,
.direct-contact-actions a:focus-visible {
  border-color: rgba(184, 147, 85, 0.64);
  color: var(--gold);
}

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

.field {
  display: grid;
  gap: 0.4rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdfa;
  color: var(--ink);
  padding: 0.78rem 0.85rem;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(184, 147, 85, 0.24);
  border-color: var(--gold);
}

.form-note {
  margin-top: 1rem;
  font-size: 0.92rem;
}

.resource-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.resource-meta span {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0.35rem 0.55rem;
  color: var(--soft);
  font-size: 0.84rem;
  font-weight: 800;
}

.faq {
  display: grid;
  gap: 0.9rem;
}

.faq details {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}

.faq summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.faq p {
  margin-top: 0.7rem;
}

.homepage-faq {
  border-top: 1px solid rgba(221, 215, 202, 0.72);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 104px;
}

.faq-accordion details {
  padding: 0;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(24, 21, 17, 0.045);
}

.faq-accordion summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.05rem 1.15rem;
  list-style: none;
}

.faq-accordion summary::-webkit-details-marker {
  display: none;
}

.faq-accordion summary::after {
  content: "Read more";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184, 147, 85, 0.38);
  border-radius: 999px;
  background: rgba(184, 147, 85, 0.1);
  color: #6e4d15;
  padding: 0.32rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.faq-accordion details[open] summary::after {
  content: "Close";
  border-color: rgba(36, 89, 71, 0.28);
  background: rgba(36, 89, 71, 0.08);
  color: var(--success);
}

.faq-accordion p {
  margin: 0;
  border-top: 1px solid rgba(221, 215, 202, 0.72);
  padding: 0.9rem 1.15rem 1.1rem;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns:
    minmax(260px, 1.15fr)
    minmax(110px, 0.42fr)
    minmax(150px, 0.56fr)
    minmax(110px, 0.42fr)
    minmax(320px, 0.95fr);
  gap: clamp(1.25rem, 2vw, 2rem);
  align-items: start;
}

.footer-grid:has(> :nth-child(4):last-child) {
  grid-template-columns:
    minmax(260px, 1.1fr)
    minmax(140px, 0.5fr)
    minmax(140px, 0.5fr)
    minmax(330px, 1fr);
}

.footer-grid h2,
.footer-grid h3 {
  font-family: inherit;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid ul {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
}

.footer-grid li {
  margin-bottom: 0.45rem;
}

.footer-grid a {
  color: var(--muted);
  text-decoration: none;
  overflow-wrap: break-word;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--gold);
}

.footer-grid > div:last-child {
  min-width: 0;
  border: 1px solid rgba(221, 215, 202, 0.86);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(184, 147, 85, 0.08), rgba(255, 255, 255, 0.7)),
    var(--white);
  padding: 1rem;
}

.footer-contact-list {
  display: grid;
  gap: 0.62rem;
}

.footer-contact-list li {
  display: grid;
  gap: 0.14rem;
  margin: 0;
  border-bottom: 1px solid rgba(221, 215, 202, 0.76);
  padding-bottom: 0.62rem;
}

.footer-contact-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.footer-contact-list li::before {
  color: var(--soft);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-contact-list li:nth-child(1)::before {
  content: "Phone";
}

.footer-contact-list li:nth-child(2)::before {
  content: "Email";
}

.footer-contact-list a {
  display: inline-block;
  max-width: 100%;
  color: var(--ink);
  font-weight: 650;
  line-height: 1.28;
  overflow-wrap: anywhere;
  word-break: normal;
}

.footer-contact-list li:nth-child(2) a {
  font-size: 0.82rem;
  letter-spacing: 0;
  white-space: nowrap;
}

.footer-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-top: 0.85rem;
}

.footer-quick-actions a {
  border: 1px solid rgba(221, 215, 202, 0.95);
  border-radius: 999px;
  padding: 0.34rem 0.56rem;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--gold);
}

.footer-contact-links {
  overflow-wrap: anywhere;
}

.notice {
  border: 1px solid rgba(184, 147, 85, 0.46);
  background: rgba(184, 147, 85, 0.1);
  border-radius: var(--radius);
  padding: 1rem;
}

.pilot-hero {
  position: relative;
  min-height: clamp(660px, calc(100svh - 66px), 760px);
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(1.45rem, 2.6vw, 3rem) 0 clamp(2.3rem, 4vw, 3.25rem);
}

.pilot-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 32%;
  background: linear-gradient(to top, var(--paper), rgba(249, 248, 244, 0));
  pointer-events: none;
}

.pilot-hero-copy {
  position: relative;
  z-index: 3;
  max-width: 440px;
}

.pilot-hero-copy h1 {
  max-width: 440px;
  font-size: clamp(2.35rem, 3.55vw, 3.42rem);
}

.pilot-hero .lead,
.pilot-hero .trust-strip {
  max-width: 420px;
}

.pilot-hero .lead {
  font-size: clamp(0.98rem, 1.18vw, 1.12rem);
  line-height: 1.5;
}

.pilot-hero-visual {
  position: absolute;
  z-index: 1;
  top: clamp(3.75rem, 9vh, 5rem);
  right: clamp(0.85rem, 1.8vw, 1.8rem);
  bottom: auto;
  width: min(790px, 53vw);
  opacity: 0.98;
  cursor: pointer;
}

@media (max-width: 1120px) {
  .pilot-hero {
    min-height: auto;
    overflow: hidden;
    padding-top: clamp(2rem, 4vw, 3.4rem);
  }

  .pilot-hero-visual {
    position: relative;
    top: auto;
    right: auto;
    width: min(940px, calc(100vw - 2rem));
    margin: clamp(2rem, 4vw, 3rem) auto 0;
  }
}

@media (max-width: 760px) {
  .pilot-hero {
    padding-bottom: clamp(2rem, 7vw, 3rem);
  }

  .pilot-hero-visual {
    display: none;
  }
}

.product-shell {
  border: 1px solid rgba(184, 147, 85, 0.34);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(241, 239, 231, 0.92)),
    var(--white);
  box-shadow: 0 34px 90px rgba(24, 21, 17, 0.16);
  overflow: hidden;
}

.product-topbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 0.86rem 1rem;
  background: rgba(255, 255, 255, 0.74);
}

.window-dots {
  display: inline-flex;
  gap: 0.35rem;
}

.window-dots span,
.window-dots i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--line);
}

.window-dots span:nth-child(1),
.window-dots i:nth-child(1) {
  background: #c76f5f;
}

.window-dots span:nth-child(2),
.window-dots i:nth-child(2) {
  background: var(--gold);
}

.window-dots span:nth-child(3),
.window-dots i:nth-child(3) {
  background: var(--success);
}

.product-title {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 0;
}

.product-sidebar {
  border-right: 1px solid var(--line);
  background: rgba(36, 33, 29, 0.035);
  padding: 1rem;
}

.product-main {
  padding: 1rem;
}

.dashboard-panel {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  padding: 0.95rem;
}

.dashboard-panel + .dashboard-panel {
  margin-top: 0.75rem;
}

.dashboard-panel h3,
.dashboard-panel h4 {
  margin: 0 0 0.55rem;
  font-family: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.dashboard-panel p {
  font-size: 0.9rem;
}

.source-list-ui,
.audit-list {
  display: grid;
  gap: 0.48rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.source-list-ui li,
.audit-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  border: 1px solid rgba(221, 215, 202, 0.78);
  border-radius: 8px;
  background: rgba(249, 248, 244, 0.84);
  padding: 0.55rem 0.62rem;
  color: #4a443d;
  font-size: 0.82rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: #4f473c;
  padding: 0.24rem 0.5rem;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.badge.green {
  border-color: rgba(36, 89, 71, 0.24);
  background: rgba(36, 89, 71, 0.08);
  color: var(--success);
}

.badge.gold {
  border-color: rgba(184, 147, 85, 0.34);
  background: rgba(184, 147, 85, 0.1);
  color: #6e4d15;
}

.badge.red {
  border-color: rgba(123, 46, 46, 0.24);
  background: rgba(123, 46, 46, 0.08);
  color: var(--danger);
}

.workflow-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  padding: 1rem;
}

.workflow-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.workflow-output {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.output-row {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 0.75rem;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 0.65rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.output-row strong {
  color: var(--ink);
}

.approval-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.metric-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1rem;
}

.metric-card strong {
  display: block;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  line-height: 1;
}

.metric-card span {
  display: block;
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.demo-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 1rem;
  align-items: start;
}

.scenario-menu {
  display: grid;
  gap: 0.7rem;
}

.scenario-button {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1rem;
  text-align: left;
  color: var(--ink);
}

.scenario-button strong {
  display: block;
}

.scenario-button span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.scenario-button.is-active {
  border-color: var(--gold);
  background: rgba(184, 147, 85, 0.1);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.artifact-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
}

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

.detail-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1rem;
}

.detail-card strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--ink);
  font-size: 1.05rem;
}

.detail-card span {
  display: block;
  color: var(--muted);
}

.artifact {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1rem;
}

.artifact strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.audit-evidence-visual {
  margin: 0 0 clamp(1.25rem, 2.4vw, 2rem);
}

.audit-evidence-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.78fr);
  gap: 1rem;
  padding: 1rem;
}

.audit-trail-panel,
.audit-inspection-panel {
  border: 1px solid rgba(221, 215, 202, 0.88);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.76);
  padding: clamp(0.9rem, 2vw, 1.15rem);
  min-width: 0;
}

.audit-trail-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  border-bottom: 1px solid rgba(221, 215, 202, 0.88);
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
}

.audit-trail-head span,
.audit-inspection-panel .eyebrow {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.audit-trail-head strong {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.25;
  text-align: right;
}

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

.audit-trail-list li {
  display: grid;
  grid-template-columns: 58px minmax(124px, 0.38fr) minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: center;
  border: 1px solid rgba(221, 215, 202, 0.74);
  border-left: 4px solid rgba(184, 147, 85, 0.82);
  border-radius: 10px;
  background: rgba(249, 248, 244, 0.8);
  padding: 0.62rem 0.72rem;
  min-width: 0;
  animation: auditRowIn 0.48s ease both;
}

.audit-trail-list li:nth-child(2) {
  animation-delay: 0.06s;
}

.audit-trail-list li:nth-child(3) {
  animation-delay: 0.12s;
}

.audit-trail-list li:nth-child(4) {
  animation-delay: 0.18s;
}

.audit-trail-list li:nth-child(5) {
  animation-delay: 0.24s;
}

.audit-trail-list li:nth-child(6) {
  animation-delay: 0.3s;
}

.audit-trail-list time {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.audit-trail-list strong {
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.24;
}

.audit-trail-list span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.38;
  min-width: 0;
  overflow-wrap: anywhere;
}

.audit-trail-list em {
  justify-self: end;
  font-style: normal;
}

.audit-inspection-panel {
  background:
    linear-gradient(140deg, rgba(36, 89, 71, 0.07), transparent 58%),
    rgba(255, 255, 255, 0.82);
}

.audit-inspection-panel h3 {
  margin: 0.35rem 0 0.55rem;
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  line-height: 0.98;
}

.audit-inspection-panel p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.inspection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 1rem;
}

.inspection-grid span {
  display: block;
  border: 1px solid rgba(221, 215, 202, 0.82);
  border-radius: 10px;
  background: rgba(249, 248, 244, 0.78);
  padding: 0.72rem;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.32;
  min-width: 0;
}

.inspection-grid strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ink);
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

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

.risk-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.risk-table th,
.risk-table td {
  border-bottom: 1px solid var(--line);
  padding: 0.9rem;
  text-align: left;
  vertical-align: top;
}

.risk-table th {
  background: var(--stone);
  color: var(--white);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.risk-table tr:last-child td {
  border-bottom: 0;
}

.risk-table td {
  color: var(--muted);
}

.risk-table strong {
  color: var(--ink);
}

.fit-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--stone);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.fit-card {
  background: var(--stone);
  padding: 1.25rem;
}

.fit-card strong {
  display: block;
  color: var(--gold-2);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fit-card span {
  display: block;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.source-quote {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(249, 248, 244, 0.92), rgba(255, 255, 255, 0.96));
  padding: clamp(1.1rem, 2vw, 1.5rem);
}

.source-quote.compact {
  margin-top: 1.25rem;
}

.source-quote.proof-quote {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.source-quote blockquote {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 850;
  line-height: 1.08;
}

.quote-fit {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.source-quote.compact blockquote {
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
}

.source-quote figcaption {
  color: var(--soft);
  font-size: 0.85rem;
  font-weight: 750;
}

.workflow-sector {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 220px;
  flex-direction: column;
  padding: clamp(1rem, 1.45vw, 1.18rem);
}

.workflow-sector::after {
  content: "";
  position: absolute;
  inset: auto 1rem 0 1rem;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(184, 147, 85, 0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.workflow-sector:hover::after,
.workflow-sector:focus-within::after {
  transform: scaleX(1);
}

.workflow-sector .icon-box {
  width: 34px;
  height: 34px;
  margin-bottom: 0.78rem;
  font-size: 0.86rem;
}

.workflow-sector h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.1rem, 1.45vw, 1.32rem);
  line-height: 1.05;
}

.workflow-sector p {
  font-size: 0.9rem;
  line-height: 1.45;
}

.workflow-sector .card-link {
  margin-top: auto;
  padding-top: 0.8rem;
  font-size: 0.88rem;
}

.demo-section {
  position: relative;
  overflow: hidden;
}

.demo-section .section-head {
  align-items: start;
}

.demo-section .section-head h2 {
  font-size: clamp(2.35rem, 5.3vw, 4.25rem);
}

.workflow-tabs {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.process-demo {
  grid-template-columns: minmax(270px, 0.5fr) minmax(0, 1fr);
}

.process-menu {
  position: sticky;
  top: 100px;
  align-self: start;
}

.demo-product {
  min-height: 100%;
}

.claim-demo {
  min-height: 640px;
}

.scenario-panel {
  padding: 1.2rem;
}

.scenario-panel h3 {
  margin-top: 0.55rem;
}

.scenario-panel > p {
  margin-top: 0.6rem;
  max-width: 720px;
  font-size: 1.03rem;
}

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

.demo-targets {
  margin-top: 1.25rem;
}

.demo-actions {
  margin-top: 1.2rem;
}

.demo-page-prompt {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: clamp(1rem, 2.5vw, 1.6rem);
  align-items: center;
  border: 1px solid rgba(184, 147, 85, 0.26);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(249, 248, 244, 0.78)),
    repeating-linear-gradient(90deg, rgba(184, 147, 85, 0.08) 0 1px, transparent 1px 34px);
  padding: clamp(1rem, 2.4vw, 1.6rem);
  box-shadow: 0 22px 70px rgba(24, 21, 17, 0.08);
}

.demo-page-prompt h3 {
  max-width: 720px;
  margin-top: 0.75rem;
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  line-height: 1.04;
}

.demo-page-prompt p {
  max-width: 760px;
  margin-top: 0.62rem;
}

.demo-page-prompt .actions {
  grid-column: 1 / -1;
  margin-top: 0;
}

.demo-page-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.8rem;
}

.demo-page-flow span,
.demo-page-flow strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 0.32rem 0.68rem;
  font-size: 0.76rem;
  font-weight: 900;
}

.demo-page-flow strong {
  border-color: rgba(36, 89, 71, 0.28);
  background: rgba(36, 89, 71, 0.08);
  color: var(--success);
}

.demo-page-flow i {
  align-self: center;
  width: 18px;
  height: 1px;
  background: rgba(184, 147, 85, 0.6);
}

.demo-step-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.7rem;
}

.demo-step-heading h3 {
  margin: 0;
}

.hardware-grid,
.model-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.hardware-card,
.model-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.84);
  padding: 0.95rem;
}

.hardware-card strong,
.hardware-card span,
.hardware-card em,
.model-card strong {
  display: block;
}

.hardware-card span,
.model-card p {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.hardware-card em {
  margin-top: 0.75rem;
  color: var(--gold);
  font-style: normal;
  font-weight: 900;
}

.model-card {
  position: relative;
  overflow: hidden;
}

.model-card.is-selected {
  border-color: rgba(36, 89, 71, 0.35);
  background: linear-gradient(135deg, rgba(36, 89, 71, 0.08), rgba(255, 255, 255, 0.9));
}

.model-card h3,
.model-card h4 {
  margin-top: 0.75rem;
  font-size: 1.45rem;
}

.model-card strong {
  margin-top: 0.9rem;
  color: var(--success);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.network-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr) 42px minmax(0, 1fr);
  gap: 0.5rem;
  align-items: center;
  margin-top: 1rem;
}

.network-map span {
  border: 1px solid rgba(184, 147, 85, 0.34);
  border-radius: 999px;
  background: rgba(184, 147, 85, 0.09);
  padding: 0.65rem 0.75rem;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
}

.network-map i {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, rgba(184, 147, 85, 0.2), var(--gold));
}

.file-intake-list,
.search-console,
.system-stack {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.file-intake-list div,
.search-result,
.system-stack div {
  display: grid;
  gap: 0.25rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.84);
  padding: 0.85rem;
}

.file-intake-list div {
  grid-template-columns: minmax(0, 1.2fr) minmax(120px, 0.55fr) auto;
  align-items: center;
}

.file-intake-list span,
.search-result span,
.system-stack span {
  color: var(--muted);
  font-size: 0.9rem;
}

.file-intake-list strong {
  font-size: 0.86rem;
}

.file-intake-list em {
  border-radius: 999px;
  background: rgba(36, 89, 71, 0.08);
  color: var(--success);
  padding: 0.24rem 0.48rem;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.claim-table-wrap {
  max-width: 100%;
  margin-top: 1rem;
  overflow-x: auto;
}

.claim-table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  overflow: hidden;
}

.claim-table th,
.claim-table td {
  border-bottom: 1px solid var(--line);
  padding: 0.75rem;
  text-align: left;
  vertical-align: top;
  font-size: 0.88rem;
}

.claim-table th {
  background: rgba(36, 33, 29, 0.045);
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.claim-table tr:last-child td {
  border-bottom: 0;
}

.search-bar {
  border: 1px solid rgba(184, 147, 85, 0.42);
  border-radius: 999px;
  background: rgba(184, 147, 85, 0.1);
  color: var(--ink);
  padding: 0.78rem 0.95rem;
  font-weight: 900;
}

.local-checks {
  margin-top: 1rem;
}

.demo-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.demo-hero-grid h1 {
  font-size: clamp(2.8rem, 6.1vw, 5.15rem);
}

.mini-system-card {
  align-self: stretch;
}

.system-stack {
  padding: 1rem;
}

.demo-walkthrough {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: start;
}

.demo-chapter-nav {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 0.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  padding: 1rem;
}

.demo-chapter-nav a {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  border-radius: 10px;
  color: var(--muted);
  padding: 0.58rem 0.65rem;
  text-decoration: none;
}

.demo-chapter-nav a:hover,
.demo-chapter-nav a:focus-visible {
  background: rgba(184, 147, 85, 0.1);
  color: var(--ink);
}

.demo-chapter-nav span {
  color: var(--gold);
  font-weight: 900;
}

.demo-chapters {
  display: grid;
  gap: 1rem;
}

.demo-chapter {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  padding: clamp(1.1rem, 2.6vw, 1.7rem);
}

.demo-chapter h2 {
  margin-top: 0.65rem;
}

.chapter-kicker {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chapter-kicker span,
.chapter-kicker strong {
  color: var(--gold);
}

.audit-output {
  margin-top: 1rem;
}

.claim-sim {
  display: grid;
  grid-template-columns: minmax(220px, 0.26fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.claim-sim-full {
  grid-template-columns: minmax(260px, 0.28fr) minmax(0, 1fr);
}

.claim-sim-rail {
  position: sticky;
  top: 98px;
  align-self: start;
  display: grid;
  gap: 0.62rem;
}

.claim-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.2rem 0.72rem;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  padding: 0.82rem;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.claim-step::after {
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(184, 147, 85, 0));
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.claim-step span {
  grid-row: 1 / 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--ink);
  color: var(--gold-2);
  font-weight: 900;
}

.claim-step strong,
.claim-step small {
  min-width: 0;
}

.claim-step strong {
  font-size: 0.96rem;
}

.claim-step small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.claim-step:hover,
.claim-step:focus-visible,
.claim-step.is-active {
  border-color: rgba(184, 147, 85, 0.6);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(24, 21, 17, 0.08);
  transform: translateY(-1px);
}

.claim-step.is-active::after {
  opacity: 1;
}

.claim-sim-app {
  min-width: 0;
}

.claim-sim-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.24fr);
  min-height: 620px;
}

.claim-workspace {
  min-width: 0;
  padding: clamp(1rem, 2vw, 1.35rem);
}

.claim-sim *,
.velociti-real-shell * {
  min-width: 0;
}

.claim-workspace h3,
.claim-workspace h4 {
  margin: 0;
}

.sim-screen-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: start;
  margin-bottom: 1rem;
}

.sim-screen-head p {
  margin-top: 0.42rem;
  max-width: 680px;
  font-size: 0.95rem;
}

.sim-title {
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
}

.sim-meta {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
}

.sim-canvas {
  position: relative;
  border: 1px solid rgba(221, 215, 202, 0.82);
  border-radius: 14px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
    repeating-linear-gradient(90deg, rgba(184, 147, 85, 0.08) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(0deg, rgba(184, 147, 85, 0.07) 0 1px, transparent 1px 34px);
  padding: clamp(0.9rem, 2vw, 1.25rem);
  overflow: hidden;
}

.sim-canvas::before {
  position: absolute;
  inset: -30% auto auto 45%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(184, 147, 85, 0.16), transparent 64%);
  content: "";
  pointer-events: none;
}

.sim-budget-layout,
.sim-search-layout,
.sim-approval-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.6fr);
  gap: 1rem;
  align-items: stretch;
}

.sim-budget-meter,
.sim-workbook,
.sim-review-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  padding: 1rem;
}

.budget-track {
  height: 14px;
  border-radius: 999px;
  background: rgba(36, 33, 29, 0.08);
  overflow: hidden;
}

.budget-fill {
  width: 86%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--success), var(--gold));
  transform-origin: left;
}

.budget-amount {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.72rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.sim-node-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1rem;
}

.sim-node,
.sim-model-card,
.sim-file-card,
.sim-result-card,
.sim-check-item,
.sim-log-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  padding: 0.82rem;
}

.sim-node strong,
.sim-model-card strong,
.sim-file-card strong,
.sim-result-card strong,
.sim-check-item strong,
.sim-log-card strong {
  display: block;
  color: var(--ink);
}

.sim-node span,
.sim-model-card span,
.sim-file-card span,
.sim-result-card span,
.sim-check-item span,
.sim-log-card span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.node-icon,
.model-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 0.62rem;
  border-radius: 10px;
  background: var(--ink);
  color: var(--gold-2);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.sim-model-grid,
.sim-intake-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.model-selector {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.55fr);
  gap: 1rem;
}

.model-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.model-option {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  padding: 0.82rem;
  text-align: left;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.model-option strong,
.model-option small {
  display: block;
}

.model-option small {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.model-option.is-active,
.model-option:hover,
.model-option:focus-visible {
  border-color: rgba(36, 89, 71, 0.42);
  background: linear-gradient(135deg, rgba(36, 89, 71, 0.1), rgba(255, 255, 255, 0.92));
  box-shadow: 0 16px 40px rgba(24, 21, 17, 0.08);
  transform: translateY(-1px);
}

.model-option.is-blocked {
  border-color: rgba(123, 46, 46, 0.24);
  background: rgba(123, 46, 46, 0.05);
}

.model-option.is-blocked .model-icon {
  background: var(--danger);
  color: var(--white);
}

.model-detail-card {
  border: 1px solid rgba(184, 147, 85, 0.34);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem;
}

.model-detail-card h4 {
  margin: 0.65rem 0 0;
  color: var(--ink);
  font-size: 1.18rem;
}

.model-detail-card p {
  margin-top: 0.42rem;
  font-size: 0.9rem;
}

.model-spec-list {
  display: grid;
  gap: 0.42rem;
  margin-top: 0.85rem;
}

.model-spec-list span {
  border-left: 3px solid var(--gold);
  background: rgba(249, 248, 244, 0.82);
  color: var(--muted);
  padding: 0.38rem 0.52rem;
  font-size: 0.82rem;
}

.sim-model-card.is-primary {
  border-color: rgba(36, 89, 71, 0.35);
  background: linear-gradient(135deg, rgba(36, 89, 71, 0.1), rgba(255, 255, 255, 0.92));
}

.sim-model-card.is-blocked {
  border-color: rgba(123, 46, 46, 0.24);
  background: rgba(123, 46, 46, 0.06);
}

.sim-file-card {
  min-height: 110px;
}

.sim-file-card em {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.55rem;
  border-radius: 999px;
  background: rgba(36, 89, 71, 0.08);
  color: var(--success);
  padding: 0.25rem 0.5rem;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.sim-file-card.is-warning em {
  background: rgba(184, 147, 85, 0.12);
  color: #6e4d15;
}

.ocr-workbench {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 0.78fr) minmax(0, 1fr);
  gap: 1rem;
}

.receipt-mock {
  position: relative;
  min-height: 285px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(36, 33, 29, 0.035) 1px, transparent 1px),
    linear-gradient(var(--white), rgba(249, 248, 244, 0.92));
  background-size: 18px 18px, auto;
  padding: 1rem;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(24, 21, 17, 0.08);
}

.receipt-top,
.receipt-line,
.receipt-total {
  display: flex;
  justify-content: space-between;
  gap: 0.85rem;
  border-bottom: 1px dashed rgba(98, 93, 85, 0.34);
  padding: 0.55rem 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.receipt-top {
  display: grid;
  border-bottom-style: solid;
  color: var(--ink);
  text-align: center;
}

.receipt-total {
  border-bottom: 0;
  color: var(--ink);
  font-weight: 900;
}

.scan-line {
  position: absolute;
  left: 0.65rem;
  right: 0.65rem;
  top: 0.8rem;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(36, 89, 71, 0), rgba(36, 89, 71, 0.22), rgba(36, 89, 71, 0));
  animation: ocrScan 2.1s ease-in-out infinite;
}

.ocr-output {
  display: grid;
  align-content: start;
  gap: 0.62rem;
}

.ocr-status {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.ocr-field {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  padding: 0.72rem;
  animation: simRise 480ms ease both;
}

.ocr-field:nth-child(3) {
  animation-delay: 80ms;
}

.ocr-field:nth-child(4) {
  animation-delay: 160ms;
}

.ocr-field:nth-child(5) {
  animation-delay: 240ms;
}

.ocr-field strong {
  display: block;
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ocr-field span {
  display: block;
  margin-top: 0.22rem;
  color: var(--muted);
}

.sim-intake-grid.compact {
  grid-column: 1 / -1;
}

.sim-table-wrap {
  overflow-x: auto;
}

.sim-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  overflow: hidden;
}

.sim-table th,
.sim-table td {
  border-bottom: 1px solid var(--line);
  padding: 0.68rem;
  text-align: left;
  vertical-align: top;
  font-size: 0.86rem;
}

.sim-table th {
  background: rgba(36, 33, 29, 0.045);
  color: var(--ink);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sim-table tr:last-child td {
  border-bottom: 0;
}

.confidence {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(36, 89, 71, 0.08);
  color: var(--success);
  padding: 0.24rem 0.45rem;
  font-size: 0.72rem;
  font-weight: 900;
}

.confidence.warn {
  background: rgba(184, 147, 85, 0.12);
  color: #6e4d15;
}

.excel-sheet {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  overflow: hidden;
}

.excel-row {
  display: grid;
  grid-template-columns: minmax(82px, 1.08fr) minmax(48px, 0.62fr) minmax(52px, 0.62fr) minmax(44px, 0.54fr) minmax(86px, 1.02fr) minmax(48px, 0.52fr) minmax(74px, 0.82fr) minmax(48px, 0.56fr) minmax(54px, 0.62fr);
  border-bottom: 1px solid var(--line);
}

.excel-row:last-child {
  border-bottom: 0;
}

.excel-row span {
  min-width: 0;
  border-right: 1px solid rgba(221, 215, 202, 0.74);
  padding: 0.42rem 0.36rem;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.excel-row span:last-child {
  border-right: 0;
}

.excel-head span {
  background: rgba(36, 33, 29, 0.045);
  color: var(--ink);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sim-search-box {
  border: 1px solid rgba(184, 147, 85, 0.4);
  border-radius: 999px;
  background: rgba(184, 147, 85, 0.1);
  color: var(--ink);
  padding: 0.8rem 1rem;
  font-weight: 900;
}

.typed-query {
  display: inline-block;
  max-width: 100%;
  overflow: visible;
  vertical-align: bottom;
  white-space: normal;
}

.search-query-stack {
  display: grid;
  gap: 0.4rem;
  margin-top: 0.65rem;
}

.search-query-stack span {
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  padding: 0.45rem 0.6rem;
  font-size: 0.84rem;
  animation: simRise 480ms ease both;
}

.search-query-stack span:nth-child(2) {
  animation-delay: 120ms;
}

.search-query-stack span:nth-child(3) {
  animation-delay: 240ms;
}

.sim-results {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.8rem;
}

.sim-workbook {
  display: grid;
  gap: 0.55rem;
}

.workbook-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.5rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.workbook-row.is-highlight {
  color: var(--ink);
  font-weight: 900;
}

.sim-approval-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(240px, 0.6fr);
}

.sim-checklist {
  display: grid;
  gap: 0.65rem;
}

.sim-check-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.sim-check-item i {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--success);
  color: var(--white);
  font-style: normal;
  font-weight: 900;
}

.sim-export-state {
  margin-top: 1rem;
  border: 1px solid rgba(36, 89, 71, 0.24);
  border-radius: 12px;
  background: rgba(36, 89, 71, 0.08);
  padding: 1rem;
}

.sim-export-state strong,
.sim-export-state span {
  display: block;
}

.review-queue {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(230px, 0.54fr);
  gap: 1rem;
}

.review-case,
.agent-note,
.mini-review-list {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
}

.review-case {
  padding: 1rem;
}

.review-case-head,
.review-actions,
.review-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

.review-case-head {
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.review-case-head .badge {
  max-width: 100%;
}

.review-case h4 {
  font-size: 1.25rem;
}

.review-case p {
  margin-top: 0.35rem;
  font-size: 0.92rem;
}

.review-facts {
  margin-top: 0.85rem;
}

.review-facts span {
  border: 1px solid rgba(221, 215, 202, 0.9);
  border-radius: 10px;
  background: rgba(249, 248, 244, 0.82);
  padding: 0.55rem 0.68rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.review-facts strong {
  display: block;
  color: var(--ink);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.agent-note {
  display: grid;
  gap: 0.25rem;
  margin-top: 0.85rem;
  padding: 0.78rem;
}

.agent-note strong {
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.agent-note span {
  color: var(--muted);
  font-size: 0.88rem;
}

.review-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.85rem;
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
}

.review-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  padding: 0.52rem 0.5rem;
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

.review-actions button:first-child,
.review-actions button.is-selected:first-child {
  border-color: rgba(36, 89, 71, 0.3);
  background: var(--success);
  color: var(--white);
}

.review-actions button:nth-child(2).is-selected {
  border-color: rgba(184, 147, 85, 0.4);
  background: rgba(184, 147, 85, 0.14);
  color: #6e4d15;
}

.review-actions button:nth-child(3).is-selected {
  border-color: rgba(123, 46, 46, 0.28);
  background: rgba(123, 46, 46, 0.09);
  color: var(--danger);
}

.review-queue.is-approve .sim-export-state {
  border-color: rgba(36, 89, 71, 0.3);
  background: rgba(36, 89, 71, 0.1);
}

.review-queue.is-edit .sim-export-state {
  border-color: rgba(184, 147, 85, 0.36);
  background: rgba(184, 147, 85, 0.12);
}

.review-queue.is-reject .sim-export-state {
  border-color: rgba(123, 46, 46, 0.28);
  background: rgba(123, 46, 46, 0.08);
}

.mini-review-list {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.85rem;
  padding: 0.72rem;
}

.mini-review-list span {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.4rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.mini-review-list span:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.mini-review-list em {
  color: var(--gold);
  font-style: normal;
  font-weight: 900;
}

.claim-status {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  border-left: 1px solid var(--line);
  background: rgba(36, 33, 29, 0.035);
  padding: 1rem;
}

.claim-progress {
  height: 8px;
  border-radius: 999px;
  background: rgba(36, 33, 29, 0.08);
  overflow: hidden;
}

.claim-progress span {
  display: block;
  width: 16.66%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--success));
  transition: width 260ms ease;
}

.claim-status-card,
.claim-audit {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  padding: 0.72rem;
}

.claim-status-card strong,
.claim-audit strong {
  display: block;
  color: var(--ink);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.claim-status-card span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.claim-audit ul {
  display: grid;
  gap: 0.46rem;
  margin: 0.65rem 0 0;
  padding: 0;
  list-style: none;
}

.claim-audit li {
  border-left: 3px solid rgba(184, 147, 85, 0.7);
  padding-left: 0.55rem;
  color: var(--muted);
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}

.claim-sim.is-animating .budget-fill {
  animation: simGrow 520ms ease both;
}

.claim-sim.is-animating .sim-model-card.is-primary {
  animation: simPulse 620ms ease both;
}

.claim-sim.is-animating[data-active-step="intake"] .sim-file-card,
.claim-sim.is-animating[data-active-step="search"] .sim-result-card,
.claim-sim.is-animating[data-active-step="approval"] .sim-check-item {
  animation: simRise 420ms ease both;
}

.claim-sim.is-animating[data-active-step="intake"] .sim-file-card:nth-child(2),
.claim-sim.is-animating[data-active-step="search"] .sim-result-card:nth-child(2),
.claim-sim.is-animating[data-active-step="approval"] .sim-check-item:nth-child(2) {
  animation-delay: 80ms;
}

.claim-sim.is-animating[data-active-step="intake"] .sim-file-card:nth-child(3),
.claim-sim.is-animating[data-active-step="search"] .sim-result-card:nth-child(3),
.claim-sim.is-animating[data-active-step="approval"] .sim-check-item:nth-child(3) {
  animation-delay: 160ms;
}

.claim-sim.is-animating[data-active-step="extract"] .sim-table tbody tr {
  animation: simRise 360ms ease both;
}

.claim-sim.is-animating[data-active-step="extract"] .sim-table tbody tr:nth-child(2) {
  animation-delay: 90ms;
}

.claim-sim.is-animating[data-active-step="extract"] .sim-table tbody tr:nth-child(3) {
  animation-delay: 180ms;
}

.claim-sim.is-animating[data-active-step="search"] .typed-query {
  animation: simType 900ms steps(34, end) both;
}

.claim-sim.is-animating .claim-audit li:last-child {
  animation: simGlow 520ms ease both;
}

.velociti-proof {
  background:
    linear-gradient(180deg, rgba(23, 23, 23, 0.96), rgba(36, 33, 29, 0.98)),
    var(--ink);
  color: var(--paper);
}

.velociti-proof .section-head h2,
.velociti-proof .section-head p,
.velociti-proof .eyebrow {
  color: inherit;
}

.velociti-proof .section-head p {
  color: rgba(249, 248, 244, 0.72);
}

.velociti-proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 2.6vw, 2rem);
  max-width: 1180px;
  margin-inline: auto;
}

.velociti-screenshot-card {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  border: 1px solid rgba(215, 189, 131, 0.24);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  padding: 0.75rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.velociti-screenshot-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
  object-position: center;
  background: #0f1011;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.velociti-screenshot-card figcaption {
  display: grid;
  gap: 0.28rem;
  color: rgba(249, 248, 244, 0.68);
  font-size: 0.98rem;
  line-height: 1.45;
}

.velociti-screenshot-card strong {
  color: var(--gold-2);
}

.velociti-live-proof {
  --cursor-x: 82%;
  --cursor-y: 25%;
  position: relative;
  display: grid;
  gap: 1rem;
  max-width: 1180px;
  margin-inline: auto;
}

.proof-stage-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.55rem;
}

.proof-stage-strip button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.36rem;
  min-height: 42px;
  border: 1px solid rgba(215, 189, 131, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(249, 248, 244, 0.76);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.proof-stage-strip button:hover,
.proof-stage-strip button:focus-visible,
.proof-stage-strip button.is-active {
  border-color: rgba(255, 184, 148, 0.52);
  background: rgba(255, 184, 148, 0.14);
  color: #fff5ec;
  transform: translateY(-1px);
}

.proof-stage-strip span {
  color: var(--gold-2);
}

.velociti-operator-shell {
  border: 1px solid rgba(255, 184, 148, 0.24);
  border-radius: 18px;
  background: #101112;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.36);
  overflow: hidden;
}

.operator-windowbar {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(250px, 1fr) minmax(84px, auto);
  align-items: center;
  gap: 0.75rem;
  min-height: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #18191b;
  padding: 0 0.75rem;
  color: rgba(249, 248, 244, 0.68);
  font-size: 0.74rem;
}

.operator-menu,
.operator-actions,
.operator-filters,
.operator-control-row,
.operator-tabs,
.operator-flow-map {
  display: flex;
  align-items: center;
}

.operator-menu {
  gap: 0.58rem;
  min-width: 0;
}

.operator-command {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(249, 248, 244, 0.46);
  padding: 0.38rem 0.7rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.operator-actions {
  justify-content: flex-end;
  gap: 0.42rem;
}

.operator-actions span {
  width: 15px;
  height: 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
}

.operator-workbench {
  position: relative;
  display: grid;
  grid-template-columns: minmax(185px, 0.55fr) minmax(420px, 1.34fr) minmax(235px, 0.66fr);
  min-height: 510px;
  overflow: hidden;
}

.operator-left,
.operator-main,
.operator-side {
  min-width: 0;
}

.operator-left,
.operator-side {
  display: grid;
  align-content: start;
  gap: 0.68rem;
  background: #17191b;
  padding: 0.85rem;
}

.operator-left {
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.operator-side {
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  background: #151617;
}

.operator-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  color: rgba(249, 248, 244, 0.54);
  font-size: 0.68rem;
}

.operator-panel-head strong {
  color: rgba(249, 248, 244, 0.9);
  letter-spacing: 0.1em;
}

.operator-search,
.operator-chat-card,
.operator-decision-card,
.operator-audit-card,
.operator-bot-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
}

.operator-search {
  color: rgba(249, 248, 244, 0.38);
  padding: 0.56rem 0.68rem;
  font-size: 0.7rem;
}

.operator-filters {
  flex-wrap: wrap;
  gap: 0.34rem;
}

.operator-filters span,
.operator-bot-card span {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(255, 184, 148, 0.2);
  border-radius: 999px;
  background: rgba(255, 184, 148, 0.08);
  color: #ffd0be;
  padding: 0.16rem 0.42rem;
  font-size: 0.58rem;
  font-weight: 900;
}

.operator-filters span.is-active {
  border-color: rgba(255, 184, 148, 0.44);
  background: rgba(255, 184, 148, 0.16);
}

.operator-bot-card {
  display: grid;
  gap: 0.44rem;
  padding: 0.68rem;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.operator-bot-card div {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.7rem;
}

.operator-bot-card strong {
  color: #f8f3eb;
  font-size: 0.86rem;
  line-height: 1.2;
}

.operator-bot-card em {
  color: #91d7a7;
  font-size: 0.66rem;
  font-style: normal;
}

.operator-bot-card p {
  color: rgba(249, 248, 244, 0.52);
  font-size: 0.68rem;
  line-height: 1.38;
}

.operator-bot-card.is-muted {
  opacity: 0.68;
}

.operator-bot-card.is-live,
.operator-chat-card.is-live {
  border-color: rgba(255, 184, 148, 0.44);
  background: rgba(255, 184, 148, 0.1);
}

.operator-main {
  background:
    linear-gradient(rgba(17, 18, 19, 0.94), rgba(17, 18, 19, 0.94)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 38px);
}

.operator-tabs {
  gap: 0;
  min-height: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #161719;
}

.operator-tabs span {
  min-width: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(249, 248, 244, 0.48);
  padding: 0.58rem 0.78rem;
  font-size: 0.68rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.operator-tabs span.is-active {
  border-top: 2px solid #ffaf98;
  color: #f8f3eb;
}

.operator-focus-card {
  display: grid;
  gap: 0.84rem;
  padding: clamp(0.85rem, 1.8vw, 1.25rem);
}

.operator-focus-head {
  display: grid;
  gap: 0.36rem;
}

.proof-kicker,
.operator-chat-card span,
.operator-decision-card span,
.operator-audit-card span {
  color: var(--gold-2);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.operator-focus-card h3 {
  color: #f8f3eb;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.38rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.operator-focus-card p {
  max-width: 660px;
  color: rgba(249, 248, 244, 0.62);
  font-size: 0.92rem;
  line-height: 1.55;
}

.operator-control-row {
  flex-wrap: wrap;
  gap: 0.45rem;
}

.operator-control-row button {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(249, 248, 244, 0.74);
  padding: 0.46rem 0.62rem;
  font-size: 0.68rem;
  font-weight: 900;
}

.operator-control-row button.is-live {
  border-color: rgba(255, 184, 148, 0.48);
  background: linear-gradient(135deg, #ffc48d, #f48599);
  color: #171717;
}

.operator-state-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.62rem;
}

.operator-state-grid div {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  padding: 0.7rem;
}

.operator-state-grid small {
  display: block;
  margin-bottom: 0.22rem;
  color: rgba(249, 248, 244, 0.42);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.operator-state-grid strong {
  color: #91d7a7;
  font-size: 0.9rem;
  line-height: 1.2;
}

.operator-flow-map {
  flex-wrap: wrap;
  gap: 0.48rem;
  border: 1px solid rgba(255, 184, 148, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  padding: 0.75rem;
}

.operator-flow-map span,
.operator-flow-map strong {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(249, 248, 244, 0.76);
  padding: 0.26rem 0.58rem;
  font-size: 0.68rem;
  font-weight: 900;
}

.operator-flow-map strong {
  border-color: rgba(105, 190, 143, 0.34);
  background: rgba(105, 190, 143, 0.13);
  color: #aeeac1;
}

.operator-flow-map i {
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 184, 148, 0.2), rgba(105, 190, 143, 0.72));
}

.operator-chat-card,
.operator-decision-card,
.operator-audit-card {
  display: grid;
  gap: 0.45rem;
  padding: 0.72rem;
}

.operator-chat-card strong,
.operator-decision-card strong {
  color: #f8f3eb;
  font-size: 0.86rem;
  line-height: 1.32;
}

.operator-audit-card ul {
  display: grid;
  gap: 0.38rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.operator-audit-card li {
  border-left: 2px solid rgba(215, 189, 131, 0.58);
  color: rgba(249, 248, 244, 0.66);
  padding-left: 0.52rem;
  font-size: 0.7rem;
  line-height: 1.4;
}

.proof-cursor {
  position: absolute;
  left: var(--cursor-x);
  top: var(--cursor-y);
  z-index: 8;
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.42));
  pointer-events: none;
  transform: translate(-18%, -10%);
  transition: left 640ms cubic-bezier(0.22, 1, 0.36, 1), top 640ms cubic-bezier(0.22, 1, 0.36, 1);
}

.proof-cursor::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2032%2032%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M6%203.5v24l6.7-6.4%203.1%207.5%204.2-1.8-3.2-7.3h8.7L6%203.5Z%27%20fill%3D%27%23f9f8f4%27%20stroke%3D%27%23101112%27%20stroke-width%3D%271.8%27%20stroke-linejoin%3D%27round%27/%3E%3Cpath%20d%3D%27M12.7%2021.1l3.1%207.5%27%20fill%3D%27none%27%20stroke%3D%27%23101112%27%20stroke-width%3D%271.8%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.proof-cursor::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 14px;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 184, 148, 0.86);
  border-radius: 999px;
  opacity: 0;
}

.velociti-live-proof.is-animating .proof-cursor::after {
  animation: proofCursorClick 620ms ease both;
}

.velociti-live-proof.is-animating .operator-bot-card:first-of-type,
.velociti-live-proof.is-animating .operator-focus-card,
.velociti-live-proof.is-animating .operator-decision-card {
  animation: proofPanelGlow 640ms ease both;
}

.velociti-live-proof.is-animating .operator-audit-card li:last-child {
  animation: proofAuditGlow 640ms ease both;
}

.velociti-live-proof[data-active-proof-step="request"] {
  --cursor-x: 83%;
  --cursor-y: 22%;
}

.velociti-live-proof[data-active-proof-step="gate"] {
  --cursor-x: 48%;
  --cursor-y: 39%;
}

.velociti-live-proof[data-active-proof-step="launch"] {
  --cursor-x: 53%;
  --cursor-y: 58%;
}

.velociti-live-proof[data-active-proof-step="model"] {
  --cursor-x: 61%;
  --cursor-y: 75%;
}

.velociti-live-proof[data-active-proof-step="runtime"] {
  --cursor-x: 67%;
  --cursor-y: 14%;
}

.velociti-live-proof[data-active-proof-step="evidence"] {
  --cursor-x: 78%;
  --cursor-y: 64%;
}

.live-proof-caption {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  border: 1px solid rgba(215, 189, 131, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(249, 248, 244, 0.7);
  padding: 0.85rem 1rem;
}

.live-proof-caption strong {
  color: var(--gold-2);
}

@keyframes proofCursorClick {
  0% {
    opacity: 0;
    transform: scale(0.45);
  }
  24% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.75);
  }
}

@keyframes proofPanelGlow {
  0% {
    box-shadow: inset 0 0 0 1px rgba(255, 184, 148, 0);
  }
  45% {
    box-shadow: inset 0 0 0 1px rgba(255, 184, 148, 0.44), 0 20px 48px rgba(255, 184, 148, 0.08);
  }
  100% {
    box-shadow: inset 0 0 0 1px rgba(255, 184, 148, 0);
  }
}

@keyframes proofAuditGlow {
  0% {
    color: #fff4e9;
    border-left-color: #ffaf98;
    background: rgba(255, 184, 148, 0.13);
  }
  100% {
    color: rgba(249, 248, 244, 0.66);
    background: transparent;
  }
}

.demo-proof-shots {
  margin: 1rem 0;
}

.velociti-hero-card {
  color: #f7f1e7;
}

.velociti-preview-shell,
.velociti-shell {
  border: 1px solid rgba(255, 180, 143, 0.24);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 180, 143, 0.08), rgba(36, 33, 29, 0.08)),
    #111213;
  color: #f7f1e7;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.velociti-preview-shell {
  width: min(780px, 100%);
}

.velociti-preview-bar,
.velociti-titlebar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  padding: 0.78rem 0.9rem;
  color: rgba(249, 248, 244, 0.72);
  font-size: 0.8rem;
}

.velociti-preview-bar strong,
.velociti-titlebar strong {
  color: #fff5e8;
}

.velociti-preview-bar em {
  margin-left: auto;
  color: rgba(249, 248, 244, 0.54);
  font-style: normal;
}

.velociti-mark {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff9f7c, #d7bd83);
  color: #171717;
  font-weight: 950;
}

.velociti-preview-grid {
  display: grid;
  grid-template-columns: minmax(140px, 0.8fr) minmax(0, 1.2fr) minmax(150px, 0.7fr);
  gap: 0.8rem;
  padding: 0.95rem;
}

.velociti-preview-list,
.velociti-preview-main,
.velociti-preview-chat {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  padding: 0.85rem;
}

.velociti-preview-list {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.velociti-preview-main h3 {
  margin: 0.75rem 0 0;
  color: #fff8ec;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.velociti-preview-main p,
.velociti-preview-chat p,
.bot-card p {
  color: rgba(249, 248, 244, 0.7);
}

.velociti-preview-chat {
  display: grid;
  align-content: space-between;
  gap: 0.8rem;
}

.velociti-preview-chat span {
  color: rgba(249, 248, 244, 0.58);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.velociti-preview-chat strong {
  border: 1px solid rgba(255, 180, 143, 0.35);
  border-radius: 10px;
  color: #ffd2bf;
  padding: 0.62rem;
  text-align: center;
}

.velociti-real-shell {
  position: relative;
  border: 1px solid rgba(255, 184, 148, 0.22);
  border-radius: 12px;
  background: #111213;
  color: #e8e3dc;
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.38);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.hero-ide {
  height: 480px;
  width: min(900px, 100%);
}

.hero-ide .ide-windowbar {
  grid-template-columns: minmax(178px, 0.72fr) minmax(210px, 1fr) minmax(92px, auto);
  min-height: 38px;
  gap: 0.55rem;
  padding: 0 0.58rem;
  font-size: 0.68rem;
}

.hero-ide .ide-menu {
  gap: 0.45rem;
}

.hero-ide .ide-command {
  padding: 0.28rem 0.62rem;
}

.hero-ide .ide-window-actions {
  gap: 0.35rem;
}

.hero-ide .ide-window-actions span {
  width: 14px;
  height: 14px;
}

.hero-demo-hitbox {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 30;
  border-radius: 12px;
  color: inherit;
  text-decoration: none;
}

.hero-demo-hitbox:focus-visible {
  outline: 3px solid var(--gold-2);
  outline-offset: 4px;
}

.pilot-hero-visual:hover .velociti-real-shell,
.pilot-hero-visual:focus-within .velociti-real-shell {
  border-color: rgba(255, 184, 148, 0.38);
  box-shadow: 0 38px 130px rgba(0, 0, 0, 0.46);
  transform: translateY(-4px);
}

.ide-windowbar {
  display: grid;
  grid-template-columns: minmax(210px, 0.8fr) minmax(220px, 1fr) minmax(120px, auto);
  align-items: center;
  gap: 0.8rem;
  min-height: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #18191b;
  padding: 0 0.8rem;
  color: rgba(232, 227, 220, 0.78);
  font-size: 0.78rem;
}

.ide-menu,
.ide-window-actions,
.ide-panel-head,
.ide-actions,
.ide-tabs,
.ide-subtabs,
.ide-chip-row,
.ide-filter-row,
.ide-statusbar {
  display: flex;
  align-items: center;
}

.ide-menu {
  gap: 0.7rem;
  min-width: 0;
}

.ide-command {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(232, 227, 220, 0.45);
  padding: 0.38rem 0.75rem;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ide-window-actions {
  justify-content: flex-end;
  gap: 0.5rem;
}

.ide-window-actions span {
  width: 17px;
  height: 17px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
}

.ide-body {
  display: grid;
  grid-template-columns: 40px minmax(200px, 0.82fr) minmax(0, 1.28fr) minmax(190px, 0.74fr) 34px;
  min-height: 520px;
}

.hero-ide .ide-body {
  grid-template-columns: 32px minmax(158px, 0.54fr) minmax(306px, 1.35fr) minmax(150px, 0.46fr) 28px;
  height: calc(100% - 62px);
  min-height: 0;
}

.hero-ide .ide-panel,
.hero-ide .ide-workspace,
.hero-ide .ide-chat-pane,
.hero-ide .ide-edge-rail {
  overflow: hidden;
}

.hero-ide .ide-record {
  padding: 0.72rem;
  gap: 0.64rem;
}

.hero-ide .ide-record-head {
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 0.5rem;
}

.hero-ide .ide-record-head h3 {
  font-size: clamp(1.06rem, 1.18vw, 1.28rem);
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: normal;
}

.hero-ide .ide-record-head p {
  font-size: 0.58rem;
}

.hero-ide .ide-record-head strong {
  display: none;
}

.hero-ide .ide-app-icon {
  width: 32px;
  height: 32px;
}

.hero-ide .ide-chip-row {
  max-height: 38px;
  overflow: hidden;
}

.hero-ide .ide-list-card {
  gap: 0.38rem;
  padding: 0.48rem;
}

.hero-ide .ide-panel .ide-group-label:nth-of-type(5),
.hero-ide .ide-panel .ide-list-card.is-selected {
  display: none;
}

.hero-ide .ide-list-card div {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 0.3rem;
}

.hero-ide .ide-list-card strong {
  min-width: 0;
  line-height: 1.2;
}

.hero-ide .ide-list-card em {
  justify-self: start;
  max-width: 100%;
  border: 1px solid rgba(105, 190, 143, 0.22);
  border-radius: 999px;
  background: rgba(105, 190, 143, 0.12);
  padding: 0.12rem 0.38rem;
  line-height: 1.1;
}

.hero-ide .ide-metric-grid {
  gap: 0.44rem;
}

.hero-ide .ide-actions button:nth-child(n+4),
.hero-ide .ide-metric-grid div:nth-child(n+3) {
  display: none;
}

.hero-ide .ide-chat-brand strong {
  font-size: 0.9rem;
}

.hero-ide .ide-panel {
  gap: 0.5rem;
  padding: 0.58rem;
}

.hero-ide .ide-panel-head,
.hero-ide .ide-search,
.hero-ide .ide-filter-row span,
.hero-ide .ide-group-label,
.hero-ide .ide-list-card p,
.hero-ide .ide-list-card span,
.hero-ide .ide-chip-row span {
  font-size: 0.58rem;
}

.hero-ide .ide-search {
  padding: 0.42rem 0.48rem;
  line-height: 1.2;
}

.hero-ide .ide-filter-row {
  gap: 0.24rem;
}

.hero-ide .ide-filter-row span {
  padding: 0.18rem 0.32rem;
}

.hero-ide .ide-tabs {
  min-height: 34px;
}

.hero-ide .ide-tabs span {
  padding: 0.48rem 0.56rem;
  font-size: 0.62rem;
}

.hero-ide .ide-actions {
  gap: 0.32rem;
}

.hero-ide .ide-actions button {
  padding: 0.32rem 0.44rem;
  font-size: 0.58rem;
}

.hero-ide .ide-subtabs span {
  font-size: 0.6rem;
}

.hero-ide .ide-metric-grid div {
  padding: 0.58rem;
}

.hero-ide .ide-metric-grid small,
.hero-ide .ide-metric-grid p {
  font-size: 0.58rem;
}

.hero-ide .ide-chat-message,
.hero-ide .ide-chat-reply {
  padding: 0.52rem;
}

.hero-ide .ide-chat-pane {
  gap: 0.5rem;
  padding: 0.58rem;
}

.hero-ide .ide-chat-brand {
  padding: 0.45rem 0 0.68rem;
}

.hero-ide .ide-chat-search,
.hero-ide .ide-prompt,
.hero-ide .ide-chat-message span,
.hero-ide .ide-chat-reply p {
  font-size: 0.58rem;
}

.hero-ide .ide-prompt {
  min-height: 52px;
}

.hero-ide .ide-edge-rail {
  padding-inline: 0.16rem;
}

.hero-ide .ide-edge-rail b {
  right: -1px;
}

.hero-ide {
  width: min(860px, 100%);
  height: 380px;
  background:
    radial-gradient(circle at 24% 18%, rgba(68, 119, 165, 0.22), transparent 28%),
    linear-gradient(135deg, #131516 0%, #171717 45%, #101112 100%);
  border-color: rgba(255, 180, 143, 0.34);
}

.vdesk-topbar,
.vdesk-body,
.vdesk-statusbar,
.vdesk-filter,
.vdesk-tabs,
.vdesk-chip-row,
.vdesk-action-row,
.vdesk-subtabs,
.vdesk-record-head {
  display: flex;
  align-items: center;
}

.vdesk-topbar {
  height: 34px;
  gap: 0.55rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  background: #1b1c1e;
  padding: 0 0.62rem;
  color: rgba(241, 236, 229, 0.62);
  font-size: 0.64rem;
  line-height: 1;
}

.vdesk-topbar .velociti-mark {
  width: 22px;
  height: 22px;
  color: #171513;
  font-size: 0.72rem;
  flex: 0 0 auto;
}

.vdesk-command {
  flex: 1;
  max-width: 430px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(241, 236, 229, 0.38);
  padding: 0.38rem 0.68rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vdesk-window-buttons {
  display: flex;
  gap: 0.32rem;
  flex: 0 0 auto;
}

.vdesk-window-buttons i {
  width: 13px;
  height: 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.035);
}

.vdesk-body {
  align-items: stretch;
  height: calc(100% - 54px);
  min-height: 0;
}

.vdesk-activity {
  flex: 0 0 30px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 0.54rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  background: #131517;
  padding: 0.62rem 0.2rem;
}

.vdesk-activity span {
  position: relative;
  width: 11px;
  height: 11px;
  border: 1.5px solid rgba(228, 229, 224, 0.52);
  border-radius: 3px;
  opacity: 0.72;
}

.vdesk-activity span:nth-child(2) {
  border-radius: 999px;
}

.vdesk-activity span:nth-child(4) {
  transform: rotate(45deg);
}

.vdesk-activity span.is-active {
  border-color: rgba(255, 180, 143, 0.78);
  box-shadow: 0 0 0 8px rgba(255, 180, 143, 0.08);
}

.vdesk-activity .has-badge::after {
  content: "12";
  position: absolute;
  top: -9px;
  right: -10px;
  min-width: 18px;
  border-radius: 999px;
  background: #ffbd9f;
  color: #171513;
  font-size: 0.52rem;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
}

.vdesk-sidebar,
.vdesk-workbench,
.vdesk-chat,
.vdesk-edge-rail {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.vdesk-sidebar {
  flex: 0 0 164px;
  display: grid;
  align-content: start;
  gap: 0.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  background: #182538;
  padding: 0.68rem;
}

.vdesk-pane-title {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  color: rgba(241, 236, 229, 0.72);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vdesk-pane-title em {
  color: rgba(241, 236, 229, 0.42);
  font-style: normal;
  letter-spacing: 0;
  text-transform: none;
}

.vdesk-search {
  display: flex;
  align-items: center;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(241, 236, 229, 0.22) 0 42%, transparent 42%),
    rgba(255, 255, 255, 0.045);
  background-size: 70px 1px, auto;
  background-repeat: no-repeat;
  background-position: 12px 50%, 0 0;
  color: rgba(241, 236, 229, 0.34);
  font-size: 0.56rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 0 0.62rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vdesk-filter {
  flex-wrap: wrap;
  gap: 0.28rem;
}

.vdesk-filter span,
.vdesk-bot span,
.vdesk-bot em,
.vdesk-chip-row span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(241, 236, 229, 0.66);
  padding: 0.2rem 0.34rem;
  font-size: 0.55rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.vdesk-filter span:first-child,
.vdesk-chip-row span:first-child {
  border-color: rgba(255, 180, 143, 0.32);
  color: #ffc5ad;
}

.vdesk-sidebar p {
  margin: 0.18rem 0 0;
  color: rgba(241, 236, 229, 0.38);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.vdesk-bot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.55rem;
}

.vdesk-bot strong {
  flex: 0 0 100%;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.7rem;
  line-height: 1.18;
}

.vdesk-bot small {
  flex: 0 0 100%;
  color: rgba(241, 236, 229, 0.42);
  font-size: 0.56rem;
  line-height: 1.2;
}

.vdesk-bot em,
.vdesk-bot span {
  max-width: 100%;
  white-space: normal;
}

.vdesk-bot.is-running {
  border-color: rgba(105, 190, 143, 0.36);
  box-shadow: inset 3px 0 0 rgba(105, 190, 143, 0.68);
}

.vdesk-bot.is-running em {
  border-color: rgba(105, 190, 143, 0.32);
  color: #9ee3b9;
}

.hero-ide .vdesk-sidebar p:nth-of-type(2),
.hero-ide .vdesk-sidebar .vdesk-bot:not(.is-running) {
  display: none;
}

.vdesk-workbench {
  flex: 1 1 auto;
  display: grid;
  grid-template-rows: 34px minmax(0, 1fr);
  background: #122033;
}

.vdesk-tabs {
  min-width: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.vdesk-tabs span {
  min-width: 0;
  max-width: 50%;
  height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(241, 236, 229, 0.46);
  padding: 0.78rem 0.7rem 0;
  font-size: 0.62rem;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vdesk-tabs .is-active {
  border-top: 2px solid #ffbd9f;
  color: rgba(255, 255, 255, 0.82);
}

.vdesk-record {
  display: grid;
  align-content: start;
  gap: 0.48rem;
  padding: 0.72rem;
}

.vdesk-record-head {
  min-width: 0;
  gap: 0.62rem;
}

.vdesk-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 180, 143, 0.34);
  border-radius: 9px;
  background: rgba(255, 180, 143, 0.09);
  color: rgba(255, 213, 196, 0.88);
  font-weight: 900;
}

.vdesk-record-head h3,
.vdesk-record-head p {
  margin: 0;
}

.vdesk-record-head h3 {
  color: #fff7ea;
  font-family: Inter, Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.06;
}

.vdesk-record-head p {
  color: rgba(241, 236, 229, 0.34);
  font-size: 0.58rem;
  line-height: 1.3;
}

.vdesk-record-head em {
  align-self: start;
  margin-left: auto;
  border: 1px solid rgba(105, 190, 143, 0.32);
  border-radius: 999px;
  color: #9ee3b9;
  font-size: 0.54rem;
  font-style: normal;
  font-weight: 900;
  padding: 0.18rem 0.36rem;
  white-space: nowrap;
}

.vdesk-chip-row,
.vdesk-action-row {
  flex-wrap: wrap;
  gap: 0.34rem;
}

.vdesk-action-row button {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(241, 236, 229, 0.72);
  padding: 0.36rem 0.52rem;
  font-size: 0.58rem;
  font-weight: 900;
}

.vdesk-action-row button:first-child {
  border-color: rgba(255, 180, 143, 0.55);
  background: #ffb18f;
  color: #171513;
}

.vdesk-subtabs {
  gap: 0.56rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding-bottom: 0.4rem;
  color: rgba(241, 236, 229, 0.38);
  font-size: 0.56rem;
  font-weight: 800;
}

.vdesk-subtabs .is-active {
  color: #ffbd9f;
}

.vdesk-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.42rem;
}

.vdesk-detail-grid div {
  min-height: 75px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.52rem;
}

.vdesk-detail-grid small {
  display: block;
  color: rgba(241, 236, 229, 0.34);
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vdesk-detail-grid strong {
  display: block;
  margin-top: 0.3rem;
  color: #9ee3b9;
  font-size: 0.95rem;
  line-height: 1;
}

.vdesk-detail-grid p {
  margin: 0.34rem 0 0;
  color: rgba(241, 236, 229, 0.48);
  font-size: 0.54rem;
  line-height: 1.28;
}

.vdesk-log {
  display: grid;
  gap: 0.22rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 0.46rem;
}

.vdesk-log span {
  border-left: 2px solid rgba(255, 180, 143, 0.45);
  color: rgba(241, 236, 229, 0.46);
  padding-left: 0.38rem;
  font-size: 0.54rem;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vdesk-chat {
  flex: 0 0 160px;
  display: grid;
  align-content: start;
  gap: 0.62rem;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  background: #141619;
  padding: 0.62rem;
}

.hero-ide .vdesk-chat {
  gap: 0.42rem;
  padding: 0.48rem;
}

.vdesk-chat-brand {
  display: grid;
  justify-items: center;
  gap: 0.22rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0.2rem 0 0.75rem;
}

.hero-ide .vdesk-chat-brand {
  gap: 0.14rem;
  padding: 0.06rem 0 0.42rem;
}

.vdesk-chat-brand .velociti-mark {
  width: 28px;
  height: 28px;
  color: #171513;
}

.hero-ide .vdesk-chat-brand .velociti-mark {
  width: 24px;
  height: 24px;
}

.vdesk-chat-brand strong {
  color: #ffbd9f;
  font-size: 0.74rem;
}

.vdesk-chat-brand em {
  color: rgba(241, 236, 229, 0.62);
  font-size: 0.54rem;
  font-style: normal;
  font-weight: 900;
}

.vdesk-chat-search {
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 8px;
  color: rgba(241, 236, 229, 0.34);
  font-size: 0.54rem;
  line-height: 1.25;
  padding: 0.44rem 0.52rem;
}

.hero-ide .vdesk-chat-search {
  padding: 0.36rem 0.44rem;
}

.vdesk-chat article {
  display: grid;
  gap: 0.24rem;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.035);
  padding: 0.58rem;
}

.hero-ide .vdesk-chat article {
  padding: 0.44rem;
}

.vdesk-chat article strong {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.68rem;
  line-height: 1.22;
}

.vdesk-chat article p {
  margin: 0;
  color: rgba(241, 236, 229, 0.42);
  font-size: 0.56rem;
  line-height: 1.35;
}

.hero-ide .vdesk-chat article p {
  line-height: 1.24;
}

.vdesk-chat .is-done {
  border-color: rgba(255, 180, 143, 0.22);
}

.vdesk-prompt {
  display: flex;
  align-items: start;
  height: 46px;
  border: 1px solid rgba(255, 180, 143, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(241, 236, 229, 0.36);
  font-size: 0.54rem;
  line-height: 1.25;
  padding: 0.52rem;
}

.hero-ide .vdesk-prompt {
  height: 34px;
  padding: 0.42rem;
}

.vdesk-edge-rail {
  flex: 0 0 28px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 0.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  background: #111315;
  padding: 0.6rem 0.12rem;
}

.vdesk-edge-rail span {
  position: relative;
  width: 18px;
  height: 16px;
  border: 1.4px solid rgba(241, 236, 229, 0.58);
  border-radius: 3px;
}

.vdesk-edge-rail span:nth-child(2) {
  border-radius: 999px;
}

.vdesk-edge-rail span b {
  position: absolute;
  top: -7px;
  right: -1px;
  min-width: 14px;
  border-radius: 999px;
  background: #ffbd9f;
  color: #171513;
  font-size: 0.42rem;
  line-height: 14px;
  text-align: center;
}

.vdesk-statusbar {
  height: 20px;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  background: #101112;
  color: rgba(241, 236, 229, 0.34);
  padding: 0 0.56rem;
  font-size: 0.52rem;
}

.vdesk-cursor {
  position: absolute;
  z-index: 18;
  width: 18px;
  height: 18px;
  left: 54%;
  top: 57%;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.42));
  animation: heroCursorPath 7.2s ease-in-out infinite;
  pointer-events: none;
}

.vdesk-cursor::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2032%2032%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M6%203.5v24l6.7-6.4%203.1%207.5%204.2-1.8-3.2-7.3h8.7L6%203.5Z%27%20fill%3D%27%23f9f8f4%27%20stroke%3D%27%23101112%27%20stroke-width%3D%271.8%27%20stroke-linejoin%3D%27round%27/%3E%3Cpath%20d%3D%27M12.7%2021.1l3.1%207.5%27%20fill%3D%27none%27%20stroke%3D%27%23101112%27%20stroke-width%3D%271.8%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.vdesk-cursor::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 13px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 180, 143, 0.88);
  box-shadow: 0 0 0 0 rgba(255, 180, 143, 0.45);
  animation: heroCursorPulse 7.2s ease-in-out infinite;
}

@keyframes heroCursorPath {
  0%, 15% { transform: translate3d(-12px, -16px, 0); }
  28%, 44% { transform: translate3d(88px, -76px, 0); }
  58%, 72% { transform: translate3d(-86px, 22px, 0); }
  86%, 100% { transform: translate3d(18px, 48px, 0); }
}

@keyframes heroCursorPulse {
  0%, 23%, 38%, 53%, 68%, 100% { box-shadow: 0 0 0 0 rgba(255, 180, 143, 0); opacity: 0; }
  28%, 58%, 88% { box-shadow: 0 0 0 10px rgba(255, 180, 143, 0.12); opacity: 1; }
}

.ide-activity {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 0.38rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  background: #151618;
  padding: 0.55rem 0.25rem;
}

.ide-activity span,
.ide-edge-rail span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 7px;
  color: rgba(232, 227, 220, 0.68);
  font-size: 0.85rem;
  font-weight: 900;
}

.ide-activity span.is-active {
  border: 1px solid rgba(255, 184, 148, 0.36);
  background: rgba(255, 184, 148, 0.12);
  color: #ffd0be;
}

.ide-activity b,
.ide-edge-rail b {
  position: absolute;
  right: -4px;
  top: -4px;
  min-width: 15px;
  height: 15px;
  border-radius: 999px;
  background: #ffaf98;
  color: #111213;
  font-size: 0.55rem;
  line-height: 15px;
  text-align: center;
}

.ide-panel {
  display: grid;
  align-content: start;
  gap: 0.65rem;
  min-width: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  background: #17191b;
  padding: 0.72rem;
}

.ide-panel-head {
  justify-content: space-between;
  gap: 0.5rem;
  color: rgba(232, 227, 220, 0.62);
  font-size: 0.72rem;
}

.ide-panel-head strong {
  color: rgba(232, 227, 220, 0.9);
  letter-spacing: 0.08em;
}

.ide-panel-head i {
  color: rgba(232, 227, 220, 0.5);
  font-style: normal;
}

.ide-search {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(232, 227, 220, 0.36);
  padding: 0.5rem 0.58rem;
  font-size: 0.72rem;
  line-height: 1.25;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  overflow-wrap: anywhere;
}

.ide-filter-row {
  flex-wrap: wrap;
  gap: 0.34rem;
}

.ide-filter-row span {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(232, 227, 220, 0.66);
  padding: 0.24rem 0.42rem;
  font-size: 0.64rem;
  font-weight: 800;
}

.ide-filter-row span.is-active {
  border-color: rgba(255, 184, 148, 0.42);
  color: #ffd0be;
}

.ide-filter-row b {
  color: #ffaf98;
}

.ide-group-label {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(232, 227, 220, 0.48);
  padding-top: 0.42rem;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ide-list-card {
  display: grid;
  gap: 0.32rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
  padding: 0.55rem;
}

.ide-list-card.is-selected {
  border-color: rgba(255, 184, 148, 0.34);
  background: rgba(255, 184, 148, 0.075);
}

.ide-list-card.is-live {
  border-left: 2px solid #7fcf9a;
}

.ide-list-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-width: 0;
}

.ide-list-card strong {
  color: #f7f1e7;
  font-size: 0.8rem;
  min-width: 0;
  overflow-wrap: anywhere;
}

.ide-list-card em {
  color: #91d7a7;
  font-size: 0.66rem;
  font-style: normal;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.ide-list-card p {
  color: rgba(232, 227, 220, 0.52);
  font-size: 0.68rem;
  overflow-wrap: anywhere;
}

.ide-list-card span,
.ide-chip-row span {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(255, 184, 148, 0.2);
  border-radius: 5px;
  background: rgba(255, 184, 148, 0.075);
  color: #ffd0be;
  padding: 0.14rem 0.34rem;
  font-size: 0.6rem;
  font-weight: 800;
}

.ide-workspace {
  min-width: 0;
  background: #111213;
}

.ide-tabs {
  gap: 0;
  min-height: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #161719;
}

.ide-tabs span {
  min-width: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(232, 227, 220, 0.55);
  padding: 0.55rem 0.75rem;
  font-size: 0.72rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ide-tabs span.is-active {
  border-top: 2px solid #ffaf98;
  background: #111213;
  color: #f7f1e7;
}

.ide-toolbar,
.ide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.ide-toolbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.68rem 0.8rem;
}

.ide-toolbar button,
.ide-actions button {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(232, 227, 220, 0.72);
  padding: 0.38rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 800;
}

.ide-actions button:first-child {
  border-color: rgba(255, 184, 148, 0.32);
  background: linear-gradient(135deg, #ffc48d, #f48599);
  color: #171717;
}

.ide-record {
  display: grid;
  gap: 0.82rem;
  padding: 1rem;
}

.ide-record-head {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
}

.ide-record-head h3 {
  color: #f7f1e7;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.ide-record-head p {
  color: rgba(232, 227, 220, 0.46);
  font-size: 0.75rem;
}

.ide-record-head strong {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  color: rgba(232, 227, 220, 0.62);
  padding: 0.28rem 0.5rem;
  font-size: 0.7rem;
}

.ide-app-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 184, 148, 0.28);
  border-radius: 11px;
  background: rgba(255, 184, 148, 0.09);
  color: #ffd0be;
  font-weight: 950;
}

.ide-chip-row,
.ide-subtabs {
  flex-wrap: wrap;
  gap: 0.42rem;
}

.ide-subtabs {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ide-subtabs span {
  color: rgba(232, 227, 220, 0.42);
  padding: 0.42rem 0.1rem;
  font-size: 0.72rem;
}

.ide-subtabs span.is-active {
  border-bottom: 2px solid #ffaf98;
  color: #ffd0be;
}

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

.ide-metric-grid div {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.72rem;
}

.ide-metric-grid small {
  color: rgba(232, 227, 220, 0.42);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ide-metric-grid strong {
  display: block;
  color: #91d7a7;
  font-size: 1.05rem;
}

.ide-metric-grid p {
  color: rgba(232, 227, 220, 0.56);
  font-size: 0.7rem;
  overflow-wrap: anywhere;
}

.ide-chat-pane {
  display: grid;
  align-content: start;
  gap: 0.72rem;
  min-width: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  background: #151617;
  padding: 0.72rem;
}

.ide-chat-brand {
  display: grid;
  justify-items: center;
  gap: 0.24rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.65rem 0 0.9rem;
  text-align: center;
}

.ide-chat-brand strong {
  color: #ffaf98;
  font-size: 1.2rem;
}

.ide-chat-brand em {
  color: #ffd0be;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 900;
}

.ide-chat-search,
.ide-prompt {
  border: 1px solid rgba(255, 184, 148, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(232, 227, 220, 0.42);
  padding: 0.54rem 0.62rem;
  font-size: 0.72rem;
}

.ide-chat-message,
.ide-chat-reply {
  display: grid;
  gap: 0.36rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.72rem;
}

.ide-chat-message strong,
.ide-chat-reply strong {
  color: #f7f1e7;
  font-size: 0.86rem;
}

.ide-chat-message span,
.ide-chat-reply p {
  color: rgba(232, 227, 220, 0.55);
  font-size: 0.68rem;
  overflow-wrap: anywhere;
}

.ide-prompt {
  min-height: 72px;
  margin-top: 0.2rem;
  border-color: rgba(255, 184, 148, 0.28);
}

.ide-edge-rail {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 0.38rem;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  background: #131416;
  padding: 0.58rem 0.2rem;
}

.ide-statusbar {
  justify-content: space-between;
  gap: 0.8rem;
  min-height: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #17191b;
  color: rgba(232, 227, 220, 0.45);
  padding: 0.22rem 0.65rem;
  font-size: 0.62rem;
}

.velociti-head .sim-title {
  max-width: 780px;
}

.velociti-canvas {
  border-color: rgba(255, 180, 143, 0.22);
  background: #0f1011;
  padding: 0;
}

.velociti-canvas::before {
  display: none;
}

.claim-sim .velociti-real-shell .ide-body {
  grid-template-columns: 36px minmax(150px, 0.44fr) minmax(0, 1fr);
  grid-template-areas:
    "activity panel workspace"
    "activity panel chat";
  min-height: 560px;
}

.claim-sim .velociti-real-shell .ide-activity {
  grid-area: activity;
}

.claim-sim .velociti-real-shell .ide-panel {
  grid-area: panel;
}

.claim-sim .velociti-real-shell .ide-workspace {
  grid-area: workspace;
}

.claim-sim .velociti-real-shell .ide-chat-pane {
  grid-area: chat;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 0;
}

.claim-sim .velociti-real-shell .ide-edge-rail {
  display: none;
}

.claim-sim .velociti-real-shell .ide-tabs {
  flex-wrap: wrap;
  min-height: auto;
}

.claim-sim .velociti-real-shell .ide-tabs span {
  flex: 1 1 180px;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  line-height: 1.25;
}

.velociti-grid {
  display: grid;
  grid-template-columns: minmax(170px, 0.7fr) minmax(0, 1.35fr) minmax(190px, 0.72fr);
  min-height: 500px;
}

.velociti-sidebar,
.velociti-main,
.velociti-chat {
  min-width: 0;
}

.velociti-sidebar {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.16);
  padding: 0.85rem;
}

.velociti-main {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  padding: 1rem;
}

.velociti-chat {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.12);
  padding: 0.85rem;
}

.ide-workspace.velociti-main {
  align-content: stretch;
  gap: 0;
  padding: 0;
}

.ide-chat-pane.velociti-chat {
  gap: 0.72rem;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  background: #151617;
  padding: 0.72rem;
}

.velociti-search {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(249, 248, 244, 0.54);
  padding: 0.65rem;
  font-size: 0.76rem;
}

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

.velociti-filter-row span,
.policy-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 180, 143, 0.22);
  border-radius: 999px;
  background: rgba(255, 180, 143, 0.1);
  color: #ffd2bf;
  padding: 0.34rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-chip.gold {
  border-color: rgba(215, 189, 131, 0.36);
  background: rgba(215, 189, 131, 0.12);
  color: var(--gold-2);
}

.velociti-nav-list {
  display: grid;
  gap: 0.48rem;
}

.velociti-nav-item {
  display: grid;
  gap: 0.12rem;
  border: 1px solid transparent;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  padding: 0.62rem;
}

.velociti-nav-item.is-active {
  border-color: rgba(255, 180, 143, 0.36);
  background: linear-gradient(135deg, rgba(255, 180, 143, 0.16), rgba(255, 255, 255, 0.04));
}

.velociti-nav-item strong {
  color: #fff6ec;
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}

.velociti-nav-item span {
  color: rgba(249, 248, 244, 0.5);
  font-size: 0.72rem;
  overflow-wrap: anywhere;
}

.sentinel-card,
.policy-card,
.bot-card,
.velociti-chat-card,
.evidence-log,
.runtime-grid span,
.agent-note,
.velociti-review .review-case,
.velociti-review .sim-review-card {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
  color: #f7f1e7;
}

.sentinel-card {
  display: grid;
  gap: 0.72rem;
  border: 1px solid rgba(255, 180, 143, 0.2);
  border-radius: 14px;
  padding: 1rem;
  overflow: hidden;
}

.sentinel-card h4,
.velociti-chat-card h4,
.bot-card strong,
.policy-card strong,
.evidence-log strong,
.velociti-review h4 {
  color: #fff8ec;
  overflow-wrap: anywhere;
}

.sentinel-card p,
.velociti-chat-card p,
.policy-card span,
.bot-card em,
.evidence-log span,
.velociti-review p,
.velociti-review .agent-note span,
.velociti-review .sim-review-card span {
  color: rgba(249, 248, 244, 0.66);
  overflow-wrap: anywhere;
}

.velociti-review {
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
}

.velociti-review .review-case-head {
  justify-content: flex-start;
  align-items: flex-start;
}

.velociti-review .review-case-head .badge {
  flex: 0 1 auto;
  white-space: normal;
  line-height: 1.2;
  text-align: left;
}

.policy-board,
.bot-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.policy-card,
.bot-card {
  display: grid;
  gap: 0.22rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.82rem;
  overflow: hidden;
}

.policy-card em,
.bot-card em {
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  padding: 0.2rem 0.45rem;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.policy-card.is-allowed em,
.bot-card.is-running em {
  background: rgba(105, 190, 143, 0.14);
  color: #9ee3b9;
}

.policy-card.is-denied em {
  background: rgba(255, 127, 127, 0.12);
  color: #ffb0a6;
}

.policy-card.is-gated em {
  background: rgba(215, 189, 131, 0.14);
  color: var(--gold-2);
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #9ee3b9;
  box-shadow: 0 0 0 6px rgba(105, 190, 143, 0.12);
}

.runtime-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
  gap: 0.62rem;
}

.runtime-grid.compact {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 145px), 1fr));
}

.runtime-grid-large {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 145px), 1fr));
}

.runtime-grid span {
  display: grid;
  gap: 0.12rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.65rem;
  font-size: 0.78rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: normal;
}

.runtime-grid strong {
  color: #fff8ec;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.evidence-log {
  display: grid;
  gap: 0.42rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.82rem;
}

.evidence-log span {
  border-left: 3px solid rgba(215, 189, 131, 0.65);
  padding-left: 0.5rem;
  font-size: 0.8rem;
}

.velociti-chat-card {
  display: grid;
  gap: 0.52rem;
  border: 1px solid rgba(255, 180, 143, 0.2);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 180, 143, 0.09), rgba(255, 255, 255, 0.04));
  padding: 0.92rem;
}

.velociti-chat-card span {
  color: #ffd2bf;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.velociti-model-selector {
  grid-template-columns: minmax(0, 1fr);
}

.velociti-model-selector .model-option-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.velociti-model-selector .model-option,
.velociti-model-selector .model-detail-card {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
  color: #f7f1e7;
}

.velociti-model-selector .model-option strong,
.velociti-model-selector .model-detail-card h4 {
  color: #fff8ec;
}

.velociti-model-selector .model-option small,
.velociti-model-selector .model-detail-card p {
  color: rgba(249, 248, 244, 0.62);
}

.velociti-model-selector .model-option.is-active {
  border-color: rgba(105, 190, 143, 0.45);
  background: rgba(105, 190, 143, 0.12);
}

.velociti-model-selector .model-detail-card {
  border-color: rgba(255, 180, 143, 0.22);
}

.velociti-model-selector .model-spec-list span {
  background: rgba(255, 255, 255, 0.055);
  color: rgba(249, 248, 244, 0.68);
}

.runtime-meter {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  overflow: hidden;
}

.runtime-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff9f7c, #9ee3b9);
}

.gitops-flow {
  display: grid;
  grid-template-columns: minmax(108px, 1fr) 24px minmax(108px, 1fr) 24px minmax(108px, 1fr);
  gap: 0.42rem;
  align-items: center;
}

.gitops-flow div {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
  min-height: 110px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  padding: 0.74rem;
}

.gitops-flow strong {
  display: block;
  color: #fff8ec;
  font-size: 0.92rem;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.gitops-flow span {
  color: rgba(249, 248, 244, 0.62);
  font-size: 0.76rem;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.gitops-flow i {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff9f7c, #9ee3b9);
}

.velociti-review .review-actions {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.velociti-review .review-actions button {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.075);
  color: #f7f1e7;
}

.velociti-review .review-facts span,
.velociti-review .sim-export-state {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
}

.velociti-review .review-facts strong,
.velociti-review .sim-export-state strong {
  color: #fff8ec;
}

.claim-sim.is-animating[data-active-step="request"] .velociti-chat-card,
.claim-sim.is-animating[data-active-step="policy"] .policy-card,
.claim-sim.is-animating[data-active-step="bot"] .bot-card,
.claim-sim.is-animating[data-active-step="runtime"] .runtime-grid span,
.claim-sim.is-animating[data-active-step="gitops"] .gitops-flow div,
.claim-sim.is-animating[data-active-step="audit"] .review-case {
  animation: simRise 420ms ease both;
}

.claim-sim.is-animating[data-active-step="model"] .model-option.is-active {
  animation: simPulse 620ms ease both;
}

.claim-sim.is-animating[data-active-step="runtime"] .runtime-meter span {
  animation: simGrow 620ms ease both;
}

section[id],
.claim-sim[id] {
  scroll-margin-top: 96px;
}

.pilot-proof-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.audit-input-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem;
}

.audit-input-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  padding: 1rem;
}

.input-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 0.8rem;
  border-radius: 10px;
  background: var(--ink);
  color: var(--gold-2);
  font-weight: 900;
}

.input-icon.green {
  background: var(--success);
  color: var(--white);
}

.input-icon.gold {
  background: var(--gold);
  color: var(--ink);
}

.audit-input-card h3 {
  font-size: 1.35rem;
}

.audit-input-card p {
  margin-top: 0.4rem;
  font-size: 0.92rem;
}

.input-list {
  display: grid;
  gap: 0.45rem;
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
}

.input-list li {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 0.55rem;
  border-top: 1px solid var(--line);
  padding-top: 0.45rem;
  color: var(--muted);
  font-size: 0.83rem;
}

.input-list strong {
  color: var(--ink);
}

.system-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.48rem;
  margin-top: 1rem;
}

.system-chip-grid span,
.build-outputs span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(249, 248, 244, 0.9);
  color: var(--muted);
  padding: 0.42rem 0.58rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.audit-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.audit-metrics span {
  display: grid;
  gap: 0.15rem;
  border-right: 1px solid var(--line);
  padding: 0.9rem 1rem;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.audit-metrics span:last-child {
  border-right: 0;
}

.audit-metrics strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  line-height: 1;
}

.build-board-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: 1rem;
  padding: 1rem;
}

.build-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.build-card {
  display: grid;
  gap: 0.42rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  padding: 1rem;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.build-card span {
  color: var(--soft);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.build-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.05;
}

.build-card em {
  color: var(--ink);
  font-style: normal;
  font-weight: 900;
}

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

.build-card.is-active,
.build-card:hover,
.build-card:focus-visible {
  border-color: rgba(184, 147, 85, 0.68);
  background: linear-gradient(135deg, rgba(184, 147, 85, 0.13), rgba(255, 255, 255, 0.94));
  box-shadow: 0 20px 54px rgba(24, 21, 17, 0.09);
  transform: translateY(-1px);
}

.build-detail {
  border: 1px solid rgba(184, 147, 85, 0.34);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  padding: 1rem;
}

.build-detail-head {
  display: grid;
  gap: 1rem;
}

.build-detail-head h3 {
  margin-top: 0.6rem;
  font-size: 1.45rem;
}

.build-detail-head p {
  margin-top: 0.35rem;
  font-size: 0.92rem;
}

.build-mini-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.build-mini-metrics span {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(249, 248, 244, 0.86);
  padding: 0.65rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.build-mini-metrics strong {
  display: block;
  color: var(--ink);
}

.build-step-list {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
}

.build-step-list div {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 0.65rem;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 0.5rem;
}

.build-step-list span {
  color: var(--gold);
  font-weight: 900;
}

.build-step-list strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.build-outputs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.timeline-chart {
  min-width: 640px;
  padding: 1rem;
}

.timeline-board {
  overflow-x: auto;
}

.timeline-head,
.timeline-row {
  display: grid;
  grid-template-columns: 180px repeat(6, minmax(58px, 1fr));
  gap: 0.25rem;
  align-items: center;
}

.timeline-head {
  color: var(--soft);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-row {
  min-height: 46px;
  border-top: 1px solid var(--line);
}

.timeline-row strong {
  color: var(--ink);
  font-size: 0.86rem;
}

.timeline-row i {
  grid-column: var(--start) / span var(--span);
  border-left: 3px solid var(--gold);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(184, 147, 85, 0.22), rgba(36, 89, 71, 0.14));
  color: var(--ink);
  padding: 0.32rem 0.7rem;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 900;
  text-align: right;
}

.build-board.is-updating .build-detail {
  animation: simRise 420ms ease both;
}

.pilot-proof-grid.is-visible .timeline-row i {
  animation: timelineDraw 760ms ease both;
  transform-origin: left;
}

.pilot-proof-grid.is-visible .timeline-row:nth-child(3) i {
  animation-delay: 80ms;
}

.pilot-proof-grid.is-visible .timeline-row:nth-child(4) i {
  animation-delay: 160ms;
}

.pilot-proof-grid.is-visible .timeline-row:nth-child(5) i {
  animation-delay: 240ms;
}

.pilot-proof-grid.is-visible .timeline-row:nth-child(6) i {
  animation-delay: 320ms;
}

.pilot-proof-grid.is-visible .timeline-row:nth-child(7) i {
  animation-delay: 400ms;
}

@keyframes simGrow {
  from {
    transform: scaleX(0.18);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes timelineDraw {
  from {
    opacity: 0;
    transform: scaleX(0.28);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes ocrScan {
  0% {
    transform: translateY(0);
    opacity: 0.3;
  }

  45% {
    opacity: 1;
  }

  100% {
    transform: translateY(218px);
    opacity: 0.3;
  }
}

@keyframes simRise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes simPulse {
  0% {
    box-shadow: 0 0 0 rgba(36, 89, 71, 0);
  }

  45% {
    box-shadow: 0 0 0 8px rgba(36, 89, 71, 0.1);
  }

  100% {
    box-shadow: 0 0 0 rgba(36, 89, 71, 0);
  }
}

@keyframes simType {
  from {
    max-width: 0;
  }

  to {
    max-width: 100%;
  }
}

@keyframes simGlow {
  0% {
    border-left-color: var(--success);
    background: rgba(36, 89, 71, 0.08);
  }

  100% {
    border-left-color: rgba(184, 147, 85, 0.7);
    background: transparent;
  }
}

.fine-print {
  margin-top: 0.85rem;
  color: var(--soft);
  font-size: 0.88rem;
}

.control-layer {
  align-items: start;
}

.control-board {
  display: grid;
  gap: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(241, 239, 231, 0.74));
  box-shadow: var(--shadow);
  padding: 1rem;
}

.control-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 0.35rem 0.85rem;
  align-items: start;
  border: 1px solid rgba(221, 215, 202, 0.78);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.85rem;
}

.control-row strong {
  color: var(--ink);
}

.control-row p {
  grid-column: 2;
  font-size: 0.92rem;
}

.sticky-section {
  overflow: visible;
}

.sticky-story {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(300px, 0.82fr);
  grid-template-areas:
    "copy visual"
    "steps visual";
  gap: clamp(1.5rem, 4vw, 3.2rem);
  align-items: start;
}

.sticky-copy {
  grid-area: copy;
}

.sticky-steps {
  grid-area: steps;
  display: grid;
  gap: 0.85rem;
}

.story-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(118px, 0.34fr);
  gap: 0.9rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  padding: 1rem;
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.story-step.is-active {
  border-color: rgba(184, 147, 85, 0.72);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(24, 21, 17, 0.08);
  transform: translateY(-2px);
}

.story-step-copy > span {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.story-step h3 {
  font-size: 1.45rem;
}

.story-step p {
  margin-top: 0.55rem;
}

.process-motion,
.process-visual-scene {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(184, 147, 85, 0.24);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(249, 248, 244, 0.62)),
    repeating-linear-gradient(90deg, rgba(184, 147, 85, 0.08) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(0deg, rgba(184, 147, 85, 0.06) 0 1px, transparent 1px 22px);
}

.process-motion {
  height: 108px;
}

.process-motion::after,
.process-visual-scene::after {
  content: "";
  position: absolute;
  inset: auto 10px 10px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 147, 85, 0.45), transparent);
}

.story-step.is-active .process-motion,
.process-visual-scene.is-active {
  border-color: rgba(184, 147, 85, 0.5);
  box-shadow: inset 0 0 0 1px rgba(184, 147, 85, 0.1), 0 18px 36px rgba(24, 21, 17, 0.08);
}

.process-motion-sentinel .watch-tower,
.process-visual-sentinel .watch-tower {
  position: absolute;
  left: 16%;
  bottom: 18%;
  width: 42px;
  height: 58px;
  border: 0;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(24, 21, 17, 0.74) 18% 28%, transparent 28% 72%, rgba(24, 21, 17, 0.74) 72% 82%, transparent 82%),
    linear-gradient(180deg, rgba(24, 21, 17, 0.74) 0 7px, transparent 7px 100%),
    linear-gradient(90deg, transparent 0 7px, rgba(24, 21, 17, 0.74) 7px 12px, transparent 12px 30px, rgba(24, 21, 17, 0.74) 30px 35px, transparent 35px);
}

.process-motion-sentinel .watch-tower::before,
.process-visual-sentinel .watch-tower::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -13px;
  width: 24px;
  height: 24px;
  border: 2px solid rgba(24, 21, 17, 0.82);
  border-radius: 999px;
  background: rgba(249, 248, 244, 0.92);
  transform: translateX(-50%);
  box-shadow: 0 8px 20px rgba(24, 21, 17, 0.12);
}

.process-motion-sentinel .watch-tower::after,
.process-visual-sentinel .watch-tower::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 58px;
  height: 3px;
  border-radius: 999px;
  background: rgba(24, 21, 17, 0.68);
  transform: translateX(-50%);
}

.tower-beam {
  position: absolute;
  left: 24%;
  top: 15%;
  width: 76%;
  height: 58%;
  background: linear-gradient(90deg, rgba(215, 189, 131, 0.58), rgba(215, 189, 131, 0.08));
  clip-path: polygon(0 42%, 100% 0, 100% 100%, 0 58%);
  transform-origin: 0 50%;
  opacity: 0.9;
  animation: sentinelSweep 3.2s ease-in-out infinite;
}

.process-motion-sentinel b,
.process-visual-sentinel b {
  position: absolute;
  right: 15%;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(36, 89, 71, 0.6);
  border-radius: 999px;
  background: rgba(36, 89, 71, 0.08);
}

.process-motion-sentinel b:nth-of-type(1),
.process-visual-sentinel b:nth-of-type(1) { top: 24%; }
.process-motion-sentinel b:nth-of-type(2),
.process-visual-sentinel b:nth-of-type(2) { top: 48%; right: 25%; }
.process-motion-sentinel b:nth-of-type(3),
.process-visual-sentinel b:nth-of-type(3) { top: 66%; right: 12%; }

.process-motion-pilot .pilot-path,
.process-visual-pilot .pilot-path {
  position: absolute;
  left: 16%;
  right: 16%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(184, 147, 85, 0.15), rgba(36, 89, 71, 0.75));
}

.pilot-node {
  position: absolute;
  top: calc(50% - 11px);
  width: 22px;
  height: 22px;
  border: 2px solid rgba(36, 89, 71, 0.42);
  border-radius: 999px;
  background: var(--white);
}

.pilot-node:nth-of-type(1) { left: 14%; }
.pilot-node:nth-of-type(2) { left: calc(50% - 11px); }
.pilot-node:nth-of-type(3) { right: 14%; }

.pilot-worker {
  position: absolute;
  left: 14%;
  top: calc(50% - 17px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 184, 148, 0.38);
  border-radius: 10px;
  background: #171717;
  color: #ffd0be;
  font-weight: 950;
  box-shadow: 0 14px 32px rgba(24, 21, 17, 0.18);
  animation: pilotMove 3.4s ease-in-out infinite;
}

.process-motion-rollout b,
.process-visual-rollout b {
  position: absolute;
  top: 24%;
  width: 28px;
  height: 40px;
  border: 1px solid rgba(184, 147, 85, 0.34);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 34px rgba(24, 21, 17, 0.08);
  animation: rolloutCard 3s ease-in-out infinite;
}

.process-motion-rollout b::before,
.process-visual-rollout b::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(36, 89, 71, 0.28);
  transform: translateX(-50%);
}

.process-motion-rollout b::after,
.process-visual-rollout b::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 9px;
  height: 3px;
  border-radius: 999px;
  background: rgba(24, 21, 17, 0.24);
}

.process-motion-rollout b:nth-of-type(1),
.process-visual-rollout b:nth-of-type(1) { left: 16%; animation-delay: 0ms; }
.process-motion-rollout b:nth-of-type(2),
.process-visual-rollout b:nth-of-type(2) { left: calc(50% - 14px); animation-delay: 180ms; }
.process-motion-rollout b:nth-of-type(3),
.process-visual-rollout b:nth-of-type(3) { right: 16%; animation-delay: 360ms; }

.process-motion-rollout i,
.process-visual-rollout i {
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 22%;
  height: 2px;
  background: linear-gradient(90deg, rgba(184, 147, 85, 0.2), rgba(36, 89, 71, 0.7));
}

.process-motion-rollout i::after,
.process-visual-rollout i::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid rgba(36, 89, 71, 0.78);
  border-right: 2px solid rgba(36, 89, 71, 0.78);
  transform: translateY(-50%) rotate(45deg);
}

.process-motion-governance i,
.process-visual-governance i {
  position: absolute;
  inset: 22% auto auto 50%;
  width: 56px;
  height: 56px;
  border: 2px solid rgba(36, 89, 71, 0.22);
  border-top-color: rgba(36, 89, 71, 0.82);
  border-radius: 999px;
  transform: translateX(-50%);
  animation: governanceLoop 3s linear infinite;
}

.process-motion-governance b,
.process-visual-governance b {
  position: absolute;
  top: 44%;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(184, 147, 85, 0.36);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.72);
  animation: governancePulse 2.4s ease-in-out infinite;
}

.process-motion-governance b:nth-of-type(1),
.process-visual-governance b:nth-of-type(1) { left: 18%; }
.process-motion-governance b:nth-of-type(2),
.process-visual-governance b:nth-of-type(2) { left: calc(50% - 10px); animation-delay: 160ms; }
.process-motion-governance b:nth-of-type(3),
.process-visual-governance b:nth-of-type(3) { right: 18%; animation-delay: 320ms; }

.process-motion-governance span {
  position: absolute;
  left: 50%;
  bottom: 17%;
  width: 46%;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(184, 147, 85, 0.14), rgba(184, 147, 85, 0.55));
  transform: translateX(-50%);
}

.sticky-visual {
  grid-area: visual;
  position: sticky;
  top: 104px;
}

.story-visual-body {
  padding: 1.25rem;
}

.process-visual-stage {
  position: relative;
  min-height: 190px;
  margin-bottom: 1.2rem;
}

.process-visual-scene {
  position: absolute;
  inset: 0;
  min-height: 190px;
  opacity: 0;
  transform: translateY(8px) scale(0.99);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.process-visual-scene.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.process-visual-scene span,
.process-visual-scene em {
  position: absolute;
  border: 1px solid rgba(184, 147, 85, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  padding: 0.28rem 0.58rem;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
}

.process-visual-sentinel span:nth-of-type(1) { right: 10%; top: 18%; }
.process-visual-sentinel span:nth-of-type(2) { right: 18%; top: 47%; }
.process-visual-sentinel span:nth-of-type(3) { right: 8%; bottom: 14%; }

.process-visual-pilot em:nth-of-type(1) { left: 8%; bottom: 13%; }
.process-visual-pilot em:nth-of-type(2) { left: 38%; top: 14%; }
.process-visual-pilot em:nth-of-type(3) { right: 8%; bottom: 13%; }

.process-visual-rollout span:nth-of-type(1) { left: 9%; bottom: 14%; }
.process-visual-rollout span:nth-of-type(2) { left: 40%; bottom: 14%; }
.process-visual-rollout span:nth-of-type(3) { right: 9%; bottom: 14%; }

.process-visual-governance span:nth-of-type(1) { left: 10%; bottom: 14%; }
.process-visual-governance span:nth-of-type(2) { left: 43%; bottom: 14%; }
.process-visual-governance span:nth-of-type(3) { right: 10%; bottom: 14%; }

.story-visual-body h3 {
  margin-bottom: 0.65rem;
}

.story-visual-body > p[data-story-copy] {
  max-width: 78%;
}

.artifact-grid.mini {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.1rem;
}

.artifact-grid.mini .artifact {
  background: rgba(249, 248, 244, 0.82);
}

.artifact-grid.mini.about-help-grid {
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  gap: 1rem;
  align-self: stretch;
}

.about-help-grid .artifact {
  min-height: 172px;
  padding: clamp(1.15rem, 1.6vw, 1.35rem);
}

.about-help-grid .artifact strong {
  font-size: 1.08rem;
  line-height: 1.15;
}

.about-help-grid .artifact span {
  font-size: 0.96rem;
  line-height: 1.48;
}

.artifact span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Dedicated Velociti demo page */
.demo-main {
  background:
    linear-gradient(rgba(31, 31, 29, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 31, 29, 0.035) 1px, transparent 1px),
    var(--cream);
  background-size: 28px 28px;
}

.velociti-demo-stage {
  min-height: calc(100svh - 66px);
  padding: clamp(0.55rem, 1.4vw, 1rem) 0 clamp(1.2rem, 2vw, 1.8rem);
}

.demo-stage-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 0.65rem;
}

.demo-stage-intro h1 {
  max-width: 930px;
  margin: 0.14rem 0 0.28rem;
  font-size: clamp(1.85rem, 3vw, 2.8rem);
  line-height: 0.96;
}

.demo-stage-intro p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.9rem, 1vw, 0.98rem);
  line-height: 1.38;
}

.demo-stage-actions {
  display: grid;
  justify-items: end;
  gap: 0.58rem;
  min-width: 245px;
}

.demo-stage-actions span {
  border: 1px solid rgba(36, 89, 71, 0.2);
  border-radius: 999px;
  background: rgba(36, 89, 71, 0.065);
  color: var(--green);
  padding: 0.42rem 0.72rem;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.velociti-demo-v2 {
  --v2-cursor-x: 76%;
  --v2-cursor-y: 23%;
  display: grid;
  gap: 0.74rem;
}

.v2-stepper {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.52rem;
}

.v2-stepper button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  min-height: 42px;
  border: 1px solid rgba(215, 189, 131, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #474139;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.v2-stepper button span {
  color: var(--gold);
}

.v2-stepper button:hover,
.v2-stepper button:focus-visible,
.v2-stepper button.is-active {
  border-color: rgba(255, 180, 143, 0.52);
  background: #1d1c1b;
  color: #f7efe4;
}

.v2-app-shell {
  position: relative;
  height: clamp(470px, calc(100svh - 160px), 590px);
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(255, 180, 143, 0.32);
  border-radius: 18px;
  background: #101112;
  color: #e8e3dc;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.36);
}

.v2-app-shell,
.v2-app-shell * {
  box-sizing: border-box;
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
}

.v2-titlebar,
.v2-app-grid,
.v2-filter,
.v2-tabs,
.v2-action-row,
.v2-route-row,
.v2-scope-grid,
.v2-status-grid,
.v2-fact-row,
.v2-bottom,
.v2-evidence-chips {
  display: flex;
  align-items: center;
}

.v2-titlebar {
  height: 38px;
  gap: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #1b1c1e;
  padding: 0 0.8rem;
  color: rgba(241, 236, 229, 0.62);
  font-size: 0.74rem;
}

.v2-titlebar .velociti-mark {
  width: 24px;
  height: 24px;
  color: #171513;
  flex: 0 0 auto;
}

.v2-command {
  flex: 1;
  max-width: 520px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(241, 236, 229, 0.42);
  padding: 0.42rem 0.74rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v2-window-actions {
  display: flex;
  gap: 0.38rem;
}

.v2-window-actions i {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
}

.v2-app-grid {
  align-items: stretch;
  height: calc(100% - 106px);
  min-height: 0;
}

.v2-left,
.v2-center,
.v2-right {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.v2-left {
  flex: 0 0 268px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: #172235;
}

.v2-activity {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 0.62rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: #121416;
  padding: 0.72rem 0.22rem;
}

.v2-activity span {
  position: relative;
  width: 12px;
  height: 12px;
  border: 1.5px solid rgba(232, 227, 220, 0.55);
  border-radius: 3px;
}

.v2-activity span:nth-child(2) {
  border-radius: 999px;
}

.v2-activity span.is-active {
  border-color: rgba(255, 180, 143, 0.88);
  box-shadow: 0 0 0 8px rgba(255, 180, 143, 0.1);
}

.v2-activity .has-badge::after {
  content: "12";
  position: absolute;
  top: -9px;
  right: -10px;
  min-width: 18px;
  border-radius: 999px;
  background: #ffbd9f;
  color: #171513;
  font-size: 0.52rem;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
}

.v2-bots {
  display: grid;
  align-content: start;
  gap: 0.56rem;
  padding: 0.72rem;
}

.v2-pane-head {
  display: flex;
  justify-content: space-between;
  color: rgba(241, 236, 229, 0.74);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.v2-pane-head em {
  color: rgba(241, 236, 229, 0.42);
  font-style: normal;
  letter-spacing: 0;
  text-transform: none;
}

.v2-search,
.v2-settings-card,
.v2-chat-card,
.v2-decision-card,
.v2-bot-card,
.v2-workspace-panel,
.v2-terminal,
.v2-output-card,
.v2-model-card,
.v2-runtime-card,
.v2-evidence-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
}

.v2-search {
  color: rgba(241, 236, 229, 0.36);
  font-size: 0.72rem;
  padding: 0.62rem;
}

.v2-filter {
  flex-wrap: wrap;
  gap: 0.34rem;
}

.v2-filter span,
.v2-bot-card span,
.v2-bot-card em,
.v2-status-chip,
.v2-evidence-chips span {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(241, 236, 229, 0.68);
  padding: 0.22rem 0.44rem;
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 1;
}

.v2-filter span:first-child,
.v2-status-chip.is-good,
.v2-bot-card.is-primary em {
  border-color: rgba(105, 190, 143, 0.28);
  color: #9ee3b9;
}

.v2-bot-card {
  display: grid;
  gap: 0.42rem;
  padding: 0.68rem;
}

.v2-bot-card div {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.v2-bot-card strong {
  color: #f7efe4;
  font-size: 0.82rem;
  line-height: 1.15;
}

.v2-bot-card p {
  margin: 0;
  color: rgba(241, 236, 229, 0.48);
  font-size: 0.68rem;
  line-height: 1.35;
}

.v2-bot-card.is-primary {
  border-color: rgba(105, 190, 143, 0.36);
  box-shadow: inset 3px 0 0 rgba(105, 190, 143, 0.72);
}

.v2-center {
  flex: 1 1 auto;
  display: grid;
  grid-template-rows: 38px minmax(0, 1fr);
  background: #111820;
}

.v2-tabs {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v2-tabs span {
  height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(241, 236, 229, 0.44);
  padding: 0.76rem 0.8rem 0;
  font-size: 0.68rem;
  font-weight: 800;
}

.v2-tabs .is-active {
  border-top: 2px solid #ffbd9f;
  color: rgba(255, 255, 255, 0.84);
}

.v2-workspace {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  padding: 0.86rem;
}

.v2-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.42fr);
  gap: 0.72rem;
  min-height: 100%;
}

.v2-stage-main {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.v2-stage-kicker {
  color: #d7bd83;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.v2-stage h2,
.v2-stage h3,
.v2-stage p {
  margin: 0;
}

.v2-stage h2 {
  color: #f9f8f4;
  font-size: clamp(1.28rem, 2vw, 1.8rem);
  line-height: 1.04;
}

.v2-stage p {
  color: rgba(241, 236, 229, 0.62);
  font-size: 0.8rem;
  line-height: 1.45;
}

.v2-action-row {
  flex-wrap: wrap;
  gap: 0.44rem;
}

.v2-action-row button {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(241, 236, 229, 0.78);
  cursor: pointer;
  padding: 0.5rem 0.68rem;
  font-size: 0.68rem;
  font-weight: 900;
}

.v2-action-row button.is-primary {
  border-color: rgba(255, 180, 143, 0.58);
  background: #ffb18f;
  color: #171513;
}

.v2-action-row button:hover,
.v2-action-row button:focus-visible {
  border-color: rgba(255, 180, 143, 0.7);
}

.v2-scope-grid,
.v2-status-grid,
.v2-model-grid,
.v2-runtime-grid,
.v2-evidence-grid {
  display: grid;
  gap: 0.5rem;
}

.v2-scope-grid,
.v2-status-grid,
.v2-runtime-grid,
.v2-evidence-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.v2-workspace-panel,
.v2-output-card,
.v2-model-card,
.v2-runtime-card,
.v2-evidence-card {
  display: grid;
  gap: 0.34rem;
  min-width: 0;
  padding: 0.62rem;
}

.v2-workspace-panel small,
.v2-output-card small,
.v2-model-card small,
.v2-runtime-card small,
.v2-evidence-card small {
  color: rgba(241, 236, 229, 0.42);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.v2-workspace-panel strong,
.v2-output-card strong,
.v2-model-card strong,
.v2-runtime-card strong,
.v2-evidence-card strong {
  color: #9ee3b9;
  font-size: 0.92rem;
  line-height: 1.12;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}

.v2-workspace-panel span,
.v2-output-card span,
.v2-model-card span,
.v2-runtime-card span,
.v2-evidence-card span {
  color: rgba(241, 236, 229, 0.54);
  font-size: 0.7rem;
  line-height: 1.32;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}

.v2-terminal {
  display: grid;
  gap: 0.28rem;
  padding: 0.72rem;
  background: #0b0c0d;
}

.v2-terminal code {
  color: rgba(241, 236, 229, 0.7);
  font-size: 0.68rem;
  line-height: 1.35;
}

.v2-terminal code::before {
  content: "$ ";
  color: #ffbd9f;
}

.v2-right {
  flex: 0 0 262px;
  display: grid;
  align-content: start;
  gap: 0.64rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background: #151719;
  padding: 0.78rem;
}

.v2-chat-card,
.v2-decision-card,
.v2-settings-card {
  display: grid;
  gap: 0.38rem;
  padding: 0.72rem;
}

.v2-settings-card div {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.v2-chat-card span,
.v2-decision-card span,
.v2-settings-card span {
  color: #d7bd83;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.v2-chat-card strong,
.v2-decision-card strong,
.v2-settings-card strong {
  color: #f9f8f4;
  font-size: 0.88rem;
  line-height: 1.25;
}

.v2-decision-card p,
.v2-settings-card em {
  margin: 0;
  color: rgba(241, 236, 229, 0.52);
  font-size: 0.72rem;
  font-style: normal;
  line-height: 1.4;
}

.v2-bottom {
  height: 68px;
  gap: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #111213;
  padding: 0.68rem 0.8rem;
}

.v2-progress {
  flex: 0 0 150px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.v2-progress span {
  display: block;
  width: 12%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffbd9f, #69be8f);
  transition: width 420ms ease;
}

.v2-audit-feed {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 0;
}

.v2-audit-feed li {
  border-left: 2px solid rgba(215, 189, 131, 0.62);
  color: rgba(241, 236, 229, 0.6);
  padding-left: 0.44rem;
  font-size: 0.66rem;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v2-evidence-chips {
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.34rem;
  max-width: 260px;
}

.v2-detail-drawer {
  display: grid;
  gap: 0.74rem;
  border: 1px solid rgba(215, 189, 131, 0.32);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 80px rgba(31, 29, 24, 0.08);
  padding: 0.9rem;
}

.v2-detail-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
}

.v2-detail-head span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.v2-detail-head h2,
.v2-detail-head p {
  margin: 0;
}

.v2-detail-head h2 {
  margin-top: 0.2rem;
  font-size: clamp(1.28rem, 2vw, 1.85rem);
  line-height: 1.05;
}

.v2-detail-head p {
  max-width: 760px;
  margin-top: 0.36rem;
  color: var(--muted);
  line-height: 1.45;
}

.v2-detail-head strong {
  border: 1px solid rgba(36, 89, 71, 0.2);
  border-radius: 999px;
  background: rgba(36, 89, 71, 0.065);
  color: var(--green);
  padding: 0.42rem 0.68rem;
  font-size: 0.72rem;
  line-height: 1;
  white-space: nowrap;
}

.v2-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr) minmax(0, 0.9fr);
  gap: 0.72rem;
}

.v2-detail-panel {
  display: grid;
  align-content: start;
  gap: 0.52rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(249, 248, 244, 0.86);
  padding: 0.78rem;
}

.v2-detail-panel h3 {
  margin: 0;
  font-size: 1rem;
}

.v2-detail-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.42;
}

.v2-detail-list,
.v2-detail-table,
.v2-detail-log {
  display: grid;
  gap: 0.34rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.v2-detail-list li,
.v2-detail-table li,
.v2-detail-log li {
  display: grid;
  grid-template-columns: minmax(92px, 0.64fr) minmax(0, 1fr);
  gap: 0.5rem;
  border-bottom: 1px solid rgba(215, 189, 131, 0.22);
  padding-bottom: 0.34rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.3;
}

.v2-detail-list li:last-child,
.v2-detail-table li:last-child,
.v2-detail-log li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.v2-detail-list strong,
.v2-detail-table strong,
.v2-detail-log strong {
  color: var(--ink);
  font-size: 0.78rem;
}

.v2-detail-log li {
  grid-template-columns: 52px minmax(0, 1fr);
}

.v2-mini-workbook {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.v2-mini-workbook table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.72rem;
}

.v2-mini-workbook th,
.v2-mini-workbook td {
  border-bottom: 1px solid rgba(215, 189, 131, 0.22);
  padding: 0.32rem 0.38rem;
  text-align: left;
  vertical-align: top;
}

.v2-mini-workbook th {
  background: rgba(215, 189, 131, 0.12);
  color: var(--ink);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v2-mini-workbook td {
  color: var(--muted);
}

.v2-cursor {
  position: absolute;
  left: var(--v2-cursor-x);
  top: var(--v2-cursor-y);
  z-index: 8;
  width: 28px;
  height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2032%2032%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M6%203.5v24l6.7-6.4%203.1%207.5%204.2-1.8-3.2-7.3h8.7L6%203.5Z%27%20fill%3D%27%23f9f8f4%27%20stroke%3D%27%23101112%27%20stroke-width%3D%271.8%27%20stroke-linejoin%3D%27round%27/%3E%3Cpath%20d%3D%27M12.7%2021.1l3.1%207.5%27%20fill%3D%27none%27%20stroke%3D%27%23101112%27%20stroke-width%3D%271.8%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.45));
  pointer-events: none;
  transform: translate(-10%, -8%);
  transition: left 640ms cubic-bezier(0.22, 1, 0.36, 1), top 640ms cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-cursor::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 14px;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 184, 148, 0.84);
  border-radius: 999px;
  opacity: 0;
}

.velociti-demo-v2.is-animating .v2-cursor::after {
  animation: proofCursorClick 620ms ease both;
}

.velociti-demo-v2.is-animating .v2-workspace-panel,
.velociti-demo-v2.is-animating .v2-model-card.is-active,
.velociti-demo-v2.is-animating .v2-runtime-card,
.velociti-demo-v2.is-animating .v2-evidence-card {
  animation: proofPanelGlow 760ms ease both;
}

.velociti-demo-v2.is-animating .v2-audit-feed li:last-child {
  animation: proofAuditGlow 760ms ease both;
}

.velociti-demo-v2.is-animating .v2-detail-drawer {
  animation: proofPanelGlow 760ms ease both;
}

.velociti-demo-v2[data-active-step="request"] { --v2-cursor-x: 78%; --v2-cursor-y: 23%; }
.velociti-demo-v2[data-active-step="scope"] { --v2-cursor-x: 42%; --v2-cursor-y: 38%; }
.velociti-demo-v2[data-active-step="approve"] { --v2-cursor-x: 39%; --v2-cursor-y: 49%; }
.velociti-demo-v2[data-active-step="run"] { --v2-cursor-x: 57%; --v2-cursor-y: 56%; }
.velociti-demo-v2[data-active-step="runtime"] { --v2-cursor-x: 63%; --v2-cursor-y: 37%; }
.velociti-demo-v2[data-active-step="evidence"] { --v2-cursor-x: 78%; --v2-cursor-y: 83%; }

.v2-model-card.is-active,
.v2-runtime-card.is-active,
.v2-evidence-card.is-active {
  border-color: rgba(105, 190, 143, 0.38);
  background: rgba(105, 190, 143, 0.08);
}

.v2-route-row,
.v2-fact-row {
  flex-wrap: wrap;
  gap: 0.44rem;
}

.v2-route-row span,
.v2-fact-row span {
  border: 1px solid rgba(215, 189, 131, 0.2);
  border-radius: 999px;
  color: rgba(241, 236, 229, 0.66);
  padding: 0.3rem 0.52rem;
  font-size: 0.66rem;
  font-weight: 800;
}

.demo-support-section {
  padding-top: 2.2rem;
}

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

.demo-support-grid article {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.74);
  padding: 1.15rem;
}

.demo-support-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #111;
  color: #ecd491;
  font-weight: 900;
}

.demo-support-grid h2 {
  margin: 0.85rem 0 0.4rem;
  font-size: 1.32rem;
}

.demo-support-grid p {
  margin: 0;
  color: var(--muted);
}

@keyframes sentinelSweep {
  0%, 100% {
    transform: rotate(-13deg);
  }
  50% {
    transform: rotate(9deg);
  }
}

@keyframes pilotMove {
  0%, 100% {
    left: 14%;
  }
  50% {
    left: calc(100% - 48px);
  }
}

@keyframes rolloutCard {
  0%, 100% {
    transform: translateY(0);
  }
  45% {
    transform: translateY(-7px);
  }
}

@keyframes governanceLoop {
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}

@keyframes governancePulse {
  0%, 100% {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.72);
  }
  50% {
    transform: translateY(-5px);
    background: rgba(36, 89, 71, 0.13);
  }
}

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

.checklist-preview .dashboard-panel {
  margin: 1rem;
}

.floating-cta {
  display: none !important;
  position: fixed !important;
  top: auto !important;
  right: max(1.35rem, calc((100vw - 1180px) / 2)) !important;
  bottom: 1.35rem !important;
  left: auto !important;
  z-index: 999;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 18px 50px rgba(24, 21, 17, 0.22);
  padding: 0.85rem 1.12rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  opacity: 1;
  visibility: visible;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.floating-cta:hover,
.floating-cta:focus-visible {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}

body.has-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms ease;
}

body.has-reveal [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.has-reveal .claim-sim[data-reveal],
body.has-reveal .claim-sim[data-reveal].is-visible {
  transform: none;
}

.motion-safe .live-card {
  transition: opacity 220ms ease, transform 220ms ease;
}

.motion-safe.is-swapping .live-card {
  opacity: 0.32;
  transform: translateY(6px);
}

.scenario-panel.is-entering {
  animation: panelFade 240ms ease;
}

@keyframes panelFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 980px) {
  .story-step {
    grid-template-columns: minmax(0, 1fr);
  }

  .process-motion {
    min-height: 120px;
  }

  .story-visual-body > p[data-story-copy] {
    max-width: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 0.6rem;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.85rem 0.9rem;
  }

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

  .hero-grid,
  .split-grid,
  .section-head,
  .demo-page-prompt,
  .demo-grid,
  .demo-hero-grid,
  .demo-walkthrough,
  .workflow-tabs,
  .sticky-story,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .process-menu,
  .demo-chapter-nav {
    position: static;
  }

  .sticky-story {
    grid-template-areas:
      "copy"
      "visual"
      "steps";
  }

  .sticky-visual {
    position: relative;
    top: auto;
  }

  .pilot-hero {
    min-height: auto;
  }

  .pilot-hero-visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 2rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 380px;
  }

  .signal-card {
    left: 1rem;
  }

  .cards,
  .cards.two,
  .timeline,
  .detail-grid,
  .fit-grid,
  .industry-grid,
  .artifact-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .sidebar {
    position: static;
  }

  .claim-sim,
  .claim-sim-full,
  .claim-sim-grid,
  .velociti-grid,
  .velociti-preview-grid,
  .velociti-proof-grid,
  .ide-body,
  .sim-budget-layout,
  .sim-search-layout,
  .sim-approval-layout,
  .model-selector,
  .ocr-workbench,
  .review-queue,
  .audit-input-grid,
  .build-board-grid {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

  .claim-sim-rail {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .claim-sim-grid {
    min-height: auto;
  }

  .claim-status {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .ide-body {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .claim-sim .velociti-real-shell .ide-body {
    grid-template-columns: 38px minmax(0, 1fr);
    grid-template-areas:
      "activity panel"
      "activity workspace"
      "activity chat";
  }

  .ide-activity {
    grid-row: 1 / span 4;
  }

  .ide-panel,
  .ide-workspace,
  .ide-chat-pane {
    grid-column: 2;
  }

  .ide-edge-rail {
    display: none;
  }

  .ide-chat-pane,
  .ide-chat-pane.velociti-chat {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .ide-windowbar {
    grid-template-columns: 1fr;
    padding: 0.6rem 0.8rem;
  }

  .ide-command,
  .ide-window-actions {
    display: none;
  }

  .velociti-sidebar,
  .velociti-chat {
    border-right: 0;
    border-left: 0;
  }

  .velociti-sidebar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .velociti-chat {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .claim-progress,
  .claim-audit {
    grid-column: 1 / -1;
  }

  .timeline-chart {
    min-width: 600px;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 76px;
  }

  h1,
  h2,
  h3,
  .lead,
  .eyebrow {
    overflow-wrap: break-word;
  }

  h1 {
    font-size: 2.35rem;
    line-height: 0.98;
  }

  h2,
  .demo-section .section-head h2,
  .demo-hero-grid h1 {
    font-size: 1.95rem;
    line-height: 1;
  }

  .section {
    padding: 3rem 0;
  }

  .demo-section {
    padding-top: 2.35rem;
  }

  .demo-section .section-head {
    gap: 1rem;
    margin-bottom: 1.35rem;
  }

  .section-head p:last-child {
    font-size: 1rem;
  }

  .demo-page-prompt {
    border-radius: 14px;
    padding: 0.85rem;
  }

  .demo-page-flow {
    justify-content: flex-start;
  }

  .demo-page-flow i {
    display: none;
  }

  .artifact-section-head p:last-child {
    margin-left: 0;
  }

  section[id],
  .claim-sim[id] {
    scroll-margin-top: 70px;
  }

  .container,
  .nav {
    width: min(358px, calc(100% - 32px));
    margin-left: 16px;
    margin-right: 16px;
  }

  .nav {
    min-height: 68px;
  }

  .brand img {
    width: 116px;
  }

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

  .hero-actions,
  .actions {
    flex-direction: column;
  }

  .pilot-hero-copy {
    max-width: 100%;
  }

  .pilot-hero-copy h1 {
    max-width: 100%;
    font-size: 2.22rem;
    line-height: 0.98;
  }

  .pilot-hero .eyebrow {
    max-width: 100%;
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .pilot-hero .lead,
  .pilot-hero .trust-strip {
    max-width: 100%;
  }

  .button {
    width: 100%;
  }

  .faq-accordion summary {
    grid-template-columns: 1fr;
  }

  .faq-accordion summary::after {
    justify-self: start;
  }

  .cards,
  .cards.two,
  .timeline,
  .diagram-grid,
  .product-grid,
  .hardware-grid,
  .model-choice-grid,
  .metric-row,
  .industry-grid,
  .artifact-grid,
  .detail-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .fillout-embed,
  .fillout-iframe {
    min-height: 720px;
  }

  .workflow-sector-grid {
    grid-template-columns: 1fr;
  }

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

  .product-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-shell,
  .product-grid,
  .product-sidebar,
  .product-main,
  .dashboard-panel,
  .workflow-card,
  .claim-demo {
    min-width: 0;
  }

  .claim-demo {
    min-height: auto;
  }

  .product-topbar {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .product-title {
    flex: 1 1 190px;
    min-width: 0;
    font-size: 0.7rem;
    line-height: 1.25;
  }

  .product-topbar .badge {
    max-width: 100%;
    font-size: 0.6rem;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }

  .source-list-ui li,
  .audit-list li {
    align-items: flex-start;
  }

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

  .network-map {
    grid-template-columns: 1fr;
  }

  .network-map i {
    width: 2px;
    height: 26px;
    justify-self: center;
    background: linear-gradient(180deg, rgba(184, 147, 85, 0.2), var(--gold));
  }

  .claim-sim-rail,
  .policy-board,
  .bot-layout,
  .ide-record-head,
  .ide-metric-grid,
  .velociti-model-selector .model-option-grid,
  .runtime-grid,
  .runtime-grid.compact,
  .runtime-grid-large,
  .gitops-flow,
  .sim-node-row,
  .sim-model-grid,
  .model-option-grid,
  .sim-intake-grid,
  .claim-status,
  .sim-screen-head,
  .build-card-grid,
  .audit-metrics,
  .build-mini-metrics {
    grid-template-columns: 1fr;
  }

  .excel-head {
    display: none;
  }

  .excel-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid var(--line);
    border-radius: 10px;
    margin-bottom: 0.55rem;
    overflow: hidden;
  }

  .excel-sheet {
    border: 0;
    background: transparent;
  }

  .input-list li {
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }

  .system-chip-grid {
    grid-template-columns: 1fr;
  }

  .audit-metrics span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .audit-metrics span:last-child {
    border-bottom: 0;
  }

  .build-board-grid,
  .audit-input-grid {
    padding: 0.8rem;
  }

  .timeline-chart {
    min-width: 580px;
    padding: 0.85rem;
  }

  .claim-sim-app {
    order: 1;
  }

  .claim-sim-rail {
    order: 2;
  }

  .claim-workspace,
  .claim-status {
    padding: 0.85rem;
  }

  .claim-step {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .sim-meta {
    justify-content: flex-start;
  }

  .sim-canvas {
    padding: 0.8rem;
  }

  .velociti-canvas {
    padding: 0;
  }

  .velociti-titlebar,
  .velociti-preview-bar {
    flex-wrap: wrap;
  }

  .ide-menu {
    flex-wrap: wrap;
    gap: 0.45rem;
  }

  .ide-panel,
  .ide-record,
  .ide-chat-pane.velociti-chat {
    padding: 0.65rem;
  }

  .ide-tabs span {
    padding: 0.48rem 0.55rem;
  }

  .velociti-preview-bar em {
    flex-basis: 100%;
    margin-left: 0;
  }

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

  .gitops-flow i {
    width: 2px;
    height: 26px;
    justify-self: center;
  }

  .sim-table {
    min-width: 620px;
  }

  .sim-search-box {
    border-radius: 14px;
    line-height: 1.35;
  }

  .typed-query {
    white-space: normal;
  }

  .file-intake-list div {
    grid-template-columns: 1fr;
  }

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

  .control-row p {
    grid-column: auto;
  }

  .artifact-grid.mini {
    grid-template-columns: 1fr;
  }

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

  .signal-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: -2rem;
  }

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

  .floating-cta {
    left: calc(100vw - 16px) !important;
    left: calc(100svw - 16px) !important;
    right: auto !important;
    top: auto !important;
    bottom: 16px !important;
    width: auto;
    max-width: calc(100vw - 32px);
    min-height: 48px;
    border-radius: 999px;
    border-left: 1px solid rgba(255, 255, 255, 0.22);
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    padding: 0.74rem 0.95rem;
    font-size: 0.82rem;
    transform: translateX(-100%);
  }

  .floating-cta:hover,
  .floating-cta:focus-visible {
    transform: translateX(-100%);
  }
}

@media (max-width: 980px) {
  .proof-stage-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .operator-windowbar {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.45rem;
    padding: 0.65rem;
  }

  .operator-command,
  .operator-actions {
    display: none;
  }

  .operator-workbench {
    grid-template-columns: minmax(170px, 0.58fr) minmax(0, 1fr);
  }

  .operator-side {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-left: 0;
  }

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

  .velociti-live-proof[data-active-proof-step] {
    --cursor-x: 68%;
  }

  .velociti-live-proof[data-active-proof-step="request"],
  .velociti-live-proof[data-active-proof-step="evidence"] {
    --cursor-y: 78%;
  }

  .velociti-live-proof[data-active-proof-step="gate"],
  .velociti-live-proof[data-active-proof-step="launch"],
  .velociti-live-proof[data-active-proof-step="model"],
  .velociti-live-proof[data-active-proof-step="runtime"] {
    --cursor-y: 42%;
  }

  .local-boundary-visual {
    grid-template-columns: 1fr;
  }

  .boundary-vs {
    justify-self: center;
  }
}

@media (max-width: 680px) {
  .floating-cta {
    left: 16px !important;
    right: 16px !important;
    bottom: 14px !important;
    width: auto !important;
    max-width: none;
    transform: none !important;
  }

  .floating-cta:hover,
  .floating-cta:focus-visible {
    transform: none !important;
  }

  .proof-stage-strip {
    grid-template-columns: 1fr 1fr;
    gap: 0.42rem;
  }

  .proof-stage-strip button {
    min-height: 38px;
    font-size: 0.66rem;
  }

  .operator-workbench,
  .operator-side {
    grid-template-columns: 1fr;
  }

  .operator-left,
  .operator-side {
    padding: 0.7rem;
  }

  .operator-main {
    min-height: auto;
  }

  .operator-focus-card h3 {
    font-size: 1.34rem;
  }

  .operator-focus-card p {
    font-size: 0.86rem;
  }

  .operator-state-grid,
  .live-proof-caption {
    grid-template-columns: 1fr;
  }

  .operator-flow-map i {
    display: none;
  }

  .proof-cursor {
    display: none;
  }

  .local-boundary-visual {
    padding: 0.55rem;
    border-radius: 14px;
  }

  .boundary-panel {
    padding: 0.9rem;
  }

  .boundary-panel-head {
    display: block;
  }

  .boundary-panel-head strong {
    max-width: none;
    margin-top: 0.38rem;
    text-align: left;
  }

  .workflow-boundary-summary > p {
    font-size: 1rem;
  }

  .boundary-mini-visual {
    padding: 0.6rem;
  }

  .mini-path {
    grid-template-columns: 1fr;
  }

  .mini-path i {
    width: 2px;
    height: 20px;
    justify-self: center;
    background: rgba(36, 89, 71, 0.55);
  }

  .mini-path i::after {
    top: auto;
    right: auto;
    bottom: -1px;
    left: 50%;
    border-top: 0;
    border-left: 0;
    border-right: 2px solid var(--success);
    border-bottom: 2px solid var(--success);
    transform: translateX(-50%) rotate(45deg);
  }

  .mini-path-external i {
    background: repeating-linear-gradient(180deg, rgba(123, 46, 46, 0.5) 0 6px, transparent 6px 10px);
  }

  .mini-path-external i::after {
    right: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .mini-path-external i::before {
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-38deg);
  }

  .boundary-flow-map,
  .external-flow-map {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .boundary-node,
  .external-cloud {
    min-height: auto;
  }

  .boundary-arrow {
    width: 3px;
    height: 26px;
    justify-self: center;
    background: linear-gradient(180deg, rgba(36, 89, 71, 0.35), rgba(36, 89, 71, 0.95));
  }

  .boundary-arrow::after {
    top: auto;
    right: auto;
    bottom: -1px;
    left: 50%;
    border-top: 0;
    border-left: 0;
    border-right: 3px solid var(--success);
    border-bottom: 3px solid var(--success);
    transform: translateX(-50%) rotate(45deg);
  }

  .external-block-line {
    width: 3px;
    height: 40px;
    justify-self: center;
    background: repeating-linear-gradient(180deg, rgba(123, 46, 46, 0.5) 0 8px, transparent 8px 13px);
  }

  .external-block-line span {
    left: calc(50% + 28px);
    top: 50%;
    transform: translateY(-50%);
  }
}

@media (max-width: 980px) {
  .audit-evidence-grid {
    grid-template-columns: 1fr;
  }

  .audit-trail-list li {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .audit-trail-list span,
  .audit-trail-list em {
    grid-column: 2;
  }

  .audit-trail-list em {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .audit-evidence-grid {
    padding: 0.65rem;
  }

  .audit-trail-head {
    display: block;
  }

  .audit-trail-head strong {
    display: block;
    margin-top: 0.25rem;
    text-align: left;
  }

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

@media (max-width: 980px) {
  .demo-stage-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .demo-stage-actions {
    justify-items: start;
    min-width: 0;
  }

  .demo-stage-intro h1 {
    max-width: 760px;
    font-size: clamp(1.95rem, 6.6vw, 3.05rem);
  }

  .v2-stepper {
    display: flex;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    scrollbar-width: none;
  }

  .v2-stepper button {
    flex: 0 0 auto;
    min-width: 144px;
  }

  .v2-app-shell {
    height: auto;
    min-height: 0;
  }

  .v2-app-grid,
  .v2-bottom,
  .v2-stage {
    display: grid;
    grid-template-columns: 1fr;
  }

  .v2-app-grid {
    height: auto;
  }

  .v2-left {
    grid-template-columns: 32px minmax(0, 1fr);
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .v2-pane-head,
  .v2-search,
  .v2-filter {
    grid-column: 1 / -1;
  }

  .v2-center {
    min-height: 430px;
  }

  .v2-right {
    grid-template-columns: 1fr;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .v2-bottom {
    height: auto;
  }

  .v2-progress,
  .v2-evidence-chips {
    max-width: none;
    width: 100%;
  }

  .v2-audit-feed {
    grid-template-columns: 1fr;
  }

  .v2-cursor {
    display: none;
  }

  .demo-support-grid {
    grid-template-columns: 1fr;
  }

  .v2-detail-head,
  .v2-detail-grid {
    grid-template-columns: 1fr;
  }

  .v2-detail-head strong {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .velociti-demo-stage {
    padding-top: 0.75rem;
  }

  .v2-titlebar {
    gap: 0.42rem;
    padding: 0 0.56rem;
  }

  .v2-titlebar span:nth-of-type(n+5):not(.velociti-mark) {
    display: none;
  }

  .v2-command {
    max-width: none;
  }

  .v2-bots,
  .v2-right,
  .v2-scope-grid,
  .v2-status-grid,
  .v2-model-grid,
  .v2-runtime-grid,
  .v2-evidence-grid {
    grid-template-columns: 1fr;
  }

  .v2-tabs {
    overflow-x: auto;
  }

  .v2-tabs span {
    flex: 0 0 auto;
  }

  .v2-center {
    min-height: 500px;
  }

  .v2-workspace {
    padding: 0.65rem;
  }

  .v2-stage h2 {
    font-size: 1.42rem;
  }

  .v2-terminal code {
    white-space: normal;
  }
}

/* Local AI system hero */
.pilot-hero-visual.local-ai-system {
  cursor: default;
}

.local-system-frame {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid rgba(184, 147, 85, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(249, 248, 244, 0.95)),
    var(--paper);
  box-shadow: 0 30px 80px rgba(36, 33, 29, 0.15);
  padding: 0.85rem;
}

.local-system-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 28px;
  border-bottom: 1px solid rgba(221, 215, 202, 0.86);
  padding: 0 0.22rem 0.65rem;
  color: var(--soft);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.local-system-topline strong {
  color: var(--gold);
  font-size: 0.7rem;
  text-align: right;
}

.local-system-canvas {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.9fr 1.05fr;
  grid-template-rows: minmax(152px, 1fr) 92px;
  gap: 0.72rem 2.1rem;
  min-height: 272px;
  padding: 0.72rem 0 0.65rem;
}

.system-node {
  position: relative;
  z-index: 2;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(221, 215, 202, 0.95);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.86);
  padding: 0.72rem;
  opacity: 1;
  transform: translateY(0);
}

.is-system-ready .system-node,
.is-system-ready .system-route {
  transition: opacity 420ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.system-node small {
  display: block;
  margin-bottom: 0.42rem;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-node h3,
.system-node blockquote,
.system-node p {
  margin: 0;
}

.system-node h3,
.system-node blockquote {
  font-family: inherit;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.25;
}

.system-node p,
.system-meta {
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.35;
}

.system-meta {
  display: block;
  margin-top: 0.72rem;
  border-top: 1px solid rgba(221, 215, 202, 0.78);
  padding-top: 0.48rem;
}

.system-node-summary {
  display: none;
}

.system-request {
  grid-column: 1;
  grid-row: 1;
}

.system-control {
  grid-column: 2;
  grid-row: 1;
  border-color: rgba(36, 33, 29, 0.9);
  background: var(--stone);
  color: var(--white);
}

.system-control small {
  color: var(--gold-2);
}

.system-control h3 {
  margin-bottom: 0.55rem;
}

.system-control em {
  display: block;
  margin-top: 0.54rem;
  color: #9bcfba;
  font-size: 0.61rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.25;
}

.system-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.28rem;
}

.system-checks span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  padding: 0.28rem 0.3rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.55rem;
  font-weight: 700;
  text-align: center;
}

.system-workspace {
  grid-column: 3;
  grid-row: 1;
}

.system-work-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.45rem;
  border-top: 1px solid rgba(221, 215, 202, 0.72);
  padding: 0.43rem 0;
  color: var(--muted);
  font-size: 0.6rem;
  line-height: 1.2;
}

.system-work-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.system-work-row b {
  color: var(--success);
  font-size: 0.55rem;
  white-space: nowrap;
}

.system-answer {
  grid-column: 1 / 3;
  grid-row: 2;
  display: grid;
  grid-template-columns: 82px 1fr;
  column-gap: 0.72rem;
  align-content: center;
}

.system-answer small {
  grid-row: 1 / 3;
  align-self: center;
  margin: 0;
}

.system-answer p {
  margin-top: 0.25rem;
}

.system-history {
  grid-column: 3;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.12rem 0.48rem;
  align-content: center;
}

.system-history small {
  grid-column: 1;
  margin: 0;
}

.system-history-search {
  grid-column: 2;
  grid-row: 1;
  border: 1px solid rgba(221, 215, 202, 0.9);
  border-radius: 4px;
  padding: 0.16rem 0.34rem;
  color: var(--soft);
  font-size: 0.52rem;
  white-space: nowrap;
}

.system-history h3,
.system-history p {
  grid-column: 1 / 3;
}

.system-history p {
  margin-top: 0.16rem;
  white-space: nowrap;
}

.system-route {
  position: absolute;
  z-index: 1;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  opacity: 0.2;
  transform: scaleX(0.2);
  transform-origin: left center;
}

.system-route::after {
  content: "";
  position: absolute;
  top: -3px;
  right: -1px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.route-request {
  top: 31%;
  left: 30.2%;
  width: 7.2%;
}

.route-work {
  top: 31%;
  left: 62.7%;
  width: 7.2%;
}

.route-retain {
  top: 77%;
  left: 62.7%;
  width: 7.2%;
}

.is-system-ready .system-node {
  opacity: 0.46;
  transform: translateY(6px);
}

.is-system-ready[data-stage="request"] .system-request,
.is-system-ready[data-stage="govern"] .system-control,
.is-system-ready[data-stage="work"] .system-workspace,
.is-system-ready[data-stage="answer"] .system-answer,
.is-system-ready[data-stage="retain"] .system-history {
  opacity: 1;
  transform: translateY(0);
}

.is-system-ready[data-stage="govern"] .system-request,
.is-system-ready[data-stage="work"] .system-control,
.is-system-ready[data-stage="answer"] .system-workspace,
.is-system-ready[data-stage="retain"] .system-node:not(.system-history) {
  opacity: 0.66;
  transform: translateY(0);
}

.is-system-ready[data-stage="request"] .route-request,
.is-system-ready[data-stage="govern"] .route-request,
.is-system-ready[data-stage="work"] .route-request,
.is-system-ready[data-stage="work"] .route-work,
.is-system-ready[data-stage="answer"] .route-work,
.is-system-ready[data-stage="retain"] .system-route {
  opacity: 1;
  transform: scaleX(1);
}

.is-system-ready[data-stage="retain"] .route-retain {
  opacity: 1;
  transform: scaleX(1);
}

.local-system-stages {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(221, 215, 202, 0.9);
  border-radius: 6px;
  overflow: hidden;
}

.local-system-stages button {
  min-height: 34px;
  border: 0;
  border-left: 1px solid rgba(221, 215, 202, 0.9);
  background: rgba(255, 255, 255, 0.72);
  color: var(--soft);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.local-system-stages button:first-child {
  border-left: 0;
}

.local-system-stages button.is-active {
  background: var(--stone);
  color: var(--gold-2);
}

.local-system-stages button:focus-visible {
  position: relative;
  z-index: 2;
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

@media (min-width: 761px) and (max-width: 1120px) {
  .pilot-hero-visual.local-ai-system {
    width: min(940px, calc(100vw - 2rem));
  }
}

@media (max-width: 760px) {
  .pilot-hero .trust-strip {
    display: none;
  }

  .pilot-hero-visual.local-ai-system {
    display: block;
    width: calc(100% - 1.5rem);
    margin-top: 1rem;
  }

  .local-system-frame {
    min-height: 220px;
    padding: 0.58rem;
  }

  .local-system-topline {
    min-height: 24px;
    gap: 0.5rem;
    padding-bottom: 0.45rem;
    font-size: 0.52rem;
    letter-spacing: 0.05em;
  }

  .local-system-topline strong {
    max-width: 52%;
    font-size: 0.53rem;
    line-height: 1.2;
  }

  .local-system-canvas {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 62px 62px;
    gap: 0.38rem;
    min-height: 136px;
    padding: 0.5rem 0;
  }

  .system-node {
    display: grid;
    align-content: center;
    justify-items: center;
    padding: 0.34rem;
    text-align: center;
  }

  .system-node small {
    margin: 0 0 0.18rem;
    font-size: 0.46rem;
    letter-spacing: 0.04em;
  }

  .system-node-summary {
    display: block;
    font-size: 0.58rem;
    line-height: 1.15;
  }

  .system-node blockquote,
  .system-node h3,
  .system-node p,
  .system-meta,
  .system-checks,
  .system-control em,
  .system-work-row,
  .system-history-search {
    display: none;
  }

  .system-request {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .system-control {
    grid-column: 3 / 5;
    grid-row: 1;
  }

  .system-workspace {
    grid-column: 5 / 7;
    grid-row: 1;
  }

  .system-answer {
    grid-column: 1 / 4;
    grid-row: 2;
  }

  .system-history {
    grid-column: 4 / 7;
    grid-row: 2;
  }

  .system-route {
    display: none;
  }

  .local-system-stages button {
    min-height: 28px;
    font-size: 0.52rem;
    letter-spacing: 0;
  }
}

/* Cinematic local AI hero */
.cinematic-local-ai {
  isolation: isolate;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(1500px, 78vw);
  cursor: default;
}

.cinematic-local-ai > .local-system-frame {
  display: none;
}

.cinematic-frame {
  position: relative;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.cinematic-scene {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center right;
  filter: saturate(0.9) contrast(1.06) brightness(0.96);
  opacity: 1;
}

.is-system-ready .cinematic-scene {
  transition: opacity 700ms ease;
}

.cinematic-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, var(--paper) 0%, rgba(249, 248, 244, 0.82) 5%, rgba(249, 248, 244, 0.28) 10%, transparent 15%, transparent 52%, rgba(249, 248, 244, 0.28) 58%, rgba(249, 248, 244, 0.78) 67%, rgba(249, 248, 244, 0.96) 76%, var(--paper) 90%),
    linear-gradient(to right, var(--paper) 0%, rgba(249, 248, 244, 0.98) 8%, rgba(249, 248, 244, 0.92) 18%, rgba(249, 248, 244, 0.78) 26%, rgba(249, 248, 244, 0.38) 34%, transparent 42%);
  pointer-events: none;
}

@media (max-width: 1120px) {
  .cinematic-local-ai {
    top: auto;
    right: auto;
    bottom: auto;
    width: min(940px, calc(100vw - 2rem));
  }

  .cinematic-frame {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .cinematic-shade {
    background:
      linear-gradient(to bottom, rgba(249, 248, 244, 0.72) 0%, transparent 10%, transparent 52%, rgba(249, 248, 244, 0.34) 59%, rgba(249, 248, 244, 0.82) 68%, rgba(249, 248, 244, 0.97) 78%, var(--paper) 92%),
      linear-gradient(to right, rgba(249, 248, 244, 0.72) 0%, transparent 9%, transparent 94%, rgba(249, 248, 244, 0.38) 100%);
  }

}

@media (max-width: 760px) {
  .cinematic-frame {
    min-height: 0;
    aspect-ratio: 1.7;
  }

  .cinematic-scene {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .cinematic-shade {
    background:
      linear-gradient(to bottom, rgba(249, 248, 244, 0.58) 0%, transparent 8%, transparent 50%, rgba(249, 248, 244, 0.4) 58%, rgba(249, 248, 244, 0.86) 68%, rgba(249, 248, 244, 0.98) 80%, var(--paper) 94%),
      linear-gradient(to right, rgba(249, 248, 244, 0.44) 0%, transparent 6%, transparent 94%, rgba(249, 248, 244, 0.3) 100%);
  }

}

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

  body.has-reveal [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
