:root {
  --ink: #18181b;
  --ink-2: #27272a;
  --muted: #52525b;
  --muted-2: #71717a;
  --paper: #ffffff;
  --paper-2: #f8f9fa;
  --white: #ffffff;
  --line: rgba(24, 24, 27, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);
  --violet: #2563eb;
  --violet-deep: #1d4ed8;
  --pink: #3b82f6;
  --mint: #2563eb;
  --blue: #2563eb;
  --amber: #60a5fa;
  --coral: #93c5fd;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
}

body.modal-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
}

.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: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.48);
  outline-offset: 4px;
}

.section-shell {
  width: min(1440px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1440px, calc(100% - 32px));
  min-height: 64px;
  padding: 10px 12px 10px 18px;
  border: 1px solid transparent;
  border-radius: 20px;
  transform: translateX(-50%);
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled {
  border-color: rgba(11, 11, 14, 0.08);
  background: rgba(247, 246, 242, 0.84);
  box-shadow: 0 12px 40px rgba(19, 16, 29, 0.08);
  backdrop-filter: blur(18px) saturate(145%);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  width: max-content;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.bloom-mark {
  position: relative;
  display: inline-block;
  width: 29px;
  height: 27px;
}

.bloom-mark i {
  position: absolute;
  left: 11px;
  bottom: 2px;
  width: 10px;
  height: 19px;
  border-radius: 9px 9px 2px 9px;
  transform-origin: 50% 100%;
  opacity: 0.9;
}

.bloom-mark i:nth-child(1) { background: #ec4b9a; transform: rotate(-72deg); }
.bloom-mark i:nth-child(2) { background: #735cff; transform: rotate(-34deg); }
.bloom-mark i:nth-child(3) { background: #25b8e8; transform: rotate(4deg); }
.bloom-mark i:nth-child(4) { background: #14c69e; transform: rotate(46deg); }
.bloom-mark i:nth-child(5) { background: #f04b77; transform: rotate(83deg); }

.bloom-mark--large {
  width: 68px;
  height: 60px;
}

.bloom-mark--large i {
  left: 26px;
  width: 22px;
  height: 44px;
  border-radius: 20px 20px 4px 20px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 600;
}

.site-nav a,
.text-link {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.site-nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 22px;
  font-size: 13px;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.28s var(--ease), background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

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

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

.button--dark:hover {
  background: var(--violet-deep);
  border-color: var(--violet-deep);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.65);
}

.button--ghost:hover {
  background: var(--white);
  border-color: rgba(11, 11, 14, 0.24);
}

.button--small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 12px;
}

.hero {
  position: relative;
  min-height: 1030px;
  padding-top: 170px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -3;
  inset: 0 calc(50% - 50vw);
  background-image: linear-gradient(rgba(18, 16, 27, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(18, 16, 27, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, black 0, transparent 87%);
  content: "";
}

.hero-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.18;
  pointer-events: none;
}

.hero-glow--one {
  top: 160px;
  left: 6%;
  width: 390px;
  height: 330px;
  background: var(--pink);
}

.hero-glow--two {
  top: 250px;
  right: 8%;
  width: 430px;
  height: 360px;
  background: var(--violet);
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: min(970px, 100%);
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  justify-content: center;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.55);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(24, 198, 163, 0.12);
}

.status-dot--pink {
  background: var(--pink);
  box-shadow: 0 0 0 5px rgba(239, 75, 160, 0.14);
}

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

h1,
h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

h1 {
  font-size: clamp(66px, 8.4vw, 126px);
}

h1 em,
h2 em {
  color: var(--violet-deep);
  font-weight: 500;
}

.hero-intro {
  width: min(750px, 92%);
  margin: 36px auto 0;
  color: var(--ink-2);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.play-disc {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 8px;
  padding-left: 2px;
}

.duration {
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: 9px;
}

.hero-note {
  margin: 15px 0 0;
  color: var(--muted-2);
  font-size: 10px;
}

.device-orchestra {
  position: relative;
  z-index: 2;
  width: min(1250px, 100%);
  height: 600px;
  margin: 80px auto -30px;
  perspective: 1800px;
}

.device {
  position: absolute;
  box-shadow: 0 36px 100px rgba(23, 18, 39, 0.22);
}

.device--desktop {
  z-index: 3;
  top: 0;
  left: 50%;
  width: 830px;
  height: 516px;
  overflow: hidden;
  border: 1px solid rgba(11, 11, 14, 0.14);
  border-radius: 17px;
  background: #fff;
  transform: translateX(-50%) rotateX(1deg);
  animation: float-desktop 8s ease-in-out infinite;
}

.browser-bar {
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  align-items: center;
  height: 38px;
  padding: 0 13px;
  border-bottom: 1px solid #e7e6eb;
  background: #f3f2f5;
  color: #8f8c97;
  font-family: var(--mono);
  font-size: 8px;
}

.traffic-lights {
  display: flex;
  gap: 5px;
}

.traffic-lights i,
.visual-toolbar > span i,
.surface-windowbar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff6b7a;
}

.traffic-lights i:nth-child(2),
.visual-toolbar > span i:nth-child(2),
.surface-windowbar i:nth-child(2) { background: #ffbf48; }
.traffic-lights i:nth-child(3),
.visual-toolbar > span i:nth-child(3),
.surface-windowbar i:nth-child(3) { background: #32c88a; }

.address {
  justify-self: center;
  width: 285px;
  padding: 6px 18px;
  border: 1px solid #e1e0e6;
  border-radius: 7px;
  background: #fff;
  text-align: center;
}

.browser-more {
  justify-self: end;
  letter-spacing: 2px;
}

.desktop-app {
  display: grid;
  grid-template-columns: 174px 1fr;
  height: calc(100% - 38px);
}

.app-sidebar {
  display: flex;
  flex-direction: column;
  padding: 19px 13px 12px;
  background: #101014;
  color: #fff;
}

.app-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 7px 16px;
  font-family: var(--serif);
  font-size: 18px;
}

.app-logo span {
  color: var(--pink);
  font-size: 16px;
}

.workspace-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 9px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 9px;
  background: rgba(255,255,255,.05);
  font-size: 8px;
}

.workspace-pill > i {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--violet), var(--pink));
}

.workspace-pill span { display: grid; gap: 2px; }
.workspace-pill small { color: rgba(255,255,255,.42); font-size: 6px; }

.sidebar-nav {
  display: grid;
  gap: 3px;
}

.sidebar-nav span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 9px;
  border-radius: 7px;
  color: rgba(255,255,255,.55);
  font-size: 8px;
}

.sidebar-nav span.active {
  background: rgba(115,92,255,.18);
  color: #fff;
}

.sidebar-nav b {
  width: 12px;
  color: rgba(255,255,255,.82);
  font-weight: 400;
  text-align: center;
}

.sidebar-profile {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 11px 7px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}

.avatar {
  display: grid;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #ebe8ff;
  color: var(--violet-deep);
  font-size: 7px;
  font-weight: 800;
}

.avatar--dark {
  background: #101014;
  color: #fff;
}

.sidebar-profile p {
  display: grid;
  gap: 2px;
  margin: 0;
  font-size: 7px;
}

.sidebar-profile small { color: rgba(255,255,255,.38); font-size: 6px; }

.app-main {
  padding: 22px 25px;
  background: #f8f8fa;
}

.app-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-heading small,
.card-head small,
.phone-eyebrow,
.pipeline-top small,
.surface-copy > span,
.coaching-ui > small,
.mini-mobile > small {
  color: #898692;
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: .1em;
}

.app-heading h3 {
  margin: 5px 0 0;
  font-size: 21px;
  letter-spacing: -0.045em;
}

.app-heading button,
.pipeline-top button {
  padding: 8px 12px;
  border: 0;
  border-radius: 8px;
  background: #111116;
  color: white;
  font-size: 7px;
}

.app-heading button span { color: #b6a9ff; }

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 18px;
}

.metric-row article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px;
  padding: 14px;
  border: 1px solid #e9e8ed;
  border-radius: 11px;
  background: #fff;
}

.metric-row span {
  grid-column: 1 / -1;
  color: #777480;
  font-size: 7px;
}

.metric-row strong {
  font-size: 17px;
  letter-spacing: -0.05em;
}

.metric-row small {
  align-self: end;
  color: #898692;
  font-size: 6px;
  text-align: right;
}

.metric-row .up { color: #0aa57b; }

.command-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.signal-card,
.priority-card {
  min-height: 240px;
  padding: 15px;
  border: 1px solid #e9e8ed;
  border-radius: 11px;
  background: #fff;
}

.card-head {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  font-weight: 700;
}

.line-chart {
  position: relative;
  height: 170px;
  margin-top: 14px;
  overflow: hidden;
  border-bottom: 1px solid #eeedf1;
  background: repeating-linear-gradient(to bottom, transparent 0, transparent 41px, #f0eff4 42px);
}

.line-chart svg {
  position: absolute;
  inset: 20px 0 0;
  width: 100%;
  height: 140px;
}

.line-chart .area { fill: url(#heroChartFill); }
.line-chart .line { fill: none; stroke: var(--violet); stroke-width: 3; vector-effect: non-scaling-stroke; }

.chart-tooltip {
  position: absolute;
  top: 16px;
  right: 10px;
  display: grid;
  gap: 2px;
  padding: 8px 10px;
  border: 1px solid #e8e5fb;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(64,51,140,.1);
}

.chart-tooltip small { color: #88858f; font-size: 5px; }
.chart-tooltip b { font-size: 8px; }

.priority-card > p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 12px;
  font-family: var(--serif);
  font-size: 12px;
  line-height: 1.25;
}

.sparkle {
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 7px;
  background: #ebe8ff;
  color: var(--violet);
  font-style: normal;
}

.priority-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.priority-card li {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 7px;
  padding: 9px;
  border-radius: 8px;
  background: #f7f6f9;
}

.priority-card li b {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 6px;
  background: #fff;
  color: var(--violet-deep);
  font-size: 8px;
}

.priority-card li span { color: #494751; font-size: 6px; }
.priority-card li i { color: #777480; font-size: 5px; font-style: normal; }

.device--tablet {
  z-index: 2;
  top: 145px;
  left: 0;
  width: 350px;
  height: 450px;
  padding: 9px;
  border: 2px solid #34323a;
  border-radius: 28px;
  background: #151519;
  transform: rotate(-7deg) rotateY(9deg);
  animation: float-tablet 9s ease-in-out infinite;
}

.device-camera,
.tablet-dot {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 3px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #45434c;
}

.tablet-screen {
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  background: #f8f8fa;
}

.mini-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid #e7e6ea;
  background: white;
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 600;
}

.mini-brand b { color: var(--pink); }

.tablet-title {
  display: grid;
  gap: 3px;
  padding: 18px 18px 12px;
  font-size: 15px;
  font-weight: 700;
}

.tablet-title small { color: #88858e; font-size: 7px; font-weight: 500; }

.map-canvas {
  position: relative;
  height: 328px;
  margin: 0 12px 12px;
  overflow: hidden;
  border-radius: 13px;
  background-color: #e7e8ea;
  background-image: linear-gradient(37deg, transparent 47%, rgba(255,255,255,.9) 48%, rgba(255,255,255,.9) 51%, transparent 52%), linear-gradient(-22deg, transparent 43%, rgba(255,255,255,.72) 44%, rgba(255,255,255,.72) 47%, transparent 48%);
  background-size: 90px 85px, 120px 110px;
}

.map-road {
  position: absolute;
  height: 5px;
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 999px;
  background: #c7c9ce;
  transform-origin: center;
}

.map-road--a { top: 36%; left: -20%; width: 145%; transform: rotate(17deg); }
.map-road--b { top: 62%; left: -10%; width: 130%; transform: rotate(-24deg); }
.map-road--c { top: 50%; left: 5%; width: 110%; transform: rotate(78deg); }

.map-pin {
  position: absolute;
  top: var(--y);
  left: var(--x);
  width: 16px;
  height: 16px;
  border: 4px solid white;
  border-radius: 50% 50% 50% 0;
  background: var(--violet);
  box-shadow: 0 3px 10px rgba(42,35,84,.3);
  transform: rotate(-45deg);
}

.map-pin--hot { background: var(--pink); }
.map-pin--warm { background: var(--amber); }

.route-card {
  position: absolute;
  right: 11px;
  bottom: 11px;
  left: 11px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 10px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 10px 30px rgba(29,29,33,.12);
  backdrop-filter: blur(8px);
}

.route-card small { grid-column: 1 / -1; color: #88858e; font-size: 6px; text-transform: uppercase; }
.route-card strong { font-size: 9px; }
.route-card span { color: var(--violet-deep); font-size: 7px; }

.device--phone {
  z-index: 4;
  top: 162px;
  right: 5px;
  width: 218px;
  height: 445px;
  padding: 7px;
  border: 2px solid #2d2c32;
  border-radius: 34px;
  background: #111115;
  transform: rotate(7deg) rotateY(-10deg);
  animation: float-phone 7.5s ease-in-out infinite;
}

.phone-notch {
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 50%;
  width: 73px;
  height: 20px;
  border-radius: 999px;
  background: #111115;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 27px;
  background: #fafafa;
}

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 30px;
  padding: 0 12px;
  font-size: 6px;
  font-weight: 700;
}

.phone-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 12px 16px;
}

.phone-head .mini-brand { font-size: 11px; }
.phone-eyebrow { display: block; padding: 0 13px; }
.phone-screen h4 { margin: 5px 13px 12px; font-size: 20px; letter-spacing: -.055em; }

.phone-focus-card {
  display: grid;
  gap: 5px;
  margin: 0 10px;
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(145deg, #15141a, #27223e);
  color: white;
}

.phone-focus-card > span { color: #b8afdc; font-family: var(--mono); font-size: 6px; text-transform: uppercase; }
.phone-focus-card strong { font-family: var(--serif); font-size: 15px; }
.phone-focus-card small { color: rgba(255,255,255,.55); font-size: 6px; }
.phone-focus-card button { display: flex; justify-content: space-between; margin-top: 5px; padding: 9px 10px; border: 0; border-radius: 8px; background: var(--violet); color: white; font-size: 7px; }

.phone-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 12px 10px 0;
  padding: 12px 4px;
  border: 1px solid #e8e7ec;
  border-radius: 12px;
  background: white;
}

.phone-stats span { display: grid; gap: 2px; text-align: center; }
.phone-stats span + span { border-left: 1px solid #ecebf0; }
.phone-stats b { font-size: 11px; }
.phone-stats small { color: #8a8791; font-size: 5px; }

.phone-list { display: grid; gap: 6px; margin: 11px 10px 0; }
.phone-list span { display: grid; grid-template-columns: 18px 1fr auto; align-items: center; gap: 6px; padding: 7px; border-radius: 9px; background: #f0eff3; font-size: 6px; }
.phone-list i { width: 17px; height: 17px; border-radius: 5px; background: #dff8ef; }
.phone-list small { color: #8b8992; font-size: 5px; }

.phone-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 8px 5px 10px;
  border-top: 1px solid #e8e7ec;
  background: rgba(255,255,255,.93);
}

.phone-nav span { display: grid; gap: 1px; color: #9a97a1; font-size: 9px; text-align: center; }
.phone-nav small { font-size: 5px; }
.phone-nav .active { color: var(--violet-deep); }

.device-caption {
  position: absolute;
  z-index: 8;
  bottom: -1px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 34px rgba(27,23,41,.12);
  color: #65626c;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .05em;
  text-transform: uppercase;
  transform: translateX(-50%);
  backdrop-filter: blur(12px);
}

.pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(24,198,163,.13);
}

.ambient-orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(115,92,255,.12);
  border-radius: 50%;
}

.ambient-orbit--one { top: -90px; left: 5%; width: 90%; height: 580px; transform: rotate(-4deg); }
.ambient-orbit--two { top: -35px; left: 17%; width: 66%; height: 500px; transform: rotate(9deg); }

@keyframes float-desktop { 0%,100% { transform: translateX(-50%) translateY(0) rotateX(1deg); } 50% { transform: translateX(-50%) translateY(-8px) rotateX(1deg); } }
@keyframes float-tablet { 0%,100% { transform: translateY(0) rotate(-7deg) rotateY(9deg); } 50% { transform: translateY(8px) rotate(-6deg) rotateY(9deg); } }
@keyframes float-phone { 0%,100% { transform: translateY(0) rotate(7deg) rotateY(-10deg); } 50% { transform: translateY(-12px) rotate(6deg) rotateY(-10deg); } }

.signal-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3.2vw, 48px);
  min-height: 108px;
  padding: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #77747f;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.signal-strip i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--pink);
}

.trailer-section {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 145px max(24px, calc((100vw - 1440px) / 2)) 150px;
  overflow: hidden;
  background: #0d0c11;
  color: white;
}

.trailer-section::before {
  position: absolute;
  top: -20%;
  left: 46%;
  width: 800px;
  height: 650px;
  border-radius: 50%;
  background: rgba(96,65,222,.16);
  filter: blur(150px);
  content: "";
  pointer-events: none;
}

.section-heading {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-bottom: 68px;
}

.section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: 1.45fr .65fr;
  align-items: end;
  gap: 90px;
}

.section-heading h2,
.system-intro h2,
.ask-copy h2,
.cta-section h2 {
  font-size: clamp(54px, 6.5vw, 94px);
}

.section-heading > p,
.section-heading--split > p,
.system-intro > p:last-child,
.ask-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.trailer-section .section-heading--split > p {
  color: rgba(255,255,255,.54);
}

.trailer-section h2 em,
.ask-copy h2 em,
.system-intro h2 em {
  color: #a794ff;
}

.trailer-stage {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 16/8.2;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px;
  background: #121118;
  box-shadow: 0 40px 120px rgba(0,0,0,.35);
  color: white;
  cursor: pointer;
}

.trailer-stage::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.trailer-stage video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease), opacity .5s ease;
}

.trailer-stage:hover video { transform: scale(1.015); }

.trailer-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,7,.35), transparent 36%, rgba(5,5,7,.45));
  pointer-events: none;
}

.trailer-kicker,
.trailer-foot {
  position: absolute;
  z-index: 2;
  left: 32px;
  color: rgba(255,255,255,.7);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.trailer-kicker { top: 27px; }

.trailer-play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  grid-template-columns: 56px auto;
  grid-template-rows: 1fr 1fr;
  align-items: center;
  column-gap: 16px;
  min-width: 190px;
  padding: 11px 18px 11px 11px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(12,11,16,.64);
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(15px);
  transition: transform .35s var(--ease), background .35s ease;
}

.trailer-stage:hover .trailer-play { transform: translate(-50%, -50%) scale(1.04); background: rgba(115,92,255,.8); }

.trailer-play i {
  grid-row: 1 / 3;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: #111015;
  font-size: 14px;
  font-style: normal;
  padding-left: 3px;
}

.trailer-play b { align-self: end; font-size: 12px; }
.trailer-play small { align-self: start; color: rgba(255,255,255,.58); font-family: var(--mono); font-size: 8px; }

.trailer-foot {
  right: 32px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.trailer-foot b { font-weight: 400; }
.trailer-foot i { flex: 1; height: 1px; background: rgba(255,255,255,.25); }
.trailer-foot small { color: rgba(255,255,255,.48); }

.platform-section {
  padding-top: 150px;
  padding-bottom: 170px;
}

.section-lede {
  max-width: 560px;
  margin-top: 32px !important;
}

.platform-explorer {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: white;
  box-shadow: 0 28px 80px rgba(26,22,38,.06);
}

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

.explorer-tabs button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 68px;
  border: 0;
  border-right: 1px solid var(--line);
  background: #f8f7f4;
  color: #77747f;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}

.explorer-tabs button:last-child { border-right: 0; }
.explorer-tabs button span { color: #aaa7b0; font-family: var(--mono); font-size: 8px; }
.explorer-tabs button.active { background: white; color: var(--ink); box-shadow: inset 0 3px var(--violet); }
.explorer-tabs button.active span { color: var(--violet); }

.explorer-panel {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  min-height: 620px;
}

.explorer-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(40px, 6vw, 90px);
  border-right: 1px solid var(--line);
}

.panel-label {
  margin-bottom: 20px;
  color: var(--violet-deep);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .14em;
}

.explorer-copy h3 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .98;
}

.explorer-copy > p:not(.panel-label) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.capability-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 13px;
}

.capability-list span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #5f5c67;
  font-size: 9px;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.explorer-visual {
  position: relative;
  align-self: stretch;
  margin: 35px 35px 0;
  overflow: hidden;
  border: 1px solid #dcdbe1;
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
  background: #f6f6f8;
  box-shadow: 0 30px 65px rgba(23,20,34,.13);
}

.visual-toolbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 40px;
  padding: 0 14px;
  border-bottom: 1px solid #e1e0e5;
  background: #efeff2;
  color: #898690;
  font-family: var(--mono);
  font-size: 7px;
}

.visual-toolbar > span { display: flex; gap: 5px; }
.visual-toolbar b { justify-self: end; letter-spacing: 2px; }

.pipeline-board {
  padding: 26px;
}

.pipeline-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pipeline-top h4 {
  margin: 6px 0 0;
  font-size: 23px;
  letter-spacing: -.045em;
}

.pipeline-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 20px;
}

