@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --paper: #f7f5ef;
  --paper-2: #eeeae0;
  --surface: #ffffff;
  --surface-soft: #fbfaf6;
  --ink: #071b2e;
  --ink-2: #10283d;
  --text: #4e6270;
  --muted: #5f7079;
  --line: #ccd8d5;
  --line-strong: #9fb5b2;
  --capture: #2abce2;
  --respond: #00a99d;
  --book: #b9eb3b;
  --paid: #f2b84b;
  --retain: #f37e68;
  --capture-soft: #e6f8fc;
  --respond-soft: #e5f6f3;
  --book-soft: #f1f9db;
  --paid-soft: #fff5db;
  --retain-soft: #feebe6;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --shell: 1240px;
  --shadow: 0 20px 60px rgba(7, 27, 46, 0.12);
  --current: linear-gradient(90deg, var(--capture), var(--respond) 30%, var(--book) 58%, var(--paid) 78%, var(--retain));
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

button,
summary,
input[type="range"] {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p,
figure,
ol,
ul,
dl,
dd {
  margin: 0;
}

ol,
ul {
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  letter-spacing: -0.045em;
}

h1 {
  max-width: 10.8ch;
  font-size: clamp(3.55rem, 6.2vw, 6.35rem);
  font-weight: 730;
  line-height: 0.95;
}

h2 {
  max-width: 15ch;
  font-size: clamp(2.65rem, 4.5vw, 4.45rem);
  font-weight: 720;
  line-height: 1;
}

h3 {
  font-size: clamp(1.6rem, 2.3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.12;
}

h4 {
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

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

.narrow {
  width: min(calc(100% - 80px), 820px);
  margin-inline: auto;
}

.section {
  padding-block: clamp(88px, 10vw, 144px);
}

.section-tight {
  padding-block: clamp(64px, 8vw, 104px);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
  transition: transform 120ms ease-out;
}

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

:focus-visible {
  outline: 3px solid var(--capture);
  outline-offset: 3px;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #08777b;
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before,
.kicker::before {
  width: 22px;
  height: 4px;
  border-radius: 999px;
  background: var(--current);
  content: "";
}

.kicker-light {
  color: var(--book);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 64px;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.section-heading > div > .kicker {
  margin-bottom: 22px;
}

.section-heading > p,
.section-heading > div > p:last-child {
  max-width: 54ch;
  color: var(--text);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.72;
}

.section-heading.centered {
  display: block;
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered h2,
.section-heading.centered p {
  margin-inline: auto;
}

.section-heading.centered .kicker {
  justify-content: center;
}

.section-heading.centered p {
  margin-top: 24px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 760;
  transition: background-color 150ms ease-out, border-color 150ms ease-out, color 150ms ease-out;
}

.button::after {
  font-size: 1.1em;
  content: "→";
  transition: transform 150ms ease-out;
}

.button:hover {
  border-color: var(--respond);
  background: var(--respond);
}

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

.button-small {
  min-height: 44px;
  padding-inline: 17px;
  font-size: 0.82rem;
}

.button-light {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.button-light:hover {
  border-color: var(--book);
  background: var(--book);
  color: var(--ink);
}

.button-ghost {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.button-ghost:hover {
  border-color: var(--ink);
  background: var(--surface);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 730;
}

.text-link:hover {
  color: #08777b;
}

.status-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-label::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(247, 245, 239, 0.96);
  transition: border-color 160ms ease-out, box-shadow 160ms ease-out;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 6px 24px rgba(7, 27, 46, 0.06);
}

.nav-bar {
  display: grid;
  min-height: 76px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  min-width: 116px;
  align-items: center;
}

.brand img {
  width: 110px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-link,
.nav-dropdown > summary {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  color: var(--ink-2);
  font-size: 0.87rem;
  font-weight: 660;
  list-style: none;
}

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

.nav-dropdown > summary::after {
  color: var(--muted);
  font-size: 0.75rem;
  content: "⌄";
}

.nav-link:hover,
.nav-dropdown > summary:hover,
.nav-dropdown[open] > summary {
  background: var(--surface);
}

.nav-dropdown {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: min(760px, calc(100vw - 48px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

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

.mega-grid a {
  display: grid;
  min-height: 78px;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
}

.mega-grid a:hover,
.mega-grid a:focus-visible {
  background: var(--paper);
}

.mega-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
  color: #08777b;
  font-size: 0.72rem;
  font-weight: 800;
}

.mega-grid strong,
.mega-grid small {
  display: block;
}

.mega-grid strong {
  margin-bottom: 2px;
  font-size: 0.9rem;
}

.mega-grid small {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.35;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.login-link {
  min-height: 44px;
  padding: 11px 2px;
  font-size: 0.87rem;
  font-weight: 690;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
  display: block;
  width: 19px;
  height: 2px;
  background: var(--ink);
  content: "";
  transition: transform 160ms ease-out, opacity 160ms ease-out;
}

.mobile-toggle span {
  position: relative;
}

.mobile-toggle span::before {
  position: absolute;
  top: -6px;
}

.mobile-toggle span::after {
  position: absolute;
  top: 6px;
}

.mobile-toggle[aria-expanded="true"] span {
  background: transparent;
}

.mobile-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 76px 0 0;
  z-index: 95;
  overflow-y: auto;
  padding: 24px;
  background: var(--paper);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu nav {
  display: grid;
  gap: 8px;
}

.mobile-menu nav > a,
.mobile-menu summary {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  font-weight: 720;
  list-style: none;
}

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

.mobile-menu details div {
  display: grid;
  padding: 8px 12px 18px;
}

.mobile-menu details a {
  padding: 10px 4px;
  color: var(--text);
  font-size: 0.9rem;
}

.mobile-menu .button {
  width: 100%;
  margin-top: 24px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 8vw, 112px) 0 clamp(72px, 8vw, 110px);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  inset: auto -10% -32% 42%;
  height: 64%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 188, 226, 0.16), rgba(185, 235, 59, 0.08) 46%, transparent 72%);
  filter: blur(18px);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.83fr) minmax(560px, 1.17fr);
  align-items: center;
  gap: clamp(44px, 5vw, 76px);
}

.hero-copy {
  min-width: 0;
}

.hero-copy .eyebrow {
  margin-bottom: 28px;
}

.hero-copy h1 span {
  color: #08777b;
}

.hero-lead {
  max-width: 590px;
  margin-top: 30px;
  color: var(--text);
  font-size: clamp(1.08rem, 1.55vw, 1.24rem);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

.hero-microcopy {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-microcopy span + span::before {
  margin-inline: 9px;
  color: var(--respond);
  content: "•";
}

.revenue-current {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.current-toolbar {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
}

.current-toolbar > div:first-child {
  display: flex;
  align-items: center;
  gap: 9px;
}

.current-toolbar strong {
  font-size: 0.85rem;
}

.demo-badge {
  padding: 4px 7px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.62rem;
  font-weight: 760;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.source-switch {
  display: flex;
  gap: 4px;
}

.source-switch button {
  min-height: 36px;
  padding: 0 11px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 720;
}

.source-switch button:hover,
.source-switch button[aria-pressed="true"] {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}

.current-map {
  position: relative;
  padding: 27px 24px 25px;
  background: var(--surface-soft);
}

.current-track {
  position: absolute;
  top: 50px;
  right: 44px;
  left: 44px;
  height: 4px;
  border-radius: 999px;
  background: var(--line);
}

.current-track::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--current);
  content: "";
  transform: scaleX(1);
  transform-origin: left;
}

.current-stages {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 5px;
}

.current-stages li {
  min-width: 0;
  text-align: center;
}

.current-node {
  display: grid;
  width: 22px;
  height: 22px;
  margin: 0 auto 12px;
  place-items: center;
  border: 4px solid var(--surface-soft);
  border-radius: 50%;
  background: var(--line-strong);
  box-shadow: 0 0 0 1px var(--line-strong);
}

.current-stages li:nth-child(1) .current-node { background: var(--capture); }
.current-stages li:nth-child(2) .current-node,
.current-stages li:nth-child(3) .current-node { background: var(--respond); }
.current-stages li:nth-child(4) .current-node,
.current-stages li:nth-child(5) .current-node { background: var(--book); }
.current-stages li:nth-child(6) .current-node { background: var(--paid); }
.current-stages li:nth-child(7) .current-node { background: var(--retain); }

.current-stages strong,
.current-stages small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.current-stages strong {
  font-size: 0.66rem;
  font-weight: 780;
}

.current-stages small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.56rem;
}

.signal-token {
  position: absolute;
  top: 40px;
  left: 34px;
  z-index: 2;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 7px;
  background: var(--surface);
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.56rem;
  font-weight: 850;
  box-shadow: 0 4px 12px rgba(7, 27, 46, 0.18);
}

.demo-workspace {
  display: grid;
  min-height: 350px;
  grid-template-columns: 1.05fr 0.75fr;
}

.demo-conversation {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.demo-conversation > header,
.demo-results > header {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
}

.contact-title {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.contact-avatar {
  display: grid;
  width: 34px;
  height: 34px;
  flex: none;
  place-items: center;
  border-radius: 9px;
  background: var(--capture-soft);
  color: #08777b;
  font-size: 0.72rem;
  font-weight: 800;
}

.contact-title strong,
.contact-title small {
  display: block;
}

.contact-title strong {
  overflow: hidden;
  font-size: 0.77rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-title small {
  color: var(--muted);
  font-size: 0.62rem;
}

.handoff-button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  font-size: 0.65rem;
  font-weight: 720;
}

.message-stack {
  display: grid;
  flex: 1;
  align-content: center;
  gap: 9px;
  padding: 18px;
  background: var(--surface-soft);
}

.demo-message {
  max-width: 86%;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 12px 12px 12px 4px;
  background: var(--surface);
  font-size: 0.69rem;
  line-height: 1.45;
}

.demo-message small {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.56rem;
}

.demo-message.outgoing {
  justify-self: end;
  border-color: rgba(0, 169, 157, 0.28);
  border-radius: 12px 12px 4px 12px;
  background: var(--respond-soft);
}

.qualification-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 2px;
  padding: 9px 11px;
  border: 1px solid rgba(0, 169, 157, 0.26);
  border-radius: 9px;
  background: var(--respond-soft);
  font-size: 0.62rem;
}

.qualification-row i {
  display: grid;
  width: 24px;
  height: 24px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  background: var(--respond);
  color: #fff;
  font-style: normal;
  font-weight: 800;
}

.qualification-row strong,
.qualification-row span {
  display: block;
}

.qualification-row span {
  color: var(--text);
}

.demo-results {
  min-width: 0;
  background: var(--surface);
}

.demo-results > header strong {
  font-size: 0.77rem;
}

.demo-results > header small {
  color: var(--muted);
  font-size: 0.6rem;
}

.result-cards {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.result-card {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
}

.result-card > span,
.result-card > strong,
.result-card > small {
  display: block;
}

.result-card > span {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
}

.result-card > strong {
  font-size: 0.78rem;
}

.result-card > small {
  margin-top: 2px;
  color: var(--text);
  font-size: 0.62rem;
}

.result-card.booked {
  border-color: rgba(185, 235, 59, 0.65);
  background: var(--book-soft);
}

.result-card.optional {
  border-style: dashed;
}

.result-card.optional > span {
  color: #82601a;
}

.demo-caption {
  padding: 10px 18px 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.63rem;
}

/* Revenue cutaway */
.systems-reveal {
  --systems-pos: 68%;
  --systems-handle-gutter: 27px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.systems-reveal-toolbar {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.systems-reveal-toolbar > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.systems-reveal-toolbar strong {
  font-size: 0.85rem;
}

.systems-reveal-toolbar > span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 680;
}

.systems-reveal-frame {
  position: relative;
  height: clamp(452px, 39vw, 492px);
  overflow: hidden;
  cursor: ew-resize;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.systems-reveal-panel {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 58px 24px 24px;
  pointer-events: none;
}

.systems-reveal-panel--systems {
  background: var(--ink);
  color: #fff;
}

.systems-reveal-panel--outcome {
  z-index: 2;
  background: var(--paper);
  clip-path: inset(0 calc(100% - var(--systems-pos)) 0 0);
}

.systems-reveal-tag {
  position: absolute;
  z-index: 3;
  top: 15px;
  padding: 5px 9px;
  border: 1px solid currentColor;
  border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.58rem;
  font-weight: 780;
  letter-spacing: 0.055em;
  line-height: 1;
  text-transform: uppercase;
}

.systems-reveal-tag--systems {
  right: 16px;
  border-color: rgba(255, 255, 255, 0.24);
  color: #d8e5e8;
}

.systems-reveal-tag--outcome {
  left: 16px;
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.systems-board,
.outcome-board {
  position: relative;
  width: min(500px, 100%);
  border-radius: 16px;
}

.systems-board {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(16, 40, 61, 0.94);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2);
}

.systems-board > header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.systems-board > header span,
.systems-board > header strong {
  display: block;
}

.systems-board > header span {
  color: #9fb8c4;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.58rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.systems-board > header strong {
  max-width: 17ch;
  font-size: 0.92rem;
  line-height: 1.28;
  text-align: right;
}

.systems-board-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.systems-board-grid::before {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, var(--capture), var(--respond) 46%, var(--book));
  content: "";
  opacity: 0.68;
}

.systems-board-grid::after {
  position: absolute;
  z-index: 2;
  top: 8%;
  left: 50%;
  width: 7px;
  height: 7px;
  transform: translate(-50%, -50%);
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--book);
  box-shadow: 0 0 0 3px rgba(185, 235, 59, 0.16);
  content: "";
  opacity: 0;
}

.systems-board-grid li {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  min-height: 70px;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
}

.systems-board-grid li::before {
  position: absolute;
  top: 50%;
  width: 5px;
  border-top: 1px solid rgba(141, 229, 244, 0.62);
  content: "";
}

.systems-board-grid li:nth-child(odd)::before {
  right: -5px;
}

.systems-board-grid li:nth-child(even)::before {
  left: -5px;
}

.systems-board-grid li::after {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--book);
  content: "";
}

.systems-board-grid li > span {
  display: grid;
  width: 31px;
  height: 31px;
  flex: none;
  place-items: center;
  border: 1px solid rgba(42, 188, 226, 0.5);
  border-radius: 8px;
  background: rgba(42, 188, 226, 0.12);
  color: #8de5f4;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.58rem;
  font-weight: 800;
}

.systems-board-grid li:nth-child(2) > span,
.systems-board-grid li:nth-child(3) > span {
  border-color: rgba(0, 169, 157, 0.62);
  background: rgba(0, 169, 157, 0.14);
  color: #91e4dd;
}

.systems-board-grid li:nth-child(4) > span,
.systems-board-grid li:nth-child(5) > span {
  border-color: rgba(185, 235, 59, 0.56);
  background: rgba(185, 235, 59, 0.12);
  color: #dff59b;
}

.systems-board-grid li:nth-child(6) > span {
  border-color: rgba(242, 184, 75, 0.58);
  background: rgba(242, 184, 75, 0.12);
  color: #f7d88f;
}

.systems-board-grid small,
.systems-board-grid strong,
.systems-board-grid em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.systems-board-grid small {
  color: #8de5f4;
  font-size: 0.55rem;
  font-style: normal;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.systems-board-grid strong {
  margin-top: 1px;
  color: #fff;
  font-size: 0.69rem;
  line-height: 1.3;
}

.systems-board-grid em {
  margin-top: 2px;
  color: #aebfc7;
  font-size: 0.57rem;
  font-style: normal;
}

.systems-board-grid .systems-board-optional {
  border-style: dashed;
}

.systems-board-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;
  background: rgba(0, 169, 157, 0.09);
}

.systems-board-status > i {
  width: 9px;
  height: 9px;
  flex: none;
  border-radius: 50%;
  background: var(--book);
  box-shadow: 0 0 0 4px rgba(185, 235, 59, 0.12);
}

.systems-board-status strong,
.systems-board-status small {
  display: block;
}

.systems-board-status strong {
  font-size: 0.64rem;
}

.systems-board-status small {
  margin-top: 1px;
  color: #aebfc7;
  font-size: 0.56rem;
}

.outcome-board {
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 50px rgba(7, 27, 46, 0.11);
}

.outcome-board > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.outcome-board > header span,
.outcome-board > header strong {
  display: block;
}

.outcome-board > header span {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 760;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.outcome-board > header strong {
  margin-top: 2px;
  font-size: 0.8rem;
}

.outcome-board > header > b {
  padding: 6px 9px;
  border: 1px solid rgba(0, 169, 157, 0.32);
  border-radius: 7px;
  background: var(--respond-soft);
  color: #086e70;
  font-size: 0.62rem;
  white-space: nowrap;
}

.outcome-booking-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 13px;
  border: 1px solid rgba(185, 235, 59, 0.72);
  border-radius: 12px;
  background: var(--book-soft);
}

.outcome-calendar-tile {
  width: 48px;
  overflow: hidden;
  border: 1px solid rgba(7, 27, 46, 0.16);
  border-radius: 9px;
  background: #fff;
  text-align: center;
}

.outcome-calendar-tile span,
.outcome-calendar-tile strong {
  display: block;
}

.outcome-calendar-tile span {
  padding: 3px 0;
  background: var(--ink);
  color: #fff;
  font-size: 0.52rem;
  font-weight: 800;
  text-transform: uppercase;
}

.outcome-calendar-tile strong {
  padding: 3px 0 5px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.outcome-booking-card > div:nth-child(2) > span,
.outcome-booking-card h3,
.outcome-booking-card p {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.outcome-booking-card > div:nth-child(2) > span {
  color: #59704e;
  font-size: 0.55rem;
  font-weight: 780;
  text-transform: uppercase;
}

.outcome-booking-card h3 {
  margin: 2px 0 0;
  font-size: 0.76rem;
}

.outcome-booking-card p {
  margin: 2px 0 0;
  color: var(--text);
  font-size: 0.59rem;
}

.outcome-booked-status {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--book);
  color: var(--ink);
  font-size: 0.57rem;
  text-transform: uppercase;
}

.outcome-day-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 5px;
  margin-top: 10px;
}

.outcome-day-strip > span {
  min-width: 0;
  padding: 7px 4px;
  border: 1px dashed var(--line-strong);
  border-radius: 8px;
  background: var(--surface-soft);
  text-align: center;
}

.outcome-day-strip > span.is-booked {
  border-style: solid;
  border-color: rgba(0, 169, 157, 0.28);
  background: var(--respond-soft);
}

.outcome-day-strip small,
.outcome-day-strip strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.outcome-day-strip small {
  color: var(--muted);
  font-size: 0.51rem;
}

.outcome-day-strip strong {
  margin-top: 1px;
  font-size: 0.55rem;
}

.outcome-money-card {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 10px;
  padding: 11px 13px;
  border: 1px solid rgba(242, 184, 75, 0.48);
  border-radius: 11px;
  background: var(--paid-soft);
}

.outcome-money-mark {
  display: grid;
  width: 37px;
  height: 37px;
  flex: none;
  place-items: center;
  border-radius: 9px;
  background: var(--paid);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 820;
}

.outcome-money-card > div {
  min-width: 0;
  flex: 1;
}

.outcome-money-card small,
.outcome-money-card strong,
.outcome-money-card p {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.outcome-money-card small {
  color: #755817;
  font-size: 0.54rem;
  font-weight: 760;
  text-transform: uppercase;
}

.outcome-money-card strong {
  margin-top: 1px;
  font-size: 0.74rem;
}

.outcome-money-card p {
  margin: 1px 0 0;
  color: var(--text);
  font-size: 0.57rem;
}

.outcome-money-card > b {
  color: #755817;
  font-size: 0.59rem;
  text-transform: uppercase;
}

.outcome-board > footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-size: 0.61rem;
  font-weight: 650;
}

.outcome-board > footer i {
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--respond);
}

.systems-reveal-divider {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--systems-pos);
  width: 3px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--capture), var(--respond) 42%, var(--book));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.42);
  pointer-events: none;
}

.systems-reveal-handle {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: clamp(var(--systems-handle-gutter), var(--systems-pos), calc(100% - var(--systems-handle-gutter)));
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  padding: 4px;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255, 255, 255, 0.84);
  border-radius: 11px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 9px 24px rgba(7, 27, 46, 0.28);
  cursor: ew-resize;
  touch-action: none;
}

.systems-reveal-handle > span,
.systems-reveal-handle > small {
  display: block;
  line-height: 1;
}

.systems-reveal-handle > span {
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.systems-reveal-handle > small {
  font-size: 0.46rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.systems-reveal-handle:hover {
  background: var(--ink-2);
}

.systems-reveal-handle:focus-visible {
  outline: 3px solid var(--capture);
  outline-offset: 4px;
}

.systems-reveal.is-hinting .systems-reveal-panel--outcome {
  transition: clip-path 560ms var(--ease);
}

.systems-reveal.is-hinting .systems-reveal-divider,
.systems-reveal.is-hinting .systems-reveal-handle {
  transition: left 560ms var(--ease);
}

.systems-reveal.is-hinting .systems-board-grid::after {
  animation: systems-signal 980ms ease-out 180ms 1 forwards;
}

@keyframes systems-signal {
  0% {
    top: 8%;
    opacity: 0;
  }
  18%,
  82% {
    opacity: 1;
  }
  100% {
    top: 92%;
    opacity: 0;
  }
}

.systems-reveal.is-dragging .systems-reveal-handle {
  cursor: grabbing;
}

.systems-reveal figcaption {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  padding: 13px 18px 15px;
  border-top: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font-size: 0.61rem;
  line-height: 1.45;
}

.systems-reveal figcaption strong {
  color: var(--ink);
  font-size: 0.67rem;
}

/* Verified facts */
.fact-strip {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.fact-grid div {
  min-height: 112px;
  padding: 25px 22px;
  border-left: 1px solid var(--line);
}

.fact-grid div:last-child {
  border-right: 1px solid var(--line);
}

.fact-grid span,
.fact-grid strong {
  display: block;
}

.fact-grid span {
  margin-bottom: 7px;
  color: #08777b;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.66rem;
  font-weight: 750;
  text-transform: uppercase;
}

.fact-grid strong {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Problem */
.problem-section {
  background: var(--surface);
}

.broken-current {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.leak-card {
  position: relative;
  min-height: 250px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.leak-card:last-child {
  border-right: 0;
}

.leak-card::after {
  position: absolute;
  top: 61px;
  right: -6px;
  z-index: 2;
  width: 11px;
  height: 11px;
  border: 2px solid var(--surface);
  border-radius: 50%;
  background: var(--retain);
  content: "";
}

.leak-card:last-child::after {
  display: none;
}

.leak-card > span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: #08777b;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 800;
}

.leak-card h3 {
  font-size: 1.15rem;
  letter-spacing: -0.025em;
}

.leak-card p {
  margin-top: 12px;
  color: var(--text);
  font-size: 0.86rem;
  line-height: 1.55;
}

.problem-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 22px;
  color: var(--text);
  font-size: 0.9rem;
}

/* Journey tabs */
.journey-section {
  background: var(--paper);
}

.journey-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 14px 44px rgba(7, 27, 46, 0.07);
}

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

.journey-tabs button {
  min-height: 76px;
  padding: 12px 14px;
  border: 0;
  border-right: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--text);
  font-size: 0.77rem;
  font-weight: 740;
}

.journey-tabs button:last-child {
  border-right: 0;
}

.journey-tabs button span {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.61rem;
}

.journey-tabs button:hover {
  background: var(--paper);
  color: var(--ink);
}

.journey-tabs button[aria-selected="true"] {
  background: var(--surface);
  color: var(--ink);
  box-shadow: inset 0 4px 0 var(--stage, var(--capture));
}

.journey-tabs button:nth-child(1) { --stage: var(--capture); }
.journey-tabs button:nth-child(2) { --stage: var(--respond); }
.journey-tabs button:nth-child(3) { --stage: var(--book); }
.journey-tabs button:nth-child(4) { --stage: var(--paid); }
.journey-tabs button:nth-child(5) { --stage: var(--retain); }

.journey-panel {
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.28fr);
}

.journey-panel[hidden] {
  display: none;
}

.journey-copy {
  padding: clamp(36px, 5vw, 66px);
}

.stage-kicker {
  display: inline-flex;
  margin-bottom: 26px;
  color: #08777b;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-copy h3 {
  max-width: 12ch;
}

.journey-copy > p {
  margin-top: 22px;
  color: var(--text);
  line-height: 1.7;
}

.capability-list {
  display: grid;
  gap: 12px;
  margin-block: 28px;
}

.capability-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  color: var(--ink-2);
  font-size: 0.86rem;
  font-weight: 630;
}

.capability-list li::before {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: var(--book-soft);
  color: #52780f;
  font-size: 0.62rem;
  font-weight: 850;
  content: "✓";
}

.availability-note {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.product-frame {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background: var(--frame-bg, var(--capture-soft));
}

/* Standalone solution demos are not stretched by a journey-panel grid. */
.section.journey-section > .shell > .product-frame {
  min-height: clamp(460px, 48vw, 620px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.product-label {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 5;
  padding: 5px 8px;
  border: 1px solid rgba(7, 27, 46, 0.16);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.58rem;
  font-weight: 760;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ui-window {
  position: absolute;
  inset: 70px 7% 7%;
  overflow: hidden;
  border: 1px solid rgba(7, 27, 46, 0.18);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 18px 42px rgba(7, 27, 46, 0.12);
}

.ui-toolbar {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.ui-toolbar strong {
  font-size: 0.72rem;
}

.ui-toolbar span {
  color: var(--muted);
  font-size: 0.6rem;
}

.capture-ui {
  display: grid;
  height: calc(100% - 48px);
  grid-template-columns: 0.72fr 1.28fr;
}

.source-list {
  padding: 14px;
  border-right: 1px solid var(--line);
  background: var(--surface-soft);
}

.source-list > span {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 760;
  text-transform: uppercase;
}

.source-row {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 9px;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface);
}

.source-row > i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  background: var(--capture-soft);
  color: #08777b;
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 800;
}

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

.source-row strong {
  font-size: 0.67rem;
}

.source-row small,
.source-row time {
  color: var(--muted);
  font-size: 0.54rem;
}

.contact-detail {
  padding: 18px;
}

.contact-detail > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-detail > header strong,
.contact-detail > header span {
  display: block;
}

.contact-detail > header strong {
  font-size: 0.78rem;
}

.contact-detail > header span {
  color: var(--muted);
  font-size: 0.59rem;
}

.contact-status {
  padding: 4px 7px;
  border-radius: 5px;
  background: var(--book-soft);
  color: #52780f;
  font-size: 0.56rem;
  font-weight: 780;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.detail-grid div {
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-grid dt {
  color: var(--muted);
  font-size: 0.54rem;
  text-transform: uppercase;
}

.detail-grid dd {
  margin-top: 3px;
  font-size: 0.67rem;
  font-weight: 700;
}

.inbox-ui {
  display: grid;
  height: calc(100% - 48px);
  grid-template-columns: 0.68fr 1.32fr;
}

.inbox-list {
  padding: 10px;
  border-right: 1px solid var(--line);
  background: var(--surface-soft);
}

.inbox-row {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 9px;
  border-radius: 8px;
}

.inbox-row.active {
  border: 1px solid var(--line);
  background: var(--surface);
}

.inbox-row > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  background: var(--respond-soft);
  font-size: 0.6rem;
  font-weight: 800;
}

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

.inbox-row strong {
  font-size: 0.63rem;
}

.inbox-row small,
.inbox-row time {
  color: var(--muted);
  font-size: 0.5rem;
}

.thread-ui {
  display: flex;
  flex-direction: column;
}

.thread-ui > header {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
}

.thread-ui > header strong {
  font-size: 0.69rem;
}

.thread-ui > header button {
  min-height: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  font-size: 0.57rem;
}

.thread-ui .message-stack {
  padding: 13px;
}

.calendar-ui {
  display: grid;
  height: calc(100% - 48px);
  grid-template-columns: 1.2fr 0.8fr;
}

.calendar-board {
  padding: 15px;
  border-right: 1px solid var(--line);
}

.calendar-head {
  display: grid;
  grid-template-columns: 36px repeat(4, minmax(0, 1fr));
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.52rem;
  text-align: center;
}

.calendar-grid {
  display: grid;
  grid-template-columns: 36px repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(4, 54px);
}

.calendar-grid > span {
  padding-top: 4px;
  color: var(--muted);
  font-size: 0.5rem;
}

.calendar-grid > i {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.calendar-grid > i:nth-child(5n) {
  border-right: 1px solid var(--line);
}

.booking-block {
  z-index: 2;
  grid-column: 3;
  grid-row: 2;
  margin: 3px;
  padding: 6px;
  border-radius: 6px;
  background: var(--book);
  font-style: normal;
  font-size: 0.51rem;
  font-weight: 780;
}

.pipeline-side {
  padding: 15px;
  background: var(--surface-soft);
}

.pipeline-side > span {
  color: var(--muted);
  font-size: 0.56rem;
  text-transform: uppercase;
}

.pipeline-step {
  position: relative;
  margin-top: 13px;
  padding: 10px 10px 10px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  font-size: 0.62rem;
  font-weight: 700;
}

.pipeline-step::before {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line-strong);
  content: "";
  transform: translateY(-50%);
}

.pipeline-step.done::before {
  background: var(--book);
}

.payment-ui,
.retention-ui {
  display: grid;
  height: calc(100% - 48px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
}

.invoice-card,
.payment-status,
.review-card,
.reactivation-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}

.invoice-card > span,
.payment-status > span,
.review-card > span,
.reactivation-card > span {
  color: var(--muted);
  font-size: 0.55rem;
  font-weight: 750;
  text-transform: uppercase;
}

.invoice-card h4,
.payment-status h4,
.review-card h4,
.reactivation-card h4 {
  margin-top: 8px;
  font-size: 0.85rem;
}

.invoice-lines {
  display: grid;
  gap: 9px;
  margin-top: 16px;
}

.invoice-lines div {
  display: flex;
  justify-content: space-between;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--line);
  font-size: 0.61rem;
}

.paid-stamp {
  display: grid;
  min-height: 145px;
  margin-top: 17px;
  place-items: center;
  border: 1px solid rgba(242, 184, 75, 0.6);
  border-radius: 9px;
  background: var(--paid-soft);
  text-align: center;
}

.paid-stamp strong {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
}

.paid-stamp small {
  color: var(--text);
  font-size: 0.58rem;
}

.review-request {
  margin-top: 16px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--retain-soft);
  font-size: 0.64rem;
  line-height: 1.5;
}

.review-request small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.contact-count {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 18px;
}

.contact-count strong {
  font-size: 2.4rem;
}

.contact-count span {
  color: var(--text);
  font-size: 0.65rem;
}

.segment-list {
  display: grid;
  gap: 7px;
  margin-top: 14px;
}

.segment-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.61rem;
}

.segment-list em {
  color: #08777b;
  font-style: normal;
  font-weight: 750;
}

/* Missed-call flagship */
.missed-section {
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.missed-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(48px, 7vw, 90px);
}

.missed-copy .kicker {
  margin-bottom: 24px;
}

.missed-copy h2 {
  color: #fff;
}

.missed-copy > p {
  margin-top: 24px;
  color: #b8c6ce;
  font-size: 1.02rem;
}

.missed-copy .button {
  margin-top: 30px;
}

.demo-disclosure {
  margin-top: 18px;
  color: #8da1ad;
  font-size: 0.7rem;
  line-height: 1.55;
}

.missed-demo {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background: #0d2438;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.missed-demo > header {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.missed-demo > header strong {
  font-size: 0.82rem;
}

.missed-demo > header span {
  color: #9fb2bd;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.62rem;
}

.missed-ledger {
  position: relative;
  padding: 18px 20px;
}

.missed-ledger::before {
  position: absolute;
  top: 36px;
  bottom: 36px;
  left: 85px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(var(--capture), var(--respond), var(--book), var(--retain));
  content: "";
}

.missed-event {
  position: relative;
  display: grid;
  min-height: 74px;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.missed-event::before {
  position: absolute;
  left: 59px;
  width: 10px;
  height: 10px;
  border: 3px solid #0d2438;
  border-radius: 50%;
  background: var(--event-color, var(--respond));
  box-shadow: 0 0 0 1px var(--event-color, var(--respond));
  content: "";
}

.missed-event time {
  color: #8fa4b0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.6rem;
}

.missed-event strong,
.missed-event small {
  display: block;
}

.missed-event strong {
  font-size: 0.77rem;
}

.missed-event small {
  margin-top: 2px;
  color: #9fb2bd;
  font-size: 0.63rem;
}

.missed-event > em {
  padding: 4px 7px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
  color: #c7d3d9;
  font-style: normal;
  font-size: 0.55rem;
  font-weight: 760;
  text-transform: uppercase;
}

.missed-event.alert { --event-color: var(--retain); }
.missed-event.done { --event-color: var(--book); }

.missed-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #091d30;
}

.missed-summary div {
  padding: 14px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.missed-summary div:last-child {
  border-right: 0;
}

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

.missed-summary span {
  color: #8fa4b0;
  font-size: 0.56rem;
  text-transform: uppercase;
}

.missed-summary strong {
  margin-top: 3px;
  color: var(--book);
  font-size: 0.7rem;
}

/* AI jobs */
.ai-section {
  background: var(--surface);
}

.ai-shell {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.ai-tabs {
  border-right: 1px solid var(--line);
}

.ai-tabs button {
  display: block;
  width: 100%;
  min-height: 132px;
  padding: 24px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
}

.ai-tabs button:last-child {
  border-bottom: 0;
}

.ai-tabs button:hover,
.ai-tabs button[aria-selected="true"] {
  background: var(--surface);
}

.ai-tabs button[aria-selected="true"] {
  box-shadow: inset 4px 0 0 var(--respond);
}

.ai-tabs span,
.ai-tabs strong,
.ai-tabs small {
  display: block;
}

.ai-tabs span {
  margin-bottom: 7px;
  color: #08777b;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.62rem;
  font-weight: 760;
  text-transform: uppercase;
}

.ai-tabs strong {
  font-size: 1rem;
}

.ai-tabs small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.45;
}

.ai-panel {
  display: grid;
  min-height: 500px;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
}

.ai-panel[hidden] {
  display: none;
}

.ai-copy {
  padding: clamp(30px, 4vw, 52px);
}

.ai-copy h3 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.ai-copy > p {
  margin-top: 18px;
  color: var(--text);
  font-size: 0.92rem;
}

.boundary-list {
  display: grid;
  gap: 11px;
  margin-top: 25px;
}

.boundary-list li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  padding-top: 11px;
  border-top: 1px solid var(--line);
  font-size: 0.76rem;
}

.boundary-list span {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 760;
  text-transform: uppercase;
}

.ai-visual {
  display: grid;
  place-items: center;
  padding: 34px;
  background: var(--respond-soft);
}

.ai-card {
  width: min(100%, 480px);
  overflow: hidden;
  border: 1px solid rgba(7, 27, 46, 0.2);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(7, 27, 46, 0.12);
}

.ai-card > header {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
}

.ai-card > header strong {
  font-size: 0.74rem;
}

.ai-card > header span {
  color: #08777b;
  font-size: 0.6rem;
  font-weight: 740;
}

.ai-card-body {
  display: grid;
  gap: 10px;
  padding: 17px;
}

.ai-line {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface-soft);
}

.ai-line > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  background: var(--respond-soft);
  color: #08777b;
  font-size: 0.56rem;
  font-weight: 800;
}

.ai-line strong,
.ai-line small {
  display: block;
}

.ai-line strong {
  font-size: 0.67rem;
}

.ai-line small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.56rem;
  line-height: 1.4;
}

.ai-handoff {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
  border-top: 1px solid var(--line);
  background: var(--paper);
  font-size: 0.63rem;
}

.ai-handoff strong {
  color: #08777b;
}

/* Diagnostic */
.diagnostic-section {
  background: var(--paper-2);
}

.diagnostic-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.diagnostic-choices {
  padding: clamp(32px, 5vw, 58px);
  border-right: 1px solid var(--line);
}

.diagnostic-choices .kicker {
  margin-bottom: 20px;
}

.diagnostic-choices h2 {
  max-width: 11ch;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
}

.diagnostic-choices > p {
  margin-top: 18px;
  color: var(--text);
}

.diagnostic-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 28px;
}

