:root {
  --brand: #0066e3;
  --sub-blue: #0073ff;
  --ink: #222a4c;
  --muted: #5f647c;
  --mid: #8e94a6;
  --pale: #e4ecf5;
  --line: #d9e2ed;
  --grid: #edf3f8;
  --separator-line: rgba(0, 102, 227, .055);
  --separator-space: 13px;
  --separator-height-short: 72px;
  --surface: #fbfdff;
  --white: #ffffff;
  --shell-max-width: 1560px;
  --shell-width-gutter: 40px;
  --shell-half-width: min(calc((100vw - var(--shell-width-gutter)) / 2), calc(var(--shell-max-width) / 2));
  --sticky-header-offset: 59px;
  --feature-visual-scale: .5;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --sans: "IBM Plex Sans", "IBM Plex Sans Condensed", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  position: relative;
  margin: 0;
  background:
    linear-gradient(90deg, transparent 0 calc(50% - var(--shell-half-width)), rgba(228, 236, 245, .85) calc(50% - var(--shell-half-width)) calc(50% - var(--shell-half-width) + 1px), transparent calc(50% - var(--shell-half-width) + 1px) calc(50% + var(--shell-half-width) - 1px), rgba(228, 236, 245, .85) calc(50% + var(--shell-half-width) - 1px) calc(50% + var(--shell-half-width)), transparent calc(50% + var(--shell-half-width))),
    var(--surface);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: -60vmax;
  z-index: 0;
  background: repeating-linear-gradient(
    152deg,
    var(--separator-line) 0 1px,
    transparent 1px var(--separator-space)
  );
  transform: skewY(-28deg);
  transform-origin: center top;
  pointer-events: none;
}

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

p,
h1,
h2,
h3 {
  margin: 0;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(var(--shell-max-width), calc(100% - var(--shell-width-gutter)));
  margin: 0 auto;
  background: transparent;
  border-left: 1px solid var(--pale);
  border-right: 1px solid var(--pale);
  overflow: visible;
}

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

main > section[id] {
  scroll-margin-top: var(--sticky-header-offset);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 240px 1fr 220px;
  min-height: 58px;
  background: rgba(251, 253, 255, .96);
  border-bottom: 1px solid var(--mid);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(34, 42, 76, .08);
}

.brand,
.primary-nav a,
.nav-cta {
  display: flex;
  align-items: center;
  border-right: 1px solid var(--pale);
}

.brand {
  gap: 10px;
  padding: 0 32px;
  font-weight: 500;
  transform: translateY(2px);
}

.brand-mark {
  position: relative;
  width: 23px;
  height: 29px;
  transform: skewY(-28deg);
}

.brand-mark span {
  position: absolute;
  right: 0;
  height: 2px;
  background: var(--ink);
}

.brand-mark span:nth-child(1) { top: 2px; width: 8px; opacity: .25; }
.brand-mark span:nth-child(2) { top: 8px; width: 15px; opacity: .45; }
.brand-mark span:nth-child(3) { top: 14px; width: 23px; opacity: .7; }
.brand-mark span:nth-child(4) { top: 20px; width: 16px; opacity: .35; }

.brand-word {
  font-family: var(--mono);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: translateY(-4px);
}

.brand-word span {
  color: var(--mid);
  font-weight: 400;
}

.primary-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.menu-toggle {
  display: none;
}

.primary-nav a {
  justify-content: center;
  gap: 10px;
  min-width: 0;
  padding: 0 14px;
  font-family: var(--mono);
  font-size: .88rem;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .18s ease;
}

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

.platform-kicker,
.terminal-bar,
.search-console,
.footer-grid {
  font-family: var(--mono);
}

.outline-button,
.primary-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid currentColor;
  padding: 0 28px;
  font-family: var(--mono);
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}

button.outline-button,
button.primary-button {
  cursor: pointer;
}

.outline-button::after,
.primary-button::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 10px;
  height: 10px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
}

.nav-cta {
  margin: 10px 24px;
  min-height: 38px;
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
  box-shadow: 0 10px 24px rgba(0, 102, 227, .18);
  transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--sub-blue);
  border-color: var(--sub-blue);
  box-shadow: 0 14px 30px rgba(0, 115, 255, .28);
  transform: translateY(-1px);
}

.primary-button {
  width: 100%;
  min-height: 60px;
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
  transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--sub-blue);
  border-color: var(--sub-blue);
  box-shadow: 0 14px 30px rgba(0, 115, 255, .28);
  transform: translateY(-1px);
}

.primary-button:disabled {
  cursor: not-allowed;
  background: #c5d4e6;
  border-color: #c5d4e6;
  box-shadow: none;
  color: #f8fbff;
  transform: none;
}

