:root {
  --bg: #08090b;
  --bg-soft: #0b0d10;
  --panel: rgba(15, 17, 21, 0.84);
  --panel-solid: #0d0f12;
  --line: rgba(255, 255, 255, 0.085);
  --line-strong: rgba(255, 255, 255, 0.145);
  --text: #f0f1f3;
  --muted: #8d929c;
  --muted-2: #60656d;
  --mint: #91a7ff;
  --mint-rgb: 145, 167, 255;
  --violet: #745bff;
  --violet-rgb: 116, 91, 255;
  --hot: #ff6ab7;
  --hot-rgb: 255, 106, 183;
  --ice: #d2d8ea;
  --shell: min(1360px, calc(100vw - 80px));
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    var(--bg);
  background-size: 80px 80px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: 0.08;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 17% 23%, rgba(255, 255, 255, 0.045) 0 0.7px, transparent 0.9px),
    radial-gradient(circle at 71% 61%, rgba(255, 255, 255, 0.035) 0 0.6px, transparent 0.8px);
  background-size: 13px 17px, 19px 23px;
}

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

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

button {
  color: inherit;
  font: inherit;
}

::selection {
  color: #090b10;
  background: var(--mint);
}

.ambient {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
}

.ambient--one {
  top: 70px;
  right: -220px;
  width: 700px;
  height: 700px;
  opacity: 0.035;
  background: var(--violet);
}

.ambient--two {
  top: 1000px;
  left: -300px;
  width: 620px;
  height: 620px;
  opacity: 0.025;
  background: var(--mint);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: 100%;
  height: 80px;
  padding: 0 max(24px, calc((100vw - 1360px) / 2));
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: rgba(8, 9, 11, 0.78);
  box-shadow: none;
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
  transition:
    background 240ms ease,
    border-color 240ms ease,
    top 240ms ease;
}

.site-header.is-scrolled {
  top: 0;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(8, 9, 11, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 15px;
}

.brand-mark {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 42px;
  height: 30px;
  filter: drop-shadow(0 12px 22px rgba(82, 54, 210, 0.22));
}

.brand-mark span {
  position: absolute;
  left: 2px;
  width: 40px;
  height: 12px;
  border: 0;
  clip-path: polygon(20% 0, 100% 0, 100% 42%, 80% 100%, 0 100%, 0 58%);
  background: linear-gradient(105deg, var(--slab-top-a), var(--slab-top-b));
}

.brand-mark span:nth-child(1) {
  top: 0;
  z-index: 3;
  --slab-top-a: #ff73bb;
  --slab-top-b: #9964ff;
}

.brand-mark span:nth-child(2) {
  top: 9px;
  z-index: 2;
  --slab-top-a: #889bff;
  --slab-top-b: #6852eb;
}

.brand-mark span:nth-child(3) {
  top: 18px;
  z-index: 1;
  --slab-top-a: #ffffff;
  --slab-top-b: #c1caef;
}

.brand-name {
  font-size: 29px;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #aeb6c1;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--mint);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

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

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  height: 38px;
  padding: 0 15px;
  gap: 20px;
  border: 1px solid rgba(var(--mint-rgb), 0.32);
  border-radius: 2px;
  color: #d9dde6;
  background: rgba(255, 255, 255, 0.025);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.header-cta:hover {
  color: #0a0b0d;
  background: #f0f1f3;
  transform: translateY(-1px);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  min-height: 1260px;
  padding-top: 164px;
  padding-bottom: 112px;
  gap: 72px;
}

.hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  column-gap: 64px;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .hero-meta {
  grid-column: 1 / -1;
}

.hero-copy .hero-lead {
  grid-column: 1;
}

.hero-copy .hero-actions {
  grid-column: 2;
  justify-content: flex-end;
  margin-bottom: 36px;
}

.hero::before {
  position: absolute;
  top: 1%;
  right: 7%;
  z-index: -1;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(var(--violet-rgb), 0.085), transparent 67%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 38px;
  gap: 10px;
  color: #8e949e;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 13px rgba(var(--mint-rgb), 0.7);
}

.eyebrow-dot::after {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(var(--mint-rgb), 0.35);
  border-radius: 50%;
  content: "";
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

.hero h1 {
  max-width: 1160px;
  margin-bottom: 42px;
  font-size: clamp(78px, 8.4vw, 132px);
  font-weight: 700;
  line-height: 0.91;
  letter-spacing: -0.076em;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(90deg, #91a7ff 0%, #b393ff 43%, #ff78bd 88%);
  background-clip: text;
  -webkit-background-clip: text;
}

.heading-gradient {
  color: transparent;
  background: linear-gradient(90deg, #a9b7ff 0%, #b89cff 48%, #ef86bc 100%);
  background-clip: text;
  -webkit-background-clip: text;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-lead {
  max-width: 730px;
  margin-bottom: 36px;
  color: #a6aab2;
  font-size: 21px;
  line-height: 1.5;
}

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

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 2px;
  gap: 28px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button--primary {
  color: #0a0b0d;
  background: #f0f1f3;
  box-shadow: none;
}

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

.button--ghost {
  border-color: var(--line-strong);
  color: #bac2cb;
  background: rgba(255, 255, 255, 0.025);
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--text);
  transform: translateY(-2px);
}

.button-arrow {
  font-size: 15px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  margin-top: 3px;
  gap: 8px;
}

.hero-meta span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 1px;
  color: #7d8792;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: none;
}

.visual-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: rgba(9, 10, 13, 0.9);
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(10px);
}

.visual-frame::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, #5d76ff 0%, #9f73ff 54%, #ff69b4 100%);
}

.frame-head,
.frame-foot {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
  color: #78838e;
  background: rgba(9, 12, 17, 0.64);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.07em;
}

.frame-title,
.frame-foot > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.live-dot,
.status-ok {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 10px rgba(var(--mint-rgb), 0.7);
}

.frame-status {
  padding: 4px 7px;
  border: 1px solid rgba(var(--mint-rgb), 0.2);
  border-radius: 4px;
  color: var(--mint);
}

.canvas-wrap {
  position: relative;
  height: 620px;
  background:
    radial-gradient(circle at 48% 50%, rgba(var(--violet-rgb), 0.11), transparent 28%),
    radial-gradient(circle at 84% 48%, rgba(var(--hot-rgb), 0.065), transparent 22%),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: auto, auto, 40px 40px, 40px 40px;
}

#data-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.processor-label {
  position: absolute;
  top: 50%;
  left: 49%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(var(--mint-rgb), 0.62);
  border-radius: 2px;
  background:
    linear-gradient(145deg, rgba(var(--mint-rgb), 0.16), rgba(var(--hot-rgb), 0.08)),
    rgba(8, 14, 17, 0.88);
  box-shadow:
    0 0 0 16px rgba(var(--mint-rgb), 0.02),
    0 0 70px rgba(var(--violet-rgb), 0.2),
    inset 0 0 28px rgba(var(--mint-rgb), 0.06);
  transform: translate(-50%, -50%);
}

.processor-label::before,
.processor-label::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(var(--mint-rgb), 0.14);
  border-radius: 0;
  inset: -18px;
}

.processor-label::after {
  border-color: rgba(var(--violet-rgb), 0.09);
  inset: -36px;
}

.processor-label span,
.processor-label small {
  position: absolute;
  transform: none;
}

.processor-label span {
  color: #eafff8;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.processor-label small {
  margin-top: 41px;
  color: var(--mint);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.18em;
}

.flow-label {
  position: absolute;
  top: 25px;
  z-index: 3;
  color: #545a64;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.flow-label--input {
  left: 18px;
}

.flow-label--core {
  left: 49%;
  transform: translateX(-50%);
}

.flow-label--output {
  right: 18px;
}

.ai-ready-output {
  position: absolute;
  top: 50%;
  left: 68%;
  z-index: 2;
  width: 28%;
  min-width: 250px;
  border: 1px solid rgba(var(--mint-rgb), 0.34);
  background: rgba(12, 14, 18, 0.94);
  box-shadow:
    0 28px 75px rgba(0, 0, 0, 0.34),
    22px 22px 0 rgba(var(--hot-rgb), 0.035);
  transform: translateY(-50%);
}

.ai-ready-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  color: #b8c4e1;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.ai-ready-head i {
  width: 7px;
  height: 7px;
  background: var(--mint);
  box-shadow: 0 0 8px rgba(var(--mint-rgb), 0.55);
}

.ai-ready-row {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  min-height: 66px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ai-ready-row span {
  color: #4f5660;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
}

.ai-ready-row strong {
  color: #a8adb7;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.ai-ready-foot {
  padding: 14px 18px;
  color: #58606c;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.07em;
}

.frame-foot {
  height: 58px;
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.frame-metric strong {
  color: #bdc6cf;
  font-weight: 500;
}

.visual-caption {
  display: flex;
  align-items: center;
  width: 78%;
  margin: 14px 0 0 auto;
  padding-right: 6px;
  gap: 13px;
  color: #77818d;
  font-size: 11px;
  line-height: 1.5;
}

.visual-caption span {
  color: var(--mint);
  font-family: "SFMono-Regular", Consolas, monospace;
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5f6872;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.scroll-cue span {
  position: relative;
  display: block;
  width: 36px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.scroll-cue span::after {
  position: absolute;
  width: 14px;
  height: 1px;
  content: "";
  background: var(--mint);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  from {
    transform: translateX(-15px);
  }
  to {
    transform: translateX(40px);
  }
}

.trust-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  overflow: hidden;
  height: 82px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.012);
}

.trust-label {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  align-self: stretch;
  padding: 0 max(32px, calc((100vw - 1220px) / 2));
  padding-right: 42px;
  border-right: 1px solid var(--line);
  color: #6d7782;
  background: var(--bg);
  white-space: nowrap;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 34px;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  color: #b5bdc6;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.11em;
}

.marquee-track i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(var(--mint-rgb), 0.75);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.problem,
.pipeline,
.capabilities,
.security,
.pilot {
  padding-top: 146px;
}

.section-intro {
  display: grid;
  grid-template-columns: 1.25fr 0.65fr;
  align-items: end;
  margin-bottom: 58px;
  gap: 90px;
}

.section-index,
.feature-code {
  display: block;
  margin-bottom: 22px;
  color: var(--mint);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-intro h2,
.answer-heading h2,
.capabilities-head h2,
.security-copy h2,
.pilot-panel h2,
.system-copy h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 4.1vw, 62px);
  font-weight: 520;
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.section-intro h2 em,
.answer-heading h2 em {
  color: #949da9;
  font-style: normal;
  font-weight: 400;
}

.section-intro > p {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

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

.problem-card {
  position: relative;
  min-height: 420px;
  padding: 28px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.014);
  transition:
    background 260ms ease,
    transform 260ms var(--ease);
}

.problem-card:hover {
  z-index: 2;
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-3px);
}

.problem-card--accent {
  background:
    radial-gradient(circle at 50% 37%, rgba(var(--mint-rgb), 0.095), transparent 37%),
    rgba(255, 255, 255, 0.018);
}

.card-number {
  color: #616b77;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
}

.problem-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 540;
  letter-spacing: -0.03em;
}

