:root {
  color-scheme: dark;
  --abyss: #001f3f;
  --abyss-2: #032a4d;
  --night: #050b12;
  --night-soft: #09121d;
  --surface: #0b1724;
  --surface-2: #101f2d;
  --gold: #d4af37;
  --gold-light: #e8cf7a;
  --cyan: #00ffff;
  --cloud: #f2f3f3;
  --paper: #e9e8e2;
  --ink: #0a1726;
  --steel: #8090a0;
  --white: #f2f5f7;
  --line-dark: rgba(216, 228, 237, 0.12);
  --line-light: rgba(10, 23, 38, 0.15);
  --font: "Source Han Sans SC", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  --font-display: "Source Han Sans SC", "Noto Sans SC", "PingFang SC", system-ui, sans-serif;
  --font-latin: Inter, Manrope, Arial, system-ui, sans-serif;
  --shell: 1280px;
  --gutter: clamp(20px, 4vw, 64px);
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--night);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

button {
  color: inherit;
}

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

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--night);
  background: var(--gold-light);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.shell {
  width: min(var(--shell), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

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

.section-light {
  color: var(--ink);
  background: var(--paper);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 11, 18, 0.74);
  backdrop-filter: blur(18px) saturate(135%);
  transition: background 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 11, 18, 0.94);
  border-bottom-color: rgba(212, 175, 55, 0.2);
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-symbol {
  width: 44px;
  height: 44px;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
}

.brand-symbol img {
  width: 92px;
  max-width: none;
  transform: translate(-24px, -22px);
}

.brand-name {
  color: var(--white);
  font-size: 17px;
  font-weight: 650;
  letter-spacing: 0.12em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 38px);
  color: rgba(242, 245, 247, 0.72);
  font-size: 13px;
  letter-spacing: .04em;
}

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

.primary-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

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

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  color: #07111a;
  background: var(--gold-light);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 650;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-dark);
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  width: 18px;
  height: 1px;
  display: block;
  margin: 5px auto;
  background: var(--white);
  transition: transform 180ms ease;
}

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 150px 0 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 255, 255, 0.07), transparent 25%),
    radial-gradient(circle at 18% 90%, rgba(212, 175, 55, 0.07), transparent 30%),
    linear-gradient(145deg, #050b12 0%, #061321 48%, #001a35 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: auto -10vw -36vw;
  height: 55vw;
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.hero-grid,
.system-grid,
.demo-grid {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 82%);
}

.hero-grid::before,
.system-grid::before,
.demo-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background:
    linear-gradient(34deg, transparent 48%, rgba(0, 255, 255, 0.16) 49%, rgba(0, 255, 255, 0.16) 49.3%, transparent 50%),
    linear-gradient(146deg, transparent 54%, rgba(212, 175, 55, 0.15) 54.5%, rgba(212, 175, 55, 0.15) 54.8%, transparent 55.3%);
  background-size: 520px 360px, 680px 420px;
}

.hero-glow {
  position: absolute;
  z-index: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow--cyan {
  top: 25%;
  right: 15%;
  background: var(--cyan);
  box-shadow: 0 0 52px 18px rgba(0,255,255,.28), 0 0 160px 70px rgba(0,255,255,.06);
}

.hero-glow--gold {
  bottom: 18%;
  left: 9%;
  background: var(--gold);
  box-shadow: 0 0 48px 16px rgba(212,175,55,.24), 0 0 150px 64px rgba(212,175,55,.05);
}

.hero-layout {
  min-height: calc(100vh - 224px);
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(520px, 1.04fr);
  align-items: center;
  gap: clamp(54px, 7vw, 110px);
  padding-bottom: 74px;
}

.hero-copy {
  max-width: 660px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: rgba(242, 245, 247, 0.62);
  font-family: var(--font-latin);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.14em;
}

.eyebrow > span {
  width: 42px;
  height: 1px;
  position: relative;
  background: rgba(0,255,255,.38);
}

.eyebrow > span::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(212,175,55,.6);
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 30px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(58px, 5.8vw, 84px);
  line-height: 1.06;
  letter-spacing: -0.052em;
  font-weight: 540;
}

.hero h1 em {
  position: relative;
  color: var(--gold-light);
  font-style: normal;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: -12px;
  left: 46%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(220, 230, 236, 0.7);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 650;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), border-color 200ms ease, background 200ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.button--gold {
  color: #07111a;
  background: var(--gold-light);
  box-shadow: 0 16px 42px rgba(212,175,55,.13);
}

.button--gold:hover {
  box-shadow: 0 20px 54px rgba(212,175,55,.22);
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.025);
}

.button--ghost:hover {
  border-color: rgba(0,255,255,.36);
  background: rgba(0,255,255,.035);
}

.button--wide {
  width: 100%;
}

.hero-provenance {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  color: rgba(242,245,247,.5);
  font-size: 13px;
}

.provenance-mark {
  width: 28px;
  height: 28px;
  display: block;
  position: relative;
  border: 1px solid rgba(212,175,55,.38);
  transform: rotate(45deg);
}

.provenance-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  background: var(--gold);
}

.product-stage {
  min-width: 0;
  position: relative;
  padding: 60px 0 52px;
  perspective: 1200px;
}

.stage-orbit {
  position: absolute;
  z-index: -1;
  inset: 2% -10%;
  border: 1px solid rgba(0,255,255,.12);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.stage-orbit--two {
  inset: 14% -3%;
  border-color: rgba(212,175,55,.12);
  transform: rotate(16deg);
}

.app-window {
  overflow: hidden;
  border: 1px solid rgba(191, 215, 228, 0.15);
  background: rgba(7, 16, 27, 0.94);
  box-shadow: 0 55px 120px rgba(0,0,0,.46), 0 0 80px rgba(0,255,255,.035);
  transform: rotateY(-3deg) rotateX(1deg);
}

.app-titlebar {
  min-height: 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(242,245,247,.6);
  font-size: 11px;
  letter-spacing: .08em;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
}

.window-dots i:nth-child(2) { background: rgba(212,175,55,.62); }
.window-dots i:nth-child(3) { background: rgba(0,255,255,.5); }

.live-state {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(242,245,247,.48);
}

.live-state i,
.workflow-state i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(0,255,255,.72);
}