.primary-button.light {
  max-width: 560px;
  min-height: 44px;
  background: var(--white);
  color: var(--brand);
  border-color: var(--white);
  box-shadow: 0 10px 24px rgba(0, 41, 92, .16);
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.full-width {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--brand);
  font-family: var(--mono);
  font-size: .84rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.text-link::after {
  content: "\2197";
}

.striped-band {
  height: var(--separator-height-short);
  border-bottom: 1px solid var(--mid);
  background: transparent;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  min-height: 540px;
  border-bottom-color: var(--mid);
}

.hero-left {
  display: flex;
  background: rgba(251, 253, 255, .92);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
  width: 100%;
  padding: 44px 34px;
}

.hero h1 {
  width: 100%;
  max-width: 640px;
  font-size: clamp(2.9rem, 3.65vw, 4.25rem);
  line-height: .92;
  font-weight: 600;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.lead {
  max-width: 560px;
  margin-top: 0;
  color: #6a7189;
  font-size: 1.13rem;
  font-weight: 600;
  line-height: 1.24;
}

.hero-right {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--pale);
  padding: 34px 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 28%, rgba(0, 115, 255, .12), rgba(0, 115, 255, 0) 28%),
    linear-gradient(180deg, rgba(255, 255, 255, .7), rgba(228, 236, 245, .42)),
    linear-gradient(90deg, rgba(0, 102, 227, .04) 1px, transparent 1px),
    linear-gradient(rgba(0, 102, 227, .04) 1px, transparent 1px);
  background-size: auto, auto, 24px 24px, 24px 24px;
}

.hero-right::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(0, 102, 227, .08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, 0) 58%),
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .42), rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
}

.terminal-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 22px;
  margin-top: 0;
  padding: 0 12px;
  background: var(--ink);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.placeholder-image {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 102, 227, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 227, .04) 1px, transparent 1px),
    var(--surface);
  background-size: 20px 20px;
  border: 1px solid var(--pale);
}

.placeholder-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(0, 102, 227, .18) 48% 50%, transparent 50%),
    linear-gradient(45deg, transparent 0 48%, rgba(0, 102, 227, .08) 48% 50%, transparent 50%);
  opacity: .32;
  pointer-events: none;
}

.hero-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: clamp(330px, 34vw, 430px);
  background: transparent;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
  filter: contrast(1.05) saturate(1.04);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-bottom-color: var(--mid);
  background: var(--pale);
}

.detail-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  padding: 34px;
  background: var(--surface);
}

.icon-placeholder {
  position: relative;
  width: 78px;
  height: 78px;
}

.detail-card .icon-placeholder {
  margin-bottom: 8px;
}

.icon-placeholder::before,
.icon-placeholder::after {
  content: "";
  position: absolute;
  border: 1px solid #7c89a5;
}

.flow-icon::after,
.bolt-icon::before,
.doc-icon::before,
.globe-icon::before {
  left: 7px;
  top: 7px;
  width: 64px;
  height: 64px;
}

.flow-icon::before {
  inset: 25px;
}

.flow-icon::after {
  border-style: dashed;
}

.bolt-icon::before {
  background:
    linear-gradient(90deg, transparent 0 23%, rgba(0, 102, 227, .18) 23% 24%, transparent 24% 49%, rgba(0, 102, 227, .18) 49% 50%, transparent 50% 74%, rgba(0, 102, 227, .18) 74% 75%, transparent 75%),
    linear-gradient(180deg, transparent 0 25%, rgba(124, 137, 165, .28) 25% 26%, transparent 26% 50%, rgba(124, 137, 165, .28) 50% 51%, transparent 51% 75%, rgba(124, 137, 165, .28) 75% 76%, transparent 76%);
}

.bolt-icon::after {
  left: 14px;
  top: 19px;
  width: 50px;
  height: 47px;
  border: 0;
  background:
    linear-gradient(var(--brand) 0 0) 6px 1px / 25px 7px no-repeat,
    linear-gradient(rgba(0, 102, 227, .36) 0 0) 18px 13px / 29px 7px no-repeat,
    linear-gradient(rgba(124, 137, 165, .58) 0 0) 0 26px / 24px 7px no-repeat,
    linear-gradient(rgba(0, 102, 227, .48) 0 0) 27px 39px / 20px 7px no-repeat;
  opacity: .62;
}

.doc-icon::after {
  left: 28px;
  top: 36px;
  width: 24px;
  height: 2px;
  border: 0;
  background: var(--brand);
  box-shadow: 0 9px 0 #b9c8dc;
}

.globe-icon::before {
  border-radius: 50%;
}

.globe-icon::after {
  left: 31px;
  top: 31px;
  width: 16px;
  height: 16px;
  border-color: var(--brand);
  border-width: 2px;
  transform: rotate(45deg);
}

.detail-card h2 {
  max-width: 280px;
  min-height: 2lh;
  font-family: var(--mono);
  font-size: 1.35rem;
  line-height: .95;
  text-transform: uppercase;
}

.detail-card p {
  max-width: 300px;
  color: #7a8196;
  font-weight: 600;
  line-height: 1.18;
}

.dot-field {
  position: relative;
  overflow: hidden;
  min-height: 200px;
  background: transparent;
}

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

.details-grid + .dot-field {
  min-height: var(--separator-height-short);
  border-bottom-color: var(--mid);
}

.customer-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
  background: rgba(251, 253, 255, .92);
}

.customer-quote figure {
  width: min(920px, 100%);
  margin: 0;
  padding: 0;
}

