@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Manrope:wght@400;500;600;700;800&display=swap');

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

:root {
    --cream: #F6F1E4;
    --cream-2: #EFE8D4;
    --paper: #FFFCF4;
    --ink: #0B1332;
    --ink-2: #181F44;
    --ink-soft: #2B325A;
    --muted: #5E6281;
    --muted-2: #8A8DA7;
    --line: #DFD7C1;
    --line-soft: #E9E1CC;
    --gold: #C9A43A;
    --gold-2: #E0BE5A;
    --gold-3: #F1DC93;
    --gold-wash: #FAEDC3;
    --coral: #E14F2F;
    --coral-soft: #FBD9CF;
    --sand: #D9CFB3;
    --shadow-1: 0 1px 2px rgba(11, 19, 50, 0.06);
    --shadow-2: 0 10px 36px -12px rgba(11, 19, 50, 0.18);
    --shadow-3: 0 22px 56px -18px rgba(11, 19, 50, 0.28);
    --radius-s: 8px;
    --radius: 16px;
    --radius-l: 26px;
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --serif: 'Instrument Serif', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
    --sans: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --wrap: min(1180px, 100vw - 2.4rem);
}

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

body {
    margin: 0;
    font-family: var(--sans);
    color: var(--ink);
    background: var(--cream);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-feature-settings: "ss01", "cv11";
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; padding: 0; }
p { margin: 0 0 1rem; }
ol, ul { margin: 0; padding: 0; }

.wrap { width: var(--wrap); margin-inline: auto; }

.masthead {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(246, 241, 228, 0.88);
    -webkit-backdrop-filter: saturate(170%) blur(14px);
    backdrop-filter: saturate(170%) blur(14px);
    border-bottom: 1px solid var(--line);
}

.masthead__inner {
    width: var(--wrap);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-block: 14px;
}

.wordmark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    flex-shrink: 0;
}

.wordmark__mark {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.wordmark__text {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.55rem;
    letter-spacing: -0.01em;
    line-height: 1;
}

.wordmark__text em {
    font-style: italic;
    color: var(--gold);
}

.top-nav {
    display: flex;
    gap: 2px;
}

.top-nav a {
    position: relative;
    padding: 10px 16px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--ink-soft);
    border-radius: 6px;
    transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.top-nav a::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 6px;
    height: 1px;
    background: var(--coral);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.26s var(--ease);
}

.top-nav a:hover { color: var(--coral); }
.top-nav a:hover::after { transform: scaleX(1); }

.nav-trigger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    transition: background 0.2s var(--ease);
}

.nav-trigger:hover { background: rgba(11, 19, 50, 0.05); }

.nav-trigger span {
    display: block;
    width: 22px;
    height: 1.8px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}

.curtain {
    position: fixed;
    inset: 0;
    background: var(--ink);
    color: #fff;
    z-index: 200;
    padding: 22px 24px 36px;
    display: flex;
    flex-direction: column;
    gap: 36px;
    transform: translateY(-100%);
    transition: transform 0.4s var(--ease);
    visibility: hidden;
    overflow-y: auto;
}

.curtain.is-open {
    transform: translateY(0);
    visibility: visible;
}

.curtain__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.curtain__brand {
    font-family: var(--serif);
    font-size: 1.6rem;
    letter-spacing: -0.01em;
}

.curtain__brand em {
    font-style: italic;
    color: var(--gold-2);
}

.curtain__close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.curtain__close svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
}

.curtain__close:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold-2);
}

.curtain__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
}

.curtain__list a {
    display: block;
    font-family: var(--serif);
    font-size: clamp(2rem, 8vw, 3.1rem);
    line-height: 1.08;
    letter-spacing: -0.015em;
    padding: 10px 0;
    position: relative;
    color: #fff;
    transition: color 0.2s var(--ease), transform 0.25s var(--ease);
}

.curtain__list a::before {
    content: '·';
    color: var(--gold-2);
    margin-right: 14px;
    font-style: italic;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
    display: inline-block;
}

.curtain__list a:hover,
.curtain__list a:focus-visible {
    color: var(--gold-3);
    outline: none;
}

.curtain__list a:hover::before,
.curtain__list a:focus-visible::before {
    opacity: 1;
    transform: translateX(0);
}

.curtain__foot {
    margin-top: auto;
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.62);
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

body.is-locked { overflow: hidden; }

