:root {
  --bg: #0a0d10;
  --bg-soft: #101419;
  --panel: rgba(9, 13, 16, 0.84);
  --panel-strong: #0b0f13;
  --panel-muted: #12181d;
  --line: rgba(88, 112, 125, 0.18);
  --line-strong: rgba(139, 92, 246, 0.24);
  --copy: rgba(222, 232, 238, 0.78);
  --muted: rgba(162, 182, 194, 0.62);
  --title: #f3f5f7;
  --cyan: #8b5cf6;
  --cyan-strong: #6d28d9;
  --lime: #cfff31;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
  --scroll-progress: 0;
  --grid-shift: 0px;
  --section-vh: calc(100svh - 72px);
  --grid:
    linear-gradient(rgba(38, 58, 70, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 58, 70, 0.22) 1px, transparent 1px);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--copy);
  background:
    radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.08), transparent 26%),
    radial-gradient(circle at 15% 20%, rgba(139, 92, 246, 0.06), transparent 30%),
    radial-gradient(circle at 85% 28%, rgba(139, 92, 246, 0.05), transparent 26%),
    var(--bg);
}

body.modal-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

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

.site-shell {
  position: relative;
  overflow: hidden;
}

.page-grid {
  position: fixed;
  inset: 0;
  background-image: var(--grid);
  background-size: 52px 52px;
  background-position: 0 var(--grid-shift);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.22));
  pointer-events: none;
  opacity: 0.44;
  z-index: 0;
  transition: background-position 140ms linear;
}

.topbar,
main,
.footer {
  position: relative;
  z-index: 1;
}

.topbar {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 28px;
  background: rgba(7, 10, 13, 0.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 220ms ease, border-color 220ms ease, padding 220ms ease;
}

.topbar::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 1px;
  width: calc(var(--scroll-progress) * 100%);
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.88), rgba(207, 255, 49, 0.68));
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.3);
}

.scroll-rail {
  position: fixed;
  top: 50%;
  right: 14px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateY(-50%);
  pointer-events: none;
}

.scroll-progress {
  position: relative;
  width: 1px;
  height: 230px;
  background: rgba(255, 255, 255, 0.08);
}

.scroll-progress-fill {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: calc(var(--scroll-progress) * 100%);
  background: linear-gradient(180deg, var(--cyan), var(--lime));
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.32);
}

.scroll-rail-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.rail-stop {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  opacity: 0.72;
  transition: opacity 180ms ease, transform 220ms ease;
  pointer-events: auto;
}

.rail-stop:hover,
.rail-stop.is-active {
  opacity: 1;
  transform: translateX(-4px);
}

.rail-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(139, 92, 246, 0.55);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 0 rgba(139, 92, 246, 0.68);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.rail-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(189, 207, 216, 0.7);
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 180ms ease, transform 220ms ease, color 180ms ease;
}

.rail-stop:hover .rail-label,
.rail-stop.is-active .rail-label {
  opacity: 1;
  transform: translateX(0);
  color: rgba(230, 239, 244, 0.92);
}

.rail-stop:hover .rail-dot,
.rail-stop.is-active .rail-dot {
  background: rgba(139, 92, 246, 0.14);
  box-shadow: inset 0 0 0 5px rgba(139, 92, 246, 0.74), 0 0 14px rgba(139, 92, 246, 0.3);
  transform: scale(1.08);
}

.brand-lockup,
.topnav,
.hero-strip,
.hero-actions,
.footer,
.footer-links,
.score-grid,
.metrics-grid,
.top-cta,
.proof-row {
  display: flex;
  align-items: center;
}

.brand-lockup {
  gap: 10px;
}

.brand-mark {
  width: 11px;
  height: 11px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--cyan), rgba(139, 92, 246, 0.18));
  box-shadow: 0 0 18px rgba(139, 92, 246, 0.55);
}

.brand-name {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--title);
}

.topnav {
  gap: 22px;
}