.customer-quote blockquote {
  margin: 0;
}

.customer-quote blockquote p {
  max-width: 840px;
  font-size: clamp(1.45rem, 2.15vw, 2rem);
  line-height: 1.08;
  font-weight: 600;
}

.customer-quote figcaption {
  margin-top: 16px;
  color: #687087;
  font-family: var(--mono);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.dot-field.short {
  min-height: var(--separator-height-short);
  border-bottom-color: var(--mid);
}

.platform-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  border-bottom: 1px solid var(--mid);
  background: transparent;
  color: #7d859a;
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.platform-section {
  padding: 40px 34px 34px;
}

.section-heading {
  margin-bottom: 34px;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.section-heading h2,
.platform-copy h2 {
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: .96;
  font-weight: 600;
}

.experts-header h2,
.case-studies > h2,
.booking-copy h2,
.blue-cta h2 {
  font-size: clamp(2.6rem, 4.1vw, 4.8rem);
  line-height: .94;
  font-weight: 600;
}

.section-heading p,
.platform-copy p,
.case-row p {
  color: #687087;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.22;
}

.section-heading .text-link,
.platform-copy .text-link {
  margin-top: 22px;
}

.search-console {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.search-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  border: 1px solid var(--ink);
  padding-left: 34px;
}

.search-input span {
  display: grid;
  place-items: center;
  align-self: stretch;
  width: 58px;
  background: var(--brand);
  color: var(--white);
  font-size: 1.5rem;
}

.console-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: 330px;
  margin-top: 32px;
}

.placeholder-wide {
  min-height: 260px;
}

.lineage-art {
  min-height: 360px;
  background: var(--surface);
  background-size: auto;
}

.lineage-svg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  transform: scale(var(--feature-visual-scale));
  transform-origin: center;
}

.lineage-edge {
  fill: none;
  stroke: var(--brand);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .7;
  vector-effect: non-scaling-stroke;
}

.lineage-node > rect {
  fill: #fbfdff;
  stroke: #94a1b8;
  stroke-width: 1.2;
  filter: url("styles.css");
  vector-effect: non-scaling-stroke;
}

.transform-node rect {
  fill: #f5f9ff;
  stroke: #6f9ed5;
}

.warehouse-node rect {
  fill: #f8fbff;
  stroke: #7e8da7;
}

.output-node rect {
  fill: #ffffff;
  stroke: var(--ink);
}

.lineage-port {
  fill: #ffffff;
  stroke: var(--brand);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.source-node .lineage-port {
  stroke: #7e8da7;
}

.lineage-glyph {
  fill: none;
  stroke: #7e8da7;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.lineage-glyph-active {
  stroke: var(--brand);
}

.lineage-skeleton {
  fill: none;
  stroke: #c8d6e8;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .9;
  vector-effect: non-scaling-stroke;
}

.lineage-skeleton-accent {
  stroke: #7eb6f6;
}

.split-platform {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--pale);
}

.split-platform > * {
  background: var(--surface);
}

.platform-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 440px;
  padding: 34px;
}

.platform-copy p {
  width: 100%;
  max-width: 35rem;
  margin-top: 22px;
}

.platform-art {
  min-height: 440px;
  margin: 0;
  border: 0;
}

.dashboard-art {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px;
}

.lineage-art::before,
.dashboard-art::before,
.conversion-art::before,
.verification-art::before {
  background: none;
  opacity: 0;
}

.dashboard-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 70px 1fr;
  width: min(560px, 100%);
  min-height: 300px;
  border: 1px solid #94a1b8;
  background: rgba(251, 253, 255, .94);
  box-shadow: 0 22px 46px rgba(34, 42, 76, .08);
  transform: scale(var(--feature-visual-scale));
  transform-origin: center;
}

.dashboard-rail {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  padding-top: 24px;
  border-right: 1px solid var(--pale);
  background:
    linear-gradient(180deg, rgba(0, 102, 227, .06), transparent 58%),
    #f8fbff;
}

.dashboard-rail span {
  width: 28px;
  height: 28px;
  border: 1px solid #9cafca;
  background: #ffffff;
}

.dashboard-rail span:nth-child(1) {
  border-color: var(--brand);
  background:
    linear-gradient(135deg, transparent 0 44%, rgba(0, 102, 227, .78) 44% 56%, transparent 56%),
    #ffffff;
}

.dashboard-main {
  display: grid;
  grid-template-rows: 26px 66px 1fr;
  gap: 16px;
  padding: 22px;
}

.dashboard-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-topline > span {
  width: 150px;
  height: 9px;
  background: #b9d7fb;
  box-shadow: 0 14px 0 #d7e3f0;
}

.dashboard-topline div {
  display: flex;
  gap: 7px;
}

.dashboard-topline i {
  display: block;
  width: 9px;
  height: 9px;
  border: 1px solid #9cafca;
  border-radius: 50%;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.dashboard-tile {
  position: relative;
  overflow: hidden;
  border: 1px solid #c6d3e3;
  background: #ffffff;
}

.dashboard-tile::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 16px;
  width: 58px;
  height: 7px;
  background: #7eb6f6;
  box-shadow:
    0 15px 0 #d1ddeb,
    74px 15px 0 #d1ddeb,
    0 30px 0 #d1ddeb;
}

