:root {
  --ink: #0a0d12;
  --ink-soft: #252b35;
  --paper: #ffffff;
  --mist: #f3f6fa;
  --line: #dce2ea;
  --line-strong: #b9c2ce;
  --muted: #657080;
  --blue: #1457ff;
  --blue-dark: #0b3fd1;
  --blue-tint: #e8efff;
  --success: #0c7a50;
  --success-tint: #e7f7f0;
  --error: #bc2e3b;
  --error-tint: #fff0f1;
  --font-sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  --radius-sm: 4px;
  --radius-md: 8px;
  --shadow: 0 18px 50px rgb(10 13 18 / 10%);
  --content-max: 1280px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dropdown-open-dur: 250ms;
  --dropdown-close-dur: 150ms;
  --dropdown-pre-scale: 0.97;
  --dropdown-closing-scale: 0.99;
  --dropdown-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --acc-expand: 250ms;
  --acc-collapse: 250ms;
  --acc-chevron: 250ms;
  --acc-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --stagger-dur: 500ms;
  --stagger-distance: 12px;
  --stagger-stagger: 40ms;
  --stagger-blur: 3px;
  --stagger-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

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

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

button,
a,
summary,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button {
  border: 0;
}

svg {
  display: block;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.045em;
  line-height: 1;
  text-wrap: balance;
}

p,
li,
dd,
figcaption,
blockquote {
  text-wrap: pretty;
}

h2 {
  font-size: clamp(2.25rem, 4vw, 4rem);
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
  font-weight: 650;
  line-height: 1.15;
}

code,
.token-label,
.eyebrow,
.section-index,
.nav-label {
  font-family: var(--font-mono);
}

::selection {
  background: var(--blue);
  color: var(--paper);
}

:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px var(--blue);
}

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

.skip-link {
  background: var(--blue);
  color: var(--paper);
  font-weight: 700;
  left: 16px;
  padding: 10px 16px;
  position: fixed;
  top: 12px;
  transform: translateY(-200%);
  transition: transform 180ms ease;
  z-index: 100;
}

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

.utility-bar {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgb(255 255 255 / 90%);
  border-bottom: 1px solid var(--line);
  display: flex;
  height: 72px;
  justify-content: space-between;
  left: 0;
  padding: 0 32px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 30;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  text-decoration: none;
}

.brand__mark {
  align-items: center;
  background: var(--blue);
  color: var(--paper);
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  height: 28px;
  justify-content: center;
  letter-spacing: -0.06em;
  width: 28px;
}

.brand__name {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.brand--large .brand__mark {
  height: 38px;
  width: 38px;
}

.brand--large .brand__name {
  font-size: 18px;
}

.brand--inverse {
  color: var(--paper);
}

.utility-bar__meta {
  align-items: center;
  display: flex;
  gap: 20px;
}

.status {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-family: var(--font-mono);
  font-size: 11px;
  gap: 8px;
  text-transform: uppercase;
}

.status__dot {
  background: var(--success);
  border-radius: 50%;
  height: 7px;
  box-shadow: 0 0 0 4px var(--success-tint);
  width: 7px;
}

.icon-button {
  align-items: center;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.icon-button svg {
  fill: none;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  width: 22px;
}

.mobile-menu-button {
  display: none;
}

.guide-shell {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  margin-top: 72px;
}

.guide-sidebar {
  align-self: start;
  border-right: 1px solid var(--line);
  height: calc(100vh - 72px);
  overflow: auto;
  padding: 40px 24px;
  position: sticky;
  top: 72px;
}

.nav-label {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  margin: 24px 12px 8px;
  text-transform: uppercase;
}

.nav-label:first-child {
  margin-top: 0;
}

.guide-sidebar nav {
  display: flex;
  flex-direction: column;
}

.guide-sidebar nav a {
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 12px;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.guide-sidebar nav a:hover,
.guide-sidebar nav a.is-active {
  background: var(--blue-tint);
  color: var(--blue-dark);
}

.guide-main {
  min-width: 0;
}

.guide-intro,
.guide-section {
  margin: 0 auto;
  max-width: var(--content-max);
  padding-left: 48px;
  padding-right: 48px;
}

.guide-intro {
  display: grid;
  gap: 40px 64px;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  padding-bottom: 88px;
  padding-top: 96px;
}

.eyebrow,
.section-index,
.token-label {
  color: var(--blue);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.guide-intro h1 {
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.88;
  margin-top: 44px;
  max-width: 850px;
}

.guide-intro__summary {
  align-self: end;
}

.lede {
  color: var(--ink-soft);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  letter-spacing: -0.02em;
  line-height: 1.5;
}

.metadata {
  border-top: 1px solid var(--line);
  margin-top: 42px;
}

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

.metadata dt {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.metadata dd {
  font-size: 13px;
  font-weight: 600;
}

.intro-rule {
  background: var(--line);
  grid-column: 1 / -1;
  height: 1px;
  margin-top: 32px;
  position: relative;
}

.intro-rule span {
  animation: intro-scan 3.2s var(--ease-out) infinite;
  background: var(--blue);
  height: 3px;
  left: 0;
  position: absolute;
  top: -1px;
  width: 18%;
}

@keyframes intro-scan {
  0% { left: 0; transform: scaleX(0); transform-origin: left; }
  30% { transform: scaleX(1); }
  65% { left: 82%; transform: scaleX(1); transform-origin: right; }
  100% { left: 82%; transform: scaleX(0); transform-origin: right; }
}

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

.section-heading {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(140px, 0.25fr) minmax(0, 0.75fr);
  margin-bottom: 64px;
}

.section-heading h2 {
  margin-bottom: 20px;
}

.section-heading > div > p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 620px;
}

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

.principle-card {
  border: 1px solid var(--line);
  border-right: 0;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 24px;
}

.principle-card:first-child {
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.principle-card:last-child {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  border-right: 1px solid var(--ink);
}

.principle-card__key {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 11px;
}

.principle-card h3 {
  margin: auto 0 18px;
}

.principle-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.principle-card--dark {
  background: var(--ink);
  color: var(--paper);
}

.principle-card--dark p {
  color: #aeb7c4;
}

.swatch-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(6, 1fr);
}

.swatch__color {
  aspect-ratio: 1 / 1;
  border: 1px solid rgb(10 13 18 / 8%);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.swatch h3 {
  font-size: 14px;
  letter-spacing: -0.02em;
}

.swatch p {
  font-family: var(--font-mono);
  font-size: 11px;
  margin-top: 3px;
}

.swatch span {
  color: var(--muted);
  display: block;
  font-size: 11px;
  line-height: 1.4;
  margin-top: 10px;
}

.swatch--ink .swatch__color { background: var(--ink); }
.swatch--paper .swatch__color { background: var(--paper); }
.swatch--mist .swatch__color { background: var(--mist); }
.swatch--line .swatch__color { background: var(--line); }
.swatch--blue .swatch__color { background: var(--blue); }
.swatch--sky .swatch__color { background: var(--blue-tint); }

.usage-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  margin-top: 64px;
}

.usage-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  min-height: 330px;
  padding: 32px;
}

.usage-panel h3 {
  font-size: 2rem;
  margin: 96px 0 16px;
}

.usage-panel p {
  color: var(--muted);
  max-width: 480px;
}

.usage-panel .text-link {
  margin-top: 26px;
}

.usage-panel--dark {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.usage-panel--dark p {
  color: #aeb7c4;
}

.type-family-card {
  align-items: end;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 32px 0;
}

.type-family-card:first-of-type {
  border-top: 1px solid var(--line);
}

.type-alphabet {
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1;
  margin-top: 20px;
}

.type-family-card--mono .type-alphabet,
.type-family-card--mono .type-weights {
  font-family: var(--font-mono);
}

.type-family-card--mono .type-alphabet {
  font-weight: 400;
  letter-spacing: -0.045em;
}

.type-weights {
  color: var(--muted);
  display: grid;
  font-size: 11px;
  gap: 4px;
  text-align: right;
}

.type-scale {
  margin-top: 72px;
}

.type-row {
  align-items: baseline;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 80px minmax(0, 1fr) 250px;
  padding: 28px 0;
}

.type-row:last-child {
  border-bottom: 1px solid var(--line);
}

.type-row > span,
.type-row code {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
}

.type-row code {
  text-align: right;
}

.type-display { font-size: clamp(3.5rem, 8vw, 8.5rem); font-weight: 800; letter-spacing: -0.075em; line-height: .88; }
.type-h1 { font-size: clamp(3rem, 6vw, 6rem); font-weight: 700; letter-spacing: -0.065em; line-height: .95; }
.type-h2 { font-size: clamp(2.25rem, 4vw, 4rem); font-weight: 700; letter-spacing: -0.05em; line-height: 1; }
.type-h3 { font-size: 1.5rem; font-weight: 650; letter-spacing: -0.04em; line-height: 1.15; }
.type-lead { font-size: 1.25rem; letter-spacing: -0.02em; line-height: 1.55; }

.spacing-demo {
  align-items: end;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(7, 1fr);
  padding-bottom: 40px;
}

.spacing-demo > div {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.spacing-demo span {
  background: var(--blue);
  height: var(--space-demo);
  width: var(--space-demo);
}

.spacing-demo code,
.shape-grid code {
  color: var(--muted);
  font-size: 10px;
}

.shape-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 48px;
}

.shape-grid > div {
  display: grid;
  gap: 16px;
}

.shape {
  background: var(--mist);
  border: 1px solid var(--line);
  display: block;
  height: 112px;
}

.shape--small { border-radius: var(--radius-sm); }
.shape--medium { border-radius: var(--radius-md); }
.shape--large { border-radius: 12px; }
.shape--shadow { border: 0; border-radius: var(--radius-md); box-shadow: var(--shadow); }

.layout-specimen {
  background: var(--mist);
  border-radius: var(--radius-md);
  padding: 24px;
}

.layout-specimen__bar,
.layout-notes {
  color: var(--muted);
  display: flex;
  font-family: var(--font-mono);
  font-size: 10px;
  justify-content: space-between;
}

.layout-grid-demo {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(12, 1fr);
  height: 300px;
  margin: 20px 0;
}

.layout-grid-demo span {
  background: linear-gradient(180deg, rgb(20 87 255 / 16%), rgb(20 87 255 / 4%));
  border-left: 1px solid rgb(20 87 255 / 25%);
  border-right: 1px solid rgb(20 87 255 / 25%);
}

.layout-notes {
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: flex-start;
}

.identity-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.identity-lockup {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 270px;
  padding: 32px;
}

.identity-lockup--dark {
  background: var(--ink);
  border-color: var(--ink);
}

.identity-caption {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.identity-lockup--dark .identity-caption {
  color: #8c96a5;
}

.domain-lockup {
  align-items: baseline;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex;
  flex-wrap: wrap;
  font-size: clamp(2rem, 5vw, 5.5rem);
  font-weight: 700;
  grid-column: 1 / -1;
  letter-spacing: -0.075em;
  line-height: 1;
  padding: 64px 32px 32px;
}

.domain-lockup strong {
  color: var(--blue);
}

.domain-lockup p {
  color: var(--muted);
  flex-basis: 100%;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  margin-top: 48px;
  max-width: 500px;
}

.component-block {
  border-top: 1px solid var(--line);
  padding: 28px 0 48px;
}

.component-block:last-child {
  border-bottom: 1px solid var(--line);
}

.component-block__label {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
}

.component-block__label span {
  font-weight: 700;
}

.component-block__label code {
  color: var(--muted);
  font-size: 10px;
}

.component-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  align-items: center;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 24px;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 120ms var(--ease-out);
}

.button:active:not(:disabled) {
  transform: scale(.985);
}

.button--primary {
  background: var(--blue);
  color: var(--paper);
}

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

.button--secondary {
  background: var(--paper);
  border: 1px solid var(--line-strong);
}

.button--secondary:hover {
  border-color: var(--ink);
}

.button--quiet {
  background: var(--mist);
}

.button--quiet:hover {
  background: var(--blue-tint);
  color: var(--blue-dark);
}

.button--small {
  font-size: 12px;
  gap: 14px;
  min-height: 42px;
  padding: 0 16px;
}

.button:disabled {
  background: var(--line);
  color: var(--muted);
  cursor: not-allowed;
  transform: none;
}

.text-link {
  align-items: center;
  color: var(--blue-dark);
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.text-link:hover {
  text-decoration-color: currentColor;
}

.text-link > span[aria-hidden="true"],
.button > span[aria-hidden="true"] {
  font-family: Arial, sans-serif;
  font-variant-emoji: text;
}

.text-link--inverse {
  color: var(--paper);
}

.utility-link {
  font-family: var(--font-mono);
  font-size: 12px;
  text-underline-offset: 4px;
}

.tag {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 7px 11px;
}

.tag--active {
  background: var(--blue-tint);
  border-color: #c9d8ff;
  color: var(--blue-dark);
}

.tag--inverse {
  background: rgb(255 255 255 / 8%);
  border-color: rgb(255 255 255 / 20%);
  color: var(--paper);
}

.form-specimen {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 40px;
}

.form-grid {
  display: grid;
  gap: 32px 24px;
  grid-template-columns: 1fr 1fr;
}

.field {
  display: flex;
  flex-direction: column;
  position: relative;
}

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

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

.field label {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 9px;
}

.field input,
.field select,
.field textarea {
  appearance: none;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-size: 15px;
  min-height: 52px;
  padding: 13px 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
  width: 100%;
}

.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 18px) 22px, calc(100% - 13px) 22px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  padding-right: 44px;
}

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

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--muted);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-tint);
  outline: 0;
}

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