.problem-card p {
  max-width: 325px;
  margin-bottom: 0;
  color: #828c97;
  font-size: 13px;
  line-height: 1.65;
}

.chaos-stack {
  position: relative;
  height: 208px;
}

.mini-file {
  position: absolute;
  top: 42px;
  left: 50%;
  display: flex;
  align-items: flex-end;
  width: 92px;
  height: 122px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  color: #aeb6c0;
  background:
    repeating-linear-gradient(180deg, transparent 0 13px, rgba(255, 255, 255, 0.07) 14px 15px),
    #10141b;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.3);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
}

.mini-file--pdf {
  transform: translateX(-105%) rotate(-9deg);
}

.mini-file--scan {
  z-index: 2;
  border-color: rgba(var(--mint-rgb), 0.3);
  transform: translateX(-50%) translateY(-12px);
}

.mini-file--xls {
  transform: translateX(5%) rotate(8deg);
}

.quality-graphic {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 208px;
}

.quality-graphic > span {
  color: #d9fff2;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 44px;
  letter-spacing: -0.07em;
}

.quality-graphic > span::after {
  color: var(--mint);
  content: "%";
  font-size: 13px;
}

.quality-graphic div {
  width: 138px;
  height: 3px;
  margin: 14px 0 11px;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.09);
}

.quality-graphic i {
  display: block;
  width: 98.4%;
  height: 100%;
  background: linear-gradient(90deg, var(--violet), var(--mint));
  box-shadow: 0 0 10px var(--mint);
}

.quality-graphic small {
  color: #69737e;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
  letter-spacing: 0.13em;
}

.citation-graphic {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 208px;
  padding: 25px 42px;
  border-left: 1px solid rgba(var(--violet-rgb), 0.15);
}

.citation-graphic::before {
  position: absolute;
  top: 56px;
  left: 22px;
  color: rgba(var(--violet-rgb), 0.65);
  content: "“";
  font-family: Georgia, serif;
  font-size: 40px;
}

.quote-line {
  width: 66%;
  height: 5px;
  margin-bottom: 10px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.09);
}

.quote-line--long {
  width: 100%;
}

.citation-graphic mark {
  width: fit-content;
  margin-top: 16px;
  padding: 6px 8px;
  border: 1px solid rgba(var(--violet-rgb), 0.22);
  border-radius: 4px;
  color: #b9b3f9;
  background: rgba(var(--violet-rgb), 0.07);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
}

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

.system-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  min-height: 650px;
  padding: 74px 65px;
  border: 1px solid var(--line);
  border-radius: 18px;
  gap: 76px;
  background:
    radial-gradient(circle at 72% 45%, rgba(var(--violet-rgb), 0.08), transparent 28%),
    linear-gradient(125deg, rgba(255, 255, 255, 0.025), transparent 50%),
    var(--panel-solid);
}

.system-copy h2 {
  margin-bottom: 26px;
  font-size: clamp(36px, 3.7vw, 55px);
}

.system-copy p {
  max-width: 490px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.system-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.system-tags span {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: #78828e;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
}

.layer-diagram {
  display: grid;
  grid-template-columns: 1fr 48px 1.1fr 48px 1.08fr;
  align-items: center;
  min-width: 0;
}

.layer-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 300px;
  gap: 10px;
}

.layer-label {
  margin-bottom: 10px;
  color: #5e6873;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
  letter-spacing: 0.1em;
}

.source-item,
.output-item {
  display: flex;
  align-items: center;
  min-width: 0;
  height: 50px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  gap: 8px;
  color: #aab3bd;
  background: rgba(255, 255, 255, 0.02);
  font-size: 10px;
}

.source-item b {
  width: 39px;
  color: #cbd3dc;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
}

.source-item small {
  overflow: hidden;
  color: #626d78;
  text-overflow: ellipsis;
}

.output-item {
  white-space: nowrap;
}

.output-item i {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border: 1px solid var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 7px rgba(var(--mint-rgb), 0.45);
}

.layer-link {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.11);
}

.layer-link i {
  position: absolute;
  width: 7px;
  height: 1px;
  background: var(--mint);
  animation: layer-signal 2.4s linear infinite;
}

.layer-link i:nth-child(2) {
  animation-delay: 0.8s;
}

.layer-link i:nth-child(3) {
  animation-delay: 1.6s;
}

@keyframes layer-signal {
  from {
    left: -8px;
  }
  to {
    left: 100%;
  }
}

.struct-cube {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 185px;
  overflow: hidden;
  border: 1px solid rgba(var(--mint-rgb), 0.32);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 50%, rgba(var(--mint-rgb), 0.13), transparent 62%),
    rgba(var(--mint-rgb), 0.025);
  box-shadow: 0 0 45px rgba(var(--mint-rgb), 0.06);
}

.cube-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background:
    linear-gradient(rgba(var(--mint-rgb), 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--mint-rgb), 0.18) 1px, transparent 1px);
  background-size: 17px 17px;
  mask-image: radial-gradient(circle, #000, transparent 70%);
}

.struct-cube strong {
  z-index: 1;
  color: #eafff8;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 16px;
  letter-spacing: 0.13em;
}

.struct-cube span {
  z-index: 1;
  margin-top: 8px;
  color: var(--mint);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
  letter-spacing: 0.1em;
}

.section-intro--pipeline {
  align-items: end;
}

.pipeline-console {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 15px;
  background: rgba(10, 13, 19, 0.9);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

.pipeline-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
}

.pipeline-step {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  border: 0;
  border-right: 1px solid var(--line);
  color: #68727e;
  background: transparent;
  cursor: pointer;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.pipeline-step:last-child {
  border-right: 0;
}

.pipeline-step span {
  margin-right: 10px;
  color: #47515d;
  font-size: 8px;
}

.pipeline-step:hover {
  color: #bdc5ce;
  background: rgba(255, 255, 255, 0.018);
}

.pipeline-step.is-active {
  position: relative;
  color: var(--mint);
  background: rgba(var(--mint-rgb), 0.035);
}

.pipeline-step.is-active::after {
  position: absolute;
  right: 18px;
  bottom: -1px;
  left: 18px;
  height: 1px;
  content: "";
  background: var(--mint);
  box-shadow: 0 0 9px var(--mint);
}

.pipeline-body {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 445px;
}

.pipeline-copy {
  padding: 52px 48px;
  border-right: 1px solid var(--line);
}

.pipeline-state {
  display: flex;
  align-items: center;
  margin-bottom: 34px;
  gap: 9px;
  color: #78828d;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
}

.state-pulse {
  position: relative;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
}

.state-pulse::after {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(var(--mint-rgb), 0.35);
  border-radius: 50%;
  content: "";
  animation: pulse-ring 1.7s ease-out infinite;
}

@keyframes pulse-ring {
  70%,
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

.pipeline-copy h3 {
  margin-bottom: 18px;
  font-size: 34px;
  font-weight: 520;
  letter-spacing: -0.045em;
}

.pipeline-copy > p {
  max-width: 440px;
  margin-bottom: 29px;
  color: #8d97a2;
  font-size: 14px;
  line-height: 1.65;
}

.pipeline-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pipeline-copy li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 20px;
  color: #b5bdc6;
  font-size: 11px;
}

.pipeline-copy li::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 7px;
  height: 4px;
  border-bottom: 1px solid var(--mint);
  border-left: 1px solid var(--mint);
  content: "";
  transform: rotate(-45deg);
}

.pipeline-preview {
  display: flex;
  flex-direction: column;
  margin: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    #090c11;
  background-size: 22px 22px;
}

.preview-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  padding: 0 15px;
  border-bottom: 1px solid var(--line);
  color: #5f6975;
  background: rgba(255, 255, 255, 0.018);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
}

.preview-running {
  color: var(--mint);
}

.pipeline-preview pre {
  flex: 1;
  margin: 0;
  padding: 31px;
  overflow: hidden;
  color: #a7b1bc;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  line-height: 1.8;
  white-space: pre-wrap;
}

.pipeline-preview code {
  transition: opacity 130ms ease;
}

.preview-progress {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 49px;
  padding: 0 15px;
  border-top: 1px solid var(--line);
  gap: 15px;
  color: #697480;
  background: rgba(255, 255, 255, 0.018);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
}

.preview-progress > div {
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.preview-progress i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--violet), var(--mint));
  box-shadow: 0 0 8px var(--mint);
  transition: width 420ms var(--ease);
}

.preview-progress strong {
  color: var(--mint);
  font-weight: 500;
}

.answer-section {
  padding-top: 150px;
}

.answer-heading {
  margin-bottom: 57px;
}

.answer-demo {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: var(--panel-solid);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.26);
}

.chat-panel {
  min-width: 0;
  border-right: 1px solid var(--line);
}

.demo-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  color: #65707b;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.07em;
}

.demo-bar span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.demo-bar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px var(--mint);
}

.chat-body {
  min-height: 425px;
  padding: 48px 40px;
}

.user-query {
  width: fit-content;
  max-width: 86%;
  margin: 0 0 45px auto;
  padding: 14px 16px;
  border: 1px solid rgba(var(--violet-rgb), 0.2);
  border-radius: 9px 9px 2px 9px;
  color: #c9c6ee;
  background: rgba(var(--violet-rgb), 0.07);
  font-size: 12px;
  line-height: 1.5;
}

.ai-answer {
  display: grid;
  grid-template-columns: 31px 1fr;
  gap: 14px;
}

.ai-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(var(--mint-rgb), 0.35);
  border-radius: 8px;
  color: var(--mint);
  background: rgba(var(--mint-rgb), 0.06);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
}

.answer-label {
  margin: 5px 0 13px;
  color: #64707b;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.09em;
}

.ai-answer p {
  max-width: 570px;
  margin-bottom: 25px;
  color: #afb7c0;
  font-size: 14px;
  line-height: 1.7;
}

.ai-answer p strong {
  color: #eff5f2;
  font-weight: 560;
}

.citation-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.citation-row button {
  display: inline-flex;
  align-items: center;
  min-height: 35px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  gap: 8px;
  color: #8d97a2;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  font-size: 9px;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease;
}