.dashboard-tile span {
  position: absolute;
  right: 16px;
  top: 17px;
  width: 30px;
  height: 30px;
  border: 4px solid #d7e3f0;
  border-top-color: var(--brand);
  border-radius: 50%;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.35fr .75fr;
  gap: 12px;
}

.dashboard-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid #c6d3e3;
  background:
    linear-gradient(rgba(0, 102, 227, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 227, .035) 1px, transparent 1px),
    #ffffff;
  background-size: 18px 18px;
}

.dashboard-chart {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  padding: 28px 32px;
}

.dashboard-chart span {
  flex: 1;
  min-width: 18px;
  background: #d7e3f0;
}

.dashboard-chart span:nth-child(1) { height: 42%; }
.dashboard-chart span:nth-child(2) { height: 74%; background: #8fc2fa; }
.dashboard-chart span:nth-child(3) { height: 58%; }
.dashboard-chart span:nth-child(4) { height: 86%; background: #7eb6f6; }

.dashboard-table {
  display: grid;
  gap: 16px;
  align-content: center;
  justify-items: center;
  padding: 24px;
}

.dashboard-table span {
  width: 72%;
  height: 9px;
  background: #d1ddeb;
}

.dashboard-table span:nth-child(odd) {
  width: 86%;
  background: #8fc2fa;
}

.dashboard-table span:nth-child(even) {
  width: 58%;
}

.conversion-art,
.verification-art {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px;
}

.verification-art {
  background: var(--surface);
  background-size: auto;
}

.conversion-board {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 42px auto 28px auto;
  width: min(640px, 100%);
  min-height: 342px;
  align-content: center;
  transform: scale(var(--feature-visual-scale));
  transform-origin: center;
}

.conversion-lanes,
.conversion-gate,
.conversion-result {
  position: relative;
  z-index: 1;
}

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

.conversion-lanes::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -21px;
  height: 2px;
  background: rgba(34, 42, 76, .36);
}

.conversion-lanes::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 23px);
  width: 2px;
  height: 14px;
  background: rgba(34, 42, 76, .36);
  transform: translateX(-50%);
}

.conversion-loop,
.verification-panel {
  border: 1px solid #94a1b8;
  background:
    linear-gradient(rgba(0, 102, 227, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 227, .035) 1px, transparent 1px),
    rgba(251, 253, 255, .96);
  background-size: 18px 18px;
  box-shadow: 0 18px 38px rgba(34, 42, 76, .07);
}

.conversion-loop {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  min-height: 126px;
  padding: 22px;
  background:
    linear-gradient(rgba(0, 102, 227, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 227, .035) 1px, transparent 1px),
    rgba(251, 253, 255, .96);
  background-size: 18px 18px;
}

.conversion-loop::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -21px;
  width: 2px;
  height: 21px;
  background: rgba(34, 42, 76, .36);
  transform: translateX(-50%);
}

.conversion-loop i {
  position: relative;
  width: 42px;
  height: 42px;
  align-self: start;
  border: 2px solid var(--brand);
  border-right-color: transparent;
  border-radius: 50%;
}

.conversion-loop i::before {
  content: "";
  position: absolute;
  right: -2px;
  bottom: 1px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(-90deg);
}

.conversion-loop div {
  display: grid;
  gap: 10px;
  align-content: start;
  min-width: 0;
  padding-top: 5px;
}

.conversion-loop div span,
.verification-panel span {
  display: block;
  height: 8px;
  background: #d1ddeb;
}

.conversion-loop div span:nth-child(1),
.verification-panel span:nth-child(1) {
  width: 78%;
  background: #8fc2fa;
}

.conversion-loop div span:nth-child(2),
.verification-panel span:nth-child(2) {
  width: 96%;
}

.conversion-loop em {
  position: relative;
  grid-column: 1 / -1;
  display: block;
  width: 28px;
  height: 28px;
  margin: 2px auto 0;
  border: 2px solid var(--brand);
  border-radius: 50%;
  background: #ffffff;
}

.conversion-loop em::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(-45deg);
}

.verification-panel span:nth-child(3) {
  width: 58%;
}

.conversion-gate {
  position: relative;
  grid-row: 3;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  justify-self: center;
  align-items: center;
  width: min(440px, 82%);
  min-height: 92px;
  padding: 18px 22px;
  border: 1px solid #94a1b8;
  background: rgba(251, 253, 255, .96);
  box-shadow: 0 18px 38px rgba(34, 42, 76, .06);
}

.conversion-gate::before,
.conversion-result::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.conversion-gate::before {
  top: -15px;
  border-top: 10px solid rgba(34, 42, 76, .78);
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
}

.conversion-gate::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 2px;
  height: 21px;
  background: rgba(34, 42, 76, .36);
  transform: translateX(-50%);
}

.conversion-gate i {
  position: relative;
  width: 48px;
  height: 48px;
}

.conversion-gate i::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--brand);
  border-radius: 50%;
  transform: translateX(-50%);
}

