/* Base / Tokens */
:root {
  --qp-bg: #fbfdfd;
  --qp-bg-warm: #f4f9f8;
  --qp-bg-tint: var(--qp-bg-warm);
  --qp-surface: #f8fbfb;
  --qp-surface-deep: #e7eeee;
  --qp-card: #feffff;
  --qp-card-muted: var(--qp-surface);
  --qp-ink: #1d1d1f;
  --qp-ink-soft: #424245;
  --qp-muted: #6e6e73;
  --qp-muted-light: #9b9ba1;
  --qp-border: rgba(0, 0, 0, 0.08);
  --qp-border-strong: rgba(0, 0, 0, 0.14);
  --qp-rule: rgba(5, 36, 34, 0.1);
  --qp-black: #1d1d1f;
  --qp-black-hover: #2d2d30;
  --qp-success: #2a5c59;
  --qp-warning: #5b6967;
  --qp-accent: #2a5c59;
  --qp-accent-soft: rgba(42, 92, 89, 0.12);
  --qp-clay: #5b6967;
  --qp-shadow: 0 8px 24px rgba(0, 0, 0, 0.045);
  --qp-shadow-flat: none;
  --qp-shadow-card:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 1px 2px rgba(0, 0, 0, 0.035),
    0 12px 32px -14px rgba(0, 0, 0, 0.16);
  --qp-surface-frame: #feffff;
  --qp-surface-frame-border: rgba(0, 0, 0, 0.07);
  --qp-surface-row-rule: rgba(0, 0, 0, 0.065);
  --qp-surface-row-hover: rgba(0, 0, 0, 0.025);
  --qp-pill-captured: rgba(0, 0, 0, 0.06);
  --qp-pill-pending: rgba(0, 0, 0, 0.08);
  --qp-pill-resolved: rgba(0, 0, 0, 0.08);
  --qp-pill-scoped: rgba(0, 0, 0, 0.07);
  --qp-spring: cubic-bezier(0.22, 1, 0.36, 1);
  --qp-ease-entrance: cubic-bezier(0.16, 1, 0.3, 1);
  --site-grid: 1200px;
  --site-gutter: 48px;
  --section-pad-tight: clamp(88px, 10vh, 124px);
  --section-pad: clamp(108px, 12vh, 156px);
  --section-pad-deep: clamp(132px, 16vh, 196px);
  --type-micro: 11px;
  --type-eyebrow: 11px;
  --type-small: 14px;
  --type-body: 16px;
  --type-body-plus: 17px;
  --type-body-large: 18px;
  --type-lede: 20px;
  --type-feature: 22px;
  --type-h3: 34px;
  --type-h2: 64px;
  --type-h2-large: 72px;
  --type-h1: 108px;
  --type-page-h1: 90px;
  --font-sans: Geist, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: var(--font-sans);
  --font-mono: "Geist Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

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

#tracker,
#client-input,
#advisor-control,
#record,
#purpose-built {
  scroll-margin-top: 112px;
}

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

body.menu-lock {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--qp-accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 200;
  transform: translateY(-180%);
  opacity: 0;
  pointer-events: none;
  border-radius: 999px;
  background: var(--qp-black);
  color: #f9fffe;
  padding: 12px 16px;
  font-size: 13px;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  transition: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.container {
  width: min(100% - var(--site-gutter), var(--site-grid));
  margin-inline: auto;
}

.container-narrow {
  width: min(100% - var(--site-gutter), 800px);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-pad);
  scroll-margin-top: 92px;
}

.center {
  text-align: center;
}

/* Header / Nav */
.site-header {
  position: fixed;
  top: 24px;
  left: 50%;
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
  align-items: center;
  width: min(100% - var(--site-gutter), var(--site-grid));
  margin-inline: auto;
  min-height: 40px;
  padding: 0;
  transform: translateX(-50%);
  transition:
    top 240ms cubic-bezier(0.22, 1, 0.36, 1),
    width 240ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 240ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 240ms cubic-bezier(0.22, 1, 0.36, 1),
    background 240ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-scrolled,
.site-header.menu-is-open {
  top: 14px;
  width: min(100% - 32px, var(--site-grid));
  min-height: 56px;
  padding: 8px 12px 8px 16px;
  border: 1px solid rgba(29, 31, 31, 0.1);
  border-radius: 999px;
  background: rgba(251, 253, 253, 0.96);
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.085),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 36px;
  color: var(--qp-ink);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-wordmark {
  display: inline-block;
  color: var(--qp-ink);
  line-height: 1;
}

.brand-wordmark span {
  color: var(--qp-accent);
}

.site-nav {
  display: grid;
  grid-template-columns: repeat(3, 92px);
  align-items: center;
  justify-self: center;
  text-align: center;
  color: var(--qp-ink-soft);
  font-size: 13px;
  font-weight: 500;
}

.site-nav a {
  display: inline-flex;
  justify-content: center;
  color: var(--qp-ink-soft);
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--qp-ink);
  transform: translateY(-1px);
}

.site-nav a[aria-current="page"] {
  color: var(--qp-ink);
}

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

.menu-button {
  display: none;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(29, 31, 31, 0.12);
  border-radius: 999px;
  background: rgba(254, 255, 255, 0.58);
  color: var(--qp-ink);
  cursor: pointer;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: none;
  min-width: min(280px, calc(100vw - 32px));
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(29, 31, 31, 0.1);
  border-radius: 16px;
  background: rgba(244, 249, 248, 0.985);
  box-shadow: 0 24px 70px rgba(35, 30, 22, 0.12);
}

.site-header.menu-is-open .mobile-menu {
  display: grid;
}

.mobile-menu a {
  min-height: 44px;
  border-radius: 16px;
  color: rgba(29, 31, 31, 0.72);
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible,
.mobile-menu a[aria-current="page"] {
  background: rgba(29, 31, 31, 0.055);
  color: var(--qp-ink);
}

.mobile-menu-rule {
  display: block;
  height: 1px;
  margin: 8px;
  background: rgba(29, 31, 31, 0.1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding-inline: 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 200ms var(--qp-spring),
    background 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.button:active {
  transform: translateY(0) scale(0.99);
}

.button-primary {
  background: var(--qp-black);
  color: #f9fffe;
  box-shadow:
    inset 0 1px 0 rgba(254, 255, 255, 0.12),
    0 1px 2px rgba(29, 31, 31, 0.18),
    0 8px 18px -8px rgba(29, 31, 31, 0.45);
}

.button-primary:hover {
  background: var(--qp-black-hover);
  box-shadow:
    inset 0 1px 0 rgba(254, 255, 255, 0.16),
    0 2px 4px rgba(29, 31, 31, 0.22),
    0 16px 28px -10px rgba(29, 31, 31, 0.55);
}

.header-cta {
  min-height: 38px;
  padding-inline: 17px;
  border-color: rgba(0, 0, 0, 0.08);
  background: var(--qp-black);
  color: #f9fffe;
  box-shadow:
    inset 0 1px 0 rgba(254, 255, 255, 0.1),
    0 10px 22px -16px rgba(0, 0, 0, 0.36);
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--qp-black-hover);
  color: #f9fffe;
  box-shadow:
    inset 0 1px 0 rgba(254, 255, 255, 0.12),
    0 12px 26px -16px rgba(0, 0, 0, 0.42);
}

html:not(.has-js) .qp-email[data-user][data-domain] {
  font-size: 0;
}

html:not(.has-js) .qp-email[data-user][data-domain]::before {
  content: attr(data-user) "@" attr(data-domain);
  font-size: var(--type-small);
}

.hero-actions .button-primary,
.page-actions .button-primary,
.final-cta .button-primary {
  min-height: 52px;
  padding-inline: 30px;
  font-size: var(--type-body);
}

.button-secondary {
  border-color: var(--qp-border);
  background: rgba(254, 255, 255, 0.68);
  color: var(--qp-ink);
  box-shadow: inset 0 1px 0 rgba(254, 255, 255, 0.78);
}

.button-ghost {
  border-color: transparent;
  background: transparent;
  color: rgba(29, 31, 31, 0.72);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(29, 31, 31, 0.055);
  color: var(--qp-ink);
  box-shadow: none;
}

/* Heroes */
.hero {
  position: relative;
  --hero-progress: 0;
  --hero-copy-y: calc(var(--hero-progress) * -96px);
  --hero-tilt: calc(10deg - (var(--hero-progress) * 10deg));
  --hero-scale: calc(1.028 - (var(--hero-progress) * 0.028));
  --hero-opacity: calc(0.88 + (var(--hero-progress) * 0.12));
  min-height: clamp(980px, 136svh, 1280px);
  overflow: visible;
  background: var(--qp-bg);
  padding-bottom: clamp(92px, 12svh, 148px);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: clamp(120px, 14vw, 190px);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(251, 253, 253, 0), var(--qp-bg-tint) 82%);
  content: "";
}

@media (min-width: 761px) {
  .hero {
    min-height: clamp(1040px, 146svh, 1320px);
  }
}

.hero-copy {
  position: relative;
  z-index: 4;
  padding-top: clamp(86px, 9svh, 122px);
  text-align: center;
}

.hero-copy.container-narrow {
  width: min(100% - var(--site-gutter), var(--site-grid));
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  min-height: 0;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--qp-muted);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: none;
  box-shadow: none;
}