.diagnostic-options button {
  min-height: 48px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
  font-size: 0.73rem;
  font-weight: 700;
  text-align: left;
}

.diagnostic-options button:hover,
.diagnostic-options button[aria-pressed="true"] {
  border-color: var(--respond);
  background: var(--respond-soft);
  color: #075f61;
}

.diagnostic-result {
  display: grid;
  align-content: center;
  padding: clamp(32px, 5vw, 64px);
  background: var(--ink);
  color: #fff;
}

.diagnostic-result > span {
  color: var(--book);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.65rem;
  font-weight: 760;
  text-transform: uppercase;
}

.diagnostic-result h3 {
  max-width: 14ch;
  margin-top: 17px;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
}

.diagnostic-result > p {
  max-width: 54ch;
  margin-top: 18px;
  color: #b8c6ce;
}

.mini-current {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  margin-block: 28px;
}

.mini-current li {
  position: relative;
  min-height: 80px;
  padding: 12px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.mini-current li::after {
  position: absolute;
  top: 50%;
  right: -8px;
  width: 8px;
  height: 2px;
  background: var(--respond);
  content: "";
}

.mini-current li:last-child::after {
  display: none;
}

.mini-current span,
.mini-current strong {
  display: block;
}

.mini-current span {
  color: #8fa4b0;
  font-size: 0.55rem;
  text-transform: uppercase;
}

.mini-current strong {
  margin-top: 5px;
  font-size: 0.68rem;
  line-height: 1.35;
}

.diagnostic-result .text-link {
  width: max-content;
  color: #fff;
}

/* Editorial product stories */
.stories-section {
  background: var(--surface);
}

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

.story-row {
  display: grid;
  min-height: 500px;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
  padding-block: clamp(64px, 8vw, 105px);
  border-bottom: 1px solid var(--line);
}

.story-row:nth-child(even) .story-copy {
  order: 2;
}

.story-copy > span {
  color: #08777b;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.67rem;
  font-weight: 760;
  text-transform: uppercase;
}

.story-copy h3 {
  max-width: 12ch;
  margin-top: 17px;
}

.story-copy p {
  margin-top: 20px;
  color: var(--text);
}

.story-copy .text-link {
  margin-top: 24px;
}

.story-visual {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--story-bg, var(--capture-soft));
}