.field__help,
.field__count {
  color: var(--muted);
  font-size: 11px;
  margin-top: 7px;
}

.field__count {
  bottom: 10px;
  position: absolute;
  right: 12px;
}

.check-field {
  align-items: flex-start;
  cursor: pointer;
  display: flex;
  gap: 12px;
}

.check-field input {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.check-field__control {
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  display: inline-flex;
  flex: 0 0 auto;
  height: 22px;
  justify-content: center;
  margin-top: 2px;
  width: 22px;
}

.check-field input:checked + .check-field__control {
  background: var(--blue);
  border-color: var(--blue);
}

.check-field input:checked + .check-field__control::after {
  border: solid var(--paper);
  border-width: 0 2px 2px 0;
  content: "";
  height: 8px;
  transform: rotate(45deg) translate(-1px, -1px);
  width: 4px;
}

.check-field input:focus-visible + .check-field__control {
  outline: 2px solid var(--paper);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px var(--blue);
}

.check-field strong,
.check-field small {
  display: block;
}

.check-field strong {
  font-size: 13px;
}

.check-field small {
  color: var(--muted);
  font-size: 11px;
  margin-top: 3px;
}

.form-specimen__footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 24px;
}

.form-specimen__footer p {
  color: var(--muted);
  font-size: 11px;
  max-width: 340px;
}

.form-specimen__footer strong {
  color: var(--ink-soft);
}

.nav-specimen {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto 1fr;
  padding: 16px;
}

.nav-specimen nav {
  display: flex;
  gap: 24px;
}

.nav-specimen nav a {
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.nav-specimen nav a:hover {
  color: var(--blue);
}

.nav-specimen > .button {
  justify-self: end;
}

.breadcrumb {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-family: var(--font-mono);
  font-size: 10px;
  gap: 10px;
  margin-top: 24px;
}

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

.subsection-heading {
  align-items: baseline;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin: 80px 0 28px;
  padding-top: 20px;
}

.subsection-heading:first-of-type {
  margin-top: 0;
}

.subsection-heading h3 {
  font-size: 1rem;
}

.subsection-heading p {
  color: var(--muted);
  font-size: 12px;
  max-width: 420px;
  text-align: right;
}

.service-grid,
.results-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 24px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.service-card:hover {
  border-color: var(--blue);
}

.service-card--active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--paper);
}

.service-card__meta {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 10px;
}

.service-card--active .service-card__meta {
  color: #cfdbff;
}

.service-card h3 {
  margin: auto 0 16px;
}

.service-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.service-card--active p {
  color: #dce5ff;
}

.service-card > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.service-card > div span {
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 9px;
  padding-top: 8px;
}

.service-card--active > div span {
  border-color: rgb(255 255 255 / 35%);
}

.result-card {
  border-top: 3px solid var(--blue);
  padding: 28px 0 16px;
}

.result-card__value {
  font-size: clamp(3.25rem, 7vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 1;
}

.result-card p {
  font-size: 14px;
  font-weight: 700;
  margin-top: 24px;
}

.result-card small {
  color: var(--muted);
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  margin-top: 4px;
  text-transform: uppercase;
}

.case-card {
  background: var(--ink);
  border-radius: var(--radius-md);
  color: var(--paper);
  overflow: hidden;
  padding: 32px;
}

.case-card__top,
.case-card__footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.case-card__period {
  color: #8c96a5;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.case-card__body {
  align-items: end;
  display: grid;
  gap: 64px;
  grid-template-columns: 1.2fr .8fr;
  padding: 96px 0 64px;
}

.eyebrow--inverse {
  color: #91adff;
}

.case-card__body h3 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  margin-top: 20px;
}

.case-card__body > p {
  color: #aeb7c4;
  font-size: 15px;
}

.case-card__footer {
  border-top: 1px solid rgb(255 255 255 / 18%);
  color: #aeb7c4;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 10px;
  gap: 16px 32px;
  padding-top: 20px;
  text-transform: uppercase;
}

.case-card__footer a {
  color: var(--paper);
}

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

.process-list li {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 32px;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  padding: 28px 0;
}