.cover {
    position: relative;
    padding: clamp(56px, 10vw, 130px) 0 clamp(48px, 8vw, 100px);
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(ellipse 60% 50% at 85% 10%, rgba(225, 79, 47, 0.08), transparent 60%),
        radial-gradient(ellipse 80% 60% at 0% 90%, rgba(201, 164, 58, 0.10), transparent 65%),
        var(--cream);
}

.cover__top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: clamp(24px, 4vw, 40px);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

.cover__issue { color: var(--coral); font-weight: 700; }

.cover__rule {
    flex: 0 0 auto;
    width: 60px;
    height: 1px;
    background: var(--ink);
    opacity: 0.35;
}

.cover__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(2.6rem, 9.5vw, 6.8rem);
    line-height: 0.96;
    letter-spacing: -0.022em;
    margin: 0 0 clamp(22px, 3vw, 36px);
    color: var(--ink);
    max-width: 16ch;
}

.cover__title em {
    font-style: italic;
    color: var(--coral);
}

.cover__deck {
    font-size: clamp(1.05rem, 1.7vw, 1.35rem);
    line-height: 1.5;
    max-width: 58ch;
    color: var(--ink-soft);
    margin: 0 0 clamp(28px, 3.5vw, 44px);
    font-weight: 400;
}

.cover__meta {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--muted);
}

.cover__meta li {
    display: inline-flex;
    align-items: center;
    gap: 18px;
}

.cover__meta li + li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    margin-left: -9px;
}

.cover__mark {
    position: absolute;
    right: clamp(-140px, -10vw, -60px);
    bottom: clamp(-120px, -8vw, -50px);
    width: clamp(280px, 42vw, 560px);
    opacity: 0.065;
    pointer-events: none;
    z-index: -1;
    transform: rotate(-8deg);
}

.overture {
    padding: clamp(52px, 8vw, 110px) 0 clamp(34px, 5vw, 70px);
    background: var(--paper);
    border-block: 1px solid var(--line);
}

.overture__wrap {
    display: grid;
    gap: clamp(36px, 5vw, 64px);
    grid-template-columns: 1fr;
    align-items: start;
}

.overture__lead {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(1.35rem, 2.4vw, 1.9rem);
    line-height: 1.35;
    letter-spacing: -0.008em;
    color: var(--ink);
    margin: 0;
}

.overture__lead::first-letter {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 4.4em;
    float: left;
    line-height: 0.82;
    padding: 0.08em 0.12em 0 0;
    color: var(--coral);
}

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

.figure {
    padding: 26px 22px;
    background: var(--cream-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    position: relative;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.figure:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-2);
}

.figure__num {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(2.4rem, 6vw, 3.4rem);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--ink);
    display: inline-block;
    margin-bottom: 10px;
}

.figure__unit {
    font-style: italic;
    color: var(--coral);
    font-size: 0.6em;
    margin-left: 3px;
}

.figure__cap {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.55;
    max-width: 38ch;
}

.chapter {
    padding: clamp(64px, 9vw, 130px) 0;
    background: var(--cream);
}

.chapter--pale { background: var(--paper); border-block: 1px solid var(--line); }

.chapter--dark {
    background:
        radial-gradient(ellipse 60% 80% at 90% 10%, rgba(225, 79, 47, 0.10), transparent 55%),
        radial-gradient(ellipse 60% 60% at 10% 90%, rgba(201, 164, 58, 0.14), transparent 55%),
        var(--ink);
    color: rgba(255, 255, 255, 0.88);
}

.chapter--verdict {
    background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.chapter--verdict::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 40% at 50% 0%, rgba(201, 164, 58, 0.18), transparent 60%);
    pointer-events: none;
}

.ch-head {
    max-width: 780px;
    margin-bottom: clamp(40px, 5vw, 72px);
    display: grid;
    gap: 16px;
    position: relative;
}

.ch-head__kicker {
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--coral);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.ch-head__kicker::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--coral);
}

.ch-head__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(1.9rem, 4.2vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.018em;
    margin: 0;
    color: var(--ink);
    max-width: 22ch;
}

.ch-head__title em {
    font-style: italic;
    color: var(--coral);
}

.ch-head__lede {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0;
    max-width: 62ch;
}