.story-current {
  position: absolute;
  inset: 52% 8% auto;
  height: 5px;
  border-radius: 999px;
  background: var(--current);
}

.story-object {
  position: absolute;
  width: 42%;
  min-height: 200px;
  padding: 20px;
  border: 1px solid rgba(7, 27, 46, 0.2);
  border-radius: 13px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(7, 27, 46, 0.1);
}

.story-object:first-of-type {
  top: 34px;
  left: 7%;
}

.story-object:last-of-type {
  right: 7%;
  bottom: 32px;
}

.story-object > span {
  color: var(--muted);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.story-object h4 {
  margin-top: 8px;
}

.story-object p {
  margin-top: 8px;
  color: var(--text);
  font-size: 0.69rem;
}

.story-object ul {
  display: grid;
  gap: 7px;
  margin-top: 14px;
}

.story-object li {
  display: flex;
  justify-content: space-between;
  padding-top: 7px;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-size: 0.61rem;
}

.story-object li strong {
  color: var(--ink);
}

/* Calculator */
.calculator-section {
  background: var(--paper);
}

.calculator-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.calculator-output {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 58px);
  background: var(--book);
  color: var(--ink);
}

.calculator-output > span {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.66rem;
  font-weight: 780;
  text-transform: uppercase;
}

.calculator-output > strong {
  margin-top: 13px;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  font-weight: 720;
  letter-spacing: -0.06em;
  line-height: 1;
}

