@font-face {
  font-family: "Sales Geist";
  src: url("./assets/geist-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --navy-950: #020613;
  --navy-900: #081722;
  --navy-850: #071021;
  --navy-800: #0b162b;
  --navy-700: #14233d;
  --cobalt: #075ff2;
  --cobalt-bright: #2e73ff;
  --ice: #f5f8ff;
  --canvas: #f7f9fc;
  --surface: #ffffff;
  --surface-subtle: #f8fafc;
  --surface-strong: #edf2f5;
  --ink: #061521;
  --ink-soft: #1d2c38;
  --muted: #607181;
  --muted-light: #85939f;
  --line: #e5ebf0;
  --line-strong: #d8e1e8;
  --success: #1f7155;
  --success-soft: #e6f2ed;
  --accent-soft: #eef4ff;
  --font: "Sales Geist", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

svg {
  display: block;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
  background: var(--navy-950);
  font-size: 13px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  height: 86px;
  color: #fff;
  background: var(--navy-900);
  box-shadow: 0 10px 28px rgba(6, 21, 33, 0.08);
}

.nav-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(max-content, 1fr) auto minmax(max-content, 1fr);
  align-items: stretch;
  width: min(1480px, calc(100% - 64px));
  height: 100%;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-shell::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 90px;
  height: 1px;
  background: var(--cobalt-bright);
  box-shadow: 0 0 20px rgba(46, 115, 255, 0.36);
  content: "";
}

.brand {
  display: inline-flex;
  align-items: center;
  align-self: center;
  justify-self: start;
  min-width: 0;
}

.brand img {
  display: block;
  width: 172px;
  height: auto;
}

.brand-context {
  display: grid;
  gap: 3px;
  margin-left: 22px;
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
  line-height: 1;
  text-transform: uppercase;
}

.brand-context small {
  color: #718491;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.brand-context strong {
  color: #c1cdd4;
  font-size: 9.5px;
  font-weight: 680;
  letter-spacing: 0.09em;
}

.nav-links {
  display: flex;
  align-items: stretch;
  height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.nav-links a {
  position: relative;
  display: grid;
  grid-template-rows: 1fr 1fr;
  align-items: end;
  min-width: 112px;
  padding: 21px 19px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  color: #c1ccd2;
  font-size: 12px;
  font-weight: 570;
  letter-spacing: -0.01em;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:last-child {
  border-right: 0;
}

.nav-links a span {
  align-self: start;
  color: #607480;
  font-size: 8.5px;
  font-variant-numeric: tabular-nums;
  font-weight: 720;
  letter-spacing: 0.12em;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 18px;
  bottom: -1px;
  left: 18px;
  height: 2px;
  background: var(--cobalt-bright);
  box-shadow: 0 0 16px rgba(46, 115, 255, 0.32);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  content: "";
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
}

.nav-links a:hover span,
.nav-links a:focus-visible span {
  color: #79a5ff;
  transform: translateX(3px);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 14px;
}

.login-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  gap: 12px;
  padding: 0 12px;
  color: #a8b6be;
  font-size: 11px;
  font-weight: 620;
  transition: color 160ms ease;
}

.login-link i {
  color: #6e838f;
  font-size: 14px;
  font-style: normal;
  transition: color 160ms ease, transform 160ms ease;
}

.login-link:hover,
.login-link:focus-visible,
.login-link:hover i,
.login-link:focus-visible i {
  color: #fff;
}

.login-link:hover i,
.login-link:focus-visible i {
  transform: translate(2px, -2px);
}

.nav-cta,
.primary-cta {
  position: relative;
  display: inline-grid;
  grid-template-columns: auto 50px;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 0 100%);
}

.nav-cta {
  min-height: 50px;
  color: var(--navy-900);
  background: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.78), 0 14px 38px rgba(0, 0, 0, 0.13);
  font-size: 11px;
  font-weight: 700;
}

.nav-cta__label {
  display: grid;
  place-items: center;
  padding: 0 18px;
}

.nav-cta i,
.primary-cta > i {
  display: grid;
  place-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  font-style: normal;
  transition: color 190ms ease, background 190ms ease;
}

.nav-cta svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.nav-cta b,
.primary-cta > b {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
  width: 52px;
  background: rgba(255, 255, 255, 0.26);
  filter: blur(12px);
  transform: translateX(-80px) skewX(-18deg);
  transition: transform 480ms cubic-bezier(0.2, 0.8, 0.2, 1);
  content: "";
}

.nav-cta:hover b,
.nav-cta:focus-visible b,
.primary-cta:hover > b,
.primary-cta:focus-visible > b {
  transform: translateX(260px) skewX(-18deg);
}

.nav-cta:hover i,
.nav-cta:focus-visible i {
  color: #fff;
  background: var(--cobalt);
}