.app-body {
  min-height: 482px;
  display: grid;
  grid-template-columns: 74px 1fr;
}

.app-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 23px;
  padding: 22px 10px;
  border-right: 1px solid rgba(255,255,255,.07);
  color: rgba(242,245,247,.35);
  font-size: 10px;
}

.app-sidebar b {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  color: var(--gold-light);
  border: 1px solid rgba(212,175,55,.38);
  font-family: var(--font-latin);
  font-size: 12px;
}

.app-sidebar .active {
  color: var(--white);
}

.app-content {
  min-width: 0;
  padding: 26px 28px 30px;
}

.app-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.app-heading small,
.mock-top small,
.visual-control small,
.lead-list-head small {
  color: rgba(0,255,255,.56);
  font-family: var(--font-latin);
  font-size: 9px;
  letter-spacing: .14em;
}

.app-heading h2 {
  margin: 6px 0 0;
  color: var(--white);
  font-size: 21px;
  font-weight: 600;
}

.app-heading button {
  min-height: 30px;
  padding: 0 12px;
  color: rgba(242,245,247,.62);
  border: 1px solid rgba(255,255,255,.1);
  background: transparent;
  font-size: 10px;
}

.pipeline {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
}

.pipeline-step {
  display: grid;
  justify-items: center;
  gap: 4px;
  color: rgba(242,245,247,.34);
  white-space: nowrap;
}

.pipeline-step i {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  font-family: var(--font-latin);
  font-size: 8px;
  font-style: normal;
}

.pipeline-step span { font-size: 10px; }
.pipeline-step small { font-size: 8px; }
.pipeline-step.is-done { color: var(--gold-light); }
.pipeline-step.is-active { color: var(--white); }
.pipeline-step.is-active i { border-color: var(--cyan); box-shadow: 0 0 18px rgba(0,255,255,.16); }

.pipeline-line {
  height: 1px;
  background: rgba(255,255,255,.12);
}

.pipeline-line.is-active {
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}

.app-panels {
  display: grid;
  grid-template-columns: minmax(0, 1.36fr) minmax(150px, .64fr);
  gap: 14px;
  margin-top: 25px;
}

.signal-panel,
.status-panel {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.025);
}

.panel-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(242,245,247,.42);
  font-size: 9px;
}

.panel-label b {
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 500;
}

.panel-label b.cyan { color: var(--cyan); }

.signal-panel h3 {
  margin: 15px 0 12px;
  color: var(--white);
  font-size: 15px;
  font-weight: 550;
}

.signal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.signal-tags span {
  padding: 4px 7px;
  color: rgba(242,245,247,.44);
  border: 1px solid rgba(255,255,255,.07);
  font-size: 8px;
}

.signal-chart {
  height: 85px;
  display: flex;
  align-items: end;
  gap: 8px;
  margin-top: 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.signal-chart i {
  flex: 1;
  height: 20%;
  background: linear-gradient(to top, rgba(0,255,255,.28), rgba(0,255,255,.78));
}

.signal-chart i:nth-child(2) { height: 38%; }
.signal-chart i:nth-child(3) { height: 32%; }
.signal-chart i:nth-child(4) { height: 67%; background: linear-gradient(to top, rgba(212,175,55,.28), rgba(212,175,55,.9)); }
.signal-chart i:nth-child(5) { height: 52%; }
.signal-chart i:nth-child(6) { height: 76%; }
.signal-chart i:nth-child(7) { height: 88%; }

.status-panel {
  display: flex;
  flex-direction: column;
}

.status-ring {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin: 22px auto 12px;
  border: 1px solid rgba(0,255,255,.3);
  border-radius: 50%;
  box-shadow: inset 0 0 24px rgba(0,255,255,.04);
}

.status-ring span {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(212,175,55,.36);
  border-radius: 50%;
}

.status-panel p {
  margin: 0 0 15px;
  color: rgba(242,245,247,.55);
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.status-panel ul {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
  color: rgba(242,245,247,.38);
  font-size: 8px;
}

.status-panel li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-panel li i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
}

.status-panel li i.gold { background: var(--gold); }

.floating-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: rgba(242,245,247,.72);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(5,11,18,.82);
  box-shadow: 0 18px 45px rgba(0,0,0,.32);
  backdrop-filter: blur(10px);
  font-size: 10px;
}

.floating-chip i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(0,255,255,.7);
}

.floating-chip--top { top: 36px; right: -20px; }
.floating-chip--bottom { bottom: 14px; left: 18%; }
.floating-chip--bottom i { background: var(--gold); box-shadow: 0 0 12px rgba(212,175,55,.7); }

.trust-rail {
  min-height: 74px;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 4vw, 64px);
  color: rgba(242,245,247,.45);
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 12px;
  letter-spacing: .08em;
}

.trust-rail i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.statement-section {
  padding: clamp(120px, 13vw, 190px) 0;
}

.statement-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .62fr);
  gap: clamp(72px, 10vw, 160px);
  align-items: end;
}

.section-index {
  margin-bottom: 28px;
  color: #63707c;
  font-family: var(--font-latin);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
}

.section-index--light {
  color: rgba(232,207,122,.7);
}

.statement-layout h2,
.section-heading h2,
.origin-copy h2,
.demo-copy h2 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.16;
  letter-spacing: -.045em;
  font-weight: 520;
}

.statement-copy {
  padding-bottom: 4px;
}

.statement-copy p {
  margin-bottom: 24px;
  color: #53606b;
  font-size: 16px;
  line-height: 1.95;
}

.statement-copy p:last-child {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 550;
}

.fragmentation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: clamp(72px, 9vw, 124px);
  border: 1px solid var(--line-light);
}

.fragmentation > div {
  min-height: 330px;
  padding: clamp(30px, 4vw, 54px);
}

.fragmentation-old {
  border-right: 1px solid var(--line-light);
  background: rgba(255,255,255,.22);
}