.citation-row button span {
  color: var(--mint);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
}

.citation-row button:hover,
.citation-row button.is-active {
  border-color: rgba(var(--mint-rgb), 0.27);
  color: #cbd4dd;
  background: rgba(var(--mint-rgb), 0.045);
}

.source-panel {
  min-width: 0;
  padding: 0 28px 30px;
  background:
    radial-gradient(circle at 70% 30%, rgba(var(--mint-rgb), 0.05), transparent 38%),
    rgba(255, 255, 255, 0.012);
}

.source-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  color: #68737e;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
  letter-spacing: 0.06em;
}

.source-head > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 6px;
}

.source-head strong {
  overflow: hidden;
  max-width: 250px;
  color: #abb4bd;
  font-size: 9px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.document-sheet {
  min-height: 348px;
  padding: 42px 37px 27px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  color: #35404a;
  background: #dce3df;
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.25);
}

.doc-kicker {
  display: block;
  margin-bottom: 25px;
  color: #68716f;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.document-sheet h4 {
  margin-bottom: 15px;
  color: #242d32;
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.document-sheet p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  line-height: 1.73;
}

.document-sheet mark {
  padding: 1px 2px;
  color: inherit;
  background: rgba(62, 215, 163, 0.34);
  box-shadow: 0 0 0 2px rgba(62, 215, 163, 0.1);
}

.doc-muted {
  color: #69726f;
}

.source-confidence {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  margin-top: 24px;
  gap: 10px;
  color: #6c7773;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 6px;
}

.source-confidence div {
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
}

.source-confidence i {
  display: block;
  width: 98.7%;
  height: 100%;
  background: #35ad84;
}

.source-confidence strong {
  color: #278162;
  font-size: 7px;
}

.capabilities-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 57px;
}

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

.capability-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 395px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.015);
  transition:
    border-color 240ms ease,
    background 240ms ease,
    transform 240ms var(--ease);
}

.capability-card:hover {
  border-color: rgba(var(--mint-rgb), 0.21);
  background: rgba(255, 255, 255, 0.026);
  transform: translateY(-4px);
}

.capability-card--wide {
  grid-column: span 2;
}

.capability-card .feature-code {
  margin: auto 0 13px;
  color: #68737e;
}

.capability-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 520;
  letter-spacing: -0.04em;
}

.capability-card p {
  max-width: 510px;
  margin-bottom: 0;
  color: #7f8995;
  font-size: 13px;
  line-height: 1.65;
}

.feature-icon {
  position: relative;
  width: 100%;
  height: 164px;
}

.feature-icon--nodes i,
.feature-icon--nodes span {
  position: absolute;
  border: 1px solid rgba(var(--mint-rgb), 0.35);
  background: rgba(var(--mint-rgb), 0.04);
}

.feature-icon--nodes span {
  top: 56px;
  left: 48%;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  box-shadow: 0 0 28px rgba(var(--mint-rgb), 0.12);
  transform: rotate(45deg);
}

.feature-icon--nodes i {
  width: 10px;
  height: 10px;
  border-radius: 3px;
}

.feature-icon--nodes i:nth-child(1) {
  top: 23px;
  left: 18%;
}

.feature-icon--nodes i:nth-child(2) {
  top: 116px;
  left: 28%;
}

.feature-icon--nodes i:nth-child(3) {
  top: 29px;
  right: 24%;
}

.feature-icon--nodes i:nth-child(4) {
  right: 12%;
  bottom: 29px;
}

.feature-icon--nodes::before,
.feature-icon--nodes::after {
  position: absolute;
  top: 83px;
  left: 20%;
  width: 30%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(var(--mint-rgb), 0.4), rgba(var(--mint-rgb), 0.05));
  transform: rotate(10deg);
}

.feature-icon--nodes::after {
  left: 54%;
  width: 31%;
  transform: rotate(-13deg);
}

.feature-icon--eye {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon--eye::before {
  width: 106px;
  height: 62px;
  border: 1px solid rgba(var(--mint-rgb), 0.3);
  border-radius: 80% 15%;
  content: "";
  transform: rotate(45deg);
}

.feature-icon--eye span {
  position: absolute;
  width: 38px;
  height: 38px;
  border: 1px solid var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(var(--mint-rgb), 0.15);
}

.feature-icon--eye span::after {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  content: "";
  background: var(--mint);
  box-shadow: 0 0 12px rgba(var(--mint-rgb), 0.65);
}

.feature-icon--brackets {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon--brackets::before,
.feature-icon--brackets::after {
  color: rgba(var(--violet-rgb), 0.6);
  content: "{";
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 82px;
  font-weight: 200;
}

.feature-icon--brackets::after {
  content: "}";
}

.feature-icon--brackets span {
  margin: 0 18px;
  color: #d2cffb;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 18px;
  letter-spacing: 0.08em;
}

.feature-icon--pack i {
  position: absolute;
  top: 41px;
  left: 50%;
  width: 104px;
  height: 73px;
  border: 1px solid rgba(var(--violet-rgb), 0.28);
  border-radius: 7px;
  background: rgba(var(--violet-rgb), 0.04);
  transform: translateX(-50%);
}

.feature-icon--pack i:nth-child(2) {
  top: 52px;
  opacity: 0.7;
  transform: translateX(-57%);
}

.feature-icon--pack i:nth-child(3) {
  top: 63px;
  opacity: 0.4;
  transform: translateX(-64%);
}

.feature-icon--pack::after {
  position: absolute;
  top: 72px;
  left: 50%;
  color: #b8b1f3;
  content: "PACK / 01";
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
  transform: translateX(-50%);
}

.capability-card--terminal {
  background:
    radial-gradient(circle at 30% 20%, rgba(var(--mint-rgb), 0.07), transparent 40%),
    rgba(255, 255, 255, 0.015);
}

.terminal-line {
  margin-bottom: 12px;
  color: #c0c9d2;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
}

.terminal-line span {
  margin-right: 9px;
  color: var(--mint);
}

.terminal-output {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 480px;
  gap: 8px 20px;
  color: #68737e;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
}

.terminal-output span::first-letter {
  color: var(--mint);
}

.security-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(var(--violet-rgb), 0.045), transparent 34%),
    var(--panel-solid);
}

.security-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 65px;
  border-right: 1px solid var(--line);
}

.security-copy h2 {
  margin-bottom: 25px;
  font-size: clamp(37px, 3.6vw, 54px);
}

.security-copy p {
  margin-bottom: 27px;
  color: #8b95a0;
  font-size: 14px;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 18px;
  color: var(--mint);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.security-grid > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 295px;
  padding: 35px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 75% 25%, rgba(var(--mint-rgb), 0.04), transparent 35%),
    rgba(255, 255, 255, 0.008);
  transition: background 220ms ease;
}

.security-grid > div:nth-child(even) {
  border-right: 0;
}

.security-grid > div:nth-child(n + 3) {
  border-bottom: 0;
}

.security-grid > div:hover {
  background: rgba(var(--mint-rgb), 0.025);
}

.security-grid span {
  margin-bottom: auto;
  color: var(--mint);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
}

.security-grid strong {
  margin-bottom: 9px;
  font-size: 16px;
  font-weight: 540;
}

.security-grid small {
  color: #68737f;
  font-size: 10px;
}

.pilot {
  padding-bottom: 90px;
}

.pilot-panel {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 620px;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(var(--mint-rgb), 0.16);
  border-radius: 18px;
  text-align: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.021) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.021) 1px, transparent 1px),
    radial-gradient(circle at 50% 44%, rgba(var(--mint-rgb), 0.1), transparent 32%),
    #0a0e13;
  background-size: 32px 32px, 32px 32px, auto, auto;
}

.pilot-panel::before,
.pilot-panel::after {
  position: absolute;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(var(--mint-rgb), 0.08);
  border-radius: 50%;
  content: "";
}

.pilot-panel::after {
  width: 590px;
  height: 590px;
  border-color: rgba(var(--violet-rgb), 0.055);
}

.pilot-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(var(--mint-rgb), 0.16);
  border-radius: 36px;
  box-shadow:
    0 0 80px rgba(var(--mint-rgb), 0.09),
    inset 0 0 60px rgba(var(--violet-rgb), 0.04);
  transform: rotate(45deg);
}

.pilot-panel > *:not(.pilot-glow, .pilot-flow) {
  position: relative;
  z-index: 2;
}

.pilot-panel .section-index {
  margin-bottom: 26px;
}

.pilot-panel h2 {
  margin-bottom: 23px;
  font-size: clamp(46px, 5.5vw, 78px);
}

.pilot-panel > p {
  max-width: 650px;
  margin-bottom: 34px;
  color: #919ba6;
  font-size: 15px;
  line-height: 1.65;
}

.pilot-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.pilot-flow {
  position: absolute;
  bottom: 27px;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #56616d;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
  letter-spacing: 0.1em;
  transform: translateX(-50%);
}

.pilot-flow i {
  width: 27px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mint), transparent);
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: start;
  padding-top: 48px;
  padding-bottom: 36px;
  border-top: 1px solid var(--line);
  gap: 60px;
}

