:root {
  --navy-950: #0b121c;
  --navy-900: #101823;
  --navy-850: #172231;
  --navy-800: #1e2b3b;
  --paper: #f3efe6;
  --paper-deep: #e8e1d4;
  --paper-light: #fbf9f4;
  --white: #fffdf8;
  --ink: #15202c;
  --ink-soft: #3d4854;
  --muted: #68717a;
  --muted-light: #a9b2bc;
  --copper: #b96f45;
  --copper-dark: #8c4d2c;
  --copper-light: #db9a74;
  --sage: #789183;
  --sage-light: #dce5de;
  --line: rgba(21, 32, 44, 0.15);
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow: 0 28px 70px rgba(11, 18, 28, 0.14);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shell: 1220px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

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

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

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

svg {
  display: block;
}

::selection {
  background: rgba(185, 111, 69, 0.25);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

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

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

.section {
  padding: 96px 0;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 7vw, 6.75rem);
  line-height: 0.94;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 4.5vw, 4.5rem);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.25;
}

p {
  margin-bottom: 18px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  color: var(--copper-dark);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

.eyebrow-light {
  color: var(--copper-light);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  background: transparent;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.015em;
  line-height: 1.2;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms var(--ease);
}

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

.button-primary {
  border-color: var(--copper);
  background: var(--copper);
  color: #160c07;
}

.button-primary:hover {
  border-color: var(--copper-light);
  background: var(--copper-light);
}

.button-light {
  border-color: var(--paper-light);
  background: var(--paper-light);
  color: var(--navy-950);
}

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

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  border-color: var(--copper);
  background: var(--copper);
  color: #160c07;
  font-size: 0.78rem;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  transition: color 180ms ease, gap 180ms ease;
}

.text-link:hover {
  gap: 13px;
  color: var(--copper-dark);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(243, 239, 230, 0.88);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 35px rgba(11, 18, 28, 0.05);
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-mark {
  width: 32px;
  height: 32px;
  overflow: visible;
  fill: var(--navy-900);
  stroke: var(--navy-900);
  stroke-width: 1.3;
}

.brand-mark-accent {
  fill: var(--copper);
  stroke: var(--copper);
}

.desktop-nav {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 650;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--copper);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms var(--ease);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: none;
}