.pipeline-summary span {
  display: grid;
  gap: 7px;
  padding: 13px;
  border: 1px solid #e3e2e7;
  border-radius: 9px;
  background: white;
}

.pipeline-summary small { color: #83808a; font-size: 6px; }
.pipeline-summary b { font-size: 13px; }

.pipeline-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 16px;
}

.pipeline-columns > div {
  min-height: 290px;
  padding: 10px;
  border-radius: 10px;
  background: #ececf0;
}

.pipeline-columns > div > p {
  display: flex;
  justify-content: space-between;
  margin: 2px 3px 10px;
  color: #64616b;
  font-size: 7px;
  font-weight: 700;
}

.pipeline-columns > div > p span { color: #9996a0; }

.pipeline-columns article {
  position: relative;
  display: grid;
  gap: 5px;
  margin-bottom: 8px;
  padding: 11px 9px 11px 25px;
  border: 1px solid #e1e0e5;
  border-radius: 8px;
  background: white;
}

.pipeline-columns article b { font-size: 7px; }
.pipeline-columns article small { color: #8b8892; font-size: 5px; }
.pipeline-columns article em { margin-top: 5px; color: #696670; font-size: 5px; font-style: normal; }
.account-dot { position: absolute; top: 12px; left: 9px; width: 8px; height: 8px; border-radius: 3px; background: var(--violet); }
.account-dot--mint { background: var(--mint); }
.account-dot--pink { background: var(--pink); }
.account-dot--amber { background: var(--amber); }
.account-dot--blue { background: var(--blue); }

.floating-insight {
  position: absolute;
  right: 22px;
  bottom: 25px;
  left: 22px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 11px;
  background: rgba(20,18,29,.93);
  box-shadow: 0 18px 38px rgba(22,18,42,.27);
  color: white;
}

.floating-insight > span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 9px; background: var(--violet); }
.floating-insight p { display: grid; gap: 3px; margin: 0; }
.floating-insight small { color: #aaa3cd; font-family: var(--mono); font-size: 5px; }
.floating-insight b { font-size: 8px; }
.floating-insight i { color: rgba(255,255,255,.65); font-size: 6px; font-style: normal; }

.system-section {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 150px max(24px, calc((100vw - 1440px) / 2));
  overflow: hidden;
  background: #131218;
  color: white;
}

.system-section::after {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(115,92,255,.2);
  border-radius: 50%;
  box-shadow: 0 0 0 120px rgba(115,92,255,.03), 0 0 0 240px rgba(115,92,255,.02);
  content: "";
}

.system-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .65fr;
  align-items: end;
  gap: 120px;
}

.system-intro .eyebrow { grid-column: 1 / -1; }
.system-intro > p:last-child { color: rgba(255,255,255,.5); }

.journey {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
  margin-top: 105px;
}

.journey article {
  position: relative;
  z-index: 2;
  min-height: 250px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 17px;
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(10px);
  transition: transform .35s var(--ease), background .35s ease;
}

.journey article:hover { transform: translateY(-8px); background: rgba(255,255,255,.075); }
.journey article > span { color: rgba(255,255,255,.33); font-family: var(--mono); font-size: 8px; }
.journey-icon { display: grid; width: 48px; height: 48px; place-items: center; margin: 31px 0 39px; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; background: rgba(115,92,255,.18); color: #b3a7f8; font-size: 18px; font-style: normal; }
.journey small { color: #8f86c9; font-family: var(--mono); font-size: 6px; letter-spacing: .12em; }
.journey b { display: block; margin-top: 7px; font-family: var(--serif); font-size: 18px; font-weight: 500; }
.journey p { margin: 8px 0 0; color: rgba(255,255,255,.45); font-size: 9px; line-height: 1.6; }
.journey-line { position: absolute; z-index: 0; top: 93px; left: 0; width: 100%; height: 100px; opacity: .5; }
.journey-line path { fill: none; stroke: var(--violet); stroke-width: 1; stroke-dasharray: 5 7; }

.everywhere-section {
  padding-top: 160px;
  padding-bottom: 170px;
}

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

.surface-card {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ecebe7;
}

.surface-card--wide { grid-column: 1 / -1; min-height: 670px; background: #e9e8e4; }
.surface-copy { position: relative; z-index: 3; max-width: 470px; padding: 54px 55px; }
.surface-copy > span { font-size: 8px; }
.surface-copy h3 { margin: 18px 0 13px; font-family: var(--serif); font-size: clamp(37px, 3.7vw, 54px); font-weight: 500; letter-spacing: -.045em; line-height: .98; }
.surface-copy p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.surface-desktop {
  position: absolute;
  right: -25px;
  bottom: -36px;
  width: 67%;
  height: 550px;
  overflow: hidden;
  border: 1px solid #c9c8ce;
  border-radius: 18px 18px 0 0;
  background: white;
  box-shadow: 0 35px 85px rgba(28,24,42,.17);
  transform: perspective(1400px) rotateY(-3deg) rotateX(2deg);
}

.surface-windowbar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 37px;
  padding: 0 13px;
  border-bottom: 1px solid #e1e0e5;
  background: #f1f0f3;
  color: #88858f;
  font-family: var(--mono);
  font-size: 6px;
}

.surface-windowbar span { margin-left: auto; margin-right: auto; }
.surface-dashboard { display: grid; grid-template-columns: 65px 1fr; height: calc(100% - 37px); }
.surface-dashboard aside { display: flex; flex-direction: column; align-items: center; gap: 30px; padding-top: 24px; background: #101014; }
.surface-dashboard aside b { color: var(--pink); font-size: 20px; }
.surface-dashboard aside i { width: 20px; height: 5px; border-radius: 3px; background: rgba(255,255,255,.18); }
.surface-dashboard main { padding: 40px; background: #f8f8fa; }
.surface-dashboard main > small { color: #88858f; font-family: var(--mono); font-size: 7px; letter-spacing: .1em; }
.surface-dashboard h4 { margin: 8px 0 28px; font-size: 31px; letter-spacing: -.05em; }
.brief-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.brief-grid span { display: grid; gap: 7px; padding: 17px; border: 1px solid #e1e0e5; border-radius: 10px; background: white; color: #7e7b86; font-size: 7px; }
.brief-grid b { color: var(--ink); font-size: 22px; }
.brief-chart { height: 220px; margin-top: 14px; border: 1px solid #e4e3e8; border-radius: 12px; background: linear-gradient(180deg, rgba(115,92,255,.17), rgba(115,92,255,0)), repeating-linear-gradient(to bottom, white 0, white 53px, #efeff2 54px); clip-path: polygon(0 78%, 10% 73%, 20% 80%, 33% 61%, 46% 67%, 59% 40%, 70% 47%, 82% 20%, 92% 29%, 100% 5%, 100% 100%, 0 100%); }

.surface-card--tablet { background: #151419; color: white; }
.surface-card--tablet .surface-copy p { color: rgba(255,255,255,.48); }
.surface-card--tablet .surface-copy > span { color: rgba(255,255,255,.46); }
.surface-tablet { position: absolute; right: -35px; bottom: -70px; width: 72%; height: 470px; padding: 9px; border: 2px solid #46434d; border-radius: 30px; background: #0d0c10; box-shadow: 0 32px 80px rgba(0,0,0,.4); transform: rotate(7deg); }
.surface-tablet .tablet-dot { top: 3px; left: 50%; }
.coaching-ui { height: 100%; padding: 32px; overflow: hidden; border-radius: 21px; background: #f8f8fa; color: var(--ink); }
.coaching-ui h4 { margin: 8px 0 24px; font-size: 24px; letter-spacing: -.045em; }
.coach-score { display: flex; align-items: center; gap: 16px; padding: 18px; border-radius: 13px; background: linear-gradient(135deg, #241f3d, #131217); color: white; }
.coach-score > b { font-family: var(--serif); font-size: 43px; font-weight: 500; }
.coach-score > span { display: grid; gap: 4px; font-size: 10px; }
.coach-score small { color: #9e93d6; font-size: 7px; }
.coaching-ui ul { display: grid; gap: 8px; padding: 0; margin: 18px 0 0; list-style: none; }
.coaching-ui li { display: grid; grid-template-columns: 7px 1fr auto; align-items: center; gap: 9px; padding: 12px; border: 1px solid #e6e5ea; border-radius: 9px; background: white; font-size: 8px; }
.coaching-ui li i { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); }

.surface-card--mobile { background: #eee9ff; }
.surface-phones { position: absolute; right: 0; bottom: -65px; left: 20px; display: flex; align-items: flex-end; justify-content: center; gap: 13px; }
.surface-phone { position: relative; width: 205px; height: 430px; padding: 7px; border: 2px solid #28262e; border-radius: 31px; background: #111115; box-shadow: 0 30px 75px rgba(41,29,83,.25); transform: rotate(5deg); }
.surface-phone--back { width: 184px; height: 390px; transform: translateY(15px) rotate(-7deg); }
.surface-phone::before { position: absolute; z-index: 2; top: 11px; left: 50%; width: 67px; height: 18px; border-radius: 999px; background: #111115; content: ""; transform: translateX(-50%); }
.mini-mobile { height: 100%; overflow: hidden; padding: 38px 16px 18px; border-radius: 24px; background: #fafafa; text-align: center; }
.mini-mobile h5 { margin: 7px 0 22px; font-size: 19px; letter-spacing: -.05em; }
.candidate-avatar { display: grid; width: 62px; height: 62px; margin: 0 auto 10px; place-items: center; border-radius: 50%; background: linear-gradient(135deg, #9e8eff, #e0daff); color: #362590; font-size: 15px; font-weight: 800; }
.recruit-mobile h6 { margin: 0; font-size: 13px; }
.recruit-mobile p { margin: 4px 0 12px; color: #88858f; font-size: 7px; }
.fit-ring { display: grid; width: 76px; height: 76px; margin: 0 auto 18px; place-content: center; border: 6px solid #e2defd; border-top-color: var(--violet); border-right-color: var(--violet); border-radius: 50%; transform: rotate(30deg); }
.fit-ring b,.fit-ring small { transform: rotate(-30deg); }
.fit-ring b { font-size: 19px; }
.fit-ring small { color: #88858f; font-size: 5px; }
.mini-mobile button { width: 100%; padding: 11px; border: 0; border-radius: 9px; background: var(--ink); color: white; font-size: 7px; }
.marketing-mobile { text-align: left; }
.marketing-mobile article { display: grid; grid-template-columns: 60px 1fr; grid-template-rows: 1fr 1fr; gap: 4px 9px; padding: 10px; border: 1px solid #e4e3e8; border-radius: 11px; background: white; }
.post-art { grid-row: 1 / 3; display: grid; width: 60px; height: 74px; place-items: center; border-radius: 7px; background: linear-gradient(145deg,#1b1930,#795cff); color: white; font-family: var(--serif); font-size: 30px; }
.marketing-mobile article b { align-self: end; font-size: 8px; }
.marketing-mobile article small { color: #8d8a94; font-size: 5px; }
.marketing-mobile button { margin-top: 12px; background: var(--violet); }

.ask-section {
  padding-bottom: 170px;
}

.ask-shell {
  position: relative;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  min-height: 690px;
  overflow: hidden;
  border-radius: 28px;
  background: #111015;
  color: white;
}

.ask-shell::before { position: absolute; top: -220px; left: -180px; width: 560px; height: 560px; border-radius: 50%; background: rgba(115,92,255,.22); filter: blur(120px); content: ""; }
.ask-copy { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 80px; }
.ask-copy > p { color: rgba(255,255,255,.48); }
.ask-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 25px; }
.ask-tags span { padding: 8px 10px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; color: rgba(255,255,255,.62); font-family: var(--mono); font-size: 7px; text-transform: uppercase; }

.ask-conversation {
  align-self: center;
  height: 590px;
  margin-right: 52px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 19px;
  background: #f8f8fa;
  color: var(--ink);
  box-shadow: 0 35px 100px rgba(0,0,0,.35);
}

.conversation-top { display: flex; align-items: center; justify-content: space-between; height: 57px; padding: 0 20px; border-bottom: 1px solid #e5e4e9; background: white; }
.conversation-top span { font-family: var(--serif); font-size: 16px; font-weight: 600; }
.conversation-top span b { color: var(--violet); }
.conversation-top small { color: #8a8792; font-size: 7px; }
.message { margin: 22px; font-size: 10px; line-height: 1.55; }
.message--user { width: 62%; margin-left: auto; padding: 14px 16px; border-radius: 13px 13px 3px 13px; background: #ebe8ff; color: #35277b; }
.message--bloom { display: grid; grid-template-columns: 32px 1fr; gap: 10px; }
.ai-avatar { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 9px; background: #1b1828; color: #b2a4ff; }
.message--bloom p { margin-bottom: 13px; }
.message--bloom ul { display: grid; gap: 7px; margin: 0; padding: 0; list-style: none; }
.message--bloom li { display: grid; grid-template-columns: 1fr auto; gap: 4px; padding: 11px; border: 1px solid #e3e2e7; border-radius: 9px; background: white; }
.message--bloom li b { font-size: 9px; }
.message--bloom li span { color: #88858f; font-size: 6px; }
.message--bloom li button { grid-row: 1 / 3; grid-column: 2; align-self: center; padding: 7px 9px; border: 1px solid #dad8e0; border-radius: 7px; background: #f8f7f9; font-size: 6px; }
.ask-input { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 10px; margin: 0 22px; padding: 10px 10px 10px 14px; border: 1px solid #dcdae1; border-radius: 12px; background: white; color: #9996a0; font-size: 8px; }
.ask-input kbd { padding: 4px 6px; border: 1px solid #dedce2; border-radius: 5px; background: #f5f4f7; font-family: var(--mono); font-size: 6px; }
.ask-input button { display: grid; width: 28px; height: 28px; place-items: center; border: 0; border-radius: 8px; background: var(--violet); color: white; }

.leadership-section {
  padding-bottom: 175px;
}

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

.leader-card {
  position: relative;
  min-height: 390px;
  padding: 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .3s ease, transform .3s var(--ease);
}

.leader-card:hover { z-index: 2; background: white; box-shadow: 0 24px 60px rgba(30,26,43,.08); transform: translateY(-3px); }
.leader-monogram { display: grid; width: 70px; height: 80px; place-items: center; border-radius: 50% 50% 46% 54% / 62% 53% 47% 38%; background: #f8d6e8; color: #9d245f; font-family: var(--serif); font-size: 22px; }
.leader-monogram--violet { background: #ddd7ff; color: #4e37c2; }
.leader-monogram--mint { background: #cef1e9; color: #14765f; }
.leader-monogram--blue { background: #d6e7ff; color: #225dab; }
.leader-monogram--amber { background: #f4e5c8; color: #9e6310; }
.leader-monogram--coral { background: #f7d3cf; color: #9f3930; }
.leader-index { position: absolute; top: 40px; right: 38px; color: #aaa7b0; font-family: var(--mono); font-size: 8px; }
.leader-card h3 { margin: 34px 0 8px; font-family: var(--serif); font-size: 27px; font-weight: 500; letter-spacing: -.04em; }
.leader-role { min-height: 32px; margin-bottom: 25px; color: var(--violet-deep); font-family: var(--mono); font-size: 8px; line-height: 1.55; letter-spacing: .07em; text-transform: uppercase; }
.leader-card > p:last-child { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.75; }

.cta-section {
  display: flex;
  width: min(1440px, calc(100% - 32px));
  min-height: 720px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 80px 24px;
  overflow: hidden;
  border-radius: 28px;
  background-color: #efede8;
  background-image: linear-gradient(rgba(20,18,28,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(20,18,28,.04) 1px, transparent 1px);
  background-size: 72px 72px;
  text-align: center;
}

.cta-mark { margin-bottom: 34px; }
.cta-section .eyebrow { justify-content: center; }
.cta-section > p:not(.eyebrow) { max-width: 500px; margin: 32px 0 0; color: var(--muted); line-height: 1.7; }
.cta-actions { display: flex; gap: 10px; margin-top: 32px; }

.site-footer {
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 70px 60px 24px;
  border-radius: 28px;
  background: #101014;
  color: white;
}

.footer-brand { display: grid; grid-template-columns: 1fr 1fr; align-items: start; }
.wordmark--light { color: white; }
.footer-brand > p { justify-self: end; max-width: 340px; color: rgba(255,255,255,.45); font-size: 12px; line-height: 1.7; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); width: 52%; margin: 80px 0 65px auto; }
.footer-links > div { display: grid; align-content: start; gap: 13px; }
.footer-links b { margin-bottom: 7px; color: rgba(255,255,255,.34); font-family: var(--mono); font-size: 7px; letter-spacing: .12em; text-transform: uppercase; }
.footer-links a { width: max-content; color: rgba(255,255,255,.74); font-size: 10px; }
.footer-links a:hover { color: white; }
.footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.11); color: rgba(255,255,255,.35); font-family: var(--mono); font-size: 7px; letter-spacing: .06em; text-transform: uppercase; }
.footer-bottom > span:last-child { justify-self: end; }
.live-indicator { display: flex; align-items: center; gap: 8px; }
.live-indicator i { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 4px rgba(24,198,163,.1); }

.trailer-modal {
  width: min(1240px, calc(100% - 36px));
  max-width: none;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px;
  background: #0c0b10;
  box-shadow: 0 50px 150px rgba(0,0,0,.6);
  color: white;
}

.trailer-modal::backdrop { background: rgba(5,5,7,.82); backdrop-filter: blur(14px); }
.trailer-modal[open] { animation: modal-in .4s var(--ease); }
@keyframes modal-in { from { opacity: 0; transform: scale(.96) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal-bar { display: flex; align-items: center; justify-content: space-between; height: 52px; padding: 0 18px; border-bottom: 1px solid rgba(255,255,255,.1); font-family: var(--mono); font-size: 8px; letter-spacing: .12em; }
.modal-bar button { display: flex; align-items: center; gap: 9px; border: 0; background: transparent; color: rgba(255,255,255,.65); font-size: 8px; cursor: pointer; }
.modal-bar button b { font-size: 18px; font-weight: 300; }
.trailer-modal video { display: block; width: 100%; max-height: calc(100vh - 190px); aspect-ratio: 16/9; background: #08070a; }
.modal-caption { display: flex; align-items: center; justify-content: space-between; min-height: 68px; padding: 0 20px; }
.modal-caption p { display: grid; gap: 3px; margin: 0; }
.modal-caption p b { font-size: 10px; }
.modal-caption p span,.modal-caption > small { color: rgba(255,255,255,.4); font-size: 7px; }

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

:where(.js.js-ready) .reveal {
  opacity: 0;
  transform: translateY(24px);
}

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

@media (max-width: 1180px) {
  .device-orchestra { transform: scale(.86); transform-origin: top center; margin-bottom: -100px; }
  .device--tablet { left: -4%; }
  .device--phone { right: -2%; }
  .explorer-panel { grid-template-columns: .8fr 1.2fr; }
  .explorer-copy { padding: 50px; }
  .ask-copy { padding: 55px; }
  .surface-desktop { width: 72%; }
}

@media (max-width: 960px) {
  .section-shell { width: min(100% - 32px, 900px); }
  .site-header { grid-template-columns: 1fr auto; }
  .menu-toggle { display: block; grid-column: 2; grid-row: 1; justify-self: end; }
  .site-nav { position: absolute; top: 70px; right: 0; left: 0; display: none; flex-direction: column; align-items: flex-start; gap: 4px; padding: 18px; border: 1px solid var(--line); border-radius: 17px; background: rgba(247,246,242,.97); box-shadow: 0 22px 55px rgba(19,16,29,.15); }
  .site-header.menu-open .site-nav { display: flex; }
  .site-nav a { width: 100%; padding: 12px; }
  .nav-actions { display: none; }
  .hero { min-height: 960px; padding-top: 150px; }
  .device-orchestra { width: 920px; margin-left: 50%; transform: translateX(-50%) scale(.76); transform-origin: top center; }
  .signal-strip { flex-wrap: wrap; }
  .section-heading--split,.system-intro { grid-template-columns: 1fr; gap: 30px; }
  .system-intro .eyebrow { grid-column: auto; }
  .journey { grid-template-columns: 1fr 1fr; }
  .journey-line { display: none; }
  .explorer-tabs { grid-template-columns: 1fr 1fr; }
  .explorer-tabs button { border-bottom: 1px solid var(--line); }
  .explorer-panel { grid-template-columns: 1fr; }
  .explorer-copy { border-right: 0; border-bottom: 1px solid var(--line); }
  .explorer-visual { min-height: 560px; }
  .surface-card--wide { min-height: 880px; }
  .surface-desktop { right: -45px; bottom: -20px; width: 96%; }
  .surface-grid { grid-template-columns: 1fr; }
  .surface-card--wide { grid-column: auto; }
  .ask-shell { grid-template-columns: 1fr; }
  .ask-copy { padding-bottom: 35px; }
  .ask-conversation { width: calc(100% - 70px); margin: 0 auto 55px; }
  .leadership-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { width: 70%; }
}

@media (max-width: 680px) {
  html { scroll-padding-top: 76px; }
  .section-shell { width: calc(100% - 22px); }
  .site-header { top: 8px; width: calc(100% - 16px); min-height: 58px; border-radius: 17px; }
  .wordmark { font-size: 24px; }
  .bloom-mark { transform: scale(.86); }
  .hero { min-height: 850px; padding-top: 132px; }
  .hero::before { background-size: 48px 48px; }
  h1 { font-size: clamp(50px, 16vw, 74px); line-height: .91; }
  .hero-intro { width: 100%; margin-top: 26px; font-size: 15px; }
  .hero-actions,.cta-actions { flex-direction: column; }
  .hero-actions .button,.cta-actions .button { width: 100%; }
  .hero-note { padding: 0 25px; }
  .device-orchestra { width: 860px; height: 510px; margin-top: 60px; margin-bottom: -125px; transform: translateX(-50%) scale(.58); }
  .device-caption { bottom: 25px; }
  .signal-strip { gap: 14px 18px; min-height: 100px; font-size: 8px; }
  .signal-strip i { display: none; }
  .trailer-section,.system-section { padding: 100px 11px; }
  .section-heading { margin-bottom: 42px; }
  .section-heading h2,.system-intro h2,.ask-copy h2,.cta-section h2 { font-size: clamp(45px, 14vw, 65px); }
  .section-heading > p,.section-heading--split > p,.system-intro > p:last-child,.ask-copy > p { font-size: 13px; }
  .trailer-stage { aspect-ratio: 10/12; border-radius: 18px; }
  .trailer-stage video { object-fit: cover; }
  .trailer-kicker { top: 20px; left: 18px; }
  .trailer-foot { right: 18px; bottom: 18px; left: 18px; flex-wrap: wrap; gap: 10px; }
  .trailer-foot i,.trailer-foot small { display: none; }
  .platform-section,.everywhere-section { padding-top: 100px; padding-bottom: 110px; }
  .explorer-tabs { display: flex; overflow-x: auto; }
  .explorer-tabs button { min-width: 145px; }
  .explorer-copy { padding: 42px 25px; }
  .explorer-visual { min-height: 470px; margin: 16px 10px 0; }
  .pipeline-board { padding: 16px; }
  .pipeline-summary { grid-template-columns: 1fr 1fr; }
  .pipeline-summary span:last-child { display: none; }
  .pipeline-columns { grid-template-columns: 1fr 1fr; }
  .pipeline-columns > div:last-child { display: none; }
  .floating-insight { right: 10px; bottom: 12px; left: 10px; }
  .journey { grid-template-columns: 1fr; margin-top: 55px; }
  .journey article { min-height: 220px; }
  .surface-card { min-height: 610px; border-radius: 18px; }
  .surface-copy { padding: 36px 27px; }
  .surface-card--wide { min-height: 710px; }
  .surface-desktop { right: -135px; width: 750px; height: 450px; transform: scale(.72); transform-origin: bottom right; }
  .surface-tablet { right: -80px; width: 400px; }
  .surface-phones { left: -40px; transform: scale(.82); transform-origin: bottom center; }
  .ask-section { padding-bottom: 110px; }
  .ask-shell { min-height: auto; border-radius: 20px; }
  .ask-copy { padding: 55px 28px 32px; }
  .ask-conversation { width: calc(100% - 24px); height: 580px; margin-bottom: 12px; }
  .conversation-top { padding: 0 13px; }
  .conversation-top small { display: none; }
  .message { margin: 16px 13px; }
  .message--user { width: 78%; }
  .ask-input { margin: 0 13px; }
  .leadership-section { padding-bottom: 110px; }
  .leadership-grid { grid-template-columns: 1fr; }
  .leader-card { min-height: 350px; padding: 30px; }
  .leader-index { top: 32px; right: 30px; }
  .cta-section { width: calc(100% - 16px); min-height: 650px; border-radius: 22px; }
  .site-footer { width: calc(100% - 16px); padding: 50px 25px 20px; border-radius: 22px; }
  .footer-brand { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand > p { justify-self: start; }
  .footer-links { width: 100%; margin: 55px 0; }
  .footer-bottom { grid-template-columns: 1fr auto; }
  .footer-bottom > span:last-child { display: none; }
  .trailer-modal { width: calc(100% - 18px); border-radius: 14px; }
  .trailer-modal video { max-height: none; }
  .modal-caption > small { display: none; }
}

/* Targeted current-product and CRM-blue refinements. */
.brand-mark {
  display: block;
  width: 31px;
  height: 25px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-mark--large {
  width: 76px;
  height: 58px;
}

.site-header.scrolled {
  border-color: rgba(24, 24, 27, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.07);
}

.site-nav { gap: 24px; }
.button--dark:hover { border-color: #1d4ed8; background: #1d4ed8; }
.hero-glow--one { background: #60a5fa; opacity: .16; }
.hero-glow--two { background: #2563eb; opacity: .14; }
.ambient-orbit { border-color: rgba(37, 99, 235, .13); }
.device { box-shadow: 0 36px 100px rgba(15, 23, 42, .2); }
.status-dot,
.status-dot--pink {
  background: #2563eb;
  box-shadow: 0 0 0 5px rgba(37, 99, 235, .12);
}

.device-orchestra {
  width: min(1160px, 100%);
  height: 620px;
}

.device--desktop {
  left: 46%;
  width: 920px;
  height: 570px;
}

.desktop-app.product-frame {
  height: calc(100% - 38px);
}

.hero-dashboard-shot {
  object-position: center top !important;
}

.hero-map-inset {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  width: 46%;
  height: 46%;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, .18);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(15, 23, 42, .22);
}

.hero-map-inset > span {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  padding: 6px 8px;
  border: 1px solid rgba(37, 99, 235, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: #1d4ed8;
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-map-inset > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 82% 88%;
}

.device--phone {
  top: 140px;
  right: -2px;
}

.product-frame {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.product-frame > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.desktop-app.product-frame { display: block; }
.product-frame--dashboard > img { object-position: center top; }
.product-frame--map > img { object-position: 62% center; }
.product-frame--rep > img { object-fit: cover; object-position: center top; }

.product-proof {
  position: absolute;
  z-index: 5;
  right: 13px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid rgba(37, 99, 235, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 8px 24px rgba(15, 23, 42, .1);
  color: #1d4ed8;
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: .06em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.product-proof--phone {
  right: 8px;
  bottom: 10px;
  min-height: 20px;
  padding: 0 7px;
  font-size: 5px;
}

.pulse,
.signal-strip i,
.live-indicator i {
  background: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
}

.trailer-section,
.ask-shell,
.site-footer,
.trailer-modal {
  background: #071a36;
}

.trailer-section::before,
.ask-shell::before {
  background: rgba(37, 99, 235, .2);
}

.trailer-section h2 em,
.ask-copy h2 em {
  color: #93c5fd;
}

.trailer-stage { background: #06152b; }
.trailer-stage:hover .trailer-play { background: rgba(37, 99, 235, .86); }

.explorer-visual--real { background: #eef2f7; }
.explorer-product-image {
  display: block;
  width: 100%;
  height: calc(100% - 40px);
  object-fit: cover;
  object-position: center top;
}

.real-ui-caption {
  position: absolute;
  z-index: 4;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(37, 99, 235, .15);
  border-radius: 10px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 34px rgba(15, 23, 42, .13);
  color: #52525b;
  font-family: var(--mono);
  font-size: 7px;
  backdrop-filter: blur(12px);
}

.real-ui-caption span { display: inline-flex; align-items: center; gap: 8px; }
.real-ui-caption span i { width: 6px; height: 6px; border-radius: 50%; background: #2563eb; }
.real-ui-caption b { color: #18181b; font-size: 8px; }

.marketing-section {
  padding-top: 150px;
  padding-bottom: 170px;
}

.marketing-offers {
  display: grid;
  gap: 16px;
}

.marketing-offer {
  display: grid;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
}

.marketing-offer--standalone { grid-template-columns: .78fr 1.22fr; }
.marketing-offer--partner { grid-template-columns: 1.18fr .82fr; background: #eff6ff; }

.offer-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(42px, 5.5vw, 78px);
}

.offer-copy h3 {
  margin: 0 0 23px;
  font-family: var(--serif);
  font-size: clamp(36px, 3.8vw, 55px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1;
}

.offer-copy > p:not(.panel-label) {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.offer-copy > small {
  max-width: 470px;
  margin-top: 20px;
  color: #71717a;
  font-size: 9px;
  line-height: 1.55;
}

.offer-features {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 24px;
}

.offer-features span {
  padding: 8px 10px;
  border: 1px solid rgba(37, 99, 235, .14);
  border-radius: 999px;
  background: #f8fbff;
  color: #1d4ed8;
  font-size: 8px;
}

.standalone-shot,
.partner-shot {
  min-width: 0;
  margin: 30px;
  border: 1px solid rgba(24, 24, 27, .12);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(15, 23, 42, .14);
}

.standalone-shot { margin-left: 0; }
.standalone-shot > img { object-position: center top; }
.partner-shot { margin-right: 0; }
.partner-shot > img { object-position: center top; }

.system-section {
  padding: 105px max(24px, calc((100vw - 1440px) / 2)) 110px;
  background: linear-gradient(180deg, #f8fbff 0%, #eff6ff 100%);
  color: var(--ink);
}

.system-section::after {
  top: -360px;
  right: -260px;
  border-color: rgba(37, 99, 235, .12);
  box-shadow: 0 0 0 120px rgba(37, 99, 235, .025), 0 0 0 240px rgba(37, 99, 235, .018);
}

.system-section .eyebrow--light { color: #1d4ed8; }
.system-intro { grid-template-columns: 1.1fr .7fr; gap: 90px; }
.system-intro > p:last-child { color: #52525b; }
.system-intro h2 em { color: #2563eb; }
.system-intro h2 { font-size: clamp(44px, 5vw, 72px); }

.context-flow {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin-top: 52px;
}

.context-rail {
  position: absolute;
  z-index: 0;
  top: 29px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, rgba(37, 99, 235, .08), #2563eb 18%, #60a5fa 82%, rgba(37, 99, 235, .08));
}

.context-flow article {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  gap: 12px 14px;
  min-width: 0;
}

.context-flow article > span {
  grid-column: 1 / -1;
  color: #94a3b8;
  font-family: var(--mono);
  font-size: 7px;
}

.context-flow article > i {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 5px solid #fff;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, .22), 0 8px 24px rgba(37, 99, 235, .18);
}

.context-flow article:nth-of-type(2) > i,
.context-flow article:nth-of-type(4) > i { background: #60a5fa; }
.context-flow small { color: #1d4ed8; font-family: var(--mono); font-size: 6px; letter-spacing: .12em; }
.context-flow b { display: block; margin-top: 7px; font-family: var(--serif); font-size: 19px; font-weight: 500; }
.context-flow p { margin: 5px 0 0; color: #71717a; font-size: 9px; }

.surface-card--wide { background: #f1f5f9; }
.surface-card--tablet { background: #071a36; }
.surface-card--mobile { background: #eff6ff; }
.surface-desktop > img { width: 100%; height: calc(100% - 37px); object-fit: cover; object-position: center top; }
.surface-tablet > img { width: 100%; height: 100%; border-radius: 21px; object-fit: cover; object-position: 48% top; }
.surface-phone > img { width: 100%; height: 100%; border-radius: 24px; object-fit: cover; object-position: center top; }
.surface-proof { right: 42px; bottom: 86px; }

.ask-shell { background: #071a36; }
.ask-conversation > img { width: 100%; height: calc(100% - 57px); object-fit: cover; object-position: center top; }
.ask-conversation .real-ui-caption { right: 16px; bottom: 16px; left: 16px; }

.leader-monogram,
.leader-monogram--violet,
.leader-monogram--mint,
.leader-monogram--blue,
.leader-monogram--amber,
.leader-monogram--coral {
  background: #dbeafe;
  color: #1d4ed8;
}

.leader-card:nth-child(even) .leader-monogram { background: #eff6ff; color: #2563eb; }
.cta-section {
  background-color: #eff6ff;
  background-image: linear-gradient(rgba(37, 99, 235, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(37, 99, 235, .045) 1px, transparent 1px);
}
.site-footer { background: #071a36; }

@media (max-width: 960px) {
  .site-nav { background: rgba(255, 255, 255, .97); }
  .device-orchestra { width: 920px; height: 560px; }
  .device--desktop { left: 47%; width: 860px; height: 533px; }
  .device--phone { top: 132px; right: 3%; }
  .marketing-offer--standalone,
  .marketing-offer--partner { grid-template-columns: 1fr; }
  .standalone-shot,
  .partner-shot { height: 480px; margin: 0 28px 28px; }
  .partner-shot { margin-top: 28px; }
  .context-flow { grid-template-columns: 1fr 1fr; }
  .context-rail { display: none; }
}

@media (max-width: 680px) {
  .brand-mark { width: 27px; height: 22px; }
  .brand-mark--large { width: 66px; height: 52px; }
  .hero { min-height: 830px; }
  .device-orchestra { width: 790px; height: 465px; margin-top: 52px; margin-bottom: -105px; transform: translateX(-50%) scale(.49); }
  .device--desktop { left: 46%; width: 760px; height: 472px; }
  .device--phone { top: 112px; right: 4%; width: 194px; height: 396px; }
  .hero-map-inset { right: 13px; bottom: 13px; }
  .marketing-section { padding-top: 100px; padding-bottom: 110px; }
  .marketing-offer { min-height: auto; border-radius: 18px; }
  .offer-copy { padding: 38px 25px; }
  .offer-copy h3 { font-size: 37px; }
  .standalone-shot,
  .partner-shot { height: 270px; margin: 0 12px 12px; border-radius: 13px; }
  .partner-shot { margin-top: 12px; }
  .system-section { padding: 88px 22px 92px; }
  .system-intro { gap: 24px; }
  .context-flow { grid-template-columns: 1fr; gap: 25px; margin-top: 48px; }
  .context-flow article { grid-template-columns: auto 1fr; }
  .explorer-product-image { object-position: 22% top; }
  .real-ui-caption { right: 8px; bottom: 8px; left: 8px; min-height: 34px; padding: 0 9px; }
  .real-ui-caption span { font-size: 6px; }
  .real-ui-caption b { display: none; }
  .surface-tablet > img { object-position: 42% top; }
  .surface-proof { right: 70px; bottom: 76px; }
  .ask-conversation { height: 410px; }
  .ask-conversation > img { object-position: 24% top; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Keep the responsive product orchestra transform composed with reveal state.
   The generic `.reveal.is-visible` transform otherwise wins on specificity. */
@media (min-width: 961px) and (max-width: 1180px) {
  .device-orchestra.reveal {
    transform: scale(.86) translateY(24px);
  }

  .device-orchestra.reveal.is-visible {
    transform: scale(.86) translateY(0);
  }
}

@media (max-width: 960px) {
  .device-orchestra.reveal {
    transform: translateX(-50%) scale(.76) translateY(24px);
  }

  .device-orchestra.reveal.is-visible {
    transform: translateX(-50%) scale(.76) translateY(0);
  }
}

@media (max-width: 680px) {
  .hero { overflow: clip; }

  .device-orchestra.reveal {
    transform: translateX(-50%) scale(.49) translateY(24px);
  }

  .device-orchestra.reveal.is-visible {
    transform: translateX(-50%) scale(.49) translateY(0);
  }
}

/* Visual-fidelity pass: preserve the approved layout while giving every
   product surface an intentional, complete frame. */
.trailer-section {
  padding: 96px max(24px, calc((100vw - 1440px) / 2)) 108px;
  background: linear-gradient(180deg, #f8fbff 0%, #edf5ff 100%);
  color: var(--ink);
}

.trailer-section::before {
  top: -42%;
  left: 48%;
  width: 700px;
  height: 560px;
  background: rgba(37, 99, 235, .12);
  filter: blur(145px);
}

.trailer-section .section-heading--split {
  width: min(1120px, 100%);
  margin: 0 auto 44px;
  grid-template-columns: 1.25fr .7fr;
  gap: 56px;
}

.trailer-section .section-heading h2 {
  font-size: clamp(48px, 5vw, 72px);
}

.trailer-section .eyebrow--light {
  color: #1d4ed8;
}

.trailer-section .section-heading--split > p {
  color: #52525b;
}

.trailer-section h2 em {
  color: #2563eb;
}

.trailer-stage {
  width: min(1120px, 100%);
  margin-inline: auto;
  aspect-ratio: 16 / 9;
  border-color: rgba(15, 23, 42, .18);
  border-radius: 22px;
  background: #06152b;
  box-shadow: 0 34px 90px rgba(15, 23, 42, .22);
}

.trailer-stage video {
  object-fit: contain;
}

.explorer-panel {
  min-height: 0;
  grid-template-columns: .76fr 1.24fr;
}

.explorer-visual {
  align-self: center;
  margin: 28px;
  border-bottom: 1px solid #dcdbe1;
  border-radius: 18px;
}

.explorer-product-view {
  display: flex;
  flex-direction: column;
  background: #eef2f7;
}

.explorer-product-view[hidden],
.agent-engine[hidden] {
  display: none !important;
}

.explorer-product-stage {
  display: grid;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  background: #f4f6f9;
}

.explorer-product-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.real-ui-caption {
  position: static;
  flex: 0 0 auto;
  min-height: 42px;
  border: 0;
  border-top: 1px solid rgba(37, 99, 235, .12);
  border-radius: 0;
  background: rgba(255, 255, 255, .96);
  box-shadow: none;
  backdrop-filter: none;
}

.agent-engine {
  display: flex;
  min-height: 590px;
  flex-direction: column;
  background:
    radial-gradient(circle at 50% 44%, rgba(37, 99, 235, .13), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  color: #172033;
}

.engine-toolbar,
.engine-caption {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(37, 99, 235, .12);
  background: rgba(255, 255, 255, .78);
  color: #64748b;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .08em;
}

.engine-toolbar > span,
.engine-toolbar > b,
.engine-caption > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.engine-toolbar > span > i,
.engine-toolbar > b > i,
.engine-caption > span > i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .1);
}

.engine-toolbar > b {
  justify-self: end;
  color: #1d4ed8;
  font-size: 7px;
  font-weight: 500;
}

.engine-canvas {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.engine-grid {
  position: absolute;
  inset: 0;
  opacity: .48;
  background-image:
    linear-gradient(rgba(37, 99, 235, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, .055) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black 18%, transparent 78%);
}

.engine-links {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.engine-link {
  fill: none;
  stroke: rgba(37, 99, 235, .48);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 4 8;
  animation: engine-flow 3.2s linear infinite;
}

.engine-link--two,
.engine-link--five {
  stroke: rgba(14, 165, 233, .55);
  animation-delay: -.8s;
}

.engine-link--three,
.engine-link--six {
  animation-delay: -1.6s;
}

.engine-link--approval {
  stroke: rgba(217, 119, 6, .68);
  animation-delay: -2.1s;
}

@keyframes engine-flow {
  to { stroke-dashoffset: -48; }
}

.engine-sequence {
  position: absolute;
  z-index: 4;
  top: 18px;
  left: 50%;
  display: flex;
  width: min(560px, calc(100% - 48px));
  align-items: center;
  justify-content: center;
  gap: 16px;
  transform: translateX(-50%);
}

.engine-sequence span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #64748b;
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: .05em;
  white-space: nowrap;
  opacity: .55;
  animation: engine-phase 8.8s linear infinite;
}

.engine-sequence span:nth-child(2) { animation-delay: 2.2s; }
.engine-sequence span:nth-child(3) { animation-delay: 4.4s; }
.engine-sequence span:nth-child(4) { animation-delay: 6.6s; }

.engine-sequence span i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2563eb;
}

@keyframes engine-phase {
  0%, 20% { color: #1d4ed8; opacity: 1; transform: translateY(-1px); }
  26%, 100% { color: #64748b; opacity: .55; transform: translateY(0); }
}

.engine-node {
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  width: 176px;
  min-height: 72px;
  gap: 10px;
  padding: 11px;
  border: 1px solid rgba(37, 99, 235, .14);
  border-radius: 13px;
  background: rgba(255, 255, 255, .91);
  box-shadow: 0 14px 32px rgba(30, 64, 175, .08);
  backdrop-filter: blur(10px);
}

.engine-node > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(37, 99, 235, .14);
  border-radius: 10px;
  background: #eff6ff;
  color: #1d4ed8;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
}

.engine-node > div {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.engine-node small,
.engine-core small,
.engine-approval span,
.engine-output small {
  color: #64748b;
  font-family: var(--mono);
  font-size: 5px;
  letter-spacing: .11em;
}

.engine-node b {
  overflow: hidden;
  color: #1e293b;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.engine-node em {
  color: #2563eb;
  font-size: 6px;
  font-style: normal;
}

.engine-node--research { top: 78px; left: 22px; }
.engine-node--crm { top: 216px; left: 22px; }
.engine-node--content { top: 354px; left: 22px; }
.engine-node--decision { top: 78px; right: 22px; }
.engine-node--plp { top: 216px; right: 22px; }
.engine-node--deploy { top: 354px; right: 22px; }

.engine-core {
  position: absolute;
  z-index: 4;
  top: 198px;
  left: 50%;
  display: flex;
  width: 150px;
  min-height: 154px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 13px;
  border: 1px solid rgba(37, 99, 235, .24);
  border-radius: 22px;
  background: rgba(255, 255, 255, .97);
  box-shadow:
    0 24px 60px rgba(37, 99, 235, .16),
    0 0 0 8px rgba(37, 99, 235, .04);
  transform: translateX(-50%);
}

.engine-core::after {
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(37, 99, 235, .1);
  border-radius: 29px;
  content: "";
  animation: engine-core-ring 3.6s ease-in-out infinite;
}

@keyframes engine-core-ring {
  0%, 100% { opacity: .35; transform: scale(.98); }
  50% { opacity: 1; transform: scale(1.025); }
}

.engine-core > img {
  width: 38px;
  height: 31px;
  margin-bottom: 9px;
  object-fit: contain;
}

.engine-core > b {
  margin: 4px 0 11px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
}

.engine-core > span {
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  gap: 6px;
  padding: 3px 0;
  color: #64748b;
  font-size: 6px;
}

.engine-core > span > i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
}

.engine-approval {
  position: absolute;
  z-index: 4;
  top: 373px;
  left: 50%;
  display: grid;
  width: 220px;
  min-height: 58px;
  place-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(217, 119, 6, .24);
  border-radius: 12px;
  background: rgba(255, 251, 235, .96);
  box-shadow: 0 14px 34px rgba(146, 64, 14, .08);
  text-align: center;
  transform: translateX(-50%);
}

.engine-approval span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #b45309;
}

.engine-approval span i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f59e0b;
}

.engine-approval b {
  color: #78350f;
  font-size: 8px;
}

.engine-approval small {
  color: #a16207;
  font-size: 6px;
}

.engine-output {
  position: absolute;
  z-index: 4;
  bottom: 15px;
  left: 50%;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  width: 360px;
  min-height: 56px;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(37, 99, 235, .14);
  border-radius: 13px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 16px 34px rgba(30, 64, 175, .09);
  transform: translateX(-50%);
}

.engine-output > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #dcfce7;
  color: #15803d;
  font-size: 11px;
}

.engine-output > div {
  display: grid;
  gap: 3px;
}

.engine-output b {
  color: #1e293b;
  font-size: 8px;
}

.engine-output em {
  color: #1d4ed8;
  font-family: var(--mono);
  font-size: 6px;
  font-style: normal;
}

.engine-caption {
  min-height: 42px;
  border-top: 1px solid rgba(37, 99, 235, .12);
  border-bottom: 0;
}

.engine-caption > b {
  justify-self: end;
  color: #334155;
  font-size: 7px;
}

.agent-engine:not(.is-active) *,
.agent-engine:not(.is-in-view) * {
  animation-play-state: paused !important;
}

.product-frame--rep > img {
  object-fit: cover;
  object-position: center top;
}

.standalone-shot {
  height: auto;
  aspect-ratio: 2 / 1;
  align-self: center;
}

.standalone-shot > img,
.partner-shot > img {
  object-fit: contain;
  object-position: center;
  background: #eef3f8;
}

.partner-shot {
  height: 500px;
  align-self: center;
}

.surface-desktop {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 64%;
  height: 520px;
  border-radius: 18px;
}

.surface-desktop > img,
.surface-tablet > img {
  object-fit: contain;
  object-position: center;
  background: #f3f6fa;
}

.surface-tablet {
  position: absolute;
  right: -18px;
  bottom: 18px;
  width: 86%;
  height: 360px;
  transform: rotate(4deg);
}

.ask-conversation {
  display: flex;
  flex-direction: column;
}

.ask-conversation > img {
  width: 100%;
  height: calc(100% - 99px);
  object-fit: contain;
  object-position: center top;
  background: #f2f4f7;
}

.ask-conversation .real-ui-caption {
  min-height: 42px;
}

@media (max-width: 960px) {
  .trailer-section .section-heading--split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .explorer-visual {
    min-height: 0;
    margin: 22px;
  }

  .standalone-shot,
  .partner-shot {
    height: auto;
    margin: 0 28px 28px;
  }

  .standalone-shot { aspect-ratio: 2 / 1; }
  .partner-shot { aspect-ratio: 1 / 1; }

  .surface-desktop {
    right: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
    height: 535px;
  }
}

@media (max-width: 680px) {
  .trailer-section {
    padding: 72px 11px 76px;
  }

  .trailer-section .section-heading--split {
    margin-bottom: 34px;
    gap: 20px;
  }

  .trailer-section .section-heading h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .trailer-stage {
    aspect-ratio: 16 / 9;
    border-radius: 15px;
  }

  .trailer-stage video {
    object-fit: contain;
  }

  .trailer-kicker,
  .trailer-foot {
    display: none;
  }

  .trailer-play {
    min-width: 156px;
    grid-template-columns: 42px auto;
    column-gap: 11px;
    padding: 8px 13px 8px 8px;
  }

  .trailer-play i {
    width: 42px;
    height: 42px;
  }

  .explorer-visual {
    min-height: 0;
    margin: 14px 9px 9px;
    border-radius: 13px;
  }

  .visual-toolbar {
    height: 34px;
    padding: 0 10px;
  }

  .real-ui-caption {
    right: auto;
    bottom: auto;
    left: auto;
    min-height: 36px;
    padding: 0 9px;
  }

  .agent-engine {
    min-height: 0;
  }

  .engine-toolbar {
    grid-template-columns: 1fr auto;
    min-height: 38px;
    padding: 0 11px;
  }

  .engine-toolbar > small {
    display: none;
  }

  .engine-canvas {
    display: grid;
    min-height: 610px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 122px repeat(3, 64px) 64px 62px;
    gap: 8px;
    align-content: start;
    padding: 66px 10px 14px;
  }

  .engine-grid {
    mask-image: linear-gradient(black, transparent);
  }

  .engine-links {
    display: none;
  }

  .engine-sequence {
    top: 14px;
    width: calc(100% - 20px);
    gap: 5px;
    justify-content: space-between;
  }

  .engine-sequence span {
    gap: 4px;
    font-size: 4.5px;
  }

  .engine-sequence span i {
    width: 4px;
    height: 4px;
  }

  .engine-core,
  .engine-node,
  .engine-approval,
  .engine-output {
    position: relative;
    inset: auto;
    width: auto;
    min-height: 0;
    transform: none;
  }

  .engine-core {
    grid-row: 1;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 38px 1fr 1fr;
    grid-template-rows: auto auto auto;
    align-items: center;
    gap: 2px 9px;
    padding: 12px 14px;
    border-radius: 16px;
  }

  .engine-core > img {
    grid-row: 1 / 4;
    width: 34px;
    height: 28px;
    margin: 0;
  }

  .engine-core > small,
  .engine-core > b {
    grid-column: 2 / -1;
    margin: 0;
    text-align: left;
  }

  .engine-core > b {
    font-size: 15px;
  }

  .engine-core > span {
    align-self: center;
    padding: 1px 0;
    font-size: 5px;
  }

  .engine-node {
    grid-template-columns: 28px 1fr;
    gap: 7px;
    padding: 8px;
    border-radius: 10px;
  }

  .engine-node > span {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    font-size: 8px;
  }

  .engine-node b {
    font-size: 7px;
  }

  .engine-node em {
    display: none;
  }

  .engine-node--research { grid-row: 2; grid-column: 1; }
  .engine-node--decision { grid-row: 2; grid-column: 2; }
  .engine-node--crm { grid-row: 3; grid-column: 1; }
  .engine-node--plp { grid-row: 3; grid-column: 2; }
  .engine-node--content { grid-row: 4; grid-column: 1; }
  .engine-node--deploy { grid-row: 4; grid-column: 2; }

  .engine-approval {
    grid-row: 5;
    grid-column: 1 / -1;
    place-items: center;
    padding: 8px;
  }

  .engine-output {
    grid-row: 6;
    grid-column: 1 / -1;
    grid-template-columns: 26px 1fr;
    padding: 8px 10px;
  }

  .engine-output em {
    display: none;
  }

  .engine-caption {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }

  .engine-caption > b {
    display: none;
  }

  .standalone-shot,
  .partner-shot {
    height: auto;
    margin: 0 12px 12px;
  }

  .standalone-shot { aspect-ratio: 2 / 1; }
  .partner-shot { aspect-ratio: 1 / 1; }

  .surface-desktop {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    height: 410px;
    transform: none;
  }

  .surface-tablet {
    right: -38px;
    bottom: 20px;
    width: 95%;
    height: 315px;
  }

  .ask-conversation {
    height: 410px;
  }

  .ask-conversation > img {
    height: calc(100% - 93px);
    object-position: center top;
  }
}

@media (prefers-reduced-motion: reduce) {
  .engine-link,
  .engine-sequence span,
  .engine-core::after {
    animation: none !important;
  }

  .engine-sequence span {
    opacity: .75;
  }
}

/* v10 finishing pass: stable media, complete product frames, and responsive polish. */
.nav-mobile-actions {
  display: none;
}

.trailer-section {
  padding-top: 72px;
  padding-bottom: 82px;
}

.trailer-section .section-heading--split {
  width: min(1040px, 100%);
  margin-bottom: 36px;
}

.trailer-stage {
  width: min(960px, 100%);
}

.platform-section {
  padding-top: 128px;
  padding-bottom: 146px;
}

.explorer-tabs button:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: -4px;
}

.explorer-product-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1112 / 735;
}

.explorer-product-image {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  transition: opacity .24s ease;
}

.explorer-visual.is-loading .explorer-product-image {
  opacity: .58;
}

.explorer-visual.is-loading .explorer-product-stage::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, .72) 50%, transparent 62%);
  background-size: 220% 100%;
  content: "";
  pointer-events: none;
  animation: product-loading 1.1s ease-in-out infinite;
}

.explorer-visual.has-image-error .explorer-product-image {
  opacity: .1;
}

.product-load-status {
  position: absolute;
  inset: 0;
  display: none;
  padding: 24px;
  place-items: center;
  background: #f4f6f9;
  color: #475569;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .04em;
  text-align: center;
}

.explorer-visual.has-image-error .product-load-status {
  display: grid;
}

@keyframes product-loading {
  to { background-position: -220% 0; }
}

.engine-caption > b {
  grid-column: 3;
}

.engine-sequence span {
  font-size: 7px;
}

.engine-node small,
.engine-core small,
.engine-approval span,
.engine-output small {
  font-size: 7px;
}

.engine-node b {
  font-size: 11px;
}

.engine-node em,
.engine-core > span,
.engine-approval small,
.engine-output em {
  font-size: 8px;
}

.engine-approval b,
.engine-output b {
  font-size: 10px;
}

.product-proof {
  position: static;
  right: auto;
  bottom: auto;
  display: flex;
  width: 100%;
  min-height: 32px;
  flex: 0 0 32px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 0;
  border-top: 1px solid rgba(37, 99, 235, .13);
  border-radius: 0;
  background: rgba(255, 255, 255, .98);
  box-shadow: none;
  font-size: 7px;
  backdrop-filter: none;
}

.standalone-shot,
.partner-shot,
.surface-desktop,
.surface-tablet {
  display: flex;
  flex-direction: column;
}

.standalone-shot > img,
.partner-shot > img,
.surface-desktop > img,
.surface-tablet > img {
  min-height: 0;
  flex: 1 1 auto;
  height: auto;
}

.standalone-shot {
  aspect-ratio: 1120 / 600;
}

.partner-shot {
  height: auto;
  aspect-ratio: 978 / 507;
}

.surface-card--mobile {
  min-height: 700px;
}

.surface-tablet {
  right: 18px;
  left: 18px;
  width: auto;
  transform: none;
}

.surface-phones {
  right: 18px;
  bottom: 16px;
  left: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transform: none;
}

.surface-phone-pair {
  display: flex;
  width: 100%;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
}

.surface-phone {
  width: 174px;
  height: 365px;
}

.surface-phone--back {
  width: 156px;
  height: 335px;
}

.surface-proof {
  width: max-content;
  min-height: 27px;
  flex-basis: 27px;
  align-self: center;
  padding-inline: 10px;
  border: 1px solid rgba(37, 99, 235, .16);
  border-radius: 999px;
}

.assistant-capture {
  display: block;
  min-height: 0;
  flex: 1 1 auto;
  background: #f2f4f7;
}

.assistant-capture > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.ask-conversation {
  height: 560px;
}

.leadership-section {
  padding-bottom: 150px;
}

.leader-card {
  min-height: 370px;
}

.footer-links {
  margin-top: 64px;
  margin-bottom: 54px;
}

.footer-links b {
  color: rgba(255, 255, 255, .6);
  font-size: 9px;
}

.footer-links a {
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
}

.footer-bottom {
  color: rgba(255, 255, 255, .62);
  font-size: 9px;
}

.modal-caption p span,
.modal-caption > small {
  color: rgba(255, 255, 255, .62);
  font-size: 9px;
}

.modal-caption a {
  color: rgba(255, 255, 255, .78);
  text-decoration-color: rgba(255, 255, 255, .32);
  text-underline-offset: 3px;
}

.cta-section h2 {
  line-height: .98;
}

@media (max-width: 1400px) {
  .surface-card--wide {
    min-height: 930px;
  }

  .surface-card--wide .surface-copy {
    max-width: 640px;
  }

  .surface-desktop {
    right: 24px;
    bottom: 24px;
    left: 24px;
    width: auto;
    height: 560px;
    transform: none;
  }

  .surface-tablet {
    height: clamp(270px, 28vw, 360px);
  }
}

@media (min-width: 681px) and (max-width: 960px) {
  .explorer-tabs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .explorer-tabs button {
    gap: 5px;
    padding-inline: 6px;
    font-size: 9px;
  }

  .explorer-tabs button:last-child {
    grid-column: auto;
  }
}

@media (min-width: 961px) and (max-width: 1100px) {
  .explorer-panel {
    grid-template-columns: 1fr;
  }

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

  .explorer-visual {
    min-height: 0;
    margin: 22px;
  }
}

@media (max-width: 960px) {
  .site-nav {
    max-height: calc(100vh - 96px);
    overflow-y: auto;
  }

  .nav-mobile-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }

  .site-nav .nav-mobile-actions a {
    display: flex;
    width: 100%;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
  }

  .nav-mobile-actions .text-link {
    border: 1px solid var(--line);
    border-radius: 999px;
  }

  .nav-mobile-actions a::after {
    display: none;
  }

  .surface-card--wide {
    min-height: 880px;
  }

  .surface-desktop {
    right: 18px;
    bottom: 18px;
    left: 18px;
    width: auto;
    height: 535px;
  }

  .surface-tablet {
    right: 18px;
    bottom: 18px;
    left: 18px;
    width: auto;
    height: min(392px, 51vw);
    transform: none;
  }

  .partner-shot {
    aspect-ratio: 978 / 507;
  }
}

@media (max-width: 680px) {
  h1,
  h2 {
    line-height: .94;
  }

  .device--desktop {
    left: 48%;
  }

  .explorer-product-stage {
    aspect-ratio: 1.35;
  }

  .explorer-product-image {
    object-position: center top;
  }

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

  .engine-sequence span {
    justify-content: center;
    font-size: 6.5px;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
  }

  .engine-canvas {
    min-height: 560px;
  }

  .engine-core {
    grid-template-columns: 38px repeat(3, minmax(0, 1fr));
  }

  .engine-core > span {
    grid-row: 3;
    min-width: 0;
    font-size: 6.5px;
    white-space: nowrap;
  }

  .engine-node small,
  .engine-approval span,
  .engine-output small {
    font-size: 6.5px;
  }

  .engine-node b,
  .engine-approval b,
  .engine-output b {
    font-size: 9px;
  }

  .engine-approval small {
    font-size: 7px;
  }

  .product-proof {
    min-height: 28px;
    flex-basis: 28px;
    font-size: 6.5px;
  }

  .standalone-shot {
    aspect-ratio: 1120 / 600;
  }

  .partner-shot {
    aspect-ratio: 978 / 507;
  }

  .surface-card--wide {
    min-height: 610px;
  }

  .surface-desktop {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    height: clamp(252px, 77vw, 300px);
  }

  .surface-tablet {
    right: 12px;
    bottom: 16px;
    left: 12px;
    width: auto;
    height: clamp(200px, 55vw, 220px);
    transform: none;
  }

  .surface-card--tablet {
    min-height: 520px;
  }

  .surface-card--mobile {
    min-height: 630px;
  }

  .surface-phones {
    right: 10px;
    bottom: 12px;
    left: 10px;
  }

  .surface-phone-pair {
    gap: 9px;
  }

  .surface-phone {
    width: 148px;
    height: 312px;
  }

  .surface-phone--back {
    width: 134px;
    height: 288px;
    transform: translateY(10px) rotate(-5deg);
  }

  .surface-proof {
    min-height: 25px;
    flex-basis: 25px;
  }

  .ask-conversation {
    height: 410px;
  }

  .leader-card {
    min-height: 0;
    padding: 28px;
  }

  .leader-card h3 {
    margin-top: 26px;
  }

  .leader-role {
    min-height: 0;
    margin-bottom: 18px;
    font-size: 9px;
  }

  .leader-card > p:last-child {
    font-size: 12px;
    line-height: 1.7;
  }

  .footer-links {
    margin-top: 46px;
    margin-bottom: 44px;
  }

  .footer-bottom {
    gap: 18px;
    font-size: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .explorer-visual.is-loading .explorer-product-stage::after {
    animation: none;
  }
}

/* --------------------------------------------------------------------------
   V11 product-proof pass. The hero is intentionally not addressed here.
   -------------------------------------------------------------------------- */

.explorer-product-stage {
  aspect-ratio: 1440 / 1000;
  width: 100%;
}

.explorer-product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.marketing-offer--standalone {
  min-height: 680px;
}

.standalone-shot {
  aspect-ratio: 1440 / 1042;
  background: #eef3f8;
}

.standalone-shot > img {
  width: 100%;
  height: auto;
  flex: 1 1 auto;
  object-fit: contain;
  object-position: center top;
}

.marketing-offer--partner {
  min-height: 690px;
  grid-template-columns: 1.12fr .88fr;
}

.partner-product-composite {
  position: relative;
  display: block;
  height: 610px;
  padding-bottom: 32px;
  aspect-ratio: auto;
  overflow: hidden;
  background: #eef3f8;
}

.partner-product-composite .partner-primary-shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.partner-product-composite .partner-domain-shot {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 52px;
  width: min(43%, 300px);
  height: auto;
  border: 1px solid rgba(15, 23, 42, .16);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 65px rgba(15, 23, 42, .2);
}

.partner-product-composite .product-proof {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
}

.system-section {
  padding-top: 86px;
  padding-bottom: 92px;
}

.system-intro {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .65fr);
  gap: 64px;
}

.system-intro h2 {
  max-width: 900px;
  font-size: clamp(42px, 4.6vw, 66px);
}

.context-flow {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.context-rail {
  right: 8%;
  left: 8%;
}

.context-flow article {
  gap: 10px 12px;
}

.context-flow b {
  max-width: 180px;
  font-size: 17px;
  line-height: 1.15;
}

.surface-card--wide {
  min-height: 820px;
  background: linear-gradient(140deg, #f8fbff 0%, #edf5ff 100%);
}

.surface-card--wide .surface-copy {
  max-width: 520px;
}

.surface-card--wide .surface-copy h3 {
  font-size: clamp(37px, 3.5vw, 52px);
}

.surface-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}

.surface-proof-list span {
  padding: 7px 9px;
  border: 1px solid rgba(37, 99, 235, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .68);
  color: #1d4ed8;
  font-size: 8px;
}

.map-manager-showcase {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  width: 63%;
  height: 635px;
}

.map-manager-desktop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  width: 100%;
  height: 560px;
  border-radius: 18px;
  transform: perspective(1600px) rotateY(-2deg) rotateX(1deg);
}

.map-manager-desktop > img {
  display: block;
  width: 100%;
  height: calc(100% - 37px);
  object-fit: contain;
  object-position: center;
  background: #f3f6fa;
}

.map-manager-phone {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 0;
  width: 178px;
  height: 384px;
  padding: 7px;
  overflow: hidden;
  border: 2px solid #172033;
  border-radius: 30px;
  background: #111827;
  box-shadow: 0 28px 72px rgba(15, 23, 42, .28);
  transform: rotate(2deg);
}

.map-manager-phone::before {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 50%;
  width: 62px;
  height: 17px;
  border-radius: 999px;
  background: #111827;
  content: "";
  transform: translateX(-50%);
}

.map-manager-phone > img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 23px;
  object-fit: cover;
  object-position: center top;
}

.map-manager-proof {
  position: absolute;
  z-index: 4;
  right: auto;
  bottom: 8px;
  left: 18px;
  width: max-content;
  min-height: 28px;
  padding: 0 11px;
  border: 1px solid rgba(37, 99, 235, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 36px rgba(15, 23, 42, .12);
}

.ask-shell {
  min-height: 760px;
  grid-template-columns: .78fr 1.22fr;
  background:
    radial-gradient(circle at 12% 12%, rgba(37, 99, 235, .2), transparent 32%),
    #071a36;
}

.ask-shell::before {
  display: none;
}

.ask-copy {
  padding: clamp(54px, 5.5vw, 78px);
}

.ask-copy > p {
  max-width: 500px;
  line-height: 1.75;
}

.ask-conversation.command-proof {
  height: 680px;
  margin-right: 34px;
  background: #edf3fa;
}

.command-proof-stage {
  display: flex;
  min-height: 0;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 38%, rgba(37, 99, 235, .11), transparent 42%),
    #edf3fa;
}

.command-workspace-shot,
.command-copilot-shot,
.command-mobile-shot {
  display: block;
  width: auto;
  max-width: 100%;
  height: 100%;
  min-height: 0;
  border: 1px solid rgba(15, 23, 42, .13);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 20px 56px rgba(15, 23, 42, .16);
  object-fit: contain;
  object-position: center top;
}

.command-workspace-shot {
  max-width: 53%;
}

.command-copilot-shot {
  max-width: 42%;
}

.command-mobile-shot {
  display: none;
}

.command-proof .real-ui-caption {
  position: static;
  right: auto;
  bottom: auto;
  left: auto;
  min-height: 42px;
  flex: 0 0 42px;
  border-top: 1px solid rgba(37, 99, 235, .12);
  border-radius: 0;
}

@media (max-width: 1100px) {
  .marketing-offer--standalone,
  .marketing-offer--partner {
    grid-template-columns: 1fr;
  }

  .standalone-shot,
  .partner-product-composite {
    margin: 0 28px 28px;
  }

  .partner-product-composite {
    height: min(660px, 68vw);
  }

  .system-intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .context-flow {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
  }

  .map-manager-showcase {
    right: 18px;
    left: 38%;
    width: auto;
  }

  .ask-shell {
    grid-template-columns: 1fr;
  }

  .ask-copy {
    padding-bottom: 34px;
  }

  .ask-conversation.command-proof {
    height: 650px;
    margin: 0 34px 34px;
  }
}

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

  .trailer-section .section-heading--split {
    margin-bottom: 24px;
  }

  .trailer-stage {
    aspect-ratio: 16 / 9;
    border-radius: 16px;
  }

  .trailer-stage video {
    object-fit: contain;
  }

  .trailer-kicker {
    top: 13px;
    left: 14px;
    font-size: 6px;
  }

  .trailer-foot {
    display: none;
  }

  .trailer-play {
    min-width: 154px;
    grid-template-columns: 40px auto;
    column-gap: 11px;
    padding: 7px 13px 7px 7px;
  }

  .trailer-play i {
    width: 40px;
    height: 40px;
    font-size: 11px;
  }

  .trailer-play b {
    font-size: 10px;
  }

  .trailer-play small {
    font-size: 7px;
  }

  .explorer-product-stage {
    width: min(100%, 430px);
    max-height: 660px;
    margin-inline: auto;
    aspect-ratio: 430 / 932;
  }

  .explorer-product-image {
    object-fit: contain;
  }

  .partner-product-composite {
    display: flex;
    height: auto;
    flex-direction: column;
    gap: 0;
    padding: 12px 12px 40px;
  }

  .partner-product-composite .partner-primary-shot {
    height: auto;
  }

  .partner-product-composite .partner-domain-shot {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(82%, 320px);
    margin: -12px 8px 0 auto;
  }

  .system-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .context-flow {
    grid-template-columns: 1fr 1fr;
    gap: 22px 16px;
  }

  .context-rail {
    display: none;
  }

  .context-flow article:last-child {
    grid-column: 1 / -1;
  }

  .surface-card--wide {
    min-height: 0;
  }

  .surface-card--wide .surface-copy {
    max-width: none;
    padding: 34px 30px;
  }

  .surface-card--wide .surface-copy h3 {
    font-size: 38px;
  }

  .map-manager-showcase {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    height: 470px;
    margin: 0 12px 14px;
  }

  .map-manager-desktop {
    top: 0;
    right: 0;
    left: 0;
    width: auto;
    height: 280px;
    opacity: .72;
    transform: none;
  }

  .map-manager-phone {
    right: 50%;
    bottom: 18px;
    width: 176px;
    height: 380px;
    transform: translateX(50%);
  }

  .map-manager-proof {
    bottom: 0;
    left: 10px;
    font-size: 6px;
  }

  .ask-copy {
    padding: 48px 30px 30px;
  }

  .ask-conversation.command-proof {
    width: auto;
    height: 610px;
    margin: 0 14px 14px;
  }

  .command-proof-stage {
    padding: 14px;
  }

  .command-workspace-shot,
  .command-copilot-shot {
    display: none;
  }

  .command-mobile-shot {
    display: block;
    max-width: 100%;
    height: 100%;
  }

  .command-proof .real-ui-caption {
    padding-inline: 10px;
  }

  .command-proof .real-ui-caption b {
    font-size: 6.5px;
  }
}

/* V14 final cascade overrides. */
.explorer-visual--paired .explorer-product-stage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.explorer-visual--paired .explorer-product-image,
.explorer-visual--paired .explorer-product-mobile {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 510px;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(15, 23, 42, .13);
  object-fit: contain;
  object-position: center top;
}

@media (max-width: 760px) {
  .explorer-visual--paired .explorer-product-stage { grid-template-columns: 1fr; }
  .explorer-visual--paired .explorer-product-image,
  .explorer-visual--paired .explorer-product-mobile { width: 100%; height: auto; max-height: none; border-radius: 11px; }
}

/* V15 conversion, proof, and responsive finishing. */
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.demo-form-status {
  min-height: 18px;
  margin: 10px 0;
  color: #b42318;
  font-size: 9px;
  line-height: 1.5;
}

.demo-form button:disabled,
.form-actions button:disabled { cursor: wait; opacity: .64; }

.conversion-receipt {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: -12px 0 22px;
  padding: 7px 10px;
  border: 1px solid rgba(37, 99, 235, .2);
  border-radius: 8px;
  background: #eff6ff;
  color: #1d4ed8;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .05em;
  overflow-wrap: anywhere;
}

.demo-success .button + .button { margin-left: 8px; }

.trust-section { padding-top: 22px; padding-bottom: 145px; }
.trust-heading {
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: clamp(44px, 7vw, 110px);
  align-items: end;
  margin-bottom: 48px;
}
.trust-heading h2 { font-size: clamp(50px, 5.6vw, 82px); }
.trust-heading > p { max-width: 540px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.8; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.trust-grid article { display: grid; min-height: 220px; padding: 26px; grid-template-columns: 24px 1fr; gap: 12px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, .54); }
.trust-grid article > span { color: #2563eb; font: 500 8px/1.4 var(--mono); }
.trust-grid b { display: block; margin-bottom: 12px; font: 600 18px/1.2 var(--serif); letter-spacing: -.025em; }
.trust-grid p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.75; }
.trust-footnote { margin: 18px 0 0; color: #697385; font: 500 8px/1.65 var(--mono); letter-spacing: .035em; }

@media (max-width: 960px) {
  .trust-heading { grid-template-columns: 1fr; gap: 24px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .trust-section { padding-top: 8px; padding-bottom: 88px; }
  .trust-heading { margin-bottom: 28px; }
  .trust-heading h2 { font-size: clamp(43px, 13.4vw, 59px); }
  .trust-heading > p { font-size: 12px; line-height: 1.7; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid article { min-height: 0; padding: 21px 20px; }
  .trust-grid b { font-size: 17px; }
  .trust-footnote { margin-top: 14px; }
  .trailer-section { padding-top: 82px; padding-bottom: 82px; }
  .platform-section,
  .everywhere-section { padding-top: 82px; padding-bottom: 88px; }
  .system-section { padding-top: 82px; padding-bottom: 86px; }
  .ask-section { padding-bottom: 88px; }
  .leadership-section { padding-bottom: 88px; }
  .leader-card { min-height: 0; padding: 26px; }
  .leader-card h3 { margin-top: 24px; }
  .leader-role { min-height: 0; margin-bottom: 17px; }
  .cta-section { min-height: 570px; padding-top: 64px; padding-bottom: 64px; }
  .site-footer { padding-top: 44px; }
  .demo-form { padding: 42px 24px 28px; }
  .demo-form-fields { grid-template-columns: 1fr; }
  .demo-success { padding: 46px 26px; }
  .demo-success .button { width: 100%; }
  .demo-success .button + .button { margin-top: 8px; margin-left: 0; }
}

/* V14 conversion, authentic capability proof, and launch-readiness pass. */
.text-link--blue { color: var(--violet-deep); }

.button--blue {
  border-color: rgba(37, 99, 235, .2);
  background: #eff6ff;
  color: #1d4ed8;
}

.button--blue:hover {
  border-color: #2563eb;
  background: #dbeafe;
}

.nav-actions { gap: 17px; }

.explorer-visual--paired .explorer-product-stage {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.explorer-visual--paired .explorer-product-image,
.explorer-visual--paired .explorer-product-mobile {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 510px;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(15, 23, 42, .13);
  object-fit: contain;
  object-position: center top;
}

.demo-modal {
  width: min(1120px, calc(100% - 36px));
  max-height: calc(100vh - 36px);
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 28px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 40px 120px rgba(3, 13, 31, .36);
}

.demo-modal::backdrop {
  background: rgba(4, 12, 27, .76);
  backdrop-filter: blur(13px);
}

.demo-modal[open] { animation: modal-in .38s var(--ease); }

.demo-shell {
  position: relative;
  display: grid;
  min-height: 680px;
  grid-template-columns: .82fr 1.18fr;
}

.demo-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(15, 23, 42, .14);
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  color: #334155;
  font-size: 21px;
  cursor: pointer;
}

.demo-intro {
  padding: 64px 48px;
  overflow: hidden;
  background: radial-gradient(circle at 80% 18%, rgba(96, 165, 250, .34), transparent 35%), linear-gradient(150deg, #071a36, #123868);
  color: #fff;
}

.demo-intro > img { width: 42px; height: 42px; margin-bottom: 56px; }
.demo-intro .eyebrow { color: rgba(255, 255, 255, .62); }
.demo-intro h2 { font-size: clamp(48px, 5.6vw, 72px); line-height: .94; }
.demo-intro h2 em { color: #93c5fd; }
.demo-intro > p:not(.eyebrow) { margin: 26px 0 0; color: rgba(255, 255, 255, .72); font-size: 13px; line-height: 1.75; }
.demo-signals { display: grid; gap: 12px; margin-top: 42px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); }
.demo-signals span { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.82); font-size: 10px; }
.demo-signals span::before { width: 6px; height: 6px; border-radius: 50%; background: #60a5fa; content: ""; box-shadow: 0 0 0 5px rgba(96,165,250,.14); }

.demo-form { padding: 58px 52px 40px; }
.demo-form-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.demo-form label { display: grid; gap: 8px; color: #3f4855; font-size: 10px; font-weight: 700; }
.demo-form input,
.demo-form select,
.demo-form textarea { width: 100%; min-height: 49px; padding: 0 14px; border: 1px solid rgba(15, 23, 42, .14); border-radius: 11px; background: #fff; color: var(--ink); outline: 0; }
.demo-form textarea { min-height: 104px; padding-top: 13px; resize: vertical; }
.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus { border-color: #2563eb; box-shadow: 0 0 0 4px rgba(37,99,235,.1); }
.demo-notes { grid-column: 1 / -1; }
.demo-privacy { margin: 17px 0; color: #707784; font-size: 8px; line-height: 1.6; }
.demo-form > .button { width: 100%; }

.demo-success {
  display: grid;
  padding: 72px 62px;
  align-content: center;
  outline: 0;
}

.demo-success > span { display: grid; width: 48px; height: 48px; margin-bottom: 28px; place-items: center; border-radius: 50%; background: #dbeafe; color: #1d4ed8; font-size: 20px; }
.demo-success h2 { font-size: clamp(46px, 5.2vw, 68px); }
.demo-success > p:not(.eyebrow) { max-width: 540px; margin: 26px 0 32px; color: var(--muted); font-size: 12px; line-height: 1.75; }
.demo-success .button { width: max-content; }

@media (max-width: 1180px) {
  .site-nav { gap: 20px; }
  .nav-actions { gap: 13px; }
}

@media (max-width: 960px) {
  .nav-mobile-actions { grid-template-columns: 1fr 1fr; }
  .nav-mobile-actions .button:last-child { grid-column: 1 / -1; }
  .demo-shell { grid-template-columns: 1fr; }
  .demo-intro { padding: 48px 42px; }
  .demo-intro > img { margin-bottom: 34px; }
  .demo-intro h2 { font-size: 54px; }
  .demo-signals { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  .explorer-visual--paired .explorer-product-stage { display: grid; grid-template-columns: 1fr; }
  .explorer-visual--paired .explorer-product-image,
  .explorer-visual--paired .explorer-product-mobile { width: 100%; height: auto; max-height: none; border-radius: 11px; }
  .demo-modal { width: calc(100% - 14px); max-height: calc(100vh - 14px); border-radius: 20px; }
  .demo-intro { padding: 44px 25px 36px; }
  .demo-intro h2 { font-size: 44px; }
  .demo-intro > p:not(.eyebrow) { font-size: 11px; }
  .demo-signals { grid-template-columns: 1fr; margin-top: 28px; }
  .demo-form { padding: 36px 22px 28px; }
  .demo-form-fields { grid-template-columns: 1fr; }
  .demo-success { padding: 54px 27px; }
  .demo-success h2 { font-size: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  .demo-modal[open] { animation: none; }
}

/* --------------------------------------------------------------------------
   V13 visual-fidelity pass. Hero, Team Performance, and Rep View are locked.
   Product proof now uses complete authentic views with no destructive overlap.
   -------------------------------------------------------------------------- */

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

.explorer-copy {
  max-width: none;
  padding: 52px 54px 42px;
  border-right: 0;
  border-bottom: 1px solid var(--line);
}

.explorer-copy h3,
.explorer-copy > p:not(.panel-label) {
  max-width: 900px;
}

.explorer-visual {
  align-self: stretch;
  margin: 24px;
}

.explorer-product-stage {
  display: grid;
  width: 100%;
  min-height: 540px;
  padding: 18px;
  grid-template-columns: minmax(0, 1fr) 196px;
  gap: 18px;
  place-items: center;
  aspect-ratio: auto;
  background: linear-gradient(145deg, #f8fbff, #eaf1fa);
}

.explorer-product-image {
  width: 100%;
  height: auto;
  max-height: 504px;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(15, 23, 42, .13);
  object-fit: contain;
  object-position: center;
}

.explorer-product-mobile {
  display: block;
  width: 196px;
  height: 425px;
  border: 2px solid #172033;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(15, 23, 42, .2);
  object-fit: cover;
  object-position: center top;
}

.explorer-visual.is-loading .explorer-product-mobile {
  opacity: .58;
}

.standalone-shot {
  min-height: 0;
  aspect-ratio: 1120 / 560;
}

.standalone-shot > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.partner-product-composite {
  display: grid;
  height: auto;
  min-height: 430px;
  padding: 18px 18px 48px;
  grid-template-columns: minmax(0, 1fr) minmax(230px, .48fr);
  gap: 16px;
  align-items: center;
}

.partner-product-composite .partner-primary-shot {
  position: static;
  width: 100%;
  height: auto;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 14px;
  box-shadow: 0 20px 52px rgba(15, 23, 42, .12);
  object-fit: contain;
}

.partner-product-composite .partner-domain-shot {
  position: static;
  width: 100%;
  max-width: 330px;
  height: auto;
  margin: 0 auto;
  box-shadow: 0 20px 52px rgba(15, 23, 42, .12);
}

.surface-card--wide {
  display: grid;
  min-height: 0;
  grid-template-columns: 1fr;
}

.surface-card--wide .surface-copy {
  max-width: 900px;
  padding-bottom: 34px;
}

.map-manager-showcase {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  display: grid;
  width: auto;
  height: auto;
  min-height: 0;
  margin: 0 24px 24px;
  padding: 0 0 46px;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: center;
}

.map-manager-desktop {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: 100%;
  height: auto;
  border-radius: 18px;
  transform: none;
}

.map-manager-desktop > img {
  display: block;
  width: 100%;
  height: auto;
  background: #f3f6fa;
  object-fit: contain;
  object-position: center;
}

.map-manager-phone {
  position: relative;
  right: auto;
  bottom: auto;
  width: 220px;
  height: 476px;
  transform: none;
}

.map-manager-proof {
  right: auto;
  bottom: 9px;
  left: 8px;
}

.ask-shell {
  grid-template-columns: .68fr 1.32fr;
}

.ask-conversation.command-proof {
  height: 650px;
}

.command-proof-stage {
  display: grid;
  padding: 20px;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 18px;
}

.command-workspace-shot {
  width: 100%;
  max-width: none;
  height: auto;
  max-height: 566px;
  object-fit: contain;
}

.command-mobile-shot {
  display: block;
  width: 210px;
  max-width: none;
  height: 455px;
  border: 2px solid #172033;
  border-radius: 28px;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 1100px) {
  .ask-shell {
    grid-template-columns: 1fr;
  }

  .ask-conversation.command-proof {
    height: 650px;
  }
}

@media (max-width: 760px) {
  .explorer-copy {
    padding: 42px 25px;
  }

  .explorer-visual {
    margin: 14px 10px 0;
  }

  .explorer-product-stage {
    display: flex;
    width: 100%;
    min-height: 0;
    max-height: none;
    padding: 14px;
    justify-content: center;
    aspect-ratio: auto;
  }

  .explorer-product-image {
    display: none;
  }

  .explorer-product-mobile {
    width: min(100%, 300px);
    height: auto;
    border-radius: 25px;
  }

  .standalone-shot {
    aspect-ratio: 1120 / 560;
  }

  .partner-product-composite {
    display: grid;
    height: auto;
    min-height: 0;
    padding: 12px 12px 42px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .partner-product-composite .partner-domain-shot {
    position: static;
    width: min(86%, 320px);
    margin: 0 auto;
  }

  .surface-card--wide .surface-copy {
    padding: 34px 30px 28px;
  }

  .map-manager-showcase {
    display: grid;
    width: auto;
    height: auto;
    margin: 0 12px 14px;
    padding-bottom: 42px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .map-manager-desktop {
    position: relative;
    width: 100%;
    height: auto;
    opacity: 1;
  }

  .map-manager-phone {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(62%, 220px);
    height: auto;
    aspect-ratio: 430 / 932;
    margin: 0 auto;
    transform: none;
  }

  .ask-conversation.command-proof {
    height: auto;
    min-height: 590px;
  }

  .command-proof-stage {
    display: flex;
    min-height: 540px;
    padding: 14px;
    justify-content: center;
  }

  .command-workspace-shot {
    display: none;
  }

  .command-mobile-shot {
    display: block;
    width: min(100%, 300px);
    max-width: 100%;
    height: auto;
    border-radius: 25px;
  }
}

/* V14 final cascade overrides. */
.explorer-visual--paired .explorer-product-stage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.explorer-visual--paired .explorer-product-image,
.explorer-visual--paired .explorer-product-mobile {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 510px;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(15, 23, 42, .13);
  object-fit: contain;
  object-position: center top;
}

@media (max-width: 760px) {
  .explorer-visual--paired .explorer-product-stage { grid-template-columns: 1fr; }
  .explorer-visual--paired .explorer-product-image,
  .explorer-visual--paired .explorer-product-mobile { width: 100%; height: auto; max-height: none; border-radius: 11px; }
}