.footer-brand p {
  margin: 17px 0 0;
  color: #646e79;
  font-size: 11px;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-meta span {
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: #59646f;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
  letter-spacing: 0.07em;
}

.footer-top {
  color: #8b95a0;
  font-size: 10px;
  text-transform: uppercase;
}

.footer-line {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  margin-top: 38px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
  color: #4e5863;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
  letter-spacing: 0.09em;
}

/* Restrained enterprise finish: sharper geometry, neutral type and one signal color. */
.section-intro h2,
.answer-heading h2,
.capabilities-head h2,
.security-copy h2,
.pilot-panel h2,
.system-copy h2 {
  font-weight: 700;
  letter-spacing: -0.06em;
}

.section-index,
.feature-code {
  color: #9dadf0;
}

.section-intro h2,
.answer-heading h2,
.capabilities-head h2 {
  font-size: clamp(52px, 5.2vw, 80px);
  line-height: 0.98;
}

.section-intro > p,
.system-copy p,
.security-copy p,
.pilot-panel > p {
  font-size: 17px;
  line-height: 1.62;
}

.pipeline,
.capabilities,
.security,
.pilot,
.answer-section {
  padding-top: 170px;
}

.problem {
  padding-top: 96px;
}

.problem-card,
.system-panel,
.pipeline-console,
.pipeline-preview,
.answer-demo,
.capability-card,
.security-panel,
.pilot-panel {
  border-radius: 2px;
}

.problem-card {
  background: rgba(255, 255, 255, 0.009);
  min-height: 470px;
  padding: 36px;
}

.problem-card:hover,
.capability-card:hover {
  background: rgba(255, 255, 255, 0.018);
  transform: none;
}

.problem-card--accent {
  background:
    linear-gradient(180deg, rgba(var(--mint-rgb), 0.025), transparent 54%),
    rgba(255, 255, 255, 0.01);
}

.mini-file,
.citation-graphic mark,
.struct-cube,
.source-item,
.output-item,
.user-query,
.ai-avatar,
.citation-row button,
.document-sheet,
.feature-icon--nodes i,
.feature-icon--nodes span,
.feature-icon--pack i {
  border-radius: 1px;
}

.mini-file {
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.system-panel,
.security-panel {
  background:
    linear-gradient(120deg, rgba(var(--violet-rgb), 0.16), transparent 40%),
    var(--panel-solid);
}

.system-panel {
  min-height: 720px;
  padding: 90px 76px;
}

.system-copy h2 {
  font-size: clamp(49px, 4.3vw, 67px);
  font-weight: 700;
}

.struct-cube {
  background:
    linear-gradient(180deg, rgba(var(--mint-rgb), 0.055), transparent),
    rgba(var(--mint-rgb), 0.012);
  box-shadow: none;
}

.pipeline-step.is-active {
  background: rgba(var(--mint-rgb), 0.022);
}

.preview-progress i {
  background: var(--mint);
  box-shadow: none;
}

.answer-demo {
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
}

.user-query {
  color: #b9c3da;
  background: rgba(var(--mint-rgb), 0.035);
}

.document-sheet {
  color: #35393f;
  background: #e2e3e5;
}

.document-sheet mark {
  background: rgba(116, 143, 207, 0.25);
  box-shadow: 0 0 0 2px rgba(116, 143, 207, 0.06);
}

.capability-card {
  background: rgba(255, 255, 255, 0.009);
}

.capability-card h3,
.problem-card h3,
.pipeline-copy h3 {
  font-weight: 650;
}

.problem-card h3,
.capability-card h3 {
  font-size: 28px;
}

.problem-card p,
.capability-card p {
  font-size: 15px;
}

.capability-card--terminal {
  background:
    linear-gradient(135deg, rgba(var(--mint-rgb), 0.035), transparent 42%),
    rgba(255, 255, 255, 0.009);
}

.security-grid > div {
  background: rgba(255, 255, 255, 0.005);
}

.security-grid > div:hover {
  background: rgba(255, 255, 255, 0.014);
}

.pilot-panel {
  background:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    radial-gradient(circle at 40% 45%, rgba(var(--violet-rgb), 0.18), transparent 38%),
    radial-gradient(circle at 72% 56%, rgba(var(--hot-rgb), 0.09), transparent 30%),
    #0a0b0e;
  background-size: 48px 48px, 48px 48px, auto, auto, auto;
}

.pilot-panel::before,
.pilot-panel::after {
  border-color: rgba(var(--mint-rgb), 0.045);
}

.pilot-glow {
  border-radius: 0;
  opacity: 0.45;
}

/* Executive layout: bold hierarchy, open surfaces and almost no outlined UI. */
.desktop-nav {
  gap: 42px;
  color: #d4d6db;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header-cta {
  height: 48px;
  padding-inline: 22px;
  border: 0;
  color: #0a0b0d;
  background: #f4f4f5;
  font-size: 13px;
  font-weight: 800;
}

.site-header,
.site-header.is-scrolled {
  border: 0;
}

.hero {
  grid-template-columns: minmax(0, 0.98fr) minmax(560px, 1.02fr);
  align-items: center;
  min-height: 100svh;
  padding-top: 104px;
  padding-bottom: 24px;
  gap: 18px;
}

.hero-copy {
  display: block;
  max-width: 700px;
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 38px;
  font-size: clamp(70px, 6.1vw, 96px);
  line-height: 0.92;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 36px;
  font-size: 20px;
}

.hero-copy .hero-actions {
  justify-content: flex-start;
  margin-bottom: 0;
}

.hero-visual {
  align-self: center;
  min-width: 0;
}

.canvas-wrap {
  height: min(660px, calc(100svh - 128px));
  min-height: 520px;
  background:
    radial-gradient(circle at 48% 50%, rgba(var(--violet-rgb), 0.13), transparent 24%),
    radial-gradient(circle at 84% 50%, rgba(var(--hot-rgb), 0.07), transparent 22%);
}

.processor-label {
  left: 48%;
  width: 148px;
  height: 148px;
  border: 0;
  background: linear-gradient(145deg, #6a57f3 0%, #9c5de5 54%, #e363aa 100%);
  box-shadow: 0 38px 80px rgba(61, 42, 160, 0.28);
}

.processor-label::before,
.processor-label::after {
  display: none;
}

.processor-label .processor-mark {
  position: absolute;
  top: 51px;
  left: 50%;
  display: block;
  width: 32px;
  height: 22px;
  transform: translateX(-50%);
}

.processor-mark i {
  position: absolute;
  left: 2px;
  width: 28px;
  height: 8px;
  clip-path: polygon(20% 0, 100% 0, 100% 42%, 80% 100%, 0 100%, 0 58%);
  background: linear-gradient(105deg, var(--slab-top-a), var(--slab-top-b));
}

.processor-mark i:nth-child(1) {
  top: 0;
  z-index: 3;
  --slab-top-a: #ff9acb;
  --slab-top-b: #d4c1ff;
}

.processor-mark i:nth-child(2) {
  top: 7px;
  z-index: 2;
  --slab-top-a: #a9b4ff;
  --slab-top-b: #8476f6;
}

.processor-mark i:nth-child(3) {
  top: 14px;
  z-index: 1;
  --slab-top-a: #ffffff;
  --slab-top-b: #cbd2ed;
}

.processor-label strong {
  position: absolute;
  top: 82px;
  left: 50%;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  white-space: nowrap;
  transform: translateX(-50%);
}

.ai-ready-output {
  left: 69%;
  width: 30%;
  height: 220px;
  min-width: 210px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.automation-item {
  position: absolute;
  left: 0;
  padding-left: 18px;
  color: rgba(208, 213, 227, 0.76);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transform: translateY(-50%);
}

.automation-item::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: #9dabff;
  box-shadow: 0 0 14px rgba(var(--mint-rgb), 0.55);
  transform: translate(-50%, -50%);
}

.automation-item:nth-child(1) {
  top: calc(50% - 72px);
}

.automation-item:nth-child(2) {
  top: calc(50% - 36px);
}

.automation-item:nth-child(3) {
  top: 50%;
}

.automation-item:nth-child(4) {
  top: calc(50% + 36px);
}

.automation-item:nth-child(5) {
  top: calc(50% + 72px);
}

.automation-more {
  position: absolute;
  top: calc(50% + 98px);
  left: 18px;
  color: #777d88;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ai-ready-row {
  display: block;
  min-height: auto;
  margin-bottom: 16px;
  padding: 0;
  border: 0;
  color: #a5a9b2;
  font-size: 15px;
  font-weight: 550;
}

.button,
.button--ghost,
.hero-meta span,
.system-tags span,
.source-item,
.output-item,
.pipeline-console,
.pipeline-step,
.pipeline-preview,
.answer-demo,
.capability-card,
.security-panel,
.pilot-panel,
.citation-row button {
  border: 0;
}

.button {
  min-height: 56px;
  padding-inline: 24px;
  font-size: 13px;
  font-weight: 800;
}

.button--ghost {
  color: #e4e5e8;
  background: #1a1b20;
}

.trust-strip {
  border: 0;
  background: #0e0f13;
}

.trust-label {
  border: 0;
  font-weight: 700;
}

.problem-grid {
  gap: 12px;
  border: 0;
}

.section-intro h2,
.answer-heading h2,
.capabilities-head h2 {
  font-size: clamp(48px, 4.6vw, 70px);
  line-height: 1;
}

.section-index,
.feature-code {
  margin-bottom: 25px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.section-intro > p,
.system-copy p,
.security-copy p,
.pilot-panel > p {
  font-size: 20px;
  line-height: 1.55;
}

.section-intro {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 28px;
}

.section-intro h2 {
  max-width: 1100px;
  font-size: clamp(46px, 4vw, 64px);
  text-wrap: balance;
}

.section-intro > p {
  max-width: 900px;
  margin-bottom: 0;
}

.problem .section-intro {
  margin-bottom: 58px;
  gap: 24px;
}

.problem .section-intro h2 {
  max-width: 1020px;
}

.problem .problem-lead {
  display: grid;
  max-width: 1020px;
  gap: 8px;
}

.problem-lead span,
.problem-lead strong {
  display: block;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.48;
  letter-spacing: -0.018em;
}

.problem-lead span {
  color: #c7ccd4;
  font-weight: 480;
}

.problem-lead strong {
  color: #7f8794;
  font-weight: 430;
}

.problem-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 78px);
}

.problem-point {
  position: relative;
  padding-top: 24px;
}

.problem-point::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, #8298ff, #b486f1 64%, #e57eb4);
}

.problem-point h3 {
  max-width: 340px;
  margin: 0 0 14px;
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.038em;
}

.problem-point p {
  max-width: 360px;
  margin: 0;
  color: #868e9a;
  font-size: 16px;
  line-height: 1.58;
}

.answer-heading,
.capabilities-head {
  display: block;
}

.answer-heading h2,
.capabilities-head h2 {
  max-width: 1100px;
  text-wrap: balance;
}

.answer-heading > p,
.capabilities-head > p {
  max-width: 900px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.problem-card {
  border: 0;
  background: #101116;
}

.problem-card h3,
.capability-card h3 {
  font-size: 32px;
  line-height: 1.08;
}

.problem-card p,
.capability-card p {
  font-size: 17px;
  line-height: 1.58;
}

.card-number {
  font-size: 11px;
  font-weight: 700;
}

.problem-card--accent {
  background:
    linear-gradient(145deg, rgba(var(--violet-rgb), 0.15), transparent 55%),
    #111218;
}

.card-connection {
  display: flex;
  align-items: center;
  height: 168px;
  gap: 14px;
}

.card-connection span {
  color: #a1a8b4;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-connection i {
  position: relative;
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--violet-rgb), 0.36), rgba(var(--mint-rgb), 0.72));
}

.card-connection i::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  background: #7b68ef;
  transform: translate(-50%, -50%);
}

.card-connection i::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 8px;
  content: "";
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #9dabff;
  transform: translate(50%, -50%);
}

.system-panel {
  border: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(var(--violet-rgb), 0.34), transparent 30%),
    radial-gradient(circle at 82% 75%, rgba(var(--hot-rgb), 0.13), transparent 27%),
    #111119;
}

