:root {
  color-scheme: light;
  --ink: #121a2b;
  --ink-soft: #2e3a50;
  --muted: #607086;
  --line: #d8e0eb;
  --surface: #ffffff;
  --surface-alt: #f4f7fb;
  --blue: #2459d3;
  --blue-dark: #17439f;
  --blue-soft: #eaf0fd;
  --teal: #0d8a7c;
  --teal-soft: #e7f6f3;
  --red: #c93443;
  --amber: #f3b63f;
  --navy: #101827;
  --shadow: 0 16px 42px rgba(18, 26, 43, 0.1);
  --shadow-soft: 0 8px 26px rgba(18, 26, 43, 0.08);
  --shell: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.62;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select {
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(21, 94, 239, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 8px 12px;
  color: var(--surface);
  background: var(--navy);
  border-radius: 4px;
  transform: translateY(-160%);
}

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 72px;
  border-bottom: 1px solid rgba(216, 224, 235, 0.94);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 rgba(18, 26, 43, 0.02);
  backdrop-filter: blur(16px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 780;
  line-height: 1;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(36, 89, 211, 0.14);
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(36, 89, 211, 0.14);
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav > a:not(.button) {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 680;
  text-decoration: none;
}

.site-nav > a:not(.button):hover {
  color: var(--blue);
}

.site-nav > a:not(.button)[aria-current="page"] {
  color: var(--blue);
  box-shadow: inset 0 -2px 0 var(--blue);
}

.menu-button {
  display: none;
  width: 40px;
  height: 40px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: var(--ink);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-weight: 740;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

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

.button--compact {
  min-height: 38px;
  padding-inline: 15px;
  color: var(--surface);
  background: var(--blue);
  font-size: 14px;
  box-shadow: 0 6px 16px rgba(36, 89, 211, 0.18);
}

.button--account {
  min-height: 38px;
  padding-inline: 14px;
  border-color: #b8c8e0;
  color: var(--blue);
  background: var(--surface);
  font-size: 14px;
}

.button--account:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.button--small {
  min-height: 36px;
  padding-inline: 13px;
  font-size: 13px;
}

.button--primary {
  color: var(--surface);
  background: var(--blue);
  box-shadow: 0 8px 22px rgba(36, 89, 211, 0.22);
}

.button--primary:hover {
  background: var(--blue-dark);
}

.button--inverse {
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(12, 22, 39, 0.35);
}

.button--inverse:hover {
  border-color: var(--surface);
  background: rgba(12, 22, 39, 0.64);
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.66;
  transform: none;
}

.hero {
  position: relative;
  height: calc(100svh - 108px);
  min-height: 610px;
  max-height: 760px;
  overflow: hidden;
  color: var(--surface);
  background: var(--navy);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.84) contrast(1.04);
}

.hero__shade {
  background: rgba(7, 15, 28, 0.58);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  align-items: center;
}

.hero__content {
  width: min(650px, 58%);
  padding-block: 48px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 820;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #73eadb;
}

.hero h1 {
  margin: 0;
  font-size: 66px;
  font-weight: 790;
  line-height: 1.02;
  text-wrap: balance;
}

.hero__subtitle {
  margin: 14px 0 0;
  color: #ffffff;
  font-size: 24px;
  font-weight: 720;
  line-height: 1.35;
}

.hero__lede {
  max-width: 620px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 30px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 650;
  list-style: none;
}

.hero__proof li {
  position: relative;
  padding-left: 14px;
}

.hero__proof li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #43d8c6;
  content: "";
}

.page-hero {
  position: relative;
  height: calc(72svh - 72px);
  min-height: 470px;
  max-height: 610px;
  overflow: hidden;
  color: var(--surface);
  background: var(--navy);
}

.page-hero__image,
.page-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero__image {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.76) contrast(1.06);
}

.page-hero--mobile .page-hero__image {
  object-position: 56% center;
}

.page-hero__shade {
  background: rgba(7, 15, 28, 0.7);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 58px;
  font-weight: 780;
  line-height: 1.05;
  text-wrap: balance;
}

.page-hero__inner > p:not(.eyebrow) {
  max-width: 730px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.response-strip {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.response-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.response-strip__grid > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  min-height: 116px;
  align-items: center;
  padding: 18px 30px;
  border-right: 1px solid var(--line);
}

.response-strip__grid > div:first-child {
  padding-left: 0;
}

.response-strip__grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.step-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #b8c9e8;
  border-radius: 5px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 12px;
  font-weight: 800;
}

.response-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.response-strip strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 16px;
}

.section {
  padding-block: 104px;
}

.split {
  display: grid;
  align-items: center;
  gap: 88px;
}

.split--product {
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
}

.split--migration {
  grid-template-columns: minmax(520px, 1.05fr) minmax(0, 0.95fr);
}

.split--mobile {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.78fr);
}

.section-copy h2,
.section-heading h2,
.demo h1,
.demo h2 {
  max-width: 760px;
  margin: 0;
  font-size: 44px;
  font-weight: 770;
  line-height: 1.14;
  text-wrap: balance;
}

.section-lede {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  text-wrap: pretty;
}

.feature-list {
  margin: 34px 0 0;
}