.conversion-gate i::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 38px;
  height: 22px;
  border: 2px solid var(--brand);
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  transform: translateX(-50%);
}

.conversion-gate-lines {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.conversion-gate-lines span,
.conversion-result div span {
  display: block;
  height: 8px;
  background: #d1ddeb;
}

.conversion-gate-lines span:first-child,
.conversion-result div span:first-child {
  width: 74%;
  background: #8fc2fa;
}

.conversion-gate-lines span:last-child,
.conversion-result div span:last-child {
  width: 94%;
}

.conversion-gate-steps {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 9px;
}

.conversion-gate-steps span {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8fc2fa;
}

.conversion-gate-steps span:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 18px;
  height: 1px;
  background: #d1ddeb;
  transform: translateY(-50%);
}

.conversion-result {
  grid-row: 5;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  justify-self: center;
  align-items: center;
  width: min(400px, 76%);
  min-height: 76px;
  padding: 16px 22px;
  border: 1px solid #94a1b8;
  background: rgba(251, 253, 255, .96);
  box-shadow: 0 18px 38px rgba(34, 42, 76, .05);
}

.conversion-result::before {
  top: -17px;
  border-top: 10px solid rgba(34, 42, 76, .78);
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
}

.conversion-result i {
  position: relative;
  width: 42px;
  height: 42px;
  border: 2px solid var(--brand);
  border-radius: 50%;
  background: #ffffff;
}

.conversion-result i::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 11px;
  width: 16px;
  height: 9px;
  border-left: 3px solid var(--brand);
  border-bottom: 3px solid var(--brand);
  transform: rotate(-45deg);
}

.conversion-result div {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.security-map {
  min-height: 420px;
  margin-bottom: 34px;
}

.security {
  border-bottom-color: var(--mid);
}

.verification-board {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 108px minmax(0, 1fr);
  grid-template-rows: 150px 86px;
  gap: 28px;
  width: min(860px, 100%);
  align-items: center;
  transform: scale(var(--feature-visual-scale));
  transform-origin: center;
}

.verification-board::before,
.verification-board::after {
  content: "";
  position: absolute;
  z-index: -1;
  background: rgba(0, 102, 227, .24);
}

.verification-board::before {
  left: 13%;
  right: 13%;
  top: 75px;
  height: 2px;
}

.verification-board::after {
  left: 50%;
  top: 78px;
  width: 2px;
  height: 124px;
  transform: translateX(-50%);
}

.verification-panel {
  display: grid;
  gap: 16px;
  align-content: center;
  min-height: 128px;
  padding: 30px;
  background: rgba(251, 253, 255, .96);
  background-size: auto;
}

.verification-badge {
  position: relative;
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  border: 1px solid var(--brand);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(34, 42, 76, .08);
}

.verification-badge::before {
  content: "";
  width: 38px;
  height: 20px;
  border-left: 3px solid var(--brand);
  border-bottom: 3px solid var(--brand);
  transform: translateY(-4px) rotate(-45deg);
}

.verification-rows {
  grid-column: 1 / -1;
  display: grid;
  gap: 11px;
  justify-self: center;
  width: min(520px, 80%);
  padding: 18px 22px;
  border: 1px solid #c6d3e3;
  background: rgba(251, 253, 255, .96);
}

.verification-rows span {
  position: relative;
  height: 8px;
  background:
    linear-gradient(90deg, #8fc2fa 0 34%, transparent 34% 43%, #d1ddeb 43% 100%);
}

.verification-rows span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border: 2px solid var(--brand);
  border-radius: 50%;
  background: #ffffff;
  transform: translateY(-50%);
}

.experts-section {
  background: rgba(251, 253, 255, .92);
  border-bottom-color: var(--mid);
}

.experts-header {
  padding: 28px 34px 0;
}

.experts-header p {
  max-width: 640px;
  margin-top: 8px;
  color: #687087;
  font-size: .96rem;
  font-weight: 600;
  line-height: 1.22;
}

.experts-grid {
  margin-top: 16px;
}

.expert-card {
  min-height: 280px;
  gap: 14px;
  padding: 22px;
  align-items: flex-start;
}

.expert-photo {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 132px;
  aspect-ratio: 1 / 1;
  border: 1px solid #9cafca;
  background:
    radial-gradient(circle at 50% 30%, rgba(0, 102, 227, .16), rgba(0, 102, 227, 0) 26%),
    linear-gradient(180deg, #ffffff, #eef4fb);
}

.expert-photo::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(124, 137, 165, .7);
}

.expert-photo::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 14px;
  width: 48%;
  height: 22%;
  border: 1px solid rgba(124, 137, 165, .72);
  border-radius: 999px 999px 14px 14px;
  background: rgba(255, 255, 255, .62);
  transform: translateX(-50%);
}

