@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;600&display=swap');

:root {
    --ink: #0A1128;
    --ink-2: #131F52;
    --ink-3: #1F2B66;
    --gold: #D4A94A;
    --gold-soft: #E8C574;
    --gold-bright: #F4D98A;
    --coral: #FF5A3D;
    --coral-2: #FF7B61;
    --coral-soft: #FFD9CD;
    --coral-wash: #FFF0EA;
    --paper: #FBF7EC;
    --paper-2: #F3ECD4;
    --paper-3: #EADFB9;
    --line: #E0D5AD;
    --line-2: #C8BB8C;
    --text: #14192E;
    --muted: #5E6378;
    --subtle: #8B90A6;
    --good: #2E7B54;
    --r-xs: 4px;
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-xl: 32px;
    --shadow-1: 0 2px 6px rgba(10,17,40,0.06);
    --shadow-2: 0 14px 34px rgba(10,17,40,0.10);
    --shadow-3: 0 28px 70px rgba(10,17,40,0.15);
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --fast: 180ms var(--ease);
    --base: 280ms var(--ease);
    --max: 1200px;
    --sans: 'Space Grotesk', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --display: 'DM Serif Display', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
    --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
}

*, *::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(--paper);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
}

body.ui-locked { overflow: hidden; }

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

a:hover { color: var(--coral); }

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(--coral);
    outline-offset: 3px;
    border-radius: var(--r-xs);
}

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

.skip:focus { left: 0; color: var(--paper); }

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(10, 17, 40, 0.94);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid rgba(244, 217, 138, 0.18);
}

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

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

.logo__mark {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.2));
}

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

.logo__a { color: #FFFFFF; }
.logo__b { color: var(--gold-soft); }

.nav-primary { display: none; }

.nav-primary ul {
    list-style: none;
    display: flex;
    gap: 4px;
}

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

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

.nav-primary .is-here {
    color: var(--gold-bright);
    background: rgba(212,169,74,0.15);
}

.trigger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    width: 42px;
    height: 42px;
    padding: 13px 11px;
    gap: 5px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 10px;
    transition: background-color var(--fast), border-color var(--fast);
}

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

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

.trigger__bar:nth-child(2) { width: 65%; align-self: flex-end; background: var(--gold-bright); }

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

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

.sheet {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 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;
}

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

.sheet__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);
}

.sheet__kicker {
    color: var(--gold-soft);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
}

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

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

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

.sheet__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sheet__list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 16px;
    color: rgba(255,255,255,0.92);
    font-family: var(--display);
    font-size: 22px;
    font-weight: 400;
    border-radius: 12px;
    transition: background-color var(--fast), color var(--fast);
    letter-spacing: -0.01em;
}

.sheet__list a:hover { background: rgba(255,255,255,0.07); color: var(--gold-bright); }

.sheet__list a span { color: var(--coral-2); font-family: var(--sans); font-size: 18px; }

.sheet__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: 12.5px;
    color: var(--muted);
    font-family: var(--mono);
    letter-spacing: 0.02em;
}

.crumbs ol {
    list-style: none;
    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(--coral); }

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

.marquee {
    background:
        radial-gradient(ellipse at 90% -15%, rgba(255,90,61,0.24) 0%, transparent 55%),
        radial-gradient(ellipse at -10% 110%, rgba(244,217,138,0.18) 0%, transparent 55%),
        linear-gradient(150deg, var(--ink) 0%, var(--ink-2) 70%, var(--ink-3) 100%);
    color: #FFFFFF;
    padding: clamp(40px, 6.5vw, 80px) 20px clamp(70px, 10vw, 120px);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--ink-3);
}

.marquee::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 35%, transparent 90%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 35%, transparent 90%);
}

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

.marquee__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 12px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    color: rgba(255,255,255,0.82);
}

.chip--coral {
    background: var(--coral);
    border-color: var(--coral);
    color: #FFFFFF;
}

.marquee__title {
    font-family: var(--display);
    font-size: clamp(40px, 7.5vw, 84px);
    line-height: 0.96;
    font-weight: 400;
    color: #FFFFFF;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
}

.marquee__title em {
    font-style: italic;
    color: var(--coral-2);
    display: inline;
}

.marquee__sub {
    font-size: clamp(15.5px, 1.7vw, 18px);
    line-height: 1.6;
    color: rgba(255,255,255,0.78);
    max-width: 580px;
    margin: 0;
}

