@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&display=swap');

:root {
    --ink-900: #050B28;
    --ink-800: #0A1540;
    --ink-700: #152062;
    --ink-500: #28345A;
    --ink-300: #4A5478;
    --gold-300: #F4D98A;
    --gold-400: #E8C574;
    --gold-500: #D4A94A;
    --gold-700: #9C7C2E;
    --paper: #FFFFFF;
    --cream: #FBFAF5;
    --cream-2: #F3EFE2;
    --cream-3: #EAE5D2;
    --line: #E2DDCB;
    --line-strong: #CDC6AC;
    --text: #161A2E;
    --muted: #5A6079;
    --subtle: #8B90A6;
    --danger: #B9482D;
    --good: #2F7B54;
    --accent: #B9482D;
    --r-xs: 4px;
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-xl: 30px;
    --shadow-xs: 0 1px 2px rgba(5,11,40,0.06);
    --shadow-sm: 0 6px 16px rgba(5,11,40,0.07);
    --shadow-md: 0 16px 40px rgba(5,11,40,0.10);
    --shadow-lg: 0 30px 70px rgba(5,11,40,0.14);
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --fast: 180ms var(--ease);
    --base: 280ms var(--ease);
    --slow: 440ms var(--ease);
    --max: 1200px;
    --sans: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --serif: 'Fraunces', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
}

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

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--sans);
    background: var(--cream);
    color: var(--text);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

a {
    color: var(--ink-700);
    text-decoration: none;
    transition: color var(--fast);
}

a:hover { color: var(--gold-700); }

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

h1, h2, h3, h4 { margin: 0; }
ul, ol { margin: 0; padding: 0; }

button {
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
}

*:focus-visible {
    outline: 2px solid var(--gold-500);
    outline-offset: 3px;
    border-radius: var(--r-xs);
}

.jump {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--ink-900);
    color: #FFFFFF;
    padding: 12px 18px;
    z-index: 120;
    border-radius: 0 0 var(--r-md) 0;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.jump:focus { left: 0; color: #FFFFFF; }

.masthead {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(5, 11, 40, 0.94);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid rgba(212, 169, 74, 0.16);
}

.masthead__row {
    max-width: var(--max);
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

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

.ident__mark {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.2));
}

.ident__wordmark {
    font-family: var(--sans);
    font-weight: 800;
    font-size: 21px;
    letter-spacing: -0.02em;
    line-height: 1;
    display: inline-flex;
}

.ident__event { color: #FFFFFF; }
.ident__gavel { color: var(--gold-400); }

.primary-nav { display: none; }

.primary-nav ul {
    list-style: none;
    display: flex;
    gap: 2px;
    padding: 0;
    margin: 0;
}

.primary-nav a {
    color: rgba(255,255,255,0.82);
    font-size: 15px;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 999px;
    display: inline-block;
    transition: color var(--fast), background-color var(--fast);
}

.primary-nav a:hover {
    color: #FFFFFF;
    background: rgba(255,255,255,0.07);
}

.primary-nav .is-current {
    color: var(--gold-300);
    background: rgba(212,169,74,0.14);
}

.burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    width: 44px;
    height: 44px;
    padding: 13px 12px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 12px;
    transition: background-color var(--fast), border-color var(--fast);
}

.burger:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.4);
}

.burger span {
    display: block;
    height: 2px;
    background: #FFFFFF;
    border-radius: 2px;
    width: 100%;
}

.burger span:nth-child(2) { width: 70%; align-self: flex-end; }

.scrim {
    position: fixed;
    inset: 0;
    background: rgba(5,11,40,0.62);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    z-index: 98;
    transition: opacity var(--base), visibility var(--base);
}

.scrim.is-open { opacity: 1; visibility: visible; }

.drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, var(--ink-900) 0%, var(--ink-800) 100%);
    color: #FFFFFF;
    z-index: 99;
    transform: translateX(104%);
    transition: transform var(--base);
    display: flex;
    flex-direction: column;
    padding: 22px 24px 28px;
    overflow-y: auto;
    visibility: hidden;
}

.drawer.is-open {
    transform: translateX(0);
    visibility: visible;
}

.drawer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.drawer__label {
    color: var(--gold-400);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 700;
}

.drawer__close {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.22);
    color: #FFFFFF;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background-color var(--fast), border-color var(--fast);
}

.drawer__close:hover { background: rgba(255,255,255,0.08); }

.drawer__close svg { width: 18px; height: 18px; }

.drawer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.drawer__list a {
    display: block;
    padding: 14px 16px;
    color: rgba(255,255,255,0.92);
    font-size: 17px;
    font-weight: 500;
    border-radius: 12px;
    transition: background-color var(--fast), color var(--fast);
}