.eyebrow::before {
  display: none;
  content: none;
}

.center .eyebrow,
.final-content .eyebrow {
  margin-inline: auto;
}

.center .eyebrow::after,
.final-content .eyebrow::after {
  display: none;
  content: none;
}

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

h1 {
  max-width: 940px;
  margin-inline: auto;
  margin-bottom: 0;
  color: var(--qp-ink);
  font-family: var(--font-display);
  font-size: var(--type-h1);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-wrap: balance;
}

.hero h1 {
  max-width: 980px;
  font-size: clamp(66px, 6.4vw, 90px);
}

.hero h1,
.hero-subhead,
.hero-actions {
  transform: translateY(var(--hero-copy-y));
  transform-origin: center top;
  will-change: transform;
}

.hero-subhead {
  max-width: 640px;
  margin: 24px auto 0;
  color: rgba(29, 29, 31, 0.72);
  font-size: var(--type-lede);
  line-height: 1.46;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

/* Screenshot / Product Proof */
.screenshot-frame {
  position: relative;
  display: block;
  overflow: hidden;
  isolation: isolate;
  margin: 0;
  padding: 7px;
  border: 1px solid rgba(0, 0, 0, 0.075);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 26px 72px -40px rgba(0, 0, 0, 0.24);
}

.screenshot-frame::before {
  display: none;
  content: none;
}

.screenshot-frame picture {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 15px;
  background: #feffff;
  box-shadow: none;
}

.screenshot-frame img {
  width: 100%;
  height: 100%;
  display: block;
  background: #feffff;
  object-fit: contain;
  object-position: center top;
}

.has-js .screenshot-frame:not(.is-proof-loaded) img {
  background:
    linear-gradient(90deg, rgba(29, 31, 31, 0.035), rgba(29, 31, 31, 0.07), rgba(29, 31, 31, 0.035));
}

.hero-product-peek {
  width: min(100%, 960px);
  height: auto;
  aspect-ratio: 16 / 10;
  margin: clamp(28px, 3.8vh, 48px) auto 0;
  padding: clamp(10px, 1.3vw, 18px);
  border: 1px solid rgba(42, 92, 89, 0.3);
  border-radius: clamp(24px, 2.4vw, 30px);
  background:
    linear-gradient(180deg, rgba(231, 241, 240, 0.94), rgba(177, 202, 199, 0.78)),
    rgba(42, 92, 89, 0.14);
  opacity: var(--hero-opacity);
  transform:
    rotateX(var(--hero-tilt))
    scale(var(--hero-scale));
  transform-origin: center top;
  transition: box-shadow 220ms ease, border-color 220ms ease, opacity 220ms ease;
  will-change: transform;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.34) inset,
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 10px 22px rgba(42, 92, 89, 0.08),
    0 32px 48px rgba(42, 92, 89, 0.08),
    0 82px 64px rgba(42, 92, 89, 0.045);
}

.hero-stage {
  position: relative;
  display: grid;
  gap: clamp(18px, 2.2vw, 28px);
  width: min(100%, 960px);
  margin: 0 auto;
  perspective: 1000px;
}

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

.hero-stage::after {
  display: none;
  content: none;
}

.proof-dashboard img,
.proof-parties img,
.proof-tracker img,
.proof-import img,
.proof-posting img,
.proof-summary img {
  transform: scale(1.018);
  transform-origin: center top;
}

.hero-product-peek picture {
  border-radius: clamp(16px, 1.6vw, 20px);
  background: var(--qp-bg-tint);
  box-shadow: 0 1px 0 rgba(254, 255, 255, 0.86) inset;
}

.hero-product-peek::before {
  position: absolute;
  z-index: -1;
  inset: -42px -54px -70px;
  display: block;
  border-radius: 54px;
  background:
    radial-gradient(circle at 50% 20%, rgba(42, 92, 89, 0.16), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(244, 245, 244, 0));
  filter: blur(2px);
  content: "";
}

.hero-product-peek::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 20%),
    linear-gradient(90deg, rgba(42, 92, 89, 0.045), transparent 18%, transparent 82%, rgba(42, 92, 89, 0.04));
  content: "";
  opacity: calc(0.36 - (var(--hero-progress) * 0.16));
}

.hero-product-peek img {
  width: 100%;
  object-fit: contain;
  object-position: center top;
  transform: none;
  transform-origin: center top;
}

.operating-model {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-pad);
  background:
    linear-gradient(180deg, var(--qp-bg) 0%, var(--qp-bg-tint) 100%);
}

.operating-model::before {
  display: none;
  content: none;
}

.operating-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1.52fr);
  gap: clamp(36px, 5vw, 66px);
  align-items: center;
}

.operating-command {
  align-items: center;
}

.operating-command .control-principle h2 {
  max-width: 460px;
  margin: 0;
  color: var(--qp-ink);
  font-size: var(--type-h3);
  font-weight: 600;
  line-height: 1.08;
  text-wrap: balance;
}

.operating-command .control-principle p:not(.eyebrow) {
  max-width: 470px;
}

.operating-command .solutions-proof-shot {
  justify-self: end;
  width: min(100%, 860px);
}

.operating-copy {
  display: grid;
  gap: 24px;
  align-content: center;
}

.operating-copy h2,
.final-cta h2 {
  margin-bottom: 0;
  color: var(--qp-ink);
  font-size: var(--type-h2);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.02;
  text-wrap: balance;
}

.operating-copy h2 {
  max-width: 640px;
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--type-h2);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.02;
}

.operating-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: rgba(29, 29, 31, 0.74);
  font-size: var(--type-body-large);
  line-height: 1.42;
  text-wrap: pretty;
}

.model-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 620px);
  margin-top: 8px;
  padding: 0;
  border-top: 1px solid rgba(29, 29, 31, 0.12);
  border-bottom: 1px solid rgba(29, 29, 31, 0.1);
  list-style: none;
}

.model-flow li {
  position: relative;
  display: grid;
  gap: 8px;
  align-content: start;
  min-width: 0;
  padding: 18px 18px 20px 0;
}

.model-flow li + li {
  padding-left: 18px;
  border-left: 1px solid rgba(29, 29, 31, 0.1);
}

.model-flow .line-icon {
  margin-bottom: 4px;
  color: rgba(29, 29, 31, 0.82);
}

.model-flow strong,
.model-flow em {
  display: block;
  min-width: 0;
  font-style: normal;
}

.model-flow strong {
  color: rgba(29, 29, 31, 0.9);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.12;
}

.model-flow em {
  color: rgba(29, 29, 31, 0.56);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.22;
}

.screenshot-frame.operating-stage {
  justify-self: end;
  width: min(100%, 900px);
  aspect-ratio: 16 / 10;
}

.product-shot-large,
.solutions-proof-shot,
.solution-tracker-proof,
.solution-client-proof,
.client-proof-shot,
.about-product-shot {
  width: min(100%, 1080px);
  aspect-ratio: 16 / 10;
}

.product-shot-large img {
  width: 100%;
}

.solutions-proof-shot img,
.solution-tracker-proof img,
.solution-client-proof img,
.client-proof-shot img,
.about-product-shot img,
.control-art-stage img,
.record-art-stage img {
  width: 100%;
}

.control-art-stage,
.record-art-stage {
  aspect-ratio: 16 / 10;
}

.proof-dashboard img {
  object-position: 50% 9%;
}

.proof-parties img {
  object-position: 52% 12%;
}

.proof-tracker img {
  object-position: 54% 13%;
  transform: none;
}

.client-proof-shot {
  margin: 64px auto 0;
}

.proof-import img {
  object-position: 52% 12%;
}

.screenshot-frame.proof-tracker::before,
.screenshot-frame.proof-tracker::after {
  display: none;
  content: none;
}

.proof-posting img {
  object-position: 56% 12%;
}

.proof-summary img {
  object-position: 52% 10%;
}

.operating-stage::before {
  display: none;
}

.final-cta p {
  color: var(--qp-muted);
  font-size: var(--type-body-large);
  line-height: 1.58;
  text-wrap: pretty;
}

