@font-face {
    font-family: "Barlow Condensed";
    src: url("/assets/fonts/barlow-condensed-400.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Barlow Condensed";
    src: url("/assets/fonts/barlow-condensed-700.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Barlow Condensed";
    src: url("/assets/fonts/barlow-condensed-900.woff2") format("woff2");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

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

@font-face {
    font-family: "Newsreader";
    src: url("/assets/fonts/newsreader-variable-italic.woff2") format("woff2");
    font-weight: 200 800;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "IBM Plex Sans";
    src: url("/assets/fonts/ibm-plex-sans-400.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "IBM Plex Sans";
    src: url("/assets/fonts/ibm-plex-sans-500.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "IBM Plex Sans";
    src: url("/assets/fonts/ibm-plex-sans-600.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --cream: #f3eddf;
    --cream-light: #fbf7ed;
    --paper: #fffaf0;
    --ink: #1d1b18;
    --ink-soft: #4c463e;
    --rust: #9d2f1b;
    --rust-dark: #782313;
    --sand: #d8ccb4;
    --line: rgba(29, 27, 24, 0.18);
    --shadow: 0 24px 70px rgba(39, 31, 23, 0.16);
    --display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
    --text: "Newsreader", "Iowan Old Style", Georgia, serif;
    --serif: var(--text);
    --sans: var(--display);
    --shell: 1240px;
    --header-height: 84px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--cream);
    font-family: var(--text);
    font-size: 17px;
    line-height: 1.58;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    content: "";
    background: var(--rust);
}

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

a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

button,
input {
    font: inherit;
}

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

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

::selection {
    color: var(--cream-light);
    background: var(--rust);
}

.skip-link {
    position: fixed;
    z-index: 2000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: #fff;
    background: var(--ink);
    transform: translateY(-160%);
}

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

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

.section {
    padding: 120px 0;
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 3px;
    right: 0;
    left: 0;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header--solid {
    border-bottom-color: var(--line);
    background: rgba(243, 237, 223, 0.96);
    box-shadow: 0 8px 24px rgba(29, 27, 24, 0.06);
    backdrop-filter: blur(12px);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 32px;
}

.wordmark {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 10px;
    text-decoration: none;
}

.wordmark-mark {
    font-family: var(--serif);
    font-size: 1.32rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.05em;
}

.wordmark-rule {
    width: 2px;
    height: 34px;
    background: var(--rust);
    transform: rotate(14deg);
}

.wordmark-name {
    font-family: var(--serif);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: clamp(24px, 3vw, 48px);
    margin-left: auto;
}

.primary-nav a {
    position: relative;
    color: var(--ink-soft);
    font-size: 0.76rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.11em;
}

.primary-nav a::after {
    position: absolute;
    right: 0;
    bottom: -6px;
    left: 0;
    height: 1px;
    content: "";
    background: var(--rust);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 160ms ease;
}

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

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 13px 24px;
    border: 1px solid var(--ink);
    border-radius: 0;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

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

.button--small {
    min-height: 42px;
    padding: 10px 17px;
    font-size: 0.68rem;
}

.button--ink {
    color: var(--cream-light);
    background: var(--ink);
}

.button--ink:hover {
    color: #fff;
    background: var(--rust);
    border-color: var(--rust);
    box-shadow: 0 10px 24px rgba(157, 47, 27, 0.18);
}

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

.button--rust:hover {
    background: var(--rust-dark);
    border-color: var(--rust-dark);
    box-shadow: 0 12px 28px rgba(157, 47, 27, 0.24);
}

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

.button--cream:hover {
    color: #fff;
    background: transparent;
}

.button--outline-cream {
    color: var(--cream-light);
    border-color: rgba(255, 250, 240, 0.72);
    background: transparent;
}

.button--outline-cream:hover {
    color: var(--rust);
    background: var(--cream-light);
    border-color: var(--cream-light);
}

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

.hero {
    position: relative;
    min-height: 920px;
    overflow: hidden;
    padding: calc(var(--header-height) + 80px) 0 90px;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 74% 37%, rgba(255, 250, 240, 0.92) 0, rgba(255, 250, 240, 0) 34%),
        linear-gradient(115deg, var(--cream-light) 0%, var(--cream) 68%, #e7dcc7 100%);
}

.hero::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    opacity: 0.28;
    background-image:
        repeating-linear-gradient(90deg, transparent 0, transparent 79px, rgba(29, 27, 24, 0.035) 80px),
        repeating-linear-gradient(0deg, transparent 0, transparent 79px, rgba(29, 27, 24, 0.025) 80px);
}

.hero-wake {
    position: absolute;
    right: -8%;
    bottom: 72px;
    left: 42%;
    height: 2px;
    background: var(--rust);
    transform: rotate(-6deg);
    transform-origin: right;
}

.hero-wake::before,
.hero-wake::after {
    position: absolute;
    right: 0;
    height: 1px;
    content: "";
    background: rgba(29, 27, 24, 0.35);
}

.hero-wake::before {
    top: 20px;
    width: 94%;
}

.hero-wake::after {
    top: 40px;
    width: 84%;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
    align-items: center;
    gap: clamp(48px, 7vw, 120px);
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.eyebrow,
.section-kicker {
    margin: 0 0 22px;
    color: var(--rust);
    font-size: 0.71rem;
    font-weight: 850;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.17em;
}

.hero h1 {
    max-width: 880px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(3.6rem, 6.3vw, 6.8rem);
    font-weight: 500;
    line-height: 0.92;
    letter-spacing: -0.055em;
}

.hero h1 em {
    color: var(--rust);
    font-weight: 400;
}

.hero-deck {
    max-width: 730px;
    margin: 34px 0 0;
    color: var(--ink-soft);
    font-family: var(--serif);
    font-size: clamp(1.18rem, 1.55vw, 1.52rem);
    line-height: 1.46;
}

.hero-cta {
    max-width: 780px;
    margin-top: 44px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
}

.hero-cta-title {
    margin: 0;
    font-weight: 800;
}

.hero-cta-note {
    margin: 1px 0 14px;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.lead-form {
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: minmax(140px, 0.65fr) minmax(220px, 1fr) auto;
    align-items: end;
    gap: 10px;
}

.field {
    display: grid;
    gap: 6px;
    color: var(--ink);
    font-size: 0.66rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.field input {
    width: 100%;
    height: 54px;
    padding: 0 16px;
    border: 1px solid rgba(29, 27, 24, 0.42);
    border-radius: 0;
    color: var(--ink);
    outline: none;
    background: rgba(255, 250, 240, 0.76);
    font-size: 0.94rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    appearance: none;
    transition: border-color 150ms ease, background-color 150ms ease, box-shadow 150ms ease;
}

.field input:focus {
    border-color: var(--rust);
    background: var(--cream-light);
    box-shadow: 0 0 0 3px rgba(157, 47, 27, 0.11);
}

.field input::placeholder {
    color: #81776a;
}

.consent {
    display: flex;
    max-width: 700px;
    align-items: flex-start;
    gap: 9px;
    margin-top: 12px;
    color: var(--ink-soft);
    cursor: pointer;
    font-size: 0.72rem;
    line-height: 1.45;
}

.consent input {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
    margin: 2px 0 0;
    accent-color: var(--rust);
}

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

.form-status {
    min-height: 1.3em;
    margin: 8px 0 0;
    color: var(--rust);
    font-size: 0.78rem;
    font-weight: 700;
}

.form-submit[disabled] {
    cursor: wait;
    opacity: 0.66;
    transform: none;
}

.trust-line {
    display: flex;
    gap: 12px 28px;
    margin: 4px 0 0;
    color: var(--ink-soft);
    font-size: 0.66rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.trust-line span {
    position: relative;
}

.trust-line span:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: -16px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    content: "";
    background: var(--rust);
}

.book-stage {
    position: relative;
    display: grid;
    justify-items: center;
    padding: 30px 0 0;
}

.book-halo {
    position: absolute;
    top: 4%;
    left: 50%;
    width: min(36vw, 500px);
    height: min(36vw, 500px);
    border: 1px solid rgba(157, 47, 27, 0.32);
    border-radius: 50%;
    transform: translateX(-50%);
}

.book-halo::before,
.book-halo::after {
    position: absolute;
    border: 1px solid rgba(29, 27, 24, 0.12);
    border-radius: 50%;
    content: "";
}

.book-halo::before {
    inset: 8%;
}

.book-halo::after {
    inset: 17%;
}

.book-wrap {
    position: relative;
    z-index: 2;
    width: min(320px, 26vw);
    box-shadow:
        -12px 20px 0 rgba(157, 47, 27, 0.9),
        var(--shadow);
    transform: rotate(2.3deg);
    transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.book-wrap::after {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    box-shadow: inset -8px 0 15px rgba(29, 27, 24, 0.08);
}

.book-stage:hover .book-wrap {
    transform: rotate(0deg) translateY(-8px);
}

.book-wrap img {
    width: 100%;
}

.launch-note {
    position: relative;
    z-index: 3;
    display: grid;
    min-width: 250px;
    gap: 3px;
    margin-top: -25px;
    padding: 18px 20px;
    color: var(--cream-light);
    background: var(--ink);
    box-shadow: 0 14px 32px rgba(29, 27, 24, 0.18);
    text-align: center;
}

.launch-note span {
    font-size: 0.61rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.launch-note strong {
    font-family: var(--serif);
    font-size: 1.16rem;
    font-weight: 500;
}

.launch-buy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    padding: 10px 14px;
    color: var(--ink);
    background: var(--cream-light);
    font-size: 0.62rem;
    font-weight: 850;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    transition: color 160ms ease, background-color 160ms ease;
}

.launch-buy:hover {
    color: #fff;
    background: var(--rust);
}

.provocation {
    padding: 130px 0;
    border-bottom: 1px solid var(--line);
    background: var(--cream-light);
}

.provocation-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(56px, 8vw, 120px);
}

.provocation h2,
.section-heading h2,
.reader h2,
.diagnostic-copy h2,
.author h2,
.closing h2 {
    margin: 0;
    font-family: var(--serif);
    font-weight: 500;
    letter-spacing: -0.04em;
}

.provocation h2 {
    font-size: clamp(3.1rem, 5.3vw, 6.2rem);
    line-height: 0.98;
}

.provocation h2 em {
    color: var(--rust);
    font-weight: 400;
}

.provocation-copy {
    align-self: end;
    color: var(--ink-soft);
    font-family: var(--serif);
    font-size: 1.25rem;
    line-height: 1.55;
}

.provocation-copy p:first-child {
    margin-top: 0;
}

.manifesto {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: end;
    gap: 30px;
    margin: 110px 0 0;
    padding: 36px 0;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
}

.manifesto .quote-mark {
    color: var(--rust);
    font-family: var(--serif);
    font-size: 7rem;
    line-height: 0.6;
}

.manifesto p {
    max-width: 900px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(1.7rem, 3vw, 3.2rem);
    line-height: 1.15;
}

.manifesto footer {
    padding-bottom: 8px;
    color: var(--ink-soft);
    font-size: 0.64rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    white-space: nowrap;
}

.principles {
    background:
        linear-gradient(rgba(243, 237, 223, 0.96), rgba(243, 237, 223, 0.96)),
        repeating-linear-gradient(0deg, transparent 0, transparent 39px, rgba(29, 27, 24, 0.07) 40px);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.6fr);
    align-items: end;
    gap: 50px;
    margin-bottom: 72px;
}

.section-heading .section-kicker {
    grid-column: 1 / -1;
    margin-bottom: -22px;
}

.section-heading h2 {
    max-width: 860px;
    font-size: clamp(2.7rem, 4.8vw, 5.2rem);
    line-height: 1;
}

.section-heading > p:last-child {
    margin: 0 0 5px;
    color: var(--ink-soft);
    font-family: var(--serif);
    font-size: 1.08rem;
    line-height: 1.55;
}

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

.principle-card {
    display: grid;
    grid-template-columns: 70px minmax(240px, 0.75fr) minmax(320px, 1fr) 180px;
    align-items: center;
    gap: 34px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    transition: padding 180ms ease, background-color 180ms ease;
}

.principle-card:hover {
    padding-right: 18px;
    padding-left: 18px;
    background: rgba(255, 250, 240, 0.72);
}

.principle-number {
    color: var(--rust);
    font-family: var(--serif);
    font-size: 1.8rem;
    font-style: italic;
}

.principle-card h3 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(1.35rem, 2.3vw, 2rem);
    font-weight: 500;
}

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

.principle-test {
    justify-self: end;
    padding: 7px 10px;
    border: 1px solid var(--line);
    color: var(--rust);
    font-size: 0.62rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.system-figure {
    max-width: 1000px;
    margin: 110px auto 0;
}

.system-figure img {
    width: 100%;
    border: 1px solid var(--line);
    background: #fff;
}

.system-figure figcaption {
    margin-top: 12px;
    color: var(--ink-soft);
    font-size: 0.74rem;
    text-align: right;
}

.section--ink {
    position: relative;
    color: var(--cream-light);
    background: var(--ink);
}

.section--ink::before {
    position: absolute;
    top: 0;
    right: 6%;
    width: 1px;
    height: 100%;
    content: "";
    background: rgba(255, 255, 255, 0.07);
}

.section-heading--light h2 {
    color: var(--cream-light);
}

.case-grid {
    display: grid;
    gap: 18px;
}

.case-pair {
    display: grid;
    grid-template-columns: 1fr 70px 1fr;
    gap: 26px;
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.025);
    transition: border-color 180ms ease, background-color 180ms ease;
}

.case-pair:hover {
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.045);
}

.case-pair h3 {
    margin: 8px 0;
    font-family: var(--serif);
    font-size: clamp(1.5rem, 2.4vw, 2.2rem);
    font-weight: 500;
}

.case-pair p {
    max-width: 460px;
    margin: 0;
    color: rgba(255, 250, 240, 0.68);
}

.case-label {
    color: #d19787;
    font-size: 0.61rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.case-label--worked {
    color: var(--cream);
}

.case-versus {
    align-self: center;
    color: var(--rust);
    font-family: var(--serif);
    font-size: 2rem;
    font-style: italic;
    text-align: center;
}

.reader {
    background: var(--cream-light);
}

.reader-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(60px, 9vw, 140px);
}

.reader-copy {
    position: sticky;
    top: calc(var(--header-height) + 50px);
    align-self: start;
}

.reader h2 {
    font-size: clamp(2.5rem, 4.5vw, 4.8rem);
    line-height: 1.02;
}

.reader-roles {
    border-top: 1px solid var(--ink);
}

.role-card {
    padding: 38px 0;
    border-bottom: 1px solid var(--line);
}

.role-card > span {
    color: var(--rust);
    font-size: 0.63rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.role-card h3 {
    max-width: 600px;
    margin: 10px 0;
    font-family: var(--serif);
    font-size: clamp(1.65rem, 3vw, 2.8rem);
    font-weight: 500;
    line-height: 1.1;
}

.role-card p {
    max-width: 620px;
    margin: 0;
    color: var(--ink-soft);
}

.diagnostic-band {
    background: #ddd1bb;
}

.diagnostic-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
    align-items: center;
    gap: clamp(60px, 9vw, 140px);
}

.diagnostic-copy h2 {
    font-size: clamp(2.7rem, 5vw, 5.4rem);
    line-height: 0.99;
}

.diagnostic-copy > p:not(.section-kicker) {
    max-width: 700px;
    color: var(--ink-soft);
    font-family: var(--serif);
    font-size: 1.2rem;
}

.check-list {
    display: grid;
    gap: 10px;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    font-size: 0.83rem;
    font-weight: 700;
}

.check-list li::before {
    position: absolute;
    top: 0.35em;
    left: 0;
    width: 12px;
    height: 7px;
    border-bottom: 2px solid var(--rust);
    border-left: 2px solid var(--rust);
    content: "";
    transform: rotate(-45deg);
}

.diagnostic-form-card {
    padding: clamp(30px, 4.5vw, 54px);
    border-top: 5px solid var(--rust);
    background: var(--cream-light);
    box-shadow: var(--shadow);
}

.card-index {
    color: var(--rust);
    font-size: 0.61rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.diagnostic-form-card h3 {
    margin: 18px 0 10px;
    font-family: var(--serif);
    font-size: clamp(2rem, 3.4vw, 3.1rem);
    font-weight: 500;
    line-height: 1;
}

.diagnostic-form-card > p {
    color: var(--ink-soft);
}

.lead-form--stacked {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.lead-form--stacked .consent,
.lead-form--stacked .form-status {
    margin-top: 0;
}

.privacy-note {
    margin: 12px 0 0;
    font-size: 0.7rem;
    text-align: center;
}

.author {
    background: var(--cream);
}

.author-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
    align-items: center;
    gap: clamp(60px, 9vw, 140px);
}

.author-monogram {
    position: relative;
    display: grid;
    min-height: 480px;
    align-content: center;
    justify-items: center;
    border: 1px solid var(--ink);
    background:
        linear-gradient(135deg, transparent 49.8%, var(--rust) 50%, var(--rust) 50.4%, transparent 50.6%);
}

.author-monogram::before {
    position: absolute;
    inset: 24px;
    border: 1px solid var(--line);
    content: "";
}

.author-monogram > span {
    font-family: var(--serif);
    font-size: clamp(6rem, 12vw, 10rem);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.1em;
}

.author-monogram small {
    position: absolute;
    right: 38px;
    bottom: 38px;
    font-size: 0.61rem;
    font-weight: 850;
    line-height: 1.6;
    text-align: right;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.author h2 {
    font-size: clamp(2.7rem, 5vw, 5.3rem);
    line-height: 0.99;
}

.author-copy > p:not(.section-kicker) {
    max-width: 760px;
    color: var(--ink-soft);
    font-family: var(--serif);
    font-size: 1.16rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 18px;
    color: var(--rust);
    font-size: 0.73rem;
    font-weight: 850;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.text-link span {
    transition: transform 160ms ease;
}

.text-link:hover span {
    transform: translateX(5px);
}

.text-link--nav {
    margin: 0 0 0 auto;
}

.closing {
    color: var(--cream-light);
    background: var(--rust);
}

.closing-inner {
    text-align: center;
}

.closing .section-kicker {
    color: rgba(255, 250, 240, 0.72);
}

.closing h2 {
    font-size: clamp(3rem, 6vw, 6.7rem);
    line-height: 0.96;
}

.closing-line {
    margin: 30px 0 38px;
    font-family: var(--serif);
    font-size: 1.3rem;
    font-style: italic;
}

.closing-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.site-footer {
    padding: 54px 0;
    color: rgba(255, 250, 240, 0.7);
    background: var(--ink);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr;
    gap: 40px;
    font-size: 0.75rem;
}

.footer-grid p {
    margin: 4px 0;
}

.footer-grid > div:nth-child(3) {
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 8px;
}

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

.footer-title {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 600;
    text-decoration: none;
}

.copyright {
    grid-column: 1 / -1;
    margin-top: 20px !important;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

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

/* Diagnostic */

.diagnostic-page,
.legal-page {
    padding-top: var(--header-height);
}

.welcome-banner {
    padding: 13px 0;
    color: var(--cream-light);
    background: var(--rust);
    font-size: 0.78rem;
    font-weight: 700;
    text-align: center;
}

.diagnostic-hero {
    padding: 95px 0 75px;
    border-bottom: 1px solid var(--line);
    background: var(--cream-light);
}

.diagnostic-hero-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 60px;
}

.diagnostic-hero h1,
.legal-article h1 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(3.2rem, 7vw, 7rem);
    font-weight: 500;
    line-height: 0.93;
    letter-spacing: -0.055em;
}

.diagnostic-hero p:not(.eyebrow) {
    max-width: 690px;
    margin: 28px 0 0;
    color: var(--ink-soft);
    font-family: var(--serif);
    font-size: 1.24rem;
}

.diagnostic-meter {
    display: flex;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
}

.diagnostic-meter span {
    display: grid;
    min-width: 105px;
    justify-items: center;
    padding: 18px;
    border-right: 1px solid var(--line);
    font-size: 0.61rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.diagnostic-meter span:last-child {
    border-right: 0;
}

.diagnostic-meter strong {
    color: var(--rust);
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 500;
}

.assessment {
    background:
        linear-gradient(rgba(243, 237, 223, 0.96), rgba(243, 237, 223, 0.96)),
        repeating-linear-gradient(90deg, transparent 0, transparent 79px, rgba(29, 27, 24, 0.04) 80px);
}

.assessment-shell {
    max-width: 920px;
}

.assessment-progress {
    position: sticky;
    z-index: 30;
    top: var(--header-height);
    width: 100%;
    height: 5px;
    background: var(--sand);
}

.assessment-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--rust);
    transition: width 240ms ease;
}

.progress-label {
    margin: 12px 0 38px;
    color: var(--ink-soft);
    font-size: 0.68rem;
    font-weight: 800;
    text-align: right;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.question-card {
    margin: 0 0 22px;
    padding: 34px;
    border: 1px solid var(--line);
    background: var(--cream-light);
    box-shadow: 0 8px 24px rgba(29, 27, 24, 0.035);
}

.question-card legend {
    display: grid;
    width: 100%;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    padding: 0;
    font-family: var(--serif);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 500;
    line-height: 1.18;
}

.question-card legend small {
    display: block;
    margin-bottom: 5px;
    color: var(--rust);
    font-family: var(--sans);
    font-size: 0.6rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.question-number {
    color: var(--rust);
    font-style: italic;
}

.answer-list {
    display: grid;
    gap: 8px;
    margin-top: 26px;
}

.answer {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    gap: 13px;
    padding: 14px;
    border: 1px solid var(--line);
    cursor: pointer;
    font-size: 0.9rem;
    transition: border-color 140ms ease, background-color 140ms ease, transform 140ms ease;
}

.answer:hover {
    border-color: rgba(157, 47, 27, 0.55);
    background: rgba(157, 47, 27, 0.035);
    transform: translateX(3px);
}

.answer input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.answer-control {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid var(--ink);
    color: var(--ink);
    font-size: 0.65rem;
    font-weight: 850;
}

.answer:has(input:checked) {
    border-color: var(--rust);
    background: rgba(157, 47, 27, 0.07);
}

.answer input:checked + .answer-control {
    color: #fff;
    background: var(--rust);
    border-color: var(--rust);
}

.answer:has(input:focus-visible) {
    outline: 3px solid var(--rust);
    outline-offset: 3px;
}

.assessment-submit {
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 36px 0 70px;
}

.assessment-submit p {
    color: var(--ink-soft);
    font-size: 0.7rem;
}

.result-card {
    margin-top: 10px;
    padding: clamp(32px, 6vw, 70px);
    color: var(--cream-light);
    background: var(--ink);
    box-shadow: var(--shadow);
}

.result-card[hidden] {
    display: none;
}

.result-score {
    color: var(--rust);
    font-family: var(--serif);
    font-size: clamp(5rem, 13vw, 10rem);
    line-height: 0.9;
}

.result-score small {
    color: rgba(255, 250, 240, 0.42);
    font-size: 0.2em;
}

.result-card h2 {
    max-width: 760px;
    margin: 28px 0 14px;
    font-family: var(--serif);
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 500;
    line-height: 1;
}

.result-card > p:not(.section-kicker, .result-book-note) {
    max-width: 700px;
    color: rgba(255, 250, 240, 0.72);
    font-family: var(--serif);
    font-size: 1.16rem;
}

.result-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 40px;
    margin-top: 38px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.result-actions > div > span {
    font-size: 0.62rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.result-actions ol {
    display: grid;
    gap: 9px;
    max-width: 590px;
    margin: 16px 0 0;
    padding-left: 21px;
    color: rgba(255, 250, 240, 0.78);
    font-size: 0.87rem;
}

.result-actions .button--ink {
    border-color: rgba(255, 255, 255, 0.3);
}

.result-book-note {
    margin: 38px 0 0;
    padding: 17px 20px;
    color: var(--ink);
    background: var(--cream);
    font-size: 0.82rem;
}

.result-book-note a {
    margin-left: 6px;
    color: var(--rust);
    font-weight: 800;
}

/* Legal */

.legal-main {
    min-height: 70vh;
    padding: 100px 0 120px;
    background: var(--cream-light);
}

.legal-article {
    max-width: 830px;
}

.legal-article h1 {
    font-size: clamp(3rem, 6vw, 6rem);
}

.legal-updated {
    margin: 22px 0 70px;
    color: var(--ink-soft);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.legal-article h2 {
    margin: 46px 0 10px;
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 500;
}

.legal-article p:not(.eyebrow, .legal-updated) {
    color: var(--ink-soft);
    font-family: var(--serif);
    font-size: 1.08rem;
}

@media (max-width: 1080px) {
    .primary-nav {
        display: none;
    }

    .hero {
        min-height: 0;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
        gap: 55px;
    }

    .hero h1 {
        font-size: clamp(3.4rem, 7.4vw, 5.5rem);
    }

    .form-row {
        grid-template-columns: 0.65fr 1fr;
    }

    .form-row .button {
        grid-column: 1 / -1;
    }

    .book-wrap {
        width: min(300px, 30vw);
    }

    .principle-card {
        grid-template-columns: 58px minmax(220px, 0.7fr) 1fr;
    }

    .principle-test {
        display: none;
    }
}

@media (max-width: 820px) {
    :root {
        --header-height: 72px;
    }

    .shell,
    .nav-shell {
        width: min(calc(100% - 32px), var(--shell));
    }

    .section {
        padding: 82px 0;
    }

    .site-header .button--small {
        padding: 9px 12px;
        font-size: 0.6rem;
    }

    .wordmark-name {
        display: none;
    }

    .hero {
        padding-top: calc(var(--header-height) + 55px);
    }

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

    .book-wrap {
        width: min(240px, 55vw);
    }

    .book-halo {
        width: 320px;
        height: 320px;
    }

    .hero h1 {
        font-size: clamp(3.2rem, 13vw, 5.6rem);
    }

    .hero-wake {
        right: -12%;
        bottom: 39%;
        left: 25%;
    }

    .provocation-grid,
    .section-heading,
    .reader-grid,
    .diagnostic-grid,
    .author-grid {
        grid-template-columns: 1fr;
    }

    .provocation-grid,
    .reader-grid,
    .diagnostic-grid,
    .author-grid {
        gap: 48px;
    }

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

    .manifesto footer {
        grid-column: 2;
    }

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

    .section-heading {
        gap: 36px;
    }

    .principle-card {
        grid-template-columns: 52px 1fr;
        align-items: start;
        gap: 10px 22px;
    }

    .principle-card p {
        grid-column: 2;
    }

    .case-pair {
        grid-template-columns: 1fr;
    }

    .case-versus {
        justify-self: start;
    }

    .reader-copy {
        position: static;
    }

    .author-monogram {
        min-height: 380px;
    }

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

    .diagnostic-meter {
        justify-self: start;
    }
}

@media (max-width: 560px) {
    .site-header .button--small {
        max-width: 145px;
        min-height: 38px;
    }

    .hero {
        padding-bottom: 72px;
    }

    .hero h1 {
        font-size: 3.15rem;
    }

    .hero-deck {
        font-size: 1.08rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-row .button {
        grid-column: 1;
    }

    .trust-line {
        flex-wrap: wrap;
        gap: 5px 20px;
    }

    .trust-line span:not(:last-child)::after {
        right: -12px;
    }

    .provocation h2,
    .section-heading h2,
    .reader h2,
    .diagnostic-copy h2,
    .author h2 {
        font-size: 2.8rem;
    }

    .manifesto {
        gap: 16px;
        margin-top: 72px;
    }

    .manifesto .quote-mark {
        font-size: 4rem;
    }

    .manifesto p {
        font-size: 1.5rem;
    }

    .principle-card {
        padding: 24px 0;
    }

    .principle-card:hover {
        padding-right: 0;
        padding-left: 0;
    }

    .system-figure {
        margin-top: 70px;
    }

    .case-pair {
        padding: 26px;
    }

    .diagnostic-form-card {
        padding: 28px 22px;
    }

    .footer-grid,
    .footer-grid--simple {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .copyright {
        grid-column: 1;
    }

    .diagnostic-hero {
        padding: 70px 0 55px;
    }

    .diagnostic-hero h1,
    .legal-article h1 {
        font-size: 3.5rem;
    }

    .diagnostic-meter {
        width: 100%;
    }

    .diagnostic-meter span {
        min-width: 0;
        flex: 1;
        padding: 13px 8px;
    }

    .question-card {
        padding: 26px 20px;
    }

    .question-card legend {
        grid-template-columns: 42px 1fr;
        gap: 10px;
    }

    .answer {
        align-items: start;
        padding: 12px 10px;
    }

    .result-actions {
        grid-template-columns: 1fr;
    }

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

    .result-actions .button {
        justify-self: start;
    }

    .legal-main {
        padding: 70px 0 90px;
    }
}

@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-ready .reveal {
        opacity: 1;
        transform: none;
    }
}

@media print {
    .site-header,
    .site-footer,
    .diagnostic-hero,
    .assessment-progress,
    .progress-label,
    [data-diagnostic-form],
    .result-actions .button {
        display: none !important;
    }

    body,
    .assessment {
        color: #000;
        background: #fff;
    }

    .diagnostic-page {
        padding: 0;
    }

    .assessment {
        padding: 0;
    }

    .result-card {
        display: block !important;
        margin: 0;
        color: #000;
        background: #fff;
        box-shadow: none;
    }

    .result-card * {
        color: #000 !important;
    }

    .result-actions {
        display: block !important;
    }

    .result-actions > div > span {
        display: block !important;
        margin-bottom: 12px !important;
    }

    .result-actions ol {
        max-width: none !important;
        margin: 0 !important;
        padding-left: 1.35rem !important;
    }
}

/* Editorial launch system */

.wordmark {
    align-items: center;
    gap: 14px;
}

.wordmark-title {
    display: grid;
    font-family: var(--serif);
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 0.92;
    text-transform: uppercase;
    letter-spacing: 0.055em;
}

.wordmark-title span:last-child {
    color: var(--rust);
}

.wordmark-byline {
    padding-left: 14px;
    border-left: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 0.58rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.hero {
    min-height: 0;
    padding: calc(var(--header-height) + 64px) 0 34px;
    background: var(--cream-light);
}

.hero::before {
    content: none;
}

.hero-grid {
    grid-template-columns: minmax(280px, 0.64fr) minmax(0, 1.36fr);
    align-items: center;
    gap: clamp(64px, 9vw, 138px);
}

.hero-copy {
    max-width: 790px;
}

.hero h1 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(4.4rem, 6.6vw, 7rem);
    line-height: 0.9;
    letter-spacing: -0.055em;
}

.hero h1 span {
    color: var(--rust);
}

.hero-deck {
    max-width: 710px;
    margin-top: 34px;
    font-size: clamp(1.1rem, 1.5vw, 1.34rem);
    line-height: 1.52;
}

.hero-deck em {
    color: var(--ink);
}

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

.hero-secondary-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-size: 0.7rem;
    font-weight: 850;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-secondary-link {
    border-bottom: 1px solid var(--rust);
}

.hero-secondary-link:hover {
    color: var(--rust);
}

.hero-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 42px 0 0;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.hero-details div {
    display: grid;
    gap: 5px;
}

.hero-details dt {
    color: var(--rust);
    font-size: 0.59rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.hero-details dd {
    margin: 0;
    color: var(--ink-soft);
    font-family: var(--serif);
    font-size: 0.92rem;
    line-height: 1.4;
}

.book-stage {
    display: block;
    margin: 0;
    padding: 0;
}

.book-frame {
    width: min(340px, 100%);
    margin-inline: auto;
    padding: 13px;
    border: 1px solid var(--ink);
    background: var(--paper);
}

.book-frame img {
    width: 100%;
}

.book-stage figcaption {
    display: flex;
    width: min(340px, 100%);
    justify-content: space-between;
    gap: 18px;
    margin: 12px auto 0;
    color: var(--ink-soft);
    font-size: 0.57rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.book-stage figcaption span:last-child {
    text-align: right;
}

.hero-towline {
    display: grid;
    width: min(calc(100% - 48px), var(--shell));
    grid-template-columns: minmax(80px, 1fr) auto;
    align-items: center;
    gap: 18px;
    margin: 42px auto 0;
}

.hero-towline > span {
    position: relative;
    height: 2px;
    background: var(--rust);
}

.hero-towline > span::after {
    position: absolute;
    top: 50%;
    right: -1px;
    width: 8px;
    height: 8px;
    border: 2px solid var(--rust);
    border-radius: 50%;
    content: "";
    background: var(--cream-light);
    transform: translateY(-50%);
}

.hero-towline small {
    color: var(--ink-soft);
    font-family: var(--serif);
    font-size: 0.78rem;
    font-style: italic;
}

.lead-strip {
    padding: 58px 0;
    color: var(--cream-light);
    background: var(--rust);
    scroll-margin-top: var(--header-height);
}

.lead-strip-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
    align-items: center;
    gap: clamp(48px, 7vw, 100px);
}

.lead-strip .section-kicker {
    margin-bottom: 12px;
    color: rgba(255, 250, 240, 0.72);
}

.lead-strip-copy h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: -0.035em;
}

.lead-strip-copy > p:last-child {
    margin: 14px 0 0;
    color: rgba(255, 250, 240, 0.75);
    font-size: 0.78rem;
}

.lead-form--strip .field {
    color: var(--cream-light);
}

.lead-form--strip .field input {
    border-color: rgba(255, 250, 240, 0.6);
    background: var(--cream-light);
}

.lead-form--strip .consent {
    color: rgba(255, 250, 240, 0.78);
}

.lead-form--strip .form-status {
    color: var(--cream-light);
}

.lead-form--strip .button--ink {
    border-color: var(--ink);
}

.author {
    background: var(--cream-light);
}

.author-grid {
    grid-template-columns: minmax(280px, 400px) minmax(0, 1fr);
}

.author-portrait {
    margin: 0;
    padding: 12px;
    border: 1px solid var(--ink);
    background: var(--paper);
}

.author-portrait img {
    width: 100%;
}

.author-portrait figcaption {
    margin: 12px 2px 0;
    color: var(--ink-soft);
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.11em;
}

.author h2 {
    max-width: 800px;
    font-size: clamp(2.6rem, 4.5vw, 4.9rem);
    line-height: 1;
}

@media (max-width: 1080px) {
    .hero-grid {
        grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1.38fr);
        gap: 58px;
    }

    .book-frame {
        width: min(300px, 100%);
    }

    .book-stage figcaption {
        width: min(300px, 100%);
    }

    .lead-strip-grid {
        grid-template-columns: 0.8fr 1.2fr;
        gap: 44px;
    }
}

@media (max-width: 820px) {
    .hero {
        padding-top: calc(var(--header-height) + 52px);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .hero-copy {
        order: 1;
    }

    .book-stage {
        order: 2;
        justify-self: start;
    }

    .book-frame,
    .book-stage figcaption {
        width: min(310px, 70vw);
        margin-inline: 0;
    }

    .hero-towline {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .lead-strip-grid {
        grid-template-columns: 1fr;
    }

    .author-grid {
        grid-template-columns: minmax(250px, 400px);
    }

    .author-copy {
        grid-column: 1;
    }
}

@media (max-width: 560px) {
    .wordmark {
        gap: 0;
    }

    .wordmark-title {
        font-size: 0.78rem;
    }

    .wordmark-byline {
        display: none;
    }

    .site-header .button--small {
        max-width: 154px;
    }

    .hero h1 {
        font-size: clamp(3.45rem, 16vw, 4rem);
    }

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

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

    .hero-secondary-link {
        align-self: flex-start;
        padding-bottom: 3px;
    }

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

    .hero-towline small {
        font-size: 0.7rem;
    }

    .lead-strip {
        padding: 48px 0;
    }

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

/* Type that carries the book's tension: industrial scale, editorial judgment */

.site-header,
.button,
.primary-nav,
.eyebrow,
.section-kicker,
.hero-secondary-link,
.hero-details dt,
.book-stage figcaption,
.principle-test,
.case-label,
.role-card > span,
.card-index,
.field > span,
.consent,
.check-list,
.author-portrait figcaption,
.text-link,
.diagnostic-meter,
.progress-label,
.question-card small,
.question-number,
.answer-control,
.assessment-submit > p,
.footer-title {
    font-family: var(--display);
}

.wordmark-title {
    font-family: var(--display);
    font-size: 1.08rem;
    font-weight: 900;
    line-height: 0.78;
    letter-spacing: 0.025em;
}

.wordmark-byline {
    font-family: var(--display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.primary-nav a {
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.13em;
}

.button {
    font-family: var(--display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.085em;
}

.button--small {
    font-size: 0.8rem;
}

.eyebrow,
.section-kicker {
    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.19em;
}

.hero-copy {
    max-width: 840px;
}

.hero h1 {
    max-width: 840px;
    font-family: var(--display);
    font-size: clamp(4.25rem, 5.9vw, 7.5rem);
    font-weight: 900;
    line-height: 0.82;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.hero h1 .hero-hook,
.hero h1 .hero-pivot {
    display: block;
}

.hero h1 .hero-hook {
    color: var(--ink);
    text-wrap: balance;
}

.hero h1 .hero-pivot {
    margin: 0.17em 0 0.1em 0.025em;
    color: var(--ink);
    font-family: var(--text);
    font-size: 0.54em;
    font-style: italic;
    font-weight: 430;
    line-height: 0.9;
    letter-spacing: -0.045em;
    text-transform: none;
}

.hero h1 .hero-hook--rust {
    color: var(--rust);
}

.hero-deck {
    max-width: 650px;
    margin-top: 32px;
    font-family: var(--text);
    font-size: clamp(1.2rem, 1.6vw, 1.48rem);
    line-height: 1.45;
}

.hero-secondary-link {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.11em;
}

.hero-details dt {
    font-size: 0.72rem;
    font-weight: 700;
}

.hero-details dd {
    font-size: 1.04rem;
    line-height: 1.34;
}

.hero-towline small {
    max-width: 560px;
    font-size: 0.92rem;
}

.lead-strip-copy h2,
.diagnostic-form-card h3 {
    font-family: var(--display);
    font-weight: 900;
    line-height: 0.88;
    text-transform: uppercase;
    letter-spacing: -0.025em;
}

.lead-strip-copy h2 {
    font-size: clamp(2.7rem, 4vw, 4.2rem);
}

.lead-strip-copy > p:last-child,
.diagnostic-form-card > p {
    font-family: var(--text);
    font-size: 1.02rem;
    line-height: 1.4;
}

.provocation h2,
.section-heading h2,
.reader h2,
.diagnostic-copy h2,
.author h2,
.closing h2,
.diagnostic-hero h1,
.legal-article h1,
.result-card h2 {
    font-family: var(--display);
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.provocation h2 em {
    display: inline-block;
    margin-top: 0.12em;
    font-family: var(--text);
    font-size: 0.72em;
    font-style: italic;
    font-weight: 430;
    line-height: 0.94;
    letter-spacing: -0.045em;
    text-transform: none;
}

.provocation-copy,
.section-heading > p:last-child,
.principle-card p,
.case-pair p,
.role-card p,
.diagnostic-copy > p:not(.section-kicker),
.author-copy > p:not(.section-kicker),
.diagnostic-hero p:not(.eyebrow),
.legal-article p,
.answer,
.result-card > p {
    font-family: var(--text);
}

.provocation-copy {
    font-size: 1.36rem;
    line-height: 1.48;
}

.manifesto p {
    font-family: var(--text);
    font-size: clamp(2rem, 3.3vw, 3.7rem);
    font-style: italic;
    font-weight: 430;
    letter-spacing: -0.035em;
}

.manifesto footer {
    font-family: var(--display);
    font-size: 0.76rem;
    font-weight: 700;
}

.principle-number {
    font-family: var(--display);
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 900;
}

.principle-card h3,
.case-pair h3,
.role-card h3 {
    font-family: var(--display);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.principle-card h3 {
    font-size: clamp(1.65rem, 2.5vw, 2.3rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.case-pair h3 {
    font-size: clamp(1.9rem, 2.8vw, 2.7rem);
}

.role-card h3 {
    font-size: clamp(2rem, 3.4vw, 3.35rem);
    line-height: 0.92;
    text-transform: uppercase;
}

.case-versus {
    font-family: var(--text);
    font-size: 2.4rem;
}

.diagnostic-form-card h3 {
    font-size: clamp(2.1rem, 3vw, 3rem);
}

.question-card legend,
.result-card h2 {
    font-family: var(--display);
    font-weight: 700;
}

.question-card legend {
    letter-spacing: -0.015em;
}

.answer {
    font-size: 1.05rem;
}

.closing-line {
    font-size: 1.55rem;
}

.site-footer {
    font-family: var(--display);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

@media (max-width: 820px) {
    .hero h1 {
        max-width: 760px;
        font-size: clamp(4.5rem, 12vw, 6.7rem);
    }

    .hero-towline small {
        max-width: 100%;
    }
}

@media (max-width: 560px) {
    body {
        font-size: 16px;
    }

    .wordmark-title {
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: clamp(3.6rem, 17vw, 4.55rem);
        line-height: 0.8;
    }

    .hero h1 .hero-pivot {
        font-size: 0.55em;
        line-height: 0.92;
    }

    .hero-deck {
        font-size: 1.18rem;
    }

    .lead-strip-copy h2 {
        font-size: 3rem;
    }

    .provocation h2,
    .section-heading h2,
    .reader h2,
    .diagnostic-copy h2,
    .author h2,
    .closing h2 {
        line-height: 0.9;
    }
}

/* Premium editorial system */

:root {
    --cream: #eee8dc;
    --cream-light: #f8f4eb;
    --paper: #fffdf8;
    --ink: #171714;
    --ink-soft: #5d584f;
    --rust: #a73520;
    --rust-dark: #7f2515;
    --sand: #d7cdbd;
    --line: rgba(23, 23, 20, 0.16);
    --display: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
    --text: "Newsreader", Georgia, serif;
    --sans: var(--display);
    --serif: var(--text);
    --shell: 1280px;
    --header-height: 88px;
}

body {
    font-family: var(--display);
    font-size: 16px;
    line-height: 1.62;
}

.section {
    padding: 132px 0;
}

.site-header {
    height: var(--header-height);
}

.site-header:not(.is-scrolled):not(.site-header--solid) {
    border-bottom-color: rgba(255, 255, 255, 0.12);
    color: var(--cream-light);
    background: var(--ink);
}

.site-header:not(.is-scrolled):not(.site-header--solid) .wordmark-title span:last-child,
.site-header:not(.is-scrolled):not(.site-header--solid) .primary-nav a {
    color: var(--cream-light);
}

.site-header:not(.is-scrolled):not(.site-header--solid) .wordmark-byline {
    border-left-color: rgba(255, 255, 255, 0.22);
    color: rgba(248, 244, 235, 0.58);
}

.site-header:not(.is-scrolled):not(.site-header--solid) .button--ink {
    color: var(--ink);
    border-color: var(--cream-light);
    background: var(--cream-light);
}

.site-header:not(.is-scrolled):not(.site-header--solid) .button--ink:hover {
    color: #fff;
    border-color: var(--rust);
    background: var(--rust);
}

.wordmark {
    gap: 16px;
}

.wordmark-title {
    font-family: var(--text);
    font-size: 0.96rem;
    font-weight: 650;
    line-height: 0.92;
    letter-spacing: 0;
    text-transform: none;
}

.wordmark-title span:last-child {
    color: var(--ink);
}

.wordmark-byline {
    padding-left: 16px;
    font-family: var(--display);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
}

.primary-nav {
    gap: clamp(26px, 3vw, 44px);
}

.primary-nav a {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
}

.button {
    min-height: 52px;
    padding: 14px 23px;
    font-family: var(--display);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.075em;
}

.button--small {
    min-height: 42px;
    padding: 10px 18px;
    font-size: 0.68rem;
}

.site-header .button--small {
    flex: 0 0 auto;
    white-space: nowrap;
}

.eyebrow,
.section-kicker {
    font-family: var(--display);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.17em;
}

.hero {
    min-height: 760px;
    padding: calc(var(--header-height) + 76px) 0 94px;
    color: var(--cream-light);
    background: var(--ink);
}

.hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.62fr);
    align-items: center;
    gap: clamp(72px, 10vw, 150px);
}

.hero-copy {
    order: 1;
    max-width: 790px;
}

.book-stage {
    order: 2;
}

.hero .eyebrow {
    margin-bottom: 26px;
    color: rgba(248, 244, 235, 0.56);
}

.hero h1 {
    max-width: 790px;
    margin: 0;
    color: var(--cream-light);
    font-family: var(--text);
    font-size: clamp(5.2rem, 7vw, 8.4rem);
    font-weight: 650;
    line-height: 0.82;
    letter-spacing: -0.058em;
    text-transform: none;
}

.hero h1 span {
    display: block;
    color: inherit;
}

.hero h1 span:last-child {
    margin-left: 0.45em;
}

.hero-subtitle {
    max-width: 610px;
    margin: 36px 0 0;
    color: #d66a50;
    font-family: var(--display);
    font-size: clamp(1.08rem, 1.6vw, 1.32rem);
    font-weight: 500;
    line-height: 1.35;
}

.hero-deck {
    max-width: 620px;
    margin-top: 22px;
    color: rgba(248, 244, 235, 0.72);
    font-family: var(--display);
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.62;
}

.hero-actions {
    margin-top: 34px;
}

.hero-secondary-link {
    color: var(--cream-light);
    border-bottom-color: rgba(248, 244, 235, 0.45);
    font-family: var(--display);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.hero-secondary-link:hover {
    color: #fff;
}

.book-frame {
    width: min(380px, 100%);
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: 0 38px 90px rgba(0, 0, 0, 0.42);
}

.book-stage figcaption {
    width: min(380px, 100%);
    margin-top: 16px;
    color: rgba(248, 244, 235, 0.48);
    font-family: var(--display);
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.authority-strip {
    border-bottom: 1px solid var(--line);
    background: var(--cream-light);
}

.authority-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(4, minmax(115px, 0.55fr));
    align-items: stretch;
}

.authority-grid > p,
.authority-grid > div {
    display: flex;
    min-height: 116px;
    justify-content: center;
    flex-direction: column;
    margin: 0;
    padding: 24px 30px;
    border-right: 1px solid var(--line);
}

.authority-grid > p {
    padding-left: 0;
    color: var(--ink-soft);
    font-family: var(--text);
    font-size: 1.25rem;
}

.authority-grid > div:last-child {
    padding-right: 0;
    border-right: 0;
}

.authority-grid strong {
    font-family: var(--text);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.035em;
}

.authority-grid span {
    margin-top: 8px;
    color: var(--ink-soft);
    font-size: 0.67rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.provocation {
    padding: 140px 0;
    background: var(--paper);
}

.provocation-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.7fr);
    align-items: start;
    gap: clamp(70px, 9vw, 130px);
}

.provocation h2,
.section-heading h2,
.reader h2,
.diagnostic-copy h2,
.author h2,
.closing h2,
.diagnostic-hero h1,
.legal-article h1,
.result-card h2 {
    font-family: var(--text);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.048em;
    text-transform: none;
}

.provocation h2 {
    font-size: clamp(3.7rem, 5.4vw, 6.2rem);
}

.provocation-copy {
    padding-top: 8px;
    font-family: var(--display);
    font-size: 1.08rem;
    line-height: 1.68;
}

.manifesto {
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 48px;
    margin-top: 100px;
    padding: 42px 0;
}

.manifesto .quote-mark {
    display: none;
}

.manifesto p {
    max-width: 950px;
    font-family: var(--text);
    font-size: clamp(2rem, 3vw, 3.25rem);
    font-style: normal;
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.manifesto footer {
    font-family: var(--display);
    font-size: 0.65rem;
    font-weight: 500;
}

.principles {
    background: var(--cream);
}

.section-heading {
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.55fr);
    margin-bottom: 76px;
}

.section-heading h2 {
    max-width: 900px;
    font-size: clamp(3.5rem, 5vw, 5.7rem);
}

.section-heading > p:last-child {
    color: var(--ink-soft);
    font-family: var(--display);
    font-size: 1rem;
    line-height: 1.68;
}

.principle-card {
    grid-template-columns: 62px minmax(250px, 0.8fr) minmax(300px, 1fr) 170px;
    gap: 30px;
    padding: 30px 0;
}

.principle-card:hover {
    padding-right: 0;
    padding-left: 0;
    background: transparent;
}

.principle-number {
    color: var(--rust);
    font-family: var(--display);
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.principle-card h3 {
    font-family: var(--text);
    font-size: clamp(1.7rem, 2.3vw, 2.35rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.035em;
    text-transform: none;
}

.principle-card p {
    font-family: var(--display);
    font-size: 0.94rem;
    line-height: 1.58;
}

.principle-test {
    padding: 0;
    border: 0;
    color: var(--rust);
    font-family: var(--display);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.09em;
}

.system-figure {
    margin-top: 120px;
}

.section--ink {
    background: #151513;
}

.section-heading--light h2 {
    color: var(--cream-light);
}

.case-grid {
    gap: 14px;
}

.case-pair {
    padding: 38px 42px;
    background: transparent;
}

.case-pair:hover {
    background: rgba(255, 255, 255, 0.025);
}

.case-pair h3 {
    font-family: var(--text);
    font-size: clamp(1.9rem, 2.7vw, 2.7rem);
    font-weight: 600;
    letter-spacing: -0.035em;
}

.case-pair p {
    font-family: var(--display);
    font-size: 0.92rem;
    line-height: 1.58;
}

.case-label {
    font-family: var(--display);
    font-size: 0.63rem;
    font-weight: 500;
}

.case-versus {
    font-size: 1.5rem;
}

.reader {
    background: var(--paper);
}

.reader h2 {
    font-size: clamp(3.4rem, 4.8vw, 5.2rem);
}

.role-card {
    padding: 42px 0;
}

.role-card > span {
    font-size: 0.65rem;
    font-weight: 500;
}

.role-card h3 {
    max-width: 650px;
    font-family: var(--text);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.038em;
    text-transform: none;
}

.role-card p {
    font-family: var(--display);
    font-size: 0.96rem;
    line-height: 1.62;
}

.diagnostic-band {
    background: #ded5c6;
}

.diagnostic-copy h2 {
    font-size: clamp(3.5rem, 5vw, 5.5rem);
}

.diagnostic-copy > p:not(.section-kicker) {
    font-family: var(--display);
    font-size: 1.02rem;
    line-height: 1.68;
}

.check-list li {
    font-family: var(--display);
    font-size: 0.78rem;
    font-weight: 500;
}

.diagnostic-form-card {
    border: 0;
    background: var(--paper);
    box-shadow: 0 28px 70px rgba(23, 23, 20, 0.11);
}

.diagnostic-form-card h3 {
    font-family: var(--text);
    font-size: clamp(2.25rem, 3vw, 3.1rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.04em;
    text-transform: none;
}

.diagnostic-form-card > p {
    font-family: var(--display);
    font-size: 0.94rem;
}

.field > span,
.consent,
.card-index {
    font-family: var(--display);
}

.author {
    background: var(--paper);
}

.author h2 {
    font-size: clamp(3.7rem, 5.3vw, 5.8rem);
}

.author-copy > p:not(.section-kicker) {
    font-family: var(--display);
    font-size: 1rem;
    line-height: 1.68;
}

.author-portrait {
    padding: 10px;
    background: var(--cream-light);
}

.author-portrait figcaption {
    font-family: var(--display);
    font-size: 0.63rem;
    font-weight: 500;
}

.closing {
    color: var(--cream-light);
    background: var(--ink);
}

.closing .section-kicker {
    color: #d66a50;
}

.closing h2 {
    font-size: clamp(4.5rem, 7vw, 7.6rem);
}

.closing-line {
    margin: 28px 0 40px;
    color: rgba(248, 244, 235, 0.66);
    font-family: var(--display);
    font-size: 1rem;
    font-style: normal;
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--display);
    font-size: 0.76rem;
}

.diagnostic-hero h1 {
    font-size: clamp(4.2rem, 7vw, 7rem);
}

.diagnostic-hero p:not(.eyebrow),
.answer,
.result-card > p {
    font-family: var(--display);
}

.question-card legend,
.result-card h2 {
    font-family: var(--text);
    font-weight: 600;
}

@media (max-width: 1080px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.58fr);
        gap: 64px;
    }

    .hero h1 {
        font-size: clamp(4.5rem, 7.8vw, 6.4rem);
    }

    .book-frame,
    .book-stage figcaption {
        width: min(320px, 100%);
    }

    .authority-grid {
        grid-template-columns: 1.1fr repeat(4, minmax(100px, 0.5fr));
    }

    .authority-grid > p,
    .authority-grid > div {
        padding: 22px 20px;
    }
}

@media (max-width: 820px) {
    .section {
        padding: 96px 0;
    }

    .hero {
        min-height: 0;
        padding: calc(var(--header-height) + 58px) 0 82px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 58px;
    }

    .hero-copy {
        order: 1;
    }

    .book-stage {
        order: 2;
    }

    .hero h1 {
        max-width: 690px;
        font-size: clamp(4.7rem, 13vw, 6.4rem);
    }

    .book-frame,
    .book-stage figcaption {
        width: min(320px, 68vw);
    }

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

    .authority-grid > p {
        grid-column: 1 / -1;
        min-height: 82px;
        padding: 20px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .authority-grid > div {
        min-height: 100px;
        border-bottom: 1px solid var(--line);
    }

    .authority-grid > div:nth-child(odd) {
        border-right: 0;
    }

    .provocation-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .manifesto {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 560px) {
    .shell,
    .nav-shell {
        width: min(calc(100% - 36px), var(--shell));
    }

    .wordmark-title {
        font-size: 0.86rem;
    }

    .hero h1 {
        font-size: clamp(3.75rem, 18vw, 4.7rem);
        line-height: 0.86;
    }

    .hero h1 span:last-child {
        margin-left: 0;
    }

    .hero-subtitle {
        margin-top: 28px;
        font-size: 1rem;
    }

    .hero-deck {
        font-size: 1rem;
    }

    .hero-actions {
        align-items: stretch;
    }

    .book-frame,
    .book-stage figcaption {
        width: min(285px, 78vw);
    }

    .authority-grid > div {
        padding: 20px 14px;
    }

    .provocation h2,
    .section-heading h2,
    .reader h2,
    .diagnostic-copy h2,
    .author h2 {
        font-size: clamp(3rem, 13vw, 4rem);
        line-height: 0.98;
    }

    .closing h2 {
        font-size: clamp(3.8rem, 17vw, 5rem);
    }
}

/* Readability floor: all meaningful text is at least 16px / 12pt */

.wordmark-byline,
.primary-nav a,
.button,
.button--small,
.eyebrow,
.section-kicker,
.hero-secondary-link,
.book-stage figcaption,
.authority-grid span,
.manifesto footer,
.principle-number,
.principle-test,
.system-figure figcaption,
.case-label,
.role-card > span,
.card-index,
.field > span,
.consent,
.check-list li,
.text-link,
.author-portrait figcaption,
.privacy-note,
.progress-label,
.question-card legend small,
.question-number,
.answer-control,
.assessment-submit > p,
.result-book-note,
.site-footer,
.welcome-banner {
    font-size: 1rem;
}

.button *,
.hero-secondary-link *,
.text-link *,
.consent *,
.site-footer * {
    font-size: inherit;
}

.eyebrow,
.section-kicker,
.primary-nav a,
.button,
.button--small,
.card-index,
.field > span,
.case-label,
.role-card > span,
.principle-test,
.author-portrait figcaption {
    letter-spacing: 0.08em;
}

.hero-secondary-link,
.text-link,
.book-stage figcaption,
.authority-grid span,
.manifesto footer,
.principle-number,
.system-figure figcaption,
.check-list li,
.privacy-note,
.progress-label,
.assessment-submit > p,
.site-footer {
    line-height: 1.5;
}

.book-stage figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
}

.book-stage figcaption span:last-child {
    text-align: left;
}

.authority-grid > p {
    font-size: 1.35rem;
}

.authority-grid span {
    margin-top: 10px;
    letter-spacing: 0.055em;
}

.principle-card {
    grid-template-columns: 62px minmax(250px, 0.8fr) minmax(300px, 1fr) 190px;
}

.principle-test {
    width: 100%;
    justify-self: stretch;
    text-align: left;
}

@media (min-width: 1081px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.64fr);
        gap: clamp(40px, 4vw, 68px);
    }

    .hero-copy {
        max-width: 830px;
    }

    .book-stage {
        justify-self: start;
    }
}

@media (min-width: 821px) and (max-width: 1080px) {
    .book-stage {
        transform: translateX(-36px);
    }
}

.principle-card p,
.case-pair p,
.role-card p,
.diagnostic-form-card > p {
    font-size: 1rem;
}

.field input,
.lead-form input,
.answer,
.consent {
    font-size: 1.0625rem;
    line-height: 1.5;
}

.diagnostic-form-card > p,
.principle-card p,
.case-pair p,
.role-card p,
.author-copy > p:not(.section-kicker) {
    line-height: 1.65;
}

.diagnostic-meter,
.diagnostic-meter span,
.question-card legend,
.result-actions,
.result-actions span {
    font-size: 1rem;
}

.result-actions > div > span,
.result-actions ol,
.result-actions li {
    font-size: 1rem;
    line-height: 1.55;
}

.legal-updated {
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 1080px) {
    .principle-card {
        grid-template-columns: 52px minmax(220px, 0.8fr) minmax(260px, 1fr);
    }

    .principle-test {
        grid-column: 2 / -1;
        justify-self: start;
    }
}

@media (max-width: 820px) {
    .site-header .button--small {
        padding: 10px 14px;
        font-size: 1rem;
    }
}

@media (max-width: 560px) {
    .site-header .button--small {
        max-width: 168px;
    }

    .authority-grid > div {
        min-height: 126px;
    }
}

/* Diagnostic questions are decision prompts, not supporting copy. */

.question-card {
    position: relative;
    min-width: 0;
}

.question-heading {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 20px;
    font-family: var(--text);
    font-size: clamp(1.65rem, 2.25vw, 2.15rem);
    font-weight: 650;
    line-height: 1.16;
    letter-spacing: -0.022em;
}

.question-heading small {
    display: block;
    margin-bottom: 9px;
    color: var(--rust);
    font-family: var(--display);
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.question-card > legend.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    border: 0;
    white-space: nowrap;
}

.question-number {
    padding-top: 2px;
    font-size: 1.25rem;
    line-height: 1.2;
}

.answer-list {
    gap: 12px;
    margin-top: 32px;
}

.answer {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 17px;
    min-height: 76px;
    padding: 18px 20px;
    font-size: 1.1875rem;
    line-height: 1.45;
}

.answer-control {
    width: 36px;
    height: 36px;
    font-size: 1rem;
}

@media (max-width: 560px) {
    .question-card {
        padding: 30px 20px;
    }

    .question-heading {
        grid-template-columns: 1fr;
        gap: 8px;
        font-size: 1.55rem;
        line-height: 1.2;
    }

    .question-number {
        padding-top: 0;
    }

    .answer-list {
        margin-top: 25px;
    }

    .answer {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 14px;
        min-height: 72px;
        padding: 16px 14px;
        font-size: 1.125rem;
    }
}

/* Definitive phone and tablet layout: keep late desktop rules from leaking down. */

.header-buy-mobile {
    display: none;
}

@media (max-width: 820px) {
    html,
    body {
        max-width: 100%;
        overflow-x: clip;
    }

    .section-heading {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
        margin-bottom: 54px;
    }

    .section-heading > * {
        grid-column: 1;
        width: 100%;
        min-width: 0;
        max-width: none;
    }

    .provocation {
        padding: 84px 0;
    }

    .manifesto {
        grid-template-columns: minmax(0, 1fr);
        align-items: start;
        gap: 18px;
        margin-top: 64px;
        padding: 32px 0;
    }

    .manifesto p {
        grid-column: 1;
        width: 100%;
        max-width: none;
        font-size: clamp(1.85rem, 7.5vw, 2.6rem);
        line-height: 1.16;
    }

    .manifesto footer {
        grid-column: 1;
        justify-self: start;
        padding: 0;
        white-space: normal;
    }

    .principle-card {
        grid-template-columns: 42px minmax(0, 1fr);
        align-items: start;
        gap: 14px 20px;
        width: 100%;
        padding: 30px 0;
    }

    .principle-number {
        grid-column: 1;
        grid-row: 1;
        padding-top: 4px;
    }

    .principle-card h3 {
        grid-column: 2;
        grid-row: 1;
        min-width: 0;
    }

    .principle-card p {
        grid-column: 2;
        grid-row: 2;
        width: 100%;
        max-width: none;
    }

    .principle-test {
        display: none;
    }
}

@media (max-width: 560px) {
    .site-header .nav-shell {
        gap: 12px;
    }

    .site-header .wordmark {
        min-width: 0;
    }

    .site-header .header-buy {
        min-width: 0;
        max-width: none;
        min-height: 46px;
        flex: 0 0 auto;
        gap: 8px;
        padding: 10px 14px;
        overflow: visible;
        font-size: 1rem;
        letter-spacing: 0.06em;
    }

    .header-buy-full {
        display: none;
    }

    .header-buy-mobile {
        display: inline;
    }

    .section {
        padding: 78px 0;
    }

    .section-heading {
        gap: 22px;
        margin-bottom: 42px;
    }

    .section-heading h2 {
        max-width: 10ch;
        font-size: clamp(3rem, 13vw, 4rem);
    }

    .principle-card {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 12px 16px;
        padding: 26px 0;
    }

    .principle-card h3 {
        font-size: clamp(1.75rem, 8vw, 2.15rem);
    }
}

/* Keep the printed scorecard on page one by removing every screen-only sibling. */

@media print {
    body::before,
    .diagnostic-page > .site-header,
    .diagnostic-page > .site-footer,
    .diagnostic-page main > :not(.assessment),
    .assessment-shell > :not(.result-card),
    .result-actions .button {
        display: none !important;
    }

    html,
    body,
    .diagnostic-page,
    .diagnostic-page main,
    .assessment,
    .assessment-shell {
        width: 100% !important;
        max-width: none !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        color: #000 !important;
        background: #fff !important;
    }

    .result-card {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0.35in 0.45in !important;
        color: #000 !important;
        background: #fff !important;
        box-shadow: none !important;
        break-inside: avoid;
        page-break-inside: avoid;
    }

    .result-card * {
        color: #000 !important;
    }
}