.topnav button,
.footer-links button {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.topnav button:hover,
.footer-links button:hover {
  color: var(--cyan);
}

.top-cta {
  justify-content: center;
  padding: 11px 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #041012;
  background: linear-gradient(90deg, var(--cyan), #a78bfa);
  box-shadow: 0 0 22px rgba(139, 92, 246, 0.28);
}

main {
  padding: 0 0 32px;
}

.section-frame,
.section-block,
.metrics-band,
.cta-block,
.footer {
  width: min(1200px, calc(100% - 44px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 540px) 1fr;
  gap: 28px;
  align-items: center;
  min-height: var(--section-vh);
  padding: 18px 0 18px;
  --hero-shift: 0px;
  --hero-glow-shift: 0px;
}

.hero-copy {
  transform: translateY(calc(var(--hero-shift) * 0.22));
  transition: transform 180ms linear;
}

.eyebrow,
.capability-eyebrow,
.asset-eyebrow,
.stage-label,
.selector-label,
.metric-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow,
.capability-eyebrow,
.asset-eyebrow,
.stage-label {
  color: var(--lime);
}

.hero h1,
.section-head h2,
.metrics-copy h2,
.cta-panel h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--title);
}

.hero h1 {
  margin-top: 16px;
  font-size: clamp(54px, 7.1vw, 84px);
  line-height: 0.94;
  max-width: 520px;
}

.hero h1 span,
.cta-panel h2 span,
.metric-value,
.confidence-box strong {
  color: var(--cyan);
  text-shadow: 0 0 26px rgba(139, 92, 246, 0.18);
}

.hero-text {
  max-width: 470px;
  margin: 20px 0 12px;
  padding: 14px 0 0;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(231, 239, 244, 0.84);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-strip {
  flex-wrap: wrap;
  gap: 18px;
  margin: 0 0 16px;
}

.hero-strip span,
.sequence-pill,
.panel-chip {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-strip span {
  color: var(--lime);
}

.hero-note {
  margin: 0 0 22px;
  font-size: 15px;
  color: rgba(206, 218, 226, 0.84);
}

.hero-impact {
  margin: 0 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.08;
  color: rgba(244, 247, 249, 0.96);
}

.truth-line {
  margin-top: 18px;
  max-width: 460px;
  font-size: 14px;
  line-height: 1.72;
  color: rgba(232, 239, 243, 0.86);
}

.hero-actions {
  gap: 18px;
}

.primary-button,
.ghost-button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.primary-button {
  color: #041114;
  background: linear-gradient(90deg, var(--cyan-strong), #a78bfa);
  box-shadow: 0 0 36px rgba(139, 92, 246, 0.16);
}

.ghost-button {
  color: var(--cyan);
  border: 1px solid rgba(139, 92, 246, 0.42);
}

.hero-visual {
  position: relative;
  min-height: 460px;
  transform: translateY(var(--hero-shift));
  transition: transform 180ms linear;
}

.hero-field {
  position: relative;
  height: 100%;
  min-height: 460px;
  background:
    linear-gradient(180deg, rgba(7, 12, 16, 0.08), rgba(7, 12, 16, 0.64)),
    radial-gradient(circle at 50% 48%, rgba(139, 92, 246, 0.18), transparent 30%);
  overflow: hidden;
}

.hero-haze,
.hero-core,
.hero-ring,
.hero-lines,
.hero-node,
.molecule-glow,
.molecule-lines,
.molecule-node,
.molecule-platform {
  position: absolute;
}

.hero-haze {
  inset: 8% 10% 10%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12), transparent 55%);
  filter: blur(24px);
  transform: translateY(var(--hero-glow-shift));
  transition: transform 180ms linear;
}

.hero-core {
  inset: 14% 18% 14%;
  background:
    radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.24), transparent 40%),
    radial-gradient(circle at 55% 42%, rgba(139, 92, 246, 0.08), transparent 56%);
  filter: blur(18px);
}