.calculator-output p {
  max-width: 34ch;
  margin-top: 20px;
  font-size: 0.84rem;
}

.calculator-fields {
  display: grid;
  align-content: center;
  gap: 32px;
  padding: clamp(32px, 6vw, 74px);
}

.range-field {
  display: grid;
  gap: 12px;
}

.range-field > span,
.range-field > small {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.range-field b {
  font-size: 0.8rem;
}

.range-field output,
.range-field > span > strong {
  min-width: 72px;
  padding: 6px 9px;
  border-radius: 6px;
  background: var(--paper);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 760;
  text-align: center;
}

.range-field input {
  width: 100%;
  height: 6px;
  margin: 0;
  border-radius: 999px;
  appearance: none;
  background: var(--line);
}

.range-field input::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  border: 3px solid var(--surface);
  border-radius: 50%;
  appearance: none;
  background: var(--respond);
  box-shadow: 0 0 0 1px var(--respond);
}

.range-field input::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 3px solid var(--surface);
  border-radius: 50%;
  background: var(--respond);
  box-shadow: 0 0 0 1px var(--respond);
}

.range-field > small {
  color: var(--muted);
  font-size: 0.61rem;
}

.calculator-note {
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.7rem;
}

.calculator-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
}

.calculator-actions p {
  max-width: 54ch;
  color: var(--text);
  font-size: 0.82rem;
}