.marquee__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 14px 22px;
    margin: 34px 0 0;
    padding-top: 22px;
    border-top: 1px dashed rgba(244,217,138,0.35);
    max-width: 480px;
}

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

.marquee__stats dt {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.marquee__stats dd {
    font-family: var(--display);
    font-size: 26px;
    font-weight: 400;
    color: var(--gold-bright);
    margin: 0;
    line-height: 1;
    letter-spacing: -0.01em;
}

.marquee__viz {
    margin: 0;
    order: -1;
    display: flex;
    justify-content: center;
}

.marquee__viz svg {
    width: min(340px, 80vw);
    height: auto;
    filter: drop-shadow(0 25px 45px rgba(0,0,0,0.45));
    border-radius: var(--r-lg);
    background: rgba(255,255,255,0.02);
}

.ledger {
    max-width: var(--max);
    margin: clamp(-68px, -8vw, -54px) auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.lede {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: clamp(30px, 5vw, 56px);
    margin-bottom: 84px;
    box-shadow: var(--shadow-2);
    position: relative;
    overflow: hidden;
}

.lede::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--coral) 0%, var(--gold) 50%, var(--ink-2) 100%);
}

.lede__first {
    font-family: var(--display);
    font-size: clamp(22px, 3.5vw, 32px);
    line-height: 1.2;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.015em;
    margin: 0 0 20px;
}

.lede__first em {
    font-style: italic;
    color: var(--coral);
    display: inline-block;
}

.lede p:not(.lede__first) {
    font-size: clamp(15.5px, 1.4vw, 17.5px);
    line-height: 1.72;
    color: var(--text);
    margin: 0 0 16px;
}

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

.lede strong { color: var(--ink); font-weight: 700; }
.lede em { color: var(--coral); font-style: italic; font-weight: 500; }

.chapter-head {
    margin: 96px 0 38px;
    max-width: 820px;
}

.chapter-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 18px;
}

.chapter-eyebrow__pip {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--coral);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255,90,61,0.15);
}

.chapter-title {
    font-family: var(--display);
    font-size: clamp(32px, 5.6vw, 58px);
    line-height: 1.02;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.025em;
    margin: 0 0 18px;
}

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

.chapter-sub {
    font-size: 16.5px;
    line-height: 1.65;
    color: var(--muted);
    margin: 0;
    max-width: 720px;
}

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

.pin {
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: clamp(22px, 3.5vw, 34px);
    position: relative;
    overflow: hidden;
    transition: transform var(--base), border-color var(--base), box-shadow var(--base);
}

.pin::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 100%);
}

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

.pin--accent {
    background: linear-gradient(155deg, var(--ink) 0%, var(--ink-2) 100%);
    color: #FFFFFF;
    border-color: transparent;
}

.pin--accent::after { background: linear-gradient(180deg, var(--coral) 0%, var(--coral-2) 100%); }

.pin__coord {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 14px;
    display: inline-block;
    padding: 4px 8px;
    background: var(--paper-2);
    border-radius: 4px;
}

.pin--accent .pin__coord {
    color: var(--gold-bright);
    background: rgba(244,217,138,0.14);
}

.pin__head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.pin__num {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--ink);
    color: var(--gold-bright);
    font-family: var(--display);
    font-size: 24px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.pin--accent .pin__num {
    background: var(--coral);
    color: #FFFFFF;
}

.pin__head h3 {
    font-family: var(--display);
    font-size: clamp(22px, 2.8vw, 28px);
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0 0 4px;
}

.pin--accent .pin__head h3 { color: #FFFFFF; }

.pin__role {
    display: inline-block;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    color: var(--coral);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pin--accent .pin__role { color: var(--coral-soft); }

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

.pin--accent .pin__body { color: rgba(255,255,255,0.85); }

.pin__body strong { color: var(--ink); font-weight: 700; }
.pin--accent .pin__body strong { color: var(--gold-bright); }
.pin__body em { color: var(--coral); font-style: italic; font-weight: 500; }
.pin--accent .pin__body em { color: var(--coral-2); }

.pin__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.pin__tags span {
    font-family: var(--mono);
    font-size: 11.5px;
    font-weight: 600;
    padding: 4px 10px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink-2);
}

.pin--accent .pin__tags span {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.18);
    color: var(--gold-bright);
}

.take {
    margin: 72px 0;
    padding: clamp(28px, 4.5vw, 48px);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-1);
}