.system-panel {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  min-height: 640px;
  padding: 76px 72px;
  gap: clamp(56px, 6vw, 96px);
}

.system-copy p {
  max-width: 560px;
  margin-bottom: 0;
}

.integration-visual {
  min-width: 0;
}

.integration-kicker {
  margin: 0 0 22px;
  color: #9198a5;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.integration-statement {
  margin: 0;
  color: #f3f4f7;
  font-size: clamp(44px, 4.2vw, 66px);
  font-weight: 720;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.integration-statement span {
  color: transparent;
  background: linear-gradient(90deg, #a9b7ff 0%, #b89cff 48%, #ef86bc 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.integration-list {
  display: grid;
  margin-top: 46px;
  gap: 23px;
}

.integration-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  padding-left: 22px;
  gap: 22px;
}

.integration-row::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: linear-gradient(135deg, #8ea3ff, #dd7fb9);
}

.integration-row strong {
  color: #dfe2e8;
  font-size: 18px;
  font-weight: 620;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.integration-row span {
  color: #7f8794;
  font-size: 14px;
  line-height: 1.4;
  text-align: right;
}

.integration-compatibility {
  max-width: 520px;
  margin: 42px 0 0;
  color: #747c88;
  font-size: 13px;
  line-height: 1.5;
}

.system-tags span {
  padding: 0;
  color: #c0c3cc;
  font-size: 11px;
  font-weight: 700;
}

.source-item,
.output-item {
  background: rgba(255, 255, 255, 0.055);
  font-size: 13px;
}

.source-item b {
  font-size: 10px;
}

.source-item small {
  font-size: 12px;
}

.layer-label {
  font-size: 10px;
  font-weight: 700;
}

.struct-cube strong {
  font-size: 19px;
}

.struct-cube span {
  font-size: 8px;
}

.struct-cube {
  border: 0;
  background: linear-gradient(145deg, #715cf3, #d260ad);
}

.cube-grid {
  display: none;
}

.struct-cube span {
  color: rgba(255, 255, 255, 0.67);
}

.layer-link {
  background: rgba(255, 255, 255, 0.28);
}

.pipeline-console {
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.pipeline-nav {
  gap: 8px;
  border: 0;
}

.pipeline-step {
  height: 62px;
  justify-content: flex-start;
  padding: 0 20px;
  background: #121318;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0;
}

.pipeline-step.is-active {
  color: #fff;
  background: #6f5bea;
}

.pipeline-step.is-active::after {
  display: none;
}

.pipeline-step span {
  color: inherit;
  opacity: 0.55;
}

.pipeline-body {
  margin-top: 8px;
  gap: 8px;
  background: transparent;
}

.pipeline-copy,
.pipeline-preview {
  min-height: 470px;
  border: 0;
  background: #111217;
}

.pipeline-copy {
  padding: 60px;
}

.pipeline-state {
  margin-bottom: 52px;
  color: #9095a0;
  font-size: 11px;
  font-weight: 700;
}

.pipeline-copy h3 {
  max-width: 480px;
  font-size: 43px;
  line-height: 1.02;
}

.pipeline-copy > p {
  font-size: 18px;
  line-height: 1.6;
}

.pipeline-copy li {
  margin-bottom: 15px;
  font-size: 14px;
}

.pipeline-preview {
  display: flex;
  margin: 0;
  padding: 60px;
  justify-content: center;
  background:
    radial-gradient(circle at 70% 20%, rgba(var(--hot-rgb), 0.1), transparent 34%),
    #15131e;
}

.outcome-kicker {
  color: #a8a0cb;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.11em;
}

.pipeline-preview h4 {
  max-width: 540px;
  margin: 24px 0 44px;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.outcome-list {
  display: grid;
  gap: 18px;
}

.outcome-list > div {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
}

.outcome-list span {
  color: #797286;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
}

.outcome-list strong {
  color: #b8b7bf;
  font-size: 16px;
  font-weight: 550;
}

.preview-progress {
  width: 100%;
  height: auto;
  margin-top: auto;
  padding: 38px 0 0;
  border: 0;
  background: transparent;
}

.answer-demo {
  box-shadow: none;
}

.chat-panel {
  border: 0;
  background: #111217;
}

.demo-bar {
  font-size: 10px;
}

.user-query {
  font-size: 14px;
}

.answer-label {
  font-size: 10px;
}

.ai-answer p {
  font-size: 17px;
  line-height: 1.65;
}

.citation-row button {
  min-height: 42px;
  padding-inline: 13px;
  font-size: 11px;
  font-weight: 650;
}

.demo-bar {
  border: 0;
  background: #18191f;
}

.source-panel {
  background: #16171c;
}

.document-sheet {
  border: 0;
  box-shadow: none;
}

.source-head {
  font-size: 9px;
}

.source-head strong {
  font-size: 11px;
}

.doc-kicker {
  font-size: 9px;
}

.document-sheet h4 {
  font-size: 20px;
}

.document-sheet p {
  font-size: 13px;
  line-height: 1.7;
}

.source-confidence {
  font-size: 8px;
}

.capability-grid {
  gap: 12px;
}

.capability-card {
  min-height: 420px;
  padding: 36px;
  background: #111217;
}

.capability-card .feature-code {
  margin-bottom: 16px;
}

.capability-card--terminal {
  background:
    radial-gradient(circle at 20% 20%, rgba(var(--violet-rgb), 0.2), transparent 39%),
    #15131e;
}

.deployment-choices {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
  gap: 10px;
}

.deployment-choices span {
  padding: 16px 18px;
  color: #d7d5df;
  background: rgba(255, 255, 255, 0.07);
  font-size: 11px;
  font-weight: 700;
}

.security-panel {
  gap: 12px;
  background: transparent;
}

.security-copy {
  border: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(var(--violet-rgb), 0.25), transparent 34%),
    #13141a;
}

.security-grid strong {
  font-size: 20px;
}

.security-grid small {
  font-size: 13px;
  line-height: 1.45;
}

.text-link {
  font-size: 13px;
  font-weight: 800;
}

.security-grid {
  gap: 12px;
}

.security-grid > div {
  border: 0 !important;
  padding: 40px;
  background: #111217;
}

.pilot-panel {
  border: 0;
}

.site-footer,
.footer-line {
  border: 0;
}

.footer-brand p {
  font-size: 13px;
}

.footer-top {
  font-size: 12px;
  font-weight: 750;
}

.marquee-track,
.layer-link i,
.state-pulse::after {
  animation: none;
}

.layer-link i {
  display: none;
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  :root {
    --shell: min(calc(100% - 40px), 940px);
  }

  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
    min-height: 100svh;
    padding-top: 100px;
    padding-bottom: 24px;
    gap: 16px;
  }

  .hero-copy {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .hero-copy .hero-lead,
  .hero-copy .hero-actions {
    grid-column: 1;
  }

  .hero-copy .hero-actions {
    justify-content: flex-start;
    margin-bottom: 0;
  }

  .hero h1 {
    font-size: clamp(58px, 7.4vw, 78px);
  }

  .hero-visual {
    max-width: none;
    margin-left: 0;
  }

  .canvas-wrap {
    height: min(620px, calc(100svh - 124px));
    min-height: 500px;
  }

  .scroll-cue {
    display: none;
  }

  .pipeline,
  .capabilities,
  .security,
  .pilot {
    padding-top: 120px;
  }

  .problem {
    padding-top: 82px;
  }

  .problem .section-intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .system-panel {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .system-copy {
    max-width: 650px;
  }

  .integration-visual {
    max-width: 700px;
  }

  .answer-demo {
    grid-template-columns: 1fr;
  }

  .chat-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .source-panel {
    padding-inline: 8vw;
    padding-bottom: 7vw;
  }

  .document-sheet {
    max-width: 620px;
    margin: 0 auto;
  }

  .security-panel {
    grid-template-columns: 1fr;
  }

  .security-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100vw - 30px);
  }

  body {
    background-size: 34px 34px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    width: calc(100vw - 20px);
    height: 58px;
    padding-inline: 15px;
  }

  .site-header .brand {
    gap: 8px;
  }

  .site-header .brand-mark {
    margin-right: -7px;
    transform: scale(0.76);
    transform-origin: left center;
  }

  .site-header .brand-name {
    font-size: 24px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border: 0;
    border-radius: 0;
    gap: 6px;
    background: rgba(255, 255, 255, 0.02);
  }

  .menu-toggle span {
    width: 15px;
    height: 1px;
    background: #aeb7c0;
    transition: transform 200ms ease;
  }

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

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

  .mobile-menu {
    position: fixed;
    top: 76px;
    right: 10px;
    left: 10px;
    z-index: 29;
    display: grid;
    padding: 10px;
    border: 0;
    border-radius: 0;
    opacity: 0;
    background: rgba(8, 10, 14, 0.96);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
    backdrop-filter: blur(20px);
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .mobile-menu a {
    padding: 15px 12px;
    border-bottom: 0;
    color: #adb6bf;
    font-size: 14px;
    font-weight: 650;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .mobile-menu a:last-child {
    border-bottom: 0;
    color: var(--mint);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 72px;
    gap: 45px;
  }

  .eyebrow {
    margin-bottom: 21px;
    font-size: 8px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(48px, 14vw, 68px);
    line-height: 0.95;
  }

  .hero-lead {
    font-size: 17px;
    line-height: 1.5;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .canvas-wrap {
    height: 470px;
    min-height: 470px;
  }

  .processor-label {
    width: 88px;
    height: 88px;
    border-radius: 0;
  }

  .processor-label .processor-mark {
    top: 26px;
    width: 24px;
    height: 22px;
  }

  .processor-mark i {
    width: 22px;
    height: 7px;
  }

  .processor-mark i:nth-child(2) {
    top: 6px;
  }

  .processor-mark i:nth-child(3) {
    top: 12px;
  }

  .processor-label strong {
    top: 53px;
    font-size: 9px;
  }

  .flow-label {
    top: 11px;
    font-size: 5px;
  }

  .flow-label--input {
    left: 10px;
  }

  .flow-label--core {
    display: none;
  }

  .flow-label--output {
    right: 10px;
  }

  .ai-ready-output {
    left: 69%;
    width: 31%;
    height: 150px;
    min-width: 0;
  }

  .automation-item {
    padding-left: 10px;
    font-size: 7px;
    letter-spacing: 0;
    line-height: 1.2;
  }

  .automation-item::before {
    width: 4px;
    height: 4px;
  }

  .automation-item:nth-child(1) {
    top: calc(50% - 48px);
  }

  .automation-item:nth-child(2) {
    top: calc(50% - 24px);
  }

  .automation-item:nth-child(4) {
    top: calc(50% + 24px);
  }

  .automation-item:nth-child(5) {
    top: calc(50% + 48px);
  }

  .automation-more {
    top: calc(50% + 66px);
    left: 10px;
    max-width: 95px;
    font-size: 5px;
    line-height: 1.35;
    letter-spacing: 0.06em;
  }

  .ai-ready-row {
    min-height: auto;
    margin-bottom: 8px;
    padding: 0;
    font-size: 8px;
  }

  .ai-ready-row span,
  .ai-ready-row strong {
    font-size: 5px;
  }

  .ai-ready-foot {
    display: none;
  }

  .frame-title {
    max-width: 210px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .frame-metric {
    display: none !important;
  }

  .visual-caption {
    width: 100%;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    height: auto;
  }

  .trust-label {
    justify-content: center;
    height: 46px;
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .marquee {
    padding: 22px 0;
  }

  .section-intro,
  .section-intro--pipeline {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
    gap: 24px;
  }

  .problem .section-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-intro h2,
  .answer-heading h2,
  .capabilities-head h2,
  .security-copy h2,
  .system-copy h2 {
    font-size: 39px;
  }

  .problem .section-intro h2 {
    font-size: 39px;
  }

  .pipeline,
  .capabilities,
  .security,
  .pilot,
  .answer-section {
    padding-top: 94px;
  }

  .problem {
    padding-top: 64px;
  }

  .problem-points {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .problem .section-intro {
    margin-bottom: 46px;
  }

  .system-section {
    width: 100%;
    padding-top: 68px;
  }

  .system-panel {
    padding: 56px 20px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    gap: 52px;
  }

  .integration-statement {
    font-size: 46px;
  }

  .integration-list {
    margin-top: 38px;
    gap: 22px;
  }

  .integration-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .integration-row span {
    text-align: left;
  }

  .integration-compatibility {
    margin-top: 36px;
  }

  .layer-diagram {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .layer-column {
    min-height: 0;
  }

  .layer-column--source,
  .layer-column--output {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .layer-label {
    grid-column: 1 / -1;
  }

  .source-item,
  .output-item {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 62px;
  }

  .output-item {
    white-space: normal;
  }

  .layer-link {
    width: 1px;
    height: 34px;
    margin: 0 auto;
  }

  .layer-link i {
    width: 1px;
    height: 7px;
    animation-name: layer-signal-mobile;
  }

  @keyframes layer-signal-mobile {
    from {
      top: -8px;
    }
    to {
      top: 100%;
    }
  }

  .pipeline-console {
    border-radius: 10px;
  }

  .pipeline-nav {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .pipeline-nav::-webkit-scrollbar {
    display: none;
  }

  .pipeline-step {
    flex: 0 0 104px;
    height: 58px;
  }

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

  .pipeline-copy {
    padding: 36px 25px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pipeline-copy h3 {
    font-size: 29px;
  }

  .pipeline-preview {
    min-height: 375px;
    margin: 12px;
    padding: 34px 24px;
  }

  .pipeline-preview h4 {
    margin: 18px 0 30px;
    font-size: 30px;
  }

  .pipeline-preview pre {
    padding: 22px 17px;
    font-size: 9px;
  }

  .preview-progress {
    grid-template-columns: 1fr auto;
  }

  .preview-progress > span {
    display: none;
  }

  .answer-heading {
    margin-bottom: 40px;
  }

  .chat-body {
    min-height: 450px;
    padding: 35px 22px;
  }

  .ai-answer {
    grid-template-columns: 1fr;
  }

  .ai-avatar {
    display: none;
  }

  .source-panel {
    padding: 0 14px 20px;
  }

  .source-head {
    padding-inline: 5px;
  }

  .document-sheet {
    padding: 35px 25px 24px;
  }

  .capabilities-head {
    display: block;
    margin-bottom: 40px;
  }

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

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

  .capability-card {
    min-height: 375px;
  }

  .security-copy {
    padding: 49px 25px;
  }

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

  .security-grid > div {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid var(--line) !important;
  }

  .security-grid > div:last-child {
    border-bottom: 0 !important;
  }

  .pilot {
    width: 100%;
    padding-bottom: 60px;
  }

  .pilot-panel {
    min-height: 650px;
    padding: 60px 20px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .pilot-panel h2 {
    font-size: 47px;
  }

  .pilot-panel > p {
    font-size: 14px;
  }

  .pilot-actions {
    width: 100%;
  }

  .pilot-flow {
    white-space: nowrap;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 35px;
  }

  .footer-meta {
    display: none;
  }

  .footer-line span:last-child {
    display: none;
  }
}

/* Full-width model-independent knowledge layer */
.system-section {
  width: 100%;
  margin-top: 112px;
  padding: 112px 0 120px;
  background:
    radial-gradient(900px 520px at 8% 18%, rgba(var(--violet-rgb), 0.2), transparent 70%),
    radial-gradient(820px 500px at 94% 90%, rgba(var(--hot-rgb), 0.11), transparent 72%),
    #111119;
}

.system-panel {
  display: block;
  min-height: 0;
  padding: 0;
  background: transparent;
}

.system-heading {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  margin-bottom: 76px;
  gap: 24px;
}

.system-heading h2 {
  max-width: 1020px;
  margin: 0;
  font-size: clamp(48px, 4.6vw, 70px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.system-heading .system-lead {
  display: grid;
  max-width: 1020px;
  margin: 0;
  gap: 8px;
}

.adapter-diagram {
  display: grid;
  grid-template-columns:
    minmax(260px, 1fr)
    clamp(38px, 4vw, 62px)
    minmax(210px, 250px)
    clamp(38px, 4vw, 62px)
    minmax(260px, 1fr);
  align-items: end;
}

.adapter-group {
  min-width: 0;
}

.adapter-label {
  margin: 0 0 17px;
  color: #8d95a1;
  font-size: 14px;
  font-weight: 620;
  line-height: 1.3;
  letter-spacing: -0.012em;
}

.adapter-items {
  display: grid;
  gap: 10px;
}

.adapter-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-height: 68px;
  padding: 14px 18px;
  gap: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.adapter-item strong {
  color: #e1e4e9;
  font-size: 16px;
  font-weight: 620;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.adapter-item span {
  max-width: 145px;
  color: #7e8793;
  font-size: 12px;
  line-height: 1.35;
  text-align: right;
}

.adapter-connector {
  position: relative;
  height: 224px;
}

.adapter-connector i {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(151, 165, 255, 0.18), rgba(190, 125, 205, 0.72));
}

.adapter-connector i:nth-child(1) {
  top: 34px;
}

.adapter-connector i:nth-child(2) {
  top: 112px;
}

.adapter-connector i:nth-child(3) {
  top: 190px;
}

.adapter-connector i::after {
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  content: "";
  background: #ad8af1;
  transform: translateY(-50%);
}

.adapter-connector--in i::after {
  right: -2px;
}

.adapter-connector--out i {
  background: linear-gradient(90deg, rgba(190, 125, 205, 0.72), rgba(151, 165, 255, 0.18));
}

.adapter-connector--out i::after {
  left: -2px;
}

.adapter-core {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  padding: 26px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 76% 20%, rgba(255, 132, 190, 0.45), transparent 42%),
    linear-gradient(145deg, #6655df 0%, #8f60d4 54%, #c26ea9 100%);
}

.adapter-core::after {
  position: absolute;
  right: -35px;
  bottom: -48px;
  width: 150px;
  height: 150px;
  content: "";
  background: rgba(9, 10, 14, 0.17);
  transform: rotate(30deg);
}

.adapter-core > span,
.adapter-core > small,
.adapter-core-brand {
  position: relative;
  z-index: 1;
}

.adapter-core > span {
  align-self: center;
  width: 100%;
  font-size: 13px;
  font-weight: 620;
  text-align: center;
}

.adapter-core-brand {
  display: flex;
  align-items: center;
  align-self: center;
  gap: 12px;
}

.adapter-core-brand .brand-mark {
  filter: drop-shadow(0 10px 18px rgba(39, 22, 116, 0.3));
  transform: scale(0.82);
  transform-origin: center;
}

.adapter-core-brand strong {
  font-size: 29px;
  font-weight: 760;
  line-height: 1;
  letter-spacing: -0.05em;
}

.adapter-core small {
  align-self: center;
  max-width: 150px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 1080px) {
  .system-section {
    margin-top: 88px;
    padding: 94px 0 102px;
  }

  .system-heading {
    grid-template-columns: 1fr;
    margin-bottom: 64px;
    gap: 28px;
  }

  .system-heading p {
    max-width: 760px;
  }

  .adapter-diagram {
    grid-template-columns: minmax(220px, 1fr) 36px 210px 36px minmax(220px, 1fr);
  }

  .adapter-item {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 4px;
  }

  .adapter-item span {
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .system-section {
    margin-top: 72px;
    padding: 74px 0 82px;
  }

  .system-panel {
    width: calc(100% - 40px);
    padding: 0;
  }

  .system-heading {
    margin-bottom: 54px;
    gap: 24px;
  }

  .system-heading h2 {
    font-size: 39px;
  }

  .system-heading p {
    font-size: 17px;
  }

  .adapter-diagram {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .adapter-core {
    order: 3;
    min-height: 210px;
  }

  .adapter-group:first-child {
    order: 1;
  }

  .adapter-group:last-child {
    order: 5;
  }

  .adapter-connector--in {
    order: 2;
  }

  .adapter-connector--out {
    order: 4;
  }

  .adapter-connector {
    width: 1px;
    height: 38px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(151, 165, 255, 0.18), rgba(190, 125, 205, 0.72));
  }

  .adapter-connector i {
    display: none;
  }

  .adapter-label {
    margin-bottom: 14px;
  }

  .adapter-item {
    min-height: 64px;
  }
}

/* Static path from source files to an AI-ready knowledge asset */
.pipeline {
  padding-top: 96px;
}

.pipeline .section-intro {
  margin-bottom: 66px;
  gap: 24px;
}

.pipeline .section-intro h2 {
  max-width: 1020px;
}

.pipeline .pipeline-lead {
  display: grid;
  max-width: 1020px;
  margin: 0;
  gap: 8px;
}

.knowledge-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 34px;
  gap: clamp(30px, 4vw, 62px);
}

.knowledge-path::before {
  position: absolute;
  top: 3px;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(
    90deg,
    rgba(137, 153, 255, 0.46),
    rgba(183, 134, 235, 0.72) 52%,
    rgba(231, 126, 181, 0.48)
  );
}

.knowledge-stage {
  position: relative;
  padding-top: 31px;
}

.knowledge-stage::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: linear-gradient(135deg, #879cff, #df7fb8);
}

.knowledge-stage-name {
  display: block;
  margin-bottom: 20px;
  color: #a9aeb8;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.3;
}

.knowledge-stage h3 {
  max-width: 280px;
  margin: 0 0 15px;
  color: #e5e7eb;
  font-size: clamp(24px, 2vw, 29px);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.knowledge-stage p {
  max-width: 300px;
  margin: 0;
  color: #848c98;
  font-size: 15px;
  line-height: 1.58;
}

.knowledge-result {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  align-items: center;
  min-height: 230px;
  padding: 44px 50px;
  gap: clamp(42px, 7vw, 100px);
  background:
    radial-gradient(circle at 84% 12%, rgba(var(--hot-rgb), 0.12), transparent 38%),
    linear-gradient(125deg, rgba(var(--violet-rgb), 0.16), transparent 54%),
    #111119;
}

.knowledge-result span {
  display: block;
  margin-bottom: 15px;
  color: #9da4af;
  font-size: 13px;
  font-weight: 620;
}

.knowledge-result h3 {
  max-width: 670px;
  margin: 0;
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.055em;
}

.knowledge-result p {
  max-width: 490px;
  margin: 0;
  color: #929aa6;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.018em;
}

@media (max-width: 1080px) {
  .pipeline {
    padding-top: 82px;
  }

  .knowledge-path {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 58px;
  }

  .knowledge-path::before {
    display: none;
  }

  .knowledge-stage::after {
    position: absolute;
    top: 3px;
    right: 0;
    left: 0;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, rgba(137, 153, 255, 0.5), rgba(223, 127, 184, 0.2));
  }

  .knowledge-result {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

@media (max-width: 760px) {
  .pipeline {
    padding-top: 64px;
  }

  .pipeline .section-intro {
    margin-bottom: 50px;
  }

  .knowledge-path {
    grid-template-columns: 1fr;
    margin-bottom: 46px;
    gap: 38px;
  }

  .knowledge-stage {
    padding: 0 0 0 24px;
  }

  .knowledge-stage::before {
    top: 7px;
  }

  .knowledge-stage::after {
    top: 10px;
    right: auto;
    bottom: -41px;
    left: 3px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(137, 153, 255, 0.5), rgba(223, 127, 184, 0.18));
  }

  .knowledge-stage:last-child::after {
    display: none;
  }

  .knowledge-stage-name {
    margin-bottom: 12px;
  }

  .knowledge-stage h3,
  .knowledge-stage p {
    max-width: 520px;
  }

  .knowledge-result {
    min-height: 0;
    padding: 36px 24px;
  }

  .knowledge-result h3 {
    font-size: 36px;
  }

  .knowledge-result p {
    font-size: 16px;
  }
}

/* Verifiable answer with an explicit evidence chain */
.answer-section {
  padding-top: 104px;
}

.answer-heading {
  margin-bottom: 64px;
}

.answer-heading h2 {
  max-width: 1020px;
}

.answer-heading .answer-lead {
  display: grid;
  max-width: 1020px;
  margin: 24px 0 0;
  gap: 8px;
}

.evidence-demo {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) 70px minmax(0, 1.08fr);
  align-items: center;
}

.evidence-answer {
  min-width: 0;
  min-height: 440px;
  padding: 42px;
  background:
    radial-gradient(circle at 8% 100%, rgba(var(--violet-rgb), 0.13), transparent 40%),
    #111119;
}

.evidence-label {
  display: block;
  color: #969eaa;
  font-size: 13px;
  font-weight: 620;
  line-height: 1.3;
}

.evidence-query {
  max-width: 500px;
  margin: 18px 0 0;
  color: #d9dde3;
  font-size: 22px;
  font-weight: 560;
  line-height: 1.4;
  letter-spacing: -0.03em;
}

.evidence-response {
  margin-top: 64px;
}

.evidence-response h3 {
  max-width: 560px;
  margin: 18px 0 16px;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 680;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.evidence-response > p {
  max-width: 560px;
  margin: 0;
  color: #939ba7;
  font-size: 17px;
  line-height: 1.58;
}

.evidence-summary {
  display: flex;
  align-items: center;
  margin-top: 30px;
  gap: 16px;
}

.evidence-summary strong {
  color: #c7b6f4;
  font-size: 14px;
  font-weight: 650;
}

.evidence-summary span {
  color: #737c88;
  font-size: 12px;
}

.evidence-links {
  position: relative;
  align-self: end;
  height: 450px;
}

.evidence-links::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 50%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(143, 159, 255, 0.16), rgba(183, 132, 235, 0.72));
}

.evidence-links::after {
  position: absolute;
  top: 126px;
  bottom: 104px;
  left: 50%;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, rgba(183, 132, 235, 0.32), rgba(232, 126, 182, 0.6));
}

.evidence-links i {
  position: absolute;
  right: 0;
  left: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(183, 132, 235, 0.72), rgba(232, 126, 182, 0.2));
}

.evidence-links i:first-child {
  top: 126px;
}

.evidence-links i:last-child {
  bottom: 104px;
}

.evidence-links i::after {
  position: absolute;
  top: 50%;
  left: -2px;
  width: 5px;
  height: 5px;
  content: "";
  background: #bd86e5;
  transform: translateY(-50%);
}

.evidence-sources {
  display: grid;
  gap: 12px;
}

.evidence-sources-label {
  margin: 0 0 5px;
  color: #969eaa;
  font-size: 13px;
  font-weight: 620;
}

.evidence-source {
  min-height: 208px;
  padding: 28px 30px;
  background: rgba(255, 255, 255, 0.045);
}

.evidence-source:first-of-type {
  background:
    linear-gradient(125deg, rgba(var(--violet-rgb), 0.11), transparent 52%),
    rgba(255, 255, 255, 0.045);
}

.evidence-source-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 23px;
  gap: 20px;
}

.evidence-source-head strong {
  color: #dfe2e8;
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.evidence-source-head span {
  flex: 0 0 auto;
  color: #8f97a3;
  font-size: 12px;
}

.evidence-source blockquote {
  margin: 0;
  color: #aeb5bf;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.016em;
}

.evidence-source mark {
  padding: 1px 3px;
  color: #f0d8e7;
  background: rgba(224, 112, 173, 0.2);
}

.evidence-source small {
  display: block;
  margin-top: 19px;
  color: #707986;
  font-size: 11px;
}

@media (max-width: 1080px) {
  .answer-section {
    padding-top: 90px;
  }

  .evidence-demo {
    grid-template-columns: minmax(0, 0.9fr) 44px minmax(0, 1.1fr);
  }

  .evidence-answer {
    padding: 36px;
  }

  .evidence-source {
    padding-inline: 24px;
  }
}

@media (max-width: 760px) {
  .answer-section {
    padding-top: 70px;
  }

  .answer-heading {
    margin-bottom: 50px;
  }

  .evidence-demo {
    grid-template-columns: 1fr;
  }

  .evidence-answer {
    min-height: 0;
    padding: 34px 24px;
  }

  .evidence-response {
    margin-top: 50px;
  }

  .evidence-links {
    display: none;
  }

  .evidence-sources {
    margin-top: 14px;
  }

  .evidence-source {
    min-height: 0;
    padding: 25px 22px;
  }

  .evidence-source-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 18px;
    gap: 5px;
  }

  .evidence-source blockquote {
    font-size: 16px;
  }
}

/* Compact strategic capability map */
.capabilities {
  padding-top: 104px;
}

.capabilities-head {
  margin-bottom: 66px;
}

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

.capabilities-head .capability-lead {
  display: grid;
  max-width: 1020px;
  margin: 24px 0 0;
  gap: 8px;
}

.strategy-map {
  padding: 0 8px;
}

.strategy-foundation {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(680px, 62%);
  min-height: 142px;
  margin: 0 auto;
  padding: 28px 38px;
  flex-direction: column;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 80% 10%, rgba(var(--hot-rgb), 0.16), transparent 38%),
    linear-gradient(130deg, rgba(var(--violet-rgb), 0.27), rgba(var(--violet-rgb), 0.06)),
    #15141d;
}

.strategy-foundation::after {
  position: absolute;
  right: -42px;
  bottom: -72px;
  width: 180px;
  height: 130px;
  content: "";
  background: rgba(255, 255, 255, 0.025);
  transform: rotate(28deg);
}

.strategy-foundation span,
.strategy-foundation h3,
.strategy-foundation p {
  position: relative;
  z-index: 1;
}

.strategy-foundation span {
  margin-bottom: 12px;
  color: #aaa2c6;
  font-size: 12px;
  font-weight: 620;
}

.strategy-foundation h3 {
  margin: 0;
  color: #eef0f4;
  font-size: clamp(27px, 2.5vw, 36px);
  font-weight: 680;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.strategy-foundation p {
  margin: 14px 0 0;
  color: #858d99;
  font-size: 13px;
}

.strategy-capabilities {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 52px;
  padding-top: 31px;
  gap: clamp(24px, 3vw, 46px);
}

.strategy-capabilities::before {
  position: absolute;
  top: 0;
  right: 10%;
  left: 10%;
  height: 1px;
  content: "";
  background: linear-gradient(
    90deg,
    rgba(137, 153, 255, 0.18),
    rgba(183, 132, 235, 0.65) 50%,
    rgba(232, 126, 182, 0.18)
  );
}

.strategy-capabilities::after {
  position: absolute;
  top: -52px;
  left: 50%;
  width: 1px;
  height: 52px;
  content: "";
  background: linear-gradient(180deg, rgba(183, 132, 235, 0.16), rgba(183, 132, 235, 0.65));
}

.strategy-capability {
  position: relative;
  min-width: 0;
  padding-top: 18px;
}

.strategy-capability::before {
  position: absolute;
  top: -31px;
  left: 50%;
  width: 1px;
  height: 31px;
  content: "";
  background: rgba(183, 132, 235, 0.42);
}

.strategy-capability::after {
  position: absolute;
  top: -3px;
  left: 50%;
  width: 7px;
  height: 7px;
  content: "";
  background: linear-gradient(135deg, #899dff, #dd7fb8);
  transform: translateX(-50%);
}

.strategy-capability h3 {
  margin: 0 0 12px;
  color: #dfe2e7;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.14;
  letter-spacing: -0.035em;
}

.strategy-capability p {
  margin: 0;
  color: #838b97;
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 1080px) {
  .capabilities {
    padding-top: 90px;
  }

  .strategy-foundation {
    width: min(680px, 78%);
  }

  .strategy-capabilities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 42px;
    padding-top: 0;
    gap: 42px 56px;
  }

  .strategy-capabilities::before,
  .strategy-capabilities::after {
    display: none;
  }

  .strategy-capability {
    padding-top: 24px;
  }

  .strategy-capability::before {
    top: 0;
    left: 0;
    width: 46px;
    height: 3px;
    background: linear-gradient(90deg, #899dff, #dd7fb8);
  }

  .strategy-capability::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .capabilities {
    padding-top: 70px;
  }

  .capabilities-head {
    margin-bottom: 50px;
  }

  .strategy-map {
    padding: 0;
  }

  .strategy-foundation {
    width: 100%;
    min-height: 164px;
    padding-inline: 24px;
  }

  .strategy-capabilities {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .strategy-capability h3,
  .strategy-capability p {
    max-width: 520px;
  }
}

/* Ready-to-run on-prem Context appliance */
.appliance {
  padding-top: 104px;
}

.appliance-heading {
  margin-bottom: 66px;
}

.appliance-heading h2 {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(48px, 4.6vw, 70px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.appliance-heading .appliance-lead {
  display: grid;
  max-width: 1020px;
  margin: 24px 0 0;
  gap: 8px;
}

.appliance-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  min-height: 570px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(var(--violet-rgb), 0.16), transparent 34%),
    #111119;
}

.appliance-visual,
.appliance-content {
  min-width: 0;
  padding: 54px;
}

.appliance-visual {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 72% 45%, rgba(var(--hot-rgb), 0.12), transparent 34%),
    rgba(255, 255, 255, 0.018);
}

.appliance-kicker,
.appliance-intro {
  margin: 0;
  color: #a1a8b4;
  font-size: 13px;
  font-weight: 620;
}

.appliance-stack {
  position: relative;
  width: 380px;
  height: 250px;
  margin: 18px auto 10px;
}

.appliance-node {
  position: absolute;
  width: 282px;
  height: 172px;
  overflow: hidden;
  box-shadow: 0 28px 48px rgba(0, 0, 0, 0.25);
}

.appliance-node::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, #879cff, #af83ea 52%, #df7eb6);
}

.appliance-node::after {
  position: absolute;
  right: 16px;
  bottom: 14px;
  width: 7px;
  height: 7px;
  content: "";
  background: #a891ec;
  box-shadow: 14px 0 0 rgba(255, 255, 255, 0.2);
}

.appliance-node--back {
  z-index: 1;
  top: 0;
  right: 0;
  background: #272631;
}

.appliance-node--middle {
  z-index: 2;
  top: 28px;
  right: 32px;
  background: #1f1f29;
}

.appliance-node--front {
  z-index: 3;
  top: 56px;
  right: 64px;
  display: flex;
  padding: 27px 26px 24px;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 82% 14%, rgba(229, 118, 177, 0.18), transparent 36%),
    #171820;
}

.appliance-node > span {
  position: absolute;
  top: 17px;
  left: 18px;
  color: #686f7c;
  font-size: 11px;
  font-weight: 650;
}

.appliance-brand {
  display: flex;
  align-items: center;
  margin: auto 0;
  gap: 14px;
}

.appliance-brand .brand-mark {
  filter: drop-shadow(0 10px 18px rgba(72, 43, 185, 0.28));
  transform: scale(0.84);
  transform-origin: center;
}

.appliance-brand strong {
  color: #f0f1f4;
  font-size: 31px;
  font-weight: 760;
  line-height: 1;
  letter-spacing: -0.05em;
}

.appliance-node--front small {
  color: #747d89;
  font-size: 11px;
  font-weight: 600;
}

.appliance-scale {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 10px;
  color: #7f8793;
  font-size: 11px;
}

.appliance-scale i {
  height: 1px;
  background: linear-gradient(90deg, rgba(140, 157, 255, 0.25), rgba(215, 125, 187, 0.68));
}

.appliance-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.appliance-content h3 {
  max-width: 620px;
  margin: 22px 0 20px;
  font-size: clamp(36px, 3.6vw, 52px);
  font-weight: 690;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.appliance-content > p:not(.appliance-intro) {
  max-width: 600px;
  margin: 0;
  color: #939ba7;
  font-size: 17px;
  line-height: 1.6;
}

.appliance-pricing {
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 24px 54px;
  background:
    linear-gradient(90deg, rgba(var(--violet-rgb), 0.2), rgba(var(--hot-rgb), 0.08)),
    #17161f;
}

.appliance-price-main {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
}

.appliance-price-main span {
  color: #a4abb6;
  font-size: 14px;
  font-weight: 650;
}

.appliance-price-main strong {
  margin: 0;
  color: #f0f1f4;
  font-size: clamp(31px, 3vw, 42px);
  font-weight: 720;
  line-height: 1;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.appliance-price-main small {
  color: #7d8692;
  font-size: 11px;
  line-height: 1.4;
}

.appliance-renewal {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.appliance-renewal span {
  color: #858e9a;
  font-size: 12px;
}

.appliance-renewal strong {
  margin: 8px 0 6px;
  color: #d8dbe1;
  font-size: 20px;
  font-weight: 680;
  letter-spacing: -0.025em;
}

.appliance-renewal small {
  color: #747d89;
  font-size: 11px;
  line-height: 1.4;
}

.appliance-price-note {
  grid-column: 1 / -1;
  color: #666f7b;
  font-size: 10px;
  line-height: 1.4;
}

.appliance-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 38px;
  gap: 10px;
}

.appliance-specs > div {
  min-height: 98px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.045);
}

.appliance-specs strong,
.appliance-specs span {
  display: block;
}

.appliance-specs strong {
  margin-bottom: 7px;
  color: #e0e3e8;
  font-size: 19px;
  font-weight: 670;
  letter-spacing: -0.025em;
}

.appliance-specs span {
  color: #7d8692;
  font-size: 12px;
  line-height: 1.4;
}

@media (max-width: 1080px) {
  .appliance {
    padding-top: 90px;
  }

  .appliance-panel {
    grid-template-columns: 1fr;
  }

  .appliance-visual {
    min-height: 520px;
  }

  .appliance-content {
    padding-block: 64px;
  }
}

@media (max-width: 760px) {
  .appliance {
    padding-top: 70px;
  }

  .appliance-heading {
    margin-bottom: 50px;
  }

  .appliance-heading h2 {
    font-size: 39px;
  }

  .appliance-visual,
  .appliance-content {
    padding: 36px 24px;
  }

  .appliance-visual {
    min-height: 480px;
  }

  .appliance-stack {
    width: 310px;
    height: 225px;
  }

  .appliance-node {
    width: 240px;
    height: 150px;
  }

  .appliance-node--middle {
    right: 28px;
    top: 25px;
  }

  .appliance-node--front {
    top: 50px;
    right: 56px;
    padding: 24px 20px 21px;
  }

  .appliance-brand {
    gap: 8px;
  }

  .appliance-brand .brand-mark {
    margin-right: -5px;
    transform: scale(0.7);
  }

  .appliance-brand strong {
    font-size: 25px;
  }

  .appliance-scale {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .appliance-scale i {
    display: none;
  }

  .appliance-content h3 {
    font-size: 37px;
  }

  .appliance-pricing {
    width: 100%;
    min-width: 0;
    padding: 24px 20px;
  }

  .appliance-price-main {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .appliance-price-main strong {
    white-space: normal;
  }

  .appliance-price-note {
    grid-column: auto;
  }

  .appliance-specs {
    grid-template-columns: 1fr;
  }
}

/* Compact pilot and deployment choice */
.pilot {
  padding-top: 92px;
  padding-bottom: 64px;
}

.pilot-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  justify-content: stretch;
  min-height: 0;
  padding: 64px;
  overflow: hidden;
  gap: clamp(52px, 7vw, 100px);
  text-align: left;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(var(--violet-rgb), 0.18),
      transparent 34%
    ),
    radial-gradient(
      circle at 88% 82%,
      rgba(var(--hot-rgb), 0.1),
      transparent 30%
    ),
    #101117;
  background-size: auto;
}

.pilot-panel::before,
.pilot-panel::after {
  display: none;
}

.pilot-copy,
.pilot-formats {
  position: relative;
  z-index: 1;
}

.pilot-copy h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(48px, 4.5vw, 68px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.pilot-copy .pilot-lead {
  display: grid;
  max-width: 720px;
  margin: 24px 0 0;
  gap: 8px;
}

.pilot-cta {
  margin-top: 32px;
}

.pilot-formats {
  display: grid;
  gap: 12px;
}

.pilot-format {
  display: flex;
  flex-direction: column;
  min-height: 190px;
  padding: 28px 30px;
  background: rgba(255, 255, 255, 0.045);
}

.pilot-format--cloud {
  background:
    linear-gradient(
      125deg,
      rgba(var(--violet-rgb), 0.14),
      transparent 55%
    ),
    rgba(255, 255, 255, 0.045);
}

.pilot-format--local {
  background:
    linear-gradient(
      125deg,
      rgba(var(--mint-rgb), 0.09),
      transparent 58%
    ),
    rgba(255, 255, 255, 0.045);
}

.pilot-format > span {
  color: #aaa2c6;
  font-size: 13px;
  font-weight: 650;
}

.pilot-format h3 {
  margin: 18px 0 10px;
  font-size: 28px;
  font-weight: 670;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.pilot-format p {
  max-width: 430px;
  margin: 0;
  color: #8d95a1;
  font-size: 15px;
  line-height: 1.55;
}

.pilot-format small {
  margin-top: auto;
  padding-top: 20px;
  color: #747d89;
  font-size: 11px;
}

/* Minimal footer */
.site-footer {
  display: flex;
  grid-template-columns: none;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 34px;
  padding-bottom: 34px;
  gap: 32px;
}

.footer-brand p {
  margin-top: 14px;
  color: #707884;
  font-size: 13px;
}

.footer-copy {
  color: #59616c;
  font-size: 11px;
}

@media (max-width: 1080px) {
  .pilot {
    padding-top: 82px;
  }

  .pilot-panel {
    grid-template-columns: 1fr;
    padding: 56px;
    gap: 50px;
  }

  .pilot-copy h2,
  .pilot-copy .pilot-lead {
    max-width: 820px;
  }

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

@media (max-width: 760px) {
  .pilot {
    width: 100%;
    padding: 64px 0 48px;
  }

  .pilot-panel {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 48px 20px;
    border-radius: 0;
    gap: 44px;
  }

  .pilot-copy h2 {
    font-size: 42px;
  }

  .pilot-cta {
    justify-content: center;
    width: 100%;
  }

  .pilot-formats {
    grid-template-columns: 1fr;
  }

  .pilot-format {
    min-height: 180px;
    padding: 25px 22px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 30px;
    padding-bottom: 30px;
    gap: 24px;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