.drawer__list a:hover { background: rgba(255,255,255,0.07); color: #FFFFFF; }

.drawer__foot {
    margin-top: auto;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 12.5px;
    line-height: 1.55;
}

.crumbs {
    max-width: var(--max);
    margin: 0 auto;
    padding: 22px 20px 0;
    font-size: 13px;
    color: var(--muted);
}

.crumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.crumbs li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.crumbs li:not(:last-child)::after {
    content: "/";
    color: var(--subtle);
    margin-left: 6px;
}

.crumbs a {
    color: var(--muted);
    font-weight: 500;
}

.crumbs a:hover { color: var(--gold-700); }

.crumbs [aria-current="page"] {
    color: var(--ink-900);
    font-weight: 700;
}

.hero {
    background:
        radial-gradient(ellipse at 80% -10%, rgba(244,217,138,0.2) 0%, transparent 55%),
        radial-gradient(ellipse at -10% 120%, rgba(21,32,98,0.55) 0%, transparent 55%),
        linear-gradient(145deg, var(--ink-900) 0%, var(--ink-800) 60%, var(--ink-700) 100%);
    color: #FFFFFF;
    padding: clamp(44px, 7vw, 88px) 20px clamp(80px, 11vw, 130px);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero__grid {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-300);
    margin-bottom: 22px;
    padding: 7px 14px 7px 12px;
    background: rgba(244,217,138,0.08);
    border: 1px solid rgba(244,217,138,0.3);
    border-radius: 999px;
}

.kicker__dot {
    width: 7px;
    height: 7px;
    background: var(--gold-300);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-400);
}

.hero__title {
    font-family: var(--serif);
    font-size: clamp(36px, 7.5vw, 78px);
    line-height: 1.02;
    font-weight: 500;
    color: #FFFFFF;
    letter-spacing: -0.022em;
    margin-bottom: 22px;
}

.hero__title em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold-300);
    display: inline-block;
    position: relative;
}

.hero__sub {
    font-size: clamp(16px, 1.9vw, 19px);
    line-height: 1.6;
    color: rgba(255,255,255,0.78);
    max-width: 560px;
    margin: 0;
    font-weight: 400;
}

.hero__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 10px 20px;
    margin: 32px 0 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.12);
    max-width: 520px;
}

.hero__meta div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.hero__meta dt {
    font-size: 10.5px;
    font-weight: 700;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0;
}

.hero__meta dd {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--gold-300);
    margin: 0;
    line-height: 1.1;
}

.hero__viz {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    order: -1;
}

.hero__viz svg {
    width: min(320px, 80vw);
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
}

.editorial {
    max-width: var(--max);
    margin: clamp(-80px, -9vw, -60px) auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.lede {
    background: var(--paper);
    padding: clamp(28px, 4.5vw, 52px);
    border-radius: var(--r-xl);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    margin-bottom: 72px;
    position: relative;
}

.lede::before {
    content: "";
    position: absolute;
    top: 28px;
    left: -1px;
    width: 5px;
    height: 64px;
    background: linear-gradient(180deg, var(--gold-300) 0%, var(--gold-500) 100%);
    border-radius: 3px;
}

.lede p {
    font-size: clamp(16px, 1.45vw, 18.5px);
    line-height: 1.72;
    color: var(--text);
    margin: 0 0 16px;
}

.lede p:last-child { margin-bottom: 0; }

.lede strong { color: var(--ink-900); font-weight: 700; }

.section-head {
    margin: 88px 0 36px;
    max-width: 780px;
}

.section-head__eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold-700);
    margin-bottom: 14px;
    padding: 4px 10px;
    background: rgba(212,169,74,0.12);
    border-radius: 4px;
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(30px, 5vw, 52px);
    line-height: 1.08;
    font-weight: 500;
    color: var(--ink-900);
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}

.section-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold-700);
}

.section-intro {
    font-size: 17px;
    line-height: 1.65;
    color: var(--muted);
    margin: 0;
    max-width: 680px;
}

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

.layer {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: clamp(24px, 3.5vw, 38px);
    transition: transform var(--base), border-color var(--base), box-shadow var(--base);
    position: relative;
    overflow: hidden;
}

.layer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold-300) 0%, var(--gold-500) 70%, var(--gold-700) 100%);
    opacity: 0.5;
    transition: opacity var(--base);
}

.layer:hover {
    border-color: var(--line-strong);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.layer:hover::before { opacity: 1; }

.layer__head {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 18px;
}

.layer__num {
    flex-shrink: 0;
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 400;
    line-height: 1;
    color: var(--gold-500);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

.layer__titling {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    flex: 1;
    padding-top: 4px;
}

.layer__titling h3 {
    font-family: var(--serif);
    font-size: clamp(22px, 2.8vw, 30px);
    font-weight: 500;
    color: var(--ink-900);
    letter-spacing: -0.015em;
    line-height: 1.15;
    margin: 0;
}

.layer__role {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-700);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.layer__body {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--text);
    margin: 0 0 16px;
}

.layer__body em { color: var(--gold-700); font-style: italic; font-weight: 500; }

.layer__meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
    background: var(--cream-2);
    border-radius: var(--r-md);
    margin: 18px 0;
}