.take::before {
    content: "\201C";
    position: absolute;
    top: -26px;
    left: 16px;
    font-family: var(--display);
    font-style: italic;
    font-size: 180px;
    color: var(--gold);
    opacity: 0.25;
    line-height: 1;
}

.take--coral { background: var(--coral-wash); border-color: var(--coral-soft); }
.take--coral::before { color: var(--coral); opacity: 0.3; }

.take__quote { margin: 0 0 18px; position: relative; }

.take__quote p {
    font-family: var(--display);
    font-size: clamp(19px, 2.6vw, 27px);
    line-height: 1.32;
    font-weight: 400;
    font-style: italic;
    color: var(--ink);
    margin: 0;
    letter-spacing: -0.012em;
}

.take__who {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px dashed var(--line-2);
}

.take__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--gold-bright);
    font-family: var(--display);
    font-size: 20px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.take__avatar--coral { background: var(--coral); color: #FFFFFF; }

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

.take__name {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.005em;
}

.take__role {
    font-family: var(--mono);
    font-size: 11.5px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.06em;
}

.route {
    list-style: none;
    counter-reset: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    position: relative;
}

.route li {
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 22px 22px 22px 22px;
    position: relative;
    transition: border-color var(--base), transform var(--base);
}

.route li:hover { border-color: var(--coral-soft); transform: translateX(3px); }

.route__step {
    display: inline-block;
    font-family: var(--mono);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--coral);
    padding: 3px 8px;
    background: var(--coral-wash);
    border-radius: 4px;
    margin-bottom: 10px;
}

.route h3 {
    font-family: var(--display);
    font-size: clamp(20px, 2.4vw, 24px);
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.015em;
    margin: 0 0 6px;
    line-height: 1.2;
}

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

.route em { color: var(--coral); font-style: italic; font-weight: 500; }

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

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

.verdict:hover {
    border-color: var(--line-2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-1);
}

.verdict--feature {
    background: linear-gradient(155deg, var(--ink) 0%, var(--ink-2) 100%);
    color: #FFFFFF;
    border-color: transparent;
}

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

.verdict__flag {
    display: inline-block;
    font-family: var(--mono);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--gold-bright);
    padding: 5px 10px;
    border-radius: 4px;
    margin-bottom: 14px;
}

.verdict__top {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px dashed var(--line);
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 4px 16px;
    align-items: center;
}

.verdict--feature .verdict__top { border-bottom-color: rgba(255,255,255,0.15); }

.verdict__scale {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
}

.verdict--feature .verdict__scale { color: var(--coral-2); }

.verdict__top h3 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    font-family: var(--display);
    font-size: clamp(22px, 2.7vw, 27px);
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.verdict--feature .verdict__top h3 { color: #FFFFFF; }

.verdict__score {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    display: inline-flex;
    gap: 3px;
    align-items: center;
}

.gavel {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--paper-3);
    display: inline-block;
    transition: background-color var(--fast), transform var(--fast);
}

.gavel.is-on {
    background: var(--coral);
    box-shadow: 0 0 0 2px rgba(255,90,61,0.18);
}

.gavel.is-on:hover { transform: scale(1.3); }

.gavel--gold.is-on { background: var(--gold-bright); box-shadow: 0 0 0 2px rgba(244,217,138,0.25); }

.verdict--feature .gavel { background: rgba(255,255,255,0.15); }

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

.verdict__body dt {
    font-family: var(--mono);
    font-size: 10.5px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.verdict--feature .verdict__body dt { color: var(--gold-soft); }

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

.verdict--feature .verdict__body dd { color: rgba(255,255,255,0.85); }

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

.watchouts {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.watchouts li {
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-left: 4px solid var(--coral);
    border-radius: var(--r-md);
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform var(--base), border-color var(--base);
}

.watchouts li:hover { transform: translateX(4px); }

.watchouts__num {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--coral);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.watchouts h3 {
    font-family: var(--display);
    font-size: clamp(19px, 2.3vw, 23px);
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.015em;
    line-height: 1.2;
}

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

.watchouts em { color: var(--coral); font-style: italic; font-weight: 500; }

.coda {
    background: linear-gradient(155deg, var(--ink) 0%, var(--ink-2) 100%);
    color: #FFFFFF;
    padding: clamp(36px, 6vw, 64px);
    border-radius: var(--r-xl);
    margin: 0 0 72px;
    position: relative;
    overflow: hidden;
}

.coda::after {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,90,61,0.26) 0%, transparent 70%);
    pointer-events: none;
}