.product-chapter {
  padding-block: var(--section-pad);
  border-top: 1px solid var(--qp-rule);
  background: var(--qp-bg);
}

/* Page Sections */
.page-hero {
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  min-height: clamp(620px, 70svh, 740px);
  padding-block: clamp(148px, 18vh, 204px) clamp(72px, 9vh, 112px);
  border-bottom: 1px solid var(--qp-rule);
  background: linear-gradient(180deg, var(--qp-bg) 0%, #feffff 58%, var(--qp-bg-tint) 100%);
}

.page-hero::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
  content: "";
}

.page-hero-inner {
  display: grid;
  gap: 26px;
}

.page-hero h1 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(66px, 6.4vw, 90px);
  font-weight: 650;
  line-height: 0.94;
  text-wrap: balance;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: rgba(29, 29, 31, 0.74);
  font-size: var(--type-lede);
  line-height: 1.48;
  text-wrap: pretty;
}

.page-actions {
  justify-content: flex-start;
  margin-top: 8px;
}

.page-band {
  border-top: 1px solid rgba(5, 36, 34, 0.08);
  background: var(--qp-bg);
}

.page-hero + .page-band {
  padding-top: var(--section-pad-tight);
}

.page-band-warm {
  background: linear-gradient(180deg, var(--qp-bg-tint) 0%, var(--qp-bg) 100%);
}

.page-split {
  display: grid;
  grid-template-columns: minmax(280px, 5fr) minmax(0, 7fr);
  gap: clamp(46px, 7vw, 104px);
  align-items: start;
}

.page-flow-layout {
  display: grid;
  grid-template-columns: minmax(280px, 5fr) minmax(0, 7fr);
  gap: clamp(46px, 7vw, 104px);
  align-items: center;
}

#flow .page-flow-layout {
  grid-template-columns: minmax(400px, 0.82fr) minmax(704px, 1.18fr);
  gap: clamp(40px, 4vw, 64px);
}

.page-split h2,
.page-flow-layout h2,
.page-section-head h2,
.about-editorial h2 {
  max-width: 760px;
  margin: 0;
  color: var(--qp-ink);
  font-size: var(--type-h2);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-wrap: balance;
}

.page-split p:not(.eyebrow),
.page-flow-layout p:not(.eyebrow),
.page-section-head p:not(.eyebrow),
.editorial-columns p {
  margin: 18px 0 0;
  color: rgba(29, 31, 31, 0.66);
  font-size: var(--type-body-large);
  line-height: 1.55;
}

.price-card > span,
.use-case-card > span {
  color: rgba(29, 29, 31, 0.68);
  font-family: var(--font-mono);
  font-size: var(--type-micro);
  font-weight: 600;
  text-transform: uppercase;
}

.price-card-kicker {
  color: var(--qp-muted);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-transform: none;
}

.solutions-hero {
  min-height: clamp(760px, 88svh, 920px);
  padding-block: clamp(142px, 15vh, 178px) 0;
}

.solutions-hero-inner {
  grid-template-columns: minmax(520px, 0.78fr) minmax(0, 0.92fr);
  gap: clamp(44px, 5vw, 76px);
  align-items: end;
}

.solutions-hero-copy {
  display: grid;
  align-content: center;
  gap: 26px;
  padding-bottom: clamp(92px, 11vw, 146px);
}

.solutions-hero h1 {
  max-width: 760px;
  font-size: clamp(66px, 6.4vw, 90px);
}

.solutions-hero p:not(.eyebrow) {
  max-width: 620px;
}

.solutions-hero-proof {
  justify-self: end;
  width: min(100%, 900px);
  margin: 0 0 -34px;
  transform: translateY(12px);
}

.solutions-hero-proof figcaption,
.solutions-proof-shot figcaption,
.solution-tracker-proof figcaption,
.solution-client-proof figcaption {
  margin-top: 14px;
  color: rgba(29, 31, 31, 0.58);
  font-size: var(--type-small);
  font-weight: 600;
  line-height: 1.38;
  text-wrap: pretty;
}

.solutions-hero-proof figcaption {
  display: none;
}

.solutions-command {
  align-items: start;
}