.menu-button {
  display: grid;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: transparent;
  place-content: center;
  gap: 6px;
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] span:nth-of-type(2) {
  transform: translateY(3.75px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-of-type(3) {
  transform: translateY(-3.75px) rotate(-45deg);
}

.mobile-nav {
  height: calc(100vh - 72px);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.mobile-nav-inner {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: stretch;
  padding-top: 30px;
}

.mobile-nav-inner > a:not(.button) {
  padding: 16px 2px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1.1;
}

.mobile-nav-inner .button {
  margin-top: 28px;
  background: var(--copper);
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  padding: 142px 0 74px;
  background: var(--paper);
}

.hero-atmosphere {
  position: absolute;
  top: -260px;
  left: 46%;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(185, 111, 69, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.hero-atmosphere::before,
.hero-atmosphere::after {
  position: absolute;
  border: 1px solid rgba(21, 32, 44, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-atmosphere::before {
  inset: 88px;
}

.hero-atmosphere::after {
  inset: 176px;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 58px;
}

.hero-copy {
  align-self: center;
}

.hero-lede {
  max-width: 640px;
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2.1vw, 1.3rem);
  line-height: 1.58;
}

.hero-note {
  margin-bottom: 30px;
  padding-left: 16px;
  border-left: 2px solid var(--copper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-style: italic;
}

.hero-qualifiers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.hero-qualifiers li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: rgba(255, 253, 248, 0.5);
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.brief-window {
  position: relative;
  align-self: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: var(--navy-900);
  box-shadow: var(--shadow);
  color: var(--paper-light);
}

.brief-window::before {
  position: absolute;
  inset: -9px 16px auto;
  height: 8px;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: var(--paper-deep);
  content: "";
}

.brief-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 4px 20px;
  border-bottom: 1px solid var(--line-dark);
}

.brief-topline div {
  display: grid;
  gap: 4px;
}

.brief-topline strong {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
}

.brief-kicker {
  color: var(--muted-light);
  font-family: var(--mono);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 8px;
  border: 1px solid rgba(219, 154, 116, 0.32);
  border-radius: 99px;
  color: #ecc1a7;
  font-size: 0.65rem;
  font-weight: 700;
  white-space: nowrap;
}

.live-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper-light);
}

.brief-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 14px 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  background: var(--line-dark);
}

.brief-summary div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 12px 10px;
  background: var(--navy-850);
}

.brief-summary span {
  overflow: hidden;
  color: var(--muted-light);
  font-size: 0.64rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brief-summary strong {
  margin-top: 5px;
  color: var(--paper-light);
  font-family: var(--mono);
  font-size: 1.2rem;
  font-weight: 500;
}

.priority-card {
  margin-top: 10px;
  padding: 16px;
  border: 1px solid rgba(219, 154, 116, 0.3);
  border-radius: 5px;
  background: rgba(185, 111, 69, 0.08);
}

.priority-card-muted {
  border-color: var(--line-dark);
  background: var(--navy-850);
}

.priority-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.priority-id {
  color: var(--muted-light);
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.status {
  padding: 4px 7px;
  border: 1px solid currentColor;
  border-radius: 2px;
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-review {
  color: #ecc1a7;
}

.status-recheck {
  color: #b9cec1;
}

.priority-card h2 {
  margin: 15px 0 10px;
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.15;
}

.priority-card p {
  margin-bottom: 13px;
  color: #c4cbd1;
  font-size: 0.78rem;
  line-height: 1.55;
}

.priority-meta {
  display: grid;
  gap: 8px;
  margin: 0;
}

.priority-meta div {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 9px;
  padding-top: 8px;
  border-top: 1px solid var(--line-dark);
  font-size: 0.67rem;
}

.priority-meta dt {
  color: var(--muted-light);
}

.priority-meta dd {
  margin: 0;
  color: var(--paper-light);
}

.state-line {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-light);
  font-size: 0.65rem;
}

.state-line i {
  width: 28px;
  height: 1px;
  background: var(--sage);
}

.brief-boundary {
  display: flex;
  gap: 9px;
  margin: 14px 3px 0;
  color: var(--muted-light);
  font-size: 0.64rem;
  line-height: 1.45;
}

.brief-boundary span {
  color: var(--copper-light);
}

.signal-strip {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--navy-950);
  color: var(--paper-light);
}

.signal-grid {
  display: grid;
  gap: 20px;
  padding-top: 23px;
  padding-bottom: 23px;
}

.signal-grid p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.signal-grid ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  color: var(--muted-light);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.045em;
  list-style: none;
  text-transform: uppercase;
}

.signal-grid li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.signal-grid li::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--copper-light);
  content: "";
}

/* Common section structures */

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

.section-heading > p,
.split-heading > p {
  max-width: 660px;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.split-heading {
  display: grid;
  gap: 24px;
}

.split-heading h2 {
  max-width: 720px;
}

.centred {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centred .eyebrow {
  justify-content: center;
}

.centred > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

/* Problem */

.problem {
  background: var(--paper-light);
}

.problem-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--line);
}

.problem-grid article {
  min-height: 230px;
  padding: 28px;
  background: var(--paper-light);
}

.problem-grid article:nth-child(2) {
  background: #eee8dc;
}

.card-number {
  display: block;
  margin-bottom: 48px;
  color: var(--copper-dark);
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 700;
}

.problem-grid h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.problem-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.service-statement {
  display: grid;
  gap: 18px;
  margin-top: 70px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.service-statement .eyebrow {
  margin: 0;
}

.statement-copy {
  max-width: 980px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.4vw, 4rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.statement-copy em {
  color: var(--copper-dark);
  font-style: normal;
}

/* Service capabilities */

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

.service-family-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--line);
}

.service-family {
  min-height: 280px;
  padding: 28px;
  background: var(--paper-light);
}

.service-family-featured {
  background: var(--navy-900);
  color: var(--paper-light);
}

.service-number {
  display: block;
  margin-bottom: 42px;
  color: var(--copper-dark);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
}

.service-family-featured .service-number,
.service-family-featured .service-label {
  color: var(--copper-light);
}