.fragmentation-new {
  position: relative;
  overflow: hidden;
  background: #081522;
}

.fragmentation-new::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(0,255,255,.08), transparent 43%);
}

.compare-label {
  position: relative;
  z-index: 1;
  color: #687582;
  font-family: var(--font-latin);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}

.fragmentation-new .compare-label { color: rgba(232,207,122,.6); }

.fragment-nodes {
  display: flex;
  align-items: center;
  margin-top: 78px;
}

.fragment-nodes span {
  color: #4d5963;
  font-size: 14px;
}

.fragment-nodes i {
  flex: 1;
  height: 1px;
  margin-inline: 8px;
  background: repeating-linear-gradient(90deg, rgba(10,23,38,.25) 0 5px, transparent 5px 10px);
}

.fragmentation p {
  position: relative;
  z-index: 1;
  margin: 62px 0 0;
  color: #687582;
  font-size: 14px;
}

.fragmentation-new p { color: rgba(242,245,247,.46); }

.connected-core {
  width: 170px;
  height: 170px;
  position: relative;
  display: grid;
  place-items: center;
  margin: 20px auto -27px;
  border: 1px solid rgba(0,255,255,.18);
  border-radius: 50%;
}

.connected-core::before,
.connected-core::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(212,175,55,.24);
  border-radius: 50%;
}

.connected-core::after {
  inset: 54px;
  background: var(--abyss);
  box-shadow: 0 0 40px rgba(0,255,255,.12);
}

.core-name {
  position: relative;
  z-index: 2;
  color: var(--gold-light);
  font-family: var(--font-latin);
  font-weight: 700;
}

.orbit-label {
  position: absolute;
  z-index: 2;
  padding: 4px 7px;
  color: rgba(242,245,247,.64);
  background: #0a1724;
  font-size: 9px;
}

.orbit-label--a { top: 4px; left: -12px; }
.orbit-label--b { top: 24px; right: -24px; }
.orbit-label--c { right: -18px; bottom: 14px; }
.orbit-label--d { bottom: 4px; left: -10px; }

.system-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 10vw, 150px) 0;
  background: linear-gradient(145deg, #050b12, #031426 58%, #001f3f);
}

.system-grid {
  opacity: .28;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 85%, transparent);
}

.section-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .42fr);
  column-gap: clamp(60px, 8vw, 120px);
  align-items: end;
}

.section-heading .section-index {
  grid-column: 1 / -1;
}

.section-heading h2 {
  max-width: 900px;
}

.section-heading > p:last-child {
  margin: 0 0 6px;
  color: rgba(215,226,233,.55);
  font-size: 16px;
  line-height: 1.9;
}

.section-heading--dark > p:last-child {
  color: #62707c;
}

.workflow-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  margin-top: 84px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(3,12,22,.54);
  backdrop-filter: blur(16px);
}

.workflow-nav {
  padding: 16px;
  border-right: 1px solid rgba(255,255,255,.08);
}

.workflow-tab {
  width: 100%;
  min-height: 58px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 4px;
  padding: 0 14px;
  color: rgba(242,245,247,.42);
  border: 0;
  border-left: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.workflow-tab b {
  font-family: var(--font-latin);
  font-size: 10px;
  font-weight: 500;
}

.workflow-tab span { font-size: 14px; }

.workflow-tab:hover,
.workflow-tab.is-active {
  color: var(--white);
  border-left-color: var(--gold);
  background: linear-gradient(90deg, rgba(212,175,55,.09), transparent);
}

.workflow-detail {
  min-width: 0;
  min-height: 610px;
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 70px);
}

.workflow-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(0,255,255,.58);
  font-family: var(--font-latin);
  font-size: 10px;
  letter-spacing: .14em;
}

.workflow-state {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(242,245,247,.42);
  font-family: var(--font);
  letter-spacing: 0;
}

.workflow-detail h3 {
  max-width: 800px;
  margin: 38px 0 18px;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.25;
  letter-spacing: -.025em;
  font-weight: 600;
}

.workflow-detail > p {
  max-width: 720px;
  color: rgba(215,226,233,.58);
  font-size: 16px;
  line-height: 1.8;
}

.workflow-proof {
  max-width: 800px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 42px;
}

.workflow-proof div {
  min-width: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.workflow-proof small {
  display: block;
  margin-bottom: 8px;
  color: rgba(232,207,122,.56);
  font-size: 10px;
}

.workflow-proof strong {
  color: rgba(242,245,247,.74);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.workflow-proof > span {
  color: rgba(0,255,255,.34);
}

.workflow-visual {
  width: 420px;
  height: 420px;
  position: absolute;
  right: -90px;
  bottom: -160px;
}

.radar {
  position: absolute;
  border: 1px solid rgba(0,255,255,.08);
  border-radius: 50%;
}

.radar--one { inset: 0; }
.radar--two { inset: 60px; border-color: rgba(212,175,55,.12); }
.radar--three { inset: 122px; }

.radar-point {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(0,255,255,.6);
}

.radar-point--a { top: 62px; left: 81px; }
.radar-point--b { top: 175px; right: 28px; background: var(--gold); box-shadow: 0 0 18px rgba(212,175,55,.6); }
.radar-point--c { bottom: 94px; left: 36px; }

.radar-card {
  position: absolute;
  padding: 8px 11px;
  color: rgba(242,245,247,.58);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(5,11,18,.82);
  font-size: 9px;
}

.radar-card--a { top: 42px; left: 96px; }
.radar-card--b { top: 151px; right: 38px; }
.radar-card--c { bottom: 68px; left: 48px; }

.product-section,
.solutions-section,
.origin-section,
.proof-section,
.partnership-section {
  padding: clamp(100px, 10vw, 150px) 0;
}

.product-demo {
  margin-top: 72px;
}

.product-tabs {
  display: flex;
  align-items: center;
  gap: 2px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-light);
}

.product-tab {
  min-height: 44px;
  padding: 0 18px;
  color: #6b7781;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  cursor: pointer;
}

.product-tab:hover,
.product-tab.is-active {
  color: var(--ink);
  border-bottom-color: var(--gold);
}

.product-canvas {
  margin-top: 20px;
  border: 1px solid var(--line-light);
  background: #dfe1df;
  box-shadow: 0 42px 80px rgba(10,23,38,.13);
}

.product-panel {
  min-height: 600px;
  display: grid;
  grid-template-columns: 220px 1fr;
  color: var(--white);
  background: #08131f;
}

.mock-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 38px 22px;
  border-right: 1px solid rgba(255,255,255,.08);
  background: #07101a;
}