.expert-photo span {
  position: relative;
  z-index: 1;
  color: rgba(0, 102, 227, .78);
  font-family: var(--mono);
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.expert-meta {
  display: grid;
  gap: 6px;
  justify-items: start;
}

.detail-card .expert-role {
  max-width: none;
  color: var(--brand);
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.expert-card h3 {
  max-width: 220px;
  font-family: var(--mono);
  font-size: 1.08rem;
  line-height: .95;
  text-transform: uppercase;
}

.expert-card p:last-child {
  max-width: 300px;
  font-size: .9rem;
  line-height: 1.14;
}

.case-studies {
  padding: 34px 34px 28px;
  background: rgba(251, 253, 255, .92);
}

.case-studies > h2 {
  margin-bottom: 18px;
}

.case-list {
  border-top: 1px solid var(--pale);
}

.case-row {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 132px;
  padding: 16px 0;
  border-bottom: 1px solid var(--pale);
}

.case-name {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px;
  align-items: start;
}

.case-name span {
  color: #84b8ff;
  font-family: var(--mono);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}

.case-name h3 {
  max-width: 190px;
  font-size: .95rem;
  line-height: 1.05;
}

.case-row p {
  font-size: .9rem;
  line-height: 1.45;
}

.case-studies .outline-button {
  margin-top: 24px;
  color: var(--ink);
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr);
  gap: 1px;
  background: var(--pale);
  border-bottom-color: var(--mid);
}

.booking-copy,
.booking-widget-wrap {
  background: rgba(251, 253, 255, .94);
}

.booking-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 38px;
  min-height: 560px;
  padding: 34px;
}

.booking-kicker,
.booking-step,
.booking-facts,
.booking-note,
.booking-slot-header span {
  font-family: var(--mono);
}

.booking-kicker {
  margin-bottom: 12px;
  color: var(--brand);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.booking-copy h2 {
  max-width: 620px;
}

.booking-copy p:not(.booking-kicker) {
  max-width: 620px;
  margin-top: 18px;
  color: #687087;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.24;
}

.booking-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  background: var(--pale);
  list-style: none;
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

@media (min-width: 1021px) {
  .booking-facts {
    margin-bottom: 64px;
  }
}

.booking-facts li {
  display: grid;
  gap: 8px;
  min-height: 92px;
  align-content: center;
  padding: 16px;
  background: var(--surface);
}

.booking-facts span {
  color: var(--brand);
}

.booking-facts strong {
  font-weight: 700;
}

.booking-widget-wrap {
  display: flex;
  align-items: center;
  padding: 34px;
}

.booking-panel {
  width: 100%;
  border: 1px solid #9cafca;
  background: var(--surface);
  box-shadow: 0 22px 48px rgba(34, 42, 76, .08);
}

.booking-panel button {
  border-radius: 0;
  font: inherit;
}

.booking-picker {
  display: grid;
  grid-template-columns: minmax(300px, .95fr) minmax(260px, .8fr);
  gap: 1px;
  background: var(--pale);
}

.booking-panel.is-confirmed .booking-picker {
  display: none;
}

.booking-calendar-pane,
.booking-time-pane {
  min-width: 0;
  padding: 22px;
  background: #ffffff;
}

.booking-panel-header,
.booking-slot-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  min-height: 66px;
}

.booking-step {
  color: var(--brand);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.booking-panel h3 {
  margin-top: 6px;
  font-size: 1.32rem;
  font-weight: 600;
  line-height: 1.05;
}

.booking-month-controls {
  display: flex;
  gap: 8px;
}

.calendar-nav-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #9cafca;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease, background-color .18s ease, transform .18s ease;
}

.calendar-nav-button:hover,
.calendar-nav-button:focus-visible {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-1px);
}

.calendar-nav-button:disabled {
  cursor: not-allowed;
  color: #b6c0cf;
  border-color: #d8e2ee;
  background: #f6f9fd;
  transform: none;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
}

.calendar-weekdays {
  margin-top: 18px;
  color: #7a8196;
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.calendar-grid {
  margin-top: 8px;
}

.calendar-empty {
  min-height: 42px;
}

.calendar-day {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 42px;
  border: 1px solid transparent;
  background: #f7fbff;
  color: var(--ink);
  font-family: var(--mono);
  font-size: .84rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.calendar-day:hover,
.calendar-day:focus-visible {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-1px);
}

.calendar-day.is-today {
  border-color: #9fc6f5;
}

.calendar-day.is-selected {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(0, 102, 227, .18);
}

.calendar-day:disabled {
  cursor: not-allowed;
  background: transparent;
  border-color: transparent;
  color: #c1cad8;
  text-decoration: line-through;
  transform: none;
}

.booking-slot-header span {
  padding-top: 4px;
  color: #7a8196;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.time-slot-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 20px;
}

.time-slot {
  min-height: 44px;
  border: 1px solid #c6d3e3;
  background: #ffffff;
  color: var(--ink);
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.time-slot:hover,
.time-slot:focus-visible {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-1px);
}

.time-slot.is-selected {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(0, 102, 227, .18);
}

.time-slot:disabled {
  cursor: not-allowed;
  background: #f6f9fd;
  border-color: #e1e8f1;
  color: #b6c0cf;
  text-decoration: line-through;
  transform: none;
}

.booking-confirm {
  margin-top: 18px;
}

.booking-note {
  margin-top: 12px;
  color: #7a8196;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.35;
  text-transform: uppercase;
}

.booking-confirmation {
  display: grid;
  justify-items: start;
  gap: 14px;
  min-height: 360px;
  align-content: center;
  padding: 34px;
  background:
    linear-gradient(rgba(0, 102, 227, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 227, .035) 1px, transparent 1px),
    #ffffff;
  background-size: 20px 20px;
}

.booking-confirmation[hidden] {
  display: none;
}

.confirmation-mark {
  position: relative;
  width: 58px;
  height: 58px;
  border: 2px solid var(--brand);
  border-radius: 50%;
  background: #ffffff;
}

.confirmation-mark::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 17px;
  width: 22px;
  height: 12px;
  border-left: 3px solid var(--brand);
  border-bottom: 3px solid var(--brand);
  transform: rotate(-45deg);
}