.service-label {
  margin-bottom: 14px;
  color: var(--copper-dark);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.service-family h3 {
  max-width: 520px;
  margin-bottom: 15px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 500;
}

.service-family-featured h3 {
  color: var(--paper-light);
}

.service-family > p:last-child,
.service-family-featured div > p {
  max-width: 600px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.service-family-featured div > p {
  color: #c5cdd4;
}

.service-family-featured ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-family-featured li {
  padding: 7px 9px;
  border: 1px solid var(--line-dark);
  border-radius: 99px;
  color: #dce1e5;
  font-family: var(--mono);
  font-size: 0.61rem;
  letter-spacing: 0.035em;
}

.module-band {
  display: grid;
  gap: 30px;
  margin-top: 24px;
  padding: 30px;
  border: 1px solid rgba(140, 77, 44, 0.24);
  border-radius: 6px;
  background: rgba(185, 111, 69, 0.08);
}

.module-band .eyebrow {
  margin-bottom: 14px;
}

.module-band h3 {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
}

.module-band div > p:last-child {
  max-width: 600px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.module-band ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.module-band li {
  position: relative;
  padding: 11px 0 11px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.8rem;
}

.module-band li::before {
  position: absolute;
  top: 18px;
  left: 2px;
  width: 6px;
  height: 1px;
  background: var(--copper);
  content: "";
}

.module-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  font-style: italic;
}

/* Weekly loop */

.loop-section {
  overflow: hidden;
}

.loop {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.loop::before {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 20px;
  width: 1px;
  background: var(--line);
  content: "";
}

.loop li {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 22px;
  padding: 0 0 36px;
}

.loop-marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid var(--copper);
  border-radius: 50%;
  background: var(--paper);
  color: var(--copper-dark);
  place-items: center;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
}

.loop-copy {
  padding-top: 3px;
}

.loop-time {
  margin-bottom: 5px;
  color: var(--copper-dark);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.loop-copy h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.loop-copy p:last-child {
  max-width: 580px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* Audiences */

.audiences-section {
  border-top: 1px solid var(--line);
  background: var(--paper-deep);
}

.audience-grid {
  display: grid;
  gap: 16px;
}

.audience-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.45);
}

.audience-owner {
  background: var(--navy-900);
  color: var(--paper-light);
}

.audience-label {
  display: block;
  margin-bottom: 44px;
  color: var(--copper-dark);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.audience-owner .audience-label {
  color: var(--copper-light);
}

.audience-card h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

.audience-card > p {
  min-height: 88px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.audience-owner > p {
  color: #c2c9d0;
}

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

.audience-owner ul {
  border-color: var(--line-dark);
}

.audience-card li {
  position: relative;
  padding: 10px 0 10px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.audience-owner li {
  border-color: var(--line-dark);
  color: #d5dbe0;
}

.audience-card li::before {
  position: absolute;
  top: 17px;
  left: 2px;
  width: 7px;
  height: 1px;
  background: var(--copper);
  content: "";
}

/* Deliverables */

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

.deliverables-layout {
  display: grid;
  gap: 52px;
}

.deliverables-copy {
  align-self: start;
}

.deliverables-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--ink-soft);
}

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

.deliverable-list article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.deliverable-list article > span {
  padding-top: 3px;
  color: var(--copper-dark);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 700;
}

.deliverable-list h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.deliverable-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

/* Principles */

.principles-section {
  padding: 100px 0;
  background: var(--navy-950);
  color: var(--paper-light);
}

.principles-grid {
  display: grid;
  gap: 58px;
}

.principles-intro h2 {
  color: var(--paper-light);
  font-size: clamp(2.65rem, 5.5vw, 5rem);
}

.principles-intro > p:last-child {
  max-width: 530px;
  color: var(--muted-light);
}

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

.principles-list article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dark);
}

.principles-list article > span {
  color: var(--copper-light);
  font-family: var(--mono);
  font-size: 0.65rem;
}

.principles-list h3 {
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
}

.principles-list p {
  margin: 0;
  color: var(--muted-light);
  font-size: 0.84rem;
}

/* Fit */

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

.fit-grid {
  display: grid;
  gap: 16px;
}

.fit-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.35);
}

.fit-card-positive {
  border-color: rgba(120, 145, 131, 0.55);
  background: rgba(220, 229, 222, 0.5);
}

.fit-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.fit-title span {
  display: grid;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--copper-dark);
  place-items: center;
  font-family: var(--mono);
  font-size: 0.75rem;
}

.fit-card-positive .fit-title span {
  border-color: var(--sage);
  color: #3f6550;
}

.fit-title h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