.ch-head--inv .ch-head__title { color: #fff; }
.ch-head--inv .ch-head__title em { color: var(--gold-3); }
.ch-head--inv .ch-head__kicker { color: var(--gold-2); }
.ch-head--inv .ch-head__kicker::before { background: var(--gold-2); }
.ch-head--inv .ch-head__lede { color: rgba(255, 255, 255, 0.7); }

.pillars {
    list-style: none;
    display: grid;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    grid-template-columns: 1fr;
}

.pillar {
    background: var(--paper);
    padding: 30px 28px;
    transition: background 0.25s var(--ease);
    position: relative;
}

.pillar:hover { background: var(--gold-wash); }

.pillar__num {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 1rem;
    color: var(--coral);
    letter-spacing: 0.04em;
    display: block;
    margin-bottom: 12px;
}

.pillar__name {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(1.35rem, 2.4vw, 1.7rem);
    letter-spacing: -0.012em;
    line-height: 1.15;
    margin: 0 0 10px;
    color: var(--ink);
}

.pillar__body {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.62;
}

.archetypes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.arche {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 24px;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px 22px;
    align-items: start;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.arche:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2);
    border-color: var(--gold);
}

.arche__tag {
    grid-row: span 3;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ink);
    color: var(--gold-3);
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.4rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.arche__name {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.55rem;
    letter-spacing: -0.012em;
    margin: 0;
    color: var(--ink);
    grid-column: 2;
}

.arche__desc {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.65;
    margin: 0;
    grid-column: 2;
}

.arche__ex {
    font-family: var(--serif);
    font-size: 1.05rem;
    color: var(--ink-soft);
    margin: 0;
    grid-column: 2;
    padding-top: 10px;
    border-top: 1px solid var(--line);
}

.arche__ex em {
    font-style: italic;
    letter-spacing: 0.01em;
}

.spectrum {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: clamp(32px, 5vw, 52px) clamp(22px, 4vw, 42px);
    position: relative;
}

.spectrum__track {
    position: relative;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-2), var(--coral));
    border-radius: 4px;
    margin: 18px 0 70px;
}

.spectrum__end {
    position: absolute;
    top: -30px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.spectrum__end--l { left: 0; }
.spectrum__end--r { right: 0; }

.spectrum__pins {
    list-style: none;
    position: relative;
    height: 120px;
    margin-top: -95px;
    margin-bottom: 20px;
}

.spectrum__pins li {
    position: absolute;
    left: var(--pos);
    top: 0;
    transform: translateX(-50%);
    text-align: center;
}

.spectrum__pins li::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    margin: 0 auto 10px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
}

.spectrum__pins li:nth-child(odd) {
    top: 20px;
}

.spectrum__pins li:nth-child(odd)::before {
    margin-top: -28px;
    margin-bottom: 8px;
}

.spectrum__pins li span {
    font-family: var(--serif);
    font-size: clamp(0.95rem, 1.6vw, 1.15rem);
    letter-spacing: -0.01em;
    color: #fff;
    white-space: nowrap;
    background: rgba(11, 19, 50, 0.4);
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.spectrum__note {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.66);
    max-width: 62ch;
    margin: 0;
}

.aside {
    padding: clamp(56px, 8vw, 110px) 0;
    background: var(--cream-2);
    border-block: 1px solid var(--line);
    position: relative;
}

.aside__mark {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(4.5rem, 10vw, 8rem);
    line-height: 0.7;
    color: var(--coral);
    margin: 0 0 -4px;
    display: block;
}

.aside__quote {
    margin: 0 0 22px;
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(1.45rem, 3.2vw, 2.4rem);
    line-height: 1.25;
    letter-spacing: -0.014em;
    color: var(--ink);
    max-width: 28ch;
    font-style: italic;
}

.aside__cite {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0;
}

.quadrant {
    position: relative;
    padding: 36px 12px 12px 36px;
}

.quadrant__axis {
    position: absolute;
    display: flex;
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}

.quadrant__axis--y {
    top: 36px;
    bottom: 12px;
    left: 0;
    flex-direction: column;
    justify-content: space-between;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    width: 24px;
}

.quadrant__axis--x {
    top: 0;
    left: 36px;
    right: 12px;
    justify-content: space-between;
    height: 24px;
}

.quadrant__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.qcell {
    padding: 26px 22px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    position: relative;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
    min-height: 200px;
}

.qcell:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2);
}

.qcell__coord {
    position: absolute;
    top: 18px;
    right: 20px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.qcell h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.3rem;
    letter-spacing: -0.01em;
    margin: 0 0 10px;
    color: var(--ink);
    max-width: 14ch;
}

.qcell p {
    font-size: 0.93rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 10px;
}

.qcell__ex {
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--ink-soft);
    padding-top: 10px;
    border-top: 1px solid var(--line);
    margin-top: 8px;
}

.qcell--accent {
    background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
    border-color: var(--gold);
    color: #fff;
}