.booking-confirmation h3 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: .96;
  font-weight: 600;
}

.booking-confirmation p:not(.booking-step) {
  max-width: 620px;
  color: #687087;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.28;
}

.booking-reset {
  margin-top: 8px;
  background: #ffffff;
  color: var(--ink);
}

.blue-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 430px;
  overflow: hidden;
  background: var(--brand);
  color: var(--white);
  text-align: center;
}

.blue-cta h2 {
  position: relative;
  z-index: 1;
  max-width: 520px;
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.blue-cta .primary-button {
  z-index: 1;
}

.blue-cta .primary-button.light:hover,
.blue-cta .primary-button.light:focus-visible {
  background: #eef6ff;
  border-color: #eef6ff;
  color: var(--sub-blue);
  box-shadow: 0 14px 30px rgba(0, 41, 92, .24);
  transform: translateY(-1px);
}

.blue-placeholder {
  display: none;
}

.site-footer {
  border-bottom: 1px solid var(--pale);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .9fr .9fr 1fr;
  gap: 1px;
  background: var(--pale);
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-grid > * {
  min-height: 180px;
  padding: 32px;
  background: var(--surface);
}

.footer-brand,
.footer-grid nav,
.footer-legal,
.footer-action {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-brand p {
  color: #8d95a9;
}

/* Motion is progressive enhancement: content stays visible until JS opts in. */
.motion-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 560ms cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms),
    transform 640ms cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms);
}

.motion-ready [data-reveal="scale"] {
  transform: translate3d(0, 10px, 0) scale(.985);
}