/* Prepared setup */
.setup-section {
  background: var(--surface);
}

.setup-current {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
}

.setup-current::before {
  position: absolute;
  top: 57px;
  right: 7%;
  left: 7%;
  height: 4px;
  border-radius: 999px;
  background: var(--current);
  content: "";
}

.setup-step {
  position: relative;
  min-height: 250px;
  padding: 36px 24px 26px;
  border-right: 1px solid var(--line);
}

.setup-step:last-child {
  border-right: 0;
}

.setup-step > span {
  position: relative;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  margin: 0 auto 46px;
  place-items: center;
  border: 4px solid var(--surface-soft);
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.66rem;
  font-weight: 800;
}

.setup-step h3 {
  font-size: 1rem;
  letter-spacing: -0.025em;
}

.setup-step p {
  margin-top: 10px;
  color: var(--text);
  font-size: 0.8rem;
}

.setup-reassurance {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.setup-reassurance strong {
  font-size: 0.9rem;
}

.setup-reassurance p {
  max-width: 65ch;
  color: var(--text);
  font-size: 0.8rem;
}

/* Industries */
.industry-section {
  background: var(--paper);
}

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

.industry-card {
  min-height: 350px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.industry-card > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--industry-bg, var(--capture-soft));
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
}

.industry-card h3 {
  margin-top: 30px;
  font-size: 1.45rem;
}