.mock-sidebar b {
  margin-bottom: 26px;
  color: var(--white);
  font-size: 17px;
}

.mock-sidebar span {
  padding: 11px 12px;
  color: rgba(242,245,247,.4);
  font-size: 13px;
}

.mock-sidebar span.active {
  color: var(--white);
  border-left: 1px solid var(--gold);
  background: linear-gradient(90deg, rgba(212,175,55,.1), transparent);
}

.mock-main {
  min-width: 0;
  padding: clamp(34px, 5vw, 62px);
}

.mock-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 42px;
}

.mock-top h3,
.visual-control h3,
.lead-list-head h3 {
  margin: 8px 0 0;
  color: var(--white);
  font-size: 28px;
  font-weight: 600;
}

.mock-action {
  padding: 10px 14px;
  color: var(--night);
  background: var(--gold-light);
  font-size: 12px;
}

.opportunity-row {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1.3fr 1fr .7fr;
  align-items: center;
  gap: 24px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(242,245,247,.54);
  font-size: 13px;
}

.opportunity-row--head {
  min-height: 46px;
  color: rgba(242,245,247,.3);
  background: rgba(255,255,255,.025);
  font-size: 10px;
}

.opportunity-row strong {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
}

.opportunity-row b {
  justify-self: start;
  padding: 6px 9px;
  color: rgba(242,245,247,.56);
  border: 1px solid rgba(255,255,255,.1);
  font-size: 10px;
  font-weight: 500;
}

.score {
  width: 5px;
  height: 5px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  background: #60707d;
}

.score--gold { background: var(--gold); }
.score--cyan { background: var(--cyan); }

.product-panel[data-product-panel="visual"] {
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
}

.visual-control {
  padding: clamp(34px, 5vw, 62px);
  border-right: 1px solid rgba(255,255,255,.08);
}

.visual-control h3 {
  margin-bottom: 48px;
}

.visual-control label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 25px;
  color: rgba(242,245,247,.36);
  font-size: 11px;
}

.visual-control label span {
  padding-bottom: 12px;
  color: rgba(242,245,247,.72);
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 14px;
}

.visual-control button {
  min-height: 42px;
  margin-top: 14px;
  padding: 0 16px;
  color: var(--night);
  border: 0;
  background: var(--gold-light);
}

.visual-previews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 42px;
  background: #0b1825;
}

.preview-tile {
  min-height: 450px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.09);
}

.preview-tile::before,
.preview-tile::after {
  content: "";
  position: absolute;
}

.preview-tile::before {
  inset: 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(232,207,122,.28), transparent 20%),
    linear-gradient(150deg, #09131c, #193143 58%, #101923);
}

.preview-tile--two::before {
  background:
    radial-gradient(ellipse at 40% 34%, rgba(242,245,247,.24), transparent 18%),
    linear-gradient(145deg, #07101a, #0a2b39 55%, #0a1521);
}

.preview-tile--three::before {
  background:
    linear-gradient(35deg, transparent 48%, rgba(212,175,55,.24) 49%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(0,255,255,.16), transparent 22%),
    #09131d;
}

.preview-tile::after {
  width: 120%;
  height: 1px;
  top: 46%;
  left: -10%;
  background: rgba(0,255,255,.25);
  transform: rotate(-18deg);
}

.preview-tile span {
  position: relative;
  z-index: 2;
  color: rgba(242,245,247,.76);
  font-size: 12px;
}

.preview-tile i {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(212,175,55,.55);
}

.product-panel[data-product-panel="lead"] {
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
}

.lead-list {
  padding: 36px 22px;
  border-right: 1px solid rgba(255,255,255,.08);
}

.lead-list-head {
  margin: 0 12px 28px;
}

.lead-item {
  width: 100%;
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
  color: rgba(242,245,247,.48);
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: transparent;
  text-align: left;
}

.lead-item.is-active { background: rgba(0,255,255,.035); }

.lead-item > i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}

.lead-item span { display: grid; gap: 5px; }
.lead-item b { color: rgba(242,245,247,.78); font-size: 13px; font-weight: 550; }
.lead-item small { font-size: 10px; }
.lead-item em { color: rgba(242,245,247,.26); font-size: 9px; font-style: normal; }

.conversation {
  display: flex;
  flex-direction: column;
  padding: clamp(34px, 5vw, 62px);
  background: #0b1825;
}

.conversation-head,
.handoff {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.conversation-head {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(242,245,247,.68);
  font-size: 13px;
}

.conversation-head span { display: flex; align-items: center; gap: 8px; }
.conversation-head i { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); }
.conversation-head b { color: rgba(242,245,247,.32); font-size: 10px; font-weight: 500; }

.message {
  max-width: 74%;
  margin-top: 34px;
  padding: 15px 17px;
  color: rgba(242,245,247,.7);
  border: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
  line-height: 1.65;
}

.message--client { align-self: flex-end; background: rgba(255,255,255,.04); }
.message--ai { border-color: rgba(0,255,255,.14); background: rgba(0,255,255,.03); }

.handoff {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(242,245,247,.4);
  font-size: 11px;
}

.handoff button {
  min-height: 36px;
  padding: 0 13px;
  color: var(--night);
  border: 0;
  background: var(--gold-light);
}

/* Real product evidence */
.hero-product-shot,
.product-shot {
  margin: 0;
}

.hero-product-shot {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(191, 215, 228, 0.16);
  background: #06111c;
  box-shadow: 0 48px 110px rgba(0,0,0,.48), 0 0 90px rgba(0,255,255,.035);
  transform: rotateY(-3deg) rotateX(1deg);
}