.qcell--accent h3 { color: #fff; }
.qcell--accent p { color: rgba(255, 255, 255, 0.72); }
.qcell--accent .qcell__ex { color: var(--gold-3); border-color: rgba(255, 255, 255, 0.14); }
.qcell--accent .qcell__coord { color: var(--coral); }

.personas {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.persona {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 28px;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px 20px;
    align-items: start;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
    position: relative;
    overflow: hidden;
}

.persona::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 100% at 100% 0%, rgba(201, 164, 58, 0.08), transparent 60%);
    pointer-events: none;
}

.persona:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2);
    border-color: var(--gold);
}

.persona__letter {
    grid-row: span 2;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--cream-2);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.8rem;
    color: var(--ink);
    flex-shrink: 0;
}

.persona__name {
    grid-column: 2;
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.5rem;
    letter-spacing: -0.012em;
    margin: 0;
    color: var(--ink);
    line-height: 1.15;
}

.persona__body {
    grid-column: 2;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

.persona--accent {
    background: linear-gradient(180deg, #1A224D, var(--ink));
    color: #fff;
    border-color: var(--gold);
}

.persona--accent::before {
    background: radial-gradient(ellipse 60% 100% at 100% 0%, rgba(225, 79, 47, 0.2), transparent 60%);
}

.persona--accent .persona__name { color: #fff; }
.persona--accent .persona__body { color: rgba(255, 255, 255, 0.74); }

.persona--accent .persona__letter {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    color: var(--gold-3);
}

.verdicts {
    list-style: none;
    display: grid;
    gap: 0;
}

.verdict {
    padding: 26px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
    position: relative;
}

.verdict:last-child { border-bottom: 0; }

.verdict__num {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--gold-2);
    letter-spacing: 0.06em;
}

.verdict p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.02rem;
    line-height: 1.7;
    max-width: 70ch;
}

.verdict p strong {
    color: #fff;
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.25em;
    display: block;
    margin-bottom: 6px;
    letter-spacing: -0.008em;
    line-height: 1.25;
}

.questions {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--line);
}

.questions details {
    border-bottom: 1px solid var(--line);
    transition: background 0.2s var(--ease);
}

.questions details[open] {
    background: var(--paper);
}

.questions summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 4px;
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(1.1rem, 2.2vw, 1.45rem);
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--ink);
    transition: color 0.2s var(--ease);
}

.questions summary::-webkit-details-marker { display: none; }
.questions summary:hover { color: var(--coral); }

.questions__plus {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--line);
    position: relative;
    background: var(--paper);
    transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.3s var(--ease);
    margin-top: 4px;
}

.questions__plus::before,
.questions__plus::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    background: var(--ink);
    transition: transform 0.25s var(--ease), background 0.2s var(--ease);
}

.questions__plus::before {
    width: 10px;
    height: 1.5px;
    transform: translate(-50%, -50%);
}

.questions__plus::after {
    width: 1.5px;
    height: 10px;
    transform: translate(-50%, -50%);
}

.questions details[open] .questions__plus {
    background: var(--coral);
    border-color: var(--coral);
    transform: rotate(135deg);
}

.questions details[open] .questions__plus::before,
.questions details[open] .questions__plus::after { background: #fff; }

.questions__body {
    padding: 0 4px 24px;
    max-width: 70ch;
}

.questions__body p {
    margin: 0;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

.cta {
    padding: clamp(48px, 7vw, 90px) 0 clamp(64px, 9vw, 110px);
    background: var(--cream);
}

.cta__card {
    background:
        radial-gradient(ellipse 60% 100% at 100% 100%, rgba(225, 79, 47, 0.3), transparent 60%),
        radial-gradient(ellipse 50% 80% at 10% 0%, rgba(201, 164, 58, 0.18), transparent 60%),
        linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
    border-radius: var(--radius-l);
    padding: clamp(38px, 6vw, 72px);
    color: #fff;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.cta__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
}

.cta__kicker {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-3);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.cta__kicker::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold-2);
}

.cta__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
    max-width: 22ch;
}

.cta__title em {
    font-style: italic;
    color: var(--coral);
}

.cta__body {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.65;
    margin: 0 0 28px;
    max-width: 56ch;
}

.cta__row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
    transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
    white-space: nowrap;
}

.pill-btn svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pill-btn--gold {
    background: var(--gold-2);
    color: var(--ink);
}

.pill-btn--gold:hover {
    background: var(--gold-3);
    transform: translateY(-1px);
    box-shadow: 0 12px 26px -8px rgba(224, 190, 90, 0.5);
}

.pill-btn--ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.pill-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold-2);
}