.fit-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-card li {
  position: relative;
  padding: 11px 0 11px 22px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.fit-card li::before {
  position: absolute;
  top: 19px;
  left: 3px;
  width: 8px;
  height: 1px;
  background: var(--copper);
  content: "";
}

.fit-card-positive li::before {
  background: var(--sage);
}

/* Pilot */

.pilot-section {
  border-top: 1px solid var(--line);
  background: var(--paper-light);
}

.pilot-layout {
  display: grid;
  gap: 50px;
}

.pilot-copy p:not(.eyebrow) {
  max-width: 600px;
  color: var(--ink-soft);
}

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

.pilot-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.pilot-steps li > span {
  display: grid;
  width: 32px;
  height: 32px;
  border: 1px solid var(--copper);
  border-radius: 50%;
  color: var(--copper-dark);
  place-items: center;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
}

.pilot-steps h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.pilot-steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

/* FAQ */

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

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

.faq-heading {
  align-self: start;
}

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

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

.faq summary {
  position: relative;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 44px 18px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.3;
  list-style: none;
}

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

.faq summary span,
.faq summary span::after {
  position: absolute;
  right: 5px;
  width: 18px;
  height: 1px;
  background: var(--copper-dark);
  content: "";
  transition: transform 180ms ease;
}

.faq summary span::after {
  right: 0;
  transform: rotate(90deg);
}

.faq details[open] summary span::after {
  transform: rotate(0);
}

.faq details p {
  max-width: 680px;
  margin: -2px 46px 0 0;
  padding-bottom: 24px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* Closing and footer */

.closing-section {
  padding: 104px 0;
  background: var(--copper-dark);
  color: var(--paper-light);
}

.closing-inner {
  max-width: 900px;
  text-align: center;
}

.closing-inner .eyebrow {
  justify-content: center;
  color: #f0c6ad;
}

.closing-inner h2 {
  color: var(--paper-light);
  font-size: clamp(3rem, 6.8vw, 6.1rem);
}

.closing-inner > p:not(.eyebrow, .closing-note) {
  max-width: 650px;
  margin: 0 auto 30px;
  color: #f1d9ca;
  font-size: 1.05rem;
}

.closing-note {
  margin: 18px 0 0;
  color: #e6bca3;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-footer {
  padding: 64px 0 20px;
  background: var(--navy-950);
  color: var(--paper-light);
}

.footer-grid {
  display: grid;
  gap: 36px;
}

.site-footer .brand-mark {
  fill: var(--paper-light);
  stroke: var(--paper-light);
}

.site-footer .brand-mark-accent {
  fill: var(--copper-light);
  stroke: var(--copper-light);
}

.footer-brand p {
  max-width: 300px;
  margin: 18px 0 0;
  color: var(--muted-light);
  font-size: 0.82rem;
}

.footer-grid h2 {
  margin-bottom: 16px;
  color: var(--muted-light);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  color: #d7dce1;
  font-size: 0.8rem;
  list-style: none;
}

.footer-grid li + li {
  margin-top: 9px;
}

.footer-grid a:hover {
  color: var(--copper-light);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 52px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
  color: #7f8994;
  font-family: var(--mono);
  font-size: 0.61rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

/* Review-led homepage modules */

.hero-reassurance {
  max-width: 620px;
  margin: 24px 0 26px;
  padding-left: 16px;
  border-left: 2px solid var(--copper);
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.55;
}

.hero .hero-note {
  margin: 28px 0 0;
  padding: 0;
  border: 0;
  color: var(--copper-dark);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.state-line {
  flex-wrap: wrap;
  padding-top: 5px;
}

.deliverables-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--line);
}

.deliverable-card {
  min-height: 220px;
  padding: 26px;
  background: var(--paper-light);
}

.deliverable-card > span {
  display: block;
  margin-bottom: 42px;
  color: var(--copper-dark);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 700;
}

.deliverable-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.deliverable-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.worked-section {
  border-top: 1px solid var(--line);
  background: var(--paper-deep);
}

.worked-layout {
  display: grid;
  gap: 48px;
}

.worked-intro > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--ink-soft);
}

.worked-disposition {
  max-width: 430px;
  margin-top: 34px;
  padding: 20px;
  border: 1px solid rgba(140, 77, 44, 0.25);
  border-radius: 4px;
  background: rgba(255, 253, 248, 0.42);
}