.hero-product-shot::before,
.product-shot::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}

.shot-viewport {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.58 / 1;
  background: #07121d;
}

.shot-viewport img {
  width: 125.6%;
  max-width: none;
  height: auto;
  transform: translateX(-20.4%);
}

.shot-viewport--hero {
  aspect-ratio: 1.56 / 1;
}

.shot-viewport--creation {
  aspect-ratio: 1.65 / 1;
}

.shot-viewport--creation img {
  width: 155%;
  transform: translate(-20.4%, -42%);
}

.hero-product-shot figcaption,
.product-shot figcaption {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: #08131f;
}

.hero-product-shot figcaption strong,
.product-shot figcaption span {
  color: rgba(242,245,247,.82);
  font-size: 12px;
  font-weight: 520;
}

.hero-product-shot figcaption span,
.product-shot figcaption em {
  color: rgba(242,245,247,.38);
  font-size: 9px;
  font-style: normal;
  letter-spacing: .04em;
}

.platform-section {
  padding: clamp(120px, 12vw, 180px) 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(0,255,255,.06), transparent 25%),
    var(--paper);
}

.product-map {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  margin-top: 92px;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.suite-card {
  min-height: 300px;
  position: relative;
  grid-column: span 4;
  padding: 38px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: rgba(255,255,255,.18);
}

.suite-card:nth-child(1),
.suite-card:nth-child(2) {
  grid-column: span 6;
}

.suite-card--featured {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(0,255,255,.05), transparent 42%),
    #071522;
}

.suite-card::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(212,175,55,.45);
}

.suite-number {
  display: block;
  margin-bottom: 48px;
  color: #7a858f;
  font-family: var(--font-latin);
  font-size: 11px;
}

.suite-card--featured .suite-number { color: rgba(232,207,122,.64); }

.suite-card > p {
  margin-bottom: 8px;
  color: #71808b;
  font-family: var(--font-latin);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
}

.suite-card--featured > p { color: rgba(0,255,255,.48); }

.suite-card h3 {
  margin-bottom: 32px;
  font-size: 27px;
  font-weight: 520;
}

.suite-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 8px;
}

.suite-card div span {
  padding: 7px 10px;
  color: #53616c;
  border: 1px solid rgba(10,23,38,.11);
  font-size: 11px;
}

.suite-card--featured div span {
  color: rgba(242,245,247,.58);
  border-color: rgba(255,255,255,.1);
}

.product-map-note {
  max-width: 760px;
  margin-top: 28px;
  color: #75808a;
  font-size: 11px;
  line-height: 1.7;
}

.product-section {
  padding-bottom: 0;
}

.feature-stories {
  margin-top: 100px;
}

.feature-story {
  display: grid;
  grid-template-columns: minmax(340px, .74fr) minmax(0, 1.26fr);
  align-items: start;
  gap: clamp(64px, 8vw, 120px);
  padding-top: clamp(110px, 11vw, 170px);
  padding-bottom: clamp(110px, 11vw, 170px);
  border-top: 1px solid var(--line-light);
}

.feature-story--reverse {
  grid-template-columns: minmax(0, 1.26fr) minmax(340px, .74fr);
}

.feature-story--reverse .feature-story__copy {
  grid-column: 2;
  grid-row: 1;
}

.feature-story--reverse > .shot-grid {
  grid-column: 1;
  grid-row: 1;
}

.feature-story__copy {
  position: sticky;
  top: 132px;
  max-width: 440px;
}

.story-number {
  display: block;
  margin-bottom: 34px;
  color: #6f7d88;
  font-family: var(--font-latin);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}

.feature-story__copy h3 {
  margin-bottom: 30px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(34px, 3vw, 44px);
  line-height: 1.28;
  letter-spacing: -.035em;
  font-weight: 520;
}

.feature-story__copy p {
  max-width: 32em;
  margin-bottom: 34px;
  color: #586570;
  font-size: 15px;
  line-height: 2;
}

.feature-story__copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #69757f;
  font-size: 11px;
  line-height: 1.4;
}

.feature-story__copy li {
  position: relative;
  padding: 8px 12px;
  border-left: 1px solid rgba(212,175,55,.68);
  background: rgba(10,23,38,.025);
}

.feature-story__copy li::before {
  content: none;
}

.product-shot {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(10,23,38,.18);
  background: #08131f;
  box-shadow: 0 34px 90px rgba(10,23,38,.1);
}

.product-shot + .product-shot {
  margin-top: 28px;
}

.shot-grid {
  min-width: 0;
}

.shot-grid--two {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
}