.colophon {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.55);
    padding: 40px 0 32px;
    font-size: 0.88rem;
    border-top: 1px solid rgba(201, 164, 58, 0.16);
}

.colophon__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 26px;
    justify-content: space-between;
    align-items: center;
}

.colophon__brand {
    font-family: var(--serif);
    color: #fff;
    font-size: 1.15rem;
    letter-spacing: -0.008em;
}

.colophon__brand em {
    font-style: italic;
    color: var(--gold-2);
}

.colophon__line { margin: 0; }

.colophon__link {
    color: var(--gold-3);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s var(--ease);
}

.colophon__link:hover { border-color: var(--gold-2); }

@media (min-width: 640px) {
    .overture__wrap {
        grid-template-columns: 1.2fr 1fr;
        gap: 60px;
    }
    .pillars { grid-template-columns: repeat(2, 1fr); }
    .pillars .pillar:nth-child(odd):not(:last-child) { border-right: 1px solid var(--line); }
    .archetypes { gap: 16px; }
    .personas { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .overture__figures { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .cover__meta li { gap: 26px; }
    .cover__meta li + li::before { margin-left: -17px; }
}

@media (min-width: 900px) {
    .pillars { grid-template-columns: repeat(3, 1fr); }
    .pillars .pillar:nth-child(odd):not(:last-child) { border-right: 0; }
    .pillars .pillar:not(:nth-child(3n)) { border-right: 1px solid var(--line); }
    .pillars .pillar:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
    .archetypes { grid-template-columns: repeat(2, 1fr); }
    .archetypes .arche:last-child { grid-column: span 2; }
}

@media (min-width: 1080px) {
    .archetypes { grid-template-columns: repeat(3, 1fr); }
    .archetypes .arche:last-child { grid-column: auto; }
    .archetypes .arche:nth-child(4),
    .archetypes .arche:nth-child(5) { grid-column: span 1; }
}

@media (max-width: 899px) {
    .top-nav { display: none; }
    .nav-trigger { display: flex; }
}

@media (max-width: 540px) {
    .masthead__inner { padding-block: 10px; gap: 10px; }
    .wordmark__text { font-size: 1.35rem; }
    .wordmark__mark { width: 28px; height: 28px; }
    .pillar { padding: 24px 22px; }
    .arche { padding: 22px 20px; grid-template-columns: 40px 1fr; gap: 14px 18px; }
    .arche__tag { width: 40px; height: 40px; font-size: 1.2rem; }
    .persona { padding: 26px 22px; grid-template-columns: 46px 1fr; }
    .persona__letter { width: 46px; height: 46px; font-size: 1.5rem; }
    .cta__card { padding: 32px 24px; border-radius: var(--radius); }
    .figure { padding: 22px 20px; }
    .spectrum { padding: 28px 20px; }
    .spectrum__pins li span { font-size: 0.82rem; padding: 3px 7px; }
    .qcell { min-height: 0; padding: 22px 20px; }
    .quadrant { padding: 30px 6px 6px 30px; }
    .quadrant__axis--y { left: 2px; }
    .quadrant__axis--x { left: 30px; }
}

@media (max-width: 380px) {
    :root { --wrap: min(1180px, 100vw - 1.6rem); }
    .cover__title { font-size: clamp(2.2rem, 11vw, 3.2rem); }
    .overture__lead { font-size: 1.2rem; }
    .overture__lead::first-letter { font-size: 3.8em; }
    .arche { grid-template-columns: 1fr; }
    .arche__tag { grid-row: auto; }
    .arche__name, .arche__desc, .arche__ex { grid-column: 1; }
    .persona { grid-template-columns: 1fr; }
    .persona__letter { grid-row: auto; }
    .persona__name, .persona__body { grid-column: 1; }
    .quadrant__grid { grid-template-columns: 1fr; }
    .quadrant__axis--y { display: none; }
    .quadrant__axis--x { display: none; }
    .quadrant { padding: 0; }
}

@media (orientation: landscape) and (max-height: 540px) {
    .cover { padding: 44px 0 48px; }
    .chapter { padding: 48px 0; }
    .overture { padding: 40px 0 24px; }
    .aside { padding: 44px 0; }
    .curtain { padding: 16px 20px 28px; gap: 22px; }
    .curtain__list a { font-size: clamp(1.4rem, 5vw, 2rem); padding: 4px 0; }
}

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

:focus-visible {
    outline: 2px solid var(--coral);
    outline-offset: 3px;
    border-radius: 4px;
}

.curtain :focus-visible {
    outline-color: var(--gold-2);
}