.coda .chapter-eyebrow { color: var(--coral-2); position: relative; z-index: 1; }
.coda .chapter-eyebrow__pip { background: var(--coral-2); box-shadow: 0 0 0 4px rgba(255,123,97,0.2); }

.coda__title {
    font-family: var(--display);
    font-size: clamp(28px, 4.8vw, 46px);
    line-height: 1.05;
    font-weight: 400;
    color: #FFFFFF;
    letter-spacing: -0.022em;
    margin: 0 0 22px;
    position: relative;
    z-index: 1;
    max-width: 820px;
}

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

.coda p {
    font-size: 16px;
    line-height: 1.72;
    color: rgba(255,255,255,0.82);
    margin: 0 0 14px;
    max-width: 760px;
    position: relative;
    z-index: 1;
}

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

.foot {
    background: var(--ink);
    color: rgba(255,255,255,0.72);
    padding: 52px 20px 34px;
    margin-top: 64px;
    position: relative;
    overflow: hidden;
}

.foot::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--coral) 0%, var(--gold) 100%);
}

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

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

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

.foot__links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    font-family: var(--mono);
    font-size: 12.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.foot__links a { color: rgba(255,255,255,0.72); font-weight: 500; }
.foot__links a:hover { color: var(--coral-2); }

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

@media (min-width: 560px) {
    .marquee__stats { grid-template-columns: repeat(4, 1fr); }
    .pins { grid-template-columns: repeat(2, 1fr); }
    .pin--accent { grid-column: 1 / -1; }
    .verdicts { grid-template-columns: repeat(2, 1fr); }
    .verdict--feature { grid-column: 1 / -1; }
    .watchouts { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 820px) {
    .marquee__grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        gap: 56px;
    }
    .marquee__viz { order: 0; }
    .marquee__viz svg { width: 100%; max-width: 440px; }
    .ledger { padding: 0 32px; }
    .crumbs { padding: 24px 32px 0; }
    .route { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (min-width: 920px) {
    .nav-primary { display: flex; }
    .trigger { display: none; }
    .topbar__row { padding: 16px 32px; }
    .foot__row { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 1060px) {
    .pins { grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .pin--accent { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; }
    .pin--accent .pin__coord { grid-column: 1 / -1; margin-bottom: 0; }
    .pin--accent .pin__head { margin-bottom: 0; }
    .pin--accent .pin__body { margin: 0; max-width: 640px; }
    .pin--accent .pin__tags { flex-wrap: wrap; max-width: 320px; justify-content: flex-end; }
    .verdicts { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .verdict--feature { grid-column: 1 / -1; }
    .watchouts { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .route { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1200px) {
    .verdicts { grid-template-columns: repeat(4, 1fr); }
    .verdict--feature { grid-column: 1 / -1; }
}

@media (max-width: 460px) {
    .marquee__stats { grid-template-columns: 1fr 1fr; }
    .marquee__stats dd { font-size: 22px; }
    .pin__head { flex-direction: column; gap: 10px; align-items: flex-start; }
    .pin__num { width: 44px; height: 44px; font-size: 20px; border-radius: 12px; }
    .take::before { font-size: 140px; top: -20px; }
    .verdict__top { grid-template-columns: 1fr; gap: 8px; }
    .verdict__score { grid-column: 1; grid-row: auto; }
}

@media (orientation: landscape) and (max-height: 540px) {
    .marquee { padding-top: 32px; padding-bottom: 56px; }
    .marquee__stats { margin-top: 22px; padding-top: 16px; }
    .ledger { margin-top: -40px; }
    .sheet { padding-top: 16px; }
    .sheet__top { margin-bottom: 18px; padding-bottom: 12px; }
    .sheet__list a { padding: 12px 14px; font-size: 18px; }
    .chapter-head { margin: 60px 0 26px; }
}

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

@media print {
    .topbar, .veil, .sheet, .trigger, .foot { display: none !important; }
    .marquee { background: none; color: var(--text); padding: 20px 0; }
    .marquee__title, .marquee__sub, .marquee__stats dd, .chip { color: var(--text); }
    .marquee__viz { display: none; }
    .pin, .take, .coda, .verdict, .watchouts li, .route li { box-shadow: none; break-inside: avoid; }
    .pin--accent, .verdict--feature, .coda { background: var(--paper-2); color: var(--text); }
    .coda__title, .coda p { color: var(--text); }
}