.shot-grid--three {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.shot-grid--three .product-shot:first-child {
  grid-column: 1 / -1;
}

.shot-grid--two .product-shot + .product-shot,
.shot-grid--mosaic .product-shot + .product-shot,
.shot-grid--three .product-shot + .product-shot {
  margin-top: 0;
}

.feature-story--dark {
  width: 100%;
  max-width: none;
  display: block;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 15%, rgba(0,255,255,.08), transparent 30%),
    linear-gradient(150deg, #050b12, #03182c);
  border-top-color: rgba(255,255,255,.1);
}

.feature-story__inner {
  display: grid;
  grid-template-columns: minmax(340px, .74fr) minmax(0, 1.26fr);
  align-items: start;
  gap: clamp(64px, 8vw, 120px);
}

.feature-story--dark .feature-story__copy {
  position: sticky;
  top: 132px;
  max-width: 440px;
}

.feature-story--dark .story-number { color: rgba(232,207,122,.65); }
.feature-story--dark .feature-story__copy h3 { color: var(--white); }
.feature-story--dark .feature-story__copy p { color: rgba(220,230,236,.6); }
.feature-story--dark .feature-story__copy ul { color: rgba(220,230,236,.48); }
.feature-story--dark .feature-story__copy li { background: rgba(255,255,255,.025); }

.shot-grid--mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-story--dark .product-shot {
  border-color: rgba(255,255,255,.11);
  box-shadow: 0 30px 80px rgba(0,0,0,.3);
}

.solutions-section {
  background: linear-gradient(160deg, #050b12, #04182c);
}

.solution-list {
  margin-top: 78px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.solution-list article {
  min-height: 135px;
  display: grid;
  grid-template-columns: 70px minmax(180px, .55fr) minmax(300px, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: background 220ms ease, padding 220ms var(--ease);
}

.solution-list article:hover {
  padding-inline: 18px;
  background: linear-gradient(90deg, rgba(0,255,255,.035), transparent 70%);
}

.solution-list article > span {
  color: rgba(232,207,122,.55);
  font-family: var(--font-latin);
  font-size: 12px;
}

.solution-list h3 {
  margin: 0;
  color: var(--white);
  font-size: 24px;
  font-weight: 550;
}

.solution-list p {
  margin: 0;
  color: rgba(215,226,233,.48);
  font-size: 14px;
  line-height: 1.7;
}

.solution-list em {
  color: rgba(0,255,255,.46);
  font-size: 10px;
  font-style: normal;
  letter-spacing: .08em;
  white-space: nowrap;
}

.origin-section {
  background: #dfe1df;
}

.origin-layout {
  display: grid;
  grid-template-columns: minmax(320px, .75fr) minmax(0, 1.25fr);
  gap: clamp(58px, 9vw, 140px);
  align-items: center;
}

.origin-mark {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  background: #000;
  box-shadow: 0 34px 90px rgba(5,11,18,.2);
}

.origin-mark::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 24px;
  border: 1px solid rgba(212,175,55,.2);
  pointer-events: none;
}

.origin-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.origin-copy > p:not(.section-index) {
  max-width: 680px;
  margin: 30px 0;
  color: #53606b;
  font-size: 17px;
  line-height: 1.82;
}

.origin-copy blockquote {
  margin: 38px 0;
  padding: 5px 0 5px 24px;
  color: var(--abyss);
  border-left: 2px solid var(--gold);
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.5;
  font-weight: 600;
}

.origin-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.origin-principles span {
  padding: 8px 12px;
  color: #53606b;
  border: 1px solid rgba(10,23,38,.16);
  font-size: 12px;
}

.proof-section {
  padding-top: 0;
  background: #dfe1df;
}

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

.proof-grid article {
  min-height: 260px;
  padding: 34px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.proof-grid span {
  color: #7e6a2c;
  font-family: var(--font-latin);
  font-size: 11px;
}

.proof-grid h3 {
  margin: 56px 0 14px;
  font-size: 26px;
  font-weight: 600;
}

.proof-grid p {
  margin: 0;
  color: #60707d;
  font-size: 14px;
  line-height: 1.75;
}

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

.partnership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 72px;
}

.partnership-grid article {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.5vw, 44px);
  border: 1px solid var(--line-light);
  background: rgba(255,255,255,.28);
}

.partnership-grid .plan-featured {
  color: var(--white);
  border-color: rgba(212,175,55,.28);
  background: linear-gradient(150deg, #081522, #001f3f);
  transform: translateY(-16px);
  box-shadow: 0 26px 70px rgba(5,11,18,.14);
}

.plan-tag {
  color: #756328;
  font-family: var(--font-latin);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
}

.plan-featured .plan-tag { color: var(--gold-light); }

.partnership-grid h3 {
  margin: 34px 0 16px;
  font-size: 30px;
  font-weight: 600;
}

.partnership-grid p {
  min-height: 78px;
  color: #65727d;
  font-size: 14px;
  line-height: 1.7;
}

.plan-featured p { color: rgba(215,226,233,.55); }

.partnership-grid ul {
  display: grid;
  gap: 0;
  margin: 28px 0 38px;
  padding: 0;
  list-style: none;
}

.partnership-grid li {
  padding: 14px 0;
  color: #53606b;
  border-bottom: 1px solid var(--line-light);
  font-size: 13px;
}

.plan-featured li {
  color: rgba(242,245,247,.62);
  border-bottom-color: rgba(255,255,255,.09);
}

.partnership-grid a {
  width: max-content;
  margin-top: auto;
  padding-bottom: 6px;
  color: var(--abyss);
  border-bottom: 1px solid var(--gold);
  font-size: 13px;
  font-weight: 600;
}

.plan-featured a { color: var(--gold-light); }

.demo-section {
  min-height: 820px;
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 10vw, 150px) 0;
  background: linear-gradient(135deg, #050b12, #001f3f);
}

.demo-grid {
  opacity: .26;
  mask-image: radial-gradient(circle at 80% 40%, #000, transparent 70%);
}

.demo-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(460px, 1fr);
  gap: clamp(64px, 9vw, 140px);
  align-items: center;
}

.demo-copy > p:not(.section-index) {
  max-width: 560px;
  margin: 30px 0 0;
  color: rgba(215,226,233,.58);
  font-size: 17px;
  line-height: 1.8;
}

.demo-copy ul {
  display: grid;
  gap: 13px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(242,245,247,.48);
  font-size: 13px;
}

.demo-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.demo-copy li i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.demo-form {
  position: relative;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(5,11,18,.6);
  backdrop-filter: blur(18px);
}

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

.demo-form label {
  display: grid;
  gap: 9px;
  margin-bottom: 18px;
  color: rgba(242,245,247,.45);
  font-size: 11px;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 0;
  background: rgba(255,255,255,.025);
  outline: 0;
  transition: border-color 160ms ease, background 160ms ease;
}

.demo-form input,
.demo-form select {
  min-height: 48px;
  padding: 0 13px;
}

.demo-form textarea {
  min-height: 112px;
  padding: 13px;
  resize: vertical;
  line-height: 1.6;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  border-color: rgba(0,255,255,.5);
  background: rgba(0,255,255,.025);
}

.demo-form option {
  color: var(--ink);
  background: var(--white);
}

.demo-form textarea::placeholder { color: rgba(242,245,247,.23); }

.form-error {
  min-height: 20px;
  margin: -4px 0 12px;
  color: #f3aa92;
  font-size: 12px;
}

.form-note {
  margin: 14px 0 0;
  color: rgba(242,245,247,.28);
  font-size: 10px;
  line-height: 1.6;
}

.form-success {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: 40px;
  color: var(--white);
  background: rgba(5,11,18,.96);
  text-align: center;
}

.form-success strong {
  color: var(--gold-light);
  font-size: 22px;
}

.form-success span {
  color: rgba(242,245,247,.52);
  font-size: 13px;
  line-height: 1.7;
}

.site-footer {
  color: rgba(242,245,247,.52);
  background: #02070c;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-layout {
  min-height: 240px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand img {
  width: 92px;
  height: 92px;
  object-fit: cover;
}

.footer-brand p {
  max-width: 260px;
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 22px;
  color: rgba(242,245,247,.65);
  font-size: 12px;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 8px;
  font-size: 10px;
  text-align: right;
}

.footer-meta span:first-child {
  color: rgba(232,207,122,.7);
  font-size: 12px;
}

.beian-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px 12px;
  margin-top: 2px;
}

.beian-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(242,245,247,.6);
  font-size: 12px;
  line-height: 1.6;
  text-decoration: none;
  transition: color 200ms var(--ease);
}

.beian-link:hover { color: var(--gold-light); }

.beian-sep { color: rgba(255,255,255,.24); }

.beian-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero {
    min-height: auto;
  }

  .hero-layout {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 60px 0 80px;
  }

  .hero-copy {
    max-width: 800px;
  }

  .product-stage {
    width: min(820px, 100%);
    margin-inline: auto;
  }

  .feature-story,
  .feature-story--reverse {
    grid-template-columns: 1fr;
  }

  .feature-story--reverse .feature-story__copy,
  .feature-story--reverse > .shot-grid {
    grid-column: auto;
    grid-row: auto;
  }

  .feature-story__copy {
    position: static;
    max-width: 760px;
  }

  .feature-story__inner {
    grid-template-columns: 1fr;
  }

  .feature-story--dark .feature-story__copy {
    position: static;
  }

  .statement-layout,
  .section-heading,
  .demo-layout {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child {
    max-width: 680px;
    margin-top: 24px;
  }

  .solution-list article {
    grid-template-columns: 50px 200px 1fr;
  }

  .solution-list em {
    grid-column: 2 / -1;
    margin-top: -24px;
    padding-bottom: 20px;
  }

  .demo-layout {
    gap: 64px;
  }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 64px; }

  .nav-shell { min-height: 64px; }

  .brand-symbol {
    width: 38px;
    height: 38px;
  }

  .brand-symbol img {
    width: 80px;
    transform: translate(-21px, -19px);
  }

  .brand-name { font-size: 15px; }

  .menu-toggle { display: block; }

  .primary-nav {
    position: fixed;
    inset: 64px 0 auto;
    max-height: 0;
    overflow: hidden;
    display: grid;
    gap: 0;
    padding: 0 var(--gutter);
    color: var(--white);
    background: rgba(5,11,18,.98);
    border-bottom: 1px solid rgba(255,255,255,.1);
    opacity: 0;
    transition: max-height 260ms var(--ease), opacity 180ms ease, padding 260ms var(--ease);
  }

  .primary-nav.is-open {
    max-height: 440px;
    padding-top: 18px;
    padding-bottom: 26px;
    opacity: 1;
  }

  .primary-nav a {
    min-height: 52px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .primary-nav a::after { display: none; }

  .nav-cta {
    width: max-content;
    min-height: 44px !important;
    margin-top: 14px;
    border-bottom: 0 !important;
  }

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

  .hero {
    padding-top: 110px;
  }

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

  .hero h1 {
    max-width: 690px;
  }

  .app-window { transform: none; }

  .trust-rail {
    min-height: 92px;
    flex-wrap: wrap;
    gap: 12px 24px;
    padding-block: 20px;
  }

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

  .fragmentation-old {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .workflow-layout {
    grid-template-columns: 1fr;
  }

  .workflow-nav {
    display: flex;
    overflow-x: auto;
    padding: 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    scrollbar-width: none;
  }

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

  .workflow-tab {
    min-width: 140px;
    min-height: 48px;
    border-left: 0;
    border-bottom: 1px solid transparent;
  }

  .workflow-tab:hover,
  .workflow-tab.is-active {
    border-bottom-color: var(--gold);
    background: linear-gradient(0deg, rgba(212,175,55,.09), transparent);
  }

  .product-panel,
  .product-panel[data-product-panel="visual"],
  .product-panel[data-product-panel="lead"] {
    grid-template-columns: 1fr;
  }

  .mock-sidebar {
    flex-direction: row;
    overflow-x: auto;
    padding: 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    scrollbar-width: none;
  }

  .mock-sidebar::-webkit-scrollbar { display: none; }

  .mock-sidebar b {
    margin: 0 20px 0 0;
  }

  .mock-sidebar span {
    min-width: max-content;
    padding: 7px 10px;
  }

  .visual-control,
  .lead-list {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

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

  .preview-tile { min-height: 380px; }

  .conversation { min-height: 500px; }

  .suite-card,
  .suite-card:nth-child(1),
  .suite-card:nth-child(2) {
    grid-column: span 6;
  }

  .suite-card:last-child {
    grid-column: span 12;
  }

  .shot-grid--mosaic {
    grid-template-columns: 1fr;
  }

  .shot-grid--three {
    grid-template-columns: 1fr;
  }

  .shot-grid--three .product-shot:first-child {
    grid-column: auto;
  }

  .origin-layout {
    grid-template-columns: minmax(280px, .75fr) 1fr;
    gap: 54px;
  }

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

  .partnership-grid .plan-featured { transform: none; }

  .partnership-grid article { min-height: 400px; }

  .footer-layout {
    grid-template-columns: 1fr 1fr;
    padding: 40px 0;
  }

  .footer-links { justify-self: end; }
  .footer-meta { grid-column: 1 / -1; justify-items: start; text-align: left; }
}

@media (max-width: 640px) {
  :root { --gutter: 20px; }

  .hero {
    padding-top: 92px;
  }

  .hero-layout {
    padding: 28px 0 52px;
  }

  .hero-copy {
    text-align: left;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 9px;
  }

  .eyebrow > span { width: 28px; }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(44px, 12vw, 54px);
    line-height: 1.1;
    letter-spacing: -.045em;
    font-weight: 520;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.72;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .hero-provenance {
    align-items: flex-start;
    font-size: 11px;
    line-height: 1.6;
  }

  .provenance-mark {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
  }

  .provenance-mark::after { inset: 6px; }

  .product-stage {
    padding: 28px 0 18px;
  }

  .app-titlebar {
    grid-template-columns: auto 1fr;
    gap: 10px;
  }

  .app-titlebar > span:nth-child(2) { justify-self: center; }
  .live-state { display: none; }

  .app-body {
    min-height: 430px;
    grid-template-columns: 45px 1fr;
  }

  .app-sidebar {
    gap: 20px;
    padding: 16px 5px;
  }

  .app-sidebar b {
    width: 28px;
    height: 28px;
    font-size: 9px;
  }

  .app-sidebar span { font-size: 0; }

  .app-sidebar span::before {
    content: "";
    width: 5px;
    height: 5px;
    display: block;
    border-radius: 50%;
    background: currentColor;
  }

  .app-content { padding: 20px 14px; }

  .app-heading h2 { font-size: 17px; }
  .app-heading button { display: none; }

  .pipeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
  }

  .pipeline-line { display: none; }

  .pipeline-step span { font-size: 8px; }
  .pipeline-step small { display: none; }

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

  .status-panel { display: none; }

  .floating-chip {
    display: none;
  }

  .trust-rail {
    justify-content: flex-start;
    gap: 10px 14px;
    font-size: 9px;
  }

  .statement-section,
  .system-section,
  .platform-section,
  .product-section,
  .solutions-section,
  .origin-section,
  .proof-section,
  .partnership-section,
  .demo-section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .statement-layout {
    gap: 32px;
  }

  .statement-layout h2,
  .section-heading h2,
  .origin-copy h2,
  .demo-copy h2 {
    font-size: clamp(36px, 10vw, 44px);
    line-height: 1.18;
    font-weight: 520;
  }

  .section-index {
    margin-bottom: 20px;
    font-size: 9px;
  }

  .statement-copy p,
  .section-heading > p:last-child,
  .origin-copy > p:not(.section-index),
  .demo-copy > p:not(.section-index) {
    font-size: 15px;
    line-height: 1.9;
  }

  .fragmentation {
    margin-top: 52px;
  }

  .fragmentation > div {
    min-height: 270px;
    padding: 26px 22px;
  }

  .fragment-nodes {
    margin-top: 60px;
  }

  .fragment-nodes span { font-size: 11px; }
  .fragmentation p { margin-top: 46px; font-size: 12px; }

  .workflow-layout {
    margin-top: 48px;
  }

  .workflow-detail {
    min-height: 610px;
    padding: 30px 22px;
  }

  .workflow-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .workflow-detail h3 {
    margin-top: 28px;
    font-size: 28px;
  }

  .workflow-detail > p { font-size: 14px; }

  .workflow-proof {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .workflow-proof > span { display: none; }

  .workflow-visual {
    width: 300px;
    height: 300px;
    right: -100px;
    bottom: -100px;
  }

  .product-demo {
    margin-top: 48px;
  }

  .product-map {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .suite-card,
  .suite-card:nth-child(1),
  .suite-card:nth-child(2),
  .suite-card:last-child {
    grid-column: 1;
    min-height: 246px;
    padding: 26px 22px;
  }

  .suite-number { margin-bottom: 34px; }

  .feature-stories { margin-top: 48px; }

  .feature-story {
    gap: 48px;
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .feature-story__copy h3 {
    font-size: 34px;
    line-height: 1.3;
    font-weight: 520;
  }

  .feature-story__copy p {
    font-size: 15px;
    line-height: 1.9;
  }

  .feature-story__copy ul {
    gap: 8px;
  }

  .feature-story__copy li {
    padding: 7px 10px;
  }

  .shot-viewport--creation img {
    width: 150%;
    transform: translate(-20.4%, -38%);
  }

  .hero-product-shot {
    transform: none;
  }

  .hero-product-shot figcaption,
  .product-shot figcaption {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 12px 14px;
  }

  .product-tabs {
    overflow-x: auto;
  }

  .product-tab {
    min-width: max-content;
  }

  .product-panel { min-height: 620px; }

  .mock-main { padding: 28px 18px; }

  .mock-top {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 24px;
  }

  .mock-top h3,
  .visual-control h3,
  .lead-list-head h3 { font-size: 23px; }

  .opportunity-row {
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 0 8px;
  }

  .opportunity-row > span:nth-child(2) { display: none; }

  .visual-control { padding: 30px 22px; }

  .visual-previews {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
    padding: 20px;
  }

  .preview-tile {
    min-height: 250px;
  }

  .preview-tile--three { display: none; }

  .lead-list { padding: 30px 16px; }
  .conversation { min-height: 440px; padding: 28px 20px; }
  .message { max-width: 88%; }

  .solution-list {
    margin-top: 52px;
  }

  .solution-list article {
    min-height: 0;
    grid-template-columns: 32px 1fr;
    gap: 16px;
    padding: 26px 0;
  }

  .solution-list article:hover { padding-inline: 0; }
  .solution-list h3 { font-size: 21px; }
  .solution-list p { grid-column: 2; font-size: 13px; }
  .solution-list em { grid-column: 2; margin: 0; padding: 0; }

  .origin-layout {
    grid-template-columns: 1fr;
  }

  .origin-mark {
    width: min(100%, 420px);
    margin-inline: auto;
  }

  .origin-copy blockquote {
    font-size: 20px;
  }

  .proof-section { padding-top: 0; }

  .proof-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .proof-grid article { min-height: 220px; }

  .partnership-grid {
    margin-top: 48px;
  }

  .partnership-grid article { min-height: 390px; }

  .demo-layout { gap: 48px; }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .demo-form {
    padding: 24px 18px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-links {
    justify-self: start;
    flex-wrap: wrap;
  }

  .footer-meta { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