.worked-disposition span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.worked-disposition strong {
  display: block;
  margin: 4px 0;
  color: var(--copper-dark);
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
}

.worked-disposition p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.priority-record {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper-light);
  box-shadow: 0 22px 54px rgba(11, 18, 28, 0.09);
}

.record-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding: 26px;
  border-bottom: 1px solid var(--line);
  background: var(--navy-900);
  color: var(--paper-light);
}

.record-header h3 {
  margin: 7px 0 0;
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 500;
}

.record-state {
  flex: 0 0 auto;
  padding: 5px 8px;
  border: 1px solid rgba(185, 215, 196, 0.38);
  border-radius: 99px;
  color: #cde0d3;
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.record-rows {
  margin: 0;
}

.record-rows > div {
  display: grid;
  gap: 6px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.record-rows dt {
  color: var(--copper-dark);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.record-rows dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.55;
}

.record-row-accent {
  background: rgba(185, 111, 69, 0.08);
}

.record-row-accent dd strong {
  color: var(--copper-dark);
}

.record-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 18px 22px;
  background: #efeadf;
}

.record-footer span {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.difference-section {
  border-top: 1px solid var(--line);
  background: var(--paper-light);
}

.contrast-grid {
  display: grid;
  gap: 16px;
}

.contrast-card {
  display: grid;
  min-height: 300px;
  grid-template-rows: auto auto 1fr auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.contrast-label {
  margin-bottom: 34px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contrast-card h3 {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
}

.contrast-shift {
  align-self: center;
  color: var(--copper);
  font-size: 1.8rem;
}

.contrast-result {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.contrast-result strong {
  color: var(--ink);
}

.loop > li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid var(--copper);
  border-radius: 50%;
  background: var(--paper);
  color: var(--copper-dark);
  place-items: center;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
}

.loop > li > div {
  padding-top: 3px;
}

.loop > li h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
}

.loop > li p {
  max-width: 580px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.loop-note {
  max-width: 810px;
  margin: 38px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.audience-section {
  border-top: 1px solid var(--line);
  background: var(--paper-deep);
}

.audience-grid > article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.48);
}

.audience-grid > article:nth-child(2) {
  background: var(--navy-900);
  color: var(--paper-light);
}

.audience-grid > article:nth-child(2) .audience-label {
  color: var(--copper-light);
}

.audience-grid > article:nth-child(2) li {
  border-color: var(--line-dark);
  color: #d5dbe0;
}

.audience-grid h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

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

.audience-grid li {
  position: relative;
  padding: 10px 0 10px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.audience-grid li::before {
  position: absolute;
  top: 17px;
  left: 2px;
  width: 7px;
  height: 1px;
  background: var(--copper);
  content: "";
}

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

.operator-layout {
  display: grid;
  gap: 46px;
}

.operator-copy > p:last-child {
  max-width: 610px;
  color: var(--ink-soft);
}

.operator-steps {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--line);
  list-style: none;
}

.operator-steps li {
  min-height: 150px;
  padding: 22px;
  background: var(--paper);
}

.operator-steps span {
  display: block;
  margin-bottom: 25px;
  color: var(--copper-dark);
  font-family: var(--mono);
  font-size: 0.63rem;
  font-weight: 700;
}

.operator-steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.operator-safeguards {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.operator-safeguards span {
  padding: 7px 10px;
  border: 1px solid rgba(120, 145, 131, 0.52);
  border-radius: 99px;
  background: rgba(220, 229, 222, 0.55);
  color: #355443;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.principles-section .inverse h2 {
  color: var(--paper-light);
}

.principles-section .inverse > p {
  color: var(--muted-light);
}

.evidence-maxim {
  margin: 0 0 62px;
  padding: 30px 0 30px 28px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  border-left: 3px solid var(--copper-light);
}

.evidence-maxim p {
  max-width: 980px;
  margin: 0;
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.8vw, 3.4rem);
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.principles-section .principles-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: var(--line-dark);
}

.principles-grid > article {
  min-height: 245px;
  padding: 26px;
  background: var(--navy-900);
}

.principles-grid > article > span {
  display: block;
  margin-bottom: 38px;
  color: var(--copper-light);
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 700;
}

.principles-grid > article h3 {
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
}

.principles-grid > article p {
  margin: 0;
  color: var(--muted-light);
  font-size: 0.82rem;
}

.record-note {
  display: grid;
  gap: 24px;
  margin-top: 56px;
  padding: 30px;
  border: 1px solid rgba(219, 154, 116, 0.34);
  border-radius: 6px;
  background: rgba(185, 111, 69, 0.08);
}

.record-note .eyebrow {
  margin-bottom: 12px;
  color: var(--copper-light);
}

.record-note h3 {
  margin: 0;
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
}

.record-note > p {
  margin: 0;
  color: #c7cfd6;
  font-size: 0.86rem;
}

.fit-label {
  margin-bottom: 32px;
  color: var(--copper-dark);
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fit-card h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

.fit-positive {
  border-color: rgba(120, 145, 131, 0.55);
  background: rgba(220, 229, 222, 0.5);
}

.fit-positive li::before {
  background: var(--sage);
}

.pilot-shape {
  max-width: 560px;
  margin-top: 36px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
}

.pilot-shape span {
  color: var(--copper-dark);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pilot-shape p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.faq-intro {
  align-self: start;
}

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

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

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

.faq-list summary {
  position: relative;
  min-height: 72px;
  padding: 20px 44px 20px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.3;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 35px;
  right: 5px;
  width: 18px;
  height: 1px;
  background: var(--copper-dark);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 700px;
  margin: -2px 46px 0 0;
  padding-bottom: 24px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.closing-cta {
  padding: 104px 0;
  background: var(--copper-dark);
  color: var(--paper-light);
}

.closing-cta .closing-inner {
  margin-inline: auto;
}

.footer-top {
  display: grid;
  gap: 20px;
  align-items: center;
}

.footer-top > p {
  max-width: 460px;
  margin: 0;
  color: var(--muted-light);
  font-size: 0.8rem;
}

.footer-top > a:last-child {
  color: #d7dce1;
  font-size: 0.8rem;
}

.footer-top > a:last-child:hover {
  color: var(--copper-light);
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.footer-bottom a:hover {
  color: var(--copper-light);
}

/* Legal pages */

.legal-main {
  min-height: 70vh;
  padding: 138px 0 90px;
  background: var(--paper-light);
}

.legal-shell {
  width: min(800px, calc(100% - 40px));
  margin-inline: auto;
}

.legal-header {
  margin-bottom: 50px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.legal-header h1 {
  max-width: none;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}

.legal-header p {
  color: var(--muted);
}

.legal-content h2 {
  margin-top: 42px;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
}

.legal-content h3 {
  margin-top: 28px;
}

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

.legal-content a {
  border-bottom: 1px solid var(--copper);
  color: var(--copper-dark);
}

.legal-notice {
  margin: 30px 0;
  padding: 20px;
  border-left: 3px solid var(--copper);
  background: var(--paper);
}

/* Reveal enhancement */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
}

.js [data-reveal][data-delay="1"] {
  transition-delay: 90ms;
}

.js [data-reveal][data-delay="2"] {
  transition-delay: 180ms;
}

.js [data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* Responsive */

@media (min-width: 640px) {
  .shell {
    width: min(var(--shell), calc(100% - 64px));
  }

  .section {
    padding: 112px 0;
  }

  .brief-window {
    padding: 22px;
  }

  .priority-meta {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .service-family-featured {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 54px 1fr;
    gap: 24px;
  }

  .service-family-featured .service-number {
    margin: 6px 0 0;
  }

  .module-band ul {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 28px;
  }

  .problem-grid article {
    min-height: 300px;
  }

  .loop {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 46px;
  }

  .loop::before {
    display: none;
  }

  .loop li {
    grid-template-columns: 42px 1fr;
    padding: 0;
  }

  .fit-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 860px) {
  .hero {
    min-height: 850px;
    padding: 160px 0 90px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(370px, 0.82fr);
    gap: clamp(40px, 6vw, 90px);
  }

  .hero-copy h1 {
    max-width: 760px;
  }

  .signal-grid {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .split-heading {
    grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
    align-items: end;
    gap: 70px;
  }

  .split-heading > p {
    padding-bottom: 6px;
  }

  .loop {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    padding-top: 14px;
  }

  .loop::before {
    display: block;
    top: 35px;
    right: 9%;
    bottom: auto;
    left: 9%;
    width: auto;
    height: 1px;
  }

  .loop li {
    display: block;
    padding: 0 14px;
  }

  .loop-marker {
    margin: 0 auto 26px;
  }

  .loop-copy {
    text-align: center;
  }

  .loop-copy h3 {
    min-height: 60px;
    font-size: 1.25rem;
  }

  .loop-copy p:last-child {
    font-size: 0.8rem;
  }

  .deliverables-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 92px;
  }

  .module-band {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 60px;
  }

  .module-band .module-note {
    grid-column: 2;
  }

  .deliverables-copy,
  .faq-heading {
    position: sticky;
    top: 110px;
  }

  .principles-grid {
    grid-template-columns: 1fr 0.92fr;
    gap: 100px;
  }

  .pilot-layout {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 90px;
  }

  .faq-layout {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 90px;
  }
}

@media (min-width: 1180px) {
  .header-inner {
    gap: 34px;
  }

  .desktop-nav {
    gap: 34px;
  }

  .brief-window {
    transform: rotate(0.45deg);
  }

  .problem-grid article,
  .audience-card {
    padding: 34px;
  }

  .card-number,
  .audience-label {
    margin-bottom: 64px;
  }
}

@media (max-width: 420px) {
  .shell,
  .legal-shell {
    width: min(100% - 30px, var(--shell));
  }

  h1 {
    font-size: 3rem;
  }

  .hero {
    padding-top: 124px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .button-row .text-link {
    align-self: flex-start;
  }

  .brief-summary span {
    white-space: normal;
  }

  .state-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .state-line i {
    width: 1px;
    height: 12px;
    margin-left: 4px;
  }
}

@media (min-width: 640px) {
  .deliverables-grid,
  .contrast-grid,
  .operator-steps,
  .principles-section .principles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .record-rows > div {
    grid-template-columns: 145px 1fr;
    gap: 22px;
    padding: 19px 26px;
  }

  .record-rows dt {
    padding-top: 2px;
  }

  .record-footer {
    padding-right: 26px;
    padding-left: 26px;
  }
}

@media (min-width: 860px) {
  .deliverables-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .worked-layout {
    grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1.38fr);
    align-items: start;
    gap: clamp(50px, 7vw, 96px);
  }

  .worked-intro {
    position: sticky;
    top: 110px;
  }

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

  .loop {
    grid-template-columns: repeat(3, 1fr);
    gap: 44px 22px;
  }

  .loop::before {
    display: none;
  }

  .loop li {
    padding: 0 12px;
  }

  .loop > li > span {
    margin: 0 auto 22px;
  }

  .loop > li > div {
    padding: 0;
    text-align: center;
  }

  .loop > li h3 {
    min-height: 0;
    font-size: 1.24rem;
  }

  .loop > li p {
    font-size: 0.79rem;
  }

  .operator-layout {
    grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
    align-items: start;
    gap: 70px;
  }

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

  .operator-safeguards {
    grid-column: 1 / -1;
  }

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

  .record-note {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 60px;
  }

  .faq-intro {
    position: sticky;
    top: 110px;
  }

  .footer-top {
    grid-template-columns: auto 1fr auto;
    gap: 50px;
  }
}

@media (min-width: 1080px) {
  .desktop-nav,
  .header-cta {
    display: flex;
  }

  .menu-button,
  .mobile-nav {
    display: none !important;
  }
}

@media (min-width: 1180px) {
  .contrast-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .loop {
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
  }
}

@media (max-width: 639px) {
  .record-header {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Family discipline line, owner-mandate deployment */

.hero-discipline {
  max-width: 620px;
  margin: 0 0 26px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.6;
}

.mandate-section {
  border-top: 1px solid var(--line);
  background: var(--paper-light);
}

.mandate-note {
  max-width: 810px;
  margin: 38px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.prose-link {
  color: var(--copper-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.prose-link:hover,
.prose-link:focus-visible {
  text-decoration-thickness: 2px;
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .mobile-nav,
  .button,
  .text-link,
  .closing-section,
  .closing-cta {
    display: none !important;
  }

  body,
  .problem,
  .audiences-section,
  .audience-section,
  .worked-section,
  .difference-section,
  .operator-section,
  .deliverables-section,
  .fit-section,
  .mandate-section,
  .pilot-section,
  .faq-section,
  .legal-main {
    background: #fff;
  }

  .hero,
  .section,
  .principles-section {
    padding: 32px 0;
  }
}