.solutions-command .control-principle {
  display: grid;
  gap: 16px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.solutions-command .control-principle p:not(.eyebrow) {
  margin: 0;
}

.solutions-command .control-principle h2 {
  max-width: 640px;
  margin: 0;
  color: var(--qp-ink);
  font-size: clamp(44px, 4.4vw, 66px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-wrap: balance;
}

.solution-proof-notes,
.solution-sequence,
.solution-audience-list {
  display: grid;
  padding: 0;
  margin: 0;
  list-style: none;
}

.solution-proof-notes {
  gap: 0;
  max-width: 540px;
  margin-top: 12px;
  border-top: 1px solid rgba(29, 31, 31, 0.12);
}

.solution-proof-notes li {
  display: grid;
  grid-template-columns: minmax(124px, 0.28fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(29, 31, 31, 0.1);
}

.solution-proof-notes span,
.solution-sequence span,
.solution-audience-list > article > span {
  color: rgba(29, 31, 31, 0.72);
  font-family: var(--font-mono);
  font-size: var(--type-micro);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.solution-proof-notes strong,
.solution-sequence strong {
  display: block;
  color: var(--qp-ink);
  font-size: var(--type-body);
  font-weight: 650;
  line-height: 1.28;
}

.solution-proof-notes p {
  max-width: 420px;
  margin: 6px 0 0;
  color: rgba(29, 31, 31, 0.58);
  font-size: var(--type-small);
  line-height: 1.46;
}

.solution-proof-layout {
  display: grid;
  grid-template-columns: minmax(380px, 0.62fr) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: center;
}

.solution-proof-layout-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(480px, 0.64fr);
}

.solution-flow-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.solution-flow-copy h2 {
  max-width: 680px;
  margin: 0;
  color: var(--qp-ink);
  font-size: clamp(44px, 4.4vw, 66px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-wrap: balance;
}

.solution-flow-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: rgba(29, 31, 31, 0.66);
  font-size: var(--type-body-large);
  line-height: 1.55;
  text-wrap: pretty;
}

.solution-sequence {
  gap: 0;
  max-width: 560px;
  margin-top: 12px;
  border-top: 1px solid rgba(29, 31, 31, 0.12);
}

.solution-sequence li {
  display: grid;
  grid-template-columns: minmax(112px, 0.28fr) minmax(0, 1fr);
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(29, 31, 31, 0.1);
}

.solution-tracker-proof,
.solution-client-proof {
  width: min(100%, 1040px);
  aspect-ratio: 16 / 10;
}

.page-ledger {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.page-ledger li {
  background: transparent;
}

.page-section-head {
  display: grid;
  gap: 16px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.solution-section-head {
  max-width: 940px;
  margin-bottom: clamp(36px, 5vw, 60px);
}

.use-case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(29, 31, 31, 0.12);
  background: transparent;
  overflow: visible;
}

.use-case-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 0.72fr);
  min-height: 0;
  align-content: start;
  gap: clamp(20px, 4vw, 52px);
  padding: clamp(24px, 3.4vw, 36px) 0;
  border-bottom: 1px solid rgba(29, 31, 31, 0.12);
  background: transparent;
}

.use-case-card.is-primary {
  background: transparent;
}

.use-case-card h3 {
  max-width: 580px;
  margin: 0;
  color: var(--qp-ink);
  font-size: var(--type-feature);
  font-weight: 600;
  line-height: 1.12;
  text-wrap: balance;
}

.use-case-card p {
  grid-column: 2;
  max-width: 600px;
  margin: 0;
  color: rgba(29, 31, 31, 0.64);
  font-size: var(--type-body);
  line-height: 1.52;
}

.solution-audience-list {
  border-top: 1px solid rgba(29, 31, 31, 0.12);
}

.solution-audience-list article {
  display: grid;
  grid-template-columns: minmax(180px, 0.24fr) minmax(0, 0.76fr);
  gap: clamp(24px, 5vw, 76px);
  padding: clamp(28px, 4vw, 48px) 0;
  border-bottom: 1px solid rgba(29, 31, 31, 0.12);
}

.solution-audience-list div {
  display: grid;
  gap: 10px;
}

.solution-audience-list h3 {
  max-width: 720px;
  margin: 0;
  color: var(--qp-ink);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
  text-wrap: balance;
}

.solution-audience-list p {
  max-width: 660px;
  margin: 0;
  color: rgba(29, 31, 31, 0.64);
  font-size: var(--type-body-plus);
  line-height: 1.5;
  text-wrap: pretty;
}

.pricing-focus {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  justify-items: center;
}

.pricing-focus {
  max-width: 920px;
}

.price-card {
  display: grid;
  align-content: start;
  width: min(100%, 900px);
  gap: clamp(36px, 5vw, 54px);
  padding: clamp(38px, 5vw, 72px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  background: #feffff;
  text-align: center;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 28px 70px -48px rgba(0, 0, 0, 0.22);
}

.price-card-head {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.price-card-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 4vw, 46px);
  align-items: start;
}

.price-card h2 {
  margin: 0;
  color: var(--qp-ink);
  font-size: var(--type-page-h1);
  font-weight: 600;
  line-height: 0.98;
}

.price-card p {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(29, 29, 31, 0.66);
  font-size: var(--type-body-plus);
  line-height: 1.52;
}

.price-card-actions {
  display: grid;
  justify-items: center;
  align-self: start;
  margin: 0;
}

.price-card ul {
  display: grid;
  gap: 0;
  width: min(100%, 700px);
  padding: 0;
  margin: 0 auto;
  list-style: none;
  border-top: 0;
  text-align: left;
}

.price-card li {
  position: relative;
  padding: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--qp-ink-soft);
  font-size: var(--type-body);
  font-weight: 600;
  line-height: 1.38;
}

.price-card .button {
  justify-self: center;
  min-width: min(100%, 260px);
  margin-top: 4px;
}

.pricing-highlights li {
  display: grid;
  grid-template-columns: 34px minmax(190px, 0.38fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 78px;
  padding: 22px 0;
}

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

.pricing-highlights .proof-icon {
  color: rgba(29, 29, 31, 0.72);
}

.pricing-highlights strong {
  color: var(--qp-ink);
  font-size: var(--type-body-large);
  font-weight: 600;
  line-height: 1.18;
}

.pricing-highlights p {
  margin: 0;
  color: rgba(29, 29, 31, 0.62);
  font-size: var(--type-small);
  font-weight: 400;
  line-height: 1.42;
}

.price-card li::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  display: none;
  width: 17px;
  height: 17px;
  place-items: center;
  border: 1px solid rgba(29, 31, 31, 0.18);
  border-radius: 999px;
  color: rgba(29, 31, 31, 0.68);
  content: none;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.included-list {
  display: grid;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.included-list article {
  display: grid;
  grid-template-columns: 34px minmax(180px, 0.38fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 21px 0;
  border-bottom: 1px solid rgba(29, 31, 31, 0.11);
  transition:
    border-color 200ms ease,
    transform 200ms var(--qp-spring);
}

.included-list article:last-child {
  border-bottom: 0;
}

.included-list .proof-icon {
  color: rgba(29, 31, 31, 0.72);
}

.included-list article:hover {
  border-color: rgba(29, 31, 31, 0.24);
  transform: translateX(2px);
}

.included-list strong {
  color: var(--qp-ink);
  font-size: var(--type-body-plus);
  font-weight: 600;
}

.included-list p {
  margin: 0;
  color: rgba(29, 31, 31, 0.62);
  font-size: var(--type-small);
  line-height: 1.42;
}

.faq-layout {
  display: grid;
  gap: 32px;
}

.faq-list {
  display: grid;
  border: 0;
  border-top: 1px solid rgba(29, 31, 31, 0.12);
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

.faq-list details {
  border-bottom: 1px solid rgba(29, 31, 31, 0.12);
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 18px 0 18px 28px;
  color: var(--qp-ink);
  font-size: 22px;
  font-weight: 600;
}

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

.faq-list summary::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  content: "";
  opacity: 0.72;
  transform: translateY(-58%) rotate(45deg);
  transition: transform 180ms var(--qp-spring);
}

.faq-list details[open] summary::before {
  transform: translateY(-70%) rotate(135deg);
}

.faq-list p {
  max-width: 760px;
  margin: 0;
  padding: 0 0 22px 28px;
  color: rgba(29, 31, 31, 0.66);
  font-size: var(--type-body);
  line-height: 1.52;
}

.about-editorial {
  display: grid;
  gap: 16px;
}

.editorial-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 24px;
  border: 1px solid var(--qp-rule);
  border-radius: 16px;
  background: var(--qp-rule);
  overflow: hidden;
}

.editorial-columns p {
  display: grid;
  align-content: space-between;
  gap: 20px;
  min-height: 190px;
  margin: 0;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(254, 255, 255, 0.7);
  color: rgba(29, 31, 31, 0.68);
}

.editorial-columns strong {
  color: var(--qp-ink);
  font-size: var(--type-feature);
  font-weight: 600;
  line-height: 1.12;
}

.editorial-columns span {
  color: rgba(29, 31, 31, 0.64);
  font-size: var(--type-body);
  line-height: 1.48;
}

.about-origin {
  background: var(--qp-bg);
}

.about-proof-layout {
  align-items: center;
  grid-template-columns: minmax(260px, 0.5fr) minmax(0, 1.5fr);
}

.position-system {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.position-system li {
  display: grid;
  min-height: 190px;
  align-content: space-between;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px) 0;
  border-top: 1px solid rgba(29, 31, 31, 0.11);
  background: transparent;
}

.position-system {
  grid-template-columns: 1fr;
  box-shadow: none;
}

.position-system {
  padding: 0;
  margin: 0;
  list-style: none;
}

.position-system li {
  grid-template-columns: 34px minmax(0, 1fr);
  min-height: 0;
  align-content: start;
  align-items: start;
  padding: 19px 0;
}

.position-system .proof-icon {
  color: rgba(29, 31, 31, 0.72);
}

.position-system li div {
  display: grid;
  gap: 8px;
}

.position-system strong {
  color: var(--qp-ink);
  font-size: var(--type-body-large);
  font-weight: 600;
  line-height: 1.18;
}

.position-system p {
  max-width: 780px;
  margin: 0;
  color: rgba(29, 31, 31, 0.64);
  font-size: var(--type-body);
  line-height: 1.5;
}

.chapter-tracker {
  background:
    linear-gradient(180deg, var(--qp-bg-tint) 0%, var(--qp-bg) 34%, var(--qp-bg) 100%);
}

.chapter-client {
  border-block: 1px solid rgba(0, 0, 0, 0.07);
  background: linear-gradient(180deg, #feffff 0%, var(--qp-bg-tint) 100%);
}

.chapter-control {
  background: linear-gradient(180deg, #feffff 0%, var(--qp-bg) 100%);
}

.chapter-record {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  background: linear-gradient(180deg, var(--qp-bg-tint) 0%, var(--qp-bg) 92%);
}

.chapter-top {
  display: block;
  margin-bottom: 80px;
}

.section-mark {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 14px;
  justify-self: start;
  margin-bottom: 18px;
}

.section-mark .eyebrow {
  margin: 0;
}

.chapter-top h2 {
  max-width: 860px;
  margin: 0;
  color: var(--qp-ink);
  font-family: var(--font-display);
  font-size: clamp(50px, 5.4vw, 66px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-wrap: balance;
}

.chapter-top p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(29, 31, 31, 0.74);
  font-size: var(--type-body-large);
  font-weight: 400;
  line-height: 1.48;
  text-wrap: pretty;
}

/* SVG icon system */
.line-icon,
.proof-icon {
  position: relative;
  display: inline-grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  color: rgba(29, 31, 31, 0.78);
  transform: none;
  transition:
    color 200ms ease,
    transform 200ms var(--qp-spring);
}

.line-icon::before,
.proof-icon::before {
  display: none;
  content: none;
}

.line-icon::after,
.proof-icon::after {
  position: relative;
  z-index: 1;
  display: block;
  width: 27px;
  height: 27px;
  border: 0;
  border-radius: 0;
  background: currentColor;
  box-shadow: none;
  content: "";
  opacity: 0.9;
  transform: none;
  -webkit-mask: var(--svg-icon) center / contain no-repeat;
  mask: var(--svg-icon) center / contain no-repeat;
}

.feature-menu .line-icon::after {
  top: auto;
  left: auto;
  width: 27px;
  height: 27px;
  border: 0;
  border-radius: 0;
  background: currentColor;
  box-shadow: none;
  opacity: 0.92;
  transform: none;
}

.icon-capture,
.proof-import {
  --svg-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.5 3.8h7.4l4.6 4.6v10.1a1.9 1.9 0 0 1-1.9 1.9H6.5a1.9 1.9 0 0 1-1.9-1.9V5.7a1.9 1.9 0 0 1 1.9-1.9Z'/%3E%3Cpath d='M13.7 3.9v4.7h4.6'/%3E%3Cpath d='M8 12h8'/%3E%3Cpath d='M8 15.8h5.4'/%3E%3C/svg%3E");
}

.icon-owner,
.icon-client,
.proof-private {
  --svg-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='8.2' r='3.2'/%3E%3Cpath d='M5.2 19.6c.8-3.4 3.2-5.1 6.8-5.1s6 1.7 6.8 5.1'/%3E%3C/svg%3E");
}

.icon-message,
.icon-context,
.proof-review {
  --svg-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 5.8A2.3 2.3 0 0 1 7.3 3.5h9.4A2.3 2.3 0 0 1 19 5.8v6.9a2.3 2.3 0 0 1-2.3 2.3H10l-5 4.1V5.8Z'/%3E%3Cpath d='M8 8.2h8'/%3E%3Cpath d='M8 11.7h5.8'/%3E%3C/svg%3E");
}

.icon-history,
.icon-followup,
.proof-record {
  --svg-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.5 12a7.5 7.5 0 1 0 2.2-5.3'/%3E%3Cpath d='M4.5 5.1v4.4H9'/%3E%3Cpath d='M12 8v4.3l3 1.8'/%3E%3C/svg%3E");
}

.icon-lock {
  --svg-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='4.5' y='10.2' width='15' height='9.4' rx='2.2'/%3E%3Cpath d='M8 10.2V8a4 4 0 0 1 8 0v2.2'/%3E%3Cpath d='M12 14.2v1.8'/%3E%3C/svg%3E");
}

.proof-scope {
  --svg-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3.3 19.5 7v9.9L12 20.7 4.5 17V7L12 3.3Z'/%3E%3Cpath d='M8.2 12h7.6'/%3E%3Cpath d='M12 8.2v7.6'/%3E%3C/svg%3E");
}

.proof-docs,
.proof-tracker {
  --svg-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='5' y='3.8' width='14' height='16.4' rx='1.9'/%3E%3Cpath d='M8.4 8h7.2'/%3E%3Cpath d='M8.4 12h7.2'/%3E%3Cpath d='M8.4 16h4.6'/%3E%3C/svg%3E");
}

.proof-focus {
  --svg-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3.2 20.8 12 12 20.8 3.2 12 12 3.2Z'/%3E%3Ccircle cx='12' cy='12' r='2.8'/%3E%3C/svg%3E");
}

.workflow-accordion-section {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-pad);
  border-top: 1px solid rgba(42, 92, 89, 0.1);
  border-bottom: 0;
  background:
    linear-gradient(180deg, rgba(254, 255, 255, 0.96), rgba(244, 249, 248, 0.94) 46%, rgba(251, 253, 253, 0.98)),
    radial-gradient(circle at 76% 8%, rgba(42, 92, 89, 0.07), transparent 32%);
}

.workflow-accordion-section::before {
  position: absolute;
  top: 0;
  left: max(24px, calc((100vw - var(--site-grid)) / 2));
  right: max(24px, calc((100vw - var(--site-grid)) / 2));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(42, 92, 89, 0.34), transparent);
  content: "";
}

.workflow-accordion-header {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 18px;
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: clamp(34px, 4.4vw, 58px);
  text-align: center;
}

.workflow-accordion-header h2 {
  max-width: 860px;
  margin: 0;
  letter-spacing: -0.03em;
}

.workflow-accordion-header p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: rgba(29, 29, 31, 0.68);
  font-size: var(--type-body-plus);
  line-height: 1.48;
}

.workflow-accordion {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(250px, 0.24fr);
  gap: clamp(30px, 3.6vw, 46px);
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.workflow-accordion-copy {
  display: grid;
  align-self: center;
  gap: 22px;
  max-width: 420px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.workflow-accordion-copy h2 {
  max-width: 420px;
  margin: 0;
  color: var(--qp-ink);
  font-size: clamp(44px, 4vw, 60px);
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-wrap: balance;
}

.workflow-accordion-copy > p:not(.eyebrow, .workflow-kicker) {
  max-width: 340px;
  margin: 0;
  color: rgba(29, 29, 31, 0.64);
  font-size: var(--type-body-plus);
  line-height: 1.48;
}

.workflow-accordion-current {
  display: grid;
  gap: 12px;
  margin-top: clamp(10px, 2vw, 22px);
  padding-top: clamp(22px, 3vw, 32px);
  border-top: 1px solid rgba(42, 92, 89, 0.16);
}

.workflow-kicker {
  margin: 0;
  color: var(--qp-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.workflow-accordion-copy h3 {
  margin: 0;
  color: var(--qp-ink);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.1vw, 32px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.04;
  text-wrap: balance;
}

.workflow-accordion-current p:last-child {
  margin: 0;
  max-width: 330px;
  color: rgba(29, 29, 31, 0.62);
  font-size: 15px;
  line-height: 1.45;
}

.workflow-accordion-rail {
  --workflow-panel-closed: 58px;
  --workflow-panel-open: clamp(440px, 42vw, 580px);
  display: flex;
  align-items: stretch;
  gap: 14px;
  min-width: 0;
  height: clamp(450px, 36vw, 520px);
  padding: 0;
  border: 0;
  border-radius: 30px;
  background: transparent;
  box-shadow: none;
}

.workflow-panel {
  position: relative;
  flex: 0 0 auto;
  width: var(--workflow-panel-closed);
  height: 100%;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(42, 92, 89, 0.16);
  border-radius: 18px;
  background: rgba(254, 255, 255, 0.86);
  color: inherit;
  cursor: pointer;
  box-shadow: none;
  transition:
    width 700ms ease-in-out,
    height 700ms ease-in-out,
    border-color 700ms ease-in-out,
    box-shadow 700ms ease-in-out,
    transform 700ms ease-in-out,
    background 700ms ease-in-out;
}

.workflow-panel.is-active {
  width: var(--workflow-panel-open);
  border-color: rgba(42, 92, 89, 0.22);
  background: #f7fbfa;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.96) inset,
    0 24px 58px -44px rgba(0, 0, 0, 0.18);
}

.workflow-panel:focus-visible {
  outline: 3px solid rgba(42, 92, 89, 0.32);
  outline-offset: 4px;
}

.workflow-panel::before {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 70px;
  border-top: 1px solid rgba(42, 92, 89, 0.12);
  background: rgba(254, 255, 255, 0.94);
  box-shadow: none;
  content: "";
  opacity: 0;
  transform: translateY(100%);
  transition:
    opacity 300ms ease-in-out,
    transform 700ms ease-in-out;
}

.workflow-panel.is-active::before {
  opacity: 1;
  transform: translateY(0);
}

.workflow-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transform: scale(1.045);
  transition:
    opacity 300ms ease-in-out,
    transform 700ms ease-in-out,
    filter 300ms ease-in-out;
}

.workflow-panel.is-active img {
  inset: 0 0 70px;
  height: calc(100% - 70px);
  object-fit: contain;
  opacity: 1;
  transform: scale(1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 245, 243, 0.96));
}

.workflow-panel::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 44%);
  content: "";
  transition: opacity 300ms ease-in-out, background 300ms ease-in-out;
}

.workflow-panel.is-active::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 64%);
}