.feature-list div {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.feature-list dt {
  color: var(--ink);
  font-weight: 760;
}

.feature-list dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.product-frame {
  overflow: hidden;
  border: 1px solid #cbd5e3;
  border-radius: 8px;
  background: var(--surface-alt);
  box-shadow: var(--shadow);
}

.product-frame__topbar {
  display: flex;
  height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 760;
}

.mini-brand img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.environment-label,
.kicker {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-frame__body {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  min-height: 480px;
}

.product-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 12px;
  border-right: 1px solid var(--line);
  color: #617087;
  background: #f9fbfd;
  font-size: 11px;
  font-weight: 650;
}

.product-nav span {
  padding: 9px 10px;
  border-radius: 4px;
}

.product-nav__active {
  color: var(--blue);
  background: var(--blue-soft);
}

.product-panel {
  margin: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.product-panel__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.product-panel h3 {
  margin: 5px 0 0;
  font-size: 20px;
  line-height: 1.25;
}

.status {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 9px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.status--open {
  color: #a32131;
  background: #fdebed;
}

.status--ready {
  color: #087466;
  background: var(--teal-soft);
}

.alert-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 18px 0 22px;
}

.alert-meta span {
  padding: 3px 7px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  background: var(--surface-alt);
  font-size: 10px;
  font-weight: 650;
}

.timeline {
  display: grid;
  gap: 4px;
  padding: 12px 0;
}

.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  min-height: 64px;
}

.timeline__item:not(:last-child)::after {
  position: absolute;
  top: 17px;
  bottom: -3px;
  left: 6px;
  width: 1px;
  background: var(--line);
  content: "";
}

.timeline__dot {
  position: relative;
  z-index: 1;
  width: 13px;
  height: 13px;
  margin-top: 4px;
  border: 3px solid var(--surface);
  border-radius: 50%;
  outline: 1px solid #aeb9c8;
  background: #aeb9c8;
}

.timeline__item--complete .timeline__dot {
  outline-color: var(--teal);
  background: var(--teal);
}

.timeline strong,
.timeline small,
.responder-row strong,
.responder-row small {
  display: block;
}

.timeline strong,
.responder-row strong {
  font-size: 12px;
}

.timeline small,
.responder-row small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.responder-row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 10px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.responder-initials {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #075f54;
  background: var(--teal-soft);
  font-size: 10px;
  font-weight: 800;
}

.responder-row button,
.migration-console button,
.phone__actions button {
  min-height: 34px;
  padding: 0 11px;
  border: 0;
  border-radius: 4px;
  color: var(--surface);
  background: var(--blue);
  font-size: 10px;
  font-weight: 760;
}

.ecosystem {
  border-block: 1px solid var(--line);
  background: var(--surface-alt);
}

.section-heading--center {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 58px;
  border-top: 1px solid #bdc9d8;
}

.ecosystem-grid article {
  min-height: 238px;
  padding: 32px 28px;
  border-right: 1px solid #bdc9d8;
}

.ecosystem-grid article:first-child {
  padding-left: 0;
}

.ecosystem-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.ecosystem-index {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
}

.ecosystem-grid h3 {
  margin: 44px 0 9px;
  font-size: 20px;
}

.ecosystem-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.migration-console {
  overflow: hidden;
  border: 1px solid #cbd5e3;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.migration-console__header,
.migration-console__footer {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 760;
}

.migration-console__summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--surface-alt);
}

.migration-console__summary div {
  padding: 22px 16px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.migration-console__summary div:last-child {
  border-right: 0;
}

.migration-console__summary strong,
.migration-console__summary span {
  display: block;
}

.migration-console__summary strong {
  font-size: 24px;
}

.migration-console__summary span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.migration-checks {
  padding: 10px 20px;
}

.migration-checks > div {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.migration-checks > div:last-child {
  border-bottom: 0;
}

.check-mark {
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #087466;
  background: var(--teal-soft);
  font-size: 13px;
  font-weight: 800;
}

.migration-checks p,
.migration-checks strong,
.migration-checks small {
  display: block;
  margin: 0;
}

.migration-checks strong {
  font-size: 13px;
}

.migration-checks small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.migration-console__footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  color: var(--muted);
  font-size: 11px;
}

.numbered-list {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.numbered-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
}

.numbered-list li > span {
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 12px;
  font-weight: 800;
}

.numbered-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.numbered-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--blue);
  font-weight: 760;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.text-link:hover {
  color: var(--blue-dark);
}

.mobile {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #eef4ff;
}

.platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.platform-row span {
  padding: 6px 10px;
  border: 1px solid #b8c9e8;
  border-radius: 4px;
  color: #1c3f75;
  background: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 720;
}

.phone-stage {
  position: relative;
  display: flex;
  min-height: 560px;
  align-items: center;
  justify-content: center;
}

.phone-stage::before,
.phone-stage::after {
  position: absolute;
  content: "";
}

.phone-stage::before {
  right: 2%;
  bottom: 8%;
  left: 2%;
  height: 260px;
  border: 1px solid #9fb7da;
  background: #dfeaff;
}

.phone-stage::after {
  right: 11%;
  bottom: 0;
  left: 11%;
  height: 28px;
  background: rgba(12, 22, 39, 0.12);
  filter: blur(14px);
}

.phone {
  position: relative;
  z-index: 1;
  width: 286px;
  height: 548px;
  padding: 10px;
  border: 2px solid #29354a;
  border-radius: 42px;
  background: #0f1727;
  box-shadow: 0 24px 56px rgba(12, 22, 39, 0.28);
  transform: rotate(2deg);
}

.phone__speaker {
  position: absolute;
  z-index: 3;
  top: 19px;
  left: 50%;
  width: 82px;
  height: 22px;
  border-radius: 14px;
  background: #060a11;
  transform: translateX(-50%);
}

.phone__screen {
  height: 100%;
  overflow: hidden;
  border-radius: 32px;
  background: #f5f7fb;
}

.phone__appbar {
  display: grid;
  grid-template-columns: 28px 1fr 28px;
  gap: 8px;
  align-items: center;
  min-height: 88px;
  padding: 34px 16px 14px;
  color: var(--surface);
  background: var(--navy);
  font-size: 12px;
  font-weight: 760;
}

.phone__appbar img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.phone__appbar b {
  display: flex;
  width: 28px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--red);
  font-size: 10px;
}

.phone__content {
  padding: 30px 20px;
}

.phone__service {
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
}

.phone__content h3 {
  margin: 8px 0 12px;
  font-size: 25px;
  line-height: 1.18;
}

.phone__content > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.phone__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 24px 0;
}

.phone__facts span {
  padding: 9px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  background: var(--surface);
  font-size: 9px;
  font-weight: 700;
  text-align: center;
}

.phone__actions {
  display: grid;
  gap: 8px;
}

.phone__actions button {
  min-height: 44px;
  font-size: 12px;
}

.phone__actions button:last-child {
  color: var(--blue);
  border: 1px solid #aac2eb;
  background: var(--surface);
}

.deployment {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.deployment__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 100px;
}

.deployment .eyebrow {
  color: var(--blue);
}

.deployment-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.deployment-grid div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.deployment-grid strong {
  font-size: 14px;
}

.deployment-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.deployment-details {
  background: var(--surface-alt);
}

.demo {
  color: var(--surface);
  background: #123b69;
}

.demo--page {
  min-height: calc(100vh - 72px);
}

.demo__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  gap: 92px;
  align-items: start;
}

.demo__intro {
  position: sticky;
  top: 112px;
}

.demo__intro > p:not(.eyebrow) {
  max-width: 570px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
}

.demo-lifecycle {
  display: grid;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.demo-lifecycle > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.demo-lifecycle > div > span {
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #063f46;
  background: #73eadb;
  font-size: 11px;
  font-weight: 850;
}

.demo-lifecycle p,
.demo-lifecycle strong,
.demo-lifecycle small {
  display: block;
  margin: 0;
}

.demo-lifecycle strong {
  font-size: 13px;
}

.demo-lifecycle small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}

