@font-face {
  font-family: "Inter";
  src: url("/fonts/inter.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

:root {
  --paper: #f7f4ef;
  --paper-strong: #efeae2;
  --white: #fffdf9;
  --ink: #141b2e;
  --ink-soft: #4e586b;
  --ink-faint: #717a8b;
  --line: #d7d1c8;
  --line-strong: #a9a195;
  --violet: #4a3fa0;
  --violet-dark: #342a7c;
  --violet-pale: #ebe8f8;
  --amber: #8d4d0b;
  --amber-bg: #f8ead7;
  --green: #1f6b4f;
  --green-bg: #e2efe8;
  --red: #8c2f39;
  --red-bg: #f5e3e5;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: ui-monospace, "SFMono-Regular", "Cascadia Code", "Roboto Mono", monospace;
  --measure: 68ch;
  --radius: 10px;
  --page: 1180px;
  --section: clamp(4.75rem, 8vw, 8rem);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  height: 1px;
  background: var(--line);
  z-index: 60;
}

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

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--violet-dark);
}

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

button,
a,
input,
textarea,
select,
summary {
  outline-offset: 4px;
}

:focus-visible {
  outline: 3px solid rgba(74, 63, 160, 0.32);
}

::selection {
  color: var(--white);
  background: var(--violet);
}

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

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

.container {
  width: min(calc(100% - 2.5rem), var(--page));
  margin-inline: auto;
}

.narrow {
  width: min(100%, 820px);
}

.reading {
  max-width: var(--measure);
}

.mono {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
}

.muted {
  color: var(--ink-soft);
}

.small {
  font-size: 0.875rem;
}

.eyebrow {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  margin: 0 0 1.35rem;
  color: var(--violet-dark);
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.095em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: currentColor;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  max-width: 14ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 6.2vw, 6.3rem);
  font-weight: 730;
}

h2 {
  max-width: 17ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.15rem, 4vw, 4.2rem);
  font-weight: 690;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  font-weight: 650;
}

.lede {
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  line-height: 1.62;
}

.section-note {
  margin-top: 2rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--violet);
  max-width: var(--measure);
  color: var(--ink-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(247, 244, 239, 0.96);
}

.site-header[data-scrolled="true"] {
  border-color: var(--line);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  min-height: 78px;
}