.industry-card > p {
  margin-top: 14px;
  color: var(--text);
  font-size: 0.88rem;
}

.industry-flow {
  display: grid;
  gap: 8px;
  margin-top: 25px;
}

.industry-flow li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-2);
  font-size: 0.72rem;
  font-weight: 650;
}

.industry-flow li::before {
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--respond);
  content: "";
}

.industry-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.7rem;
}

/* Pricing */
.pricing-section {
  background: var(--ink);
  color: #fff;
}

.pricing-section .section-heading > p {
  color: #b8c6ce;
}

.price-card {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background: #0d2438;
}

.price-summary {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 62px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--book);
  color: var(--ink);
}

.price-summary > span {
  font-size: 0.74rem;
  font-weight: 760;
  text-transform: uppercase;
}

.price-value {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-top: 10px;
}

.price-value strong {
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 720;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.price-value span {
  padding-bottom: 9px;
  font-size: 0.9rem;
  font-weight: 700;
}

.price-summary > p {
  margin-top: 16px;
  font-size: 0.84rem;
}

.price-summary .button {
  margin-top: 28px;
  align-self: flex-start;
}

.price-summary > small {
  margin-top: 12px;
  font-size: 0.66rem;
}

.price-details {
  display: grid;
  align-content: center;
  padding: clamp(34px, 5vw, 62px);
}

.price-details > strong {
  font-size: 1rem;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 30px;
  margin-top: 24px;
}

.included-grid li {
  display: grid;
  grid-template-columns: 19px 1fr;
  gap: 10px;
  color: #d4dee3;
  font-size: 0.78rem;
}

.included-grid li::before {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--book);
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 850;
  content: "✓";
}

.usage-box {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.usage-box strong,
.usage-box p {
  display: block;
}

.usage-box strong {
  color: var(--paid);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.usage-box p {
  margin-top: 7px;
  color: #b8c6ce;
  font-size: 0.76rem;
}

/* Trust and FAQ */
.trust-section {
  background: var(--surface);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.trust-card {
  min-height: 250px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.trust-card:last-child {
  border-right: 0;
}

.trust-card > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--surface);
  color: #08777b;
  font-size: 0.68rem;
  font-weight: 800;
}

.trust-card h3 {
  margin-top: 26px;
  font-size: 1.1rem;
}

.trust-card p {
  margin-top: 11px;
  color: var(--text);
  font-size: 0.79rem;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(48px, 7vw, 92px);
}

.faq-heading {
  position: sticky;
  top: 124px;
  align-self: start;
}

.faq-heading .kicker {
  margin-bottom: 20px;
}

.faq-heading h2 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.faq-heading p {
  margin-top: 20px;
  color: var(--text);
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  min-height: 72px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 17px 2px;
  font-size: 0.94rem;
  font-weight: 720;
  list-style: none;
}

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

.faq-list summary::after {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 500;
  content: "+";
}

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

.faq-list details > p {
  max-width: 72ch;
  padding: 0 50px 24px 2px;
  color: var(--text);
  font-size: 0.86rem;
}

/* Final CTA and footer */
.final-cta {
  padding-block: clamp(74px, 9vw, 118px);
  background: var(--respond);
  color: var(--ink);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 48px;
}

.final-cta h2 {
  max-width: 13ch;
}

.final-cta p {
  max-width: 58ch;
  margin-top: 18px;
  color: var(--ink);
}

.final-cta-actions {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.final-cta-actions small {
  color: var(--ink);
  font-size: 0.68rem;
}

.site-footer {
  padding: 70px 0 30px;
  background: var(--ink);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(0, 0.72fr));
  gap: 48px;
}

.footer-brand img {
  width: 110px;
  height: auto;
}

.footer-brand p {
  max-width: 34ch;
  margin-top: 18px;
  color: #9fb2bd;
  font-size: 0.82rem;
}

.footer-column h2 {
  margin-bottom: 17px;
  color: #9fb2bd;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column address {
  display: block;
  margin-top: 9px;
  color: #d5dfe4;
  font-size: 0.78rem;
  font-style: normal;
}

.footer-column a:hover {
  color: var(--book);
}

.footer-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8196a2;
  font-size: 0.68rem;
}

.mobile-sticky-cta {
  display: none;
}

/* Inner pages */
.page-hero {
  padding: clamp(72px, 9vw, 124px) 0 clamp(68px, 8vw, 112px);
  border-bottom: 1px solid var(--line);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr);
  align-items: end;
  gap: clamp(48px, 8vw, 110px);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.72rem;
}

.breadcrumbs a:hover {
  color: #08777b;
}

.page-hero h1 {
  max-width: 11ch;
  font-size: clamp(3.2rem, 5.8vw, 5.9rem);
}

.page-hero-copy > p {
  max-width: 58ch;
  margin-top: 25px;
  color: var(--text);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}