.demo-form-wrap {
  min-height: 700px;
  padding: 34px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--surface);
  box-shadow: 0 24px 70px rgba(5, 15, 29, 0.28);
}

.form-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.form-heading h3 {
  margin: 0;
  font-size: 22px;
}

.form-heading p {
  margin: 0;
  color: #087466;
  font-size: 12px;
  font-weight: 750;
}

.account-prefill {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 15px 16px;
  border: 1px solid #cbd8e9;
  border-radius: 6px;
  background: #f5f8fd;
}

.account-prefill strong,
.account-prefill span {
  display: block;
}

.account-prefill strong {
  color: var(--ink);
  font-size: 13px;
}

.account-prefill span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.account-prefill__actions {
  display: flex;
  gap: 8px;
}

.demo-form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-grid--two {
  grid-template-columns: 1fr 1fr;
}

.demo-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 760;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #b8c3d2;
  border-radius: 5px;
  color: var(--ink);
  background: var(--surface);
  font-size: 15px;
}

.demo-form input,
.demo-form select {
  height: 46px;
  padding: 0 12px;
}

.demo-form textarea {
  min-height: 126px;
  padding: 12px;
  resize: vertical;
  font-family: inherit;
  line-height: 1.5;
}

.demo-form input:hover,
.demo-form select:hover,
.demo-form textarea:hover {
  border-color: #8493a8;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(21, 94, 239, 0.14);
}

.domain-field {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto;
  overflow: hidden;
  border: 1px solid #b8c3d2;
  border-radius: 5px;
}

.domain-field:focus-within {
  border-color: var(--blue);
  outline: 3px solid rgba(21, 94, 239, 0.14);
}

.domain-field input {
  border: 0;
  border-radius: 0;
}

.domain-field input:focus {
  outline: 0;
}

.domain-field span {
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  background: var(--surface-alt);
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.demo-form label > small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field > small {
  color: var(--muted);
  font-size: 11px;
}

.field-label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.field-label-row label {
  display: inline;
}

.field-label-row a {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.field-label-row a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.check-field {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  gap: 10px !important;
  align-items: start;
  color: var(--muted) !important;
  font-weight: 550 !important;
  line-height: 1.5;
}

.check-field input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--blue);
}

.check-field a {
  color: var(--blue);
  text-underline-offset: 2px;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.form-error {
  padding: 11px 13px;
  border-left: 3px solid var(--red);
  color: #84202d;
  background: #fdebed;
  font-size: 13px;
}

.form-note {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.demo-result {
  display: flex;
  min-height: 630px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  scroll-margin-top: 90px;
}

.demo-result:focus {
  outline: none;
}

.result-mark {
  display: flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border-radius: 50%;
  color: #087466;
  background: var(--teal-soft);
  font-size: 23px;
  font-weight: 850;
}

.demo-result h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.25;
}

.demo-result > p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
}

.result-domain {
  width: 100%;
  margin: 32px 0;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-alt);
}

.result-domain span,
.result-domain strong {
  display: block;
}

.result-domain span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.result-domain strong {
  margin-top: 4px;
  color: var(--blue);
  overflow-wrap: anywhere;
}

.text-button {
  margin-top: 16px;
  padding: 0;
  border: 0;
  color: var(--blue);
  background: transparent;
  font-weight: 720;
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.faq {
  background: var(--surface-alt);
}

.faq__layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 100px;
}

.faq-list {
  border-top: 1px solid #bfcbd9;
}

.faq-list details {
  border-bottom: 1px solid #bfcbd9;
}

.faq-list summary {
  position: relative;
  padding: 22px 42px 22px 0;
  font-weight: 740;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 18px;
  right: 4px;
  color: var(--blue);
  font-size: 22px;
  font-weight: 500;
  content: "+";
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: -6px 0 22px;
  padding-right: 40px;
  color: var(--muted);
  font-size: 14px;
}

.migration-process {
  padding-block: 92px;
  color: var(--surface);
  background: var(--navy);
}

.migration-process .migration-plan {
  border-color: rgba(255, 255, 255, 0.22);
}

.migration-process .migration-plan article {
  border-color: rgba(255, 255, 255, 0.22);
}

.migration-process .migration-plan span {
  color: #73eadb;
}

.migration-process .migration-plan p {
  color: rgba(255, 255, 255, 0.7);
}

.deployment-details {
  background: var(--surface-alt);
}

.deployment-choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 48px;
  border-block: 1px solid var(--line);
}

.deployment-choice-grid article {
  min-height: 260px;
  padding: 30px 34px;
  border-right: 1px solid var(--line);
}

.deployment-choice-grid article:first-child {
  padding-left: 0;
}

.deployment-choice-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.deployment-choice-grid span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.deployment-choice-grid h3 {
  margin: 38px 0 10px;
  font-size: 22px;
  line-height: 1.3;
}

.deployment-choice-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.74);
  background: #0d1524;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  align-items: flex-start;
  gap: 72px;
  padding-block: 62px;
}

.brand--footer {
  color: var(--surface);
}

.footer__top p {
  max-width: 300px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: 14px 28px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 660;
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--surface);
}

.footer__bottom {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.comparison-hero {
  position: relative;
  height: calc(100svh - 152px);
  min-height: 540px;
  max-height: 670px;
  overflow: hidden;
  color: var(--surface);
  background: var(--navy);
}

.comparison-hero__image,
.comparison-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.comparison-hero__image {
  object-fit: cover;
  object-position: center;
}

.comparison-hero__shade {
  background: rgba(5, 13, 26, 0.64);
}

.comparison-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.comparison-hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: 60px;
  font-weight: 780;
  line-height: 1.05;
  text-wrap: balance;
}

.comparison-hero__inner > p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.comparison-summary {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.pricing-hero {
  position: relative;
  height: calc(82svh - 72px);
  min-height: 510px;
  max-height: 650px;
  overflow: hidden;
  color: var(--surface);
  background: var(--navy);
}

.pricing-hero__image,
.pricing-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.pricing-hero__image {
  object-fit: cover;
  object-position: center;
}

.pricing-hero__shade {
  background: rgba(5, 13, 26, 0.7);
}

.pricing-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.pricing-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: 58px;
  font-weight: 780;
  line-height: 1.06;
  text-wrap: balance;
}