.motion-ready [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

.motion-ready .primary-button[data-reveal] {
  transition:
    opacity 560ms cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms),
    transform 640ms cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms),
    background-color .18s ease,
    border-color .18s ease,
    color .18s ease,
    box-shadow .18s ease;
}

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

  .motion-ready [data-reveal],
  .motion-ready [data-reveal="scale"],
  .motion-ready [data-reveal].is-revealed {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (min-width: 681px) {
  .platform-copy {
    min-height: 0;
    padding: 28px;
  }

  .platform-copy p {
    max-width: 35rem;
    margin-top: 18px;
  }

  .platform-art {
    min-height: 0;
  }

  .lineage-art {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    padding: 24px 28px;
  }

  .lineage-svg {
    position: relative;
    inset: auto;
    display: block;
    flex: 0 0 auto;
    width: 1000px;
    height: 390px;
    margin: -97.5px -250px;
  }

  .dashboard-art,
  .conversion-art,
  .verification-art {
    padding: 24px 28px;
  }

  .dashboard-shell {
    margin: -75px -140px;
  }

  .conversion-board {
    margin: -85.5px -160px;
  }

  .verification-board {
    margin: -66px -215px;
  }
}

@media (max-width: 1100px) {
  :root {
    --shell-width-gutter: 32px;
    --sticky-header-offset: 175px;
  }

  .page-shell {
    width: min(var(--shell-max-width), calc(100% - var(--shell-width-gutter)));
  }

  .site-header {
    grid-template-columns: 1fr;
  }

  .brand,
  .primary-nav a,
  .nav-cta {
    border-right: 0;
  }

  .brand {
    min-height: 64px;
    border-bottom: 1px solid var(--pale);
  }

  .primary-nav {
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--pale);
  }

  .primary-nav a {
    min-height: 46px;
    border-right: 1px solid var(--pale);
  }

  .nav-cta {
    margin: 12px 24px;
  }

  .hero,
  .two-column,
  .split-platform,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .booking-copy {
    min-height: auto;
  }

  .booking-picker {
    grid-template-columns: minmax(0, 1fr) minmax(260px, .8fr);
  }

  .hero-right {
    border-top: 1px solid var(--pale);
    border-left: 0;
  }

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

  .case-row {
    grid-template-columns: 210px 1fr;
  }

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

@media (max-width: 680px) {
  :root {
    --sticky-header-offset: 65px;
  }

  body {
    background: var(--surface);
  }

  body::before {
    display: none;
  }

  .page-shell {
    width: 100%;
    border-left: 0;
    border-right: 0;
  }

  .striped-band {
    height: 50px;
  }

  .site-header {
    grid-template-columns: 1fr 64px;
    min-height: 64px;
  }

  .brand {
    min-width: 0;
    padding: 0 20px;
    border-bottom: 0;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    min-height: 64px;
    border: 0;
    border-left: 1px solid var(--pale);
    border-bottom: 1px solid var(--pale);
    background: transparent;
    color: var(--ink);
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    width: 22px;
    height: 2px;
    background: currentColor;
    transition: transform .18s ease, opacity .18s ease;
  }

  .menu-toggle span:nth-child(1) {
    transform: translateY(-7px);
  }

  .menu-toggle span:nth-child(3) {
    transform: translateY(7px);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .primary-nav {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    border-top: 1px solid var(--pale);
  }

  .primary-nav a {
    justify-content: flex-start;
    padding-left: 28px;
  }

  .nav-cta {
    display: none;
    grid-column: 1 / -1;
  }

  .site-header.is-menu-open .primary-nav,
  .site-header.is-menu-open .nav-cta {
    display: flex;
  }

  .site-header.is-menu-open .primary-nav {
    flex-direction: column;
  }

  .site-header.is-menu-open .nav-cta {
    margin: 14px 20px 18px;
  }

  .hero-copy,
  .platform-section,
  .customer-quote,
  .case-studies,
  .booking-copy,
  .booking-widget-wrap,
  .footer-grid > * {
    padding: 26px 20px;
  }

  .customer-quote figure {
    width: 100%;
  }

  .experts-header {
    padding: 26px 20px 0;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 14vw, 3.15rem);
  }

  .details-grid,
  .console-grid,
  .case-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-right {
    padding: 20px;
  }

  .detail-card {
    min-height: 300px;
    padding: 26px 20px;
  }

  .section-heading h2,
  .platform-copy h2 {
    font-size: 2.15rem;
  }

  .experts-header h2,
  .case-studies > h2,
  .booking-copy h2 {
    font-size: 2.8rem;
  }

  .booking-facts,
  .booking-picker,
  .time-slot-list {
    grid-template-columns: 1fr;
  }

  .booking-panel-header,
  .booking-slot-header {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .booking-month-controls {
    justify-content: flex-start;
  }

  .booking-calendar-pane,
  .booking-time-pane,
  .booking-confirmation {
    padding: 20px;
  }

  .platform-copy,
  .platform-art,
  .security-map {
    min-height: 330px;
    padding: 26px 20px;
  }

  .lineage-art {
    min-height: 320px;
    overflow: hidden;
  }

  .lineage-svg {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    min-width: 0;
    height: auto;
    aspect-ratio: 1000 / 390;
    transform: none;
  }

  .dashboard-shell,
  .conversion-board,
  .verification-board {
    transform: none;
  }

  .dashboard-shell {
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: 230px;
  }

  .dashboard-rail {
    gap: 12px;
    padding-top: 16px;
  }

  .dashboard-rail span {
    width: 22px;
    height: 22px;
  }

  .dashboard-main {
    grid-template-rows: 22px 54px 1fr;
    gap: 10px;
    padding: 14px;
  }

  .dashboard-topline > span {
    width: min(100px, 55%);
  }

  .dashboard-metrics,
  .dashboard-grid {
    gap: 8px;
  }

  .dashboard-chart {
    gap: 7px;
    padding: 18px 14px;
  }

  .dashboard-chart span {
    min-width: 8px;
  }

  .dashboard-table {
    gap: 10px;
    padding: 12px 8px;
  }

  .conversion-board {
    grid-template-rows: auto 32px auto 22px auto;
    min-height: 300px;
  }

  .conversion-lanes {
    gap: 6px;
  }

  .conversion-loop {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 106px;
    padding: 12px 8px;
  }

  .conversion-loop i {
    width: 30px;
    height: 30px;
    margin-inline: auto;
  }

  .conversion-loop div {
    display: none;
  }

  .conversion-loop em {
    width: 24px;
    height: 24px;
  }

  .conversion-loop em::before {
    left: 5px;
    top: 5px;
  }

  .conversion-gate {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    width: 84%;
    min-height: 82px;
    padding: 12px 14px;
  }

  .conversion-gate i {
    width: 38px;
    height: 42px;
  }

  .conversion-gate-steps {
    gap: 7px;
  }

  .conversion-gate-steps span:not(:last-child)::after {
    left: 10px;
    width: 12px;
  }

  .conversion-result {
    grid-template-columns: 38px 1fr;
    gap: 12px;
    width: 78%;
    min-height: 68px;
    padding: 12px 14px;
  }

  .conversion-result i {
    width: 34px;
    height: 34px;
  }

  .conversion-result i::before {
    left: 8px;
    top: 8px;
  }

  .verification-board {
    grid-template-columns: minmax(0, 1fr) 58px minmax(0, 1fr);
    grid-template-rows: 110px 64px;
    gap: 12px;
  }

  .verification-panel {
    min-height: 100px;
    padding: 18px 12px;
  }

  .verification-badge {
    width: 52px;
    height: 52px;
  }

  .case-row {
    align-items: start;
    gap: 18px;
    padding: 22px 0;
  }

  .blue-cta {
    min-height: 360px;
    padding: 30px 20px;
  }

}