.hero-lines,
.molecule-lines {
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-lines path,
.molecule-lines path {
  stroke: rgba(167, 139, 250, 0.28);
  stroke-width: 1.4;
}

.hero-node,
.molecule-node {
  width: var(--size);
  height: var(--size);
  border-radius: 999px;
  background: rgba(196, 181, 253, 0.95);
  box-shadow: 0 0 14px rgba(139, 92, 246, 0.6);
  animation: pulse 6s ease-in-out infinite;
  animation-delay: var(--delay);
}

.hero-ring {
  border: 1px solid rgba(139, 92, 246, 0.12);
  border-radius: 50%;
}

.ring-a {
  inset: 16% 20%;
}

.ring-b {
  inset: 26% 30%;
}

.section-block {
  padding: 26px 0;
}

[data-section] {
  position: relative;
  isolation: isolate;
  scroll-margin-top: 104px;
  transition: filter 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-section]::before {
  content: '';
  position: absolute;
  inset: 6% -8% auto;
  height: 220px;
  background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.12), transparent 68%);
  opacity: 0;
  transform: translateY(26px) scale(0.94);
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: -1;
}

[data-section].is-current::before {
  opacity: 1;
  transform: translateY(0) scale(1);
}

[data-section].is-past {
  filter: saturate(0.92) brightness(0.96);
}

.capabilities-block {
  min-height: var(--section-vh);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 8px;
}

.section-head {
  margin-bottom: 28px;
}

.section-head h2,
.cta-panel h2 {
  font-size: clamp(42px, 6vw, 68px);
  line-height: 0.98;
}

.metrics-copy h2 {
  font-size: clamp(30px, 4.8vw, 56px);
  line-height: 0.94;
  max-width: 440px;
}

.section-head.center {
  text-align: center;
}

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

.capability-card,
.asset-card,
.metric-tile,
.proof-panel,
.selector-box,
.score-box,
.radar-box {
  position: relative;
  background: rgba(12, 16, 20, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.capability-card,
.asset-card {
  padding: 24px 24px 22px;
  min-height: 280px;
  overflow: hidden;
}

.capability-card:hover,
.asset-card:hover,
.metric-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.14);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.52);
}

.card-noise {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(139, 92, 246, 0.07), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 30%);
  pointer-events: none;
}

.capability-card h3,
.asset-card h3,
.console-stage h3 {
  margin: 16px 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  line-height: 1.02;
  color: var(--title);
}

.capability-card p,
.asset-card p,
.metrics-copy p,
.micro-copy,
.cta-panel p {
  font-size: 14px;
  line-height: 1.72;
  color: var(--muted);
}

.signal-list {
  margin: 20px 0 26px;
  padding: 0;
  list-style: none;
}

.signal-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 16px;
  font-size: 13px;
  color: rgba(228, 237, 242, 0.78);
}

.signal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--cyan);
}

.mini-link {
  padding: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}

.mini-link:hover {
  color: #c4b5fd;
}

.console-shell {
  border: 1px solid rgba(139, 92, 246, 0.24);
  background:
    linear-gradient(180deg, rgba(12, 18, 22, 0.94), rgba(7, 10, 13, 0.92)),
    rgba(9, 13, 16, 0.94);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.console-block {
  min-height: var(--section-vh);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.console-shell:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.66);
}

.console-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 24px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(198, 235, 240, 0.75);
  border-bottom: 1px solid rgba(139, 92, 246, 0.12);
}

.console-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 240px;
  gap: 24px;
  padding: 24px;
}

.console-sidebar,
.console-rail {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.panel-chip,
.sequence-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 0;
  color: var(--cyan);
  border: 0;
  background: transparent;
  box-shadow: none;
}

.selector-box {
  padding: 16px 16px 14px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.selector-box.active {
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: inset 3px 0 0 rgba(139, 92, 246, 0.4);
}

.selector-box strong,
.proof-row strong,
.score-box strong {
  font-family: "Manrope", sans-serif;
  color: var(--title);
}

.selector-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
}

.micro-copy {
  margin-top: 4px;
}

.console-stage {
  min-width: 0;
}

.stage-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.stage-copy-block {
  max-width: 520px;
}

.console-stage h3 {
  margin: 6px 0 12px;
  font-size: 38px;
}

.stage-copyline {
  max-width: 480px;
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(208, 216, 226, 0.68);
}

.confidence-box {
  min-width: 148px;
  padding-top: 6px;
  text-align: right;
}