.layer__meta-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.layer__meta-label {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--ink-700);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.layer__meta p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--text);
}

.creds {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.creds li {
    padding: 12px 14px 12px 38px;
    background: var(--cream-2);
    border-radius: var(--r-sm);
    position: relative;
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--text);
}

.creds li::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 18px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(212,169,74,0.2);
}

.creds strong { color: var(--ink-900); font-weight: 700; }

.layer__rule {
    display: inline-block;
    font-family: var(--serif);
    font-style: italic;
    font-size: 16px;
    color: var(--ink-700);
    padding: 10px 18px;
    background: linear-gradient(135deg, rgba(244,217,138,0.3) 0%, rgba(212,169,74,0.15) 100%);
    border-left: 3px solid var(--gold-500);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    margin: 4px 0 14px;
}

.layer__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

.layer__tags span {
    font-size: 12px;
    font-weight: 600;
    padding: 5px 11px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink-700);
    letter-spacing: 0.01em;
}

.profiles {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.profile {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: clamp(22px, 3vw, 32px);
    transition: transform var(--base), border-color var(--base), box-shadow var(--base);
    position: relative;
}

.profile:hover {
    border-color: var(--line-strong);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.profile--featured {
    background: linear-gradient(155deg, var(--ink-900) 0%, var(--ink-800) 100%);
    color: #FFFFFF;
    border-color: transparent;
}

.profile--featured:hover { border-color: rgba(244,217,138,0.3); }

.profile__flag {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-900);
    background: var(--gold-300);
    padding: 5px 10px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.profile__head {
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.profile--featured .profile__head { border-bottom-color: rgba(255,255,255,0.12); }

.profile__scale {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-700);
    margin-bottom: 8px;
}

.profile--featured .profile__scale { color: var(--gold-300); }

.profile__head h3 {
    font-family: var(--serif);
    font-size: clamp(22px, 2.6vw, 28px);
    font-weight: 500;
    color: var(--ink-900);
    letter-spacing: -0.015em;
    line-height: 1.15;
}

.profile--featured .profile__head h3 { color: #FFFFFF; }

.profile__body {
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.profile__body dt {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.profile--featured .profile__body dt { color: var(--gold-400); }

.profile__body dd {
    margin: 0 0 8px;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--text);
}

.profile--featured .profile__body dd { color: rgba(255,255,255,0.85); }

.profile__body dd:last-child { margin-bottom: 0; }

.matrix-wrap {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: clamp(16px, 2vw, 20px);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: var(--shadow-xs);
}

.matrix {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 680px;
    font-size: 14px;
}

.matrix thead th {
    background: var(--ink-900);
    color: var(--gold-300);
    font-weight: 700;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 14px 14px;
    text-align: left;
    white-space: nowrap;
}

.matrix thead th:first-child { border-radius: var(--r-sm) 0 0 var(--r-sm); }
.matrix thead th:last-child { border-radius: 0 var(--r-sm) var(--r-sm) 0; }

.matrix tbody th {
    text-align: left;
    padding: 14px;
    font-weight: 700;
    color: var(--ink-900);
    background: var(--cream-2);
    border-bottom: 1px solid var(--line);
    white-space: nowrap;
}

.matrix tbody td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
    text-align: center;
}

.matrix tbody tr:last-child th,
.matrix tbody tr:last-child td { border-bottom: 0; }

.matrix tr:hover td,
.matrix tr:hover th[scope="row"] { background: var(--cream); }

.cell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.cell--e { background: rgba(47,123,84,0.14); color: var(--good); }
.cell--r { background: rgba(212,169,74,0.18); color: var(--gold-700); }
.cell--o { background: var(--cream-3); color: var(--muted); }

.legend {
    list-style: none;
    padding: 14px 4px 4px;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
}

.legend li { display: inline-flex; align-items: center; gap: 7px; }

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot--e { background: var(--good); }
.dot--r { background: var(--gold-500); }
.dot--o { background: var(--line-strong); }

.principles {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    counter-reset: principle;
}

.principles li {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: clamp(22px, 3vw, 32px);
    position: relative;
    padding-left: clamp(70px, 9vw, 100px);
    transition: border-color var(--base), box-shadow var(--base);
}

.principles li:hover {
    border-color: var(--line-strong);
    box-shadow: var(--shadow-sm);
}

.principles__num {
    position: absolute;
    left: clamp(20px, 3vw, 32px);
    top: clamp(22px, 3vw, 30px);
    font-family: var(--serif);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 400;
    color: var(--gold-500);
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.principles h3 {
    font-family: var(--serif);
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 500;
    color: var(--ink-900);
    letter-spacing: -0.015em;
    line-height: 1.2;
    margin-bottom: 8px;
}

.principles p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text);
    margin: 0;
}

.pull {
    margin: 72px 0 56px;
    padding: clamp(32px, 5vw, 56px);
    background: linear-gradient(145deg, var(--ink-900) 0%, var(--ink-800) 100%);
    color: #FFFFFF;
    border-radius: var(--r-xl);
    position: relative;
    overflow: hidden;
}

.pull::before {
    content: "\201C";
    position: absolute;
    top: -30px;
    left: 20px;
    font-family: var(--serif);
    font-size: 220px;
    color: var(--gold-500);
    opacity: 0.25;
    line-height: 1;
    font-style: italic;
}

.pull::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(244,217,138,0.18) 0%, transparent 70%);
    pointer-events: none;
}