.pricing-hero__inner > p:not(.eyebrow) {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.pricing__heading {
  max-width: 760px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 48px;
  border-block: 1px solid var(--line);
}

.pricing-plan {
  display: flex;
  min-width: 0;
  min-height: 430px;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  padding: 34px 28px;
  border-right: 1px solid var(--line);
  background: var(--surface);
}

.pricing-plan:last-child {
  border-right: 0;
}

.pricing-plan--featured {
  box-shadow:
    inset 0 4px 0 var(--blue),
    var(--shadow-soft);
}

.pricing-plan--enterprise {
  color: var(--surface);
  background: var(--navy);
}

.pricing-plan__range {
  margin: 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-plan--enterprise .pricing-plan__range {
  color: #86e5d2;
}

.pricing-plan h3 {
  margin: 12px 0 0;
  font-size: 28px;
}

.pricing-plan__fit {
  min-height: 66px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.pricing-plan--enterprise .pricing-plan__fit,
.pricing-plan--enterprise .pricing-plan__price p,
.pricing-plan--enterprise .pricing-plan__price span {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-plan__price strong,
.pricing-plan__price span {
  display: block;
}

.pricing-plan__price strong {
  font-size: 34px;
  line-height: 1.1;
}

.pricing-plan__price span {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.pricing-plan__price p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.pricing-plan .button {
  width: 100%;
}

.pricing-plan--enterprise .button--secondary {
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.48);
  background: transparent;
}

.pricing-includes {
  padding-block: 86px;
  color: var(--surface);
  background: #0c1627;
}

.pricing-includes__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 100px;
  align-items: start;
}

.pricing-includes h2 {
  margin: 12px 0 0;
  font-size: 42px;
  line-height: 1.15;
}

.pricing-includes__list {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.pricing-includes__list p {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 28px;
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.pricing-includes__list strong {
  font-size: 14px;
}

.pricing-includes__list span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.pricing-contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  align-items: start;
  gap: 48px;
}

.pricing-contact h2 {
  margin: 10px 0 0;
  font-size: 40px;
}

.pricing-contact p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
}

.sales-form-card {
  min-height: 650px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.sales-result {
  display: flex;
  min-height: 588px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.sales-result h3 {
  margin: 12px 0;
  font-size: 30px;
}

.sales-result > p:not(.eyebrow, .request-reference) {
  max-width: 520px;
  color: var(--muted);
}

.request-reference {
  margin: 16px 0 24px;
  color: var(--muted);
  font-size: 12px;
}

.request-reference span {
  color: var(--ink-soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.contact-page {
  min-height: calc(100vh - 84px);
  background: #f5f7fb;
}

.contact-page__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  align-items: start;
  gap: 64px;
}

.contact-page__intro {
  position: sticky;
  top: 116px;
  padding-top: 24px;
}

.contact-page__intro h1 {
  max-width: 620px;
  margin: 12px 0 0;
  font-size: 54px;
  line-height: 1.05;
}

.contact-page__intro > p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.contact-routing {
  display: grid;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.contact-routing p {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  margin: 0;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.contact-routing strong {
  color: var(--ink);
}

.contact-routing span {
  color: var(--muted);
}

.support-guidance {
  margin-top: 34px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: 6px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.support-guidance h2 {
  margin: 0;
  font-size: 18px;
}

.support-guidance ol {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 22px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.contact-page__intro .support-emergency-note {
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px solid #e6c777;
  border-radius: 6px;
  color: #5f4511;
  background: #fff9e8;
  font-size: 14px;
  line-height: 1.55;
}

.support-form-card {
  min-height: 900px;
}

.documentation-body {
  background: #f5f7fa;
}

.documentation-page {
  min-width: 0;
}

.docs-intro {
  padding-block: 72px 64px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.docs-intro h1 {
  max-width: 900px;
  margin: 14px 0 0;
  font-size: 50px;
  line-height: 1.08;
  text-wrap: balance;
}

.docs-intro .shell > p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.docs-intro__actions,
.docs-end-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.docs-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 68px;
  align-items: start;
  padding-block: 64px 108px;
}

.docs-sidebar {
  position: sticky;
  top: 104px;
  max-height: calc(100vh - 128px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.docs-sidebar nav {
  display: grid;
}

.docs-sidebar__group {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.docs-sidebar__group:last-child {
  border-bottom: 0;
}

.docs-sidebar__group p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.docs-sidebar__group a {
  display: block;
  padding: 7px 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
  text-decoration: none;
}

.docs-sidebar__group a:hover,
.docs-sidebar__group a:focus-visible {
  color: var(--blue);
}

.docs-content {
  min-width: 0;
  max-width: 900px;
}

.docs-section {
  padding: 0 0 74px;
  scroll-margin-top: 104px;
}

.docs-section + .docs-section {
  padding-top: 74px;
  border-top: 1px solid var(--line);
}

.docs-section h2 {
  max-width: 760px;
  margin: 9px 0 0;
  color: var(--ink);
  font-size: 36px;
  line-height: 1.16;
  text-wrap: balance;
}

.docs-section h3 {
  margin: 34px 0 0;
  color: var(--ink);
  font-size: 20px;
}

.docs-section > p:not(.docs-kicker) {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.docs-kicker {
  margin: 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.docs-model {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18px minmax(0, 1fr) 18px minmax(0, 1fr) 18px minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
  margin-top: 32px;
}

.docs-model > div {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.docs-model strong,
.docs-model span {
  display: block;
}

.docs-model strong {
  color: var(--ink);
  font-size: 14px;
}

.docs-model span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.docs-model > b {
  align-self: center;
  color: var(--blue);
  font-size: 17px;
  text-align: center;
}

.docs-note,
.docs-callout,
.docs-warning {
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink-soft);
  background: var(--surface);
  line-height: 1.65;
}

.docs-note {
  border-left: 4px solid var(--blue);
  background: #f3f7ff;
}

.docs-callout {
  border-left: 4px solid var(--teal);
  background: #eefaf8;
}

.docs-warning {
  border-color: #ead28f;
  border-left: 4px solid #c8921d;
  color: #5f4511;
  background: #fff9e8;
}

.docs-note strong,
.docs-callout strong,
.docs-warning strong {
  display: block;
  margin-bottom: 4px;
  color: currentColor;
}

.docs-stage {
  margin-top: 30px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.docs-stage > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.docs-stage h3 {
  margin-top: 7px;
}

.docs-steps {
  display: grid;
  gap: 18px;
  margin: 24px 0 0;
  padding-left: 22px;
  color: var(--ink-soft);
}

.docs-steps li {
  padding-left: 7px;
  line-height: 1.65;
}

.docs-steps strong {
  display: block;
  color: var(--ink);
}

.docs-steps--compact {
  gap: 10px;
}

.docs-definition-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.docs-definition-grid > div {
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.docs-definition-grid dt {
  color: var(--ink);
  font-weight: 760;
}

.docs-definition-grid dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.docs-checklist {
  display: grid;
  gap: 11px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.docs-checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.docs-checklist li::before {
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #91c6bc;
  border-radius: 50%;
  color: #087466;
  background: #eefaf8;
  content: "✓";
  font-size: 10px;
  font-weight: 900;
  line-height: 14px;
  text-align: center;
}

.docs-checklist--boxed {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.docs-checklist--boxed li {
  min-height: 72px;
  padding: 18px 18px 18px 48px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.docs-checklist--boxed li::before {
  top: 20px;
  left: 20px;
}

.docs-table-wrap {
  max-width: 100%;
  margin-top: 26px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.docs-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  text-align: left;
}

.docs-table th,
.docs-table td {
  padding: 15px 17px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.docs-table th {
  color: var(--ink);
  background: #f5f7fa;
  font-size: 12px;
}

.docs-table td {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.docs-table tr:last-child td {
  border-bottom: 0;
}

.docs-example {
  margin-top: 26px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #111d30;
}

.docs-example p {
  margin: 0 0 12px;
  color: #dce6f5;
}

.docs-example code {
  color: #f7fafc;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  line-height: 1.75;
}

.docs-lifecycle {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.docs-lifecycle > div {
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.docs-lifecycle span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 11px;
  font-weight: 800;
}

.docs-lifecycle strong {
  display: block;
  margin-top: 16px;
  color: var(--ink);
}

.docs-lifecycle p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.docs-section--mobile-start {
  position: relative;
}

.docs-section--mobile-start::before {
  position: absolute;
  top: 46px;
  right: 0;
  width: 84px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  content: "";
}

.docs-product-shot {
  margin: 34px 0 0;
}

.docs-product-shot img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(12, 22, 39, 0.12);
}

.docs-product-shot--mobile img {
  width: min(100%, 360px);
}

.docs-product-shot figcaption {
  max-width: 620px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.comparison-summary__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.comparison-summary__grid > div {
  min-height: 118px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.comparison-summary__grid > div:first-child {
  padding-left: 0;
}

.comparison-summary__grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.comparison-summary strong,
.comparison-summary span {
  display: block;
}

.comparison-summary strong {
  color: var(--ink);
  font-size: 20px;
}

.comparison-summary span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.comparison-intro {
  padding-top: 96px;
}

.article-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 820px);
  gap: 92px;
  justify-content: center;
  align-items: start;
  min-width: 0;
}

.comparison-article,
.comparison-article > section {
  min-width: 0;
}

.article-toc {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.article-toc span,
.article-toc a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.article-toc span {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.article-toc a {
  color: var(--ink-soft);
  font-weight: 650;
  text-decoration: none;
}

.article-toc a:hover {
  color: var(--blue);
}

.comparison-article > section {
  padding: 0 0 84px;
  scroll-margin-top: 100px;
}

.comparison-article > section + section {
  padding-top: 84px;
  border-top: 1px solid var(--line);
}

.comparison-article h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.16;
  text-wrap: balance;
}

.comparison-article h2 + p,
.comparison-article .article-lede {
  margin-top: 22px;
}

.comparison-article p {
  color: var(--muted);
  font-size: 16px;
}

.comparison-article .article-lede {
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.72;
}

.source-note {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
  padding: 18px 0;
  border-block: 1px solid var(--line);
}

.source-note strong,
.source-note span,
.source-note a {
  font-size: 12px;
}

.source-note span {
  color: var(--muted);
}

.source-note a {
  color: var(--blue);
  font-weight: 720;
}

.product-comparison-tabs {
  margin-top: 38px;
}

.product-comparison-tabs__list {
  display: flex;
  width: 100%;
  gap: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  border-bottom: 1px solid var(--line);
}

.product-comparison-tabs__list button {
  flex: 1 0 auto;
  min-height: 54px;
  padding: 10px 18px;
  border: 0;
  border-bottom: 3px solid transparent;
  color: var(--muted);
  background: transparent;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.product-comparison-tabs__list button:hover {
  color: var(--ink);
  background: var(--surface-alt);
}

.product-comparison-tabs__list button[aria-selected="true"] {
  border-bottom-color: var(--blue);
  color: var(--blue-dark);
}

.product-comparison-panel {
  padding-top: 34px;
}

.product-comparison-panel__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.9fr);
  gap: 40px;
  align-items: end;
}

.product-comparison-panel__heading span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.product-comparison-panel__heading h3 {
  margin: 8px 0 0;
  font-size: 25px;
  line-height: 1.3;
}

.product-comparison-panel__heading p {
  margin: 0;
  font-size: 13px;
}

.cost-benchmark {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
  border-block: 1px solid var(--line);
}

.cost-benchmark > div {
  min-height: 128px;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.cost-benchmark > div:first-child {
  padding-left: 0;
}

.cost-benchmark > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.cost-benchmark span,
.cost-benchmark strong,
.cost-benchmark small {
  display: block;
}

.cost-benchmark span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 720;
}

.cost-benchmark strong {
  margin-top: 6px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.2;
}

.cost-benchmark small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.cost-benchmark__primary strong,
.cost-benchmark__primary small {
  color: var(--blue-dark);
}

.product-comparison-panel .comparison-table-wrap {
  margin-top: 30px;
}

.comparison-source {
  display: inline-block;
  margin-top: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 720;
}

.pricing-method-note {
  margin: 22px 0 0;
  padding-left: 14px;
  border-left: 3px solid var(--line);
  font-size: 12px !important;
}

.comparison-table-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-top: 34px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.comparison-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  font-size: 13px;
  line-height: 1.5;
}

.comparison-table th,
.comparison-table td {
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-table th:last-child,
.comparison-table td:last-child {
  border-right: 0;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-table thead th {
  color: var(--ink);
  background: var(--surface-alt);
  font-size: 11px;
  text-transform: uppercase;
}

.comparison-table tbody th {
  width: 22%;
  color: var(--ink);
  background: #fafbfd;
}

.comparison-table tbody td {
  width: 39%;
  color: var(--muted);
}

.comparison-table tbody td:last-child {
  background: #f5f9ff;
}

.comparison-table strong {
  color: #123f87;
}

.table-note {
  margin: 12px 0 0;
  font-size: 12px !important;
}

.reason-list {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.reason-list > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.reason-list > div > span {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--blue-dark);
  background: var(--blue-soft);
  font-size: 11px;
  font-weight: 850;
}

.reason-list p,
.reason-list strong {
  display: block;
  margin: 0;
}

.reason-list strong {
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 16px;
}

.migration-plan {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
  border-block: 1px solid var(--line);
}

.migration-plan article {
  min-height: 250px;
  padding: 24px 22px;
  border-right: 1px solid var(--line);
}

.migration-plan article:first-child {
  padding-left: 0;
}

.migration-plan article:last-child {
  padding-right: 0;
  border-right: 0;
}

.migration-plan span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.migration-plan h3 {
  margin: 38px 0 10px;
  font-size: 17px;
  line-height: 1.3;
}

.migration-plan p {
  margin: 0;
  font-size: 13px;
}

.migration-safety {
  margin-top: 30px;
  padding: 18px 20px;
  border-left: 4px solid var(--amber);
  background: #fff8e8;
}

.migration-safety strong {
  color: #614410;
}

.migration-safety p {
  margin: 4px 0 0;
  color: #6f5523;
  font-size: 13px;
}

.decision-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.decision-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
}

.decision-list li::before {
  position: absolute;
  top: 0.5em;
  left: 2px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.comparison-cta {
  padding-block: 70px;
  color: var(--surface);
  background: #123b69;
}

.comparison-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.comparison-cta h2 {
  max-width: 780px;
  margin: 0;
  font-size: 38px;
  line-height: 1.2;
  text-wrap: balance;
}

.comparison-cta__copy {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.legal-body {
  background: #f5f7fa;
}

.legal-intro {
  padding-block: 78px 68px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.legal-intro h1 {
  max-width: 860px;
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 56px;
  line-height: 1.04;
}

.legal-intro__lede {
  max-width: 900px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.72;
}

.legal-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 210px));
  gap: 28px;
  margin: 38px 0 0;
}

.legal-meta div {
  padding-top: 14px;
  border-top: 2px solid var(--blue);
}

.legal-meta dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-meta dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 720;
}

.legal-summary {
  color: var(--surface);
  background: #14243c;
}

.legal-summary__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 76px;
  align-items: start;
  padding-block: 54px;
}

.legal-summary h2 {
  max-width: 600px;
  margin: 10px 0 0;
  font-size: 28px;
  line-height: 1.3;
}

.legal-summary ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-summary li {
  position: relative;
  padding-left: 23px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.legal-summary li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.legal-page {
  padding-block: 68px 112px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 870px);
  gap: 82px;
  justify-content: center;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 106px;
  display: grid;
  max-height: calc(100vh - 132px);
  overflow: auto;
  border-top: 1px solid var(--line);
  background: #f5f7fa;
}

.legal-toc span,
.legal-toc a {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.35;
}

.legal-toc span {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.legal-toc a {
  color: var(--ink-soft);
  font-weight: 650;
  text-decoration: none;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--blue);
}

.legal-content {
  min-width: 0;
}

.legal-content > section {
  padding: 0 0 72px;
  scroll-margin-top: 104px;
}

.legal-content > section + section {
  padding-top: 72px;
  border-top: 1px solid var(--line);
}

.legal-kicker {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
}

.legal-content h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: 37px;
  line-height: 1.18;
}

.legal-content h3 {
  margin: 34px 0 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.35;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.72;
}

.legal-content p {
  margin: 20px 0 0;
}

.legal-content ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 22px;
}

.legal-content a {
  color: var(--blue);
  text-underline-offset: 3px;
}

.legal-notice {
  margin-top: 26px;
  padding: 19px 22px;
  border: 1px solid #b9cce9;
  border-left: 4px solid var(--blue);
  border-radius: 5px;
  color: #243b61;
  background: #edf4ff;
  font-size: 14px;
  line-height: 1.65;
}

.legal-notice strong {
  color: var(--ink);
}

.legal-notice--warning {
  border-color: #e6c777;
  border-left-color: #b57a12;
  color: #5f4511;
  background: #fff9e8;
}

.legal-role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.legal-role-grid > div {
  min-height: 220px;
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.legal-role-grid h3 {
  margin: 0;
  font-size: 17px;
}

.legal-role-grid p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.legal-table-wrap {
  margin-top: 30px;
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--surface);
}

.legal-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: var(--ink);
  background: #edf2f8;
  font-size: 12px;
  font-weight: 800;
}

.legal-table td {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.legal-table td:first-child {
  width: 21%;
  color: var(--ink);
  font-weight: 740;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.legal-contact {
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--ink-soft);
  background: var(--surface);
  font-style: normal;
  line-height: 1.7;
}

.about-foundation {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.about-foundation__layout,
.about-ai__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 104px;
  align-items: start;
}

.about-foundation__copy > p:not(.section-lede) {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.about-values {
  background: var(--surface-alt);
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 54px;
  border-top: 1px solid var(--line);
}

.about-values__grid article {
  min-height: 260px;
  padding: 30px 34px;
  border-right: 1px solid var(--line);
}

.about-values__grid article:first-child {
  padding-left: 0;
}

.about-values__grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.about-values__grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
}

.about-values__grid h3 {
  margin: 46px 0 12px;
  font-size: 22px;
  line-height: 1.3;
}

.about-values__grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.about-ai {
  color: var(--surface);
  background: #123b69;
}

.about-ai h2 {
  max-width: 620px;
  margin: 0;
  font-size: 44px;
  line-height: 1.14;
  text-wrap: balance;
}

.about-ai__lede {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.7;
}

.about-ai__items {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.about-ai__items > div {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 24px;
  padding: 23px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.about-ai__items strong {
  font-size: 14px;
  line-height: 1.5;
}

.about-ai__items p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.65;
}

.about-ai__note {
  margin: 52px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.6;
}

@media (max-width: 1040px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 14px 24px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--surface);
    box-shadow: 0 18px 28px rgba(18, 26, 43, 0.12);
  }

  .site-nav--open {
    display: grid;
  }

  .site-nav > a:not(.button) {
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav > a:not(.button)[aria-current="page"] {
    box-shadow: none;
  }

  .site-nav .button {
    margin-top: 12px;
  }

  .split--product,
  .split--migration,
  .split--mobile {
    grid-template-columns: 1fr;
  }

  .split {
    gap: 58px;
  }

  .split--migration .migration-console {
    order: 2;
  }

  .split--migration .section-copy {
    order: 1;
  }

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

  .ecosystem-grid article:nth-child(2) {
    border-right: 0;
  }

  .ecosystem-grid article:nth-child(n + 3) {
    border-top: 1px solid #bfcbd9;
  }

  .ecosystem-grid article:nth-child(3) {
    padding-left: 0;
  }

  .deployment__inner,
  .faq__layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .demo__layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .demo__intro {
    position: static;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .article-toc {
    position: static;
    grid-template-columns: repeat(3, 1fr);
    border-left: 1px solid var(--line);
  }

  .article-toc span,
  .article-toc a {
    padding: 12px;
    border-right: 1px solid var(--line);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-plan:nth-child(even) {
    border-right: 0;
  }

  .pricing-plan:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .pricing-includes__layout {
    gap: 56px;
  }

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

  .demo-lifecycle > div:nth-child(odd) {
    padding-right: 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
  }

  .demo-lifecycle > div:nth-child(even) {
    padding-left: 22px;
  }

  .docs-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 40px;
  }

  .docs-model {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .docs-model > b {
    display: none;
  }

  .docs-lifecycle {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-summary__grid {
    gap: 48px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .legal-toc {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-height: none;
    border-left: 1px solid var(--line);
    background: var(--surface);
  }

  .legal-toc span,
  .legal-toc a {
    padding: 12px;
    border-right: 1px solid var(--line);
  }

  .about-foundation__layout,
  .about-ai__layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }
}

@media (max-width: 800px) {
  .shell {
    width: min(100% - 32px, var(--shell));
  }

  .site-header {
    height: 64px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 14px 16px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--surface);
    box-shadow: 0 18px 28px rgba(12, 22, 39, 0.12);
  }

  .site-nav--open {
    display: grid;
  }

  .site-nav > a:not(.button) {
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav > a:not(.button)[aria-current="page"] {
    box-shadow: none;
  }

  .site-nav .button {
    margin-top: 12px;
  }

  .account-prefill {
    grid-template-columns: 1fr;
  }

  .account-prefill__actions {
    width: 100%;
  }

  .account-prefill__actions .button {
    flex: 1;
  }

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

  .footer__links {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
  }

  .pricing-hero {
    height: calc(84svh - 64px);
    min-height: 540px;
  }

  .pricing-hero__image {
    object-position: 64% center;
  }

  .pricing-hero h1 {
    font-size: 46px;
  }

  .pricing-includes__layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .pricing-contact__inner {
    grid-template-columns: 1fr;
  }

  .contact-page__inner {
    grid-template-columns: 1fr;
  }

  .contact-page__intro {
    position: static;
    padding-top: 0;
  }

  .support-form-card {
    min-height: 0;
  }

  .docs-intro {
    padding-block: 58px 52px;
  }

  .docs-intro h1 {
    font-size: 39px;
  }

  .docs-layout {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-block: 42px 80px;
  }

  .docs-sidebar {
    position: static;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .docs-sidebar nav {
    display: flex;
    min-width: max-content;
  }

  .docs-sidebar__group {
    width: 220px;
    flex: 0 0 220px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .docs-sidebar__group:last-child {
    border-right: 0;
  }

  .docs-section {
    scroll-margin-top: 76px;
  }

  .hero {
    height: calc(100svh - 104px);
    min-height: 550px;
    max-height: 690px;
  }

  .hero__image {
    object-position: 65% center;
  }

  .hero__shade {
    background: rgba(5, 13, 26, 0.68);
  }

  .hero__content {
    width: 100%;
    max-width: 600px;
    padding-block: 34px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero__subtitle {
    font-size: 20px;
  }

  .hero__lede {
    max-width: 540px;
    font-size: 17px;
  }

  .page-hero {
    height: calc(70svh - 64px);
    min-height: 500px;
    max-height: 620px;
  }

  .page-hero h1 {
    font-size: 46px;
  }

  .page-hero__inner > p:not(.eyebrow) {
    font-size: 17px;
  }

  .response-strip__grid {
    grid-template-columns: 1fr;
  }

  .response-strip__grid > div,
  .response-strip__grid > div:first-child,
  .response-strip__grid > div:last-child {
    min-height: 92px;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .response-strip__grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 80px;
  }

  .section-copy h2,
  .section-heading h2,
  .demo h1,
  .demo h2 {
    font-size: 36px;
  }

  .section-lede {
    font-size: 16px;
  }

  .product-frame__body {
    grid-template-columns: 1fr;
  }

  .product-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 8px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    text-align: center;
  }

  .product-nav span {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 6px;
  }

  .deployment-grid div {
    grid-template-columns: 150px 1fr;
  }

  .comparison-hero {
    height: calc(100svh - 116px);
    min-height: 550px;
    max-height: 690px;
  }

  .comparison-hero__image {
    object-position: 67% center;
  }

  .comparison-hero h1 {
    font-size: 46px;
  }

  .comparison-summary__grid {
    grid-template-columns: 1fr 1fr;
  }

  .comparison-summary__grid > div,
  .comparison-summary__grid > div:first-child,
  .comparison-summary__grid > div:last-child {
    padding: 18px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

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

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

  .source-note {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .product-comparison-panel__heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .comparison-article h2 {
    font-size: 34px;
  }

  .comparison-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .deployment-choice-grid {
    grid-template-columns: 1fr;
  }

  .deployment-choice-grid article,
  .deployment-choice-grid article:first-child,
  .deployment-choice-grid article:last-child {
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .deployment-choice-grid article:last-child {
    border-bottom: 0;
  }

  .legal-intro {
    padding-block: 62px 56px;
  }

  .legal-intro h1 {
    font-size: 46px;
  }

  .legal-meta {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .legal-summary__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .legal-role-grid {
    grid-template-columns: 1fr;
  }

  .legal-role-grid > div {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .hero {
    height: calc(100svh - 98px);
    min-height: 540px;
    max-height: 660px;
  }

  .hero__image {
    object-position: 70% center;
  }

  .hero__shade {
    background: rgba(5, 13, 26, 0.73);
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero__subtitle {
    margin-top: 11px;
    font-size: 18px;
  }

  .hero__lede {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.55;
  }

  .page-hero {
    height: calc(72svh - 64px);
    min-height: 520px;
    max-height: 640px;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  .page-hero__inner > p:not(.eyebrow) {
    font-size: 15px;
  }

  .hero__actions {
    display: grid;
    margin-top: 22px;
  }

  .hero__actions .button {
    min-height: 44px;
  }

  .hero__proof {
    margin-top: 20px;
  }

  .section {
    padding-block: 68px;
  }

  .section-copy h2,
  .section-heading h2,
  .demo h1,
  .demo h2 {
    font-size: 32px;
  }

  .product-frame__topbar {
    height: 52px;
  }

  .product-nav {
    grid-template-columns: 1fr 1fr;
  }

  .product-panel {
    margin: 10px;
    padding: 16px;
  }

  .product-panel__heading {
    display: grid;
  }

  .status--open {
    justify-self: start;
  }

  .responder-row {
    grid-template-columns: 36px 1fr;
  }

  .responder-row button {
    grid-column: 1 / -1;
  }

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

  .ecosystem-grid article,
  .ecosystem-grid article:first-child,
  .ecosystem-grid article:nth-child(3),
  .ecosystem-grid article:last-child {
    min-height: 170px;
    padding: 24px 0;
    border-right: 0;
    border-top: 1px solid #bfcbd9;
  }

  .ecosystem-grid article:first-child {
    border-top: 0;
  }

  .ecosystem-grid h3 {
    margin-top: 24px;
  }

  .migration-console__summary {
    grid-template-columns: 1fr 1fr;
  }

  .migration-console__summary div:nth-child(2) {
    border-right: 0;
  }

  .migration-console__summary div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .migration-console__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .phone-stage {
    min-height: 530px;
  }

  .phone {
    width: 266px;
    height: 516px;
  }

  .deployment-grid div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

  .demo-lifecycle > div:nth-child(odd),
  .demo-lifecycle > div:nth-child(even) {
    padding-inline: 0;
    border-right: 0;
  }

  .demo-form-wrap {
    min-height: 0;
    padding: 24px 18px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .form-grid--two {
    grid-template-columns: 1fr;
  }

  .domain-field {
    grid-template-columns: minmax(0, 1fr);
  }

  .domain-field span {
    min-height: 36px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .demo-result {
    min-height: 520px;
  }

  .faq-list p {
    padding-right: 0;
  }

  .footer__top {
    align-items: flex-start;
    gap: 34px;
    padding-block: 48px;
  }

  .footer__links {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 20px;
  }

  .footer__bottom {
    display: grid;
    align-items: flex-start;
    justify-content: start;
    gap: 8px;
    padding-block: 18px;
  }

  .comparison-hero {
    height: calc(100svh - 106px);
    min-height: 560px;
    max-height: 660px;
  }

  .comparison-hero__shade {
    background: rgba(5, 13, 26, 0.74);
  }

  .comparison-hero h1 {
    font-size: 40px;
  }

  .comparison-hero__inner > p:not(.eyebrow) {
    font-size: 15px;
  }

  .pricing-hero {
    height: calc(100svh - 98px);
    min-height: 560px;
    max-height: 660px;
  }

  .pricing-hero__shade {
    background: rgba(5, 13, 26, 0.76);
  }

  .pricing-hero h1 {
    font-size: 40px;
  }

  .pricing-hero__inner > p:not(.eyebrow) {
    font-size: 15px;
  }

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

  .pricing-plan,
  .pricing-plan:nth-child(even),
  .pricing-plan:nth-child(n + 3) {
    min-height: 380px;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pricing-plan:last-child {
    border-bottom: 0;
  }

  .pricing-plan__fit {
    min-height: 0;
  }

  .pricing-includes__list p {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .pricing-contact h2,
  .pricing-includes h2 {
    font-size: 31px;
  }

  .sales-form-card {
    min-height: 0;
    padding: 24px 18px;
  }

  .contact-page__intro h1 {
    font-size: 40px;
  }

  .contact-routing p {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .comparison-summary__grid {
    grid-template-columns: 1fr;
  }

  .comparison-summary__grid > div,
  .comparison-summary__grid > div:first-child,
  .comparison-summary__grid > div:last-child,
  .comparison-summary__grid > div:nth-child(even),
  .comparison-summary__grid > div:nth-child(n + 3) {
    min-height: 86px;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .comparison-summary__grid > div:last-child {
    border-bottom: 0;
  }

  .article-toc {
    grid-template-columns: 1fr;
  }

  .comparison-article > section {
    padding-bottom: 64px;
  }

  .comparison-article > section + section {
    padding-top: 64px;
  }

  .comparison-article h2 {
    font-size: 31px;
  }

  .comparison-article .article-lede {
    font-size: 17px;
  }

  .product-comparison-tabs {
    margin-top: 30px;
  }

  .product-comparison-tabs__list button {
    min-height: 50px;
    padding-inline: 14px;
  }

  .product-comparison-panel {
    padding-top: 28px;
  }

  .product-comparison-panel__heading h3 {
    font-size: 22px;
  }

  .cost-benchmark {
    grid-template-columns: 1fr;
  }

  .cost-benchmark > div,
  .cost-benchmark > div:first-child,
  .cost-benchmark > div:last-child {
    min-height: 0;
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .cost-benchmark > div:last-child {
    border-bottom: 0;
  }

  .reason-list > div {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .migration-plan {
    grid-template-columns: 1fr;
  }

  .migration-plan article,
  .migration-plan article:first-child,
  .migration-plan article:last-child {
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .migration-plan article:last-child {
    border-bottom: 0;
  }

  .migration-plan h3 {
    margin-top: 18px;
  }

  .comparison-cta h2 {
    font-size: 30px;
  }
}

@media (max-width: 560px) {
  .support-guidance {
    padding: 20px;
  }

  .docs-intro h1 {
    font-size: 34px;
  }

  .docs-intro .shell > p:not(.eyebrow) {
    font-size: 16px;
  }

  .docs-intro__actions,
  .docs-end-actions {
    align-items: stretch;
  }

  .docs-intro__actions .button,
  .docs-end-actions .button {
    width: 100%;
  }

  .docs-definition-grid,
  .docs-checklist--boxed,
  .docs-model,
  .docs-lifecycle {
    grid-template-columns: 1fr;
  }

  .docs-section h2 {
    font-size: 30px;
  }

  .docs-stage {
    padding: 21px;
  }

  .docs-checklist--boxed li {
    min-height: 0;
  }

  .docs-section--mobile-start::before {
    display: none;
  }

  .legal-intro {
    padding-block: 62px 56px;
  }

  .legal-intro h1 {
    font-size: 46px;
  }

  .legal-meta {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .legal-summary__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .legal-role-grid {
    grid-template-columns: 1fr;
  }

  .legal-role-grid > div {
    min-height: 0;
  }

  .legal-intro h1 {
    font-size: 40px;
  }

  .legal-intro__lede {
    font-size: 16px;
  }

  .legal-meta {
    grid-template-columns: 1fr;
  }

  .legal-meta div {
    padding-top: 10px;
  }

  .legal-page {
    padding-block: 48px 76px;
  }

  .legal-toc {
    grid-template-columns: 1fr;
  }

  .legal-content > section {
    padding-bottom: 56px;
  }

  .legal-content > section + section {
    padding-top: 56px;
  }

  .legal-content h2 {
    font-size: 30px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 15px;
  }

  .about-values__grid {
    grid-template-columns: 1fr;
  }

  .about-values__grid article,
  .about-values__grid article:first-child,
  .about-values__grid article:last-child {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-values__grid article:last-child {
    border-bottom: 0;
  }

  .about-values__grid h3 {
    margin-top: 22px;
  }

  .about-ai h2 {
    font-size: 36px;
  }

  .about-ai__items > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }
}

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

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