.hero {
  --spot-x: 50%;
  --spot-y: 36%;
  position: relative;
  min-height: max(780px, 100svh);
  overflow: hidden;
  isolation: isolate;
  background: var(--canvas);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(6, 21, 33, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 21, 33, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent 0, #000 16%, #000 80%, transparent 100%);
  content: "";
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(620px circle at var(--spot-x) var(--spot-y), rgba(0, 94, 236, 0.07), transparent 70%),
    radial-gradient(900px 520px at 72% 60%, rgba(255, 255, 255, 0.82), transparent 72%);
  pointer-events: none;
  content: "";
}

.hero-field {
  position: absolute;
  inset: 86px 0 40px;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.hero-field::before {
  content: none;
}

.hero-field::after {
  content: none;
}

.hero-shell {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(420px, 0.78fr) minmax(700px, 1.22fr);
  align-items: center;
  width: min(1480px, calc(100% - 64px));
  min-height: max(780px, 100svh);
  gap: clamp(36px, 3.5vw, 64px);
  margin: 0 auto;
  padding: 112px 0 64px;
}

.hero-copy {
  position: relative;
  top: -14px;
  max-width: 560px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 780ms ease 80ms, transform 780ms cubic-bezier(0.2, 0.8, 0.2, 1) 80ms;
}

.is-ready .hero-copy {
  opacity: 1;
  transform: translateY(0);
}

.hero-kicker {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: min(100%, 560px);
  gap: 16px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 710;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-kicker span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 1px 2px rgba(6, 21, 33, 0.025);
}

.hero-kicker i,
.record-status i,
.memory-updated i,
.record-footer i {
  width: 6px;
  height: 6px;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(31, 113, 85, 0.09), 0 0 14px rgba(31, 113, 85, 0.24);
  animation: status-pulse 2.4s ease-in-out infinite;
}

.hero-kicker b {
  color: var(--muted-light);
  font-size: 8px;
  font-variant-numeric: tabular-nums;
}

.hero h1 {
  margin: 0;
  text-wrap: balance;
}

.title-line {
  display: block;
}

.title-line--quiet {
  color: #526675;
  font-size: clamp(48px, 3.8vw, 62px);
  font-weight: 420;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.title-line--loud {
  margin-top: 6px;
  color: var(--ink);
  font-size: clamp(64px, 5.4vw, 92px);
  font-weight: 620;
  line-height: 0.93;
  letter-spacing: -0.055em;
}

.title-line--loud em {
  position: relative;
  color: var(--cobalt);
  font-style: normal;
}

.title-line--loud em::after {
  position: absolute;
  right: 0.06em;
  bottom: 0.03em;
  left: 0.06em;
  height: 2px;
  background: var(--cobalt);
  box-shadow: 0 0 12px rgba(7, 95, 242, 0.22);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 880ms cubic-bezier(0.2, 0.8, 0.2, 1) 620ms;
  content: "";
}

.is-ready .title-line--loud em::after {
  transform: scaleX(1);
}

.hero-description {
  max-width: 510px;
  margin: 29px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 420;
  line-height: 1.56;
  letter-spacing: -0.014em;
}

.hero-actions {
  display: flex;
  align-items: stretch;
  gap: 14px;
  margin-top: 30px;
}

.primary-cta {
  grid-template-columns: auto 58px;
  min-height: 66px;
  color: #fff;
  background: var(--cobalt);
  box-shadow: 0 0 0 1px rgba(7, 95, 242, 0.92), 0 20px 48px rgba(7, 95, 242, 0.2);
}

.primary-cta > span {
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 700;
}

.primary-cta small,
.secondary-cta small {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 8.5px;
  font-weight: 690;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.primary-cta svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 190ms ease;
}

.primary-cta:hover > i,
.primary-cta:focus-visible > i {
  color: #fff;
  background: rgba(0, 0, 0, 0.1);
}

.primary-cta:hover svg,
.primary-cta:focus-visible svg {
  transform: translateX(3px);
}

.secondary-cta {
  display: inline-flex;
  align-items: center;
  min-height: 66px;
  gap: 13px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 1px 2px rgba(6, 21, 33, 0.025);
  font-size: 12px;
  font-weight: 620;
  transition: border-color 180ms ease, background 180ms ease;
}

.secondary-cta:hover,
.secondary-cta:focus-visible {
  border-color: rgba(7, 95, 242, 0.42);
  background: #fff;
}

.secondary-cta small {
  margin-bottom: 5px;
  color: var(--muted-light);
}

.secondary-cta__icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(7, 95, 242, 0.22);
  background: var(--accent-soft);
  border-radius: 50%;
  color: var(--cobalt-bright);
}

.secondary-cta__icon svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.hero-channels {
  display: flex;
  align-items: center;
  width: min(100%, 560px);
  gap: 10px;
  margin-top: 27px;
  color: #748592;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-channels i {
  flex: 1 1 18px;
  height: 1px;
  background: var(--line);
}

.record-stage {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  min-width: 0;
  width: 100%;
  max-width: 790px;
  justify-self: end;
  perspective: 1200px;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 820ms ease 180ms, transform 920ms cubic-bezier(0.2, 0.8, 0.2, 1) 180ms;
}

.is-ready .record-stage {
  opacity: 1;
  transform: translateX(0);
}

.record-stage::before {
  position: absolute;
  inset: 8% 5% -8%;
  z-index: -1;
  background: radial-gradient(closest-side, rgba(7, 95, 242, 0.1), transparent 76%);
  filter: blur(34px);
  content: "";
}

.record-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #738491;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.record-caption--top {
  margin: 0 18px 12px;
}

.live-record {
  position: relative;
  overflow: hidden;
  border: 1px solid #d8e1e8;
  border-radius: 14px;
  color: var(--ink);
  background: var(--surface);
  box-shadow: 0 1px 2px rgba(6, 21, 33, 0.04), 0 18px 50px rgba(6, 21, 33, 0.1), 0 44px 100px rgba(6, 21, 33, 0.06), inset 0 1px rgba(255, 255, 255, 0.8);
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateZ(0);
  transform-style: preserve-3d;
  transition: transform 240ms ease, border-color 180ms ease;
}

.live-record::before {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: linear-gradient(105deg, transparent 25%, rgba(7, 95, 242, 0.025) 45%, transparent 64%);
  transform: translateX(-100%);
  animation: surface-scan 9s ease-in-out infinite 2s;
  pointer-events: none;
  content: "";
}

.live-record:hover,
.live-record:focus-visible {
  border-color: rgba(7, 95, 242, 0.38);
}

.record-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 22px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.record-header p,
.record-header h2 {
  margin: 0;
}

.record-header p {
  color: var(--muted-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.record-header p span {
  color: var(--cobalt);
}

.record-header h2 {
  margin-top: 7px;
  color: var(--ink);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.record-status {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 5px 10px;
  padding: 8px 11px;
  border: 1px solid #cfe0ff;
  border-radius: 9px;
  color: var(--ink-soft);
  background: var(--accent-soft);
  font-size: 10px;
}

.record-status i {
  grid-row: 1 / 3;
  background: var(--cobalt);
  box-shadow: 0 0 0 4px rgba(7, 95, 242, 0.08), 0 0 14px rgba(7, 95, 242, 0.2);
}

.record-status time {
  color: var(--muted);
  font-size: 8px;
  font-variant-numeric: tabular-nums;
}

.record-body {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.9fr 1.02fr;
  min-height: 360px;
  background: var(--surface);
}

.conversation-stream,
.memory-core,
.next-move {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 18px;
}

.conversation-stream,
.memory-core {
  border-right: 1px solid var(--line);
}

.memory-core {
  background: #f8fafe;
}

.record-section-title {
  display: grid;
  gap: 7px;
  min-height: 46px;
}

.record-section-title span {
  color: var(--muted-light);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.record-section-title strong {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 620;
  letter-spacing: -0.02em;
}

.event-list {
  position: relative;
  display: grid;
  gap: 0;
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.event-list::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 14px;
  width: 1px;
  background: linear-gradient(to bottom, var(--cobalt), rgba(7, 95, 242, 0.12));
  content: "";
}

.event {
  position: relative;
  display: grid;
  grid-template-columns: 29px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 68px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 170ms ease;
}

.event:last-child {
  border-bottom: 0;
}

.event:hover {
  transform: translateX(3px);
}

.event-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border: 1px solid #d3e2ff;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--cobalt);
}

.event-icon svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.event > span:nth-child(2) strong,
.event > span:nth-child(2) small {
  display: block;
}

.event > span:nth-child(2) strong {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 610;
}

.event > span:nth-child(2) small {
  margin-top: 5px;
  overflow: hidden;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.event time {
  color: var(--muted-light);
  font-size: 8px;
  font-variant-numeric: tabular-nums;
}

.memory-core__signal {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: 2px;
}

.memory-core__signal i {
  flex: 1;
  background: var(--cobalt);
  box-shadow: 0 0 12px rgba(7, 95, 242, 0.2);
}

.memory-core__signal i:nth-child(2) {
  background: rgba(7, 95, 242, 0.28);
}

.memory-core__signal i:nth-child(3) {
  background: rgba(7, 95, 242, 0.08);
}

.memory-facts {
  display: grid;
  margin: 17px 0 0;
}

.memory-facts div {
  min-height: 68px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.memory-facts dt {
  color: var(--muted-light);
  font-size: 10px;
  font-weight: 710;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.memory-facts dd {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 590;
  line-height: 1.35;
}

.memory-updated {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.35;
}

.memory-updated i {
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
}

.next-move__action {
  position: relative;
  margin-top: 18px;
  padding: 20px 54px 20px 18px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--cobalt);
  box-shadow: 0 14px 34px rgba(7, 95, 242, 0.2);
}

.next-move__action::before {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 42px;
  background: rgba(255, 255, 255, 0.18);
  filter: blur(14px);
  transform: translateX(-70px) skewX(-16deg);
  animation: action-sweep 5.8s ease-in-out infinite 1.5s;
  content: "";
}

.next-move__action span,
.next-move__action strong {
  position: relative;
  display: block;
}

.next-move__action span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.next-move__action strong {
  margin-top: 9px;
  color: #fff;
}

.next-move__action strong small,
.next-move__action strong b {
  display: block;
}

.next-move__action strong small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.next-move__action strong b {
  margin-top: 3px;
  color: #fff;
  font-size: 25px;
  font-weight: 620;
  letter-spacing: -0.045em;
}

.next-move__action > i {
  position: absolute;
  top: 50%;
  right: 14px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 14px;
  font-style: normal;
  transform: translateY(-50%);
}

.automation-state {
  margin-top: 17px;
  padding: 17px 15px;
  border: 1px solid #cfe3da;
  border-radius: 10px;
  background: var(--success-soft);
}

.automation-state span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.automation-state i {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(31, 113, 85, 0.42);
  border-radius: 50%;
  color: var(--success);
  font-size: 10px;
  font-style: normal;
}

.automation-state b {
  color: var(--success);
  font-size: 11px;
  font-weight: 640;
}

.automation-state small {
  display: block;
  margin: 10px 0 0 29px;
  color: #5d756c;
  font-size: 10px;
  line-height: 1.35;
}

.record-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  gap: 20px;
  padding: 0 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--surface-subtle);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.record-footer span:first-child {
  display: flex;
  align-items: center;
  gap: 9px;
}

.record-footer i {
  width: 5px;
  height: 5px;
}

.hero-floor {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  width: min(1480px, calc(100% - 64px));
  height: 40px;
  gap: 16px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  color: var(--muted-light);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-floor i {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--line-strong), transparent);
}

.hero-floor b {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  color: var(--cobalt);
  font-size: 12px;
  animation: scroll-hint 2.3s ease-in-out infinite;
}

.magnetic {
  will-change: transform;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.platform-section {
  position: relative;
  padding: 112px 0 128px;
  color: var(--ink);
  background: var(--surface);
  border-top: 1px solid var(--line);
  scroll-margin-top: 24px;
}

.platform-shell {
  width: min(1480px, calc(100% - 64px));
  margin: 0 auto;
}

.platform-intro {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  column-gap: 24px;
  padding-top: 31px;
  border-top: 1px solid var(--line-strong);
}

.platform-intro::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 96px;
  height: 2px;
  background: var(--cobalt);
  content: "";
}

.platform-index {
  grid-column: 1 / 3;
  align-self: start;
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}

.platform-index span {
  margin-right: 7px;
  color: var(--cobalt);
}

.platform-intro h2 {
  grid-column: 3 / 10;
  max-width: 850px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(58px, 5.35vw, 78px);
  font-weight: 590;
  line-height: 0.94;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.platform-intro h2 span {
  display: block;
  color: #617585;
}

.platform-lede {
  grid-column: 10 / 13;
  max-width: 355px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 420;
  line-height: 1.58;
  letter-spacing: -0.012em;
}

.system-map {
  margin-top: 64px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 2px 6px rgba(6, 21, 33, 0.035), 0 28px 80px rgba(6, 21, 33, 0.08);
}

.system-map__bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 50px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted-light);
  background: var(--surface-subtle);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.system-map__state {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 9px;
  color: var(--ink-soft);
}

.system-map__state i {
  width: 6px;
  height: 6px;
  background: var(--cobalt);
}

.system-map__counts {
  justify-self: end;
}

.system-map__body {
  display: grid;
  grid-template-columns: 29% 42% 29%;
  min-height: 570px;
}

.source-system,
.memory-system,
.execution-system {
  min-width: 0;
}

.source-system {
  border-right: 1px solid var(--line);
}

.system-column-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 70px;
  gap: 20px;
  padding: 18px 24px;
}

.system-column-head span,
.execution-label span,
.memory-system__head > span {
  color: var(--muted-light);
  font-size: 9px;
  font-weight: 710;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.system-column-head h3 {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 620;
  letter-spacing: -0.02em;
}

.source-list {
  display: grid;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  height: calc(100% - 70px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.source-row {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 0;
  padding: 20px 24px;
  border-top: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
}

.source-code {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid #d3e2ff;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--cobalt);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.07em;
}

.source-copy strong,
.source-copy small {
  display: block;
  overflow-wrap: anywhere;
}

.source-copy strong {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 640;
}

.source-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.38;
}

.source-row time {
  color: var(--muted-light);
  font-size: 9px;
}

.source-node,
.execution-node {
  position: absolute;
  z-index: 2;
  width: 6px;
  height: 6px;
  background: var(--cobalt);
  transform: translateY(-50%);
}

.source-node {
  top: 50%;
  right: -4px;
}

.memory-system {
  position: relative;
  color: var(--ink);
  background: var(--accent-soft);
}

.memory-system::before,
.memory-system::after { content: none; }

.memory-system__head {
  min-height: 104px;
  padding: 23px 30px;
  color: #fff;
  background: var(--cobalt);
}

.memory-system__head > span {
  color: rgba(255, 255, 255, 0.67);
}

.memory-system__head h3 {
  max-width: 430px;
  margin: 11px 0 0;
  font-size: clamp(28px, 2.75vw, 38px);
  font-weight: 570;
  line-height: 1;
  letter-spacing: -0.045em;
}

.memory-ledger {
  display: grid;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  height: calc(100% - 104px);
  margin: 0;
}

.memory-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: 24px;
  padding: 20px 30px;
  border-bottom: 1px solid #cfdee6;
}

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

.memory-row dt {
  color: var(--muted);
  font-size: 9px;
  font-weight: 710;
  letter-spacing: 0.115em;
  text-transform: uppercase;
}

.memory-row dt span {
  display: inline-block;
  min-width: 25px;
  margin-right: 9px;
  color: var(--cobalt);
  font-variant-numeric: tabular-nums;
}

.memory-row dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 580;
  line-height: 1.4;
}

.execution-system {
  display: grid;
  grid-template-rows: 1fr 1fr;
}

.execution-block {
  position: relative;
  min-width: 0;
  padding: 30px;
  background: var(--surface);
}

.automation-block { border-bottom: 1px solid var(--line); }

.execution-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.execution-label strong {
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 620;
}

.execution-status {
  display: inline-block;
  margin-top: 28px;
  padding: 5px 8px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--muted);
  background: var(--surface-subtle);
  font-size: 8px;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.execution-command {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: clamp(19px, 1.8vw, 26px);
  font-weight: 570;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.execution-command i {
  margin: 0 6px;
  color: var(--cobalt);
  font-style: normal;
}

.execution-detail {
  max-width: 290px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.execution-node {
  top: 50%;
  left: -4px;
}

.direction-block { padding-bottom: 135px; }

.next-command {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 112px;
  padding: 22px 76px 20px 28px;
  color: #fff;
  background: var(--cobalt);
}

.next-command span,
.next-command strong { display: block; }

.next-command span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 710;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.next-command strong {
  margin-top: 7px;
  font-size: 25px;
  font-weight: 590;
  letter-spacing: -0.04em;
}

.next-command > i {
  position: absolute;
  top: 50%;
  right: 24px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  font-style: normal;
  transform: translateY(-50%);
}

#sales-memory,
#automations {
  scroll-margin-top: 24px;
}

:focus-visible {
  outline: 3px solid rgba(7, 95, 242, 0.42);
  outline-offset: 4px;
}

@keyframes status-pulse {
  0%, 100% { opacity: 0.62; }
  50% { opacity: 1; }
}

@keyframes surface-scan {
  0%, 38% { transform: translateX(-100%); }
  70%, 100% { transform: translateX(125%); }
}

@keyframes action-sweep {
  0%, 55% { transform: translateX(-70px) skewX(-16deg); }
  80%, 100% { transform: translateX(280px) skewX(-16deg); }
}


@keyframes scroll-hint {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

@media (max-width: 1320px) {
  .brand-context { display: none; }

  .nav-links a {
    min-width: 98px;
    padding-right: 15px;
    padding-left: 15px;
  }

  .hero-shell {
    grid-template-columns: minmax(380px, 0.78fr) minmax(650px, 1.22fr);
    gap: 32px;
  }

  .title-line--loud {
    font-size: clamp(64px, 5.8vw, 78px);
  }

  .conversation-stream,
  .memory-core,
  .next-move {
    padding-right: 14px;
    padding-left: 14px;
  }

  .event > time { display: none; }

  .next-move__action strong b { font-size: 23px; }
}

@media (max-width: 1180px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .nav-links { display: none; }

  .hero-shell {
    display: block;
    min-height: auto;
    padding-top: 132px;
    padding-bottom: 92px;
  }

  .hero-copy {
    top: 0;
    max-width: 760px;
  }

  .record-stage {
    max-width: 900px;
    margin: 56px auto 0;
  }

  .platform-section { padding: 110px 0 120px; }

  .platform-intro { display: block; }

  .platform-index { margin: 0 0 24px; }

  .platform-intro h2 { max-width: 850px; }

  .platform-lede {
    max-width: 600px;
    margin-top: 28px;
  }

  .system-map { margin-top: 64px; }

  .system-map__body {
    display: block;
    min-height: 0;
  }

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

  .source-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    height: auto;
  }

  .source-row {
    min-height: 104px;
  }

  .source-row:nth-child(odd) { border-right: 1px solid var(--line); }
  .source-node, .execution-node { display: none; }
  .memory-ledger { height: auto; }
  .memory-row { min-height: 92px; }

  .execution-system {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .execution-block { min-height: 300px; }

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

@media (max-width: 900px) {
  .record-stage { max-width: 820px; }

  .record-body {
    grid-template-columns: 1fr 1fr;
    min-height: 0;
  }

  .conversation-stream,
  .memory-core {
    min-height: 330px;
  }

  .memory-core { border-right: 0; }

  .next-move {
    grid-column: 1 / -1;
    min-height: 220px;
    border-top: 1px solid var(--line);
  }

  .next-move__action,
  .automation-state {
    max-width: 560px;
  }
}

@media (max-width: 820px) {
  .source-list { grid-template-columns: 1fr; }

  .source-row {
    min-height: 78px;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .source-row:nth-child(odd) { border-right: 0; }
  .source-row time { display: none; }
  .execution-system { display: block; }

  .execution-block {
    min-height: 230px;
  }

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

@media (min-width: 1181px) and (max-height: 820px) {
  .hero,
  .hero-shell {
    min-height: max(720px, 100svh);
  }

  .hero-shell { padding: 100px 0 52px; }
  .hero-copy { top: -8px; }
  .hero-kicker { margin-bottom: 20px; }
  .hero-description { margin-top: 24px; }
  .hero-actions { margin-top: 24px; }
  .hero-channels { margin-top: 22px; }

  .primary-cta,
  .secondary-cta { min-height: 58px; }

  .record-header { min-height: 70px; }
  .record-body { min-height: 340px; }
  .record-footer { min-height: 40px; }
  .event { min-height: 63px; }

  .memory-facts div {
    min-height: 63px;
    padding: 12px 0;
  }

  .record-caption--top { margin-bottom: 9px; }
}

@media (max-width: 700px) {
  .site-header { height: 78px; }

  .nav-shell {
    width: calc(100% - 24px);
  }

  .brand img { width: 132px; }
  .login-link { display: none; }

  .nav-cta {
    grid-template-columns: auto 40px;
    min-height: 46px;
  }

  .nav-cta__label {
    padding: 0 12px;
    font-size: 10px;
  }

  .hero { min-height: 0; }

  .hero-field { top: 78px; }

  .hero-shell {
    width: calc(100% - 28px);
    padding-top: 112px;
    padding-bottom: 68px;
  }

  .hero-kicker {
    margin-bottom: 24px;
  }

  .title-line--quiet {
    font-size: clamp(38px, 10.5vw, 51px);
  }

  .title-line--loud {
    font-size: clamp(54px, 14.6vw, 72px);
  }

  .hero-description {
    margin-top: 27px;
    font-size: 15px;
    line-height: 1.55;
  }

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

  .primary-cta,
  .secondary-cta {
    width: 100%;
  }

  .secondary-cta { justify-content: flex-start; }

  .hero-channels {
    flex-wrap: wrap;
  }

  .hero-channels i { flex-basis: 8px; }

  .record-stage {
    margin-top: 46px;
  }

  .record-caption { display: none; }

  .record-header {
    min-height: 84px;
    padding: 15px 16px;
  }

  .record-status {
    display: flex;
    gap: 7px;
    padding: 7px 9px;
    white-space: nowrap;
  }

  .record-status i {
    display: block;
    width: 5px;
    height: 5px;
  }

  .record-status time { display: none; }

  .record-body { display: block; }

  .conversation-stream,
  .memory-core,
  .next-move {
    min-height: auto;
    padding: 18px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .event { min-height: 58px; }

  .memory-facts {
    grid-template-columns: 1fr 1fr;
    column-gap: 16px;
  }

  .memory-facts div {
    min-height: 62px;
    padding: 12px 0;
  }

  .memory-facts div:nth-child(3) { grid-column: 1 / -1; }

  .next-move__action { padding: 16px 52px 16px 16px; }
  .automation-state { padding: 14px; }

  .record-footer {
    justify-content: flex-start;
    padding: 0 17px;
  }

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

  .hero-floor { display: none; }

  .platform-section { padding: 72px 0 80px; }
  .platform-shell { width: calc(100% - 24px); }

  .platform-intro h2 {
    font-size: clamp(42px, 12.5vw, 52px);
  }

  .platform-lede { font-size: 15px; }

  .system-map { margin-top: 42px; }

  .system-map__bar {
    grid-template-columns: 1fr auto;
    min-height: 64px;
    padding: 12px 14px;
  }

  .system-map__state { justify-self: end; }
  .system-map__counts { display: none; }

  .system-column-head {
    min-height: 64px;
    padding: 16px;
  }

  .source-list { grid-template-columns: 1fr; }

  .source-row {
    min-height: 76px;
    padding: 16px;
  }

  .source-row:nth-child(odd) { border-right: 0; }

  .memory-system__head { padding: 21px 18px; }
  .memory-system__head h3 { font-size: 28px; }

  .memory-row {
    display: block;
    min-height: 0;
    padding: 14px 16px;
  }

  .memory-row dd { margin-top: 9px; }
  .execution-system { display: block; }

  .execution-block {
    min-height: 230px;
    padding: 24px 18px;
  }

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

  .next-command { padding-left: 18px; }
}

@media (max-width: 420px) {
  .nav-cta__label { font-size: 0; }
  .nav-cta__label::after { font-size: 10px; content: "Sign up"; }

  .hero-kicker b { display: none; }

  .title-line--quiet {
    font-size: clamp(34px, 10vw, 43px);
  }

  .title-line--loud {
    font-size: clamp(49px, 14vw, 60px);
  }

  .hero-channels span:nth-of-type(4),
  .hero-channels span:nth-of-type(5),
  .hero-channels i:nth-of-type(4) {
    display: none;
  }

  .record-header h2 { font-size: 19px; }
}

@supports (sales-command-retired-layout: enabled) {
/* Retired editorial masthead kept inert for clean restoration history. */
.site-header {
  height: 78px;
  box-shadow: 0 8px 24px rgba(6, 21, 33, 0.07);
}

.nav-shell,
.hero-shell,
.platform-shell {
  width: min(1360px, calc(100% - 96px));
}

.brand img { width: 164px; }
.brand-context { display: none; }

.nav-links a {
  min-width: 108px;
  padding: 18px 18px 17px;
  font-size: 12px;
}

.nav-links a span { font-size: 8px; }
.nav-actions { gap: 12px; }
.nav-cta { min-height: 46px; }

.hero {
  min-height: max(900px, 100svh);
  overflow: clip;
  background: #f5f7fa;
}

.hero::before { content: none; }

.hero::after {
  inset: 78px 0 0;
  z-index: 0;
  background:
    radial-gradient(900px 430px at 50% 48%, rgba(7, 95, 242, 0.045), transparent 72%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.48), transparent 34%);
}

.hero-field {
  top: 78px;
  right: auto;
  bottom: 0;
  left: 50%;
  z-index: 0;
  width: min(1360px, calc(100% - 96px));
  border-right: 1px solid rgba(6, 21, 33, 0.035);
  border-left: 1px solid rgba(6, 21, 33, 0.035);
  transform: translateX(-50%);
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: block;
  min-height: max(900px, 100svh);
  padding: 130px 0 64px;
}

.hero-masthead {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(350px, 0.55fr);
  align-items: end;
  gap: clamp(56px, 6vw, 90px);
}

.hero-copy {
  position: relative;
  top: 0;
  max-width: none;
  opacity: 1;
  transform: none;
}

.is-ready .hero-copy {
  opacity: 1;
  transform: translateY(0);
}

.hero-kicker {
  width: auto;
  gap: 0;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.hero-kicker span {
  gap: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-kicker span::before {
  width: 34px;
  height: 1px;
  background: var(--cobalt);
  content: "";
}

.hero-kicker i { display: none; }

.hero h1 {
  padding-bottom: 7px;
  overflow: visible;
}

.title-line--quiet {
  color: var(--ink);
  font-size: clamp(58px, 5.1vw, 76px);
  font-weight: 560;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.title-line--loud {
  margin-top: 4px;
  color: var(--ink);
  font-size: clamp(80px, 7.4vw, 112px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.062em;
}

.title-line--loud em::after {
  right: 0.04em;
  bottom: -0.01em;
  left: 0.04em;
  height: 2px;
  box-shadow: none;
}

.hero-support {
  align-self: end;
  max-width: 430px;
  padding: 7px 0 7px 28px;
  border-left: 1px solid var(--line-strong);
  opacity: 1;
  transform: none;
}

.is-ready .hero-support {
  opacity: 1;
  transform: translateY(0);
}

.hero-description {
  max-width: 400px;
  margin: 0;
  color: #526675;
  font-size: 17px;
  line-height: 1.55;
}

.hero-support .hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 10px;
  margin-top: 26px;
}

.hero-support .primary-cta,
.hero-support .secondary-cta {
  width: 100%;
  min-height: 62px;
}

.hero-support .primary-cta {
  grid-template-columns: minmax(0, 1fr) 56px;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 0 100%);
  box-shadow: 0 14px 32px rgba(7, 95, 242, 0.18);
}

.hero-support .primary-cta > span {
  padding: 0 21px;
  font-size: 14px;
}

.hero-support .secondary-cta {
  justify-content: flex-start;
  min-height: 44px;
  gap: 11px;
  padding: 0 4px;
  border: 0;
  background: transparent;
  box-shadow: none;
  font-size: 12.5px;
}

.hero-support .secondary-cta:hover,
.hero-support .secondary-cta:focus-visible {
  color: var(--cobalt);
  background: transparent;
}

.hero-support .secondary-cta__icon {
  width: 29px;
  height: 29px;
  border-radius: 6px;
}

.hero-channels,
.hero-floor { display: none; }

.record-stage {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 38px 0 0;
  perspective: none;
  opacity: 1;
  transform: none;
}

.is-ready .record-stage {
  opacity: 1;
  transform: translateY(0);
}

.record-stage::before { content: none; }

.record-caption {
  color: #6f8190;
  font-size: 10px;
  letter-spacing: 0.11em;
}

.record-caption--top { margin: 0 0 10px; }

.live-record {
  overflow: hidden;
  border: 1px solid #d8e1e8;
  border-radius: 6px 6px 0 0;
  outline: 0;
  box-shadow: 0 2px 5px rgba(6, 21, 33, 0.04), 0 28px 80px rgba(6, 21, 33, 0.12);
  transform: none !important;
  transform-style: flat;
}

.live-record::before { content: none; }

.record-header {
  min-height: 72px;
  padding: 14px 26px;
}

.record-header p { font-size: 10px; }

.record-header h2 {
  margin-top: 5px;
  font-size: 27px;
}

.record-status {
  border-radius: 5px;
  font-size: 10.5px;
}

.record-body {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 1.18fr 0.94fr;
  min-height: 322px;
  overflow: visible;
  outline: none;
}

.record-body::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 4;
  height: 2px;
  background: linear-gradient(90deg, var(--cobalt) 0 34%, #7faaff 34% 71%, #d4e2ff 71% 100%);
  content: "";
}

.conversation-stream,
.memory-core,
.next-move {
  min-width: 0;
  min-height: 322px;
  padding: 20px 26px;
}

.conversation-stream,
.memory-core { border-right: 1px solid var(--line); }

.memory-core {
  border-bottom: 0;
  background: #f8fafe;
}

.memory-core__signal { display: none; }

.record-section-title {
  gap: 6px;
  min-height: 42px;
}

.record-section-title span {
  font-size: 10px;
  letter-spacing: 0.1em;
}

.record-section-title strong { font-size: 15px; }

.event-list { margin-top: 8px; }

.event {
  min-height: 64px;
  padding: 7px 0;
}

.event > span:nth-child(2) strong { font-size: 12.5px; }
.event > span:nth-child(2) small { font-size: 10.5px; }
.event time { font-size: 9px; }

.memory-facts { margin-top: 10px; }

.memory-facts div {
  min-height: 61px;
  padding: 12px 0;
}

.memory-facts dt { font-size: 10px; }
.memory-facts dd { font-size: 13.5px; }

.memory-updated {
  margin-top: 13px;
  font-size: 10px;
}

.next-move__action {
  margin-top: 13px;
  padding: 17px 54px 17px 18px;
  border-radius: 5px;
  box-shadow: 0 12px 28px rgba(7, 95, 242, 0.17);
}

.next-move__action::before { content: none; }
.next-move__action strong { margin-top: 7px; }
.next-move__action strong b { font-size: 27px; }

.automation-state {
  margin-top: 12px;
  padding: 13px 14px;
  border-radius: 5px;
}

.automation-state small { margin-top: 7px; }

.record-footer {
  min-height: 40px;
  padding: 0 26px;
  font-size: 9px;
}

.event,
.memory-facts div,
.next-move__action,
.automation-state {
  opacity: 1;
  transform: none;
}

.is-ready .event,
.is-ready .memory-facts div,
.is-ready .next-move__action,
.is-ready .automation-state {
  opacity: 1;
  transform: translateY(0);
}

.is-ready .event:nth-child(1) { transition-delay: 520ms; }
.is-ready .event:nth-child(2) { transition-delay: 610ms; }
.is-ready .event:nth-child(3) { transition-delay: 700ms; }
.is-ready .memory-facts div:nth-child(1) { transition-delay: 680ms; }
.is-ready .memory-facts div:nth-child(2) { transition-delay: 760ms; }
.is-ready .memory-facts div:nth-child(3) { transition-delay: 840ms; }
.is-ready .next-move__action { transition-delay: 880ms; }
.is-ready .automation-state { transition-delay: 980ms; }

.platform-section { padding-top: 118px; }

@media (max-width: 1180px) {
  .nav-shell,
  .hero-shell,
  .platform-shell {
    width: calc(100% - 48px);
  }

  .hero {
    min-height: 0;
    overflow: hidden;
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.82) 0%,
        rgba(255, 255, 255, 0.24) 31%,
        rgba(207, 220, 229, 0.20) 100%
      ),
      linear-gradient(150deg, #fcfdfe 0%, #f7f9fb 31%, #eef3f6 67%, #e9eff3 100%);
  }

  .hero::before,
  .hero::after { content: none; }

  .hero-field { width: calc(100% - 48px); }

  .hero-shell {
    min-height: 0;
    padding: 118px 0 72px;
  }

  .hero-masthead {
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
    gap: 46px;
  }

  .title-line--quiet { font-size: clamp(48px, 5.6vw, 66px); }
  .title-line--loud { font-size: clamp(68px, 8.1vw, 94px); }

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

  .hero-support .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-support .secondary-cta { min-height: 52px; }
  .record-stage { margin-top: 40px; }
}

@media (max-width: 980px) {
  .hero-masthead {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
    gap: 34px;
  }

  .record-body {
    grid-template-columns: 1fr 1fr;
    min-height: 0;
  }

  .conversation-stream,
  .memory-core { min-height: 320px; }

  .memory-core { border-right: 0; }

  .next-move {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column: 1 / -1;
    min-height: 218px;
    gap: 0 18px;
    border-top: 1px solid var(--line);
    border-bottom: 0;
  }

  .next-move .record-section-title { grid-column: 1 / -1; }
  .next-move__action,
  .automation-state {
    width: 100%;
    max-width: none;
    align-self: start;
  }

  .automation-state { margin-top: 13px; }
}

@media (max-width: 820px) {
  .hero-masthead { display: block; }

  .hero-support {
    max-width: 680px;
    margin-top: 28px;
    padding: 0;
    border-left: 0;
  }

  .hero-description { max-width: 590px; }

  .hero-support .hero-actions {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .record-stage { margin-top: 42px; }
}

@media (max-width: 700px) {
  .nav-shell,
  .hero-shell,
  .platform-shell {
    width: calc(100% - 24px);
  }

  .brand img { width: 136px; }
  .hero-field { width: calc(100% - 24px); }

  .hero-shell { padding: 108px 0 58px; }

  .hero-kicker {
    margin-bottom: 17px;
    font-size: 8.5px;
    letter-spacing: 0.11em;
  }

  .hero-kicker span::before { width: 22px; }

  .title-line--quiet {
    font-size: clamp(35px, 10.5vw, 44px);
    line-height: 0.96;
  }

  .title-line--loud {
    font-size: clamp(50px, 14.2vw, 62px);
    line-height: 0.92;
  }

  .hero-support { margin-top: 24px; }

  .hero-description {
    max-width: 34ch;
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-support .hero-actions {
    grid-template-columns: 1fr;
    max-width: none;
    gap: 10px;
    margin-top: 24px;
  }

  .hero-support .primary-cta,
  .hero-support .secondary-cta {
    min-height: 60px;
  }

  .hero-support .secondary-cta {
    padding: 0 12px;
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.5);
  }

  .record-stage {
    width: calc(100% + 8px);
    margin: 34px 0 0 -4px;
  }

  .record-caption--top {
    display: flex;
    margin: 0 4px 9px;
  }

  .record-caption--top::after {
    margin-left: auto;
    color: var(--cobalt);
    content: "Swipe workspace  →";
  }

  .live-record { border-radius: 6px; }

  .record-header {
    align-items: center;
    min-height: 78px;
    padding: 13px 16px;
  }

  .record-header h2 { font-size: 21px; }

  .record-status {
    display: flex;
    max-width: 132px;
    gap: 7px;
    padding: 7px 9px;
    overflow: hidden;
    white-space: nowrap;
  }

  .record-status span {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .record-status time { display: none; }

  .record-body {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: calc(100vw - 56px);
    min-height: 338px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .record-body::-webkit-scrollbar { display: none; }
  .record-body::before { content: none; }

  .conversation-stream,
  .memory-core,
  .next-move {
    display: block;
    grid-column: auto;
    min-height: 338px;
    padding: 17px 16px;
    border-top: 0;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    scroll-snap-align: start;
  }

  .event { min-height: 57px; }

  .memory-facts {
    grid-template-columns: 1fr;
    margin-top: 7px;
  }

  .memory-facts div,
  .memory-facts div:nth-child(3) {
    grid-column: auto;
    min-height: 53px;
    padding: 9px 0;
  }

  .memory-updated { margin-top: 10px; }

  .next-move__action {
    margin-top: 10px;
    padding: 16px 52px 16px 16px;
  }

  .automation-state {
    margin-top: 11px;
    padding: 13px;
  }

  .record-footer { display: none; }
  .platform-section { padding-top: 80px; }
}

@media (max-width: 420px) {
  .record-status { max-width: 116px; }
  .record-status span { font-size: 9px; }
}

@media (min-width: 1181px) and (max-height: 820px) {
  .hero,
  .hero-shell { min-height: max(760px, 100svh); }

  .hero-shell { padding: 104px 0 40px; }
  .hero-kicker { margin-bottom: 13px; }
  .title-line--quiet { font-size: clamp(50px, 4.5vw, 62px); }
  .title-line--loud { font-size: clamp(70px, 6.7vw, 92px); }
  .hero-description { font-size: 15.5px; }
  .hero-support .hero-actions { margin-top: 19px; }

  .hero-support .primary-cta,
  .hero-support .secondary-cta { min-height: 56px; }

  .record-stage { margin-top: 22px; }
  .record-header { min-height: 64px; }
  .record-body { min-height: 280px; }

  .conversation-stream,
  .memory-core,
  .next-move {
    min-height: 280px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .event { min-height: 55px; }

  .memory-facts div {
    min-height: 52px;
    padding: 9px 0;
  }

  .memory-updated { margin-top: 8px; }
  .next-move__action { margin-top: 9px; }
  .record-footer { min-height: 36px; }
}

}

/* Refined split hero */
.site-header {
  height: 82px;
  background: #071521;
  box-shadow: 0 10px 30px rgba(6, 21, 33, 0.09);
}

.nav-shell,
.hero-shell,
.platform-shell {
  width: min(1400px, calc(100% - clamp(112px, 9vw, 160px)));
}

.nav-shell {
  grid-template-columns: minmax(max-content, 1fr) auto minmax(max-content, 1fr);
  align-items: center;
}

.brand img { width: 162px; }
.brand-context { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  align-self: center;
  height: 44px;
  gap: 28px;
  border: 0;
  background: transparent;
}

.nav-links::before {
  display: inline-flex;
  align-items: center;
  height: 16px;
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  color: #657985;
  font-size: 8px;
  font-weight: 720;
  letter-spacing: 0.17em;
  content: "Explore";
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 0;
  height: 44px;
  padding: 0;
  border: 0;
  color: #9eadb6;
  font-size: 12.5px;
  font-weight: 570;
  white-space: nowrap;
  transition: color 160ms ease;
}

.nav-links a span { display: none; }

.nav-links a + a::before {
  position: absolute;
  top: 50%;
  left: -17px;
  color: rgba(255, 255, 255, 0.18);
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  content: "/";
  transform: translateY(-50%);
}

.nav-links a::after {
  right: auto;
  bottom: 4px;
  left: 0;
  width: 18px;
  height: 1px;
  background: var(--cobalt-bright);
  box-shadow: none;
  transform: scaleX(0);
  transform-origin: left;
}

.nav-links a:first-of-type { color: #fff; }
.nav-links a:first-of-type::after { transform: scaleX(1); }

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
  background: transparent;
}

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

.nav-actions { gap: 12px; }

.mobile-nav {
  position: relative;
  display: none;
}

.mobile-nav summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  min-height: 44px;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  color: #b9c5cc;
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  font-size: 10px;
  font-weight: 650;
  list-style: none;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.mobile-nav summary::-webkit-details-marker { display: none; }

.mobile-nav summary i {
  color: #78a5ff;
  font-size: 14px;
  font-style: normal;
  transition: transform 180ms ease;
}

.mobile-nav summary:hover,
.mobile-nav summary:focus-visible {
  border-color: rgba(120, 165, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.mobile-nav[open] summary i { transform: rotate(45deg); }

.mobile-nav nav {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 228px;
  overflow: hidden;
  border: 1px solid #d8e1e8;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(6, 21, 33, 0.17);
}

.mobile-nav nav a {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  min-height: 52px;
  padding: 0 16px;
  border-bottom: 1px solid #e7edf1;
  color: #20333f;
  font-size: 13px;
  font-weight: 620;
  transition: color 150ms ease, background 150ms ease;
}

.mobile-nav nav a:last-child { border-bottom: 0; }

.mobile-nav nav a span {
  color: #7d8d98;
  font-size: 8px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.mobile-nav nav a:hover,
.mobile-nav nav a:focus-visible {
  color: var(--cobalt);
  background: #f4f8ff;
}

.login-link {
  min-height: 48px;
  color: #b7c4cc;
  font-size: 12px;
}

.nav-cta {
  grid-template-columns: auto 46px;
  min-height: 48px;
  overflow: hidden;
  border: 1px solid rgba(72, 129, 255, 0.7);
  border-radius: 4px;
  clip-path: none;
  color: #fff;
  background: var(--cobalt);
  box-shadow: 0 10px 28px rgba(0, 94, 236, 0.2);
}

.nav-cta__label {
  min-width: 126px;
  padding: 0 16px;
  font-size: 11px;
}

.nav-cta__label::after { content: none; }

.nav-cta i {
  border-left-color: rgba(255, 255, 255, 0.18);
  background: #064fd0;
}

.nav-cta b { display: none; }

.nav-cta:hover i,
.nav-cta:focus-visible i { background: #0344ba; }

.hero {
  --continuity-duration: 9s;
  --continuity-ease: cubic-bezier(0.45, 0, 0.55, 1);
  --force: 0.24;
  min-height: max(800px, 100svh);
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(
    116deg,
    #fff 0%,
    #f9fbff 34%,
    #f1f6ff 60%,
    #e8f1ff 100%
  );
}

.hero::before {
  position: absolute;
  inset: 82px 0 0;
  z-index: 0;
  opacity: 1;
  background: linear-gradient(
    128deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(255, 255, 255, 0.72) 19%,
    rgba(255, 255, 255, 0.36) 39%,
    rgba(255, 255, 255, 0.09) 58%,
    rgba(255, 255, 255, 0) 76%
  );
  -webkit-mask-image: none;
  mask-image: none;
  pointer-events: none;
  content: "";
}

.hero::after {
  position: absolute;
  inset: 82px 0 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 78%,
    rgba(255, 255, 255, 0.56) 91%,
    rgba(255, 255, 255, 0.98) 100%
  );
  pointer-events: none;
  content: "";
}

.hero-shell {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  min-height: max(800px, 100svh);
  gap: clamp(46px, 3.75vw, 60px);
  padding: 116px 0 54px;
}

.hero-copy {
  top: -4px;
  max-width: 600px;
  padding-left: clamp(18px, 2vw, 28px);
  opacity: 1;
  transform: translateY(0);
  animation: hero-copy-arrive 760ms cubic-bezier(0.2, 0.8, 0.2, 1) 80ms 1 both;
}

.is-ready .hero-copy {
  opacity: 1;
  transform: translateY(0);
}

.hero-kicker {
  width: auto;
  margin-bottom: 22px;
  color: #4d6372;
  font-size: 9.5px;
  font-weight: 760;
  letter-spacing: 0.135em;
}

.hero-kicker span {
  gap: 11px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-kicker i {
  width: 28px;
  height: 2px;
  background: var(--cobalt);
  box-shadow: none;
  animation: none;
}

.hero-command-title {
  max-width: 560px;
  text-wrap: balance;
}

.title-line--quiet,
.title-line--loud {
  color: var(--ink);
  font-size: clamp(56px, 4.7vw, 68px);
  font-weight: 820;
  line-height: 0.88;
  letter-spacing: -0.064em;
  white-space: nowrap;
}

.title-line--loud { margin-top: 5px; }

.title-line--loud + .title-line--loud { margin-top: 4px; }

.title-line--payoff {
  font-size: clamp(64px, 5.25vw, 78px);
  font-weight: 880;
  line-height: 0.86;
  letter-spacing: -0.072em;
}

.title-line--payoff em {
  white-space: nowrap;
}

@media (min-width: 1241px) {
  .hero-command-title { width: calc(100% + 20px); }
}

.title-line--loud em::after { content: none; }

.hero-description {
  max-width: 510px;
  margin-top: 30px;
  color: #344e5e;
  font-size: 17.5px;
  font-weight: 470;
  line-height: 1.52;
  letter-spacing: -0.012em;
}

.hero-actions {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-top: 28px;
}

.primary-cta {
  flex: 0 0 236px;
  grid-template-columns: minmax(0, 1fr) 56px;
  min-height: 64px;
  border: 1px solid rgba(0, 76, 208, 0.5);
  border-radius: 4px;
  clip-path: none;
  box-shadow: 0 14px 34px rgba(7, 95, 242, 0.18);
}

.primary-cta > span {
  padding: 0 14px;
  font-size: 13px;
  white-space: nowrap;
}

.primary-cta small,
.secondary-cta small {
  font-size: 8.5px;
  letter-spacing: 0.09em;
}

.primary-cta > i { background: #064fd0; }
.primary-cta > b { display: none; }

.secondary-cta {
  flex: 1 1 190px;
  max-width: 202px;
  min-height: 64px;
  gap: 11px;
  padding: 0 14px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 1px 2px rgba(6, 21, 33, 0.025);
  font-size: 12px;
}

.secondary-cta__icon {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 4px;
}

.hero-channels {
  width: 100%;
  max-width: 482px;
  gap: 8px;
  margin-top: 25px;
  color: #758592;
  font-size: 7.7px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.hero-channels i {
  min-width: 8px;
  background: #d9e2e9;
}

.record-stage {
  width: 100%;
  max-width: 760px;
  justify-self: end;
  perspective: none;
  opacity: 1;
  transform: translate3d(0, 8px, 0);
  animation: hero-record-arrive 820ms cubic-bezier(0.2, 0.8, 0.2, 1) 160ms 1 both;
}

.is-ready .record-stage {
  opacity: 1;
  transform: translate3d(0, 8px, 0);
}

@keyframes hero-copy-arrive {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
}

@keyframes hero-record-arrive {
  from {
    opacity: 0;
    transform: translate3d(18px, 8px, 0);
  }
}

.record-stage::before {
  content: none;
}

.record-caption {
  justify-content: flex-start;
  gap: 10px;
  color: #718290;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.record-caption::before {
  width: 24px;
  height: 1px;
  background: var(--cobalt);
  content: "";
}

.record-caption--top { margin: 0 2px 10px; }

.live-record {
  overflow: hidden;
  border: 1px solid #d8e1e8;
  border-radius: 9px;
  outline: 0;
  box-shadow:
    0 2px 4px rgba(6, 21, 33, 0.035),
    0 28px 64px rgba(6, 21, 33, 0.11),
    0 24px 88px rgba(7, 95, 242, 0.065);
  transform: none !important;
  transform-style: flat;
}

.live-record::before { content: none; }

.record-header {
  min-height: 76px;
  padding: 15px 20px;
}

.record-header p { font-size: 9.5px; }

.record-header h2 {
  margin-top: 6px;
  font-size: 25px;
}

.record-status {
  border-radius: 6px;
  font-size: 10px;
}

.record-body {
  grid-template-columns: 1.06fr 0.96fr 0.98fr;
  min-height: 360px;
}

.conversation-stream,
.memory-core,
.next-move {
  min-width: 0;
  padding: 19px;
}

.memory-core { background: #f8fafe; }

.record-section-title {
  gap: 6px;
  min-height: 44px;
}

.record-section-title span {
  font-size: 9.5px;
  letter-spacing: 0.1em;
}

.record-section-title strong { font-size: 14.5px; }

.event-list { margin-top: 10px; }

.event {
  min-height: 65px;
  padding: 7px 0;
}

.event > span:nth-child(2) strong { font-size: 12.5px; }
.event > span:nth-child(2) small { font-size: 10px; }
.event time { font-size: 8.5px; }

.memory-facts { margin-top: 11px; }

.memory-facts div {
  min-height: 64px;
  padding: 12px 0;
}

.memory-facts dt { font-size: 9.5px; }
.memory-facts dd { font-size: 13.5px; }

.memory-updated {
  margin-top: 14px;
  font-size: 9px;
}

.next-move__action {
  margin-top: 14px;
  padding: 18px 52px 18px 17px;
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(7, 95, 242, 0.17);
}

.next-move__action::before { content: none; }
.next-move__action strong b { font-size: 27px; }

.automation-state {
  margin-top: 13px;
  padding: 14px;
  border-radius: 6px;
}

.record-footer {
  min-height: 42px;
  padding: 0 20px;
  font-size: 8.5px;
}

.hero-floor { display: none; }

@media (max-width: 1240px) {
  .nav-shell,
  .hero-shell,
  .platform-shell {
    width: calc(100% - 80px);
  }

  .hero {
    min-height: 0;
    overflow: hidden;
    background: linear-gradient(
      180deg,
      #fff 0%,
      #f9fbff 30%,
      #f2f7fd 58%,
      #ebf3fc 78%,
      #fff 100%
    );
  }

  .hero::before,
  .hero::after { content: none; }

  .hero-shell {
    display: block;
    min-height: 0;
    padding: 128px 0 84px;
  }

  .hero-copy {
    top: 0;
    max-width: 760px;
    margin: 0 auto;
    padding-left: 0;
  }

  .hero-command-title { max-width: 760px; }

  .title-line--quiet,
  .title-line--loud {
    font-size: clamp(54px, 6vw, 72px);
  }

  .title-line--payoff {
    font-size: clamp(62px, 6.7vw, 82px);
  }

  .record-stage {
    max-width: 1040px;
    margin: 52px auto 0;
  }

  .is-ready .record-stage { transform: none; }

  .hero-channels { max-width: 520px; }
}

@media (max-width: 1180px) {
  .nav-links { gap: 20px; }
  .nav-links::before { display: none; }
  .nav-links a + a::before { left: -12px; }
  .nav-actions { gap: 8px; }
  .login-link {
    gap: 7px;
    padding: 0 6px;
  }
  .nav-cta__label {
    min-width: 118px;
    padding: 0 14px;
  }
}

@media (max-width: 1060px) {
  .nav-shell { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .mobile-nav { display: block; }
}

@media (max-width: 900px) {
  .nav-shell,
  .hero-shell,
  .platform-shell {
    width: calc(100% - 64px);
  }

  .hero-copy { max-width: 704px; }
  .record-stage { margin-top: 46px; }

  .record-body {
    grid-template-columns: 1fr 1fr;
    min-height: 0;
  }

  .conversation-stream,
  .memory-core { min-height: 326px; }

  .memory-core { border-right: 0; }

  .next-move {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column: 1 / -1;
    min-height: 214px;
    gap: 0 18px;
    border-top: 1px solid var(--line);
  }

  .next-move .record-section-title { grid-column: 1 / -1; }

  .next-move__action,
  .automation-state {
    width: 100%;
    max-width: none;
    align-self: start;
  }

  .automation-state { margin-top: 14px; }
}

@media (max-width: 700px) {
  .site-header { height: 78px; }

  .hero {
    background: linear-gradient(
      180deg,
      #fff 0%,
      #fafcff 28%,
      #f4f8fd 53%,
      #edf4fb 76%,
      #fff 100%
    );
  }

  .nav-shell,
  .hero-shell,
  .platform-shell {
    width: calc(100% - 40px);
  }

  .brand img { width: 136px; }
  .login-link { display: none; }

  .mobile-nav summary {
    width: 42px;
    min-width: 42px;
    min-height: 42px;
    padding: 0;
  }

  .mobile-nav summary span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .nav-cta {
    grid-template-columns: auto 40px;
    min-height: 46px;
  }

  .nav-cta__label {
    min-width: 0;
    padding: 0 12px;
    font-size: 10px;
  }

  .hero-shell { padding: 108px 0 64px; }

  .hero-copy {
    width: 100%;
    max-width: none;
  }

  .hero-kicker {
    margin-bottom: 18px;
    font-size: 8.5px;
  }

  .hero-kicker i { width: 22px; }

  .title-line--quiet {
    font-size: clamp(36px, 10.6vw, 52px);
    line-height: 0.9;
  }

  .title-line--loud {
    margin-top: 4px;
    font-size: clamp(36px, 10.6vw, 52px);
    line-height: 0.9;
  }

  .title-line--payoff {
    font-size: clamp(42px, 12.2vw, 60px);
  }

  .hero-description {
    max-width: 35ch;
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.52;
  }

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

  .primary-cta,
  .secondary-cta {
    width: 100%;
    max-width: none;
    min-height: 60px;
  }

  .primary-cta { grid-template-columns: minmax(0, 1fr) 54px; }
  .secondary-cta { justify-content: flex-start; }
  .hero-channels { display: none; }

  .record-stage {
    width: calc(100% + 20px);
    margin: 36px 0 0 -10px;
    justify-self: auto;
  }

  .record-caption--top {
    display: flex;
    margin-right: 8px;
    margin-left: 8px;
  }

  .record-caption--top::after {
    margin-left: auto;
    color: var(--cobalt);
    content: "Swipe workspace  →";
  }

  .live-record { border-radius: 7px; }

  .record-header {
    min-height: 76px;
    padding: 13px 15px;
  }

  .record-header h2 { font-size: 21px; }

  .record-status {
    display: flex;
    max-width: 128px;
    gap: 7px;
    padding: 7px 9px;
    overflow: hidden;
    white-space: nowrap;
  }

  .record-status span {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .record-status time { display: none; }

  .record-body {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: calc(100vw - 42px);
    min-height: 338px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .record-body::-webkit-scrollbar { display: none; }

  .conversation-stream,
  .memory-core,
  .next-move {
    display: block;
    grid-column: auto;
    min-height: 338px;
    padding: 17px 15px;
    border-top: 0;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    scroll-snap-align: start;
  }

  .event { min-height: 57px; }

  .memory-facts {
    grid-template-columns: 1fr;
    margin-top: 7px;
  }

  .memory-facts div,
  .memory-facts div:nth-child(3) {
    grid-column: auto;
    min-height: 53px;
    padding: 9px 0;
  }

  .memory-updated { margin-top: 10px; }

  .next-move__action {
    margin-top: 10px;
    padding: 16px 52px 16px 16px;
  }

  .automation-state {
    margin-top: 11px;
    padding: 13px;
  }

  .record-footer { display: none; }
}

@media (max-width: 360px) {
  .nav-shell,
  .hero-shell,
  .platform-shell {
    width: calc(100% - 32px);
  }

  .brand img { width: 128px; }

  .nav-cta {
    grid-template-columns: 44px;
    min-width: 44px;
  }

  .nav-cta__label { display: none; }

  .nav-cta i { border-left: 0; }

  .record-status { max-width: 88px; }

  .record-status span { font-size: 0; }

  .record-status span::after {
    font-size: 9px;
    content: "Ready";
  }

  .record-caption--top span { font-size: 0; }

  .record-caption--top span::after {
    font-size: 9px;
    content: "Live workspace";
  }

  .record-caption--top::after { content: "Swipe  →"; }
}

@media (min-width: 1241px) and (max-height: 820px) {
  .hero,
  .hero-shell { min-height: max(740px, 100svh); }

  .hero::after {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 76%,
      rgba(255, 255, 255, 0.62) 90%,
      rgba(255, 255, 255, 0.98) 100%
    );
  }

  .hero-shell { padding: 98px 0 42px; }
  .hero-copy { top: -2px; }
  .hero-kicker { margin-bottom: 17px; }
  .title-line--quiet,
  .title-line--loud { font-size: clamp(54px, 4.45vw, 64px); }
  .title-line--payoff { font-size: clamp(60px, 4.9vw, 70px); }
  .hero-description {
    margin-top: 22px;
    font-size: 15.5px;
  }

  .hero-actions { margin-top: 22px; }

  .primary-cta,
  .secondary-cta { min-height: 58px; }

  .hero-channels { margin-top: 20px; }

  .is-ready .record-stage { transform: translate3d(0, 4px, 0); }
  .record-header { min-height: 68px; }
  .record-body { min-height: 326px; }

  .conversation-stream,
  .memory-core,
  .next-move {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .event { min-height: 57px; }

  .memory-facts div {
    min-height: 54px;
    padding: 9px 0;
  }

  .memory-updated { margin-top: 9px; }
  .next-move__action { margin-top: 10px; }
  .record-footer { min-height: 38px; }
}

/* Directed continuity — one current carries the claim into the product proof. */
.hero-atmosphere,
.hero-particles {
  position: absolute;
  inset: 82px 0 0;
  pointer-events: none;
}

.hero-atmosphere {
  z-index: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 81%,
    rgba(0, 0, 0, 0.76) 89%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 81%,
    rgba(0, 0, 0, 0.76) 89%,
    transparent 100%
  );
}

.hero-particles {
  z-index: 2;
  width: 100%;
  height: calc(100% - 82px);
  opacity: 1;
}

.hero-current {
  position: absolute;
  inset: -12% -10% -15%;
  background:
    radial-gradient(
      ellipse 58% 70% at 79% 42%,
      rgba(7, 95, 242, 0.26) 0%,
      rgba(49, 133, 255, 0.13) 43%,
      rgba(49, 133, 255, 0) 78%
    ),
    radial-gradient(
      ellipse 54% 62% at 24% 77%,
      rgba(58, 142, 255, 0.15) 0%,
      rgba(96, 170, 255, 0.07) 48%,
      rgba(96, 170, 255, 0) 78%
    ),
    linear-gradient(
      118deg,
      rgba(255, 255, 255, 0.22) 0%,
      rgba(111, 179, 255, 0.055) 39%,
      rgba(32, 117, 255, 0.105) 68%,
      rgba(7, 95, 242, 0.035) 100%
    );
  filter: blur(20px);
  opacity: 1;
  transform: none;
  transform-origin: center;
  animation: none;
  will-change: auto;
}

.hero-pressure {
  position: absolute;
  top: -10%;
  left: 0;
  width: 42vw;
  height: 120%;
  background: linear-gradient(
    90deg,
    rgba(7, 95, 242, 0) 0%,
    rgba(69, 149, 255, 0.05) 20%,
    rgba(104, 178, 255, 0.24) 46%,
    rgba(255, 255, 255, 0.30) 53%,
    rgba(26, 116, 255, 0.12) 66%,
    rgba(7, 95, 242, 0) 100%
  );
  filter: blur(16px);
  opacity: 0.96;
  transform: translate3d(-100%, -5%, 0) rotate(-3deg);
  transform-origin: center;
  will-change: transform;
}

.record-stage {
  --force: 0;
  isolation: isolate;
}

.record-stage::before {
  position: absolute;
  inset: 12% 7% -9% -18%;
  z-index: 0;
  border-radius: 44%;
  background: radial-gradient(
    ellipse at 58% 54%,
    rgba(7, 95, 242, 0.145) 0%,
    rgba(58, 141, 255, 0.065) 45%,
    rgba(58, 141, 255, 0) 76%
  );
  filter: blur(24px);
  opacity: calc(0.28 + var(--force) * 0.50);
  transform: translate3d(-3%, 1%, 0) scale(0.96);
  pointer-events: none;
  will-change: opacity;
  content: "";
}

.record-caption,
.live-record {
  position: relative;
  z-index: 1;
}

.live-record::after {
  position: absolute;
  inset: 0;
  z-index: 9;
  border-radius: inherit;
  box-shadow:
    inset 1px 0 rgba(84, 158, 255, 0.42),
    inset 0 1px rgba(124, 186, 255, 0.30),
    inset 14px 12px 30px rgba(7, 95, 242, 0.025);
  opacity: calc(0.28 + var(--force) * 0.42);
  pointer-events: none;
  will-change: opacity;
  content: "";
}

.title-line--loud em {
  text-shadow: none;
}

.primary-cta {
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.22),
    0 15px 36px rgba(7, 95, 242, 0.20);
}

.next-move__action {
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.28),
    0 15px 34px rgba(7, 95, 242, 0.24);
}

.is-ready .title-line--loud em {
  animation: continuity-word-entry 2.45s cubic-bezier(0.22, 0.72, 0.2, 1) 180ms 1 both;
}

.is-ready .primary-cta {
  animation: continuity-cta-entry 2.45s cubic-bezier(0.22, 0.72, 0.2, 1) 180ms 1 both;
}

@keyframes continuity-word-entry {
  0% { text-shadow: 0 0 22px rgba(7, 95, 242, 0.22); }
  26% { text-shadow: 0 0 16px rgba(7, 95, 242, 0.13); }
  52%, 100% { text-shadow: none; }
}

@keyframes continuity-cta-entry {
  0%, 20% {
    box-shadow:
      inset 0 1px rgba(255, 255, 255, 0.18),
      0 14px 34px rgba(7, 95, 242, 0.18);
  }
  50% {
    box-shadow:
      inset 0 1px rgba(255, 255, 255, 0.28),
      0 18px 42px rgba(7, 95, 242, 0.29);
  }
  78%, 100% {
    box-shadow:
      inset 0 1px rgba(255, 255, 255, 0.22),
      0 15px 36px rgba(7, 95, 242, 0.20);
  }
}

@media (max-width: 1240px) {
  .hero-atmosphere,
  .hero-particles { top: 82px; }

  .hero-current {
    inset: -7% -24% -10%;
    background:
      radial-gradient(
        ellipse 72% 62% at 68% 43%,
        rgba(7, 95, 242, 0.22) 0%,
        rgba(56, 141, 255, 0.11) 49%,
        rgba(56, 141, 255, 0) 80%
      ),
      radial-gradient(
        ellipse 68% 58% at 26% 76%,
        rgba(76, 154, 255, 0.13) 0%,
        rgba(112, 184, 255, 0.05) 52%,
        rgba(112, 184, 255, 0) 82%
      ),
      linear-gradient(
        122deg,
        rgba(255, 255, 255, 0.18) 0%,
        rgba(91, 163, 255, 0.07) 48%,
        rgba(21, 107, 246, 0.10) 100%
      );
    filter: blur(20px);
    opacity: 1;
    transform: none;
  }

  .hero-pressure {
    top: -10%;
    left: 0;
    width: 46vw;
    height: 120%;
    background: linear-gradient(90deg, transparent 0%, rgba(100, 176, 255, 0.20) 46%, rgba(255, 255, 255, 0.25) 53%, rgba(28, 117, 255, 0.10) 66%, transparent 100%);
    filter: blur(16px);
    opacity: 0.88;
    transform: translate3d(-100%, -5%, 0) rotate(-3deg);
  }
}

@media (max-width: 700px) {
  .hero-atmosphere,
  .hero-particles { inset: 78px 0 0; }

  .hero-particles {
    height: calc(100% - 78px);
    opacity: 1;
  }

  .hero-current {
    inset: -5% -68% -8%;
    filter: blur(18px);
    opacity: 0.92;
  }

  .hero-pressure {
    top: -8%;
    left: 0;
    width: 65vw;
    height: 116%;
    filter: blur(14px);
    opacity: 0.76;
  }
}

.hero.atmosphere-lite .hero-current {
  filter: blur(16px);
  opacity: 0.78;
}

.hero.atmosphere-lite .hero-pressure {
  filter: blur(12px);
  opacity: 0.66;
}

.hero.atmosphere-lite .record-stage::before {
  filter: blur(12px);
  animation: none;
  opacity: 0.46;
  transform: none;
}

.hero.atmosphere-lite .title-line--loud em,
.hero.atmosphere-lite .primary-cta,
.hero.atmosphere-lite .live-record::after {
  animation: none !important;
}

.hero.atmosphere-static .hero-current {
  animation: none;
  transform: none;
  will-change: auto;
}

.hero.atmosphere-static .hero-pressure { display: none; }

.hero.atmosphere-static .hero-particles {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-copy,
  .record-stage {
    opacity: 1;
    transform: none;
  }

  .hero-current {
    animation: none !important;
    transform: none;
  }

  .hero-pressure { display: none; }

  .record-stage::before {
    animation: none !important;
    opacity: 0.58;
    transform: none;
  }

  .live-record::after {
    animation: none !important;
    opacity: 0.46;
  }

  .title-line--loud em,
  .primary-cta,
  .live-record::after { animation: none !important; }

  .hero-particles { opacity: 0.64; }
}

.hero.atmosphere-paused .hero-current,
.hero.atmosphere-paused .hero-pressure,
.hero.atmosphere-paused .record-stage::before,
.hero.atmosphere-paused .live-record::after,
.hero.atmosphere-paused .title-line--loud em,
.hero.atmosphere-paused .primary-cta {
  animation-play-state: paused;
}

.hero.atmosphere-paused .hero-current {
  will-change: auto;
}

@media (forced-colors: active) {
  .hero-atmosphere,
  .hero-particles { display: none; }

  .record-stage::before,
  .live-record::after { display: none; }
}

/* Platform operating surface — signal becomes memory, then command. */
.platform-os {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: 142px 0 154px;
  border-top: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7faff 0%, #ffffff 17%, #f7f9fc 72%, #ffffff 100%);
}

.platform-os::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 0;
  height: 170px;
  background: linear-gradient(
    180deg,
    rgba(198, 221, 255, 0.52) 0%,
    rgba(229, 240, 255, 0.24) 52%,
    rgba(255, 255, 255, 0) 100%
  );
  content: "";
}

.platform-os__atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.platform-os__atmosphere i,
.platform-os__atmosphere b {
  position: absolute;
  display: block;
  content: "";
}

.platform-os__atmosphere i {
  top: 2%;
  left: -19%;
  width: 148%;
  height: 470px;
  clip-path: polygon(0 44%, 100% 3%, 100% 48%, 0 92%);
  background: linear-gradient(
    90deg,
    rgba(7, 95, 242, 0) 2%,
    rgba(79, 153, 255, 0.055) 25%,
    rgba(7, 95, 242, 0.17) 57%,
    rgba(105, 177, 255, 0.09) 77%,
    rgba(7, 95, 242, 0) 98%
  );
  filter: blur(28px);
  transform: rotate(-3.4deg);
}

.platform-os__atmosphere b {
  top: 36%;
  right: -14%;
  width: 86%;
  height: 470px;
  clip-path: polygon(12% 21%, 100% 0, 89% 69%, 0 100%);
  background: linear-gradient(
    112deg,
    rgba(255, 255, 255, 0) 9%,
    rgba(181, 213, 255, 0.12) 42%,
    rgba(7, 95, 242, 0.07) 65%,
    rgba(255, 255, 255, 0) 92%
  );
  filter: blur(38px);
  opacity: 0.8;
}

.platform-os__shell {
  position: relative;
  z-index: 1;
  width: min(1400px, calc(100% - clamp(80px, 8vw, 132px)));
  margin: 0 auto;
}

.platform-os__intro {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  gap: 0 24px;
}

.platform-os__index {
  grid-column: 1 / 3;
  align-self: start;
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 12px 0 0;
  color: #647987;
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.platform-os__index::before {
  width: 30px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--cobalt);
  content: "";
}

.platform-os__index span { color: var(--cobalt); }

.platform-os__intro h2 {
  grid-column: 3 / 10;
  margin: 0;
  color: var(--ink);
  font-size: clamp(66px, 6.35vw, 94px);
  font-weight: 600;
  line-height: 0.91;
  letter-spacing: -0.067em;
  text-wrap: balance;
}

.platform-os__intro h2 span {
  display: block;
  color: var(--cobalt);
}

.platform-os__brief {
  grid-column: 10 / 13;
  align-self: end;
  padding: 2px 0 4px 22px;
  border-left: 1px solid #cbd8e2;
}

.platform-os__brief > p {
  max-width: 360px;
  margin: 0;
  color: #506573;
  font-size: 15.5px;
  line-height: 1.62;
  letter-spacing: -0.012em;
}

.platform-os__brief > div {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  color: #738593;
  font-size: 8px;
  font-weight: 730;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.platform-os__brief > div i {
  width: 16px;
  height: 1px;
  background: #8bb6ff;
}

.platform-os__record {
  position: relative;
  margin-top: 82px;
  overflow: hidden;
  border: 1px solid #cfdae4;
  border-radius: 8px;
  background: #fff;
  box-shadow:
    0 3px 9px rgba(6, 21, 33, 0.04),
    0 36px 90px rgba(19, 55, 92, 0.13),
    0 14px 46px rgba(7, 95, 242, 0.07);
}

.platform-os__record::before {
  position: absolute;
  top: -1px;
  left: 24.6%;
  z-index: 4;
  width: 44.6%;
  height: 3px;
  background: linear-gradient(90deg, #69a8ff, var(--cobalt) 48%, #69a8ff);
  content: "";
}

.platform-os__identity {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 116px;
  gap: 36px;
  padding: 24px 30px;
  border-bottom: 1px solid #d7e0e8;
  background: rgba(255, 255, 255, 0.96);
}

.platform-os__identity > div:first-child p,
.platform-os__record-state > span,
.platform-os__panel-head > span,
.platform-os__memory-head > p,
.platform-os__appointment > p,
.platform-os__automation-intro > p {
  margin: 0;
  color: #6c7f8c;
  font-size: 10px;
  font-weight: 740;
  letter-spacing: 0.135em;
  text-transform: uppercase;
}

.platform-os__identity > div:first-child p span { color: var(--cobalt); }

.platform-os__identity h3 {
  margin: 9px 0 0;
  color: var(--ink);
  font-size: 34px;
  font-weight: 610;
  line-height: 1;
  letter-spacing: -0.045em;
}

.platform-os__record-state {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 8px 24px;
  min-width: 350px;
  padding-left: 24px;
  border-left: 1px solid #dce4ea;
}

.platform-os__record-state > span {
  grid-column: 1 / -1;
  color: var(--cobalt);
}

.platform-os__record-state p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #445966;
  font-size: 12px;
  font-weight: 560;
}

.platform-os__record-state p i {
  width: 7px;
  height: 7px;
  background: #14a26f;
  box-shadow: 0 0 0 5px rgba(20, 162, 111, 0.09);
}

.platform-os__record-state time {
  justify-self: end;
  color: #82919c;
  font-size: 10px;
  font-weight: 660;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-os__continuity {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.78fr 1.45fr 1fr;
  min-height: 46px;
  border-bottom: 1px solid #d7e0e8;
  color: #70838f;
  background: #f8fafc;
  font-size: 8px;
  font-weight: 740;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.platform-os__continuity span {
  display: flex;
  align-items: center;
  padding: 0 24px;
}

.platform-os__continuity span:nth-of-type(2) {
  justify-content: center;
  color: var(--cobalt);
  border-right: 1px solid #d7e0e8;
  border-left: 1px solid #d7e0e8;
}

.platform-os__continuity span:last-of-type { justify-content: flex-end; }
.platform-os__continuity > i { display: none; }

.platform-os__continuity::after {
  position: absolute;
  bottom: -1px;
  left: -54px;
  width: 54px;
  height: 2px;
  background: linear-gradient(90deg, rgba(7, 95, 242, 0), var(--cobalt));
  opacity: 0;
  transform: translate3d(0, 0, 0);
  content: "";
}

.platform-os__body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.78fr 1.45fr 1fr;
  min-height: 570px;
}

.platform-os__signals,
.platform-os__memory,
.platform-os__direction {
  min-width: 0;
}

.platform-os__signals,
.platform-os__direction {
  padding: 30px;
  background: #fff;
}

.platform-os__signals { border-right: 1px solid #d7e0e8; }
.platform-os__direction { border-left: 1px solid #d7e0e8; }

.platform-os__panel-head h4,
.platform-os__memory-head h4,
.platform-os__automation-intro h4 {
  margin: 9px 0 0;
  color: var(--ink);
  font-weight: 610;
  letter-spacing: -0.035em;
}

.platform-os__panel-head h4 { font-size: 19px; }

.platform-os__signal-list {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.platform-os__signal {
  position: relative;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 112px;
  border-top: 1px solid #dce4ea;
  font-variant-numeric: tabular-nums;
}

.platform-os__signal:last-child { border-bottom: 1px solid #dce4ea; }

.platform-os__signal-code {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #bdd3f8;
  border-radius: 5px;
  color: var(--cobalt);
  background: #eef5ff;
  font-size: 8px;
  font-weight: 780;
  letter-spacing: 0.08em;
}

.platform-os__signal > span:nth-child(2) {
  min-width: 0;
}

.platform-os__signal strong,
.platform-os__signal small {
  display: block;
  overflow-wrap: anywhere;
}

.platform-os__signal strong {
  color: #233946;
  font-size: 13px;
  font-weight: 640;
}

.platform-os__signal small {
  margin-top: 6px;
  color: #697b87;
  font-size: 11px;
  line-height: 1.4;
}

.platform-os__signal time {
  color: #84929d;
  font-size: 9px;
}

.platform-os__packet {
  position: absolute;
  top: 50%;
  right: -43px;
  z-index: 5;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, rgba(7, 95, 242, 0), var(--cobalt) 60%, #8fc1ff);
  opacity: 0;
  transform: translate3d(-36px, -50%, 0) scaleX(0.6);
}

.platform-os__memory {
  position: relative;
  padding: 34px 38px 30px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 43%),
    linear-gradient(155deg, #f4f8ff 0%, #e7f0ff 56%, #f7faff 100%);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.86),
    inset 22px 0 60px rgba(255, 255, 255, 0.22);
}

.platform-os__memory::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--cobalt), #8abaff 62%, transparent);
  content: "";
}

.platform-os__memory::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -32%;
  width: 26%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  opacity: 0;
  transform: skewX(-12deg) translate3d(0, 0, 0);
  pointer-events: none;
  content: "";
}

.platform-os__memory-head > p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--cobalt);
}

.platform-os__memory-head > p span {
  color: #69809a;
  font-size: 8px;
}

.platform-os__memory-head h4 {
  max-width: 520px;
  font-size: clamp(37px, 3.55vw, 51px);
  line-height: 0.98;
  letter-spacing: -0.052em;
}

.platform-os__memory-ledger {
  margin: 50px 0 0;
}

.platform-os__memory-fact {
  display: grid;
  grid-template-columns: minmax(130px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 24px;
  min-height: 102px;
  border-top: 1px solid rgba(81, 112, 145, 0.2);
}

.platform-os__memory-fact:last-child {
  border-bottom: 1px solid rgba(81, 112, 145, 0.2);
}

.platform-os__memory-fact dt {
  color: #60768a;
  font-size: 10px;
  font-weight: 730;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.platform-os__memory-fact dt span {
  display: inline-block;
  min-width: 28px;
  color: var(--cobalt);
}

.platform-os__memory-fact dd {
  margin: 0;
  color: #0e2636;
  font-size: clamp(17px, 1.55vw, 22px);
  font-weight: 610;
  line-height: 1.24;
  letter-spacing: -0.025em;
  overflow-wrap: anywhere;
}

.platform-os__memory-note {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 24px 0 0;
  color: #5f7585;
  font-size: 11px;
  font-weight: 540;
}

.platform-os__memory-note i {
  width: 8px;
  height: 8px;
  background: var(--cobalt);
  box-shadow: 0 0 0 5px rgba(7, 95, 242, 0.09);
}

.platform-os__appointment {
  position: relative;
  min-height: 248px;
  margin-top: 38px;
  padding: 27px 70px 27px 28px;
  overflow: hidden;
  border-radius: 5px;
  color: #fff;
  background: linear-gradient(138deg, #075ff2 0%, #146cff 62%, #0755df 100%);
  box-shadow: 0 20px 42px rgba(7, 95, 242, 0.24);
}

.platform-os__appointment::after {
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -42%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  opacity: 0;
  transform: skewX(-13deg) translate3d(0, 0, 0);
  content: "";
}

.platform-os__appointment > p { color: rgba(255, 255, 255, 0.68); }

.platform-os__appointment > span {
  display: block;
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 680;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.platform-os__appointment > strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(42px, 4.15vw, 58px);
  font-weight: 620;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.platform-os__appointment > small {
  display: inline-block;
  margin-top: 21px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 9px;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-os__appointment > i {
  position: absolute;
  top: 50%;
  right: 24px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  font-style: normal;
  transform: translateY(-50%);
}

.platform-os__reply {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 98px;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid #b8ddcf;
  border-radius: 5px;
  background: #f0faf6;
}

.platform-os__reply > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid #169667;
  color: #14865e;
  font-size: 15px;
}

.platform-os__reply p { margin: 0; }
.platform-os__reply strong,
.platform-os__reply small { display: block; }

.platform-os__reply strong {
  color: #136e50;
  font-size: 13px;
  font-weight: 660;
}

.platform-os__reply small {
  margin-top: 6px;
  color: #57756a;
  font-size: 10.5px;
  line-height: 1.35;
}

.platform-os__automation {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(220px, 0.66fr) minmax(0, 2.34fr);
  min-height: 178px;
  scroll-margin-top: 104px;
  border-top: 1px solid #cedae4;
  background: #f8fafc;
}

.platform-os__automation-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 30px;
  border-right: 1px solid #d7e0e8;
}

.platform-os__automation-intro > p { color: var(--cobalt); }

.platform-os__automation-intro h4 {
  max-width: 240px;
  font-size: 24px;
  line-height: 1.08;
}

.platform-os__sequence {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.platform-os__sequence li {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 28px 24px;
  border-right: 1px solid #d7e0e8;
}

.platform-os__sequence li:last-child { border-right: 0; }

.platform-os__sequence li::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: #8db8ff;
  transform: scaleX(0);
  transform-origin: left;
  content: "";
}

.platform-os__sequence li.is-resolved::before { background: #15996c; }

.platform-os__sequence li > span {
  color: var(--cobalt);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.platform-os__sequence li > strong {
  margin-top: 13px;
  color: #243b48;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.3;
}

.platform-os__sequence li > small {
  margin-top: 7px;
  color: #71828d;
  font-size: 10px;
}

.platform-os__sequence li.is-resolved {
  background: #f0faf6;
}

.platform-os__sequence li.is-resolved > span,
.platform-os__sequence li.is-resolved > strong { color: #167b59; }

.platform-os__record-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  gap: 28px;
  padding: 0 30px;
  border-top: 1px solid #d7e0e8;
  color: #637784;
  background: #fff;
  font-size: 8px;
  font-weight: 720;
  letter-spacing: 0.115em;
  text-transform: uppercase;
}

.platform-os__record-footer strong {
  color: #2e4552;
  font-weight: 730;
}

#sales-memory { scroll-margin-top: 104px; }

.platform-os--motion .platform-os__signal,
.platform-os--motion .platform-os__memory-fact,
.platform-os--motion .platform-os__appointment,
.platform-os--motion .platform-os__reply,
.platform-os--motion .platform-os__sequence li {
  opacity: 0.38;
  transform: translate3d(0, 12px, 0);
}

.platform-os--motion.is-active .platform-os__signal,
.platform-os--motion.is-active .platform-os__memory-fact,
.platform-os--motion.is-active .platform-os__appointment,
.platform-os--motion.is-active .platform-os__reply,
.platform-os--motion.is-active .platform-os__sequence li {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 620ms cubic-bezier(0.22, 0.72, 0.2, 1),
    transform 620ms cubic-bezier(0.22, 0.72, 0.2, 1);
}

.platform-os--motion.is-active .platform-os__signal {
  transition-delay: calc(80ms + var(--signal-order) * 105ms);
}

.platform-os--motion.is-active .platform-os__memory-fact {
  transition-delay: calc(390ms + var(--fact-order) * 105ms);
}

.platform-os--motion.is-active .platform-os__appointment { transition-delay: 730ms; }
.platform-os--motion.is-active .platform-os__reply { transition-delay: 850ms; }

.platform-os--motion.is-active .platform-os__sequence li:nth-child(1) { transition-delay: 900ms; }
.platform-os--motion.is-active .platform-os__sequence li:nth-child(2) { transition-delay: 990ms; }
.platform-os--motion.is-active .platform-os__sequence li:nth-child(3) { transition-delay: 1080ms; }
.platform-os--motion.is-active .platform-os__sequence li:nth-child(4) { transition-delay: 1170ms; }

.platform-os--motion.is-active .platform-os__packet {
  animation: platform-os-packet 7.2s cubic-bezier(0.44, 0.04, 0.56, 0.96) calc(var(--signal-order) * 760ms) infinite;
}

.platform-os--motion.is-active .platform-os__continuity::after {
  animation: platform-os-continuity 7.2s ease-in-out 1.8s infinite;
}

.platform-os--motion.is-active .platform-os__memory::after {
  animation: platform-os-memory-sheen 7.2s ease-in-out 2.25s infinite;
}

.platform-os--motion.is-active .platform-os__appointment::after {
  animation: platform-os-command-sheen 7.2s ease-in-out 2.8s infinite;
}

.platform-os--motion.is-active .platform-os__sequence li::before {
  transform: scaleX(1);
  transition: transform 520ms cubic-bezier(0.22, 0.72, 0.2, 1);
}

.platform-os--motion.is-active .platform-os__sequence li:nth-child(1)::before { transition-delay: 980ms; }
.platform-os--motion.is-active .platform-os__sequence li:nth-child(2)::before { transition-delay: 1080ms; }
.platform-os--motion.is-active .platform-os__sequence li:nth-child(3)::before { transition-delay: 1180ms; }
.platform-os--motion.is-active .platform-os__sequence li:nth-child(4)::before { transition-delay: 1280ms; }

@keyframes platform-os-packet {
  0%, 8% { opacity: 0; transform: translate3d(-36px, -50%, 0) scaleX(0.55); }
  13%, 22% { opacity: 1; }
  29%, 100% { opacity: 0; transform: translate3d(42px, -50%, 0) scaleX(1); }
}

@keyframes platform-os-continuity {
  0%, 8% { opacity: 0; transform: translate3d(0, 0, 0); }
  13%, 33% { opacity: 1; }
  47%, 100% { opacity: 0; transform: translate3d(calc(100vw + 110px), 0, 0); }
}

@keyframes platform-os-memory-sheen {
  0%, 18% { opacity: 0; transform: skewX(-12deg) translate3d(0, 0, 0); }
  24%, 36% { opacity: 0.72; }
  49%, 100% { opacity: 0; transform: skewX(-12deg) translate3d(540%, 0, 0); }
}

@keyframes platform-os-command-sheen {
  0%, 25% { opacity: 0; transform: skewX(-13deg) translate3d(0, 0, 0); }
  31%, 41% { opacity: 1; }
  54%, 100% { opacity: 0; transform: skewX(-13deg) translate3d(610%, 0, 0); }
}

@media (max-width: 1100px) {
  .platform-os { padding: 116px 0 126px; }

  .platform-os__shell { width: calc(100% - 64px); }

  .platform-os__intro {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .platform-os__index {
    grid-column: 1 / -1;
    margin: 0 0 24px;
  }

  .platform-os__intro h2 { grid-column: 1 / 7; }
  .platform-os__brief { grid-column: 7 / 11; }

  .platform-os__body {
    grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.9fr);
    grid-template-areas:
      "signals signals"
      "memory direction";
  }

  .platform-os__signals {
    grid-area: signals;
    border-right: 0;
    border-bottom: 1px solid #d7e0e8;
  }

  .platform-os__signal-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .platform-os__signal {
    min-height: 120px;
    padding: 0 18px;
    border-right: 1px solid #dce4ea;
    border-bottom: 1px solid #dce4ea;
  }

  .platform-os__signal:first-child { padding-left: 0; }
  .platform-os__signal:last-child { padding-right: 0; border-right: 0; }
  .platform-os__packet { display: none; }

  .platform-os__memory { grid-area: memory; }
  .platform-os__direction { grid-area: direction; }

  .platform-os__continuity {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .platform-os__record::before {
    left: 0;
    width: 100%;
  }

  .platform-os__automation {
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .platform-os__sequence li { padding: 25px 16px; }
}

@media (max-width: 820px) {
  .platform-os__shell { width: calc(100% - 48px); }

  .platform-os__intro { display: block; }

  .platform-os__intro h2 {
    max-width: 720px;
    font-size: clamp(52px, 9vw, 72px);
  }

  .platform-os__brief {
    max-width: 620px;
    margin-top: 32px;
  }

  .platform-os__record { margin-top: 58px; }

  .platform-os__identity {
    min-height: 104px;
    padding: 22px 24px;
  }

  .platform-os__record-state { min-width: 310px; }

  .platform-os__body { display: block; }

  .platform-os__signals,
  .platform-os__memory,
  .platform-os__direction { padding: 26px; }

  .platform-os__signals,
  .platform-os__memory { border-bottom: 1px solid #d7e0e8; }

  .platform-os__direction { border-left: 0; }

  .platform-os__memory-head h4 { max-width: 600px; }

  .platform-os__direction {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
    gap: 18px;
  }

  .platform-os__direction .platform-os__panel-head { grid-column: 1 / -1; }
  .platform-os__appointment { margin-top: 12px; }
  .platform-os__reply { align-self: stretch; margin-top: 12px; }

  .platform-os__automation { display: block; }

  .platform-os__automation-intro {
    min-height: 118px;
    border-right: 0;
    border-bottom: 1px solid #d7e0e8;
  }

  .platform-os__automation-intro h4 { max-width: none; }
}

@media (max-width: 700px) {
  .platform-os {
    padding: 88px 0 92px;
    background: linear-gradient(180deg, #f5f9ff 0%, #fff 13%, #f7f9fc 82%, #fff 100%);
  }

  .platform-os__atmosphere i {
    left: -78%;
    width: 260%;
    opacity: 0.68;
  }

  .platform-os__atmosphere b { display: none; }

  .platform-os__shell { width: calc(100% - 32px); }

  .platform-os__index { font-size: 9px; }

  .platform-os__intro h2 {
    font-size: clamp(43px, 13.4vw, 60px);
    line-height: 0.94;
    letter-spacing: -0.058em;
  }

  .platform-os__brief {
    margin-top: 28px;
    padding-left: 16px;
  }

  .platform-os__brief > p { font-size: 15px; }
  .platform-os__brief > div { flex-wrap: wrap; }

  .platform-os__record {
    margin-top: 46px;
    border-radius: 6px;
  }

  .platform-os__identity {
    display: block;
    padding: 21px 18px;
  }

  .platform-os__identity h3 { font-size: 28px; }

  .platform-os__record-state {
    grid-template-columns: minmax(0, 1fr) auto;
    min-width: 0;
    margin-top: 22px;
    padding: 17px 0 0;
    border-top: 1px solid #dce4ea;
    border-left: 0;
  }

  .platform-os__record-state p { font-size: 11px; }

  .platform-os__continuity { display: none; }

  .platform-os__signals,
  .platform-os__memory,
  .platform-os__direction { padding: 22px 18px; }

  .platform-os__signal-list {
    display: block;
    margin-top: 26px;
  }

  .platform-os__signal {
    min-height: 86px;
    padding: 0;
    border-right: 0;
  }

  .platform-os__signal:last-child { border-bottom: 1px solid #dce4ea; }

  .platform-os__memory-head h4 {
    font-size: clamp(34px, 10.8vw, 46px);
  }

  .platform-os__memory-ledger { margin-top: 34px; }

  .platform-os__memory-fact {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 100px;
    padding: 18px 0;
  }

  .platform-os__memory-fact dd { font-size: 18px; }

  .platform-os__direction { display: block; }

  .platform-os__appointment {
    min-height: 228px;
    margin-top: 28px;
  }

  .platform-os__reply { min-height: 88px; margin-top: 12px; }

  .platform-os__automation-intro { padding: 24px 18px; }

  .platform-os__sequence {
    grid-template-columns: 1fr 1fr;
  }

  .platform-os__sequence li {
    min-height: 126px;
    padding: 20px 18px;
    border-bottom: 1px solid #d7e0e8;
  }

  .platform-os__sequence li:nth-child(2) { border-right: 0; }
  .platform-os__sequence li:nth-child(n + 3) { border-bottom: 0; }

  .platform-os__record-footer {
    display: block;
    min-height: 0;
    padding: 16px 18px;
    line-height: 1.6;
  }

  .platform-os__record-footer span { display: block; margin-top: 6px; }
}

@media (max-width: 350px) {
  .platform-os__shell { width: calc(100% - 24px); }
  .platform-os__intro h2 { font-size: 42px; }
  .platform-os__record-state time { display: none; }
  .platform-os__sequence { grid-template-columns: 1fr; }
  .platform-os__sequence li { border-right: 0; border-bottom: 1px solid #d7e0e8 !important; }
  .platform-os__sequence li:last-child { border-bottom: 0 !important; }
}

@media (prefers-reduced-motion: reduce) {
  .platform-os--motion .platform-os__signal,
  .platform-os--motion .platform-os__memory-fact,
  .platform-os--motion .platform-os__appointment,
  .platform-os--motion .platform-os__reply,
  .platform-os--motion .platform-os__sequence li {
    opacity: 1;
    transform: none;
  }

  .platform-os__packet,
  .platform-os__continuity::after,
  .platform-os__memory::after,
  .platform-os__appointment::after { display: none; }
}

@media (forced-colors: active) {
  .platform-os__atmosphere,
  .platform-os__packet,
  .platform-os__continuity::after,
  .platform-os__memory::after,
  .platform-os__appointment::after { display: none; }

  .platform-os__memory,
  .platform-os__appointment,
  .platform-os__reply { background: Canvas; color: CanvasText; }
}

/* Sales Memory — conversation distilled into a durable handoff. */
.platform-os { padding-bottom: 96px; }

.sales-memory-os {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: 118px 0 164px;
  scroll-margin-top: 92px;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 28%, #eef5ff 67%, #fbfdff 91%, #ffffff 100%);
}

@supports not (overflow: clip) {
  .sales-memory-os { overflow: hidden; }
}

.sales-memory-os::before {
  position: absolute;
  top: -188px;
  right: -19%;
  left: -23%;
  z-index: 0;
  height: 640px;
  background: linear-gradient(
    116deg,
    rgba(255, 255, 255, 0.92) 8%,
    rgba(222, 236, 255, 0.42) 36%,
    rgba(63, 137, 255, 0.16) 57%,
    rgba(7, 95, 242, 0.075) 73%,
    rgba(255, 255, 255, 0) 91%
  );
  filter: blur(26px);
  transform: rotate(-5.5deg);
  pointer-events: none;
  content: "";
}

.sm-os__atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.sm-os__atmosphere i,
.sm-os__atmosphere b,
.sm-os__atmosphere span {
  position: absolute;
  display: block;
}

.sm-os__atmosphere i {
  top: 7%;
  left: -16%;
  width: 139%;
  height: 520px;
  clip-path: polygon(0 41%, 100% 5%, 100% 58%, 0 90%);
  background: linear-gradient(
    90deg,
    rgba(7, 95, 242, 0) 0%,
    rgba(87, 160, 255, 0.065) 25%,
    rgba(7, 95, 242, 0.2) 57%,
    rgba(101, 171, 255, 0.1) 78%,
    rgba(7, 95, 242, 0) 100%
  );
  filter: blur(28px);
  transform: rotate(-3deg) translate3d(-2.5%, 0, 0);
}

.sm-os__atmosphere b {
  top: 42%;
  right: -42%;
  width: 126%;
  height: 680px;
  background: linear-gradient(
    122deg,
    rgba(255, 255, 255, 0) 10%,
    rgba(255, 255, 255, 0.82) 42%,
    rgba(184, 216, 255, 0.18) 63%,
    rgba(255, 255, 255, 0) 88%
  );
  filter: blur(44px);
  transform: rotate(4deg);
}

.sm-os__atmosphere span {
  top: 25%;
  left: 36%;
  width: 38%;
  height: 92px;
  background: linear-gradient(
    90deg,
    rgba(7, 95, 242, 0),
    rgba(7, 95, 242, 0.13) 46%,
    rgba(116, 182, 255, 0.06) 72%,
    rgba(7, 95, 242, 0)
  );
  filter: blur(20px);
  transform: rotate(-8deg);
}

.sm-os__shell {
  position: relative;
  z-index: 2;
  width: min(1400px, calc(100% - clamp(80px, 8vw, 132px)));
  margin: 0 auto;
}

.sm-os__intro {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  gap: 0 24px;
}

.sm-os__index {
  grid-column: 1 / 4;
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 28px;
  color: #617684;
  font-size: 10px;
  font-weight: 730;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.sm-os__index::before {
  width: 30px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--cobalt);
  content: "";
}

.sm-os__index span { color: var(--cobalt); }

.sm-os__intro h2 {
  grid-column: 1 / 10;
  margin: 0;
  color: var(--ink);
  font-size: clamp(62px, 5.95vw, 90px);
  font-weight: 590;
  line-height: 0.89;
  letter-spacing: -0.071em;
}

.sm-os__intro h2 span,
.sm-os__intro h2 strong {
  display: block;
  font: inherit;
}

.sm-os__intro h2 strong {
  color: var(--cobalt);
  font-weight: 630;
}

.sm-os__brief {
  grid-column: 10 / 13;
  align-self: end;
  padding: 2px 0 4px 23px;
  border-left: 1px solid #c8d6e1;
}

.sm-os__brief p {
  max-width: 380px;
  margin: 0;
  color: #506572;
  font-size: 15.5px;
  line-height: 1.62;
  letter-spacing: -0.012em;
}

.sm-os__brief strong {
  display: block;
  max-width: 355px;
  margin-top: 24px;
  padding-top: 17px;
  border-top: 1px solid #d4e0e8;
  color: #1d3543;
  font-size: 11px;
  font-weight: 680;
  line-height: 1.5;
}

.sm-os__instrument {
  position: relative;
  margin-top: 82px;
  overflow: hidden;
  border: 1px solid #cad8e4;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow:
    0 3px 10px rgba(6, 21, 33, 0.04),
    0 36px 94px rgba(29, 63, 98, 0.15),
    0 20px 70px rgba(7, 95, 242, 0.08);
}

.sm-os__instrument::before {
  position: absolute;
  top: -1px;
  right: 0;
  z-index: 5;
  width: 58%;
  height: 3px;
  background: linear-gradient(90deg, #8fc0ff, var(--cobalt) 42%, #6eaaff 76%, transparent);
  content: "";
}

.sm-os__identity {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  gap: 36px;
  padding: 24px 32px;
  border-bottom: 1px solid #d3dee7;
  background: rgba(255, 255, 255, 0.96);
}

.sm-os__identity > div:first-child p,
.sm-os__state > span,
.sm-os__panel-head > p,
.sm-os__memory-head > p,
.sm-os__handoff > div > p {
  margin: 0;
  color: #5d707c;
  font-size: 10px;
  font-weight: 740;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sm-os__identity > div:first-child p span,
.sm-os__state > span,
.sm-os__memory-head > p { color: var(--cobalt); }

.sm-os__identity h3 {
  margin: 9px 0 0;
  font-size: 35px;
  font-weight: 620;
  line-height: 1;
  letter-spacing: -0.047em;
}

.sm-os__state {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 9px 24px;
  min-width: 330px;
  padding-left: 26px;
  border-left: 1px solid #d7e1e9;
}

.sm-os__state > span { grid-column: 1 / -1; }

.sm-os__state p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #405663;
  font-size: 12px;
  font-weight: 590;
}

.sm-os__state p i {
  width: 7px;
  height: 7px;
  background: var(--cobalt);
  box-shadow: 0 0 0 5px rgba(7, 95, 242, 0.09);
}

.sm-os__state time {
  justify-self: end;
  color: #60717d;
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.sm-os__body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.sm-os__evidence,
.sm-os__memory { min-width: 0; }

.sm-os__evidence {
  position: relative;
  padding: 38px 36px 34px;
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
}

.sm-os__panel-head h4,
.sm-os__memory-head h4,
.sm-os__handoff h4 {
  margin: 10px 0 0;
  color: var(--ink);
  font-weight: 610;
  letter-spacing: -0.04em;
}

.sm-os__panel-head h4 {
  max-width: 430px;
  font-size: 28px;
  line-height: 1.04;
}

.sm-os__evidence-list {
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.sm-os__evidence-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 164px;
  padding: 26px 5px 26px 0;
  border-top: 1px solid #d8e2e9;
}

.sm-os__evidence-item:last-child { border-bottom: 1px solid #d8e2e9; }

.sm-os__evidence-item > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--cobalt);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.sm-os__evidence-item time {
  color: #60717d;
  font-variant-numeric: tabular-nums;
}

.sm-os__evidence-item blockquote {
  max-width: 530px;
  margin: 20px 0 0;
  color: #2a414e;
  font-size: clamp(21px, 1.8vw, 27px);
  font-weight: 520;
  line-height: 1.34;
  letter-spacing: -0.031em;
}

.sm-os__evidence-item blockquote > span {
  color: #334b58;
  transition: color 700ms ease;
}

.sm-os__evidence-item mark {
  margin: 0 2px;
  padding: 1px 3px 2px;
  color: #0755df;
  background: #e8f1ff;
  box-shadow: 0 0 0 3px #e8f1ff;
  font: inherit;
  font-weight: 650;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.sm-os__packet {
  position: absolute;
  top: 50%;
  right: -46px;
  z-index: 7;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, rgba(7, 95, 242, 0), var(--cobalt) 58%, #8fc2ff);
  opacity: 0;
  transform: translate3d(-24px, -50%, 0) scaleX(0.7);
}

.sm-os__memory {
  position: relative;
  padding: 40px 46px 34px;
  border-left: 1px solid rgba(117, 150, 180, 0.25);
  background:
    linear-gradient(134deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 42%),
    linear-gradient(155deg, #f5f9ff 0%, #e7f0ff 53%, #f6f9ff 100%);
  box-shadow: inset 24px 0 66px rgba(255, 255, 255, 0.28);
}

.sm-os__memory::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -72px;
  z-index: 1;
  width: 142px;
  background: linear-gradient(
    90deg,
    rgba(7, 95, 242, 0),
    rgba(7, 95, 242, 0.115) 48%,
    rgba(117, 181, 255, 0.055) 73%,
    rgba(7, 95, 242, 0)
  );
  filter: blur(14px);
  pointer-events: none;
  content: "";
}

.sm-os__memory::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -28%;
  width: 24%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.74), transparent);
  z-index: 1;
  opacity: 0;
  transform: skewX(-11deg) translate3d(0, 0, 0);
  pointer-events: none;
  content: "";
}

.sm-os__memory > * {
  position: relative;
  z-index: 2;
}

.sm-os__memory-head > p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sm-os__memory-head > p span {
  color: #536f8e;
  font-size: 8px;
}

.sm-os__memory-head h4 {
  max-width: 620px;
  font-size: clamp(40px, 3.65vw, 53px);
  line-height: 0.98;
  letter-spacing: -0.057em;
}

.sm-os__ledger {
  margin: 51px 0 0;
}

.sm-os__fact {
  display: grid;
  grid-template-columns: minmax(150px, 0.64fr) minmax(0, 1.36fr);
  align-items: center;
  gap: 26px;
  min-height: 104px;
  border-top: 1px solid rgba(73, 107, 142, 0.2);
}

.sm-os__fact:first-child { min-height: 136px; }
.sm-os__fact:last-child { border-bottom: 1px solid rgba(73, 107, 142, 0.2); }

.sm-os__fact dt {
  color: #5b7287;
  font-size: 10px;
  font-weight: 740;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}

.sm-os__fact dt span {
  display: inline-block;
  min-width: 31px;
  color: var(--cobalt);
}

.sm-os__fact dd {
  margin: 0;
  color: #0b2536;
  font-size: clamp(20px, 1.85vw, 28px);
  font-weight: 620;
  line-height: 1.2;
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
}

.sm-os__fact:first-child dd {
  font-size: clamp(34px, 3.35vw, 48px);
  letter-spacing: -0.055em;
}

.sm-os__memory-status {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 25px 0 0;
  color: #526b7c;
  font-size: 11px;
  font-weight: 580;
}

.sm-os__memory-status i {
  width: 8px;
  height: 8px;
  background: var(--cobalt);
  box-shadow: 0 0 0 5px rgba(7, 95, 242, 0.09);
}

.sm-os__handoff {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.25fr) minmax(180px, 0.5fr);
  align-items: center;
  gap: 40px;
  min-height: 176px;
  padding: 30px 36px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(118deg, #064bc9 0%, #0758dc 43%, #075fe5 74%, #0644ba 100%);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.19);
}

.sm-os__handoff::after {
  position: absolute;
  top: -45%;
  bottom: -45%;
  left: -26%;
  width: 19%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transform: skewX(-13deg) translate3d(0, 0, 0);
  pointer-events: none;
  content: "";
}

.sm-os__handoff > div > p { color: #fff; }

.sm-os__handoff h4 {
  color: #fff;
  font-size: 31px;
  line-height: 1.03;
}

.sm-os__handoff > p {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.57;
}

.sm-os__handoff > span {
  justify-self: end;
  color: #fff;
  font-size: 9.5px;
  font-weight: 710;
  letter-spacing: 0.11em;
  line-height: 1.5;
  text-align: right;
  text-transform: uppercase;
}

.sm-os__handoff > span i {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-left: 11px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 15px;
  font-style: normal;
}

/* Progressive enhancement: the complete section stays visible without JavaScript. */
.sm-os--motion .sm-os__evidence-item,
.sm-os--motion .sm-os__fact,
.sm-os--motion .sm-os__handoff > * {
  opacity: 0.28;
  transform: translate3d(0, 14px, 0);
}

.sm-os--motion.has-entered .sm-os__evidence-item,
.sm-os--motion.has-entered .sm-os__fact,
.sm-os--motion.has-entered .sm-os__handoff > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 680ms cubic-bezier(0.22, 0.72, 0.2, 1),
    transform 680ms cubic-bezier(0.22, 0.72, 0.2, 1);
}

.sm-os--motion.has-entered .sm-os__evidence-item {
  transition-delay: calc(80ms + var(--memory-order) * 115ms);
}

.sm-os--motion.has-entered .sm-os__evidence-item blockquote > span {
  color: #8796a0;
  transition-delay: calc(390ms + var(--memory-order) * 115ms);
}

.sm-os--motion.has-entered .sm-os__fact {
  transition-delay: calc(450ms + var(--memory-order) * 105ms);
}

.sm-os--motion.has-entered .sm-os__handoff > * { transition-delay: 910ms; }
.sm-os--motion.has-entered .sm-os__handoff > p { transition-delay: 1010ms; }
.sm-os--motion.has-entered .sm-os__handoff > span { transition-delay: 1110ms; }

.sm-os--motion.has-entered .sm-os__packet {
  animation: sm-os-packet 1.5s cubic-bezier(0.42, 0.04, 0.52, 0.96) calc(210ms + var(--memory-order) * 145ms) 1 both;
}

.sm-os--motion.has-entered .sm-os__memory::after {
  animation: sm-os-memory-sheen 1.75s cubic-bezier(0.42, 0.04, 0.52, 0.96) 560ms 1 both;
}

.sm-os--motion.has-entered .sm-os__handoff::after {
  animation: sm-os-handoff-sheen 1.55s cubic-bezier(0.42, 0.04, 0.52, 0.96) 1.02s 1 both;
}

.sm-os--motion.is-in-view .sm-os__atmosphere i {
  animation: sm-os-light-drift 19s cubic-bezier(0.45, 0.04, 0.55, 0.96) infinite alternate;
  will-change: transform;
}

@keyframes sm-os-packet {
  0% { opacity: 0; transform: translate3d(-24px, -50%, 0) scaleX(0.65); }
  18%, 57% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(138px, -50%, 0) scaleX(1); }
}

@keyframes sm-os-memory-sheen {
  0% { opacity: 0; transform: skewX(-11deg) translate3d(0, 0, 0); }
  25%, 61% { opacity: 0.78; }
  100% { opacity: 0; transform: skewX(-11deg) translate3d(560%, 0, 0); }
}

@keyframes sm-os-handoff-sheen {
  0% { opacity: 0; transform: skewX(-13deg) translate3d(0, 0, 0); }
  24%, 58% { opacity: 1; }
  100% { opacity: 0; transform: skewX(-13deg) translate3d(720%, 0, 0); }
}

@keyframes sm-os-light-drift {
  0% { transform: rotate(-3deg) translate3d(-2.5%, 0, 0) scaleY(1); }
  100% { transform: rotate(-3deg) translate3d(3.5%, 2%, 0) scaleY(1.08); }
}

@media (max-width: 1100px) {
  .platform-os { padding-bottom: 88px; }

  .sales-memory-os { padding: 104px 0 136px; }
  .sm-os__shell { width: calc(100% - 64px); }

  .sm-os__intro {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .sm-os__index {
    grid-column: 1 / -1;
    margin-bottom: 25px;
  }

  .sm-os__intro h2 {
    grid-column: 1 / 8;
    font-size: clamp(58px, 7.4vw, 78px);
  }

  .sm-os__brief { grid-column: 8 / 11; }

  .sm-os__body {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  }

  .sm-os__evidence { padding: 34px 28px 30px; }
  .sm-os__memory { padding: 36px 34px 30px; }
  .sm-os__evidence-item { min-height: 154px; }

  .sm-os__fact {
    grid-template-columns: minmax(130px, 0.58fr) minmax(0, 1.42fr);
    gap: 20px;
  }

  .sm-os__handoff {
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.3fr);
  }

  .sm-os__handoff > span {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }
}

/* Conversion rail, contact console, and deliberate mobile workspace carousel. */
.record-carousel-count,
.record-carousel-pagination { display: none; }

.start-rail {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #075ff2;
}

.start-rail::before {
  position: absolute;
  inset: -90% 44% -110% -18%;
  background: linear-gradient(116deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: rotate(-10deg);
  content: "";
}

.start-rail__shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(290px, 0.68fr) 188px;
  align-items: stretch;
  width: min(1320px, calc(100% - clamp(64px, 6vw, 104px)));
  min-height: 126px;
  margin: auto;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.start-rail__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 26px;
}

.start-rail__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 8.5px;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.start-rail__copy p span { color: #fff; }

.start-rail__copy h2 {
  margin: 9px 0 0;
  font-size: clamp(27px, 2.45vw, 38px);
  font-weight: 735;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.start-rail__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.start-rail__proof div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 16px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.start-rail__proof dt {
  color: rgba(255, 255, 255, 0.65);
  font-size: 7.5px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.start-rail__proof dd {
  margin: 7px 0 0;
  color: #fff;
  font-size: 15px;
  font-weight: 730;
  letter-spacing: -0.025em;
}

.start-rail__cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 50px;
  align-items: stretch;
  color: #061522;
  background: #fff;
  text-decoration: none;
  transition: background 160ms ease;
}

.start-rail__cta span,
.start-rail__cta i {
  display: flex;
  align-items: center;
  justify-content: center;
}

.start-rail__cta span { font-size: 14px; font-weight: 760; }
.start-rail__cta i {
  border-left: 1px solid #d4e0e9;
  color: #075ff2;
  font-size: 22px;
  font-style: normal;
}
.start-rail__cta:hover { background: #eef5ff; }
.start-rail__cta:focus-visible { outline: 3px solid #9ec5ff; outline-offset: -5px; }

.contact-os {
  position: relative;
  padding: 54px 0 58px;
  scroll-margin-top: 104px;
  background: linear-gradient(180deg, #fff, #f4f8fc);
}

.contact-os__shell {
  width: min(1320px, calc(100% - clamp(64px, 6vw, 104px)));
  margin: auto;
}

.contact-os__console {
  overflow: hidden;
  border: 1px solid #cbd8e2;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(18, 49, 72, 0.09);
}

.contact-os__console::before {
  display: block;
  width: 28%;
  height: 3px;
  background: #075ff2;
  content: "";
}

.contact-os__rail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 21px;
  border-bottom: 1px solid #d5e0e8;
}

.contact-os__rail p,
.contact-os__rail > span {
  margin: 0;
  color: #607582;
  font-size: 8px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contact-os__rail p span { color: #075ff2; }

.contact-os__body {
  display: grid;
  grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1.28fr);
}

.contact-os__intro {
  padding: 28px 30px;
  border-right: 1px solid #d5e0e8;
  background: linear-gradient(145deg, #fff, #f3f7fb);
}

.contact-os__index {
  margin: 0;
  color: #526a78;
  font-size: 9px;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.contact-os__index span { color: #075ff2; }

.contact-os__intro h2 {
  max-width: 12ch;
  margin: 17px 0 0;
  color: #233a48;
  font-size: clamp(34px, 3.15vw, 46px);
  font-weight: 620;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.contact-os__intro h2 strong {
  display: block;
  color: #075ff2;
  font-weight: 790;
}

.contact-os__intro > p:nth-of-type(2) {
  max-width: 42ch;
  margin: 20px 0 0;
  color: #506571;
  font-size: 13px;
  line-height: 1.52;
}

.contact-os__topics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 22px 0 0;
  border: 1px solid #d2dee7;
}

.contact-os__topics div {
  padding: 10px;
  border-right: 1px solid #d2dee7;
}
.contact-os__topics div:last-child { border: 0; }
.contact-os__topics dt { color: #075ff2; font-size: 7px; font-weight: 800; }
.contact-os__topics dd { margin: 5px 0 0; color: #203645; font-size: 9px; font-weight: 720; }

.contact-os__assurance {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 19px 0 0 !important;
  color: #667b87 !important;
  font-size: 9px !important;
}

.contact-os__assurance i {
  width: 7px;
  height: 7px;
  background: #15996c;
  box-shadow: 0 0 0 4px rgba(21, 153, 108, 0.1);
}

.contact-os__form { position: relative; padding: 25px 28px; }
.contact-os__fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 16px; }
.contact-os__fields label { display: block; }

.contact-os__fields label > span {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
  color: #334d5c;
  font-size: 8px;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-os__fields b { color: #075ff2; }
.contact-os__fields small { color: #70838e; font-size: 7px; }

.contact-os__fields input,
.contact-os__fields textarea {
  width: 100%;
  border: 1px solid #cbd8e2;
  border-radius: 2px;
  color: #071827;
  background: #fbfdff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.contact-os__fields input { height: 45px; padding: 0 12px; }
.contact-os__fields textarea { min-height: 102px; padding: 11px 12px; resize: vertical; }
.contact-os__question { grid-column: 1 / -1; }

.contact-os__fields input:focus,
.contact-os__fields textarea:focus {
  border-color: #075ff2;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(7, 95, 242, 0.12);
}
.contact-os__fields [aria-invalid="true"] { border-color: #bc3e3e; }

.contact-os__trap {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.contact-os__status {
  margin-top: 14px;
  padding: 10px 12px;
  border-left: 3px solid #075ff2;
  color: #274453;
  background: #f2f7ff;
  font-size: 11px;
}
.contact-os__status.is-success { border-color: #15996c; background: #f0faf6; }
.contact-os__status.is-error { border-color: #bc3e3e; background: #fff4f4; }
.contact-os__status a { color: #075ff2; font-weight: 720; text-decoration: underline; }

.contact-os__submit {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  min-height: 52px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #d8e2e9;
}

.contact-os__submit p {
  align-self: center;
  margin: 0 auto 0 0;
  color: #6c808b;
  font-size: 8px;
}
.contact-os__submit p span { color: #075ff2; }

.contact-os__submit button {
  display: grid;
  grid-template-columns: minmax(124px, 1fr) 48px;
  min-width: 188px;
  padding: 0;
  border: 0;
  color: #fff;
  background: #075ff2;
  cursor: pointer;
  font-family: inherit;
}

.contact-os__submit button span,
.contact-os__submit button i {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-os__submit button span { font-size: 12px; font-weight: 760; }
.contact-os__submit button i { height: 100%; border-left: 1px solid rgba(255, 255, 255, 0.28); font-size: 18px; font-style: normal; }
.contact-os__submit button:disabled { cursor: wait; opacity: 0.65; }
.contact-os__submit button:focus-visible { outline: 3px solid rgba(7, 95, 242, 0.25); outline-offset: 3px; }

@media (max-width: 900px) and (min-width: 761px) {
  .start-rail__shell { grid-template-columns: minmax(0, 1fr) minmax(230px, 0.8fr) 160px; }
  .start-rail__copy { padding-right: 18px; padding-left: 18px; }
  .start-rail__proof div { padding-right: 8px; padding-left: 8px; }
  .start-rail__proof dd { font-size: 12px; }
}

@media (max-width: 760px) {
  .start-rail__shell {
    display: block;
    width: calc(100% - 28px);
    min-height: 0;
  }
  .start-rail__copy { padding: 24px 16px 18px; }
  .start-rail__copy h2 { max-width: 15ch; font-size: 29px; }
  .start-rail__proof { border-top: 1px solid rgba(255, 255, 255, 0.22); border-left: 0; }
  .start-rail__proof div { min-height: 59px; padding: 10px; }
  .start-rail__proof dt { font-size: 7.5px; }
  .start-rail__proof dd { margin-top: 5px; font-size: 13px; }
  .start-rail__cta { min-height: 52px; border-top: 1px solid rgba(255, 255, 255, 0.25); }

  .contact-os { padding: 38px 0 42px; scroll-margin-top: 20px; }
  .contact-os__shell { width: calc(100% - 28px); }
  .contact-os__rail { min-height: 38px; padding: 0 14px; }
  .contact-os__rail > span { display: none; }
  .contact-os__body { display: block; }
  .contact-os__intro { padding: 22px 16px; border-right: 0; border-bottom: 1px solid #d5e0e8; }
  .contact-os__intro h2 { max-width: 13ch; margin-top: 13px; font-size: 32px; }
  .contact-os__intro > p:nth-of-type(2) { margin-top: 15px; font-size: 12px; }
  .contact-os__topics { margin-top: 17px; }
  .contact-os__topics div { padding: 9px 8px; }
  .contact-os__assurance { margin-top: 15px !important; }
  .contact-os__form { padding: 18px 16px; }
  .contact-os__fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px 10px; }
  .contact-os__fields label { grid-column: 1 / -1; }
  .contact-os__fields label:nth-child(3) { grid-column: 1; }
  .contact-os__fields label:nth-child(4) { grid-column: 2; }
  .contact-os__fields label > span { font-size: 9.5px; }
  .contact-os__fields input,
  .contact-os__fields textarea { font-size: 16px; }
  .contact-os__fields input { height: 47px; }
  .contact-os__fields textarea { min-height: 108px; }
  .contact-os__submit { display: block; margin-top: 14px; padding-top: 14px; }
  .contact-os__submit p { margin-bottom: 10px; }
  .contact-os__submit button { width: 100%; min-height: 52px; }
}

@media (max-width: 700px) {
  /* One stable, integrated mobile CTA at every phone width. */
  .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    min-width: 92px;
    min-height: 44px;
    gap: 7px;
    padding: 0 10px;
    border-radius: 6px;
  }
  .nav-cta__label {
    display: flex;
    min-width: 0;
    padding: 0;
    font-size: 10.5px;
    white-space: nowrap;
  }
  .nav-cta__label::after { content: none; }
  .nav-cta i {
    width: auto;
    height: auto;
    border-left: 0;
    background: transparent;
  }
  .nav-cta svg { width: 14px; height: 14px; }
  .nav-cta:hover i,
  .nav-cta:focus-visible i { background: transparent; }

  /* True full-page snap panels with explicit Instagram-style page state. */
  .record-stage { width: 100%; margin: 28px 0 0; }
  .record-caption--top { margin-right: 0; margin-left: 0; }
  .record-caption--top::after { content: "Swipe through 3 views"; }
  .record-body {
    grid-auto-columns: 100%;
    gap: 0;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y pinch-zoom;
  }
  .record-body > section { scroll-snap-align: start; scroll-snap-stop: always; }
  .record-body:focus-visible { outline: 3px solid #78a5ff; outline-offset: -3px; }

  .record-carousel-count {
    position: absolute;
    top: 80px;
    right: 10px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: #fff;
    background: rgba(6, 21, 33, 0.86);
    box-shadow: 0 5px 18px rgba(6, 21, 33, 0.15);
    font-size: 8px;
    font-weight: 780;
    letter-spacing: 0.08em;
  }

  .record-carousel-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border-top: 1px solid var(--line);
    background: #fff;
  }
  .record-carousel-pagination button {
    display: grid;
    width: 44px;
    height: 40px;
    padding: 0;
    place-items: center;
    border: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
  }
  .record-carousel-pagination button i {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #bdc9d2;
    transition: width 160ms ease, background 160ms ease;
  }
  .record-carousel-pagination button[aria-current="true"] i { width: 18px; background: var(--cobalt); }
  .record-carousel-pagination button:focus-visible { outline: 2px solid var(--cobalt); outline-offset: -4px; }

  .footer-product a,
  .footer-product a:nth-child(n + 4) { grid-column: span 2; }
}

@media (max-width: 350px) {
  .start-rail__shell,
  .contact-os__shell { width: calc(100% - 20px); }
  .start-rail__copy h2,
  .contact-os__intro h2 { font-size: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .record-body { scroll-behavior: auto; }
  .record-carousel-pagination button i { transition: none; }
}

@media (forced-colors: active) {
  .start-rail,
  .start-rail__shell,
  .start-rail__proof,
  .start-rail__proof div,
  .start-rail__cta,
  .contact-os,
  .contact-os__console,
  .contact-os__rail,
  .contact-os__intro,
  .contact-os__form,
  .contact-os__fields input,
  .contact-os__fields textarea,
  .contact-os__submit button,
  .record-carousel-pagination {
    border-color: CanvasText;
    color: CanvasText;
    background: Canvas;
    box-shadow: none;
  }
}

@media (max-width: 900px) {
  .sm-os__shell { width: calc(100% - 48px); }
  .sm-os__intro { display: block; }

  .sm-os__intro h2 {
    max-width: 800px;
    font-size: clamp(52px, 9.3vw, 74px);
  }

  .sm-os__brief {
    max-width: 650px;
    margin-top: 35px;
  }

  .sm-os__instrument { margin-top: 62px; }

  .sm-os__body { display: block; }

  .sm-os__evidence {
    border-bottom: 1px solid #d3dee7;
  }

  .sm-os__evidence-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sm-os__evidence-item {
    min-height: 210px;
    padding: 26px 20px;
    border-right: 1px solid #d8e2e9;
    border-bottom: 1px solid #d8e2e9;
  }

  .sm-os__evidence-item:first-child { padding-left: 0; }
  .sm-os__evidence-item:last-child { padding-right: 0; border-right: 0; }

  .sm-os__evidence-item blockquote {
    font-size: 19px;
  }

  .sm-os__packet { display: none; }

  .sm-os__memory {
    border-left: 0;
  }

  .sm-os__memory::before { display: none; }

  .sm-os__memory-head h4 { max-width: 680px; }

  .sm-os__handoff {
    grid-template-columns: minmax(230px, 0.8fr) minmax(0, 1.2fr);
  }
}

@media (max-width: 700px) {
  .platform-os { padding-bottom: 64px; }

  .sales-memory-os {
    padding: 86px 0 96px;
    background: linear-gradient(180deg, #fff 0%, #f7faff 30%, #edf4ff 72%, #fff 100%);
  }

  .sales-memory-os::before {
    top: -80px;
    right: -92%;
    left: -92%;
    height: 430px;
    filter: none;
    opacity: 0.72;
  }

  .sm-os__atmosphere i {
    top: 5%;
    left: -102%;
    width: 304%;
    height: 370px;
    filter: none;
    opacity: 0.42;
  }

  .sm-os__atmosphere b,
  .sm-os__atmosphere span { display: none; }

  .sm-os__shell { width: calc(100% - 32px); }

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

  .sm-os__intro h2 {
    font-size: clamp(43px, 13vw, 59px);
    line-height: 0.93;
    letter-spacing: -0.061em;
  }

  .sm-os__brief {
    margin-top: 29px;
    padding-left: 16px;
  }

  .sm-os__brief p { font-size: 15px; }
  .sm-os__brief strong { margin-top: 18px; }

  .sm-os__instrument {
    margin-top: 48px;
    border-radius: 6px;
  }

  .sm-os__identity {
    display: block;
    min-height: 0;
    padding: 22px 18px;
  }

  .sm-os__identity h3 { font-size: 29px; }

  .sm-os__state {
    grid-template-columns: minmax(0, 1fr) auto;
    min-width: 0;
    margin-top: 22px;
    padding: 17px 0 0;
    border-top: 1px solid #d7e1e9;
    border-left: 0;
  }

  .sm-os__state p { font-size: 11px; }

  .sm-os__evidence,
  .sm-os__memory { padding: 25px 18px; }

  .sm-os__panel-head h4 { font-size: 25px; }

  .sm-os__evidence-list {
    display: block;
    margin-top: 30px;
  }

  .sm-os__evidence-item,
  .sm-os__evidence-item:first-child,
  .sm-os__evidence-item:last-child {
    min-height: 132px;
    padding: 23px 0;
    border-right: 0;
  }

  .sm-os__evidence-item blockquote {
    margin-top: 16px;
    font-size: 20px;
  }

  .sm-os__memory::after { display: none; }

  .sm-os__memory-head h4 {
    font-size: clamp(36px, 10.8vw, 47px);
  }

  .sm-os__ledger { margin-top: 38px; }

  .sm-os__fact,
  .sm-os__fact:first-child {
    grid-template-columns: 1fr;
    gap: 9px;
    min-height: 116px;
    padding: 21px 0;
  }

  .sm-os__fact dd,
  .sm-os__fact:first-child dd { font-size: 23px; }

  .sm-os__handoff {
    display: block;
    min-height: 0;
    padding: 28px 20px 30px;
  }

  .sm-os__handoff h4 {
    font-size: 31px;
  }

  .sm-os__handoff > p {
    margin-top: 24px;
    font-size: 14.5px;
  }

  .sm-os__handoff > span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 26px;
    text-align: left;
  }

  .sm-os__handoff::after { display: none; }
}

@media (max-width: 350px) {
  .sm-os__shell { width: calc(100% - 24px); }
  .sm-os__intro h2 { font-size: 42px; }
  .sm-os__state time { display: none; }
  .sm-os__handoff h4 { font-size: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .sm-os--motion .sm-os__evidence-item,
  .sm-os--motion .sm-os__fact,
  .sm-os--motion .sm-os__handoff > * {
    opacity: 1;
    transform: none;
  }

  .sm-os__atmosphere,
  .sm-os__packet,
  .sm-os__memory::after,
  .sm-os__handoff::after { display: none; }
}

@media (forced-colors: active) {
  .sm-os__atmosphere,
  .sales-memory-os::before,
  .sm-os__packet,
  .sm-os__memory::before,
  .sm-os__memory::after,
  .sm-os__handoff::after { display: none; }

  .sm-os__instrument,
  .sm-os__evidence,
  .sm-os__memory,
  .sm-os__handoff {
    border: 1px solid CanvasText;
    color: CanvasText;
    background: Canvas;
  }

  .sm-os__evidence-item mark {
    color: CanvasText;
    background: Canvas;
    box-shadow: none;
  }
}

/* Automations — a live sequence runway that stands down on reply. */
.sales-memory-os { padding-bottom: 92px; }

.automation-os {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: 116px 0 164px;
  scroll-margin-top: 104px;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7faff 24%, #edf4ff 58%, #f7faff 84%, #ffffff 100%);
}

.automation-os#automations { scroll-margin-top: 104px; }

@supports not (overflow: clip) {
  .automation-os { overflow: hidden; }
}

.automation-os::before {
  position: absolute;
  top: 4%;
  right: -16%;
  left: -18%;
  z-index: 0;
  height: 470px;
  background: linear-gradient(
    90deg,
    rgba(7, 95, 242, 0) 0%,
    rgba(91, 163, 255, 0.055) 18%,
    rgba(7, 95, 242, 0.16) 48%,
    rgba(83, 155, 255, 0.09) 71%,
    rgba(7, 95, 242, 0) 100%
  );
  filter: blur(30px);
  pointer-events: none;
  content: "";
}

.auto-os__atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.auto-os__atmosphere i,
.auto-os__atmosphere b,
.auto-os__atmosphere span {
  position: absolute;
  display: block;
}

.auto-os__atmosphere i {
  top: 12%;
  left: -17%;
  width: 142%;
  height: 330px;
  clip-path: polygon(0 26%, 100% 4%, 100% 69%, 0 91%);
  background: linear-gradient(
    90deg,
    rgba(7, 95, 242, 0) 0%,
    rgba(104, 174, 255, 0.07) 20%,
    rgba(7, 95, 242, 0.23) 53%,
    rgba(93, 164, 255, 0.105) 79%,
    rgba(7, 95, 242, 0) 100%
  );
  filter: blur(24px);
  transform: translate3d(-2.5%, 0, 0);
}

.auto-os__atmosphere b {
  top: 42%;
  left: 33%;
  width: 74%;
  height: 330px;
  background: linear-gradient(
    90deg,
    rgba(7, 95, 242, 0),
    rgba(7, 95, 242, 0.11) 42%,
    rgba(92, 165, 255, 0.055) 73%,
    rgba(7, 95, 242, 0)
  );
  filter: blur(36px);
}

.auto-os__atmosphere span {
  right: -15%;
  bottom: 8%;
  width: 78%;
  height: 520px;
  background: linear-gradient(
    133deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.84) 46%,
    rgba(191, 220, 255, 0.18) 65%,
    rgba(255, 255, 255, 0) 89%
  );
  filter: blur(42px);
}

.auto-os__shell {
  position: relative;
  z-index: 2;
  width: min(1400px, calc(100% - clamp(80px, 8vw, 132px)));
  margin: 0 auto;
}

.auto-os__intro {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: stretch;
  gap: 0 24px;
}

.auto-os__index {
  grid-column: 1 / 4;
  grid-row: 1;
  align-self: start;
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 4px 0 32px;
  color: #5d707c;
  font-size: 10px;
  font-weight: 730;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.auto-os__index::before {
  width: 30px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--cobalt);
  content: "";
}

.auto-os__index span { color: var(--cobalt); }

.auto-os__intro h2 {
  grid-column: 4 / 13;
  grid-row: 1 / 3;
  align-self: end;
  margin: 0;
  padding-left: clamp(24px, 2.8vw, 44px);
  color: var(--ink);
  font-size: clamp(72px, 7.35vw, 106px);
  font-weight: 590;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.auto-os__intro h2 span,
.auto-os__intro h2 strong {
  display: block;
  font: inherit;
}

.auto-os__intro h2 strong {
  color: var(--cobalt);
  font-weight: 630;
}

.auto-os__brief {
  grid-column: 1 / 4;
  grid-row: 2;
  align-self: end;
  padding: 26px 22px 4px 0;
  border-top: 1px solid #c8d6e1;
}

.auto-os__brief p {
  max-width: 430px;
  margin: 0;
  color: #4d6270;
  font-size: 15.5px;
  line-height: 1.62;
  letter-spacing: -0.012em;
}

.auto-os__brief strong {
  display: block;
  max-width: 410px;
  margin-top: 24px;
  padding-top: 17px;
  border-top: 1px solid #d2dee7;
  color: #17303f;
  font-size: 11px;
  font-weight: 680;
  line-height: 1.5;
}

.auto-os__runway {
  position: relative;
  margin-top: 84px;
  overflow: hidden;
  border-top: 1px solid #bfcfdd;
  border-bottom: 1px solid #bfcfdd;
  background: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 4px 12px rgba(6, 21, 33, 0.04),
    0 34px 84px rgba(23, 58, 92, 0.12),
    0 16px 56px rgba(7, 95, 242, 0.075);
}

@media (min-width: 1201px) {
  .auto-os__runway {
    width: calc(100% + 8vw);
    margin-left: -4vw;
  }
}

.auto-os__runway::before {
  position: absolute;
  top: -1px;
  left: 0;
  z-index: 7;
  width: 61%;
  height: 3px;
  background: linear-gradient(90deg, var(--cobalt), #68a8ff 74%, transparent);
  content: "";
}

.auto-os__runway-head {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.82fr);
  align-items: stretch;
  min-height: 120px;
  border-bottom: 1px solid #cfdbe4;
  background: rgba(255, 255, 255, 0.97);
}

.auto-os__runway-head > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 30px;
  border-right: 1px solid #d4dfe7;
}

.auto-os__runway-head > div:first-child p,
.auto-os__guardrails dt,
.auto-os__execution-label,
.auto-os__step > p,
.auto-os__reply-source p {
  margin: 0;
  color: #5d707c;
  font-size: 10px;
  font-weight: 740;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.auto-os__runway-head > div:first-child p span { color: var(--cobalt); }

.auto-os__runway-head h3 {
  margin: 9px 0 0;
  color: var(--ink);
  font-size: 34px;
  font-weight: 620;
  line-height: 1;
  letter-spacing: -0.047em;
}

.auto-os__guardrails {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
}

.auto-os__guardrails > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 22px 24px;
  border-right: 1px solid #d4dfe7;
}

.auto-os__guardrails > div:last-child { border-right: 0; }

.auto-os__guardrails dd {
  margin: 11px 0 0;
  color: #1e3745;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.auto-os__guardrail-stop {
  background: #eef8f4;
}

.auto-os__guardrail-stop dt { color: #167d5b; }

.auto-os__guardrail-stop dd {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #126c4e;
}

.auto-os__guardrail-stop dd i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: #15996c;
  box-shadow: 0 0 0 5px rgba(21, 153, 108, 0.1);
}

.auto-os__execution {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.auto-os__execution-label {
  display: grid;
  grid-template-columns: auto minmax(40px, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 46px;
  padding: 0 30px;
  border-bottom: 1px solid #d4dfe7;
  color: #5f7380;
  background: #f7f9fb;
  font-size: 8.5px;
}

.auto-os__execution-label i {
  height: 1px;
  background: linear-gradient(90deg, #91baff, rgba(145, 186, 255, 0.18));
}

.auto-os__sequence {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.auto-os__sequence--active {
  grid-template-columns: minmax(260px, 1.3fr) minmax(170px, 0.72fr) minmax(260px, 1.3fr);
}

.auto-os__sequence--future {
  grid-template-columns: minmax(150px, 0.72fr) minmax(240px, 1.28fr);
}

.auto-os__step {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 286px;
  flex-direction: column;
  padding: 30px 26px 27px;
  border-right: 1px solid #d4dfe7;
  background: rgba(255, 255, 255, 0.94);
}

.auto-os__step:last-child { border-right: 0; }

.auto-os__step::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: #82b2ff;
  content: "";
}

.auto-os__step--wait {
  background: #f8fafc;
}

.auto-os__step-number {
  color: var(--cobalt);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.12em;
}

.auto-os__step > p {
  margin-top: 42px;
  color: #506977;
}

.auto-os__step h4 {
  max-width: 240px;
  margin: 13px 0 0;
  color: #102a39;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 620;
  line-height: 1.04;
  letter-spacing: -0.045em;
  overflow-wrap: anywhere;
}

.auto-os__step small {
  display: block;
  margin-top: 15px;
  color: #5b707d;
  font-size: 11px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.auto-os__step b {
  margin-top: auto;
  padding-top: 25px;
  color: #166e50;
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.09em;
  line-height: 1.4;
  text-transform: uppercase;
}

.auto-os__step.is-stopped {
  color: #536875;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0)),
    #eef2f5;
}

.auto-os__step.is-stopped::before { background: #aebcc5; }
.auto-os__step.is-stopped .auto-os__step-number,
.auto-os__step.is-stopped > p,
.auto-os__step.is-stopped small { color: #536875; }

.auto-os__step.is-stopped h4 { color: #405662; }

.auto-os__step.is-stopped b { color: #405662; }

.auto-os__runner {
  position: absolute;
  top: 45px;
  left: 0;
  z-index: 8;
  width: 2.6%;
  height: 3px;
  background: linear-gradient(90deg, rgba(7, 95, 242, 0), var(--cobalt) 58%, #a5ceff);
  opacity: 0;
  transform: translate3d(0, 0, 0) scaleX(0.76);
  pointer-events: none;
}

.auto-os__interruption {
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(0, 2.22fr);
  min-height: 216px;
  border-top: 1px solid #cbd8e2;
  background: #f8fafc;
}

.auto-os__listening {
  grid-column: 1;
  align-self: center;
  max-width: 300px;
  margin: 0;
  padding: 34px 30px;
  color: #536875;
  font-size: 16px;
  font-weight: 570;
  line-height: 1.48;
  letter-spacing: -0.018em;
}

.auto-os__reply {
  position: relative;
  grid-column: 2;
  display: grid;
  grid-template-columns: minmax(130px, 0.55fr) minmax(260px, 1.32fr) minmax(190px, 0.83fr);
  align-items: center;
  gap: 28px;
  min-width: 0;
  padding: 32px 30px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(119deg, #064ac7 0%, #0758dd 45%, #075fe7 74%, #0643b7 100%);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.2);
}

.auto-os__reply::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: #55d4a5;
  content: "";
}

.auto-os__reply-source p { color: #fff; }

.auto-os__reply-source time {
  display: block;
  margin-top: 13px;
  color: #fff;
  font-size: 11px;
  font-weight: 680;
  font-variant-numeric: tabular-nums;
}

.auto-os__reply blockquote {
  margin: 0;
  color: #fff;
  font-size: clamp(21px, 2.05vw, 29px);
  font-weight: 570;
  line-height: 1.22;
  letter-spacing: -0.038em;
}

.auto-os__resolution {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.33);
}

.auto-os__resolution span,
.auto-os__resolution strong { display: block; }

.auto-os__resolution span {
  color: #fff;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.auto-os__resolution span i {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-right: 9px;
  border: 1px solid #71e4ba;
  color: #9df1d2;
  font-style: normal;
}

.auto-os__resolution strong {
  margin-top: 15px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.auto-os__reply-sheen {
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: -28%;
  width: 18%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  opacity: 0;
  transform: skewX(-13deg) translate3d(0, 0, 0);
  pointer-events: none;
}

.auto-os__future {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 2.22fr);
  min-height: 166px;
  border-top: 1px solid #cbd8e2;
  background: #eef2f5;
}

.auto-os__future-label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 28px 30px;
  border-right: 1px solid #c8d5de;
  background: #e8eef2;
}

.auto-os__future-label p,
.auto-os__future-label span {
  margin: 0;
}

.auto-os__future-label p {
  color: #405662;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.auto-os__future-label span {
  max-width: 260px;
  margin-top: 12px;
  color: #536875;
  font-size: 13px;
  font-weight: 560;
  line-height: 1.48;
}

.auto-os__sequence--future .auto-os__step {
  min-height: 166px;
  padding: 21px 26px 19px;
  background: rgba(245, 248, 250, 0.92);
}

.auto-os__sequence--future .auto-os__step > p { margin-top: 17px; }
.auto-os__sequence--future .auto-os__step h4 { margin-top: 7px; font-size: 23px; }
.auto-os__sequence--future .auto-os__step small { margin-top: 7px; }
.auto-os__sequence--future .auto-os__step b { margin-top: 16px; padding-top: 0; }

.auto-os__result {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(420px, 0.8fr);
  align-items: center;
  gap: 48px;
  min-height: 170px;
  padding: 32px 30px;
  border-top: 1px solid #cbd8e2;
  background: rgba(255, 255, 255, 0.98);
}

.auto-os__result h4 {
  margin: 0;
  color: #1c3442;
  font-size: clamp(31px, 3vw, 44px);
  font-weight: 570;
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.auto-os__result h4 strong {
  display: block;
  color: var(--cobalt);
  font-weight: 640;
}

.auto-os__result > div {
  display: flex;
  grid-template-columns: 1fr 1fr;
  justify-content: flex-end;
}

.auto-os__result > div p {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 13px;
  margin: 0;
  padding: 14px 20px;
  color: #405764;
  font-size: 11px;
  font-weight: 620;
  line-height: 1.4;
}

.auto-os__result > div p + p { border-left: 1px solid #d0dce5; }

.auto-os__result > div span {
  color: var(--cobalt);
  font-size: 10px;
  font-weight: 770;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Progressive enhancement: the full sequence is visible without JavaScript. */
.auto-os--motion .auto-os__step,
.auto-os--motion .auto-os__reply,
.auto-os--motion .auto-os__result > * {
  opacity: 0.28;
  transform: translate3d(0, 14px, 0);
}

.auto-os--motion.has-entered .auto-os__step,
.auto-os--motion.has-entered .auto-os__reply,
.auto-os--motion.has-entered .auto-os__result > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 680ms cubic-bezier(0.22, 0.72, 0.2, 1),
    transform 680ms cubic-bezier(0.22, 0.72, 0.2, 1);
}

.auto-os--motion.has-entered .auto-os__step {
  transition-delay: calc(70ms + var(--auto-order) * 95ms);
}

.auto-os--motion.has-entered .auto-os__step.is-stopped {
  opacity: 1;
  transition-delay: calc(780ms + (var(--auto-order) - 3) * 90ms);
}

.auto-os--motion.has-entered .auto-os__reply { transition-delay: 560ms; }
.auto-os--motion.has-entered .auto-os__result > h4 { transition-delay: 910ms; }
.auto-os--motion.has-entered .auto-os__result > div { transition-delay: 1010ms; }

.auto-os--motion.has-entered .auto-os__runner {
  animation: auto-os-runner 2.15s cubic-bezier(0.42, 0.03, 0.52, 0.97) 170ms 1 both;
}

.auto-os--motion.has-entered .auto-os__reply-sheen {
  animation: auto-os-reply-sheen 1.6s cubic-bezier(0.42, 0.03, 0.52, 0.97) 650ms 1 both;
}

.auto-os--motion.is-in-view:not(.is-lite) .auto-os__atmosphere i {
  animation: auto-os-pressure-drift 20s cubic-bezier(0.45, 0.04, 0.55, 0.96) infinite alternate;
  will-change: transform;
}

@keyframes auto-os-runner {
  0% { opacity: 0; transform: translate3d(0, 0, 0) scaleX(0.72); }
  10%, 74% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(3620%, 0, 0) scaleX(1); }
}

@keyframes auto-os-reply-sheen {
  0% { opacity: 0; transform: skewX(-13deg) translate3d(0, 0, 0); }
  23%, 58% { opacity: 1; }
  100% { opacity: 0; transform: skewX(-13deg) translate3d(710%, 0, 0); }
}

@keyframes auto-os-pressure-drift {
  0% { transform: translate3d(-2.5%, 0, 0) scaleX(1); }
  100% { transform: translate3d(3.5%, 1%, 0) scaleX(1.05); }
}

@media (max-width: 1100px) {
  .sales-memory-os { padding-bottom: 82px; }
  .automation-os { padding: 104px 0 136px; }
  .auto-os__shell { width: calc(100% - 64px); }

  .auto-os__intro {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .auto-os__index {
    grid-column: 1 / -1;
    grid-row: auto;
    margin-bottom: 24px;
  }

  .auto-os__intro h2 {
    grid-column: 1 / 7;
    grid-row: auto;
    padding-left: 0;
    font-size: clamp(58px, 7.8vw, 78px);
  }

  .auto-os__brief {
    grid-column: 7 / 11;
    grid-row: auto;
    padding: 2px 0 4px 24px;
    border-top: 0;
    border-left: 1px solid #c8d6e1;
  }

  .auto-os__runway-head {
    grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.85fr);
  }

  .auto-os__sequence--active { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .auto-os__interruption { grid-template-columns: 1fr; }

  .auto-os__future {
    grid-template-columns: minmax(210px, 0.72fr) minmax(0, 2fr);
  }

  .auto-os__sequence--future { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .auto-os__sequence--active .auto-os__step { min-height: 278px; }
  .auto-os__sequence--future .auto-os__step { min-height: 172px; }

  .auto-os__step:nth-child(3) { border-right: 0; }

  .auto-os__listening {
    grid-column: 1 / -1;
    max-width: none;
    min-height: 86px;
  }

  .auto-os__reply { grid-column: 1 / -1; }
  .auto-os__runner { display: none; }

  .auto-os__result {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
  }
}

@media (max-width: 900px) {
  .auto-os__shell { width: calc(100% - 48px); }
  .auto-os__intro { display: block; }

  .auto-os__intro h2 {
    max-width: 800px;
    padding-left: 0;
    font-size: clamp(52px, 9.3vw, 74px);
  }

  .auto-os__brief {
    max-width: 650px;
    margin-top: 35px;
    padding: 2px 0 4px 24px;
    border-top: 0;
    border-left: 1px solid #c8d6e1;
  }

  .auto-os__runway { margin-top: 62px; }

  .auto-os__runway-head { display: block; }

  .auto-os__runway-head > div:first-child {
    min-height: 104px;
    border-right: 0;
    border-bottom: 1px solid #d4dfe7;
  }

  .auto-os__reply {
    grid-template-columns: minmax(110px, 0.48fr) minmax(0, 1.12fr) minmax(180px, 0.8fr);
  }

  .auto-os__result { display: block; }
  .auto-os__result > div { margin-top: 28px; }
}

@media (max-width: 700px) {
  .sales-memory-os { padding-bottom: 62px; }

  .automation-os {
    padding: 84px 0 96px;
    background: linear-gradient(180deg, #fff 0%, #f7faff 28%, #edf4ff 70%, #fff 100%);
  }

  .automation-os::before {
    right: -90%;
    left: -90%;
    height: 390px;
    filter: none;
    opacity: 0.66;
  }

  .auto-os__atmosphere i {
    top: 7%;
    left: -96%;
    width: 292%;
    filter: none;
    opacity: 0.44;
  }

  .auto-os__atmosphere b,
  .auto-os__atmosphere span { display: none; }

  .auto-os__shell { width: calc(100% - 32px); }

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

  .auto-os__intro h2 {
    font-size: clamp(43px, 13vw, 59px);
    line-height: 0.93;
    letter-spacing: -0.061em;
  }

  .auto-os__brief {
    margin-top: 29px;
    padding-left: 16px;
  }

  .auto-os__brief p { font-size: 15px; }
  .auto-os__brief strong { margin-top: 18px; }

  .auto-os__runway { margin-top: 48px; }

  .auto-os__runway-head > div:first-child { padding: 22px 18px; }
  .auto-os__runway-head h3 { font-size: 29px; }

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

  .auto-os__guardrails > div { padding: 18px; }
  .auto-os__guardrails > div:nth-child(2) { border-right: 0; }

  .auto-os__guardrail-stop {
    grid-column: 1 / -1;
    border-top: 1px solid #d4dfe7;
  }

  .auto-os__execution-label {
    grid-template-columns: 1fr;
    gap: 4px;
    min-height: 58px;
    padding: 11px 18px;
  }

  .auto-os__execution-label i { display: none; }

  .auto-os__sequence {
    position: relative;
    display: block;
    padding-left: 22px;
    background: #fff;
  }

  .auto-os__sequence::before {
    position: absolute;
    top: 25px;
    bottom: 25px;
    left: 20px;
    width: 2px;
    background: linear-gradient(180deg, var(--cobalt) 0%, #7dacfb 57%, #c1ccd4 58%, #c1ccd4 100%);
    content: "";
  }

  .auto-os__step {
    min-height: 0;
    padding: 24px 18px 24px 27px;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid #d4dfe7;
  }

  .auto-os__step::before {
    top: 31px;
    right: auto;
    left: -7px;
    width: 12px;
    height: 3px;
  }

  .auto-os__step-number { font-size: 9px; }
  .auto-os__step > p { margin-top: 17px; }
  .auto-os__step h4 { margin-top: 8px; font-size: 24px; }
  .auto-os__step small { margin-top: 9px; }
  .auto-os__step b { margin-top: 19px; padding-top: 0; }

  .auto-os__interruption {
    display: block;
    min-height: 0;
  }

  .auto-os__listening {
    min-height: 0;
    padding: 24px 18px;
    font-size: 14px;
  }

  .auto-os__reply {
    display: block;
    padding: 27px 20px 29px;
  }

  .auto-os__reply blockquote {
    margin-top: 25px;
    font-size: 24px;
  }

  .auto-os__resolution {
    margin-top: 28px;
    padding: 22px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    border-left: 0;
  }

  .auto-os__reply-sheen { display: none; }

  .auto-os__future {
    display: block;
    min-height: 0;
  }

  .auto-os__future-label {
    min-height: 112px;
    padding: 24px 18px;
    border-right: 0;
    border-bottom: 1px solid #c8d5de;
  }

  .auto-os__sequence--future .auto-os__step {
    min-height: 0;
    padding: 24px 18px 24px 27px;
  }

  .auto-os__sequence--future .auto-os__step > p { margin-top: 17px; }
  .auto-os__sequence--future .auto-os__step h4 { margin-top: 8px; font-size: 24px; }
  .auto-os__sequence--future .auto-os__step small { margin-top: 9px; }
  .auto-os__sequence--future .auto-os__step b { margin-top: 19px; }

  .auto-os__result { padding: 28px 18px; }
  .auto-os__result h4 { font-size: 31px; }
  .auto-os__result > div { display: block; }
  .auto-os__result > div p + p { border-top: 1px solid #d0dce5; border-left: 0; }
}

@media (max-width: 350px) {
  .auto-os__shell { width: calc(100% - 24px); }
  .auto-os__intro h2 { font-size: 42px; }
  .auto-os__guardrails { display: block; }
  .auto-os__guardrails > div { border-right: 0; border-bottom: 1px solid #d4dfe7; }
  .auto-os__guardrails > div:last-child { border-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .auto-os--motion .auto-os__step,
  .auto-os--motion .auto-os__reply,
  .auto-os--motion .auto-os__result > * {
    opacity: 1;
    transform: none;
  }

  .auto-os__atmosphere,
  .auto-os__runner,
  .auto-os__reply-sheen { display: none; }
}

@media (forced-colors: active) {
  .auto-os__atmosphere,
  .automation-os::before,
  .auto-os__runner,
  .auto-os__reply-sheen { display: none; }

  .auto-os__runway,
  .auto-os__step,
  .auto-os__reply,
  .auto-os__result,
  .auto-os__guardrail-stop,
  .auto-os__future,
  .auto-os__future-label {
    border: 1px solid CanvasText;
    color: CanvasText;
    background: Canvas;
  }

  .auto-os__step.is-stopped {
    opacity: 1;
    color: GrayText;
    background: Canvas;
  }
}

/* Post-hero density system — one continuous product story, not three billboards. */
.platform-os,
.sales-memory-os,
.automation-os {
  scroll-margin-top: 104px;
}

.platform-os__shell,
.sm-os__shell,
.auto-os__shell {
  width: min(1320px, calc(100% - clamp(64px, 6vw, 104px)));
}

/* Platform */
.platform-os { padding: 54px 0 46px; }
.platform-os__intro { gap: 0 20px; }
.platform-os__index { margin-top: 7px; }
.platform-os__intro h2 {
  font-size: clamp(48px, 4.2vw, 60px);
  line-height: 0.93;
  letter-spacing: -0.058em;
}
.platform-os__brief { padding-left: 18px; }
.platform-os__brief > p { font-size: 14.5px; line-height: 1.52; }
.platform-os__brief > div { margin-top: 15px; }
.platform-os__record { margin-top: 30px; }
.platform-os__identity { min-height: 72px; padding: 14px 22px; }
.platform-os__identity h3 { margin-top: 6px; font-size: 27px; }
.platform-os__record-state { min-width: 300px; gap: 5px 18px; padding-left: 20px; }
.platform-os__continuity { min-height: 30px; }
.platform-os__continuity span { padding: 0 20px; }
.platform-os__body { min-height: 332px; }
.platform-os__signals,
.platform-os__direction { padding: 18px 22px; }
.platform-os__panel-head h4 { margin-top: 6px; font-size: 17px; }
.platform-os__signal-list { margin-top: 16px; }
.platform-os__signal {
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 10px;
  min-height: 74px;
}
.platform-os__signal-code { width: 30px; height: 30px; }
.platform-os__signal small { margin-top: 3px; font-size: 10px; }
.platform-os__memory { padding: 18px 25px 16px; }
.platform-os__memory-head h4 {
  margin-top: 6px;
  font-size: clamp(27px, 2.35vw, 34px);
  line-height: 1;
}
.platform-os__memory-ledger { margin-top: 17px; }
.platform-os__memory-fact { min-height: 52px; gap: 18px; }
.platform-os__memory-fact dd { font-size: clamp(15px, 1.25vw, 18px); }
.platform-os__memory-note { margin-top: 11px; font-size: 10px; }
.platform-os__appointment {
  min-height: 150px;
  margin-top: 16px;
  padding: 18px 54px 18px 20px;
}
.platform-os__appointment > span { margin-top: 21px; font-size: 10px; }
.platform-os__appointment > strong { font-size: clamp(34px, 3.1vw, 42px); }
.platform-os__appointment > small { margin-top: 12px; }
.platform-os__appointment > i { right: 18px; width: 32px; height: 32px; }
.platform-os__reply { min-height: 58px; margin-top: 9px; padding: 11px 13px; }
.platform-os__reply > span { width: 29px; height: 29px; }
.platform-os__reply small { margin-top: 3px; }
.platform-os__automation {
  grid-template-columns: minmax(190px, 0.58fr) minmax(0, 2.42fr);
  min-height: 82px;
}
.platform-os__automation-intro { padding: 14px 22px; }
.platform-os__automation-intro h4 { margin-top: 6px; font-size: 18px; }
.platform-os__sequence li { padding: 13px 18px; }
.platform-os__sequence li > strong { margin-top: 7px; }
.platform-os__sequence li > small { margin-top: 4px; }
.platform-os__record-footer { min-height: 30px; padding: 0 22px; }

/* Sales Memory */
.sales-memory-os { padding: 50px 0; }
.sm-os__index { margin-bottom: 16px; }
.sm-os__intro h2 {
  font-size: clamp(46px, 4vw, 58px);
  line-height: 0.92;
  letter-spacing: -0.06em;
}
.sm-os__brief { padding-left: 19px; }
.sm-os__brief p { font-size: 14.5px; line-height: 1.5; }
.sm-os__brief strong { margin-top: 14px; padding-top: 12px; font-size: 10px; line-height: 1.42; }
.sm-os__instrument { margin-top: 30px; }
.sm-os__identity { min-height: 72px; padding: 14px 24px; }
.sm-os__identity h3 { margin-top: 6px; font-size: 27px; }
.sm-os__state { min-width: 285px; gap: 6px 18px; padding-left: 21px; }
.sm-os__evidence { padding: 20px 27px 18px; }
.sm-os__memory { padding: 20px 29px 18px; }
.sm-os__panel-head h4 { margin-top: 7px; font-size: 21px; line-height: 1.08; }
.sm-os__memory-head h4 {
  margin-top: 7px;
  font-size: clamp(27px, 2.25vw, 33px);
  line-height: 1;
}
.sm-os__evidence-list { margin-top: 18px; }
.sm-os__evidence-item { min-height: 92px; padding: 14px 4px 14px 0; }
.sm-os__evidence-item blockquote {
  margin-top: 10px;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.28;
}
.sm-os__ledger { margin-top: 18px; }
.sm-os__fact { min-height: 62px; gap: 17px; }
.sm-os__fact:first-child { min-height: 74px; }
.sm-os__fact dd { font-size: clamp(16px, 1.3vw, 19px); }
.sm-os__fact:first-child dd { font-size: clamp(23px, 2vw, 29px); }
.sm-os__memory-status { margin-top: 14px; font-size: 10px; }
.sm-os__handoff {
  grid-template-columns: minmax(220px, 0.8fr) minmax(300px, 1.28fr) minmax(150px, 0.48fr);
  gap: 24px;
  min-height: 96px;
  padding: 16px 26px;
}
.sm-os__handoff h4 { margin-top: 6px; font-size: 23px; }
.sm-os__handoff > p { font-size: 13.5px; line-height: 1.45; }
.sm-os__handoff > span { font-size: 8.5px; }

/* Automations */
.automation-os { padding: 50px 0 54px; }
.auto-os__index { margin-bottom: 18px; }
.auto-os__intro h2 {
  padding-left: 30px;
  font-size: clamp(48px, 4.45vw, 64px);
  line-height: 0.92;
  letter-spacing: -0.06em;
}
.auto-os__brief { padding: 17px 18px 2px 0; }
.auto-os__brief p { font-size: 13.5px; line-height: 1.45; }
.auto-os__brief strong { margin-top: 12px; padding-top: 10px; font-size: 9.5px; line-height: 1.36; }
.auto-os__runway { margin-top: 30px; }
.auto-os__runway-head {
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.88fr);
  min-height: 68px;
}
.auto-os__runway-head > div:first-child { padding: 14px 22px; }
.auto-os__runway-head h3 { margin-top: 6px; font-size: 27px; }
.auto-os__guardrails > div { padding: 13px 17px; }
.auto-os__guardrails dd { margin-top: 7px; font-size: 12px; }
.auto-os__execution-label { min-height: 30px; padding: 0 22px; }
.auto-os__step,
.auto-os__sequence--active .auto-os__step { min-height: 140px; padding: 16px 20px 14px; }
.auto-os__step > p { margin-top: 18px; }
.auto-os__step h4 { margin-top: 6px; font-size: clamp(18px, 1.55vw, 22px); }
.auto-os__step small { margin-top: 6px; font-size: 10px; }
.auto-os__step b { padding-top: 10px; font-size: 9px; }
.auto-os__interruption {
  grid-template-columns: minmax(190px, 0.58fr) minmax(0, 2.42fr);
  min-height: 104px;
}
.auto-os__listening { padding: 18px 22px; font-size: 13.5px; }
.auto-os__reply {
  grid-template-columns: minmax(90px, 0.42fr) minmax(220px, 1.4fr) minmax(155px, 0.72fr);
  gap: 18px;
  padding: 19px 22px;
}
.auto-os__reply blockquote { font-size: clamp(18px, 1.65vw, 23px); }
.auto-os__resolution { padding-left: 17px; }
.auto-os__resolution span { font-size: 9px; }
.auto-os__resolution strong { margin-top: 10px; font-size: 10.5px; }
.auto-os__future {
  grid-template-columns: minmax(210px, 0.65fr) minmax(0, 2.1fr);
  min-height: 90px;
}
.auto-os__future-label { padding: 15px 22px; }
.auto-os__sequence--future .auto-os__step { min-height: 90px; padding: 10px 18px; }
.auto-os__sequence--future .auto-os__step > p { margin-top: 8px; }
.auto-os__sequence--future .auto-os__step h4 { margin-top: 4px; font-size: 18px; }
.auto-os__sequence--future .auto-os__step small { margin-top: 4px; }
.auto-os__sequence--future .auto-os__step b { margin-top: 9px; }
.auto-os__result {
  grid-template-columns: minmax(0, 1.4fr) minmax(350px, 0.8fr);
  gap: 30px;
  min-height: 90px;
  padding: 14px 22px;
}
.auto-os__result h4 { font-size: clamp(25px, 2.15vw, 31px); }
.auto-os__result > div p { min-height: 46px; padding: 9px 13px; font-size: 10px; }

/* Keep the proof surfaces architectural on tablets instead of stacking too early. */
@media (min-width: 701px) and (max-width: 1100px) {
  .platform-os,
  .sales-memory-os,
  .automation-os { padding: 54px 0 62px; }

  .platform-os__shell,
  .sm-os__shell,
  .auto-os__shell { width: calc(100% - 56px); }

  .platform-os__intro h2,
  .sm-os__intro h2,
  .auto-os__intro h2 { font-size: clamp(43px, 5.5vw, 56px); line-height: 0.92; }

  .platform-os__brief,
  .sm-os__brief,
  .auto-os__brief { margin-top: 22px; }

  .auto-os__intro h2 { padding-left: 0; }
  .auto-os__brief { padding: 2px 0 4px 20px; }

  .platform-os__record,
  .sm-os__instrument,
  .auto-os__runway { margin-top: 32px; }

  .platform-os__identity,
  .sm-os__identity { min-height: 70px; padding: 13px 20px; }

  .platform-os__record-state { min-width: 250px; }
  .platform-os__body {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    grid-template-areas: "signals signals" "memory direction";
    min-height: 0;
  }
  .platform-os__signals { grid-area: signals; padding: 17px 20px; }
  .platform-os__signal-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 14px;
  }
  .platform-os__signal { min-height: 72px; padding: 0 14px; }
  .platform-os__memory { grid-area: memory; padding: 18px 22px 16px; }
  .platform-os__direction { grid-area: direction; display: block; padding: 18px 20px; }
  .platform-os__direction .platform-os__panel-head { grid-column: auto; }
  .platform-os__appointment { min-height: 145px; margin-top: 14px; }
  .platform-os__automation {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    min-height: 82px;
  }
  .platform-os__automation-intro {
    min-height: 0;
    border-right: 1px solid #d7e0e8;
    border-bottom: 0;
  }

  .sm-os__index,
  .auto-os__index { margin-bottom: 16px; }
  .sm-os__body {
    display: grid;
    grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1.26fr);
  }
  .sm-os__evidence { border-bottom: 0; }
  .sm-os__evidence-list { display: block; margin-top: 17px; }
  .sm-os__evidence-item,
  .sm-os__evidence-item:first-child,
  .sm-os__evidence-item:last-child {
    min-height: 86px;
    padding: 13px 0;
    border-right: 0;
  }
  .sm-os__memory { border-left: 1px solid rgba(117, 150, 180, 0.25); }
  .sm-os__memory::before { display: block; }
  .sm-os__handoff {
    grid-template-columns: minmax(180px, 0.72fr) minmax(260px, 1.35fr) minmax(125px, 0.48fr);
    gap: 18px;
  }
  .sm-os__handoff > span { grid-column: auto; justify-self: end; text-align: right; }

  .auto-os__runway-head {
    display: grid;
    grid-template-columns: minmax(195px, 0.58fr) minmax(0, 1.92fr);
  }
  .auto-os__interruption {
    grid-template-columns: minmax(170px, 0.52fr) minmax(0, 2.48fr);
  }
  .auto-os__listening { grid-column: 1; max-width: 220px; min-height: 0; }
  .auto-os__reply {
    grid-column: 2;
    grid-template-columns: minmax(76px, 0.38fr) minmax(0, 1.45fr) minmax(138px, 0.7fr);
    gap: 14px;
    padding: 17px 18px;
  }
  .auto-os__future { grid-template-columns: minmax(180px, 0.62fr) minmax(0, 2.1fr); }
  .auto-os__result {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
  }
  .auto-os__result > div { margin-top: 0; }
}

/* Laptop-height compression keeps each chapter visible as a complete composition. */
@media (min-width: 901px) and (max-height: 820px) {
  .platform-os,
  .sales-memory-os,
  .automation-os { padding-top: 40px; padding-bottom: 46px; }

  .platform-os__intro h2,
  .sm-os__intro h2,
  .auto-os__intro h2 { font-size: clamp(40px, 3.55vw, 50px); line-height: 0.92; }

  .platform-os__brief > p,
  .sm-os__brief p,
  .auto-os__brief p { font-size: 13px; line-height: 1.42; }

  .sm-os__index,
  .auto-os__index { margin-bottom: 11px; }
  .sm-os__brief strong,
  .auto-os__brief strong { margin-top: 9px; padding-top: 8px; font-size: 9px; }

  .platform-os__record,
  .sm-os__instrument,
  .auto-os__runway { margin-top: 24px; }

  .platform-os__identity,
  .sm-os__identity { min-height: 62px; padding: 10px 21px; }
  .platform-os__identity h3,
  .sm-os__identity h3 { font-size: 24px; }
  .platform-os__continuity { min-height: 28px; }
  .platform-os__body { min-height: 300px; }
  .platform-os__signals,
  .platform-os__direction { padding: 15px 20px; }
  .platform-os__signal-list { margin-top: 12px; }
  .platform-os__signal { min-height: 66px; }
  .platform-os__memory { padding: 15px 22px 13px; }
  .platform-os__memory-head h4 { font-size: 28px; }
  .platform-os__memory-ledger { margin-top: 13px; }
  .platform-os__memory-fact { min-height: 47px; }
  .platform-os__memory-note { margin-top: 8px; }
  .platform-os__appointment { min-height: 138px; margin-top: 12px; }
  .platform-os__appointment > span { margin-top: 17px; }
  .platform-os__reply { min-height: 52px; margin-top: 7px; }
  .platform-os__automation { min-height: 72px; }
  .platform-os__record-footer { min-height: 28px; }

  .sm-os__evidence,
  .sm-os__memory { padding-top: 15px; padding-bottom: 14px; }
  .sm-os__evidence-item { min-height: 76px; padding: 10px 0; }
  .sm-os__evidence-item blockquote { font-size: 15px; }
  .sm-os__ledger { margin-top: 12px; }
  .sm-os__fact { min-height: 51px; }
  .sm-os__fact:first-child { min-height: 61px; }
  .sm-os__handoff { min-height: 78px; padding-top: 11px; padding-bottom: 11px; }

  .auto-os__runway-head { min-height: 62px; }
  .auto-os__execution-label { min-height: 28px; }
  .auto-os__step,
  .auto-os__sequence--active .auto-os__step { min-height: 126px; padding-top: 14px; padding-bottom: 12px; }
  .auto-os__step > p { margin-top: 15px; }
  .auto-os__interruption { min-height: 94px; }
  .auto-os__future,
  .auto-os__sequence--future .auto-os__step { min-height: 78px; }
  .auto-os__result { min-height: 78px; padding-top: 12px; padding-bottom: 12px; }
}

@media (max-width: 700px) {
  .platform-os,
  .sales-memory-os,
  .automation-os { padding: 50px 0 54px; }

  .platform-os__shell,
  .sm-os__shell,
  .auto-os__shell { width: calc(100% - 28px); }

  .platform-os__intro h2,
  .sm-os__intro h2,
  .auto-os__intro h2 {
    font-size: clamp(34px, 10vw, 40px);
    line-height: 0.94;
    letter-spacing: -0.055em;
  }

  .platform-os__brief,
  .sm-os__brief,
  .auto-os__brief { margin-top: 22px; }

  .auto-os__intro h2 { padding-left: 0; }
  .auto-os__brief { padding: 0 0 0 16px; }

  .platform-os__brief > p,
  .sm-os__brief p,
  .auto-os__brief p { font-size: 14px; line-height: 1.48; }

  .sm-os__brief strong,
  .auto-os__brief strong { margin-top: 13px; padding-top: 11px; font-size: 9.5px; }

  .platform-os__record,
  .sm-os__instrument,
  .auto-os__runway { margin-top: 28px; }

  .platform-os__identity { padding: 16px 15px; }
  .platform-os__identity h3 { font-size: 24px; }
  .platform-os__record-state { min-width: 0; margin-top: 14px; padding-top: 12px; }
  .platform-os__signals,
  .platform-os__memory,
  .platform-os__direction { padding: 18px 15px; }
  .platform-os__signal-list { margin-top: 17px; }
  .platform-os__signal { min-height: 72px; }
  .platform-os__memory-head h4 { font-size: clamp(28px, 8.8vw, 36px); }
  .platform-os__memory-ledger { margin-top: 23px; }
  .platform-os__memory-fact { min-height: 76px; padding: 12px 0; }
  .platform-os__appointment { min-height: 166px; margin-top: 18px; padding: 18px 56px 18px 20px; }
  .platform-os__reply { min-height: 70px; }
  .platform-os__automation-intro { padding: 18px 15px; }
  .platform-os__sequence li { min-height: 88px; padding: 14px 15px; }
  .platform-os__record-footer { padding: 13px 15px; }

  .sm-os__identity { padding: 18px 16px; }
  .sm-os__identity h3 { font-size: 25px; }
  .sm-os__state { min-width: 0; margin-top: 15px; padding-top: 12px; }
  .sm-os__evidence,
  .sm-os__memory { padding: 20px 16px; }
  .sm-os__panel-head h4 { font-size: 21px; }
  .sm-os__evidence-list { margin-top: 20px; }
  .sm-os__evidence-item,
  .sm-os__evidence-item:first-child,
  .sm-os__evidence-item:last-child { min-height: 96px; padding: 14px 0; }
  .sm-os__evidence-item blockquote { margin-top: 12px; font-size: 17px; }
  .sm-os__memory-head h4 { font-size: clamp(28px, 8.9vw, 36px); }
  .sm-os__ledger { margin-top: 23px; }
  .sm-os__fact,
  .sm-os__fact:first-child { min-height: 78px; padding: 12px 0; }
  .sm-os__fact dd,
  .sm-os__fact:first-child dd { font-size: 19px; }
  .sm-os__handoff { padding: 19px 17px 21px; }
  .sm-os__handoff h4 { font-size: 25px; }
  .sm-os__handoff > p { margin-top: 16px; font-size: 13.5px; }
  .sm-os__handoff > span { margin-top: 18px; }

  .auto-os__runway-head > div:first-child { min-height: 0; padding: 18px 16px; }
  .auto-os__runway-head h3 { font-size: 25px; }
  .auto-os__guardrails > div { padding: 14px 16px; }
  .auto-os__execution-label { min-height: 48px; padding: 9px 16px; }
  .auto-os__step,
  .auto-os__sequence--active .auto-os__step { min-height: 0; padding: 16px 16px 16px 25px; }
  .auto-os__step > p { margin-top: 13px; }
  .auto-os__step h4 { margin-top: 6px; font-size: 21px; }
  .auto-os__step small { margin-top: 7px; }
  .auto-os__step b { margin-top: 14px; padding-top: 0; }
  .auto-os__listening { padding: 18px 16px; font-size: 13.5px; }
  .auto-os__reply { padding: 20px 17px 21px; }
  .auto-os__reply blockquote { margin-top: 18px; font-size: 21px; }
  .auto-os__resolution { margin-top: 20px; padding-top: 16px; }
  .auto-os__future-label { min-height: 76px; padding: 16px; }
  .auto-os__sequence--future .auto-os__step { min-height: 0; padding: 16px 16px 16px 25px; }
  .auto-os__result { padding: 20px 16px; }
  .auto-os__result h4 { font-size: 27px; }
  .auto-os__result > div { margin-top: 18px; }
  .auto-os__result > div p { min-height: 44px; padding: 9px 11px; }
}

@media (max-width: 350px) {
  .platform-os__intro h2,
  .sm-os__intro h2,
  .auto-os__intro h2 { font-size: 34px; }
}

/* Performance — accountability backed by the calls, texts, and follow-up behind it. */
.performance-os {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: 50px 0 54px;
  scroll-margin-top: 104px;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8faff 24%, #eef5ff 69%, #f8fbff 90%, #ffffff 100%);
}

.performance-os#performance { scroll-margin-top: 104px; }

@supports not (overflow: clip) {
  .performance-os { overflow: hidden; }
}

.performance-os::before {
  position: absolute;
  top: -21%;
  right: -17%;
  left: -18%;
  z-index: 0;
  height: 540px;
  background: linear-gradient(
    117deg,
    rgba(255, 255, 255, 0.94) 7%,
    rgba(222, 237, 255, 0.44) 34%,
    rgba(70, 145, 255, 0.17) 59%,
    rgba(7, 95, 242, 0.07) 75%,
    rgba(255, 255, 255, 0) 92%
  );
  filter: blur(25px);
  transform: rotate(-4deg);
  pointer-events: none;
  content: "";
}

.perf-os__atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.perf-os__atmosphere i,
.perf-os__atmosphere b {
  position: absolute;
  display: block;
}

.perf-os__atmosphere i {
  top: 14%;
  left: -18%;
  width: 142%;
  height: 330px;
  clip-path: polygon(0 34%, 100% 4%, 100% 55%, 0 88%);
  background: linear-gradient(
    90deg,
    rgba(7, 95, 242, 0) 1%,
    rgba(91, 163, 255, 0.05) 21%,
    rgba(7, 95, 242, 0.14) 56%,
    rgba(104, 175, 255, 0.075) 78%,
    rgba(7, 95, 242, 0) 99%
  );
  filter: blur(27px);
  transform: rotate(-2.8deg);
}

.perf-os__atmosphere b {
  right: -24%;
  bottom: -14%;
  width: 104%;
  height: 540px;
  background: linear-gradient(
    128deg,
    rgba(255, 255, 255, 0) 8%,
    rgba(255, 255, 255, 0.8) 43%,
    rgba(177, 211, 255, 0.2) 64%,
    rgba(255, 255, 255, 0) 90%
  );
  filter: blur(38px);
  transform: rotate(4deg);
}

.perf-os__shell {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - clamp(64px, 6vw, 104px)));
  margin: 0 auto;
}

.perf-os__intro {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  gap: 0 22px;
}

.perf-os__index {
  grid-column: 1 / 4;
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 16px;
  color: #5d707c;
  font-size: 10px;
  font-weight: 740;
  letter-spacing: 0.15em;
  white-space: nowrap;
  text-transform: uppercase;
}

.perf-os__index::before {
  width: 30px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--cobalt);
  content: "";
}

.perf-os__index span { color: var(--cobalt); }

.perf-os__intro h2 {
  grid-column: 1 / 9;
  margin: 0;
  color: var(--ink);
  font-size: clamp(48px, 4.25vw, 62px);
  font-weight: 650;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.perf-os__intro h2 span,
.perf-os__intro h2 strong {
  display: block;
  font: inherit;
}

.perf-os__intro h2 strong {
  color: var(--cobalt);
  font-weight: 720;
}

.perf-os__brief {
  grid-column: 9 / 13;
  align-self: end;
  padding: 2px 0 3px 21px;
  border-left: 1px solid #c8d6e1;
}

.perf-os__brief p {
  max-width: 430px;
  margin: 0;
  color: #4d6270;
  font-size: 14.5px;
  line-height: 1.52;
  letter-spacing: -0.012em;
}

.perf-os__brief strong {
  display: block;
  max-width: 410px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #d2dee7;
  color: #17303f;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.42;
}

.perf-os__review {
  position: relative;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid #c8d6e2;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow:
    0 3px 10px rgba(6, 21, 33, 0.04),
    0 34px 86px rgba(25, 60, 95, 0.13),
    0 16px 56px rgba(7, 95, 242, 0.07);
}

.perf-os__review::before {
  position: absolute;
  top: -1px;
  left: 0;
  z-index: 6;
  width: 67%;
  height: 3px;
  background: linear-gradient(90deg, var(--cobalt), #70adff 72%, transparent);
  content: "";
}

.perf-os__review-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(250px, 0.95fr) minmax(280px, 0.95fr) minmax(300px, 1.1fr);
  min-height: 72px;
  border-bottom: 1px solid #d3dee7;
  background: rgba(255, 255, 255, 0.98);
}

.perf-os__identity,
.perf-os__scope,
.perf-os__state {
  min-width: 0;
}

.perf-os__identity {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 13px 22px;
  border-right: 1px solid #d7e1e9;
}

.perf-os__identity p,
.perf-os__scope dt,
.perf-os__state > span,
.perf-os__scoreline > header p,
.perf-os__panel-head p,
.perf-os__coaching-head > p,
.perf-os__coaching-body section > p,
.perf-os__focus p {
  margin: 0;
  color: #5d707c;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.perf-os__identity p span,
.perf-os__state > span,
.perf-os__scoreline > header p,
.perf-os__panel-head p,
.perf-os__coaching-head > p,
.perf-os__coaching-body section:first-child > p { color: var(--cobalt); }

.perf-os__identity h3 {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 27px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.047em;
}

.perf-os__scope {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-right: 1px solid #d7e1e9;
}

.perf-os__scope > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 12px 18px;
  border-right: 1px solid #e0e7ed;
}

.perf-os__scope > div:last-child { border-right: 0; }

.perf-os__scope dd {
  margin: 7px 0 0;
  color: #1d3543;
  font-size: 12px;
  font-weight: 680;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.perf-os__state {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: center;
  gap: 6px 18px;
  padding: 12px 22px;
  background: #f6f9fd;
}

.perf-os__state > span { grid-column: 1 / -1; }

.perf-os__state p {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 9px;
  margin: 0;
  color: #405663;
  font-size: 11px;
  font-weight: 630;
}

.perf-os__state p i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: var(--cobalt);
  box-shadow: 0 0 0 5px rgba(7, 95, 242, 0.09);
}

.perf-os__state time {
  align-self: center;
  color: #60717d;
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.perf-os__scoreline {
  display: grid;
  grid-template-columns: minmax(210px, 0.62fr) minmax(0, 2.38fr);
  min-height: 112px;
  border-bottom: 1px solid #cfdae4;
}

.perf-os__scoreline > header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 16px 22px;
  border-right: 1px solid #d3dee7;
  background: #f7f9fc;
}

.perf-os__scoreline > header h4,
.perf-os__panel-head h4,
.perf-os__coaching-head h4 {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 660;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.perf-os__measures {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
}

.perf-os__measures > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 14px 17px;
  border-right: 1px solid #d6e0e8;
  background: #fff;
}

.perf-os__measures > div:last-child { border-right: 0; }

.perf-os__measures dt {
  color: #536875;
  font-size: 9px;
  font-weight: 730;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.perf-os__measures dd {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: clamp(24px, 2.25vw, 32px);
  font-variant-numeric: tabular-nums;
  font-weight: 720;
  line-height: 1;
  letter-spacing: -0.045em;
}

.perf-os__measures small {
  margin-top: 6px;
  color: #60717d;
  font-size: 9px;
  font-weight: 570;
  line-height: 1.3;
}

.perf-os__measures .perf-os__measure--primary {
  color: #fff;
  background: linear-gradient(135deg, #075ff2 0%, #176fff 68%, #0756d9 100%);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.22);
}

.perf-os__measure--primary dt,
.perf-os__measure--primary dd,
.perf-os__measure--primary small { color: #fff; }

.perf-os__body {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(330px, 0.85fr);
  min-height: 320px;
}

.perf-os__evidence {
  min-width: 0;
  padding: 18px 22px 0;
  border-right: 1px solid #ccd9e3;
  background: #fff;
}

.perf-os__panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  min-height: 42px;
  padding-bottom: 11px;
}

.perf-os__panel-head h4 { font-size: 18px; }

.perf-os__evidence-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid #d5dfe7;
  list-style: none;
}

.perf-os__evidence-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) minmax(120px, auto);
  align-items: center;
  min-height: 80px;
  gap: 12px;
  border-bottom: 1px solid #d9e2e9;
}

.perf-os__evidence-list li:last-child { border-bottom: 0; }

.perf-os__channel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--cobalt);
  background: #eef4ff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.perf-os__evidence-list li > div { min-width: 0; }

.perf-os__evidence-list li > div p {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
}

.perf-os__evidence-list li > div p strong {
  overflow: hidden;
  color: #182d3a;
  font-size: 12px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.perf-os__evidence-list time {
  flex: 0 0 auto;
  color: #60717d;
  font-size: 9px;
  font-variant-numeric: tabular-nums;
  font-weight: 620;
}

.perf-os__evidence-list b,
.perf-os__evidence-list small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.perf-os__evidence-list b {
  margin-top: 5px;
  color: #253b49;
  font-size: 11px;
  font-weight: 650;
}

.perf-os__evidence-list small {
  margin-top: 3px;
  color: #607181;
  font-size: 9.5px;
  font-weight: 510;
}

.perf-os__asset {
  justify-self: end;
  color: var(--cobalt);
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.perf-os__asset i {
  margin-left: 5px;
  font-style: normal;
}

.perf-os__asset--risk { color: #8a5a13; }

.perf-os__coaching {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: linear-gradient(180deg, #f2f7ff 0%, #f8fbff 100%);
}

.perf-os__coaching-head {
  padding: 18px 20px 14px;
  border-bottom: 1px solid #ccdbea;
}

.perf-os__coaching-head > p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.perf-os__coaching-head > p span {
  color: #60717d;
  font-size: 8px;
  letter-spacing: 0.1em;
}

.perf-os__coaching-head h4 { max-width: 390px; font-size: 19px; }

.perf-os__coaching-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 1 1 auto;
}

.perf-os__coaching-body section {
  min-width: 0;
  padding: 15px 17px 13px;
  border-right: 1px solid #d2dfeb;
}

.perf-os__coaching-body section:last-child { border-right: 0; }

.perf-os__coaching-body section:last-child > p { color: #875616; }

.perf-os__coaching-body strong,
.perf-os__coaching-body small {
  display: block;
}

.perf-os__coaching-body strong {
  margin-top: 10px;
  color: #1e3543;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.28;
}

.perf-os__coaching-body small {
  margin-top: 4px;
  color: #536875;
  font-size: 9.5px;
  font-weight: 520;
  line-height: 1.4;
}

.perf-os__focus {
  padding: 13px 18px 14px;
  color: #fff;
  background: #071e35;
}

.perf-os__focus p { color: #8fb9ff; }

.perf-os__focus strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 690;
  line-height: 1.35;
}

.perf-os__result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  gap: 24px;
  padding: 12px 22px;
  border-top: 1px solid #cbd8e2;
  background: #f8fafc;
}

.perf-os__result p {
  margin: 0;
  color: #405663;
  font-size: 12px;
  font-weight: 570;
}

.perf-os__result p strong { color: var(--ink); font-weight: 710; }

.perf-os__result > span {
  color: #60717d;
  font-size: 8px;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Five navigation chapters remain calm; switch before the center rail crowds. */
@media (max-width: 1160px) {
  .nav-shell { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .mobile-nav { display: block; }
}

@media (min-width: 701px) and (max-width: 1100px) {
  .performance-os { padding: 54px 0 62px; }
  .perf-os__shell { width: calc(100% - 56px); }
  .perf-os__intro h2 { font-size: clamp(43px, 5.5vw, 56px); line-height: 0.92; }
  .perf-os__brief { padding-left: 18px; }
  .perf-os__review { margin-top: 32px; }
  .perf-os__review-head {
    grid-template-columns: minmax(205px, 0.78fr) minmax(250px, 1fr) minmax(260px, 1.08fr);
  }
  .perf-os__scoreline { grid-template-columns: minmax(185px, 0.54fr) minmax(0, 2.46fr); }
  .perf-os__scoreline > header { padding: 15px 18px; }
  .perf-os__measures > div { padding: 13px 12px; }
  .perf-os__body { grid-template-columns: minmax(0, 1.32fr) minmax(280px, 0.78fr); }
  .perf-os__evidence { padding-right: 18px; padding-left: 18px; }
  .perf-os__evidence-list li { grid-template-columns: 32px minmax(0, 1fr); min-height: 80px; }
  .perf-os__asset { grid-column: 2; justify-self: start; margin-top: -8px; }
  .perf-os__coaching-body { display: block; }
  .perf-os__coaching-body section { border-right: 0; border-bottom: 1px solid #d2dfeb; }
  .perf-os__coaching-body section:last-child { border-bottom: 0; }
}

@media (max-width: 900px) {
  .perf-os__intro { display: block; }
  .perf-os__index { margin-bottom: 16px; }
  .perf-os__intro h2 { max-width: 760px; }
  .perf-os__brief {
    max-width: 620px;
    margin-top: 22px;
    padding: 0 0 2px 20px;
  }
  .perf-os__review-head {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 1fr);
  }
  .perf-os__identity { border-bottom: 1px solid #d7e1e9; }
  .perf-os__scope { border-right: 0; border-bottom: 1px solid #d7e1e9; }
  .perf-os__state { grid-column: 1 / -1; }
  .perf-os__scoreline { display: block; }
  .perf-os__scoreline > header { min-height: 68px; border-right: 0; border-bottom: 1px solid #d3dee7; }
  .perf-os__measures { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .perf-os__measures > div { min-height: 86px; border-bottom: 1px solid #d6e0e8; }
  .perf-os__measures > div:nth-child(2) { border-right: 0; }
  .perf-os__measures > div:nth-child(n + 3) { border-bottom: 0; }
  .perf-os__body { display: block; min-height: 0; }
  .perf-os__evidence { padding-bottom: 0; border-right: 0; border-bottom: 1px solid #ccd9e3; }
  .perf-os__evidence-list li { grid-template-columns: 34px minmax(0, 1fr) minmax(120px, auto); }
  .perf-os__asset { grid-column: auto; justify-self: end; margin-top: 0; }
  .perf-os__coaching-body { display: grid; grid-template-columns: 1fr 1fr; }
  .perf-os__coaching-body section { border-right: 1px solid #d2dfeb; border-bottom: 0; }
  .perf-os__coaching-body section:last-child { border-right: 0; }
}

@media (min-width: 901px) and (max-height: 820px) {
  .performance-os { padding: 40px 0 46px; }
  .perf-os__intro h2 { font-size: clamp(40px, 3.55vw, 50px); line-height: 0.92; }
  .perf-os__brief p { font-size: 13px; line-height: 1.42; }
  .perf-os__brief strong { margin-top: 9px; padding-top: 8px; font-size: 9px; }
  .perf-os__review { margin-top: 24px; }
  .perf-os__review-head { min-height: 62px; }
  .perf-os__identity { padding-top: 10px; padding-bottom: 10px; }
  .perf-os__identity h3 { font-size: 24px; }
  .perf-os__scoreline { min-height: 92px; }
  .perf-os__measures > div { padding-top: 11px; padding-bottom: 11px; }
  .perf-os__measures dd { font-size: 25px; }
  .perf-os__body { min-height: 276px; }
  .perf-os__evidence { padding-top: 14px; }
  .perf-os__panel-head { min-height: 37px; padding-bottom: 8px; }
  .perf-os__evidence-list li { min-height: 68px; }
  .perf-os__coaching-head { padding-top: 14px; padding-bottom: 11px; }
  .perf-os__coaching-body section { padding-top: 11px; padding-bottom: 10px; }
  .perf-os__coaching-body strong { margin-top: 7px; }
  .perf-os__focus { padding-top: 10px; padding-bottom: 11px; }
  .perf-os__result { min-height: 50px; padding-top: 9px; padding-bottom: 9px; }
}

@media (max-width: 700px) {
  .performance-os { padding: 50px 0 54px; }
  .perf-os__shell { width: calc(100% - 28px); }
  .perf-os__atmosphere b { display: none; }
  .performance-os::before,
  .perf-os__atmosphere i { filter: blur(18px); opacity: 0.68; }
  .perf-os__index { margin-bottom: 15px; font-size: 9px; }
  .perf-os__intro h2 {
    font-size: clamp(34px, 10vw, 40px);
    line-height: 0.94;
    letter-spacing: -0.055em;
  }
  .perf-os__brief { margin-top: 22px; padding-left: 16px; }
  .perf-os__brief p { font-size: 14px; line-height: 1.48; }
  .perf-os__brief strong { margin-top: 13px; padding-top: 11px; font-size: 9.5px; }
  .perf-os__review { margin-top: 28px; }
  .perf-os__review-head { display: block; }
  .perf-os__identity { padding: 16px; border-right: 0; }
  .perf-os__identity h3 { font-size: 25px; }
  .perf-os__scope { border-right: 0; border-bottom: 1px solid #d7e1e9; }
  .perf-os__scope > div { min-height: 64px; padding: 12px 16px; }
  .perf-os__state { padding: 14px 16px; }
  .perf-os__scoreline > header { min-height: 68px; padding: 14px 16px; }
  .perf-os__scoreline > header h4 { font-size: 17px; }
  .perf-os__measures > div { min-height: 82px; padding: 13px 14px; }
  .perf-os__measures dt { font-size: 8px; }
  .perf-os__measures dd { font-size: clamp(23px, 7.2vw, 28px); }
  .perf-os__measures small { font-size: 8.5px; }
  .perf-os__evidence { padding: 18px 16px 0; }
  .perf-os__panel-head { display: block; min-height: 0; padding-bottom: 13px; }
  .perf-os__panel-head h4 { margin-top: 6px; font-size: 20px; }
  .perf-os__evidence-list li {
    grid-template-columns: 32px minmax(0, 1fr);
    min-height: 112px;
    gap: 10px;
    padding: 12px 0;
  }
  .perf-os__evidence-list li > div p { display: block; }
  .perf-os__evidence-list time { display: block; margin-top: 3px; }
  .perf-os__evidence-list b,
  .perf-os__evidence-list small { overflow: visible; text-overflow: clip; white-space: normal; }
  .perf-os__asset { grid-column: 2; justify-self: start; margin-top: -5px; }
  .perf-os__coaching-head { padding: 18px 16px 14px; }
  .perf-os__coaching-head h4 { font-size: 20px; }
  .perf-os__coaching-body { display: block; }
  .perf-os__coaching-body section { padding: 16px; border-right: 0; border-bottom: 1px solid #d2dfeb; }
  .perf-os__coaching-body section:last-child { border-bottom: 0; }
  .perf-os__coaching-body strong { font-size: 12px; }
  .perf-os__coaching-body small { font-size: 10px; }
  .perf-os__focus { padding: 15px 16px 16px; }
  .perf-os__focus strong { font-size: 13px; }
  .perf-os__result { display: block; min-height: 0; padding: 16px; }
  .perf-os__result p { font-size: 12.5px; line-height: 1.45; }
  .perf-os__result > span { display: block; margin-top: 11px; font-size: 7.5px; white-space: normal; }
}

@media (max-width: 350px) {
  .perf-os__shell { width: calc(100% - 24px); }
  .perf-os__intro h2 { font-size: 34px; }
  .perf-os__state { display: block; }
  .perf-os__state p { margin-top: 7px; }
  .perf-os__state time { display: block; margin-top: 7px; }
  .perf-os__measures > div { padding-right: 10px; padding-left: 10px; }
  .perf-os__measures dd { font-size: 23px; }
}

@media (forced-colors: active) {
  .performance-os::before,
  .perf-os__atmosphere { display: none; }

  .performance-os,
  .perf-os__review,
  .perf-os__review-head,
  .perf-os__scoreline,
  .perf-os__scoreline > header,
  .perf-os__measures > div,
  .perf-os__evidence,
  .perf-os__coaching,
  .perf-os__coaching-body section,
  .perf-os__focus,
  .perf-os__result {
    border-color: CanvasText;
    color: CanvasText;
    background: Canvas;
    box-shadow: none;
  }

  .perf-os__measure--primary dt,
  .perf-os__measure--primary dd,
  .perf-os__measure--primary small,
  .perf-os__focus p,
  .perf-os__focus strong { color: CanvasText; }
}

/* Tablets still have room for the manager instrument; do not inflate it before mobile. */
@media (min-width: 761px) and (max-width: 900px) {
  .perf-os__intro {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .perf-os__index { grid-column: 1 / 4; margin-bottom: 16px; }
  .perf-os__intro h2 { grid-column: 1 / 9; }
  .perf-os__brief {
    grid-column: 9 / 13;
    max-width: none;
    margin-top: 0;
    padding: 2px 0 3px 18px;
  }

  .perf-os__review-head {
    grid-template-columns: minmax(180px, 0.78fr) minmax(210px, 1fr) minmax(220px, 1.08fr);
  }

  .perf-os__identity { border-bottom: 0; }
  .perf-os__scope { border-right: 1px solid #d7e1e9; border-bottom: 0; }
  .perf-os__state { grid-column: auto; }

  .perf-os__scoreline {
    display: grid;
    grid-template-columns: minmax(165px, 0.54fr) minmax(0, 2.46fr);
  }

  .perf-os__scoreline > header {
    min-height: 0;
    border-right: 1px solid #d3dee7;
    border-bottom: 0;
  }

  .perf-os__measures { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .perf-os__measures > div,
  .perf-os__measures > div:nth-child(n + 3) {
    min-height: 0;
    border-right: 1px solid #d6e0e8;
    border-bottom: 0;
  }
  .perf-os__measures > div:last-child { border-right: 0; }

  .perf-os__body {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(285px, 0.75fr);
  }

  .perf-os__evidence {
    border-right: 1px solid #ccd9e3;
    border-bottom: 0;
  }

  .perf-os__evidence-list li { grid-template-columns: 32px minmax(0, 1fr); }
  .perf-os__asset { grid-column: 2; justify-self: start; margin-top: -8px; }
  .perf-os__coaching-body { display: block; }
  .perf-os__coaching-body section { border-right: 0; border-bottom: 1px solid #d2dfeb; }
  .perf-os__coaching-body section:last-child { border-bottom: 0; }
}

/* Pricing closes the product story with one commercial system, not a tier wall. */
.pricing-os {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 52px 0 58px;
  scroll-margin-top: 104px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.96)),
    #f8fafc;
}

@supports (overflow: clip) {
  .pricing-os { overflow: clip; }
}

.pricing-os::before {
  position: absolute;
  top: -34%;
  right: -18%;
  z-index: -2;
  width: 72%;
  height: 128%;
  background: linear-gradient(138deg, rgba(7, 95, 242, 0), rgba(7, 95, 242, 0.085) 52%, rgba(90, 159, 255, 0.025) 76%, rgba(7, 95, 242, 0));
  filter: blur(30px);
  transform: rotate(-7deg);
  content: "";
}

.price-os__atmosphere {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.price-os__atmosphere i,
.price-os__atmosphere b {
  position: absolute;
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(7, 95, 242, 0.32), transparent);
  content: "";
}

.price-os__atmosphere i {
  top: 22%;
  right: -6%;
  width: 46%;
  transform: rotate(-7deg);
}

.price-os__atmosphere b {
  right: 13%;
  bottom: 13%;
  width: 26%;
  opacity: 0.48;
  transform: rotate(-7deg);
}

.price-os__shell {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100% - clamp(64px, 6vw, 104px)));
  margin: 0 auto;
}

.price-os__intro {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 22px;
  align-items: end;
}

.price-os__index {
  grid-column: 1 / 4;
  margin: 0 0 17px;
  color: #516876;
  font-size: 9.5px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-os__index span { color: var(--cobalt); }

.price-os__intro h2 {
  grid-column: 1 / 9;
  margin: 0;
  font-size: clamp(46px, 4vw, 58px);
  font-weight: 690;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.price-os__intro h2 span,
.price-os__intro h2 strong { display: block; }
.price-os__intro h2 span { color: #233a48; font-weight: 610; }
.price-os__intro h2 strong { color: var(--cobalt); font-weight: 790; }

.price-os__brief {
  grid-column: 9 / 13;
  padding: 2px 0 3px 20px;
  border-left: 1px solid #cfd9e2;
}

.price-os__brief p {
  margin: 0;
  color: #4d6270;
  font-size: 14px;
  line-height: 1.5;
}

.price-os__brief > strong {
  display: block;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #d9e1e8;
  color: #244052;
  font-size: 9.5px;
  font-weight: 760;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.price-os__plan {
  overflow: hidden;
  margin-top: 30px;
  border: 1px solid #cedae4;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(18, 49, 72, 0.1), 0 8px 24px rgba(7, 95, 242, 0.055);
}

.price-os__plan-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-height: 68px;
  padding: 12px 22px;
  border-bottom: 1px solid #d4dee7;
  background: rgba(255, 255, 255, 0.88);
}

.price-os__plan-head > div:first-child p,
.price-os__plan-head h3 { margin: 0; }

.price-os__plan-head > div:first-child p {
  color: #657987;
  font-size: 9px;
  font-weight: 780;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.price-os__plan-head > div:first-child p span { color: var(--cobalt); }

.price-os__plan-head h3 {
  margin-top: 5px;
  color: var(--ink);
  font-size: 23px;
  font-weight: 730;
  letter-spacing: -0.035em;
}

.price-os__plan-state {
  display: grid;
  grid-template-columns: auto auto;
  gap: 4px 17px;
  align-items: center;
  min-width: 250px;
  padding-left: 20px;
  border-left: 1px solid #d9e1e8;
}

.price-os__plan-state span {
  grid-row: 1 / 3;
  color: #234454;
  font-size: 10px;
  font-weight: 740;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-os__plan-state i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  background: var(--cobalt);
  box-shadow: 0 0 0 4px rgba(7, 95, 242, 0.09);
}

.price-os__plan-state small {
  grid-column: 2;
  color: #667a87;
  font-size: 9px;
}

.price-os__plan-body {
  display: grid;
  grid-template-columns: minmax(290px, 0.78fr) minmax(300px, 0.9fr) minmax(350px, 1.1fr);
  min-height: 314px;
}

.price-os__base,
.price-os__scale,
.price-os__included { min-width: 0; }

.price-os__base {
  display: flex;
  flex-direction: column;
  padding: 24px 25px 22px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(71, 142, 255, 0.2), transparent 42%),
    var(--cobalt);
  box-shadow: inset -1px 0 rgba(4, 55, 145, 0.34), inset 0 1px rgba(255, 255, 255, 0.22);
}

.price-os__base > p:first-child,
.price-os__scale header > p,
.price-os__included header > p {
  margin: 0;
  font-size: 8.5px;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.price-os__base > p:first-child { color: rgba(255, 255, 255, 0.86); }

.price-os__amount {
  display: flex;
  align-items: flex-end;
  margin-top: 14px;
  font-variant-numeric: tabular-nums;
  line-height: 0.8;
}

.price-os__amount sup {
  align-self: flex-start;
  margin-top: 7px;
  font-size: 25px;
  font-weight: 680;
}

.price-os__amount strong {
  font-size: clamp(62px, 5.35vw, 78px);
  font-weight: 780;
  letter-spacing: -0.075em;
}

.price-os__amount span {
  margin: 0 0 4px 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 660;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-os__base-copy {
  max-width: 33ch;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 11.5px;
  line-height: 1.5;
}

.price-os__cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 45px;
  align-items: stretch;
  min-height: 48px;
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 4px;
  color: #06234f;
  background: #fff;
  font-size: 12px;
  font-weight: 720;
  transition: color 170ms ease, background 170ms ease, transform 170ms ease;
}

.price-os__cta span { display: flex; align-items: center; padding: 0 14px; }
.price-os__cta i {
  display: grid;
  place-items: center;
  border-left: 1px solid #ccdaeb;
  color: var(--cobalt);
  font-size: 18px;
  font-style: normal;
}

.price-os__cta:hover { color: var(--cobalt); background: #f7faff; transform: translateY(-1px); }
.price-os__cta:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }

.price-os__login {
  align-self: flex-start;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 9px;
  font-weight: 620;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.price-os__scale {
  padding: 24px 23px 20px;
  border-right: 1px solid #d2dde6;
  background: linear-gradient(180deg, #f8fbff, #f2f6fb);
}

.price-os__scale header > p,
.price-os__included header > p { color: #637988; }

.price-os__scale h4,
.price-os__included h4 { margin: 6px 0 0; }

.price-os__scale h4 {
  color: #3c5362;
  font-size: 12px;
  font-weight: 620;
  line-height: 1.25;
}

.price-os__scale h4 strong {
  display: block;
  color: var(--ink);
  font-size: 34px;
  font-weight: 760;
  letter-spacing: -0.05em;
  line-height: 1;
}

.price-os__scale h4 span {
  color: #647784;
  font-size: 9px;
  font-weight: 650;
  text-transform: uppercase;
}

.price-os__examples {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 20px 0 0;
  border-top: 1px solid #ccd8e2;
  border-left: 1px solid #ccd8e2;
}

.price-os__examples > div {
  min-width: 0;
  padding: 11px 12px;
  border-right: 1px solid #ccd8e2;
  border-bottom: 1px solid #ccd8e2;
}

.price-os__examples dt {
  color: #677b88;
  font-size: 8px;
  font-weight: 730;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.price-os__examples dd {
  margin: 5px 0 0;
  color: #102633;
  font-size: 18px;
  font-weight: 730;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.025em;
}

.price-os__formula {
  margin: 16px 0 0;
  color: #607582;
  font-size: 9px;
  line-height: 1.35;
}

.price-os__formula span,
.price-os__formula strong { display: block; }
.price-os__formula span { font-weight: 720; letter-spacing: 0.08em; text-transform: uppercase; }
.price-os__formula strong { margin-top: 4px; color: #264555; font-size: 10px; font-weight: 670; }

.price-os__included {
  padding: 24px 25px 20px;
  background: #fff;
}

.price-os__included h4 {
  color: var(--ink);
  font-size: 19px;
  font-weight: 710;
  letter-spacing: -0.035em;
}

.price-os__included ul {
  margin: 18px 0 0;
  padding: 0;
  border-top: 1px solid #d4dee6;
  list-style: none;
}

.price-os__included li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  min-height: 47px;
  border-bottom: 1px solid #dbe3e9;
}

.price-os__included li span {
  color: var(--cobalt);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.price-os__included li strong {
  color: #2a414f;
  font-size: 11px;
  font-weight: 630;
  line-height: 1.35;
}

.price-os__terms {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(330px, 1.35fr);
  min-height: 54px;
  border-top: 1px solid #ccd8e2;
  background: #f8fafc;
}

.price-os__terms p,
.price-os__terms small {
  display: flex;
  align-items: center;
  min-width: 0;
  margin: 0;
  padding: 10px 16px;
}

.price-os__terms p {
  border-right: 1px solid #d4dee6;
  color: #435b69;
  font-size: 9px;
  font-weight: 640;
  white-space: nowrap;
}

.price-os__terms p span {
  margin-right: 7px;
  color: var(--cobalt);
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-os__terms small {
  color: #687b87;
  font-size: 8px;
  line-height: 1.35;
}

/* The page ends like the product begins: one calm command rail. */
.site-footer {
  position: relative;
  color: var(--ink);
  background: #fff;
  border-top: 1px solid #cbd8e2;
}

.site-footer::before {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--cobalt) 0 12%, rgba(7, 95, 242, 0.16) 12% 66%, transparent 90%);
  content: "";
}

.footer-shell,
.footer-bottom {
  width: min(1320px, calc(100% - clamp(64px, 6vw, 104px)));
  margin: 0 auto;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(470px, 1.55fr) minmax(250px, 0.8fr);
  align-items: center;
  gap: 34px;
  min-height: 128px;
  padding: 25px 0 22px;
}

.footer-brand {
  display: grid;
  justify-items: start;
}

.footer-brand > a {
  display: grid;
  place-items: center;
  width: 190px;
  min-height: 48px;
  padding: 0 13px;
  border-radius: 4px;
  background: var(--navy-900);
  box-shadow: 0 8px 24px rgba(6, 21, 33, 0.12);
}

.footer-brand img { display: block; width: 162px; height: auto; }
.footer-brand p {
  margin: 12px 0 0;
  color: #243c4b;
  font-size: 11px;
  font-weight: 720;
  letter-spacing: -0.01em;
}
.footer-brand > span {
  margin-top: 4px;
  color: #657985;
  font-size: 9px;
  line-height: 1.35;
}

.footer-product {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-self: stretch;
  border-right: 1px solid #d8e1e8;
  border-left: 1px solid #d8e1e8;
}

.footer-product a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0 9px;
  border-right: 1px solid #e1e7ec;
  color: #506571;
  font-size: 10px;
  font-weight: 650;
  text-align: center;
  transition: color 160ms ease, background 160ms ease;
}

.footer-product a:last-child { border-right: 0; }
.footer-product a:hover { color: var(--cobalt); background: #f7faff; }

.footer-actions {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  border: 1px solid #cfdae3;
  border-radius: 4px;
}

.footer-actions a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 13px;
  color: #284451;
  background: #fff;
  font-size: 10px;
  font-weight: 700;
}

.footer-actions a + a {
  border-left: 1px solid #0751cc;
  color: #fff;
  background: var(--cobalt);
}

.footer-actions span { font-size: 14px; }

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 45px;
  border-top: 1px solid #dce4ea;
}

.footer-bottom p { margin: 0; color: #687b87; font-size: 8.5px; }
.footer-bottom > p:nth-child(2) {
  color: #4c626f;
  font-size: 7.5px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-bottom > p:nth-child(2) span { margin: 0 7px; color: var(--cobalt); }

.footer-bottom nav {
  display: flex;
  justify-self: end;
  gap: 20px;
}

.footer-bottom a {
  color: #506571;
  font-size: 8.5px;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.footer-bottom a:hover { color: var(--cobalt); text-decoration-color: currentColor; }

.footer-product a:focus-visible,
.footer-actions a:focus-visible,
.footer-bottom a:focus-visible {
  outline: 3px solid var(--cobalt);
  outline-offset: -3px;
}

@media (min-width: 901px) and (max-height: 820px) {
  .pricing-os { padding: 40px 0 44px; }
  .price-os__intro h2 { font-size: clamp(40px, 3.55vw, 50px); }
  .price-os__brief p { font-size: 13px; line-height: 1.42; }
  .price-os__brief > strong { margin-top: 9px; padding-top: 8px; font-size: 9px; }
  .price-os__plan { margin-top: 24px; }
  .price-os__plan-head { min-height: 60px; padding-top: 9px; padding-bottom: 9px; }
  .price-os__plan-head h3 { font-size: 21px; }
  .price-os__plan-body { min-height: 268px; }
  .price-os__base,
  .price-os__scale,
  .price-os__included { padding-top: 19px; padding-bottom: 17px; }
  .price-os__amount strong { font-size: 62px; }
  .price-os__base-copy { margin-top: 14px; }
  .price-os__examples { margin-top: 14px; }
  .price-os__examples > div { padding-top: 8px; padding-bottom: 8px; }
  .price-os__included ul { margin-top: 13px; }
  .price-os__included li { min-height: 40px; }
  .price-os__terms { min-height: 48px; }
  .footer-shell { min-height: 112px; padding-top: 18px; padding-bottom: 17px; }
  .footer-bottom { min-height: 40px; }
}

@media (min-width: 701px) and (max-width: 1100px) {
  .pricing-os { padding: 54px 0 58px; }
  .price-os__shell,
  .footer-shell,
  .footer-bottom { width: calc(100% - 56px); }
  .price-os__intro h2 { font-size: clamp(43px, 5.5vw, 56px); }
  .price-os__brief { padding-left: 17px; }
  .price-os__plan { margin-top: 30px; }
  .price-os__plan-body { grid-template-columns: minmax(245px, 0.78fr) minmax(230px, 0.83fr) minmax(270px, 1.04fr); }
  .price-os__base,
  .price-os__scale,
  .price-os__included { padding-right: 18px; padding-left: 18px; }
  .price-os__amount strong { font-size: clamp(56px, 7vw, 70px); }
  .price-os__included h4 { font-size: 17px; }
  .price-os__terms { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .price-os__terms small { grid-column: 1 / -1; min-height: 36px; border-top: 1px solid #d4dee6; }
  .footer-shell { grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.45fr); gap: 24px; }
  .footer-product { min-height: 62px; }
  .footer-actions { grid-column: 2; justify-self: end; width: min(100%, 310px); margin-top: -42px; }
  .footer-bottom { grid-template-columns: 1fr auto; }
  .footer-bottom > p:nth-child(2) { display: none; }
}

@media (max-width: 900px) {
  .price-os__intro { display: block; }
  .price-os__index { margin-bottom: 16px; }
  .price-os__intro h2 { max-width: 760px; }
  .price-os__brief { max-width: 620px; margin-top: 22px; padding: 0 0 2px 20px; }
  .price-os__plan-body { grid-template-columns: minmax(230px, 0.7fr) minmax(0, 1.3fr); }
  .price-os__base { grid-row: 1 / 3; }
  .price-os__scale { border-right: 0; border-bottom: 1px solid #d2dde6; }
  .price-os__included { grid-column: 2; }
}

@media (max-width: 760px) {
  .footer-shell { display: block; padding: 28px 0 24px; }
  .footer-brand { padding-bottom: 22px; }
  .footer-product { min-height: 58px; border-top: 1px solid #d8e1e8; border-bottom: 1px solid #d8e1e8; }
  .footer-actions { width: 100%; margin-top: 20px; }
}

@media (max-width: 700px) {
  .pricing-os { padding: 50px 0 54px; }
  .price-os__shell,
  .footer-shell,
  .footer-bottom { width: calc(100% - 28px); }
  .pricing-os::before { top: 12%; right: -54%; width: 146%; height: 75%; filter: blur(22px); }
  .price-os__atmosphere b { display: none; }
  .price-os__intro h2 { font-size: clamp(34px, 10vw, 40px); line-height: 0.94; }
  .price-os__brief { margin-top: 22px; padding-left: 16px; }
  .price-os__brief p { font-size: 14px; line-height: 1.48; }
  .price-os__brief > strong { margin-top: 13px; padding-top: 11px; font-size: 9.5px; }
  .price-os__plan { margin-top: 28px; }
  .price-os__plan-head { display: block; padding: 15px 16px; }
  .price-os__plan-head h3 { font-size: 21px; }
  .price-os__plan-state { display: flex; min-width: 0; margin-top: 13px; padding: 11px 0 0; border-top: 1px solid #d9e1e8; border-left: 0; }
  .price-os__plan-state small { margin-left: auto; }
  .price-os__plan-body { display: block; min-height: 0; }
  .price-os__base,
  .price-os__scale,
  .price-os__included { padding: 22px 18px 20px; }
  .price-os__amount strong { font-size: clamp(64px, 18vw, 82px); }
  .price-os__base-copy { font-size: 12px; }
  .price-os__cta { margin-top: 24px; }
  .price-os__scale { border-right: 0; border-bottom: 1px solid #d2dde6; }
  .price-os__included h4 { font-size: 19px; }
  .price-os__included li { min-height: 49px; }
  .price-os__terms { display: block; }
  .price-os__terms p,
  .price-os__terms small { min-height: 42px; padding-right: 16px; padding-left: 16px; }
  .price-os__terms p { border-right: 0; border-bottom: 1px solid #d4dee6; white-space: normal; }
  .site-footer { padding-bottom: max(0px, env(safe-area-inset-bottom)); }
  .footer-shell { padding-top: 30px; }
  .footer-brand > span { font-size: 10px; }
  .footer-product {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
  }
  .footer-product a { justify-content: flex-start; min-height: 44px; padding: 0 12px; border-bottom: 1px solid #e1e7ec; text-align: left; }
  .footer-product a:nth-child(2n) { border-right: 0; }
  .footer-product a:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .footer-actions a { min-height: 50px; }
  .footer-bottom { display: block; padding: 16px 0 20px; }
  .footer-bottom > p:nth-child(2) { display: none; }
  .footer-bottom nav { justify-content: flex-start; margin-top: 13px; }
  .footer-bottom a { display: inline-flex; align-items: center; min-height: 36px; font-size: 10px; }
}

@media (max-width: 350px) {
  .price-os__shell,
  .footer-shell,
  .footer-bottom { width: calc(100% - 24px); }
  .price-os__intro h2 { font-size: 34px; }
  .price-os__amount { flex-wrap: wrap; }
  .price-os__amount strong { font-size: 64px; }
  .price-os__amount span { flex-basis: 100%; margin: 9px 0 0; line-height: 1; }
  .price-os__examples > div { padding-right: 9px; padding-left: 9px; }
  .footer-actions { display: block; }
  .footer-actions a + a { border-top: 1px solid #0751cc; border-left: 0; }
}

@media (forced-colors: active) {
  .pricing-os::before,
  .price-os__atmosphere,
  .site-footer::before { display: none; }

  .pricing-os,
  .price-os__plan,
  .price-os__plan-head,
  .price-os__base,
  .price-os__scale,
  .price-os__included,
  .price-os__terms,
  .price-os__examples > div,
  .site-footer,
  .footer-brand > a,
  .footer-product,
  .footer-actions,
  .footer-actions a {
    border-color: CanvasText;
    color: CanvasText;
    background: Canvas;
    box-shadow: none;
  }

  .price-os__base > *,
  .price-os__cta,
  .footer-actions a + a { color: CanvasText; background: Canvas; }
}

/* Final mobile composition + dark closing system.
   Phone layouts are deliberately recomposed; they are not scaled desktop panels. */
.site-footer {
  --footer-bg: #050b10;
  color: #fff;
  border-top: 0;
  background: var(--footer-bg);
}

.site-footer::before {
  height: 1px;
  background: linear-gradient(
    90deg,
    #2e73ff 0 96px,
    rgba(46, 115, 255, 0.36) 96px 36%,
    rgba(255, 255, 255, 0.08) 70%,
    transparent
  );
}

.footer-brand > a {
  width: 184px;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-brand img { width: 168px; }
.footer-brand p { color: #dbe5eb; }
.footer-brand > span,
.footer-bottom p { color: #8fa3ae; }

.footer-product {
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.035);
}

.footer-product a {
  border-color: rgba(255, 255, 255, 0.09);
  color: #b9c8d0;
}

.footer-product a:hover {
  color: #fff;
  background: rgba(46, 115, 255, 0.1);
}

.footer-actions {
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.footer-actions a {
  color: #dbe5eb;
  background: #09131a;
}

.footer-actions a + a {
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  background: #075ff2;
}

.footer-bottom { border-color: rgba(255, 255, 255, 0.1); }
.footer-bottom > p:nth-child(2),
.footer-bottom a { color: #9dafb9; }
.footer-bottom a:hover { color: #fff; }

.footer-product a:focus-visible,
.footer-actions a:focus-visible,
.footer-bottom a:focus-visible {
  outline: 2px solid #78a5ff;
  outline-offset: -2px;
}

@media (max-width: 700px) {
  /* Mobile scene rhythm */
  .hero-shell { padding: 94px 0 36px; }
  .hero-kicker { margin-bottom: 15px; }
  .hero-description {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.48;
  }
  .hero-actions { margin-top: 20px; }
  .primary-cta,
  .secondary-cta { min-height: 56px; }
  .record-stage { margin-top: 28px; }
  .record-header { min-height: 70px; }
  .record-body { min-height: 300px; }
  .conversation-stream,
  .memory-core,
  .next-move { min-height: 300px; }

  .platform-os,
  .sales-memory-os,
  .automation-os,
  .performance-os,
  .pricing-os { padding: 38px 0 42px; }

  .platform-os__shell,
  .sm-os__shell,
  .auto-os__shell,
  .perf-os__shell,
  .price-os__shell {
    width: calc(100% - 24px);
  }

  .platform-os__index,
  .sm-os__index,
  .auto-os__index,
  .perf-os__index,
  .price-os__index { margin-bottom: 12px; }

  .platform-os__intro h2,
  .sm-os__intro h2,
  .auto-os__intro h2,
  .perf-os__intro h2,
  .price-os__intro h2 {
    font-size: clamp(33px, 9.5vw, 38px);
    line-height: 0.94;
    letter-spacing: -0.055em;
  }

  .platform-os__brief,
  .sm-os__brief,
  .auto-os__brief,
  .perf-os__brief,
  .price-os__brief {
    margin-top: 16px;
    padding: 0 0 0 14px;
  }

  .platform-os__brief > p,
  .sm-os__brief p,
  .auto-os__brief p,
  .perf-os__brief p,
  .price-os__brief p {
    font-size: 13.5px;
    line-height: 1.45;
  }

  .platform-os__brief > div,
  .sm-os__brief > strong,
  .auto-os__brief > strong,
  .perf-os__brief > strong,
  .price-os__brief > strong { display: none; }

  .platform-os__record,
  .sm-os__instrument,
  .auto-os__runway,
  .perf-os__review,
  .price-os__plan { margin-top: 22px; }

  /* Phone reveals should never leave proof content dimmed or waiting offscreen. */
  .platform-os--motion .platform-os__signal,
  .platform-os--motion .platform-os__memory-fact,
  .platform-os--motion .platform-os__appointment,
  .platform-os--motion .platform-os__reply,
  .platform-os--motion .platform-os__sequence li,
  .sm-os--motion .sm-os__evidence-item,
  .sm-os--motion .sm-os__fact,
  .sm-os--motion .sm-os__handoff > *,
  .auto-os--motion .auto-os__step,
  .auto-os--motion .auto-os__reply,
  .auto-os--motion .auto-os__result > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .platform-os__packet,
  .sm-os__packet,
  .auto-os__runner,
  .auto-os__reply-sheen { display: none; }

  .sm-os--motion.is-in-view .sm-os__atmosphere i,
  .auto-os--motion.is-in-view:not(.is-lite) .auto-os__atmosphere i {
    animation: none;
    will-change: auto;
  }

  /* Platform becomes a compact operating console. */
  .platform-os__record {
    overflow: hidden;
    border-radius: 6px;
  }

  .platform-os__identity {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(124px, 0.72fr);
    align-items: center;
    min-height: 70px;
    padding: 12px 14px;
  }

  .platform-os__identity h3 { margin-top: 4px; font-size: 22px; }
  .platform-os__record-state {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    min-width: 0;
    margin: 0;
    padding: 0 0 0 12px;
    border-top: 0;
    border-left: 1px solid #d7e1e9;
  }
  .platform-os__record-state > span { display: none; }
  .platform-os__record-state p { font-size: 8px; line-height: 1.3; }
  .platform-os__record-state time { font-size: 8px; }
  .platform-os__continuity { display: none; }
  .platform-os__body { display: block; min-height: 0; }
  .platform-os__signals,
  .platform-os__memory,
  .platform-os__direction { padding: 14px; }
  .platform-os__panel-head,
  .platform-os__memory-head { min-height: 0; }
  .platform-os__panel-head h4 { margin-top: 4px; font-size: 16px; }
  .platform-os__signal-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 12px;
    border-top: 1px solid #d7e1e9;
  }
  .platform-os__signal {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    align-content: start;
    min-height: 86px;
    gap: 8px;
    padding: 12px 8px;
    border-right: 1px solid #d7e1e9;
    border-bottom: 0;
  }
  .platform-os__signal:last-child { border-right: 0; }
  .platform-os__signal-code { width: 25px; height: 25px; font-size: 7px; }
  .platform-os__signal strong { font-size: 10.5px; line-height: 1.25; }
  .platform-os__signal small { margin-top: 3px; font-size: 8px; line-height: 1.25; }
  .platform-os__signal time { display: none; }
  .platform-os__memory { border-top: 1px solid #cfdbe6; }
  .platform-os__memory-head h4 { max-width: 14ch; font-size: 23px; line-height: 0.96; }
  .platform-os__memory-ledger {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 14px;
    border-top: 1px solid #cfdae4;
  }
  .platform-os__memory-fact {
    display: block;
    min-height: 82px;
    padding: 11px 8px;
    border-right: 1px solid #cfdae4;
    border-bottom: 0;
  }
  .platform-os__memory-fact:last-child { border-right: 0; }
  .platform-os__memory-fact dt { font-size: 7px; line-height: 1.25; }
  .platform-os__memory-fact dt span { display: block; margin-bottom: 5px; }
  .platform-os__memory-fact dd { margin-top: 8px; font-size: 13px; line-height: 1.18; }
  .platform-os__memory-note { margin-top: 9px; font-size: 8.5px; }
  .platform-os__direction {
    display: grid;
    grid-template-columns: minmax(0, 1.32fr) minmax(112px, 0.68fr);
    gap: 10px;
    border-top: 1px solid #cfdae4;
  }
  .platform-os__direction .platform-os__panel-head { grid-column: 1 / -1; }
  .platform-os__appointment {
    min-height: 128px;
    margin: 0;
    padding: 15px 42px 14px 14px;
  }
  .platform-os__appointment > span { margin-top: 14px; font-size: 8px; }
  .platform-os__appointment > strong { font-size: 31px; }
  .platform-os__appointment > small { margin-top: 8px; font-size: 7.5px; }
  .platform-os__appointment > i { right: 12px; width: 28px; height: 28px; }
  .platform-os__reply {
    display: flex;
    min-height: 128px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 12px;
  }
  .platform-os__reply > span { width: 28px; height: 28px; }
  .platform-os__reply strong { font-size: 10px; line-height: 1.25; }
  .platform-os__reply small { font-size: 8px; line-height: 1.3; }
  .platform-os__automation { display: block; min-height: 0; }
  .platform-os__automation-intro { padding: 13px 14px; }
  .platform-os__automation-intro h4 { margin-top: 4px; font-size: 16px; }
  .platform-os__sequence { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .platform-os__sequence li {
    min-height: 70px;
    padding: 10px 8px;
  }
  .platform-os__sequence li > span { font-size: 7px; }
  .platform-os__sequence li > strong { margin-top: 6px; font-size: 9px; line-height: 1.2; }
  .platform-os__sequence li > small { margin-top: 3px; font-size: 7.5px; }
  .platform-os__record-footer { display: none; }

  /* Sales Memory uses evidence rows feeding a two-by-two durable-memory grid. */
  .sm-os__instrument { border-radius: 6px; }
  .sm-os__identity {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(128px, 0.76fr);
    align-items: center;
    min-height: 70px;
    padding: 12px 14px;
  }
  .sm-os__identity h3 { margin-top: 4px; font-size: 22px; }
  .sm-os__state {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    min-width: 0;
    margin: 0;
    padding: 0 0 0 12px;
    border-top: 0;
    border-left: 1px solid #d7e1e9;
  }
  .sm-os__state > span { grid-column: 1 / -1; font-size: 7.5px; }
  .sm-os__state p { font-size: 8px; }
  .sm-os__state time { font-size: 8px; }
  .sm-os__body { display: block; }
  .sm-os__evidence,
  .sm-os__memory { padding: 14px; }
  .sm-os__panel-head h4,
  .sm-os__memory-head h4 { margin-top: 4px; font-size: 22px; line-height: 0.98; }
  .sm-os__evidence-list { margin-top: 13px; }
  .sm-os__evidence-item,
  .sm-os__evidence-item:first-child,
  .sm-os__evidence-item:last-child {
    min-height: 66px;
    padding: 10px 0;
  }
  .sm-os__evidence-item > div span,
  .sm-os__evidence-item > div time { font-size: 7.5px; }
  .sm-os__evidence-item blockquote { margin-top: 7px; font-size: 14px; line-height: 1.25; }
  .sm-os__evidence-item blockquote > span { display: none; }
  .sm-os__evidence-item mark { white-space: normal; }
  .sm-os__memory { border-top: 1px solid #cfdbe6; }
  .sm-os__ledger {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 14px;
    border-top: 1px solid #cfdae4;
    border-left: 1px solid #cfdae4;
  }
  .sm-os__fact,
  .sm-os__fact:first-child {
    display: block;
    min-height: 90px;
    padding: 11px;
    border-right: 1px solid #cfdae4;
    border-bottom: 1px solid #cfdae4;
  }
  .sm-os__fact dt { font-size: 7px; line-height: 1.25; }
  .sm-os__fact dt span { display: block; margin-bottom: 5px; }
  .sm-os__fact dd,
  .sm-os__fact:first-child dd { margin-top: 8px; font-size: 14px; line-height: 1.2; }
  .sm-os__memory-status { margin-top: 10px; font-size: 8.5px; }
  .sm-os__handoff {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    min-height: 122px;
    gap: 14px;
    padding: 15px;
  }
  .sm-os__handoff h4 { margin-top: 5px; font-size: 20px; line-height: 1; }
  .sm-os__handoff > p { margin: 0; font-size: 11.5px; line-height: 1.42; }
  .sm-os__handoff > span { display: none; }

  /* Automation becomes a horizontal execution rail with one decisive stop event. */
  .auto-os__runway { border-radius: 0; }
  .auto-os__runway-head { display: block; min-height: 0; }
  .auto-os__runway-head > div:first-child { min-height: 64px; padding: 12px 14px; }
  .auto-os__runway-head h3 { margin-top: 4px; font-size: 22px; }
  .auto-os__guardrails { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .auto-os__guardrails > div { min-height: 58px; padding: 10px; }
  .auto-os__guardrails dt { font-size: 7px; }
  .auto-os__guardrails dd { margin-top: 6px; font-size: 9.5px; line-height: 1.25; }
  .auto-os__guardrail-stop dd { display: block; }
  .auto-os__guardrail-stop dd i { display: inline-block; width: 6px; height: 6px; margin-right: 5px; }
  .auto-os__execution-label { min-height: 34px; padding: 0 12px; font-size: 7px; }
  .auto-os__sequence--active { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .auto-os__step,
  .auto-os__sequence--active .auto-os__step {
    min-height: 116px;
    padding: 12px 9px 11px;
    border-right: 1px solid #d4dfe7;
    border-bottom: 0;
  }
  .auto-os__step-number { font-size: 7.5px; }
  .auto-os__step > p { margin-top: 12px; font-size: 7.5px; }
  .auto-os__step h4 { margin-top: 5px; font-size: 16px; line-height: 1.05; }
  .auto-os__step small { margin-top: 5px; font-size: 8px; line-height: 1.25; }
  .auto-os__step b { margin-top: auto; padding-top: 8px; font-size: 7px; }
  .auto-os__interruption { display: block; min-height: 0; }
  .auto-os__listening { max-width: none; padding: 12px 14px; font-size: 11px; }
  .auto-os__reply {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
    padding: 15px;
  }
  .auto-os__reply-source time { margin-top: 6px; font-size: 9px; }
  .auto-os__reply blockquote { font-size: 18px; line-height: 1.16; }
  .auto-os__resolution {
    grid-column: 1 / -1;
    margin-top: 2px;
    padding: 10px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    border-left: 0;
  }
  .auto-os__resolution span { font-size: 8px; }
  .auto-os__resolution span i { width: 24px; height: 24px; }
  .auto-os__resolution strong { margin-top: 7px; font-size: 10px; }
  .auto-os__future { display: block; min-height: 0; }
  .auto-os__future-label { min-height: 58px; padding: 11px 14px; border-right: 0; }
  .auto-os__future-label p { font-size: 8px; }
  .auto-os__future-label span { margin-top: 5px; font-size: 10px; }
  .auto-os__sequence--future { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .auto-os__sequence--future .auto-os__step {
    min-height: 92px;
    padding: 10px 12px;
  }
  .auto-os__sequence--future .auto-os__step > p { margin-top: 8px; }
  .auto-os__sequence--future .auto-os__step h4 { margin-top: 4px; font-size: 15px; }
  .auto-os__sequence--future .auto-os__step small { margin-top: 3px; font-size: 7.5px; }
  .auto-os__sequence--future .auto-os__step b { margin-top: 7px; font-size: 7px; }
  .auto-os__result {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(112px, 0.85fr);
    align-items: center;
    gap: 12px;
    min-height: 88px;
    padding: 13px 14px;
  }
  .auto-os__result h4 { font-size: 20px; line-height: 1; }
  .auto-os__result > div { margin: 0; }
  .auto-os__result > div p { min-height: 32px; padding: 6px 8px; font-size: 8px; }

  /* Performance keeps the manager story but uses compact evidence and paired coaching. */
  .perf-os__review { border-radius: 6px; }
  .perf-os__review-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(122px, 0.72fr);
  }
  .perf-os__identity { min-height: 64px; padding: 11px 14px; }
  .perf-os__identity h3 { margin-top: 4px; font-size: 22px; }
  .perf-os__scope { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .perf-os__scope > div { min-height: 64px; padding: 10px; }
  .perf-os__scope dt { font-size: 7px; }
  .perf-os__scope dd { margin-top: 6px; font-size: 10px; }
  .perf-os__state { grid-column: 1 / -1; min-height: 42px; padding: 9px 14px; }
  .perf-os__state > span { font-size: 7.5px; }
  .perf-os__state p { font-size: 8px; }
  .perf-os__state time { font-size: 7.5px; }
  .perf-os__scoreline > header { min-height: 54px; padding: 11px 14px; }
  .perf-os__scoreline > header h4 { margin-top: 4px; font-size: 15px; }
  .perf-os__measures > div { min-height: 74px; padding: 10px 12px; }
  .perf-os__measures dt { font-size: 7px; }
  .perf-os__measures dd { margin-top: 5px; font-size: 23px; }
  .perf-os__measures small { margin-top: 4px; font-size: 7.5px; }
  .perf-os__evidence { padding: 14px 14px 0; }
  .perf-os__panel-head { padding-bottom: 10px; }
  .perf-os__panel-head h4 { font-size: 18px; }
  .perf-os__evidence-list li {
    grid-template-columns: 28px minmax(0, 1fr) auto;
    min-height: 76px;
    gap: 9px;
    padding: 8px 0;
  }
  .perf-os__channel { width: 27px; height: 27px; font-size: 6.5px; }
  .perf-os__evidence-list li > div p { display: flex; }
  .perf-os__evidence-list time { display: block; margin: 0; font-size: 7.5px; }
  .perf-os__evidence-list b { margin-top: 4px; font-size: 9.5px; white-space: normal; }
  .perf-os__evidence-list small { margin-top: 2px; font-size: 8px; white-space: normal; }
  .perf-os__asset {
    grid-column: auto;
    align-self: center;
    justify-self: end;
    max-width: 74px;
    margin: 0;
    font-size: 7.5px;
    line-height: 1.25;
    text-align: right;
    white-space: normal;
  }
  .perf-os__coaching-head { padding: 14px; }
  .perf-os__coaching-head h4 { margin-top: 4px; font-size: 18px; }
  .perf-os__coaching-body { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .perf-os__coaching-body section {
    min-height: 166px;
    padding: 13px;
    border-right: 1px solid #d2dfeb;
    border-bottom: 0;
  }
  .perf-os__coaching-body section:last-child { border-right: 0; }
  .perf-os__coaching-body strong { margin-top: 8px; font-size: 10px; }
  .perf-os__coaching-body small { margin-top: 3px; font-size: 8.5px; line-height: 1.32; }
  .perf-os__focus { padding: 12px 14px; }
  .perf-os__focus strong { margin-top: 5px; font-size: 11px; }
  .perf-os__result { padding: 13px 14px; }
  .perf-os__result p { font-size: 11px; }
  .perf-os__result > span { display: none; }

  /* Pricing is reorganized into price, team math, inclusions, then terms. */
  .price-os__plan { border-radius: 6px; }
  .price-os__plan-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 66px;
    padding: 11px 14px;
  }
  .price-os__plan-head h3 { margin-top: 4px; font-size: 19px; }
  .price-os__plan-state {
    display: block;
    min-width: 0;
    margin: 0;
    padding: 0 0 0 12px;
    border-top: 0;
    border-left: 1px solid #d9e1e8;
  }
  .price-os__plan-state span { font-size: 8px; }
  .price-os__plan-state small { display: none; }
  .price-os__base { min-height: 270px; padding: 18px; }
  .price-os__amount { margin-top: 11px; }
  .price-os__amount strong { font-size: clamp(62px, 18vw, 72px); }
  .price-os__base-copy { max-width: 38ch; margin-top: 16px; font-size: 11.5px; }
  .price-os__cta { margin-top: 18px; }
  .price-os__scale {
    display: grid;
    grid-template-columns: minmax(112px, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: 14px;
    padding: 16px;
  }
  .price-os__scale h4 strong { font-size: 30px; }
  .price-os__examples { margin-top: 0; }
  .price-os__examples > div { padding: 8px 9px; }
  .price-os__examples dd { font-size: 15px; }
  .price-os__formula { grid-column: 1 / -1; margin-top: 0; padding-top: 10px; border-top: 1px solid #ccd8e2; }
  .price-os__included { padding: 16px; }
  .price-os__included h4 { margin-top: 4px; font-size: 17px; }
  .price-os__included ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 12px;
    border-left: 1px solid #d4dee6;
  }
  .price-os__included li {
    grid-template-columns: 20px minmax(0, 1fr);
    min-height: 64px;
    padding: 8px;
    border-right: 1px solid #d4dee6;
  }
  .price-os__included li strong { font-size: 9px; line-height: 1.28; }
  .price-os__terms {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .price-os__terms p,
  .price-os__terms small { min-height: 38px; padding: 8px 10px; }
  .price-os__terms p { border-right: 1px solid #d4dee6; font-size: 8px; }
  .price-os__terms p:nth-child(3) { grid-column: 1 / -1; }
  .price-os__terms small { grid-column: 1 / -1; font-size: 7.5px; }

  /* The black footer is one compact command surface, including on 320px phones. */
  .site-footer { padding-bottom: max(0px, env(safe-area-inset-bottom)); }
  .footer-shell,
  .footer-bottom { width: calc(100% - 32px); }
  .footer-shell { display: block; min-height: 0; padding: 22px 0 16px; }
  .footer-brand {
    display: grid;
    grid-template-columns: minmax(124px, 40%) minmax(0, 1fr);
    align-items: center;
    gap: 15px;
    padding: 0;
  }
  .footer-brand > a { width: 100%; }
  .footer-brand img { width: 100%; max-width: 154px; }
  .footer-brand p { margin: 0; font-size: 10.5px; line-height: 1.35; }
  .footer-brand > span { display: none; }
  .footer-product {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    min-height: 0;
    margin-top: 18px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(255, 255, 255, 0.11);
  }
  .footer-product a {
    grid-column: auto;
    justify-content: center;
    min-height: 42px;
    padding: 0 5px;
    border: 0;
    color: #b9c8d0;
    background: var(--footer-bg);
    font-size: 9.5px;
    text-align: center;
  }
  .footer-product a:nth-child(n + 4),
  .footer-product a:last-child { grid-column: auto; }
  .footer-actions {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 1px;
    width: 100%;
    margin-top: 14px;
  }
  .footer-actions a,
  .footer-actions a + a { min-height: 48px; border: 0; }
  .footer-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    min-height: 0;
    padding: 11px 0 max(11px, env(safe-area-inset-bottom));
  }
  .footer-bottom > p:first-child { max-width: 132px; font-size: 8px; line-height: 1.35; }
  .footer-bottom > p:nth-child(2) { display: none; }
  .footer-bottom nav { justify-self: end; gap: 12px; margin: 0; }
  .footer-bottom a { min-height: 44px; font-size: 8.5px; }
}

@media (max-width: 350px) {
  .platform-os__shell,
  .sm-os__shell,
  .auto-os__shell,
  .perf-os__shell,
  .price-os__shell { width: calc(100% - 20px); }
  .platform-os__intro h2,
  .sm-os__intro h2,
  .auto-os__intro h2,
  .perf-os__intro h2,
  .price-os__intro h2 { font-size: 31px; }
  .platform-os__memory-fact dd,
  .sm-os__fact dd,
  .sm-os__fact:first-child dd { font-size: 12.5px; }
  .auto-os__step h4 { font-size: 14px; }
  .perf-os__evidence-list li { grid-template-columns: 27px minmax(0, 1fr); }
  .perf-os__asset { grid-column: 2; justify-self: start; max-width: none; text-align: left; }
  .price-os__scale { grid-template-columns: 104px minmax(0, 1fr); gap: 10px; }
  .footer-shell,
  .footer-bottom { width: calc(100% - 24px); }
  .footer-brand { grid-template-columns: 122px minmax(0, 1fr); gap: 12px; }
  .footer-actions { display: grid; }
}

@media (max-width: 700px) {
  .nav-shell { position: relative; }
  .mobile-nav { position: static; }
  .mobile-nav nav {
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    width: min(330px, calc(100vw - 24px));
  }

  .auto-os__sequence--active,
  .auto-os__sequence--future { display: grid; }

  #platform,
  #sales-memory,
  #automations,
  #performance,
  #pricing { scroll-margin-top: 20px; }

  .automation-os#automations,
  .performance-os#performance { scroll-margin-top: 20px; }
}

@media (max-width: 420px) and (min-width: 361px) {
  .brand img { width: 132px; }
  .nav-actions { gap: 8px; }
  .nav-cta { grid-template-columns: auto 40px; }
  .nav-cta__label {
    min-width: 58px;
    padding: 0 10px;
    font-size: 0;
  }
  .nav-cta__label::after {
    font-size: 10px;
    content: "Start";
  }
}

@media (max-width: 350px) {
  .price-os__amount span {
    flex-basis: auto;
    margin: 0 0 4px 8px;
  }

  .platform-os__signal {
    display: block;
    padding-right: 7px;
    padding-left: 7px;
  }
  .platform-os__signal-code { display: none; }
  .platform-os__signal strong,
  .platform-os__signal small {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .auto-os__guardrails {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .auto-os__guardrails > div:nth-child(2) { display: none; }
}

@media (forced-colors: active) {
  .site-footer,
  .footer-brand > a,
  .footer-product,
  .footer-product a,
  .footer-actions,
  .footer-actions a,
  .footer-bottom {
    border-color: CanvasText;
    color: CanvasText;
    background: Canvas;
    box-shadow: none;
  }
}