.workflow-panel-label,
.workflow-panel-title {
  position: absolute;
  z-index: 2;
  color: rgba(29, 31, 31, 0.82);
  letter-spacing: 0;
}

.workflow-panel-label {
  display: none;
}

.workflow-panel-title {
  right: auto;
  bottom: 70px;
  left: 50%;
  opacity: 1;
  visibility: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%) rotate(-90deg);
  transform-origin: center center;
  width: max-content;
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(29, 31, 31, 0.78);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  text-shadow: none;
  box-shadow: none;
  transition:
    bottom 300ms ease-in-out,
    left 300ms ease-in-out,
    width 300ms ease-in-out,
    color 300ms ease-in-out,
    font-size 300ms ease-in-out,
    transform 300ms ease-in-out;
  backdrop-filter: none;
}

.workflow-panel.is-active .workflow-panel-label {
  display: none;
}

.workflow-panel.is-active .workflow-panel-title {
  right: auto;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) rotate(0);
  width: max-content;
  max-width: calc(100% - 52px);
  padding: 0;
  background: transparent;
  color: rgba(29, 31, 31, 0.88);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: none;
  box-shadow: none;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
  gap: clamp(64px, 8vw, 120px);
  align-items: center;
}

.chapter-tracker .product-layout {
  grid-template-columns: minmax(360px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(44px, 5vw, 72px);
}

.product-layout.reverse {
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
}

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

.feature-only {
  max-width: 920px;
}

.feature-only .feature-menu {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px clamp(40px, 6vw, 80px);
}

.feature-only .art-feature-list {
  row-gap: 0;
}

.feature-tab {
  appearance: none;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 20px;
  align-items: start;
  padding: 22px 0;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
  opacity: 0.68;
  transition:
    background 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms var(--qp-spring),
    opacity 180ms ease,
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-tab.is-active {
  position: relative;
  padding: 22px 0;
  background: transparent;
  opacity: 1;
}

.feature-tab.is-active::before {
  display: none;
  content: none;
}

.chapter-control .feature-tab.is-active::before,
.chapter-record .feature-tab.is-active::before {
  background: var(--qp-success);
}

.feature-tab:hover,
.feature-tab:focus-visible {
  border-color: rgba(0, 0, 0, 0.24);
  background: transparent;
  box-shadow: none;
  opacity: 1;
}

.feature-tab:hover .line-icon,
.feature-tab:focus-visible .line-icon {
  color: var(--qp-ink);
  transform: translateY(-1px);
}

.feature-tab:hover .line-icon::before,
.feature-tab:focus-visible .line-icon::before {
  display: none;
  content: none;
}

.feature-title {
  display: block;
  margin: 0;
  color: var(--qp-ink);
  font-size: var(--type-feature);
  font-weight: 650;
  line-height: 1.12;
}

.feature-copy {
  grid-column: 2;
  max-width: 430px;
  display: none;
  margin: 8px 0 0;
  color: rgba(29, 29, 31, 0.68);
  font-size: var(--type-body);
  line-height: 1.46;
}

.feature-tab.is-active .feature-copy {
  display: block;
}

.art-feature-list {
  gap: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.art-feature-list .feature-tab {
  cursor: default;
  grid-template-columns: 36px 1fr;
  gap: 20px;
  opacity: 1;
  border-color: rgba(0, 0, 0, 0.1);
  background: transparent;
  box-shadow: none;
  padding: 28px 0;
}

.art-feature-list .line-icon {
  display: inline-grid;
  margin-top: -2px;
  color: var(--qp-accent);
}

.art-feature-list .feature-tab:hover {
  border-color: rgba(0, 0, 0, 0.18);
}

.art-feature-list .feature-copy {
  display: block;
  grid-column: 2;
  max-width: 520px;
  margin-top: 10px;
}

.control-art-stage,
.record-art-stage {
  align-self: stretch;
}

.control-editorial {
  display: grid;
  grid-template-columns: minmax(280px, 5fr) minmax(0, 7fr);
  gap: clamp(40px, 5.4vw, 80px);
  align-items: start;
}

.control-principle {
  position: sticky;
  top: 122px;
  display: grid;
  gap: 24px;
}

.control-principle h3,
.record-copy h3 {
  max-width: 460px;
  margin: 0;
  color: var(--qp-ink);
  font-size: var(--type-h3);
  font-weight: 600;
  line-height: 1.08;
  text-wrap: balance;
}

.control-principle p:not(.eyebrow),
.record-copy p {
  max-width: 470px;
  margin: 0;
  color: rgba(29, 31, 31, 0.66);
  font-size: var(--type-body-large);
  line-height: 1.48;
  text-wrap: pretty;
}

.control-principle ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
  border-top: 0;
}

.control-principle li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 18px;
  align-items: center;
  padding: 0;
  border-bottom: 0;
  color: rgba(29, 31, 31, 0.72);
  font-size: var(--type-body);
  line-height: 1.38;
  transition:
    border-color 200ms ease,
    color 200ms ease,
    transform 200ms var(--qp-spring);
}

.control-principle li .proof-icon {
  align-self: center;
  color: rgba(29, 31, 31, 0.58);
}

.control-principle li:hover {
  color: rgba(29, 31, 31, 0.82);
  transform: translateX(2px);
}

.control-principle li:hover .proof-icon {
  color: var(--qp-ink);
}

.record-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 5fr) minmax(0, 7fr);
  gap: clamp(40px, 5.4vw, 80px);
  align-items: center;
}