.confidence-box span {
  display: block;
  margin-bottom: 6px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.confidence-box strong {
  font-size: 44px;
  line-height: 1;
}

.confidence-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  margin-top: 12px;
  padding: 0 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(230, 224, 255, 0.92);
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.22);
}

.molecule-well {
  position: relative;
  height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.molecule-glow {
  inset: 18% 18% 12%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.32), transparent 48%);
  filter: blur(30px);
}

.molecule-core {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 44%, rgba(196, 181, 253, 0.22), transparent 34%),
    radial-gradient(circle at 50% 60%, rgba(109, 40, 217, 0.18), transparent 58%),
    rgba(6, 18, 24, 0.72);
  border: 1px solid rgba(139, 92, 246, 0.12);
  overflow: hidden;
  box-shadow: inset 0 0 100px rgba(139, 92, 246, 0.06);
}

.molecule-platform {
  left: 50%;
  bottom: 62px;
  width: 280px;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.26), rgba(139, 92, 246, 0.02) 70%);
  box-shadow: 0 0 34px rgba(139, 92, 246, 0.18);
}

.score-grid {
  gap: 10px;
}

.score-box {
  flex: 1;
  min-width: 0;
  padding: 14px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.score-box span {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.score-box strong {
  font-size: 26px;
}

.score-box.warning strong {
  color: var(--lime);
}

.radar-box {
  padding: 18px;
  min-height: 214px;
}

.radar-box.compact {
  padding: 12px 0 8px;
  min-height: 0;
}

.radar-frame {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(139, 92, 246, 0.08);
  background:
    radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.06), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.radar-frame::before,
.radar-frame::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(139, 92, 246, 0.12);
}

.radar-frame::before {
  inset: 18%;
}

.radar-frame::after {
  inset: 34%;
}

.radar-slice {
  width: 58%;
  aspect-ratio: 1;
  clip-path: polygon(50% 50%, 88% 34%, 70% 80%);
  background: linear-gradient(180deg, #b794ff, rgba(139, 92, 246, 0.18));
  filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.34));
}

.full {
  width: 100%;
}

.insight-card {
  padding: 16px 16px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.insight-kicker {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
}

.insight-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.insight-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.insight-row span {
  color: rgba(185, 197, 208, 0.72);
}

.insight-row strong {
  font-family: "Manrope", sans-serif;
  color: var(--title);
}

.proof-panel {
  padding: 16px;
}

.proof-row {
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  font-size: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.metrics-band {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: 36px;
  align-items: start;
  min-height: var(--section-vh);
  align-content: center;
  padding: 24px 0;
}

.metrics-copy {
  max-width: 460px;
}

.metrics-grid {
  align-items: stretch;
  flex-wrap: wrap;
  gap: 14px;
}

.metric-tile {
  flex: 1 1 calc(50% - 7px);
  min-height: 150px;
  padding: 24px;
  justify-content: flex-start;
  flex-direction: column;
}

.metric-value {
  margin-bottom: 12px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(44px, 6vw, 62px);
  font-weight: 800;
}

.metric-label {
  color: rgba(235, 241, 245, 0.76);
}

.assets-block {
  min-height: var(--section-vh);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 8px;
  padding-bottom: 26px;
}

.asset-card {
  min-height: 260px;
}

.asset-line {
  width: 26px;
  height: 3px;
  margin-bottom: 16px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(139, 92, 246, 0.3);
}

.cta-block {
  min-height: var(--section-vh);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 18px;
}

.cta-panel {
  position: relative;
  padding: 72px 24px 78px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(44, 50, 53, 0.86), rgba(21, 28, 31, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.cta-panel::before {
  content: '';
  position: absolute;
  inset: auto -10% -45% -10%;
  height: 180px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.16), transparent 62%);
  pointer-events: none;
}

.cta-panel h2 {
  max-width: 760px;
  margin: 12px auto 22px;
}

.cta-button {
  margin: 0 auto 18px;
}

.cta-panel p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer {
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 36px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-links {
  gap: 16px;
}

.footer-links button {
  padding: 0;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(3, 7, 10, 0.76);
  backdrop-filter: blur(12px);
}

.request-modal {
  position: relative;
  width: min(720px, 100%);
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(13, 18, 22, 0.96), rgba(9, 12, 15, 0.98)),
    var(--panel-strong);
  border: 1px solid rgba(139, 92, 246, 0.16);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.56);
}

.request-modal.success {
  width: min(620px, 100%);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  font-size: 26px;
  color: var(--muted);
}

.request-modal h2 {
  margin: 12px 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--title);
}