.page-hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.page-hero-card {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 16px 48px rgba(7, 27, 46, 0.08);
}

.page-hero-card > span {
  color: #08777b;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.64rem;
  font-weight: 760;
  text-transform: uppercase;
}

.page-hero-card h2 {
  margin-top: 14px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.page-hero-card p {
  margin-top: 15px;
  color: var(--text);
  font-size: 0.84rem;
}

.page-hero-card ul {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.page-hero-card li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  font-size: 0.78rem;
}

.page-hero-card li::before {
  color: #52780f;
  font-weight: 850;
  content: "✓";
}

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

.page-band-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-band-grid div {
  padding: 24px;
  border-left: 1px solid var(--line);
}

.page-band-grid div:last-child {
  border-right: 1px solid var(--line);
}

.page-band-grid span,
.page-band-grid strong {
  display: block;
}

.page-band-grid span {
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 750;
  text-transform: uppercase;
}

.page-band-grid strong {
  margin-top: 5px;
  font-size: 0.82rem;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(48px, 8vw, 110px);
}

.editorial-sidebar {
  align-self: start;
}

.editorial-sidebar .kicker {
  margin-bottom: 20px;
}

.editorial-sidebar h2 {
  font-size: clamp(2.25rem, 3.7vw, 3.55rem);
}

.editorial-sidebar p {
  margin-top: 20px;
  color: var(--text);
}

.editorial-stack {
  border-top: 1px solid var(--line);
}

.editorial-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 26px;
  padding-block: 34px;
  border-bottom: 1px solid var(--line);
}

.editorial-number {
  color: #08777b;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 800;
}

.editorial-item h3 {
  font-size: 1.5rem;
}

.editorial-item p {
  max-width: 68ch;
  margin-top: 12px;
  color: var(--text);
  font-size: 0.88rem;
}

.editorial-item ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 17px;
}

.editorial-item li {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-soft);
  color: var(--text);
  font-size: 0.66rem;
}

.solution-workflow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.solution-workflow li {
  min-height: 220px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.solution-workflow li:last-child {
  border-right: 0;
}

.solution-workflow span {
  color: #08777b;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.64rem;
  font-weight: 800;
}

.solution-workflow h3 {
  margin-top: 22px;
  font-size: 1rem;
  letter-spacing: -0.025em;
}

.solution-workflow p {
  margin-top: 10px;
  color: var(--text);
  font-size: 0.76rem;
}

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

.control-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.control-card span {
  color: #08777b;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.64rem;
  font-weight: 800;
}

.control-card h3 {
  margin-top: 18px;
  font-size: 1.25rem;
}

.control-card p {
  margin-top: 11px;
  color: var(--text);
  font-size: 0.82rem;
}

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

.resource-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.resource-card > span {
  color: #08777b;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.62rem;
  font-weight: 780;
  text-transform: uppercase;
}

.resource-card h2,
.resource-card h3 {
  max-width: 13ch;
  margin-top: 28px;
  font-size: 1.55rem;
}

.resource-card p {
  margin-top: 13px;
  color: var(--text);
  font-size: 0.82rem;
}

.resource-card .text-link {
  width: max-content;
  margin-top: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  background: var(--surface);
}

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

.pricing-table th {
  width: 35%;
  font-size: 0.8rem;
}

.pricing-table td {
  color: var(--text);
  font-size: 0.8rem;
}

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

.notice {
  padding: 20px 22px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--paid-soft);
  color: var(--ink-2);
  font-size: 0.8rem;
}

.notice strong {
  display: block;
  margin-bottom: 5px;
}

/* Motion */
@keyframes current-run {
  0% { transform: translateX(0); }
  14% { transform: translateX(calc((100% - 24px) * 0.16)); }
  29% { transform: translateX(calc((100% - 24px) * 0.33)); }
  44% { transform: translateX(calc((100% - 24px) * 0.5)); }
  59% { transform: translateX(calc((100% - 24px) * 0.66)); }
  76% { transform: translateX(calc((100% - 24px) * 0.83)); }
  100% { transform: translateX(calc(100% - 24px)); }
}

@keyframes track-fill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}

.motion-ready [data-revenue-demo].is-running .current-track::after {
  animation: track-fill 2700ms var(--ease) both;
}

.motion-ready [data-revenue-demo].is-running .signal-token {
  animation: current-run 2900ms var(--ease) both;
}

.motion-ready [data-sequence] [data-step] {
  opacity: 0;
  transform: translateY(8px);
}