.record-copy {
  display: grid;
  gap: 22px;
  align-content: center;
}

.record-proof-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
  border-top: 1px solid rgba(42, 92, 89, 0.16);
}

.record-proof-list li {
  display: grid;
  grid-template-columns: minmax(84px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(42, 92, 89, 0.14);
}

.record-proof-list span {
  color: var(--qp-accent);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.record-proof-list strong {
  color: rgba(29, 31, 31, 0.78);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.28;
}

.ledger-list {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 780px);
  gap: 0;
  padding: 0 0 0 26px;
  margin: 0;
  list-style: none;
}

.ledger-list::before {
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 7px;
  width: 1px;
  background: linear-gradient(180deg, rgba(29, 31, 31, 0.22), rgba(29, 31, 31, 0.06));
  content: "";
}

.ledger-list li {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 8px 18px;
  align-items: start;
  min-height: 96px;
  padding: 0 0 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.ledger-list li::before {
  position: absolute;
  top: 9px;
  left: -24px;
  width: 15px;
  height: 15px;
  border: 1px solid rgba(29, 31, 31, 0.18);
  border-radius: 999px;
  background: var(--qp-bg);
  box-shadow: 0 0 0 6px rgba(244, 249, 248, 0.88);
  content: "";
}

.ledger-list time {
  color: rgba(29, 31, 31, 0.5);
  font-family: var(--font-mono);
  font-size: var(--type-micro);
  font-weight: 700;
  text-transform: uppercase;
}

.ledger-list span {
  color: var(--qp-ink-soft);
  font-size: var(--type-feature);
  font-weight: 600;
  line-height: 1.05;
}

.ledger-list b {
  grid-column: 2;
  max-width: 520px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(29, 31, 31, 0.64);
  font-size: var(--type-body);
  font-weight: 500;
  line-height: 1.45;
  white-space: normal;
}

.surface-toolbar {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--qp-surface-row-rule);
  padding: 0 16px;
  color: rgba(29, 31, 31, 0.62);
  font-size: var(--type-eyebrow);
  line-height: 1;
}

.surface-toolbar b {
  border: 1px solid rgba(29, 31, 31, 0.075);
  border-radius: 999px;
  background: rgba(242, 248, 247, 0.72);
  color: rgba(29, 31, 31, 0.68);
  padding: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.surface-mono {
  color: rgba(42, 92, 89, 0.72);
  font-family: var(--font-mono);
  font-size: var(--type-micro);
}

.included-list {
  box-shadow: none;
}

.closing-proof {
  padding-block: 120px;
}

.closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
  padding: 64px;
  border-radius: 16px;
  background: var(--qp-ink);
  color: #f9fffe;
}

.closing-grid h2 {
  margin: 0;
  color: #f9fffe;
  font-size: var(--type-h2-large);
  font-weight: 600;
  line-height: 1.08;
  text-wrap: balance;
}

.closing-grid .eyebrow {
  color: rgba(254, 255, 255, 0.72);
}

.closing-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.closing-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 8px 18px;
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid rgba(254, 255, 255, 0.16);
  color: rgba(254, 255, 255, 0.7);
  line-height: 1.34;
}

.closing-list li:last-child {
  border-bottom: 0;
  color: #f9fffe;
}

.closing-list .proof-icon {
  grid-row: span 2;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(254, 255, 255, 0.16);
  background: rgba(254, 255, 255, 0.04);
  color: rgba(254, 255, 255, 0.54);
}

.closing-list strong {
  color: rgba(254, 255, 255, 0.9);
  font-size: var(--type-lede);
  font-weight: 500;
}

.closing-list em {
  color: rgba(254, 255, 255, 0.54);
  font-size: var(--type-small);
  font-style: normal;
}

.art-break {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding-block: var(--section-pad-deep);
  background: #1d1d1f;
}

.art-break-pricing {
  padding-block: var(--section-pad);
  background: #1d1d1f;
}

.art-break-copy {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #f9fffe;
}

.art-break-kicker,
.art-break .eyebrow {
  display: inline-flex;
  min-height: 0;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: none;
  box-shadow: none;
}

.art-break h2 {
  max-width: 900px;
  margin: 0 auto;
  color: #f9fffe;
  font-size: var(--type-h2);
  font-weight: 500;
  line-height: 1.02;
  text-wrap: balance;
}

.art-break p:not(.art-break-kicker, .eyebrow) {
  max-width: 820px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--type-lede);
  line-height: 1.42;
}

.pricing-chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 30px auto 38px;
  list-style: none;
}

.pricing-chip-row li {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.74);
  font-size: var(--type-small);
  font-weight: 650;
  pointer-events: none;
}

.button-break {
  min-height: 56px;
  padding-inline: 32px;
  border-radius: 999px;
  background: #feffff;
  color: var(--qp-ink);
  box-shadow: 0 18px 42px -30px rgba(0, 0, 0, 0.42);
  font-size: var(--type-body-large);
}

.purpose-built {
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  scroll-margin-top: 96px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, #111817 0%, #0d1514 100%);
  color: rgba(250, 251, 249, 0.92);
}