.request-copy {
  max-width: 540px;
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.request-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.request-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.request-form label span,
.request-summary span {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--title);
  padding: 14px 14px 13px;
  font: inherit;
  resize: vertical;
  color-scheme: dark;
}

.request-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(243, 245, 247, 0.72) 50%),
    linear-gradient(135deg, rgba(243, 245, 247, 0.72) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

.request-form select option {
  background: #0b0f13;
  color: var(--title);
}

.request-form input::placeholder,
.request-form textarea::placeholder {
  color: rgba(170, 183, 193, 0.46);
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  outline: none;
  border-color: rgba(139, 92, 246, 0.42);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.08);
}

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

.form-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.request-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 16px 0 24px;
}

.request-summary div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.request-summary strong {
  display: block;
  margin-top: 8px;
  font-family: "Manrope", sans-serif;
  color: var(--title);
}

[data-reveal] {
  opacity: 0.001;
  transform: translate3d(0, 30px, 0) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

[data-reveal="fade"] {
  transform: translate3d(0, 0, 0) scale(0.985);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.26;
    transform: scale(0.9);
  }

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

@media (max-width: 1100px) {
  .scroll-rail {
    right: 12px;
  }

  .hero,
  .metrics-band,
  .console-grid,
  .capability-grid,
  .asset-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-field {
    min-height: 420px;
  }

  .console-grid {
    gap: 18px;
  }

  .metrics-band {
    padding: 72px 0;
  }

  .metrics-copy h2,
  .metrics-copy {
    max-width: none;
  }
}

@media (max-width: 1380px) {
  .scroll-rail {
    right: 8px;
    gap: 10px;
  }

  .rail-label,
  .rail-stop:hover .rail-label,
  .rail-stop.is-active .rail-label {
    display: none;
  }
}

@media (max-width: 760px) {
  .scroll-rail {
    display: none;
  }

  .topbar {
    flex-wrap: wrap;
    padding: 14px 16px;
  }

  .topnav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 2px;
  }

  .section-frame,
  .section-block,
  .metrics-band,
  .cta-block,
  .footer {
    width: min(1200px, calc(100% - 24px));
  }

  .hero {
    gap: 20px;
    padding-top: 36px;
  }

  .hero-copy,
  .hero-visual,
  .hero-haze,
  .page-grid {
    transition: none;
  }

  .hero h1 {
    font-size: clamp(50px, 16vw, 74px);
  }

  .hero-text {
    font-size: 16px;
  }

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

  .primary-button,
  .ghost-button,
  .top-cta {
    width: 100%;
  }

  .capability-card,
  .asset-card,
  .metric-tile,
  .proof-panel,
  .selector-box,
  .score-box,
  .radar-box {
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  }

  .console-head,
  .stage-meta,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .console-head {
    padding: 16px;
  }

  .console-grid {
    padding: 16px;
  }

  .console-stage h3 {
    font-size: 30px;
  }

  .confidence-box {
    text-align: left;
  }

  .confidence-box strong {
    font-size: 38px;
  }

  .molecule-well {
    height: 320px;
  }

  .molecule-core {
    width: 240px;
    height: 240px;
  }

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

  .metric-tile {
    min-height: 126px;
  }

  .cta-panel {
    padding: 72px 18px 78px;
  }

  .request-modal {
    padding: 22px 18px;
  }

  .request-form,
  .request-summary,
  .form-actions {
    grid-template-columns: 1fr;
  }

  .form-actions .primary-button,
  .form-actions .ghost-button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .hero-strip {
    gap: 10px;
  }

  .hero-strip span {
    display: block;
    width: 100%;
  }
}