.process-list li > span,
.process-list li > small {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.process-list li > small {
  color: var(--muted);
}

.process-list h3 {
  font-size: 1.15rem;
  margin-bottom: 5px;
}

.process-list p {
  color: var(--muted);
  font-size: 13px;
}

.founder-card {
  align-items: end;
  background: var(--mist);
  border-radius: var(--radius-md);
  display: grid;
  gap: 32px;
  grid-template-columns: 160px minmax(0, 1fr) auto;
  padding: 32px;
}

.founder-card__monogram {
  align-items: center;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  font-family: var(--font-mono);
  font-size: 18px;
  height: 160px;
  justify-content: center;
  width: 160px;
}

.founder-card__copy h3 {
  font-size: 2rem;
  margin: 14px 0;
}

.founder-card__copy p {
  color: var(--muted);
  font-size: 13px;
  max-width: 580px;
}

.feedback-stack {
  display: grid;
  gap: 12px;
}

.notice {
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  display: flex;
  gap: 14px;
  padding: 18px;
}

.notice--info { background: var(--blue-tint); border-color: #c9d8ff; }
.notice--success { background: var(--success-tint); border-color: #b9e8d5; }
.notice--error { background: var(--error-tint); border-color: #f3c3c8; }

.notice__icon {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--blue-dark);
  display: inline-flex;
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 10px;
  height: 22px;
  justify-content: center;
  width: 22px;
}

.notice--success .notice__icon { color: var(--success); }
.notice--error .notice__icon { color: var(--error); }
.notice strong { font-size: 13px; }
.notice p { color: var(--muted); font-size: 12px; margin-top: 2px; }

.accordion-group {
  border-top: 1px solid var(--line);
  margin-top: 64px;
}

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

.accordion-group summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 15px;
  font-weight: 700;
  justify-content: space-between;
  list-style: none;
  padding: 22px 0;
}

.accordion-group summary::-webkit-details-marker { display: none; }

.accordion-group summary span {
  height: 18px;
  position: relative;
  width: 18px;
}

.accordion-group summary span::before,
.accordion-group summary span::after {
  background: var(--ink);
  content: "";
  height: 1px;
  left: 2px;
  position: absolute;
  top: 8px;
  transition: transform 180ms ease;
  width: 14px;
}

.accordion-group summary span::after { transform: rotate(90deg); }
.accordion-group details[open] summary span::after { transform: rotate(0); }
.accordion-group details > div { color: var(--muted); font-size: 13px; max-width: 680px; padding: 0 0 24px; }

.signal-specimen {
  background: var(--ink);
  border-radius: var(--radius-md);
  color: var(--paper);
  overflow: hidden;
  padding: 32px;
}

.signal-specimen__header {
  align-items: start;
  display: flex;
  justify-content: space-between;
}

.signal-specimen__header p {
  color: #aeb7c4;
  font-size: 12px;
  max-width: 320px;
  text-align: right;
}

.signal-path {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
  margin: 108px 0 88px;
  position: relative;
}

.signal-path__line {
  background: #323946;
  height: 1px;
  left: 12px;
  position: absolute;
  right: 12px;
  top: 11px;
}

.signal-path__line span {
  animation: signal-travel 3.2s linear infinite;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgb(20 87 255 / 20%), 0 0 30px rgb(20 87 255 / 80%);
  height: 9px;
  left: 0;
  position: absolute;
  top: -4px;
  width: 9px;
}

@keyframes signal-travel {
  0% { left: 0; opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.signal-path article {
  position: relative;
}

.signal-path article > span {
  align-items: center;
  background: var(--ink);
  border: 1px solid #4b5565;
  border-radius: 50%;
  display: flex;
  font-family: var(--font-mono);
  font-size: 8px;
  height: 23px;
  justify-content: center;
  margin-bottom: 32px;
  position: relative;
  width: 23px;
  z-index: 1;
}

.signal-path h3 {
  font-size: 1.1rem;
}

.signal-path p {
  color: #8c96a5;
  font-family: var(--font-mono);
  font-size: 9px;
  margin-top: 8px;
  text-transform: uppercase;
}

.signal-specimen__rule {
  border-top: 1px solid #323946;
  color: #8c96a5;
  display: flex;
  font-family: var(--font-mono);
  font-size: 9px;
  justify-content: space-between;
  padding-top: 18px;
  text-transform: uppercase;
}

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

.standards-grid article {
  border-left: 1px solid var(--line);
  min-height: 220px;
  padding: 0 28px 28px;
}

.standards-grid article:nth-child(3n + 1) {
  border-left: 0;
  padding-left: 0;
}

.standards-grid article:nth-child(n + 4) {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.standards-grid article > span {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 10px;
}

.standards-grid h3 {
  font-size: 1.1rem;
  margin: 64px 0 12px;
}

.standards-grid p {
  color: var(--muted);
  font-size: 12px;
}

.guide-footer {
  background: var(--ink);
  color: var(--paper);
  display: grid;
  gap: 40px;
  grid-template-columns: 1.5fr 1fr 1fr;
  padding: 64px max(48px, calc((100vw - 232px - var(--content-max)) / 2 + 48px));
}

.guide-footer > div {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}

.guide-footer p,
.guide-footer > div > span {
  color: #8c96a5;
  font-family: var(--font-mono);
  font-size: 9px;
  margin-top: 20px;
  text-transform: uppercase;
}

.guide-footer > div > span {
  margin: 0 0 12px;
}

.guide-footer > div > a:not(.brand) {
  font-family: var(--font-mono);
  font-size: 11px;
  text-underline-offset: 4px;
}

.toast {
  align-items: flex-start;
  background: var(--ink);
  border: 1px solid #323946;
  border-radius: var(--radius-md);
  bottom: 24px;
  box-shadow: var(--shadow);
  color: var(--paper);
  display: flex;
  gap: 12px;
  max-width: 390px;
  opacity: 0;
  padding: 16px;
  pointer-events: none;
  position: fixed;
  right: 24px;
  transform: translateY(16px);
  transition: opacity 220ms ease, transform 220ms var(--ease-out);
  width: calc(100% - 48px);
  z-index: 50;
}

.toast.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toast__icon {
  align-items: center;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  flex: 0 0 auto;
  font-size: 10px;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.toast strong { font-size: 12px; }
.toast p { color: #aeb7c4; font-size: 11px; margin-top: 2px; }
.toast__close { color: var(--paper); font-size: 20px; margin-left: auto; }

@media (max-width: 1080px) {
  .guide-shell { grid-template-columns: 1fr; }
  .guide-sidebar {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    border-right: 0;
    display: none;
    height: auto;
    left: 0;
    max-height: calc(100vh - 72px);
    position: fixed;
    right: 0;
    top: 72px;
    z-index: 20;
  }
  .guide-sidebar.is-open { display: block; }
  .mobile-menu-button { display: inline-flex; }
  .guide-intro, .guide-section { padding-left: 32px; padding-right: 32px; }
  .principle-grid { grid-template-columns: 1fr 1fr; }
  .principle-card { border: 1px solid var(--line); }
  .principle-card:first-child { border-radius: var(--radius-md) 0 0 0; }
  .principle-card:nth-child(2) { border-radius: 0 var(--radius-md) 0 0; }
  .principle-card:nth-child(3) { border-radius: 0 0 0 var(--radius-md); }
  .principle-card:last-child { border-radius: 0 0 var(--radius-md) 0; }
  .swatch-grid { grid-template-columns: repeat(3, 1fr); gap: 32px 16px; }
  .guide-footer { padding-left: 32px; padding-right: 32px; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 80px; }
  .utility-bar { height: 64px; padding: 0 20px; }
  .status { display: none; }
  .guide-shell { margin-top: 64px; }
  .guide-sidebar { top: 64px; }
  .guide-intro, .guide-section { padding-left: 20px; padding-right: 20px; }
  .guide-intro { grid-template-columns: 1fr; padding-bottom: 64px; padding-top: 64px; }
  .guide-intro h1 { font-size: clamp(3.6rem, 18vw, 6rem); margin-top: 28px; }
  .guide-section { padding-bottom: 88px; padding-top: 88px; }
  .section-heading { grid-template-columns: 1fr; margin-bottom: 48px; }
  .section-index { margin-bottom: 8px; }
  .principle-grid, .usage-grid, .identity-grid, .service-grid, .results-grid, .standards-grid { grid-template-columns: 1fr; }
  .principle-card { border-radius: 0 !important; min-height: 280px; }
  .principle-card:first-child { border-radius: var(--radius-md) var(--radius-md) 0 0 !important; }
  .principle-card:last-child { border-radius: 0 0 var(--radius-md) var(--radius-md) !important; }
  .swatch-grid { grid-template-columns: 1fr 1fr; }
  .type-family-card { align-items: flex-start; flex-direction: column; gap: 24px; }
  .type-weights { text-align: left; }
  .type-row { gap: 16px; grid-template-columns: 54px minmax(0, 1fr); }
  .type-row code { display: none; }
  .type-display { font-size: 3.1rem; }
  .type-h1 { font-size: 2.8rem; }
  .type-h2 { font-size: 2.15rem; }
  .spacing-demo { grid-template-columns: repeat(4, 1fr); row-gap: 40px; }
  .shape-grid { grid-template-columns: 1fr 1fr; }
  .layout-grid-demo { gap: 6px; height: 220px; }
  .domain-lockup { font-size: 2.8rem; padding: 48px 20px 24px; }
  .component-block__label { align-items: flex-start; flex-direction: column; gap: 4px; }
  .component-row { align-items: stretch; flex-direction: column; }
  .component-row .button { width: 100%; }
  .form-specimen { padding: 24px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--wide { grid-column: auto; }
  .form-specimen__footer { align-items: stretch; flex-direction: column; gap: 20px; }
  .nav-specimen { grid-template-columns: 1fr auto; }
  .nav-specimen nav { display: none; }
  .subsection-heading { align-items: flex-start; flex-direction: column; gap: 8px; }
  .subsection-heading p { text-align: left; }
  .case-card { padding: 24px 20px; }
  .case-card__body { gap: 32px; grid-template-columns: 1fr; padding: 72px 0 48px; }
  .process-list li { align-items: start; gap: 16px; grid-template-columns: 38px 1fr; }
  .process-list li > small { display: none; }
  .founder-card { align-items: start; grid-template-columns: 1fr; padding: 24px 20px; }
  .founder-card__monogram { height: 80px; width: 80px; }
  .signal-specimen { padding: 24px 20px; }
  .signal-specimen__header { flex-direction: column; gap: 16px; }
  .signal-specimen__header p { text-align: left; }
  .signal-path { gap: 28px; grid-template-columns: 1fr; margin: 64px 0; padding-left: 12px; }
  .signal-path__line { bottom: 0; height: auto; left: 23px; right: auto; top: 11px; width: 1px; }
  .signal-path__line span { animation-name: signal-travel-vertical; left: -4px; top: 0; }
  @keyframes signal-travel-vertical { 0% { opacity: 0; top: 0; } 8% { opacity: 1; } 92% { opacity: 1; } 100% { opacity: 0; top: 100%; } }
  .signal-path article { padding-left: 48px; }
  .signal-path article > span { left: -48px; margin: 0; position: absolute; top: 0; }
  .signal-specimen__rule { flex-direction: column; gap: 8px; }
  .standards-grid article, .standards-grid article:nth-child(3n + 1), .standards-grid article:nth-child(n + 4) { border-left: 0; border-top: 1px solid var(--line); min-height: 0; padding: 24px 0; }
  .standards-grid h3 { margin: 36px 0 12px; }
  .guide-footer { grid-template-columns: 1fr; padding: 48px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}

/* Homepage --------------------------------------------------------------- */

.site-page {
  overflow-x: hidden;
}

.home-shell {
  margin: 0 auto;
  max-width: var(--content-max);
  padding-left: 48px;
  padding-right: 48px;
}

.site-header {
  background: transparent;
  border-bottom: 1px solid transparent;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: background 240ms var(--ease-out), border-color 240ms var(--ease-out);
  z-index: 50;
}

.site-header.is-scrolled {
  background: var(--paper);
  border-color: var(--line);
}

.site-header__inner {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 80px;
  margin: 0 auto;
  max-width: var(--content-max);
  padding: 0 48px;
}

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

.site-nav > a,
.site-nav__dropdown-trigger {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
  transition: color 200ms ease;
}

.site-nav > a:hover,
.site-nav__dropdown-trigger:hover,
.site-nav__dropdown-trigger[aria-expanded="true"] {
  color: var(--blue);
}

.site-nav__dropdown {
  position: relative;
}

.site-nav__dropdown-trigger {
  align-items: center;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  gap: 6px;
  padding: 8px 0;
}

.site-nav__chevron svg {
  fill: none;
  height: 12px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  width: 12px;
}

.site-nav__dropdown-track,
.site-nav__dropdown-track-inner {
  display: block;
}

.site-nav__dropdown-track-inner {
  filter: none;
  opacity: 1;
  overflow: visible;
  transition: none;
}

.site-nav__dropdown-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  left: 50%;
  min-width: 280px;
  padding: 8px;
  position: absolute;
  top: calc(100% + 14px);
  translate: -50% 0;
}

.site-nav__dropdown-panel::before {
  content: "";
  height: 15px;
  left: 0;
  position: absolute;
  right: 0;
  top: -15px;
}

.site-header .site-nav__dropdown-panel a {
  border: 0;
  color: var(--ink-soft);
  display: grid;
  gap: 2px;
  padding: 12px;
  text-decoration: none;
  transition: background 150ms ease, color 150ms ease;
}

.site-header .site-nav__dropdown-panel a:hover,
.site-header .site-nav__dropdown-panel a:focus-visible {
  background: var(--blue-tint);
  color: var(--blue-dark);
}

.site-nav__dropdown-panel strong {
  font-size: 13px;
  font-weight: 700;
}

.site-nav__dropdown-panel span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.site-nav__mobile-cta {
  display: none;
}

.t-dropdown {
  transform-origin: top left;
  transform: scale(var(--dropdown-pre-scale));
  opacity: 0;
  pointer-events: none;
  transition:
    transform var(--dropdown-open-dur) var(--dropdown-ease),
    opacity   var(--dropdown-open-dur) var(--dropdown-ease);
  will-change: transform, opacity;
}
.t-dropdown[data-origin="top-right"]     { transform-origin: top right; }
.t-dropdown[data-origin="top-center"]    { transform-origin: top center; }
.t-dropdown[data-origin="bottom-left"]   { transform-origin: bottom left; }
.t-dropdown[data-origin="bottom-center"] { transform-origin: bottom center; }
.t-dropdown[data-origin="bottom-right"]  { transform-origin: bottom right; }

.t-dropdown.is-open {
  transform: scale(1);
  opacity: 1;
  pointer-events: auto;
}
.t-dropdown.is-closing {
  transform: scale(var(--dropdown-closing-scale));
  opacity: 0;
  pointer-events: none;
  transition:
    transform var(--dropdown-close-dur) var(--dropdown-ease),
    opacity   var(--dropdown-close-dur) var(--dropdown-ease);
}

.t-acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--acc-collapse) var(--acc-ease);
}
.t-acc[data-open="true"] .t-acc-panel {
  grid-template-rows: 1fr;
  transition: grid-template-rows var(--acc-expand) var(--acc-ease);
}
.t-acc-panel-inner {
  overflow: hidden;
  opacity: 0;
  filter: blur(2px);
  transition:
    opacity var(--acc-collapse) var(--acc-ease),
    filter var(--acc-collapse) var(--acc-ease);
}
.t-acc[data-open="true"] .t-acc-panel-inner {
  opacity: 1;
  filter: blur(0);
  transition:
    opacity var(--acc-expand) var(--acc-ease),
    filter var(--acc-expand) var(--acc-ease);
}
.t-acc-chevron {
  display: inline-flex;
  transform: scaleY(1);
  transform-origin: center;
  transition: transform var(--acc-chevron) var(--acc-ease);
}
.t-acc-chevron path { vector-effect: non-scaling-stroke; }
.t-acc[data-open="true"] .t-acc-chevron {
  transform: scaleY(-1);
}

@media (prefers-reduced-motion: reduce) {
  .t-dropdown { transition: none !important; }
  .t-acc-panel, .t-acc-panel-inner, .t-acc-chevron {
    transition: none !important;
  }
}

@media (min-width: 861px) {
  .site-nav__dropdown-track {
    display: block;
    grid-template-rows: none;
    transition: none;
  }

  .site-nav__dropdown-track-inner,
  .site-nav__dropdown[data-open="true"] .site-nav__dropdown-track-inner {
    filter: none;
    opacity: 1;
    overflow: visible;
    transition: none;
  }
}

.site-header__cta {
  justify-self: end;
}

.site-header .brand__mark,
.site-header .brand__name,
.site-header .site-header__cta,
.site-header .site-menu-button {
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}

.site-header:not(.is-scrolled) .brand__mark {
  background: var(--paper);
  color: var(--blue);
}

.site-header:not(.is-scrolled) .brand__name,
.site-header:not(.is-scrolled) .site-nav > a,
.site-header:not(.is-scrolled) .site-nav__dropdown-trigger,
.site-header:not(.is-scrolled) .site-menu-button {
  color: var(--paper);
}

.site-header:not(.is-scrolled) .site-nav > a:hover,
.site-header:not(.is-scrolled) .site-nav__dropdown-trigger:hover,
.site-header:not(.is-scrolled) .site-nav__dropdown-trigger[aria-expanded="true"] {
  color: #a9c1ff;
}

.site-header:not(.is-scrolled) .site-header__cta {
  background: var(--paper);
  color: var(--ink);
}

.site-header:not(.is-scrolled) .site-header__cta:hover {
  background: var(--blue-tint);
}

.site-menu-button {
  display: none;
}

.home-hero {
  background: #02050c;
  border-bottom: 1px solid #16223a;
  color: var(--paper);
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.home-hero::before {
  background:
    radial-gradient(circle at 50% 38%, rgb(2 5 12 / 22%) 0, rgb(2 5 12 / 54%) 38%, rgb(2 5 12 / 10%) 67%),
    linear-gradient(180deg, rgb(2 5 12 / 40%) 0, transparent 42%, rgb(2 5 12 / 8%) 72%, rgb(2 5 12 / 34%) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.home-hero__grid {
  align-items: center;
  display: flex;
  height: 66.666svh;
  justify-content: center;
  padding-top: 80px;
  position: relative;
  width: 100%;
  z-index: 2;
}

.home-hero__copy {
  max-width: 1080px;
  text-align: center;
}

/* Lines start translated down + blurred + invisible; .is-shown
   on the parent flips them to their resting state. The second
   line's transition-delay holds it back by --stagger-stagger
   so the eye lands on the headline first. */
.t-stagger-line {
  display: block;
  opacity: 0;
  transform: translateY(var(--stagger-distance));
  filter: blur(var(--stagger-blur));
  transition:
    opacity   var(--stagger-dur) var(--stagger-ease),
    transform var(--stagger-dur) var(--stagger-ease),
    filter    var(--stagger-dur) var(--stagger-ease);
  will-change: transform, opacity, filter;
}
.t-stagger-line--2 { transition-delay: var(--stagger-stagger); }

.t-stagger.is-shown .t-stagger-line {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
/* Exit decouples from the stagger: same fade for every line,
   no Y return, no blur, so the disappearance reads as a
   single quiet fade instead of a reverse reveal. */
.t-stagger.is-hiding .t-stagger-line {
  opacity: 0;
  transform: translateY(0);
  filter: blur(0);
  transition:
    opacity 200ms ease,
    transform 0s linear,
    filter 0s linear;
  transition-delay: 0s;
}

.home-hero h1 {
  color: var(--paper);
  font-size: clamp(3.5rem, 5.8vw, 6.5rem);
  font-weight: 750;
  letter-spacing: -0.075em;
  line-height: .88;
  margin-left: auto;
  margin-right: auto;
  max-width: 940px;
  text-shadow: 0 3px 32px rgb(0 0 0 / 36%);
}

.home-hero__lede {
  color: #d5def1;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  letter-spacing: -0.018em;
  line-height: 1.6;
  margin: clamp(44px, 6vh, 64px) auto 0;
  max-width: 760px;
  text-shadow: 0 2px 18px rgb(0 0 0 / 48%);
}

.hero-landscape {
  background: #02050c;
  inset: 0;
  overflow: hidden;
  position: absolute;
}

.hero-landscape::after {
  background: linear-gradient(180deg, rgb(2 5 12 / 8%), transparent 54%, rgb(5 31 105 / 10%));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-landscape__fallback,
.hero-landscape__canvas {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-landscape__fallback {
  filter: grayscale(1) sepia(1) hue-rotate(175deg) saturate(5) brightness(.55) contrast(1.3);
}

.hero-landscape__canvas {
  opacity: 0;
  transition: opacity 500ms ease;
}

.hero-landscape__canvas.is-ready {
  opacity: 1;
}

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

.proof-band__grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  padding-bottom: 0;
  padding-top: 0;
}

.proof-band__grid > * {
  border-left: 1px solid var(--line);
  min-height: 184px;
  padding: 28px;
}

.proof-band__grid > :last-child {
  border-right: 1px solid var(--line);
}

.proof-band__intro {
  align-items: flex-end;
  color: var(--muted);
  display: flex;
  font-size: 13px;
  max-width: 280px;
}

.proof-band article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.proof-band strong {
  font-size: clamp(2.7rem, 4vw, 4.5rem);
  letter-spacing: -0.075em;
  line-height: 1;
}

.proof-band article span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  max-width: 160px;
}

.home-section {
  padding: 144px 0;
}

.home-section__heading {
  align-items: end;
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
  margin-bottom: 72px;
}

.home-section__heading h2,
.proximity-heading h2,
.case-study-heading h2,
.assessment-copy h2 {
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: .98;
}

.home-section__heading > p,
.case-study-heading > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.home-service-grid {
  display: flex;
  min-height: clamp(674px, calc(1065px - 36vw), 740px);
}

.home-service-card {
  border: 1px solid var(--line);
  border-right: 0;
  display: flex;
  flex: 0 1 calc(100% / 3);
  flex-direction: column;
  min-width: 0;
  padding: 28px;
  transition:
    background 360ms var(--ease-out),
    border-color 360ms var(--ease-out),
    color 360ms var(--ease-out),
    flex-grow 360ms var(--ease-out),
    flex-basis 360ms var(--ease-out);
}

.home-service-card:first-child {
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.home-service-card:last-child {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  border-right: 1px solid var(--line);
}

.home-service-grid:has(.home-service-card:focus-visible) .home-service-card:not(:focus-visible),
.home-service-grid:has(.home-service-card.is-active) .home-service-card:not(.is-active) {
  flex-basis: 25%;
}

.home-service-card:focus-visible,
.home-service-card.is-active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--paper);
  flex-basis: 50%;
  outline-offset: -4px;
}

.home-service-card__top {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-family: var(--font-mono);
  font-size: 9px;
}

.home-service-card:focus-visible .home-service-card__top,
.home-service-card.is-active .home-service-card__top {
  color: #d4dfff;
}

.home-service-card__summary {
  display: flex;
  flex-direction: column;
  min-height: 196px;
}

.home-service-card h3 {
  font-size: clamp(1.65rem, 2.5vw, 2.4rem);
  margin-bottom: 20px;
  max-width: 330px;
}

.home-service-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.home-service-card:focus-visible p,
.home-service-card.is-active p {
  color: #dce5ff;
}

.home-service-card__expanded {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  min-height: 0;
  opacity: 0;
  transition: opacity 180ms ease, visibility 0s linear 180ms;
  visibility: hidden;
}

.home-service-card__expanded-inner {
  max-width: 540px;
  overflow: hidden;
  width: 100%;
}

.home-service-card__detail {
  color: #dce5ff;
  display: none;
  font-size: 12px !important;
  line-height: 1.65;
  margin-top: 12px;
}

.home-service-card:focus-visible .home-service-card__expanded,
.home-service-card.is-active .home-service-card__expanded {
  opacity: 1;
  transition: opacity 220ms ease 120ms, visibility 0s linear 0s;
  visibility: visible;
}

.home-service-card[aria-expanded="true"] .home-service-card__detail {
  display: block;
}

.service-graphic {
  display: block;
  fill: none;
  margin: 24px 0 18px;
  max-height: 190px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  width: 100%;
}

.service-graphic__frame {
  stroke: rgb(255 255 255 / 64%);
}

.service-graphic__panel {
  fill: rgb(255 255 255 / 9%);
}

.service-graphic__soft {
  fill: rgb(255 255 255 / 5%);
  stroke: rgb(255 255 255 / 42%);
}

.service-graphic__guide {
  opacity: .46;
  stroke-dasharray: 4 7;
}

.service-graphic__node {
  fill: rgb(255 255 255 / 18%);
}

.service-graphic__signal,
.service-graphic__accent {
  fill: var(--paper);
  stroke: var(--paper);
}

.service-graphic__paper {
  stroke: var(--blue);
}

.service-graphic__paper-fill {
  fill: var(--blue);
  stroke: var(--blue);
}

.home-service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  list-style: none;
  margin: 36px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
}

.home-service-card:focus-visible ul,
.home-service-card.is-active ul {
  border-color: rgb(255 255 255 / 30%);
}

@media (hover: hover) and (pointer: fine) {
  .home-service-grid:has(.home-service-card:hover) .home-service-card:not(:hover) {
    flex-basis: 25%;
  }

  .home-service-card:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--paper);
    flex-basis: 50%;
  }

  .home-service-card:hover .home-service-card__top { color: #d4dfff; }
  .home-service-card:hover p { color: #dce5ff; }
  .home-service-card:hover .home-service-card__expanded {
    opacity: 1;
    transition: opacity 220ms ease 100ms, visibility 0s linear 0s;
    visibility: visible;
  }
  .home-service-card:hover ul { border-color: rgb(255 255 255 / 30%); }
}

.home-service-card li {
  font-family: var(--font-mono);
  font-size: 9px;
}

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

.proximity-grid {
  display: grid;
  gap: 100px;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
}

.proximity-heading h2 {
  max-width: 740px;
}

.proximity-copy__lead {
  color: var(--ink-soft);
  font-size: 1.16rem;
  letter-spacing: -0.015em;
  line-height: 1.65;
}

.proximity-points {
  border-top: 1px solid var(--line-strong);
  margin-top: 48px;
}

.proximity-points article {
  border-bottom: 1px solid var(--line-strong);
  display: grid;
  gap: 24px;
  grid-template-columns: 160px 1fr;
  padding: 20px 0;
}

.proximity-points h3 {
  font-size: 13px;
}

.proximity-points p {
  color: var(--muted);
  font-size: 12px;
}

.approach-section {
  background: var(--ink);
  color: var(--paper);
}

.home-section__heading--inverse > p {
  color: #aeb7c4;
}

.approach-split {
  border: 1px solid #323946;
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: minmax(260px, .68fr) minmax(0, 1.32fr);
  min-height: 660px;
  overflow: hidden;
}

.approach-tabs {
  border-right: 1px solid #323946;
  display: flex;
  flex-direction: column;
}

.approach-tab {
  align-items: center;
  background: transparent;
  border-bottom: 1px solid #323946;
  color: #aeb7c4;
  cursor: pointer;
  display: grid;
  flex: 1 1 0;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 24px;
  text-align: left;
  transition: background 180ms ease, color 180ms ease;
}

.approach-tab:last-child {
  border-bottom: 0;
}

.approach-tab:hover {
  background: rgb(255 255 255 / 4%);
  color: var(--paper);
}

.approach-tab.is-active {
  background: var(--blue);
  color: var(--paper);
}

.approach-tab > small {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
}

.approach-tab > strong {
  font-size: 13px;
}

.approach-tab > small {
  color: inherit;
  opacity: .7;
}

.approach-tabs[data-motion-ready] .approach-tab {
  opacity: 0;
  transform: translateY(8px);
  transition:
    background 180ms ease,
    color 180ms ease,
    opacity 280ms var(--ease-out),
    transform 280ms var(--ease-out);
}

.approach-tabs[data-motion-ready] .approach-tab:nth-child(1) { transition-delay: 0ms; }
.approach-tabs[data-motion-ready] .approach-tab:nth-child(2) { transition-delay: 50ms; }
.approach-tabs[data-motion-ready] .approach-tab:nth-child(3) { transition-delay: 100ms; }
.approach-tabs[data-motion-ready] .approach-tab:nth-child(4) { transition-delay: 150ms; }

.approach-tabs[data-motion-ready].is-visible .approach-tab {
  opacity: 1;
  transform: translateY(0);
}

.approach-panels {
  display: grid;
  min-width: 0;
  position: relative;
}

.approach-panel {
  align-content: space-between;
  display: grid;
  grid-area: 1 / 1;
  grid-template-rows: minmax(260px, 1fr) auto;
  opacity: 1;
  padding: 36px;
  transform: scale(1);
  transition: opacity 260ms var(--ease-out), transform 260ms var(--ease-out);
}

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

@starting-style {
  .approach-panel:not([hidden]) {
    opacity: 0;
    transform: scale(.985);
  }
}

.approach-graphic {
  align-self: center;
  fill: none;
  max-height: 300px;
  stroke: #687386;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
  width: 100%;
}

.approach-graphic__frame {
  stroke: #536176;
}

.approach-graphic__guide {
  opacity: .32;
  stroke-dasharray: 5 8;
}

.approach-graphic__soft {
  fill: rgb(20 87 255 / 10%);
  stroke: #66738a;
}

.approach-graphic__paper,
.approach-graphic__node {
  fill: rgb(255 255 255 / 4%);
  stroke: #687386;
}

.approach-graphic__node {
  fill: rgb(20 87 255 / 13%);
}

.approach-graphic__signal {
  stroke: #91adff;
}

.approach-graphic__accent {
  fill: var(--blue);
  stroke: var(--blue);
}

.approach-panel__copy {
  border-top: 1px solid #323946;
  display: grid;
  gap: 18px 28px;
  grid-template-columns: 100px minmax(0, 1fr);
  padding-top: 28px;
}

.approach-panel__copy > span {
  color: #91adff;
  font-family: var(--font-mono);
  font-size: 9px;
  grid-row: span 3;
}

.approach-panel__copy h3 {
  font-size: clamp(1.65rem, 2.5vw, 2.5rem);
}

.approach-panel__copy p {
  color: #aeb7c4;
  font-size: 13px;
  max-width: 700px;
}

.approach-panel__copy ul {
  color: #d4d9e1;
  display: flex;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 9px;
  gap: 8px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.case-study-heading {
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
}

.case-study-measures {
  border-top: 1px solid var(--ink);
  margin-top: 88px;
}

.case-study-measures article {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(180px, .35fr) minmax(0, .65fr);
  padding: 32px 0;
}

.case-study-measures strong {
  color: var(--blue);
  font-size: clamp(4rem, 8vw, 8rem);
  letter-spacing: -0.09em;
  line-height: .9;
}

.case-study-measures h3 {
  font-size: clamp(1.4rem, 2.4vw, 2.25rem);
  margin-bottom: 10px;
}

.case-study-measures p {
  color: var(--muted);
  font-size: 13px;
}

.case-study-note {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
  margin-top: 24px;
}

.founder-section {
  background: var(--mist);
  border-top: 1px solid var(--line);
}

.founder-grid {
  align-items: stretch;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
}

.founder-photo {
  align-self: start;
  aspect-ratio: 2 / 3;
  border-radius: var(--radius-md);
  margin: 0;
  overflow: hidden;
  width: 100%;
}

.founder-photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.founder-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.founder-statement p {
  font-size: clamp(2.35rem, 4vw, 4.35rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1.02;
  max-width: 900px;
  text-wrap: balance;
}

.founder-copy {
  border-top: 1px solid var(--line-strong);
  display: grid;
  gap: 18px 48px;
  grid-template-columns: minmax(180px, .55fr) minmax(0, 1.45fr);
  margin-top: 64px;
  padding-top: 30px;
}

.founder-copy h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  grid-row: span 3;
}

.founder-copy > p {
  color: var(--muted);
  font-size: 13px;
}

.founder-copy__lead {
  color: var(--ink-soft) !important;
  font-size: 1.1rem !important;
}

.founder-copy .text-link {
  margin-top: 10px;
}

.assessment-section {
  background: var(--blue);
  color: var(--paper);
  padding: 144px 0;
}

.assessment-grid {
  align-items: start;
  display: grid;
  gap: 100px;
  grid-template-columns: minmax(0, .85fr) minmax(480px, 1.15fr);
}

.assessment-copy > p {
  color: #dce5ff;
  font-size: 1.05rem;
  margin-top: 32px;
  max-width: 600px;
}

.assessment-copy dl {
  border-top: 1px solid rgb(255 255 255 / 30%);
  margin-top: 56px;
}

.assessment-copy dl > div {
  border-bottom: 1px solid rgb(255 255 255 / 30%);
  display: grid;
  gap: 20px;
  grid-template-columns: 100px 1fr;
  padding: 16px 0;
}

.assessment-copy dt {
  color: #b9caff;
  font-family: var(--font-mono);
  font-size: 9px;
}

.assessment-copy dd {
  font-size: 12px;
}

.assessment-form {
  background: var(--paper);
  border-radius: var(--radius-md);
  color: var(--ink);
  padding: 36px;
}

.assessment-form__heading {
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
  padding-bottom: 28px;
}

.assessment-form__heading h3 {
  font-size: 1.6rem;
}

.assessment-form__heading p {
  color: var(--muted);
  font-size: 12px;
  margin-top: 8px;
}

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

.assessment-form__footer > a {
  color: var(--muted);
  font-size: 10px;
  text-underline-offset: 3px;
}

.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 72px 0 24px;
}

.site-footer__grid {
  display: grid;
  gap: 64px;
  grid-template-columns: 1.6fr .7fr .7fr;
}

.site-footer__grid > div {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}

.site-footer__grid > div > span {
  color: #8c96a5;
  font-family: var(--font-mono);
  font-size: 9px;
  margin-bottom: 16px;
}

.site-footer__grid a:not(.brand) {
  color: #d4d9e1;
  font-size: 12px;
  margin: 3px 0;
  text-decoration: none;
}

.site-footer__grid a:not(.brand):hover {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__grid p {
  color: #8c96a5;
  font-size: 11px;
  margin-top: 20px;
}

.site-footer__base {
  align-items: end;
  border-top: 1px solid #323946;
  color: #8c96a5;
  display: grid;
  font-family: var(--font-mono);
  font-size: 9px;
  gap: 24px;
  grid-template-columns: 1fr auto;
  margin-top: 72px;
  padding-top: 24px;
}

.site-footer__base a {
  color: #8c96a5;
}

.domain-footer {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 700;
  justify-self: end;
  letter-spacing: -0.075em;
  line-height: .85;
}

.domain-footer strong {
  color: var(--blue);
}

@media (max-width: 1080px) {
  .home-shell { padding-left: 32px; padding-right: 32px; }
  .site-header__inner { padding: 0 32px; }
  .home-hero h1 { font-size: clamp(3.5rem, 7vw, 5.5rem); }
  .proof-band__grid { grid-template-columns: 1fr repeat(3, .8fr); }
  .proximity-grid, .founder-grid, .assessment-grid { gap: 48px; }
  .approach-split { grid-template-columns: minmax(240px, .78fr) minmax(0, 1.22fr); }
  .approach-panel { padding: 28px; }
  .approach-panel__copy { grid-template-columns: 1fr; }
  .approach-panel__copy > span { grid-row: auto; }
  .assessment-grid { grid-template-columns: .8fr 1.2fr; }
}

@media (max-width: 860px) {
  .site-header__inner { grid-template-columns: 1fr auto; height: 72px; }
  .site-header__cta { display: none; }
  .site-menu-button { display: inline-flex; }
  .site-menu-button .menu-line {
    transform-box: fill-box;
    transform-origin: center;
    transition: transform 160ms var(--ease-out), opacity 120ms ease;
  }
  .site-menu-button[aria-expanded="true"] .menu-line--top { transform: translateY(5px) rotate(45deg); }
  .site-menu-button[aria-expanded="true"] .menu-line--middle { opacity: 0; }
  .site-menu-button[aria-expanded="true"] .menu-line--bottom { transform: translateY(-5px) rotate(-45deg); }
  .site-nav {
    align-items: stretch;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 0;
    left: 0;
    max-height: calc(100svh - 72px);
    overflow-y: auto;
    padding: 16px 32px 24px;
    position: absolute;
    right: 0;
    top: 72px;
    opacity: 0;
    pointer-events: none;
    transform: scale(.985);
    transform-origin: top right;
    transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out), visibility 0s linear 180ms;
    visibility: hidden;
  }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: scale(1); transition-delay: 0s; visibility: visible; }
  .site-nav a { border-bottom: 1px solid var(--line); font-size: 15px; padding: 14px 0; }
  .site-header:not(.is-scrolled) .site-nav a,
  .site-header:not(.is-scrolled) .site-nav__dropdown-trigger { color: var(--ink-soft); }
  .site-header:not(.is-scrolled) .site-nav__dropdown-trigger[aria-expanded="true"] { color: var(--blue); }
  .site-nav__dropdown { border-bottom: 1px solid var(--line); }
  .site-nav__dropdown-trigger {
    font-size: 15px;
    justify-content: space-between;
    padding: 14px 0;
    width: 100%;
  }
  .site-nav__dropdown-track { display: grid; }
  .site-nav__dropdown-track-inner,
  .site-nav__dropdown[data-open="true"] .site-nav__dropdown-track-inner {
    overflow: hidden;
    transition:
      opacity var(--acc-collapse) var(--acc-ease),
      filter var(--acc-collapse) var(--acc-ease);
  }
  .site-nav__dropdown[data-open="true"] .site-nav__dropdown-track-inner {
    transition:
      opacity var(--acc-expand) var(--acc-ease),
      filter var(--acc-expand) var(--acc-ease);
  }
  .site-nav__dropdown-panel,
  .site-nav__dropdown-panel.t-dropdown,
  .site-nav__dropdown-panel.t-dropdown.is-open,
  .site-nav__dropdown-panel.t-dropdown.is-closing {
    background: var(--mist);
    border: 0;
    box-shadow: none;
    min-width: 0;
    opacity: 1;
    padding: 4px 12px 10px;
    pointer-events: auto;
    position: static;
    transform: none;
    transition: none;
    translate: none;
    width: 100%;
  }
  .site-nav__dropdown-panel::before { display: none; }
  .site-header .site-nav__dropdown-panel a {
    border-bottom: 1px solid var(--line);
    padding: 12px 4px;
  }
  .site-header .site-nav__dropdown-panel a:last-child { border-bottom: 0; }
  .site-nav__mobile-cta,
  .site-header:not(.is-scrolled) .site-nav .site-nav__mobile-cta {
    align-items: center;
    border-bottom: 0;
    color: var(--paper);
    display: flex;
    font-size: 13px;
    justify-content: space-between;
    margin-top: 16px;
    padding: 13px 16px;
  }
  .site-nav a.site-nav__mobile-cta { padding: 13px 16px; }
  .home-hero { min-height: 100svh; }
  .home-hero__grid { height: 66.666svh; padding-top: 72px; }
  .home-section__heading, .case-study-heading, .proximity-grid, .assessment-grid { grid-template-columns: 1fr; }
  .home-section__heading, .case-study-heading { gap: 32px; }
  .proof-band__grid { grid-template-columns: 1fr 1fr; }
  .proof-band__grid > * { border-bottom: 1px solid var(--line); }
  .proof-band__grid > :nth-child(odd) { border-right: 1px solid var(--line); }
  .proof-band__grid > :last-child { border-right: 1px solid var(--line); }
  .home-service-grid { flex-direction: column; min-height: 0; }
  .home-service-card,
  .home-service-card:focus-visible,
  .home-service-card.is-active,
  .home-service-grid:has(.home-service-card.is-active) .home-service-card:not(.is-active),
  .home-service-grid:has(.home-service-card:focus-visible) .home-service-card:not(:focus-visible) { border: 1px solid var(--line); border-bottom: 0; flex: 1 1 auto; min-height: 330px; }
  .home-service-card:focus-visible,
  .home-service-card.is-active { background: var(--blue); border-color: var(--blue); color: var(--paper); }
  .home-service-card:first-child { border-radius: var(--radius-md) var(--radius-md) 0 0; }
  .home-service-card:last-child { border-bottom: 1px solid var(--line); border-radius: 0 0 var(--radius-md) var(--radius-md); }
  .home-service-card__summary { min-height: 0; }
  .home-service-card__expanded { display: none; }
  .home-service-card,
  .home-service-card:focus-visible,
  .home-service-card.is-active { min-height: 0; }
  .approach-split { grid-template-columns: 1fr; min-height: 0; }
  .approach-tabs { border-bottom: 1px solid #323946; border-right: 0; display: grid; grid-template-columns: 1fr 1fr; }
  .approach-tab { min-height: 110px; }
  .approach-tab:nth-child(odd) { border-right: 1px solid #323946; }
  .approach-tab:nth-child(3) { border-bottom: 0; }
  .approach-panel { min-height: 620px; }
  .founder-grid { grid-template-columns: minmax(220px, .62fr) minmax(0, 1.38fr); }
  .founder-copy { grid-template-columns: 1fr; }
  .founder-copy h2 { grid-row: auto; }
  .assessment-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .home-shell { padding-left: 20px; padding-right: 20px; }
  .site-header__inner { height: 64px; padding: 0 20px; }
  .site-nav { max-height: calc(100svh - 64px); padding-left: 20px; padding-right: 20px; top: 64px; }
  .home-hero { min-height: 100svh; }
  .home-hero__grid { height: 66.666svh; padding-top: 64px; }
  .home-hero h1 { font-size: clamp(3rem, 13vw, 3.9rem); overflow-wrap: anywhere; }
  .proof-band__grid { grid-template-columns: 1fr; }
  .proof-band__grid > *, .proof-band__grid > :nth-child(odd), .proof-band__grid > :last-child {
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    min-height: 120px;
    padding: 16px 12px;
  }
  .proof-band__intro {
    grid-column: 1 / -1;
    max-width: none;
    min-height: 110px;
    padding: 20px;
  }
  .proof-band strong { font-size: clamp(1.85rem, 8.5vw, 2.7rem); }
  .proof-band article span { font-size: 9px; line-height: 1.35; }
  .proof-band article { align-items: center; text-align: center; }
  .home-section, .assessment-section { padding: 96px 0; }
  .home-section__heading h2, .proximity-heading h2, .case-study-heading h2, .assessment-copy h2 { font-size: clamp(2.6rem, 12vw, 4rem); }
  .home-service-card { min-height: 0; padding: 24px 20px; }
  .service-graphic { max-height: 160px; }
  .proximity-points article { grid-template-columns: 1fr; gap: 7px; }
  .approach-tabs { grid-template-columns: 1fr; }
  .approach-tab, .approach-tab:nth-child(odd), .approach-tab:nth-child(3) { border-bottom: 1px solid #323946; border-right: 0; min-height: 88px; }
  .approach-tab:last-child { border-bottom: 0; }
  .approach-panel { grid-template-rows: auto auto; min-height: 0; padding: 20px; }
  .approach-graphic { max-height: 230px; }
  .approach-panel__copy { padding-top: 22px; }
  .case-study-measures article { gap: 22px; grid-template-columns: 1fr; }
  .founder-grid {
    align-items: start;
    gap: 24px 16px;
    grid-template-columns: minmax(145px, .8fr) minmax(0, 1.2fr);
  }
  .founder-photo {
    aspect-ratio: 4 / 5;
    grid-column: 1;
    grid-row: 1;
  }
  .founder-photo img { object-position: center top; }
  .founder-body { display: contents; }
  .founder-statement {
    align-self: start;
    grid-column: 2;
    grid-row: 1;
  }
  .founder-statement p {
    font-size: clamp(1.2rem, 4.8vw, 1.65rem);
    letter-spacing: -.045em;
    line-height: 1.05;
  }
  .founder-copy {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 24px;
  }
  .assessment-form { padding: 28px 20px; }
  .assessment-form__footer { align-items: stretch; flex-direction: column; }
  .assessment-form__footer .button { width: 100%; }
  .site-footer__grid, .site-footer__base { grid-template-columns: 1fr; }
  .site-footer__base { align-items: start; }
  .domain-footer { justify-self: start; margin-top: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .t-stagger-line { transition: none !important; }
  .site-nav,
  .site-nav.is-open {
    transform: none;
    transition: opacity 120ms linear, visibility 0s linear 120ms !important;
  }

  .site-nav.is-open { transition-delay: 0s !important; }
  .site-menu-button .menu-line { transition: opacity 100ms linear !important; }
  .site-menu-button[aria-expanded="true"] .menu-line--top,
  .site-menu-button[aria-expanded="true"] .menu-line--bottom { transition: none !important; }

  .button {
    transition: background 100ms linear, border-color 100ms linear, color 100ms linear, transform 100ms linear !important;
  }
  .button:active:not(:disabled) { transform: scale(.995); }

  .approach-tabs[data-motion-ready] .approach-tab {
    transform: none;
    transition: background 100ms linear, color 100ms linear, opacity 160ms linear !important;
    transition-delay: 0ms !important;
  }

  .approach-panel { transform: none; transition: opacity 160ms linear !important; }
  .home-service-card,
  .home-service-card__expanded { transition-duration: 0.01ms !important; }
}

/* Interior pages --------------------------------------------------------- */

.site-nav > a[aria-current="page"],
.site-nav__dropdown-trigger.is-current,
.site-nav__dropdown-panel a[aria-current="page"] {
  color: var(--blue-dark);
}

.site-header .site-nav > .site-nav__mobile-cta,
.site-header .site-nav > .site-nav__mobile-cta[aria-current="page"] {
  color: var(--paper);
}

.interior-hero {
  border-bottom: 1px solid var(--line);
  min-height: 660px;
  padding: 176px 0 96px;
}

.interior-hero__grid {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
}

.interior-hero__copy {
  max-width: 760px;
}

.interior-hero h1 {
  font-size: clamp(3rem, 5.2vw, 5.4rem);
  font-weight: 750;
  letter-spacing: -.065em;
  line-height: .95;
}

.interior-hero__copy > p {
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.5vw, 1.25rem);
  letter-spacing: -.02em;
  line-height: 1.55;
  margin-top: 32px;
  max-width: 620px;
}

.interior-hero__copy > .text-link {
  display: inline-block;
  margin-top: 32px;
}

.interior-section {
  padding: 120px 0;
}

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

.interior-section--ink {
  background: var(--ink);
  color: var(--paper);
}

.section-copy {
  margin-bottom: 64px;
  max-width: 760px;
}

.section-copy h2,
.interior-cta h2 {
  font-size: clamp(2.5rem, 4.6vw, 4.75rem);
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: .98;
}

.section-copy > p,
.section-lede {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.65;
  margin-top: 24px;
  max-width: 65ch;
}

.section-copy--inverse > p,
.interior-section--ink .section-lede {
  color: #aeb7c4;
}

.editorial-grid,
.fit-grid,
.connected-grid,
.measurement-grid,
.channel-weave,
.crm-system,
.case-narrative,
.accountability-grid,
.dfw-section__grid,
.editorial-standard__grid,
.privacy-layout {
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
}

.editorial-grid > div:last-child > p + p {
  color: var(--muted);
  margin-top: 24px;
  max-width: 62ch;
}

.plain-list,
.check-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.plain-list li,
.check-list li {
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 14px 0;
}

.check-list li {
  padding-left: 24px;
  position: relative;
}

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

.plain-list--inverse li {
  border-color: #323946;
  color: #d4d9e1;
}

.program-window {
  background: var(--blue);
  color: var(--paper);
  min-height: 370px;
  padding: 32px;
  position: relative;
}

.program-window strong {
  display: block;
  font-size: clamp(7rem, 15vw, 12rem);
  letter-spacing: -.09em;
  line-height: .8;
}

.program-window > span {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  margin-top: 32px;
  max-width: 150px;
}

.program-window__line {
  bottom: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  left: 32px;
  position: absolute;
  right: 32px;
}

.program-window__line i {
  border-top: 1px solid rgb(255 255 255 / 72%);
  display: block;
  position: relative;
}

.program-window__line i::before {
  background: var(--paper);
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  top: -4px;
  width: 7px;
}

.fit-checks {
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.fit-checks article {
  padding: 32px;
}

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

.fit-checks h3 {
  font-size: 1.15rem;
}

.program-steps {
  border-left: 1px solid var(--line-strong);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.program-steps article {
  border-bottom: 1px solid var(--line-strong);
  border-right: 1px solid var(--line-strong);
  border-top: 1px solid var(--line-strong);
  min-height: 320px;
  padding: 28px;
}

.program-steps span,
.connected-map span,
.work-ledger span,
.ads-loop span,
.accountability-grid article > span,
.result-feature__heading span,
.case-narrative__flow span,
.insight-grid article > span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
}

.program-steps h3,
.work-ledger h3,
.ads-loop h3 {
  margin-top: 56px;
}

.program-steps p,
.work-ledger p,
.ads-loop p,
.connected-map p,
.question-stack p,
.accountability-grid article p,
.insight-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin-top: 16px;
}

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

.connected-map {
  border-top: 1px solid var(--line-strong);
}

.connected-map article {
  border-bottom: 1px solid var(--line-strong);
  display: grid;
  gap: 16px;
  grid-template-columns: 110px minmax(160px, .7fr) 1fr;
  padding: 24px 0;
}

.connected-map strong {
  font-size: 16px;
}

.connected-map p {
  margin-top: 0;
}

.visibility-map {
  border: 1px solid var(--line-strong);
  display: grid;
  gap: 32px;
  min-height: 370px;
  padding: 32px;
}

.visibility-map__query {
  align-self: start;
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  padding: 18px;
  width: 58%;
}

.visibility-map__evidence {
  align-items: center;
  border-bottom: 1px solid var(--blue);
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 24px;
}

.visibility-map__evidence span {
  border: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
  padding: 12px 8px;
}

.visibility-map__outputs {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.visibility-map__outputs strong {
  background: var(--blue-tint);
  color: var(--blue-dark);
  font-size: 13px;
  padding: 18px;
}

.work-ledger {
  border-left: 1px solid var(--line-strong);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
}

.work-ledger article {
  border-bottom: 1px solid var(--line-strong);
  border-right: 1px solid var(--line-strong);
  min-height: 260px;
  padding: 28px;
}

.work-ledger article:nth-child(1) {
  background: var(--paper);
}

.work-ledger article:nth-child(2),
.work-ledger article:nth-child(3) {
  background: var(--blue-tint);
}

.work-ledger article:nth-child(4) {
  background: var(--blue);
  color: var(--paper);
}

.work-ledger article:nth-child(4) span,
.work-ledger article:nth-child(4) p {
  color: #dce5ff;
}

.measurement-grid {
  align-items: center;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
}

.measurement-grid__signal {
  background: var(--ink);
  color: var(--paper);
  min-height: 330px;
  padding: 32px;
}

.measurement-grid__signal span {
  color: #aeb7c4;
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
}

.measurement-grid__signal strong {
  display: block;
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -.06em;
  line-height: 1;
  margin-top: 112px;
}

.intent-board {
  border: 1px solid var(--line-strong);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.intent-board div {
  min-height: 170px;
  padding: 24px;
}

.intent-board div:nth-child(1),
.intent-board div:nth-child(4) {
  background: var(--blue);
  color: var(--paper);
}

.intent-board div:nth-child(2) {
  border-bottom: 1px solid var(--line);
}

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

.intent-board span,
.pipeline-board span {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  opacity: .72;
}

.intent-board strong,
.pipeline-board strong {
  display: block;
  font-size: 1.4rem;
  margin-top: 72px;
}

.ads-loop {
  border-left: 1px solid #323946;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.ads-loop article {
  border-bottom: 1px solid #323946;
  border-right: 1px solid #323946;
  border-top: 1px solid #323946;
  min-height: 330px;
  padding: 28px;
}

.ads-loop span,
.ads-loop p {
  color: #aeb7c4;
}

.channel-weave dl {
  margin: 0;
}

.channel-weave dl div,
.signal-ledger dl div,
.assessment-summary div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 150px 1fr;
  padding: 20px 0;
}

.channel-weave dt,
.signal-ledger dt,
.assessment-summary dt {
  font-weight: 700;
}

.channel-weave dd,
.signal-ledger dd,
.assessment-summary dd {
  color: var(--muted);
}

.pipeline-board {
  border: 1px solid var(--line-strong);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.pipeline-board article {
  min-height: 170px;
  padding: 24px;
}

.pipeline-board article:nth-child(1) {
  background: var(--mist);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.pipeline-board article:nth-child(2) {
  border-bottom: 1px solid var(--line);
}

.pipeline-board article:nth-child(3) {
  border-right: 1px solid var(--line);
}

.pipeline-board article:nth-child(4) {
  background: var(--blue);
  color: var(--paper);
}

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

.question-stack article {
  border-bottom: 1px solid var(--line-strong);
  padding: 24px 0;
}

.question-stack strong {
  font-size: 1.1rem;
}

.signal-ledger {
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, .8fr) minmax(360px, 1.2fr);
}

.signal-ledger__title p {
  color: var(--muted);
  margin-top: 20px;
}

.results-hero__grid {
  align-items: end;
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
}

.results-hero__note {
  border-left: 1px solid var(--line-strong);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 20px 0 20px 24px;
}

.results-hero__note strong {
  color: var(--ink);
  display: block;
  font-family: var(--font-sans);
  font-size: 1.25rem;
  margin-top: 8px;
}

.result-feature__heading {
  align-items: end;
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  margin-bottom: 72px;
}

.result-feature__heading h2 {
  margin-top: 24px;
}

.result-feature__heading > p {
  color: var(--muted);
}

.result-measures {
  border-left: 1px solid var(--line-strong);
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
}

.result-measures article {
  border-bottom: 1px solid var(--line-strong);
  border-right: 1px solid var(--line-strong);
  border-top: 1px solid var(--line-strong);
  min-height: 330px;
  padding: 28px;
}

.result-measures article:first-child {
  background: var(--blue);
  color: var(--paper);
}

.result-measures strong {
  display: block;
  font-size: clamp(4.5rem, 8vw, 8rem);
  letter-spacing: -.09em;
  line-height: .85;
}

.result-measures h3 {
  margin-top: 96px;
}

.result-measures p {
  color: var(--muted);
  font-size: 13px;
  margin-top: 12px;
}

.result-measures article:first-child p {
  color: #dce5ff;
}

.result-measures--business {
  margin-top: 24px;
}

.result-methodology {
  color: var(--muted);
  font-size: 12px;
  margin-top: 24px;
  max-width: 72ch;
}

.case-narrative__flow {
  border-top: 1px solid var(--line-strong);
}

.case-narrative__flow article {
  border-bottom: 1px solid var(--line-strong);
  display: grid;
  gap: 24px;
  grid-template-columns: 100px 1fr;
  padding: 24px 0;
}

.case-narrative__flow p {
  color: var(--ink-soft);
}

.evidence-standard__grid {
  display: grid;
  gap: 80px;
  grid-template-columns: 1.2fr .8fr;
}

.evidence-standard__grid > div:first-child > p {
  color: var(--muted);
  margin-top: 24px;
  max-width: 60ch;
}

.empty-proof {
  background: var(--mist);
  border: 1px solid var(--line);
  padding: 32px;
}

.empty-proof p {
  color: var(--muted);
  margin-top: 72px;
}

.about-hero {
  padding-bottom: 0;
}

.about-hero__grid {
  align-items: center;
  display: grid;
  gap: 96px;
  grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr);
}

.about-portrait {
  aspect-ratio: 2 / 3;
  margin: 0;
  overflow: hidden;
}

.about-portrait img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.founder-principle__grid {
  align-items: start;
  display: grid;
  gap: 96px;
  grid-template-columns: 1.15fr .85fr;
}

.founder-principle blockquote {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 700;
  letter-spacing: -.065em;
  line-height: 1;
  margin: 0;
}

.founder-principle__grid > div > p + p {
  color: var(--muted);
  margin-top: 24px;
}

.accountability-grid > div:last-child {
  border-top: 1px solid var(--line-strong);
}

.accountability-grid article {
  border-bottom: 1px solid var(--line-strong);
  padding: 28px 0;
}

.accountability-grid article h3 {
  margin-top: 36px;
}

.dfw-section__grid {
  align-items: center;
}

.dfw-field {
  background: var(--blue);
  color: var(--paper);
  min-height: 390px;
  padding: 32px;
}

.dfw-field strong {
  display: block;
  font-size: clamp(5rem, 10vw, 9rem);
  letter-spacing: -.09em;
  line-height: .85;
}

.dfw-field span {
  display: block;
  font-weight: 700;
  margin-top: 64px;
  max-width: 260px;
}

.dfw-field p {
  color: #dce5ff;
  font-size: 13px;
  margin-top: 24px;
  max-width: 390px;
}

.insights-index {
  border: 1px solid var(--line-strong);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.insights-index span {
  align-items: end;
  display: flex;
  font-family: var(--font-mono);
  font-size: 11px;
  min-height: 150px;
  padding: 20px;
}

.insights-index span:nth-child(1),
.insights-index span:nth-child(2) {
  border-bottom: 1px solid var(--line);
}

.insights-index span:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.insights-index span:last-child {
  background: var(--blue);
  color: var(--paper);
}

.insight-grid {
  border-left: 1px solid var(--line-strong);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
}

.insight-grid article {
  border-bottom: 1px solid var(--line-strong);
  border-right: 1px solid var(--line-strong);
  min-height: 300px;
  padding: 28px;
}

.insight-grid article:nth-child(1),
.insight-grid article:nth-child(4) {
  background: var(--mist);
}

.insight-grid article:nth-child(2) {
  background: var(--blue-tint);
}

.insight-grid h3 {
  margin-top: 64px;
}

.editorial-standard__grid {
  align-items: start;
}

.assessment-summary {
  border-top: 1px solid var(--line-strong);
  margin: 0;
}

.assessment-page-section .assessment-grid {
  align-items: start;
}

.assessment-page-section .assessment-copy > p {
  color: var(--muted);
}

.assessment-page-section .assessment-copy dl {
  border-color: var(--line-strong);
}

.assessment-page-section .assessment-copy dl > div {
  border-color: var(--line);
}

.assessment-page-section .assessment-copy dt {
  color: var(--muted);
}

.assessment-page-section .assessment-copy dd {
  color: var(--ink-soft);
}

.expectation-flow {
  border-left: 1px solid var(--line-strong);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.expectation-flow article {
  border-bottom: 1px solid var(--line-strong);
  border-right: 1px solid var(--line-strong);
  border-top: 1px solid var(--line-strong);
  min-height: 260px;
  padding: 28px;
}

.expectation-flow p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 80px;
}

.privacy-draft {
  align-self: center;
  margin: 0;
}

.privacy-layout {
  align-items: start;
  grid-template-columns: minmax(180px, .32fr) minmax(0, 1.68fr);
}

.privacy-layout > nav {
  border-top: 1px solid var(--line-strong);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 112px;
}

.privacy-layout > nav a {
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  padding: 14px 0;
  text-decoration: none;
}

.privacy-layout > nav a:hover {
  color: var(--blue-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.privacy-prose {
  max-width: 760px;
}

.privacy-prose section {
  border-top: 1px solid var(--line-strong);
  padding: 48px 0 64px;
  scroll-margin-top: 100px;
}

.privacy-prose section:first-child {
  padding-top: 0;
}

.privacy-prose p {
  color: var(--ink-soft);
  margin-top: 20px;
  max-width: 65ch;
}

.privacy-prose a {
  color: var(--blue-dark);
}

.interior-cta {
  border-top: 1px solid var(--line);
  padding: 96px 0;
}

.interior-cta__grid {
  align-items: end;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.interior-cta p {
  color: var(--muted);
  margin-top: 24px;
  max-width: 62ch;
}

.site-footer__grid {
  grid-template-columns: 1.4fr .65fr .85fr .7fr;
}

.site-footer__assessment {
  color: var(--paper) !important;
  margin-top: 28px !important;
}

@media (max-width: 1080px) {
  .interior-hero__grid,
  .about-hero__grid { gap: 48px; }
  .program-steps,
  .ads-loop { grid-template-columns: 1fr 1fr; }
  .program-steps article:nth-child(3),
  .program-steps article:nth-child(4),
  .ads-loop article:nth-child(3),
  .ads-loop article:nth-child(4) { border-top: 0; }
  .site-footer__grid { gap: 40px; grid-template-columns: 1.2fr .8fr .8fr; }
  .site-footer__grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 860px) {
  .interior-hero { min-height: 0; padding: 144px 0 88px; }
  .interior-hero__grid,
  .results-hero__grid,
  .about-hero__grid,
  .editorial-grid,
  .fit-grid,
  .connected-grid,
  .measurement-grid,
  .channel-weave,
  .crm-system,
  .signal-ledger,
  .case-narrative,
  .evidence-standard__grid,
  .founder-principle__grid,
  .accountability-grid,
  .dfw-section__grid,
  .editorial-standard__grid,
  .privacy-layout { grid-template-columns: 1fr; }
  .program-window,
  .visibility-map,
  .intent-board,
  .pipeline-board,
  .insights-index { min-height: 330px; }
  .about-hero { padding-bottom: 0; }
  .about-portrait { aspect-ratio: 2 / 3; max-width: 460px; order: 2; }
  .result-feature__heading { align-items: start; gap: 32px; grid-template-columns: 1fr; }
  .result-measures { grid-template-columns: 1.15fr .85fr; }
  .result-measures article:last-child { grid-column: 1 / -1; }
  .fit-checks { grid-template-columns: 1fr; }
  .fit-checks article + article { border-left: 0; border-top: 1px solid var(--line); }
  .privacy-layout > nav { display: grid; grid-template-columns: 1fr 1fr; position: static; }
  .interior-cta__grid { align-items: start; grid-template-columns: 1fr; }
  .interior-cta__grid .button { justify-self: start; }
}

@media (max-width: 600px) {
  .interior-hero { padding: 120px 0 72px; }
  .interior-hero h1 { font-size: clamp(3rem, 14vw, 4.4rem); }
  .interior-section { padding: 96px 0; }
  .section-copy { margin-bottom: 48px; }
  .program-window,
  .visibility-map,
  .measurement-grid__signal,
  .dfw-field { min-height: 300px; padding: 24px; }
  .program-steps,
  .ads-loop,
  .work-ledger,
  .result-measures,
  .insight-grid,
  .expectation-flow { grid-template-columns: 1fr; }
  .program-steps article,
  .ads-loop article,
  .work-ledger article,
  .result-measures article,
  .insight-grid article,
  .expectation-flow article { border-top: 0; min-height: 250px; }
  .program-steps article:first-child,
  .ads-loop article:first-child,
  .result-measures article:first-child,
  .expectation-flow article:first-child { border-top: 1px solid var(--line-strong); }
  .result-measures article:last-child { grid-column: auto; }
  .connected-map article { gap: 8px; grid-template-columns: 1fr; }
  .visibility-map__evidence,
  .visibility-map__outputs,
  .intent-board,
  .pipeline-board,
  .insights-index { grid-template-columns: 1fr; }
  .visibility-map__query { width: 100%; }
  .intent-board div,
  .pipeline-board article,
  .insights-index span { border-bottom: 1px solid var(--line); border-right: 0 !important; min-height: 108px; }
  .intent-board strong,
  .pipeline-board strong { margin-top: 28px; }
  .result-measures h3 { margin-top: 56px; }
  .channel-weave dl div,
  .signal-ledger dl div,
  .assessment-summary div { gap: 8px; grid-template-columns: 1fr; }
  .founder-principle blockquote { font-size: clamp(2.5rem, 12vw, 4rem); }
  .privacy-layout > nav { grid-template-columns: 1fr; }
  .interior-cta { padding: 80px 0; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__grid > div:last-child { grid-column: auto; }
}

/* Results case study ---------------------------------------------------- */

.case-hero {
  background: #02050c;
  color: var(--paper);
  min-height: 900px;
  overflow: hidden;
  padding: 176px 0 72px;
  position: relative;
}

.case-hero::before {
  background-image:
    linear-gradient(rgb(20 87 255 / 12%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(20 87 255 / 12%) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, #000 42%, #000 100%);
  opacity: .5;
  pointer-events: none;
  position: absolute;
}

.case-hero::after {
  background: radial-gradient(circle at 76% 42%, rgb(20 87 255 / 18%), transparent 34%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.case-hero__inner {
  display: flex;
  flex-direction: column;
  min-height: 650px;
  position: relative;
  z-index: 1;
}

.case-hero__copy {
  max-width: 1120px;
}

.case-hero__context,
.case-section-heading span,
.case-section-copy > span,
.portfolio-grid__heading > span {
  color: #91adff;
  font-family: var(--font-mono);
  font-size: 10px;
}

.case-hero__context {
  display: flex;
  gap: 12px;
}

.case-hero h1 {
  font-size: clamp(3.6rem, 6.25vw, 7.2rem);
  font-weight: 750;
  letter-spacing: -.075em;
  line-height: .9;
  margin-top: 36px;
  max-width: 1080px;
}

.case-hero h1 span {
  color: #91adff;
}

.case-hero__lede {
  color: #c7cfda;
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.65;
  margin-top: 36px;
  max-width: 760px;
}

.roi-trace {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: auto;
  padding-top: 80px;
  position: relative;
}

.roi-trace__line {
  background: linear-gradient(90deg, var(--blue) 0 67%, transparent 67%);
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 96px;
}

.roi-trace__line::after {
  border-top: 1px dashed #647392;
  content: "";
  left: 67%;
  position: absolute;
  right: 0;
  top: 0;
}

.roi-trace article {
  min-width: 0;
  padding-right: 24px;
  position: relative;
}

.roi-trace article::before {
  background: #02050c;
  border: 2px solid var(--blue);
  border-radius: 50%;
  content: "";
  height: 13px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 13px;
  z-index: 1;
}

.roi-trace__pace::before {
  background: var(--blue) !important;
  box-shadow: 0 0 0 7px rgb(20 87 255 / 17%);
}

.roi-trace strong {
  display: block;
  font-size: clamp(2.2rem, 4.1vw, 4.6rem);
  letter-spacing: -.075em;
  line-height: 1;
  padding-top: 42px;
}

.roi-trace__pace strong {
  color: #91adff;
}

.roi-trace span {
  color: #8c96a5;
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  margin-top: 10px;
}

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

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

.case-context__grid > * {
  border-right: 1px solid var(--line);
  margin: 0;
  padding: 20px 24px;
}

.case-context__grid > :nth-child(odd) {
  color: var(--muted);
  display: none;
  font-family: var(--font-mono);
  font-size: 9px;
}

.case-context__grid > :nth-child(even) {
  font-size: 12px;
}

.case-context__grid > :nth-child(2)::before { content: "The business"; }
.case-context__grid > :nth-child(4)::before { content: "The footprint"; }
.case-context__grid > :nth-child(6)::before { content: "The role"; }
.case-context__grid > :nth-child(8)::before { content: "The mandate"; }

.case-context__grid > :nth-child(even)::before {
  color: var(--muted);
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  margin-bottom: 7px;
}

.case-context__grid > :nth-child(2) {
  border-left: 1px solid var(--line);
}

.case-opening__grid,
.case-demand__grid,
.case-takeaway__grid {
  display: grid;
  gap: 96px;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
}

.case-opening h2,
.case-section-heading h2,
.case-section-copy h2,
.portfolio-grid__heading h2,
.case-loop__heading h2,
.case-results__heading h2 {
  font-size: clamp(2.6rem, 4.7vw, 5rem);
  letter-spacing: -.065em;
  line-height: .98;
}

.case-opening__copy > p + p {
  color: var(--muted);
  margin-top: 28px;
}

.visibility-gaps {
  display: grid;
  gap: 0;
  grid-template-columns: minmax(150px, .35fr) minmax(0, 1.65fr);
  margin-top: 88px;
}

.visibility-gaps__rail {
  border: 1px solid var(--line-strong);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.visibility-gaps__rail span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
}

.visibility-gaps ol {
  border-top: 1px solid var(--line-strong);
  list-style: none;
  margin: 0;
  padding: 0;
}

.visibility-gaps li {
  align-items: center;
  border-bottom: 1px solid var(--line-strong);
  border-right: 1px solid var(--line-strong);
  display: grid;
  gap: 24px;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  min-height: 70px;
  padding: 14px 20px;
}

.visibility-gaps li > span,
.visibility-gaps li > small {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
}

.visibility-gaps li > small {
  color: var(--blue-dark);
}

.case-section-heading {
  align-items: end;
  display: grid;
  gap: 96px;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
}

.case-section-heading h2,
.case-section-copy h2,
.portfolio-grid__heading h2 {
  margin-top: 20px;
}

.case-section-heading > p,
.case-section-copy > p,
.portfolio-grid__heading > p {
  color: var(--muted);
}

.foundation-map {
  border: 1px solid var(--line-strong);
  display: grid;
  grid-template-columns: .62fr 1.1fr .62fr .8fr;
  margin-top: 72px;
  min-height: 460px;
}

.foundation-map > div + div {
  border-left: 1px solid var(--line-strong);
}

.foundation-map__sources,
.foundation-map__outcomes {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 24px;
}

.foundation-map__sources span,
.foundation-map__outcomes span {
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  padding: 12px 0;
}

.foundation-map__junction {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.foundation-map__junction svg {
  fill: none;
  max-width: 260px;
  stroke: var(--line-strong);
  stroke-linecap: round;
  stroke-width: 1.3;
  width: 100%;
}

.foundation-map__junction svg circle:first-of-type {
  fill: var(--paper);
  stroke: var(--blue);
}

.foundation-map__junction svg circle:last-of-type {
  fill: var(--blue);
  stroke: var(--blue);
}

.foundation-map__junction strong {
  color: var(--blue-dark);
  font-size: 12px;
  margin-top: 20px;
}

.foundation-map__record {
  background: var(--blue);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
}

.foundation-map__record strong {
  font-size: clamp(3.4rem, 6vw, 6.5rem);
  letter-spacing: -.09em;
  line-height: .85;
}

.foundation-map__record p {
  color: #dce5ff;
  font-size: 12px;
}

.case-section-copy ul {
  border-top: 1px solid var(--line-strong);
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
}

.case-section-copy li {
  border-bottom: 1px solid var(--line-strong);
  font-size: 12px;
  padding: 13px 0;
}

.quality-shift {
  align-self: end;
  border: 1px solid var(--line-strong);
  padding: 32px;
}

.quality-shift > div {
  display: grid;
  gap: 16px 24px;
  grid-template-columns: 1fr auto;
  margin-bottom: 36px;
}

.quality-shift span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
}

.quality-shift > div strong {
  font-size: 2.4rem;
  letter-spacing: -.06em;
  line-height: 1;
}

.quality-shift i {
  background: var(--line);
  display: block;
  grid-column: 1 / -1;
  height: 16px;
  overflow: hidden;
  position: relative;
}

.quality-shift i::after {
  background: var(--ink);
  content: "";
  inset: 0 auto 0 0;
  position: absolute;
  width: var(--quality);
}

.quality-shift__outcome i::after {
  background: var(--blue);
}

.quality-shift > p {
  border-top: 1px solid var(--line-strong);
  display: grid;
  gap: 16px;
  grid-template-columns: auto 1fr;
  margin-top: 12px;
  padding-top: 24px;
}

.quality-shift > p strong {
  color: var(--blue-dark);
  font-size: 1.3rem;
}

.lifecycle-path {
  margin-top: 72px;
}

.lifecycle-path ol {
  counter-reset: lifecycle;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.lifecycle-path li {
  border-bottom: 1px solid var(--line-strong);
  border-top: 1px solid var(--line-strong);
  min-height: 190px;
  padding: 28px 20px;
  position: relative;
}

.lifecycle-path li + li {
  border-left: 1px solid var(--line-strong);
}

.lifecycle-path li::before {
  color: var(--blue-dark);
  content: counter(lifecycle, decimal-leading-zero);
  counter-increment: lifecycle;
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  margin-bottom: 48px;
}

.lifecycle-path li::after {
  background: var(--blue);
  border-radius: 50%;
  content: "";
  height: 7px;
  position: absolute;
  right: -4px;
  top: -4px;
  width: 7px;
  z-index: 1;
}

.lifecycle-path li:last-child::after {
  right: 0;
}

.lifecycle-path li span {
  font-size: 13px;
  font-weight: 700;
}

.lifecycle-path li p {
  color: var(--muted);
  font-size: 11px;
  margin-top: 8px;
}

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

.lifecycle-results article {
  align-items: end;
  border-bottom: 1px solid var(--line-strong);
  display: grid;
  gap: 32px;
  grid-template-columns: auto 1fr;
  padding: 32px 24px;
}

.lifecycle-results article + article {
  border-left: 1px solid var(--line-strong);
}

.lifecycle-results strong {
  color: var(--blue);
  font-size: clamp(3.4rem, 6vw, 6.6rem);
  letter-spacing: -.09em;
  line-height: .85;
}

.lifecycle-results p {
  color: var(--muted);
  font-size: 12px;
  max-width: 260px;
}

.portfolio-grid {
  display: grid;
  gap: 56px 88px;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
}

.portfolio-grid__heading p {
  margin-top: 28px;
  max-width: 52ch;
}

.portfolio-balance {
  border: 1px solid var(--line-strong);
  min-height: 560px;
  padding: 32px;
}

.portfolio-balance__axis {
  display: flex;
  justify-content: space-between;
}

.portfolio-balance__axis span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
}

.portfolio-balance svg {
  fill: none;
  margin: 24px auto 0;
  max-height: 390px;
  width: 100%;
}

.portfolio-balance__guide {
  stroke: var(--line-strong);
}

.portfolio-balance__signal,
.portfolio-balance__spoke {
  stroke: var(--blue);
}

.portfolio-balance svg circle {
  fill: var(--paper);
  stroke: var(--blue);
}

.portfolio-balance svg .portfolio-balance__center {
  fill: var(--blue);
}

.portfolio-balance > p {
  color: var(--muted);
  font-size: 11px;
  max-width: 62ch;
}

.portfolio-channels {
  border-left: 1px solid var(--line-strong);
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
}

.portfolio-channels span {
  border-bottom: 1px solid var(--line-strong);
  border-right: 1px solid var(--line-strong);
  border-top: 1px solid var(--line-strong);
  font-size: 12px;
  padding: 18px;
}

.case-loop {
  background: var(--blue);
  color: var(--paper);
  padding: 120px 0;
}

.case-loop__heading {
  align-items: end;
  display: grid;
  gap: 88px;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
}

.case-loop__heading > p {
  color: #dce5ff;
}

.case-loop ol {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
  margin: 72px 0 0;
  padding: 0;
}

.case-loop li {
  border-bottom: 1px solid rgb(255 255 255 / 32%);
  border-top: 1px solid rgb(255 255 255 / 32%);
  min-height: 240px;
  padding: 24px;
}

.case-loop li + li {
  border-left: 1px solid rgb(255 255 255 / 32%);
}

.case-loop li > span {
  color: #c7d5ff;
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  margin-bottom: 76px;
}

.case-loop li strong {
  display: block;
  font-size: 13px;
}

.case-loop li p {
  color: #dce5ff;
  font-size: 11px;
  margin-top: 10px;
}

.case-results__heading {
  align-items: end;
  display: grid;
  gap: 96px;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
}

.case-results__heading p {
  color: var(--muted);
}

.case-results__roi {
  border-left: 1px solid var(--line-strong);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 72px;
}

.case-results__roi article {
  border-bottom: 1px solid var(--line-strong);
  border-right: 1px solid var(--line-strong);
  border-top: 1px solid var(--line-strong);
  min-height: 270px;
  padding: 24px;
}

.case-results__roi span,
.case-results__roi small {
  color: var(--muted);
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
}

.case-results__roi strong {
  display: block;
  font-size: clamp(3.8rem, 7vw, 7.8rem);
  letter-spacing: -.095em;
  line-height: .85;
  margin-top: 92px;
}

.case-results__pace {
  background: var(--blue);
  color: var(--paper);
}

.case-results__pace span,
.case-results__pace small {
  color: #dce5ff;
}

.case-results__pace small {
  margin-top: 14px;
}

.case-results__method {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
  margin-top: 20px;
}

.case-results__support {
  border-left: 1px solid var(--line-strong);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 80px;
}

.case-results__support article {
  border-bottom: 1px solid var(--line-strong);
  border-right: 1px solid var(--line-strong);
  border-top: 1px solid var(--line-strong);
  min-height: 250px;
  padding: 24px;
}

.case-results__support strong {
  color: var(--blue);
  display: block;
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  letter-spacing: -.08em;
  line-height: .9;
  white-space: nowrap;
}

.case-results__support h3 {
  font-size: 13px;
  margin-top: 72px;
}

.case-results__support p {
  color: var(--muted);
  font-size: 11px;
  margin-top: 8px;
}

.case-results .case-study-note {
  max-width: 90ch;
}

.case-takeaway blockquote {
  font-size: clamp(2.6rem, 4.7vw, 5rem);
  font-weight: 700;
  letter-spacing: -.065em;
  line-height: .98;
  margin: 0;
}

.case-takeaway__grid > div {
  align-self: end;
}

.case-takeaway__grid > div p {
  color: var(--ink-soft);
}

.case-takeaway__grid .text-link {
  display: inline-block;
  margin-top: 32px;
}

@media (max-width: 1080px) {
  .case-hero { min-height: 820px; }
  .foundation-map { grid-template-columns: .55fr 1fr .55fr .8fr; }
  .foundation-map__sources, .foundation-map__outcomes { padding: 18px; }
  .lifecycle-path li { padding: 24px 16px; }
  .case-results__support { grid-template-columns: 1fr 1fr; }
  .case-results__support article:nth-child(3),
  .case-results__support article:nth-child(4) { border-top: 0; }
}

@media (max-width: 860px) {
  .case-hero { min-height: 780px; padding-top: 144px; }
  .case-hero__inner { min-height: 590px; }
  .case-context__grid { grid-template-columns: 1fr 1fr; }
  .case-context__grid > :nth-child(6) { border-left: 1px solid var(--line); }
  .case-context__grid > :nth-child(n + 6) { border-top: 1px solid var(--line); }
  .case-opening__grid,
  .case-section-heading,
  .case-demand__grid,
  .portfolio-grid,
  .case-loop__heading,
  .case-results__heading,
  .case-takeaway__grid { gap: 40px; grid-template-columns: 1fr; }
  .foundation-map { grid-template-columns: .7fr 1fr .7fr; }
  .foundation-map__record { border-left: 0 !important; border-top: 1px solid var(--line-strong); grid-column: 1 / -1; min-height: 220px; }
  .lifecycle-path ol { grid-template-columns: repeat(3, 1fr); }
  .lifecycle-path li:nth-child(4), .lifecycle-path li:nth-child(5) { border-top: 0; }
  .lifecycle-path li:nth-child(4) { border-left: 0; }
  .lifecycle-path li:nth-child(5) { grid-column: span 2; }
  .case-loop ol { grid-template-columns: repeat(3, 1fr); }
  .case-loop li:nth-child(4), .case-loop li:nth-child(5) { border-top: 0; }
  .case-loop li:nth-child(4) { border-left: 0; }
  .case-loop li:nth-child(5) { grid-column: span 2; }
  .case-results__roi { grid-template-columns: 1fr 1fr; }
  .case-results__roi article:nth-child(3), .case-results__roi article:nth-child(4) { border-top: 0; }
}

@media (max-width: 600px) {
  .case-hero { min-height: 790px; padding: 116px 0 48px; }
  .case-hero::before { background-size: 40px 40px; }
  .case-hero__inner { min-height: 625px; }
  .case-hero__context { display: block; }
  .case-hero__context span { display: none; }
  .case-hero h1 { font-size: clamp(3rem, 13.5vw, 4.25rem); margin-top: 24px; overflow-wrap: normal; }
  .case-hero__lede { font-size: 1rem; margin-top: 28px; }
  .roi-trace { padding-top: 48px; }
  .roi-trace__line { top: 59px; }
  .roi-trace article::before { height: 9px; top: 7px; width: 9px; }
  .roi-trace strong { font-size: clamp(1.55rem, 8vw, 2.5rem); padding-top: 30px; }
  .roi-trace span { font-size: 8px; line-height: 1.4; }
  .case-context__grid { grid-template-columns: 1fr; padding: 0; }
  .case-context__grid > :nth-child(even) { border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
  .visibility-gaps { grid-template-columns: 1fr; margin-top: 56px; }
  .visibility-gaps__rail { flex-direction: row; min-height: 72px; }
  .visibility-gaps li { border-left: 1px solid var(--line-strong); gap: 12px; grid-template-columns: 34px minmax(0, 1fr); }
  .visibility-gaps li small { grid-column: 2; }
  .foundation-map { grid-template-columns: 1fr 1fr; min-height: 0; }
  .foundation-map__junction { border-left: 0 !important; border-top: 1px solid var(--line-strong); grid-column: 1 / -1; grid-row: 2; }
  .foundation-map__outcomes { border-left: 1px solid var(--line-strong); }
  .foundation-map__record { grid-row: 3; }
  .quality-shift { padding: 24px 20px; }
  .quality-shift > p { grid-template-columns: 1fr; }
  .lifecycle-path ol { grid-template-columns: 1fr; }
  .lifecycle-path li, .lifecycle-path li:nth-child(4), .lifecycle-path li:nth-child(5) { border-left: 1px solid var(--line-strong); border-right: 1px solid var(--line-strong); border-top: 0; grid-column: auto; min-height: 140px; }
  .lifecycle-path li:first-child { border-top: 1px solid var(--line-strong); }
  .lifecycle-path li::before { margin-bottom: 24px; }
  .lifecycle-path li::after { left: -4px; right: auto; top: auto; bottom: -4px; }
  .lifecycle-results { grid-template-columns: 1fr; }
  .lifecycle-results article { align-items: start; grid-template-columns: 1fr; }
  .lifecycle-results article + article { border-left: 0; }
  .portfolio-balance { min-height: 0; padding: 20px; }
  .portfolio-balance__axis span { max-width: 30%; }
  .portfolio-channels { grid-template-columns: 1fr 1fr; }
  .case-loop { padding: 96px 0; }
  .case-loop ol { grid-template-columns: 1fr; }
  .case-loop li, .case-loop li:nth-child(4), .case-loop li:nth-child(5) { border-left: 0; border-top: 0; grid-column: auto; min-height: 170px; }
  .case-loop li:first-child { border-top: 1px solid rgb(255 255 255 / 32%); }
  .case-loop li > span { margin-bottom: 44px; }
  .case-results__roi { grid-template-columns: 1fr 1fr; }
  .case-results__roi article { min-height: 220px; padding: 20px; }
  .case-results__roi strong { font-size: clamp(3.2rem, 17vw, 5rem); margin-top: 70px; }
  .case-results__support { grid-template-columns: 1fr; }
  .case-results__support article,
  .case-results__support article:nth-child(3),
  .case-results__support article:nth-child(4) { border-top: 0; min-height: 210px; }
  .case-results__support article:first-child { border-top: 1px solid var(--line-strong); }
  .case-results__support h3 { margin-top: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  .case-hero::before { opacity: .35; }
}