.purpose-built::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  opacity: 0.34;
  pointer-events: none;
  content: "";
}

.purpose-built::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(110, 207, 203, 0.4), transparent);
  content: "";
}

.purpose-built-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: center;
  padding-block: clamp(124px, 15vh, 184px);
}

.purpose-built-copy {
  display: grid;
  gap: 24px;
  align-content: center;
}

.purpose-built .eyebrow {
  color: rgba(250, 251, 249, 0.62);
}

.purpose-built h2 {
  max-width: 760px;
  margin: 0;
  color: rgba(250, 251, 249, 0.96);
  font-size: var(--type-h2-large);
  font-weight: 600;
  line-height: 1;
  text-wrap: balance;
}

.purpose-built-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: rgba(250, 251, 249, 0.68);
  font-size: var(--type-body-large);
  line-height: 1.5;
  text-wrap: pretty;
}

.purpose-built-panel {
  position: relative;
  display: grid;
  gap: 26px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.purpose-built-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  color: rgba(110, 207, 203, 0.82);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.purpose-built-kicker::after {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(110, 207, 203, 0.42), transparent);
  content: "";
}

.purpose-built-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.purpose-built-list li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
  grid-template-areas:
    "label title"
    "label detail";
  column-gap: clamp(22px, 3.4vw, 42px);
  row-gap: 10px;
  align-items: start;
  justify-items: start;
  min-height: 0;
  padding: clamp(22px, 2.8vw, 31px) 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  border-radius: 0;
  transition:
    border-color 200ms ease,
    transform 200ms var(--qp-spring);
}

.purpose-built-list li:last-child {
  padding-bottom: 0;
}

.purpose-built-list span {
  grid-area: label;
  padding-top: 3px;
  color: rgba(250, 251, 249, 0.46);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.purpose-built-list li:hover {
  border-color: rgba(110, 207, 203, 0.45);
}

.purpose-built-list strong {
  grid-area: title;
  color: rgba(250, 251, 249, 0.96);
  font-size: var(--type-body-large);
  font-weight: 600;
  line-height: 1.16;
  text-align: left;
}

.purpose-built-list em {
  grid-area: detail;
  color: rgba(250, 251, 249, 0.62);
  font-size: var(--type-small);
  font-style: normal;
  line-height: 1.44;
  text-align: left;
}

/* Final CTA / Footer */
.final-cta {
  position: relative;
  display: grid;
  min-height: 500px;
  align-items: center;
  overflow: hidden;
  padding-block: var(--section-pad-tight);
  border-top: 1px solid var(--qp-rule);
  background:
    linear-gradient(180deg, var(--qp-bg) 0%, var(--qp-bg-tint) 100%);
  color: var(--qp-ink);
}

.final-cta::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(29, 31, 31, 0.16), transparent);
  content: "";
}

.final-cta::after {
  display: none;
  content: none;
}

.final-content {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  max-width: 820px;
  margin-inline: auto;
  color: var(--qp-ink);
  font-size: var(--type-h2-large);
  line-height: 1.02;
}

.final-cta p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px auto 0;
  color: rgba(29, 31, 31, 0.68);
}

.final-cta p.contact-line {
  margin: 18px auto 0;
  color: rgba(29, 31, 31, 0.54);
  font-size: var(--type-small);
  line-height: 1.45;
}

.final-cta p.contact-line a {
  color: var(--qp-ink);
  font-weight: 600;
}

.final-cta .eyebrow {
  color: rgba(29, 31, 31, 0.64);
}

.final-cta .eyebrow::before,
.final-cta .eyebrow::after {
  background: rgba(254, 255, 255, 0.22);
}

.final-cta .button-primary {
  background: var(--qp-black);
  color: #f9fffe;
  box-shadow:
    inset 0 1px 0 rgba(254, 255, 255, 0.08),
    0 18px 40px -26px rgba(29, 31, 31, 0.42);
}

.final-cta .button-primary:hover,
.final-cta .button-primary:focus-visible {
  background: var(--qp-black-hover);
  box-shadow:
    inset 0 1px 0 rgba(254, 255, 255, 0.1),
    0 20px 44px -26px rgba(29, 31, 31, 0.44);
}

.final-cta .button-secondary {
  border-color: rgba(29, 31, 31, 0.16);
  background: rgba(254, 255, 255, 0.5);
  color: rgba(29, 31, 31, 0.78);
  box-shadow: inset 0 1px 0 rgba(254, 255, 255, 0.76);
}