.pull p {
    font-family: var(--serif);
    font-size: clamp(19px, 2.4vw, 26px);
    line-height: 1.45;
    font-weight: 400;
    font-style: italic;
    color: #FFFFFF;
    margin: 0;
    position: relative;
    z-index: 1;
    max-width: 920px;
}

.closer {
    background: var(--paper);
    padding: clamp(32px, 5vw, 56px);
    border-radius: var(--r-xl);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    margin: 0 0 60px;
}

.closer .section-title { margin-top: 14px; }

.closer p {
    font-size: 16px;
    line-height: 1.72;
    color: var(--text);
    margin: 0 0 16px;
}

.closer p:last-child { margin-bottom: 0; }

.foot {
    background: var(--ink-900);
    color: rgba(255,255,255,0.7);
    padding: 56px 20px 32px;
    margin-top: 80px;
}

.foot__row {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
}

.foot__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: -0.02em;
}

.foot__brand img { width: 26px; height: 26px; }

.foot__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    font-size: 14px;
}

.foot__links a { color: rgba(255,255,255,0.72); }
.foot__links a:hover { color: var(--gold-300); }

.foot__copy {
    max-width: var(--max);
    margin: 20px auto 0;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.5);
}

@media (min-width: 560px) {
    .profiles { grid-template-columns: repeat(2, 1fr); }
    .profile--featured { grid-column: 1 / -1; }
    .layer__meta { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 820px) {
    .hero__grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
        gap: 60px;
    }
    .hero__viz { order: 0; padding: 20px; }
    .hero__viz svg { width: 100%; max-width: 420px; }
    .editorial { padding: 0 32px; }
    .crumbs { padding: 24px 32px 0; }
    .layers { gap: 22px; }
    .principles { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .principles li { padding-left: clamp(24px, 3vw, 36px); padding-top: clamp(78px, 8vw, 100px); }
    .principles__num { position: static; margin-bottom: 14px; display: block; }
}

@media (min-width: 920px) {
    .primary-nav { display: flex; }
    .burger { display: none; }
    .masthead__row { padding: 16px 32px; }
    .profiles { grid-template-columns: repeat(2, 1fr); }
    .profile--featured { grid-column: 1 / -1; }
    .foot__row { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 1080px) {
    .profiles { grid-template-columns: repeat(4, 1fr); }
    .profile--featured { grid-column: 1 / -1; }
}

@media (max-width: 460px) {
    .layer__head { flex-direction: column; gap: 8px; }
    .layer__num { font-size: 36px; }
    .hero__meta { grid-template-columns: 1fr 1fr; }
    .hero__meta dd { font-size: 19px; }
}

@media (orientation: landscape) and (max-height: 540px) {
    .hero { padding-top: 30px; padding-bottom: 60px; }
    .hero__meta { margin-top: 20px; padding-top: 14px; }
    .editorial { margin-top: -40px; }
    .drawer { padding-top: 14px; }
    .drawer__top { margin-bottom: 16px; padding-bottom: 12px; }
    .drawer__list a { padding: 11px 14px; font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .layer:hover, .profile:hover, .principles li:hover { transform: none; }
}

@media print {
    .masthead, .scrim, .drawer, .burger, .foot { display: none !important; }
    .hero { background: none; color: var(--text); padding: 20px 0; }
    .hero__title, .hero__sub, .hero__meta dd, .hero__meta dt, .kicker { color: var(--text); }
    .layer, .lede, .closer, .matrix-wrap, .principles li, .profile { box-shadow: none; break-inside: avoid; }
    .pull, .profile--featured { background: var(--cream-2); color: var(--text); }
    .pull p { color: var(--text); }
}