.wordmark {
  display: inline-flex;
  gap: 0.62rem;
  align-items: center;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 760;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.wordmark-mark {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: -0.05em;
}

.primary-nav {
  justify-self: center;
}

.primary-nav ul {
  display: flex;
  gap: 1.7rem;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav a {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

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

.header-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.language-link {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.72rem;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 19px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  content: "";
}

.btn,
.text-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  font-weight: 700;
  text-decoration: none;
}

.btn {
  padding: 0.78rem 1.05rem;
  border: 1px solid var(--violet);
  border-radius: 6px;
  color: var(--white);
  background: var(--violet);
  cursor: pointer;
}

.btn:hover {
  border-color: var(--violet-dark);
  color: var(--white);
  background: var(--violet-dark);
}

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

.btn-secondary:hover {
  color: var(--ink);
  background: var(--paper-strong);
}

.btn-small {
  min-height: 40px;
  padding: 0.6rem 0.82rem;
  font-size: 0.84rem;
}

.text-link {
  min-height: auto;
  color: var(--violet-dark);
  border-bottom: 1px solid currentColor;
}

.hero {
  padding: clamp(5rem, 9vw, 9rem) 0 var(--section);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

.hero-grid > * {
  min-width: 0;
}

.hero .lede {
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin: 2rem 0 1.25rem;
}

.trust-line {
  max-width: 62ch;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.78rem;
}

.hero-evidence {
  border: 1px solid var(--ink);
  background: var(--white);
  font-variant-numeric: tabular-nums;
}

.hero-evidence-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--ink);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.hero-metric {
  display: grid;
  grid-template-columns: 1fr auto 6.7rem;
  gap: 0.75rem;
  align-items: center;
  padding: 0.82rem 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
}

.hero-metric strong {
  font-family: var(--mono);
}

.hero-metric small {
  color: var(--ink-faint);
  font-family: var(--mono);
  font-size: 0.62rem;
  text-align: right;
  text-transform: uppercase;
}

.hero-metric small.accepted { color: var(--green); }
.hero-metric small.open { color: var(--amber); }

.hero-metric-final {
  color: var(--white);
  background: var(--ink);
  border-bottom: 0;
}

.hero-metric-final small { color: #c5cad4; }

.hero-evidence > p {
  margin: 0;
  padding: 0.85rem 1rem;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.decision-rail {
  border-top: 1px solid var(--ink);
  background: var(--white);
}

.rail-step {
  display: grid;
  grid-template-columns: 5.7rem 1fr;
  gap: 1rem;
  padding: 1.1rem 0.2rem;
  border-bottom: 1px solid var(--line);
}

.rail-index,
.rail-label {
  font-family: var(--mono);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rail-index {
  color: var(--ink-faint);
}

.rail-label {
  color: var(--violet-dark);
}

.rail-copy {
  grid-column: 2;
  margin: -0.55rem 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

section {
  padding: var(--section) 0;
}

.section-alt {
  border-block: 1px solid var(--line);
  background: var(--paper-strong);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.72fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-head .lede {
  margin-bottom: 0;
}

.rule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
}

.rule-item {
  min-height: 230px;
  padding: 1.7rem 1.5rem 1.7rem 0;
  border-bottom: 1px solid var(--line);
}

.rule-item + .rule-item {
  padding-left: 1.5rem;
  border-left: 1px solid var(--line);
}

.rule-index {
  margin-bottom: 2.2rem;
  color: var(--ink-faint);
  font-family: var(--mono);
  font-size: 0.72rem;
}

.rule-item p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.contrast-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 4rem;
  align-items: start;
}

.option-list {
  border-top: 1px solid var(--ink);
}

.option {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.option-mark {
  color: var(--violet-dark);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
}

.option p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.method-steps {
  counter-reset: method;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
}

.method-step {
  counter-increment: method;
  min-height: 260px;
  padding: 1.6rem 1.4rem;
  border-bottom: 1px solid var(--line);
}

.method-step:first-child {
  padding-left: 0;
}

.method-step + .method-step {
  border-left: 1px solid var(--line);
}

.method-step::before {
  display: block;
  margin-bottom: 3rem;
  color: var(--violet-dark);
  font-family: var(--mono);
  font-size: 0.72rem;
  content: "0" counter(method);
}

.method-step p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.evidence-shell {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--white);
}

.evidence-meta {
  display: flex;
  gap: 0.8rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.evidence-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
}

.evidence-note {
  margin: 0;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.evidence-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--ink);
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0.28rem 0.5rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--paper);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-chip[data-state="accepted"] {
  color: var(--green);
  border-color: rgba(31, 107, 79, 0.38);
  background: var(--green-bg);
}

.status-chip[data-state="open"] {
  color: var(--amber);
  border-color: rgba(141, 77, 11, 0.35);
  background: var(--amber-bg);
}

.table-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  contain: inline-size;
}

.evidence-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

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

.evidence-table th {
  color: var(--ink-faint);
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.evidence-table td:nth-child(2) {
  font-family: var(--mono);
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

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

.evidence-table .subtotal td {
  color: var(--ink);
  background: var(--paper);
  font-weight: 700;
}

.decision-output {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1.5rem;
  padding: 1.35rem;
  border-top: 1px solid var(--ink);
}

.decision-output strong {
  color: var(--violet-dark);
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.decision-output p {
  margin-bottom: 0;
}

.evidence-boundary {
  margin: 0;
  padding: 1rem 1.25rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

.offer-ladder {
  border-top: 1px solid var(--ink);
}

.offer-stage {
  display: grid;
  grid-template-columns: 4rem minmax(200px, 0.55fr) 1fr;
  gap: 1.5rem;
  padding: 1.65rem 0;
  border-bottom: 1px solid var(--line);
}

.stage-index {
  color: var(--violet-dark);
  font-family: var(--mono);
  font-weight: 700;
}

.stage-copy p,
.stage-copy ul {
  color: var(--ink-soft);
}

.stage-copy p:last-child,
.stage-copy ul:last-child {
  margin-bottom: 0;
}

.stage-copy ul {
  margin-top: 0;
  padding-left: 1.1rem;
}

.scope-boundary {
  margin-top: 2rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: var(--white);
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--ink);
  background: var(--white);
}

.fit-column {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.fit-column + .fit-column {
  border-left: 1px solid var(--ink);
}

.fit-column ul {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.fit-column li {
  position: relative;
  padding: 0.9rem 0 0.9rem 1.7rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.fit-column li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  font-family: var(--mono);
  content: "+";
}

.fit-column[data-fit="no"] li::before {
  color: var(--red);
  content: "−";
}

.book-panel,
.selected-panel,
.about-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2rem, 7vw, 6rem);
  padding: clamp(2rem, 5vw, 4.5rem);
  border: 1px solid var(--ink);
  background: var(--white);
}

.book-kicker {
  display: grid;
  min-height: 240px;
  place-items: end start;
  padding: 1.5rem;
  color: var(--white);
  background: var(--ink);
}

.book-kicker span {
  max-width: 12ch;
  font-size: clamp(1.8rem, 3.6vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.work-types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.work-type {
  padding: 0.45rem 0.62rem;
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.74rem;
}

.diagnostic-section {
  color: var(--white);
  background: var(--ink);
}

.diagnostic-section .eyebrow,
.diagnostic-section h2 {
  color: var(--white);
}

.diagnostic-section .eyebrow::before {
  background: currentColor;
}

.diagnostic-section .lede,
.diagnostic-section .privacy-note {
  color: #c5cad4;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 1.18fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: start;
}

.diagnostic-form {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid #4b5365;
  background: #1d2539;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.38rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.consent label {
  color: #e9ebf0;
  font-size: 0.82rem;
  font-weight: 650;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 0.72rem 0.78rem;
  border: 1px solid #586174;
  border-radius: 5px;
  color: var(--white);
  background: #141b2e;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8e96a7;
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  margin: 1rem 0;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
}

.consent a {
  color: var(--white);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.required-note {
  color: #d9dde5;
  font-size: 0.78rem;
}

.form-status {
  min-height: 1.5rem;
  margin: 0.8rem 0 0;
  color: #d9dde5;
  font-size: 0.86rem;
}

.form-status[data-state="success"] {
  color: #a8ddc6;
}

.form-status[data-state="error"] {
  color: #ffc2c8;
}

.privacy-note {
  margin: 1rem 0 0;
  font-size: 0.75rem;
}

.page-hero {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 15ch;
  font-size: clamp(2.8rem, 5.5vw, 5.6rem);
}

.qualifier-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.qualifier {
  padding: 1.4rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.qualifier .mono {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--violet-dark);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.qualifier + .qualifier {
  border-left: 1px solid var(--line);
}

section[id] {
  scroll-margin-top: 96px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: start;
}

.definition-list {
  margin: 0;
  border-top: 1px solid var(--ink);
}

.definition-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.4fr) 1fr;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.definition-row dt {
  font-weight: 700;
}

.definition-row dd {
  margin: 0;
  color: var(--ink-soft);
}

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

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

.faq-list summary {
  padding: 1.25rem 2.5rem 1.25rem 0;
  font-weight: 700;
  cursor: pointer;
}

.faq-list details p {
  max-width: var(--measure);
  padding: 0 0 1.35rem;
  color: var(--ink-soft);
}

.loop-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--ink);
}

.loop-node {
  min-height: 160px;
  padding: 1.2rem;
  background: var(--white);
}

.loop-node + .loop-node {
  border-left: 1px solid var(--line);
}

.loop-node .mono {
  color: var(--violet-dark);
  font-size: 0.7rem;
}

.site-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--line);
}

.option-status {
  grid-template-columns: 8rem 1fr;
}

.option-status > .status-chip {
  width: max-content;
  min-width: 6.5rem;
  justify-content: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 2fr;
  gap: 2rem;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--ink-soft);
  font-size: 0.82rem;
  text-decoration: none;
}

.footer-meta {
  margin-top: 1rem;
  color: var(--ink-faint);
  font-family: var(--mono);
  font-size: 0.67rem;
}

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

/* Audience routing and agency-commercial path */
.audience-section {
  padding: var(--section) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-strong);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  border: 1px solid var(--ink);
  background: var(--white);
}

.audience-route {
  min-width: 0;
  padding: clamp(1.6rem, 4vw, 3.4rem);
}

.audience-route + .audience-route {
  border-left: 1px solid var(--ink);
}

.route-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.audience-route h3 {
  max-width: 15ch;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
}

.route-promise {
  max-width: 34ch;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 650;
  line-height: 1.35;
}

.route-signals {
  margin: 1.8rem 0 2rem;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.route-signals li {
  padding: 0.72rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.audience-route-primary {
  color: var(--white);
  background: var(--ink);
}

.audience-route-primary h3,
.audience-route-primary .route-promise {
  color: var(--white);
}

.audience-route-primary > p:not(.route-promise),
.audience-route-primary .mono,
.audience-route-primary .route-signals li {
  color: #c5cad4;
}

.audience-route-primary .route-signals {
  border-color: #465065;
}

.audience-route-primary .route-signals li {
  border-color: #465065;
}

.audience-grid-compact {
  grid-template-columns: 1fr 1fr;
  border-color: #535b6d;
  background: transparent;
}

.audience-route-dark,
.audience-route-dark-secondary {
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

.audience-route-dark h3,
.audience-route-dark-secondary h3 {
  color: var(--white);
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
}

.audience-route-dark p,
.audience-route-dark-secondary p {
  color: #c5cad4;
}

.audience-route-dark-secondary {
  background: #1d2539;
}

.text-link-light {
  color: var(--white);
}

.segment-bridge {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  color: var(--white);
  background: var(--violet-dark);
}

.segment-bridge-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.segment-bridge h2,
.segment-bridge .eyebrow {
  color: var(--white);
}

.segment-bridge .eyebrow::before {
  background: currentColor;
}

.segment-bridge p:not(.eyebrow) {
  max-width: var(--measure);
  color: #dddaf3;
}

.segment-bridge .btn {
  white-space: nowrap;
}

.agency-hero h1 {
  max-width: 14ch;
  font-size: clamp(3rem, 4.8vw, 5.2rem);
}

[data-page="home"] .hero h1 {
  max-width: 16ch;
  font-size: clamp(3.2rem, 5.1vw, 5.4rem);
}

.scope-ledger .hero-metric strong {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.offer-stack {
  border-top: 1px solid var(--ink);
}

.offer-stack .offer-stage {
  grid-template-columns: 4rem minmax(0, 1fr);
}

.offer-stack .offer-stage-primary {
  padding: 2rem;
  border: 1px solid var(--ink);
  background: var(--white);
}

.offer-stack .offer-stage-primary + .offer-stage {
  border-top: 0;
}

.offer-stack .offer-stage-muted {
  opacity: 0.78;
}

.stage-number {
  color: var(--violet-dark);
  font-family: var(--mono);
  font-weight: 750;
}

.offer-stage ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

.principle-list {
  border-top: 1px solid var(--ink);
}

.principle-list article {
  display: grid;
  grid-template-columns: 1rem 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.principle-list article p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.principle-mark {
  width: 8px;
  height: 8px;
  margin-top: 0.55rem;
  background: var(--green);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--ink);
  background: var(--white);
}

.proof-item {
  display: flex;
  min-width: 0;
  min-height: 320px;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  flex-direction: column;
}

.proof-item + .proof-item {
  border-left: 1px solid var(--ink);
}

.proof-item p:not(.mono) {
  color: var(--ink-soft);
}

.proof-item .status-chip {
  width: max-content;
  margin-top: auto;
}

.split-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--ink);
  background: var(--white);
}

.split-list > article {
  padding: clamp(1.6rem, 4vw, 3rem);
}

.split-list > article + article {
  border-left: 1px solid var(--ink);
}

.check-list,
.x-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.x-list li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.6rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.check-list li::before,
.x-list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  font-family: var(--mono);
  content: "+";
}

.x-list li::before {
  color: var(--red);
  content: "−";
}

.faq-section .narrow > details {
  border-top: 1px solid var(--line);
}

.faq-section .narrow > details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-section summary {
  padding: 1.15rem 2rem 1.15rem 0;
  font-weight: 700;
  cursor: pointer;
}

.faq-section details p {
  max-width: var(--measure);
  padding: 0 0 1.25rem;
  color: var(--ink-soft);
}

.process-list {
  margin: 2rem 0;
  padding: 0;
  border-top: 1px solid #535b6d;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.75rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid #535b6d;
  color: #d9dde5;
}

.process-list span {
  color: #a8ddc6;
  font-family: var(--mono);
}

.form-side-note,
.form-privacy {
  color: #9fa7b7;
  font-size: 0.78rem;
}

[data-page="agency-profit-foundation"] .diagnostic-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.38rem;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label,
.checkbox-field {
  color: #e9ebf0;
  font-size: 0.82rem;
  font-weight: 650;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 48px;
  padding: 0.72rem 0.78rem;
  border: 1px solid #586174;
  border-radius: 5px;
  color: var(--white);
  background: #141b2e;
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #8e96a7;
}

.checkbox-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  margin: 0.5rem 0;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
}

.checkbox-field a {
  color: var(--white);
}

@media (max-width: 920px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .wordmark,
  .header-actions {
    min-width: 0;
  }

  .menu-toggle {
    display: block;
  }

  .header-actions .btn,
  .header-actions .language-link {
    display: none;
  }

  .primary-nav {
    position: fixed;
    top: 79px;
    right: 0;
    left: 0;
    width: 100%;
    max-height: calc(100dvh - 79px);
    overflow-y: auto;
    justify-self: stretch;
    border-bottom: 1px solid var(--ink);
    background: var(--paper);
  }

  .primary-nav:not([data-open="true"]) {
    display: none;
  }

  .primary-nav ul {
    display: grid;
    gap: 0;
    width: min(calc(100% - 2.5rem), var(--page));
    margin-inline: auto;
    padding: 1rem 0 2rem;
  }

  .primary-nav li {
    border-bottom: 1px solid var(--line);
  }

  .primary-nav .mobile-nav-cta {
    display: block;
    border-bottom: 0;
  }

  .primary-nav .mobile-nav-cta .btn {
    display: flex;
    width: 100%;
    justify-content: center;
    margin: 0.5rem 0 0.75rem;
    padding: 0.8rem 1rem;
    color: var(--white);
    white-space: nowrap;
  }

  .primary-nav a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  .hero-grid,
  .section-head,
  .contrast-grid,
  .book-panel,
  .selected-panel,
  .about-panel,
  .form-layout,
  .two-column,
  .segment-bridge-inner {
    grid-template-columns: 1fr;
  }

  .section-head,
  .section-head > *,
  .evidence-shell {
    min-width: 0;
  }

  .evidence-table {
    min-width: 640px;
  }

  .evidence-shell {
    margin-top: 30px;
  }

  .audience-grid,
  .proof-grid,
  .split-list {
    grid-template-columns: 1fr;
  }

  .audience-route + .audience-route,
  .proof-item + .proof-item,
  .split-list > article + article {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .hero-grid {
    align-items: start;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 100%;
  }

  .hero-evidence {
    width: 100%;
    overflow: hidden;
  }

  .evidence-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .evidence-labels {
    justify-content: flex-start;
  }

  .decision-rail {
    max-width: 620px;
  }

  .rule-grid,
  .method-steps {
    grid-template-columns: 1fr 1fr;
  }

  .rule-item + .rule-item,
  .method-step + .method-step {
    border-left: 0;
  }

  .rule-item:nth-child(even),
  .method-step:nth-child(even) {
    padding-left: 1.5rem;
    border-left: 1px solid var(--line);
  }

  .method-step:first-child {
    padding-left: 1.4rem;
  }

  .offer-stage {
    grid-template-columns: 3rem 1fr;
  }

  .stage-copy {
    grid-column: 2;
  }

  .loop-track {
    grid-template-columns: 1fr 1fr;
  }

  .loop-node:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .loop-node:nth-child(4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.5rem), var(--page));
  }

  .header-inner {
    min-height: 70px;
  }

  .primary-nav {
    top: 71px;
    max-height: calc(100dvh - 71px);
  }

  h1,
  .hero h1,
  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(2.4rem, 11.5vw, 3.35rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero,
  .page-hero {
    padding-top: 3.25rem;
  }

  .eyebrow {
    max-width: 100%;
    font-size: 0.65rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

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

  .hero-actions .btn,
  .hero-actions .text-link {
    width: 100%;
  }

  .hero-metric {
    grid-template-columns: 1fr auto;
  }

  .hero-metric small {
    grid-column: 1 / -1;
    text-align: left;
  }

  .option-status {
    grid-template-columns: 1fr;
  }

  .rule-grid,
  .method-steps,
  .fit-grid,
  .qualifier-strip,
  .form-grid,
  .loop-track,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .rule-item,
  .rule-item + .rule-item,
  .rule-item:nth-child(even),
  .method-step,
  .method-step:first-child,
  .method-step + .method-step,
  .method-step:nth-child(even) {
    min-height: auto;
    padding: 1.45rem 0;
    border-right: 0;
    border-left: 0;
  }

  .rule-index,
  .method-step::before {
    margin-bottom: 1.2rem;
  }

  .fit-column + .fit-column,
  .qualifier + .qualifier,
  .loop-node + .loop-node,
  .loop-node:nth-child(3),
  .loop-node:nth-child(4) {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .decision-output,
  .definition-row {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .offer-stage {
    grid-template-columns: 2.3rem 1fr;
    gap: 0.8rem;
  }

  .book-panel,
  .selected-panel,
  .about-panel {
    padding: 1.25rem;
  }

  .diagnostic-form {
    padding: 1rem;
  }

  [data-page="agency-profit-foundation"] .diagnostic-form {
    grid-template-columns: 1fr;
  }

  [data-page="agency-profit-foundation"] .form-field-wide {
    grid-column: auto;
  }

  .audience-route {
    padding: 1.4rem;
  }

  .route-head {
    margin-bottom: 1.5rem;
  }

  .proof-item {
    min-height: auto;
  }

  .offer-stack .offer-stage-primary {
    padding: 1.35rem;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

/* Clean-room agency positioning components */
.brand {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none;
}

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

.site-nav {
  display: flex;
  grid-column: 2 / 4;
  gap: 1.45rem;
  align-items: center;
  justify-self: end;
}

.site-nav > a {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav > a:hover,
.site-nav > a.is-active {
  color: var(--ink);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  padding: 0.78rem 1.05rem;
  border: 1px solid var(--violet);
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--violet);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  border-color: var(--violet-dark);
  color: var(--white);
  background: var(--violet-dark);
}

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

.button-secondary:hover {
  color: var(--ink);
  background: var(--paper-strong);
}

.button-small {
  min-height: 40px;
  padding: 0.6rem 0.82rem;
  font-size: 0.82rem !important;
}

.hero-copy-wide {
  max-width: 930px;
}

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

.hero-lead,
.lead-copy {
  max-width: 68ch;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.34rem);
  line-height: 1.58;
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 930px;
  margin: 2.8rem 0 0;
  padding: 0;
  border-block: 1px solid var(--line);
  list-style: none;
}

.trust-points li {
  padding: 0.95rem 1rem 0.95rem 0;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.75rem;
}

.trust-points li + li {
  padding-left: 1rem;
  border-left: 1px solid var(--line);
}

body[data-page="home"] .section-head,
body[data-page="agency-custom-analytics"] .section-head {
  display: block;
  max-width: 850px;
}

body[data-page="home"] .section-head > p:not(.eyebrow),
body[data-page="agency-custom-analytics"] .section-head > p:not(.eyebrow) {
  max-width: 68ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.audience-card {
  min-width: 0;
  padding: clamp(1.8rem, 4vw, 3.4rem);
}

.audience-card + .audience-card {
  border-left: 1px solid var(--ink);
}

.audience-card-primary {
  color: var(--white);
  background: var(--ink);
}

.audience-card h3 {
  max-width: 16ch;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.audience-card p {
  max-width: 48ch;
  color: var(--ink-soft);
}

.audience-card-primary h3,
.audience-card-primary .text-link {
  color: var(--white);
}

.audience-card-primary p {
  color: #c8ced9;
}

.card-kicker {
  color: var(--violet-dark) !important;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audience-card-primary .card-kicker {
  color: #b7b0ef !important;
}

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--ink);
  background: var(--white);
}

.deliverable-grid article {
  min-width: 0;
  min-height: 300px;
  padding: clamp(1.4rem, 2.6vw, 2.2rem);
}

.deliverable-grid article + article {
  border-left: 1px solid var(--ink);
}

.deliverable-grid article > span {
  display: block;
  margin-bottom: 3rem;
  color: var(--violet-dark);
  font-family: var(--mono);
  font-size: 0.72rem;
}

.deliverable-grid article p,
.proof-grid > article p {
  color: var(--ink-soft);
}

.deliverable-grid h3 {
  font-size: clamp(1.18rem, 1.55vw, 1.48rem);
  hyphens: none;
  overflow-wrap: normal;
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

.section-dark .eyebrow,
.section-dark h2 {
  color: var(--white);
}

.section-dark .section-head > p:not(.eyebrow) {
  color: #c8ced9 !important;
}

.product-shot {
  margin: 0;
}

.product-shot-frame {
  padding: clamp(0.45rem, 1vw, 0.8rem);
  border: 1px solid #596276;
  border-radius: 12px;
  background: #242d42;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.product-shot-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 7px;
}

.product-shot-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.product-shot-zoom {
  display: none;
}

.product-shot figcaption {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 0.9rem;
  color: #aeb5c3;
  font-family: var(--mono);
  font-size: 0.68rem;
}

.narrow-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 1.12fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.fit-list {
  border-top: 1px solid var(--ink);
}

.fit-list > div {
  display: grid;
  gap: 0.35rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.fit-list span {
  color: var(--ink-soft);
}

.plain-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.plain-steps li {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.plain-steps li > span {
  color: var(--violet-dark);
  font-family: var(--mono);
  font-size: 0.75rem;
}

.plain-steps h3 {
  margin-bottom: 0.35rem;
}

.plain-steps p {
  max-width: 65ch;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.proof-grid > article {
  min-width: 0;
  min-height: 260px;
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

.proof-grid > article + article {
  border-left: 1px solid var(--ink);
}

.final-cta {
  color: var(--white);
  background: var(--violet-dark);
}

.final-cta .eyebrow,
.final-cta h2 {
  color: var(--white);
}

.final-cta p:not(.eyebrow) {
  color: #dddaf3;
}

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

.final-cta-inner .button {
  white-space: nowrap;
  border-color: var(--white);
  color: var(--ink);
  background: var(--white);
}

.site-footer .footer-grid {
  grid-template-columns: minmax(220px, 1.4fr) 1fr 1fr;
}

.site-footer .brand {
  display: inline-block;
  margin-bottom: 0.8rem;
}

.site-footer h3 {
  margin-bottom: 0.8rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a:not(.brand) {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--ink-soft);
  font-size: 0.85rem;
  text-decoration: none;
}

.field-row {
  display: grid;
  gap: 0.45rem;
}

.field-row label {
  color: #e9ebf0;
  font-size: 0.82rem;
}

.field-row input,
.field-row textarea {
  width: 100%;
  padding: 0.8rem 0.85rem;
  border: 1px solid #5c6575;
  border-radius: 5px;
  color: var(--white);
  background: #20283a;
}

.field-row input::placeholder,
.field-row textarea::placeholder {
  color: #aeb5c3;
  opacity: 1;
}

.agency-inquiry-form {
  display: grid;
  gap: 1rem;
}

.agency-inquiry-form .consent {
  color: #c8ced9;
}

.agency-inquiry-form .consent a {
  color: var(--white);
}

.short-list {
  margin: 1.5rem 0 0;
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.legal-nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

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

.legal-nav a:hover {
  color: var(--ink);
}

.legal-page {
  min-height: 70vh;
  padding: 8rem 0 6rem;
  background: var(--paper);
}

.legal-shell {
  max-width: 900px;
}

.legal-intro {
  max-width: 720px;
  margin-bottom: 3.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.legal-intro h1 {
  margin-bottom: 0.8rem;
}

.legal-intro > p:last-child {
  color: var(--ink-soft);
}

.legal-content {
  display: grid;
  gap: 2.5rem;
}

.legal-content section {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}

.legal-content section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-content h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.legal-content p,
.legal-content li {
  max-width: 76ch;
  color: var(--ink-soft);
}

.legal-content p + p {
  margin-top: 0.85rem;
}

.legal-content a {
  color: var(--violet-dark);
  text-underline-offset: 0.18rem;
}

.legal-content code {
  padding: 0.1rem 0.3rem;
  border-radius: 3px;
  font-family: var(--mono);
  font-size: 0.9em;
  background: var(--paper-alt);
}

@media (max-width: 920px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 79px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100dvh - 79px);
    padding: 1.2rem;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    overflow-y: auto;
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav > a {
    padding: 0.6rem 0;
  }

  .trust-points,
  .deliverable-grid,
  .narrow-grid,
  .final-cta-inner,
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .deliverable-grid article:nth-child(3) {
    border-left: 0;
  }

  .deliverable-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--ink);
  }

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

@media (max-width: 640px) {
  body[data-page="home"] .hero-copy-wide h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 11.3vw, 2.8rem);
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
  }

  .trust-points,
  .audience-grid,
  .deliverable-grid,
  .site-footer .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .trust-points li + li,
  .audience-card + .audience-card,
  .deliverable-grid article + article,
  .proof-grid > article + article {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .audience-card + .audience-card,
  .deliverable-grid article + article,
  .proof-grid > article + article {
    padding: 1.6rem;
  }

  .deliverable-grid article {
    min-height: auto;
  }

  .deliverable-grid article > span {
    margin-bottom: 1.5rem;
  }

  .product-shot-frame {
    padding: 0.3rem;
  }

  .product-shot-frame img {
    width: 100%;
    max-width: 100%;
    height: auto;
    transform: none;
  }

  .product-shot figcaption {
    flex-direction: column;
  }

  .product-shot-zoom {
    display: inline-flex;
    min-height: 44px;
    margin-top: 0.55rem;
    align-items: center;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.22rem;
  }

  .plain-steps li {
    grid-template-columns: 2.3rem minmax(0, 1fr);
  }

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

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

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