.site-footer {
  padding-block: 56px;
  border-top: 1px solid rgba(5, 36, 34, 0.1);
  background: var(--qp-bg-tint);
  color: rgba(29, 29, 31, 0.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(120px, 0.42fr));
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.site-footer .brand {
  color: var(--qp-ink);
}

.site-footer p,
.site-footer a:not(.brand) {
  margin: 0;
  color: rgba(29, 29, 31, 0.62);
  font-size: var(--type-small);
  line-height: 1.35;
}

.footer-brand,
.footer-links {
  display: grid;
  justify-items: start;
  gap: 12px;
}

.footer-brand p {
  max-width: 320px;
}

.footer-links strong {
  margin-bottom: 3px;
  color: rgba(29, 29, 31, 0.86);
  font-size: var(--type-eyebrow);
  font-weight: 600;
}

.site-footer a:not(.brand):hover {
  color: var(--qp-ink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom span {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(29, 29, 31, 0.62);
  font-size: var(--type-small);
  line-height: 1.4;
}

.cta-stack {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.final-cta .cta-stack {
  margin-top: 34px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.has-js .reveal {
  transform: translateY(12px);
  transition: transform 620ms var(--qp-ease-entrance);
}

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

.section-anchor {
  display: block;
  position: relative;
  top: -96px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Responsive / Reduced Motion */
@media (prefers-reduced-motion: no-preference) {
  .feature-tab:hover {
    transform: translateX(2px);
  }

  .purpose-built-list li:hover {
    transform: translateY(-2px);
  }

  .feature-tab.is-active::before {
    transition: transform 200ms var(--qp-spring);
  }
}

@media (max-width: 860px) {
  .workflow-accordion-section {
    padding-block: 92px;
  }

  .workflow-accordion-header {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .workflow-accordion-header p:not(.eyebrow) {
    max-width: 640px;
  }

  .workflow-accordion {
    grid-template-columns: 1fr;
    padding: 12px;
    border-radius: 22px;
  }

  .workflow-accordion-copy {
    order: -1;
    grid-template-columns: 1fr;
    max-width: 100%;
    padding: 20px 4px 0;
  }

  .workflow-accordion-copy h2 {
    max-width: 640px;
  }

  .workflow-accordion-copy > p:not(.eyebrow, .workflow-kicker),
  .workflow-accordion-current p:last-child {
    max-width: 620px;
  }

  .workflow-accordion-rail {
    display: grid;
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
    gap: 12px;
  }

  .workflow-panel,
  .workflow-panel.is-active {
    width: 100%;
    height: auto;
    min-height: 86px;
    border-radius: 16px;
  }

  .workflow-panel.is-active {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .workflow-panel.is-active img {
    inset: 0 0 58px;
    height: calc(100% - 58px);
  }

  .workflow-panel::before {
    height: 58px;
  }

  .workflow-panel-title {
    right: auto;
    bottom: 28px;
    left: 18px;
    transform: translateX(0) rotate(0);
    width: auto;
    max-width: calc(100% - 36px);
    font-size: 16px;
  }

  .workflow-panel.is-active .workflow-panel-title {
    right: auto;
    bottom: 19px;
    left: 50%;
    width: max-content;
    max-width: calc(100% - 36px);
    padding: 0;
    font-size: 19px;
  }

  .workflow-panel.is-active .workflow-panel-label {
    opacity: 0;
  }
}

@media (min-width: 861px) and (max-width: 1080px) {
  .workflow-accordion {
    grid-template-columns: 1fr;
  }

  .workflow-accordion-copy {
    order: -1;
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  .hero {
    --hero-progress: 1;
    --hero-copy-y: 0px;
    --hero-tilt: 0deg;
    --hero-scale: 1;
    min-height: auto;
    padding-bottom: 82px;
  }

  .hero-stage {
    perspective: none;
  }

  .hero-product-peek {
    height: auto;
  }
}

@media (max-width: 1080px) {
  :root {
    --type-h3: 32px;
    --type-h2: 58px;
    --type-h2-large: 64px;
    --type-h1: 88px;
    --type-page-h1: 78px;
  }

  .chapter-top,
  .product-layout,
  .chapter-tracker .product-layout,
  .product-layout.reverse,
  .control-editorial,
  .record-showcase,
  .closing-grid,
  .purpose-built-grid,
  .operating-shell,
  .operating-copy,
  .page-split,
  .page-flow-layout,
  .solutions-hero-inner,
  .solution-proof-layout,
  .solution-proof-layout-reverse {
    grid-template-columns: 1fr;
  }

  #flow .page-flow-layout {
    grid-template-columns: 1fr;
  }

  .solutions-hero {
    min-height: auto;
    padding-bottom: 84px;
  }

  .solutions-hero-copy {
    max-width: 760px;
    padding-bottom: 0;
  }

  .solutions-hero-proof {
    justify-self: start;
    width: min(100%, 860px);
    margin: 12px 0 0;
    transform: none;
  }

  .solution-proof-layout-reverse .solution-client-proof {
    order: 2;
  }

  .control-principle {
    position: static;
  }

  .product-layout > .screenshot-frame {
    order: -1;
  }

  .operating-stage {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .site-nav {
    gap: 16px;
  }

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

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

@media (max-width: 820px) {
  :root {
    --site-gutter: 32px;
    --type-h3: 28px;
    --type-h2: 42px;
    --type-h2-large: 54px;
    --type-h1: 64px;
    --type-page-h1: 54px;
  }

  .container,
  .container-narrow,
  .site-header {
    width: min(100% - var(--site-gutter), var(--site-grid));
  }

  .site-header {
    top: 16px;
    min-height: 50px;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.menu-is-open {
    width: min(100% - 24px, var(--site-grid));
    padding: 8px 8px 8px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 999px;
    background: rgba(251, 253, 253, 0.84);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(18px);
  }

  .site-nav {
    display: none;
  }

  .header-login {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  html:not(.has-js) .menu-button {
    display: none;
  }

  html:not(.has-js) .mobile-menu {
    display: grid;
  }

  .header-cta {
    min-height: 36px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 34px;
  }

  .hero-stage {
    display: grid;
    gap: 12px;
  }

  .hero-copy {
    padding-top: 108px;
  }

  .hero-subhead,
  .operating-copy p:not(.eyebrow),
  .final-cta p {
    font-size: var(--type-body-plus);
  }

  .use-case-grid,
  .editorial-columns {
    grid-template-columns: 1fr;
  }

  .use-case-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .use-case-card p {
    grid-column: 1;
  }

  .section {
    padding-block: 80px;
  }

  .page-hero {
    padding-block: 112px 72px;
  }

  .page-section-head {
    margin-bottom: 32px;
  }

  .product-chapter {
    padding-block: 96px;
  }

  .chapter-top {
    gap: 24px;
    margin-bottom: 48px;
  }

  .chapter-top h2 {
    font-size: var(--type-h2-large);
  }

  .chapter-top p:not(.eyebrow) {
    margin-top: 16px;
  }

  .product-layout,
  .product-layout.reverse {
    gap: 40px;
  }

  .feature-menu {
    gap: 20px;
  }

  .feature-only .feature-menu {
    grid-template-columns: 1fr;
  }

  .feature-tab,
  .feature-tab.is-active {
    grid-template-columns: 28px 1fr;
    gap: 18px;
    padding: 18px 0;
  }

  .feature-tab.is-active::before {
    display: none;
  }

  .feature-tab.is-active {
    padding: 18px 0;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .art-feature-list .feature-tab,
  .art-feature-list .feature-tab.is-active {
    grid-template-columns: 36px 1fr;
    padding: 24px 0;
  }

  .line-icon {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .client-proof-shot {
    margin-top: 40px;
  }

  .operating-stage {
    min-height: auto;
  }

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

  .model-flow li {
    padding: 18px 16px 18px 0;
  }

  .model-flow li:nth-child(2n + 1) {
    border-left: 0;
    padding-left: 0;
  }

  .model-flow li:nth-child(n + 3) {
    border-top: 1px solid rgba(29, 29, 31, 0.1);
  }

  .ledger-list {
    width: min(88%, 560px);
  }

  .ledger-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .ledger-list b {
    width: fit-content;
  }

  .art-break p:not(.art-break-kicker) {
    font-size: var(--type-body-large);
  }

  .pricing-chip-row {
    margin-block: 24px 32px;
  }

  .purpose-built-grid {
    padding-block: 80px;
  }

  .closing-grid {
    padding: 32px;
    border-radius: 16px;
  }

  .operating-model {
    padding-block: 80px 96px;
  }

  .operating-shell {
    gap: 32px;
  }

  .screenshot-frame.operating-stage {
    border-radius: 16px;
  }

  .final-cta {
    min-height: 480px;
    padding-block: 96px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .included-list article,
  .pricing-highlights li {
    grid-template-columns: 34px 1fr;
  }

  .included-list p,
  .pricing-highlights p {
    grid-column: 2;
  }

  .position-system li {
    grid-template-columns: 34px 1fr;
  }

}

@media (max-width: 900px) and (min-width: 761px) {
  .hero {
    --hero-tilt: calc(12deg - (var(--hero-progress) * 12deg));
    --hero-scale: calc(0.94 + (var(--hero-progress) * 0.06));
  }
}

@media (max-width: 520px) {
  :root {
    --site-gutter: 28px;
    --type-h3: 26px;
    --type-h2: 38px;
    --type-h2-large: 46px;
    --type-h1: 56px;
    --type-page-h1: 46px;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(44px, 12.5vw, 58px);
    line-height: 0.98;
  }

  .page-hero h1,
  .solutions-hero h1 {
    font-size: var(--type-page-h1);
    line-height: 0.98;
  }

  .brand {
    font-size: 14px;
  }

  .header-actions {
    gap: 8px;
  }

  .menu-button {
    min-height: 36px;
    padding-inline: 12px;
  }

  .header-cta {
    display: none;
  }

  .solution-proof-notes li,
  .solution-sequence li,
  .solution-audience-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .solution-proof-notes,
  .solution-sequence {
    max-width: 100%;
  }

  .solutions-proof-shot,
  .solution-tracker-proof,
  .solution-client-proof {
    border-radius: 16px;
  }

  .solution-audience-list h3 {
    font-size: clamp(28px, 10vw, 42px);
  }

  .operating-model {
    padding-block: 48px 96px;
  }

  .position-system li {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .screenshot-frame {
    padding: 6px;
    border-radius: 16px;
  }

  .screenshot-frame picture {
    border-radius: 12px;
  }

  .hero-product-peek,
  .screenshot-frame.operating-stage,
  .product-shot-large,
  .solutions-proof-shot,
  .client-proof-shot,
  .about-product-shot,
  .control-art-stage,
  .record-art-stage {
    aspect-ratio: 16 / 10;
  }

  .hero-product-peek {
    aspect-ratio: 16 / 10;
    width: 100%;
    min-height: 0;
    padding: 8px;
    border-radius: 22px;
  }

  .pricing-chip-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-block: 22px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .pricing-chip-row li {
    justify-content: flex-start;
    min-height: 36px;
    padding: 11px 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    background: transparent;
  }

  .proof-dashboard img {
    object-position: center center;
  }

  .proof-parties img {
    object-position: 60% 13%;
  }

  .proof-tracker img {
    object-position: 63% 14%;
  }

  .proof-posting img {
    object-position: 64% 13%;
  }

  .proof-summary img {
    object-position: 58% 10%;
  }

  .proof-dashboard img,
  .proof-parties img,
  .proof-import img,
  .proof-posting img,
  .proof-summary img {
    transform: scale(1.045);
    transform-origin: 54% 10%;
  }

  .proof-posting img {
    transform-origin: 63% 13%;
  }

  .proof-tracker img {
    transform: scale(1.06);
    transform-origin: 63% 14%;
  }

  .hero-product-peek.proof-dashboard img {
    object-fit: contain;
    object-position: center top;
    transform: none;
  }

  .price-card-body {
    grid-template-columns: 1fr;
  }

  .price-card-actions {
    margin-top: 4px;
  }

  .purpose-built-grid {
    gap: 30px;
    padding-block: 72px;
  }

  .model-flow {
    grid-template-columns: 1fr;
  }

  .model-flow li,
  .model-flow li + li {
    padding: 18px 0;
    border-left: 0;
  }

  .model-flow li + li {
    border-top: 1px solid rgba(29, 29, 31, 0.1);
  }

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

  .purpose-built-list li {
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "title"
      "detail";
    gap: 10px;
    padding: 20px 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ledger-list {
    width: 100%;
  }

  .surface-toolbar {
    min-height: 40px;
    padding-inline: 16px;
  }

}

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

  .hero {
    --hero-progress: 1;
    --hero-copy-y: 0px;
    --hero-tilt: 0deg;
    --hero-scale: 1;
  }

  .hero-stage {
    perspective: none;
  }

  .hero-product-peek {
    will-change: auto;
  }

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