.motion-ready [data-sequence].is-running [data-step],
.motion-ready [data-sequence].is-complete [data-step] {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready [data-sequence].is-running [data-step] {
  animation: reveal-up 380ms var(--ease) var(--delay, 0ms) both;
}

/* Responsive */
@media (max-width: 1100px) {
  .shell,
  .narrow {
    width: min(calc(100% - 48px), var(--shell));
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
    gap: 36px;
  }

  .desktop-nav {
    gap: 0;
  }

  .nav-link,
  .nav-dropdown > summary {
    padding-inline: 10px;
  }

  .broken-current,
  .setup-current {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .leak-card:nth-child(3),
  .setup-step:nth-child(3) {
    border-right: 0;
  }

  .leak-card:nth-child(-n+3),
  .setup-step:nth-child(-n+3) {
    border-bottom: 1px solid var(--line);
  }

  .leak-card::after,
  .setup-current::before {
    display: none;
  }

  .setup-step > span {
    margin: 0 0 28px;
  }

  .journey-panel {
    grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1.26fr);
  }

  .product-frame {
    min-height: 560px;
  }

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

  .fact-grid div:nth-child(3) {
    border-right: 1px solid var(--line);
  }

  .fact-grid div:nth-child(-n+3) {
    border-bottom: 1px solid var(--line);
  }

  .solution-workflow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .solution-workflow li:nth-child(3) {
    border-right: 0;
  }

  .solution-workflow li:nth-child(-n+3) {
    border-bottom: 1px solid var(--line);
  }
}

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

  .desktop-nav,
  .nav-actions .login-link,
  .nav-actions .button {
    display: none;
  }

  .nav-bar {
    min-height: 70px;
    grid-template-columns: 1fr auto;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-menu {
    top: 70px;
  }

  .hero-grid,
  .missed-grid,
  .section-heading,
  .diagnostic-grid,
  .story-row,
  .calculator-card,
  .price-card,
  .faq-grid,
  .page-hero-grid,
  .editorial-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-grid {
    gap: 52px;
  }

  .hero-copy h1 {
    max-width: 10ch;
  }

  .revenue-current {
    width: 100%;
  }

  .systems-reveal {
    width: 100%;
  }

  .systems-reveal-frame {
    height: 500px;
  }

  .section-heading {
    align-items: start;
    gap: 24px;
  }

  .journey-tabs {
    overflow-x: auto;
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    overscroll-behavior-x: contain;
  }

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

  .product-frame {
    min-height: 560px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .ai-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .ai-tabs button {
    min-height: 120px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .ai-tabs button:last-child {
    border-right: 0;
  }

  .ai-tabs button[aria-selected="true"] {
    box-shadow: inset 0 4px 0 var(--respond);
  }

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

  .story-row:nth-child(even) .story-copy {
    order: 0;
  }

  .price-summary {
    min-height: 0;
    border-right: 0;
  }

  .faq-heading {
    position: static;
  }

  .final-cta-inner {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
    gap: 28px;
  }

  .editorial-sidebar {
    position: static;
  }
}

@media (max-width: 720px) {
  .shell,
  .narrow {
    width: min(calc(100% - 40px), var(--shell));
  }

  .section {
    padding-block: 78px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

  .hero {
    padding-top: 54px;
  }

  .hero-actions,
  .page-hero-actions,
  .calculator-actions,
  .setup-reassurance {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .page-hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link,
  .page-hero-actions .text-link {
    width: max-content;
  }

  .current-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .systems-reveal-toolbar {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding-block: 14px;
  }

  .systems-reveal-frame {
    height: 520px;
  }

  .systems-reveal-panel {
    padding: 56px 18px 22px;
  }

  .systems-reveal figcaption {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
  }

  .source-switch {
    width: 100%;
  }

  .source-switch button {
    flex: 1;
  }

  .current-map {
    padding: 22px 18px;
  }

  .current-track {
    top: 43px;
    right: 28px;
    left: 28px;
  }

  .current-stages strong {
    font-size: 0.53rem;
  }

  .current-stages small {
    display: none;
  }

  .signal-token {
    top: 33px;
    left: 18px;
  }

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

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

  .fact-grid,
  .broken-current,
  .setup-current,
  .industry-grid,
  .trust-grid,
  .resource-grid,
  .control-grid,
  .page-band-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fact-grid div,
  .fact-grid div:nth-child(3),
  .leak-card,
  .leak-card:nth-child(3),
  .setup-step,
  .setup-step:nth-child(3),
  .trust-card,
  .page-band-grid div {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .fact-grid div:nth-child(2n),
  .leak-card:nth-child(2n),
  .setup-step:nth-child(2n),
  .trust-card:nth-child(2n),
  .page-band-grid div:nth-child(2n) {
    border-right: 0;
  }

  .journey-copy {
    padding: 32px 24px 38px;
  }

  .product-frame {
    min-height: 500px;
  }

  .ui-window {
    inset: 62px 18px 18px;
  }

  .capture-ui,
  .inbox-ui,
  .calendar-ui {
    grid-template-columns: minmax(0, 1fr);
  }

  .source-list,
  .inbox-list,
  .pipeline-side {
    display: none;
  }

  .payment-ui,
  .retention-ui {
    grid-template-columns: minmax(0, 1fr);
    overflow-y: auto;
  }

  .missed-event {
    grid-template-columns: 44px 1fr;
    gap: 18px;
  }

  .missed-event::before {
    left: 52px;
  }

  .missed-ledger::before {
    left: 77px;
  }

  .missed-event > em {
    display: none;
  }

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

  .missed-summary div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .ai-tabs {
    overflow-x: auto;
    grid-template-columns: repeat(3, minmax(170px, 1fr));
  }

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

  .ai-visual {
    min-height: 430px;
  }

  .diagnostic-options,
  .included-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .mini-current li:nth-child(2)::after {
    display: none;
  }

  .story-visual {
    min-height: 450px;
  }

  .story-object {
    width: 72%;
  }

  .story-object:first-of-type {
    top: 28px;
    left: 6%;
  }

  .story-object:last-of-type {
    right: 6%;
    bottom: 26px;
  }

  .calculator-output {
    min-height: 300px;
  }

  .price-summary {
    min-height: 360px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-base {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .solution-workflow li,
  .solution-workflow li:nth-child(3) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .solution-workflow li:nth-child(2n) {
    border-right: 0;
  }

  .editorial-item {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 90;
    display: grid;
    min-height: 58px;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 8px 8px 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: var(--ink);
    color: #fff;
    box-shadow: 0 14px 38px rgba(7, 27, 46, 0.28);
    opacity: 0;
    transform: translateY(120%);
    transition: opacity 180ms ease-out, transform 180ms ease-out;
    pointer-events: none;
  }

  .show-mobile-cta .mobile-sticky-cta {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-sticky-cta span,
  .mobile-sticky-cta small {
    display: block;
  }

  .mobile-sticky-cta span {
    font-size: 0.78rem;
    font-weight: 760;
  }

  .mobile-sticky-cta small {
    color: #9fb2bd;
    font-size: 0.6rem;
  }

  .mobile-sticky-cta b {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 8px;
    background: var(--book);
    color: var(--ink);
  }
}

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

  .nav-bar {
    gap: 14px;
  }

  .brand img {
    width: 96px;
  }

  .hero-microcopy span {
    display: block;
  }

  .hero-microcopy span + span::before {
    display: none;
  }

  .current-stages {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 14px;
  }

  .systems-reveal-frame {
    height: 500px;
  }

  .systems-reveal-panel {
    padding: 51px 12px 14px;
  }

  .systems-reveal-toolbar > div {
    flex-wrap: wrap;
  }

  .systems-reveal-toolbar > span {
    max-width: 34ch;
    line-height: 1.4;
  }

  .systems-reveal-tag {
    top: 13px;
  }

  .systems-reveal-tag--systems {
    right: 12px;
  }

  .systems-reveal-tag--outcome {
    left: 12px;
  }

  .systems-board,
  .outcome-board {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
  }

  .systems-board > header {
    align-items: start;
    padding-bottom: 9px;
  }

  .systems-board > header strong {
    font-size: 0.75rem;
  }

  .systems-board-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
    margin-top: 9px;
  }

  .systems-board-grid li {
    min-height: 49px;
    padding: 6px 8px;
  }

  .systems-board-grid li > span {
    width: 27px;
    height: 27px;
  }

  .systems-board-status {
    margin-top: 6px;
    padding: 7px 9px;
  }

  .outcome-board > header {
    align-items: start;
    padding-bottom: 10px;
  }

  .outcome-board > header > b {
    padding: 5px 7px;
    font-size: 0.55rem;
  }

  .outcome-booking-card {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 9px;
    margin-top: 10px;
    padding: 10px;
  }

  .outcome-booked-status {
    display: none;
  }

  .outcome-day-strip {
    gap: 3px;
    margin-top: 8px;
  }

  .outcome-day-strip > span {
    padding-inline: 2px;
  }

  .outcome-money-card {
    gap: 8px;
    margin-top: 8px;
    padding: 9px 10px;
  }

  .outcome-money-card > b {
    display: none;
  }

  .systems-reveal-handle {
    --systems-handle-gutter: 24px;
    width: 48px;
    height: 48px;
  }

  .systems-reveal figcaption {
    padding-inline: 14px;
  }

  .current-stages li:nth-child(n+5) {
    display: none;
  }

  .current-track {
    right: 44px;
  }

  .fact-grid,
  .broken-current,
  .setup-current,
  .industry-grid,
  .trust-grid,
  .resource-grid,
  .control-grid,
  .page-band-grid,
  .solution-workflow {
    grid-template-columns: minmax(0, 1fr);
  }

  .fact-grid div,
  .fact-grid div:nth-child(2n),
  .leak-card,
  .leak-card:nth-child(2n),
  .setup-step,
  .setup-step:nth-child(2n),
  .trust-card,
  .trust-card:nth-child(2n),
  .page-band-grid div,
  .page-band-grid div:nth-child(2n),
  .solution-workflow li,
  .solution-workflow li:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fact-grid div:last-child,
  .leak-card:last-child,
  .setup-step:last-child,
  .trust-card:last-child,
  .page-band-grid div:last-child,
  .solution-workflow li:last-child {
    border-bottom: 0;
  }

  .leak-card,
  .setup-step,
  .trust-card {
    min-height: 0;
  }

  .journey-tabs {
    grid-template-columns: repeat(5, minmax(145px, 1fr));
  }

  .product-frame {
    min-height: 460px;
  }

  .ai-copy,
  .ai-visual,
  .diagnostic-choices,
  .diagnostic-result {
    padding-inline: 22px;
  }

  .ai-visual {
    min-height: 390px;
  }

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

  .mini-current li::after {
    display: none;
  }

  .calculator-fields {
    padding-inline: 24px;
  }

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

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

  .page-hero h1 {
    font-size: clamp(2.9rem, 14vw, 4rem);
  }

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

  .pricing-table,
  .pricing-table tbody,
  .pricing-table tr,
  .pricing-table th,
  .pricing-table td {
    display: block;
    width: 100%;
  }

  .pricing-table th {
    padding-bottom: 4px;
    border-bottom: 0;
  }

  .pricing-table td {
    padding-top: 4px;
  }
}

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

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

  .motion-ready [data-reveal],
  .motion-ready [data-sequence] [data-step] {
    opacity: 1;
    transform: none;
  }

  .systems-reveal.is-hinting .systems-reveal-panel--outcome,
  .systems-reveal.is-hinting .systems-reveal-divider,
  .systems-reveal.is-hinting .systems-reveal-handle {
    transition: none;
  }
}
