:root {
    --content-bg: #f4f5f7;
    --content-surface: #ffffff;
    --content-border: #e6e8ec;
    --content-text: #111111;
    --content-muted: #4b5563;
    --content-accent: #0f172a;
    --content-accent-soft: #e9eef5;
    --content-success: #166534;
    --content-danger: #991b1b;
    --content-radius: 14px;
    --content-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--content-text);
    background: var(--content-bg);
}

a {
    color: inherit;
}

.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(15, 23, 42, 0.08);
    z-index: 90;
    pointer-events: none;
}

.reading-progress-bar {
    display: block;
    height: 100%;
    width: 100%;
    transform-origin: left center;
    transform: scaleX(0);
    background: linear-gradient(90deg, #0f172a 0%, #3b82f6 100%);
}

.content-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid var(--content-border);
}

.content-header-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.content-brand {
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

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

.content-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-size: 0.92rem;
    text-decoration: none;
    padding: 0 12px;
    border-radius: 999px;
    color: #1f2937;
}

.content-nav a.active {
    background: var(--content-accent-soft);
    color: #0f172a;
    font-weight: 600;
}

.content-cta {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    text-decoration: none;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--content-accent);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

.content-wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 42px 20px 72px;
}

.hero-block {
    background: linear-gradient(140deg, #ffffff 0%, #f5f7fb 100%);
    border: 1px solid var(--content-border);
    border-radius: calc(var(--content-radius) + 4px);
    padding: 28px;
    box-shadow: var(--content-shadow);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.hero-block::after {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0) 72%);
    pointer-events: none;
}

.content-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.78rem;
    color: #64748b;
}

.content-breadcrumbs a {
    text-decoration: none;
}

.content-breadcrumbs .separator {
    color: #94a3b8;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #334155;
    background: #f1f5f9;
    border: 1px solid #dbe3ec;
    border-radius: 999px;
    padding: 6px 12px;
}

.hero-title {
    margin: 16px 0 12px;
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    line-height: 1.15;
}

.hero-subtitle {
    margin: 0;
    max-width: 760px;
    color: var(--content-muted);
    font-size: 1.03rem;
    line-height: 1.65;
}

.authority-meta {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.authority-meta-item {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid #d8dee8;
    background: #f8fafc;
    color: #334155;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
}

.evidence-snapshot {
    margin-top: 18px;
    border: 1px solid #d8dee8;
    border-radius: 12px;
    background: #ffffff;
    padding: 14px 16px;
}

.evidence-snapshot h3 {
    margin: 0 0 10px;
    font-size: 1rem;
}

.evidence-snapshot ul {
    margin: 0;
    padding-left: 20px;
}

.evidence-snapshot li {
    margin: 0 0 8px;
    color: #1f2937;
    line-height: 1.55;
}

.evidence-snapshot li:last-child {
    margin-bottom: 0;
}

.download-row {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.download-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid #cfd7e3;
    text-decoration: none;
    font-size: 0.84rem;
    color: #0f172a;
    background: #ffffff;
    font-weight: 600;
}

.insight-note {
    margin-top: 12px;
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.6;
}

.in-page-toc {
    margin-top: 18px;
    border: 1px solid #d8dee8;
    border-radius: 12px;
    background: #ffffff;
    padding: 14px 16px;
}

.in-page-toc h3 {
    margin: 0 0 10px;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #475569;
}

.in-page-toc ol {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 8px;
}

.in-page-toc a {
    color: #334155;
    text-decoration: none;
    line-height: 1.45;
    font-size: 0.92rem;
}

.in-page-toc a.active {
    color: #0f172a;
    font-weight: 600;
}

.content-tabs {
    margin: 0 0 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.content-tab {
    border: 1px solid #d6deeb;
    background: #ffffff;
    color: #334155;
    border-radius: 999px;
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
}

.content-tab.is-active {
    background: #0f172a;
    border-color: #0f172a;
    color: #ffffff;
}

.case-abstract {
    margin-top: 16px;
    border: 1px solid #d8dee8;
    border-radius: 12px;
    background: #ffffff;
    padding: 14px 16px;
}

.case-abstract h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.case-abstract p {
    margin: 0;
    color: #1f2937;
    line-height: 1.65;
}

.decision-question {
    margin-top: 14px;
    border: 1px solid #c7d2e3;
    border-radius: 12px;
    background: #f8fbff;
    padding: 12px 14px;
}

.decision-question strong {
    display: block;
    margin-bottom: 6px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #334155;
}

.decision-question p {
    margin: 0;
    color: #0f172a;
    line-height: 1.6;
}

.insight-table-wrap {
    margin-top: 16px;
    overflow-x: auto;
}

.insight-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #d8dee8;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
}

.insight-table th,
.insight-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #e8edf4;
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.5;
}

.insight-table th {
    background: #f8fafc;
    color: #334155;
    font-weight: 600;
}

.insight-table tbody tr:nth-child(even) td {
    background: #fbfcff;
}

.insight-table tr:last-child td {
    border-bottom: 0;
}

.exhibit-caption {
    margin-top: 8px;
    font-size: 0.82rem;
    color: #64748b;
}

.exhibit-figure {
    margin: 16px 0 0;
    border: 1px solid #dde4ef;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    padding: 14px;
}

.exhibit-figure figcaption {
    margin: 0 0 10px;
    font-size: 0.84rem;
    color: #475569;
    line-height: 1.5;
}

.bar-chart {
    display: grid;
    gap: 10px;
}

.bar-row {
    display: grid;
    grid-template-columns: minmax(120px, 1.4fr) minmax(140px, 4fr) auto;
    align-items: center;
    gap: 10px;
}

.bar-label {
    font-size: 0.84rem;
    color: #334155;
}

.bar-track {
    height: 10px;
    border-radius: 999px;
    background: #e8eef7;
    overflow: hidden;
}

.bar-fill {
    display: block;
    height: 100%;
    width: calc(var(--value) * 1%);
    border-radius: 999px;
    background: linear-gradient(90deg, #0f172a 0%, #1e293b 100%);
    transform-origin: left center;
    animation: bar-rise 650ms cubic-bezier(0.2, 0.65, 0.2, 1);
}

.bar-row[data-tone="positive"] .bar-fill {
    background: linear-gradient(90deg, #0f172a 0%, #2563eb 100%);
}

.bar-row[data-tone="neutral"] .bar-fill {
    background: linear-gradient(90deg, #334155 0%, #64748b 100%);
}

.bar-row[data-tone="risk"] .bar-fill {
    background: linear-gradient(90deg, #7f1d1d 0%, #b91c1c 100%);
}

.bar-value {
    font-size: 0.8rem;
    color: #0f172a;
    font-weight: 600;
    white-space: nowrap;
}

.camp-hero-media {
    margin-top: 18px;
    display: grid;
    grid-template-columns: minmax(280px, 1.45fr) minmax(220px, 1fr);
    gap: 14px;
}

.camp-hero-panel {
    border: 1px solid #d8e0ec;
    border-radius: 12px;
    background: linear-gradient(165deg, #ffffff 0%, #f7faff 100%);
    padding: 14px;
}

.camp-hero-panel img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    display: block;
    background: #ffffff;
}

.camp-hero-caption {
    margin: 10px 0 0;
    font-size: 0.82rem;
    color: #475569;
    line-height: 1.5;
}

.camp-metric-grid {
    display: grid;
    gap: 10px;
}

.camp-metric-card {
    border: 1px solid #d9e1ed;
    border-radius: 12px;
    background: #ffffff;
    padding: 12px 12px 11px;
}

.camp-metric-label {
    font-size: 0.73rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    margin-bottom: 6px;
}

.camp-metric-value {
    font-size: 1.32rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.1;
}

.camp-metric-note {
    margin-top: 6px;
    font-size: 0.82rem;
    color: #475569;
}

.weight-profile {
    margin-top: 16px;
    border: 1px solid #d8e0ec;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    padding: 14px;
}

.weight-profile-title {
    margin: 0 0 12px;
    font-size: 0.86rem;
    color: #475569;
}

.weight-row {
    display: grid;
    grid-template-columns: minmax(90px, 1.2fr) minmax(220px, 4fr) auto;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.weight-row:last-child {
    margin-bottom: 0;
}

.weight-stage {
    font-size: 0.83rem;
    color: #334155;
    font-weight: 600;
}

.weight-bar {
    display: flex;
    width: 100%;
    height: 16px;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid #dbe3ef;
    background: #f8fafc;
}

.weight-segment {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.67rem;
    color: #0f172a;
    font-weight: 700;
    border-right: 1px solid rgba(15, 23, 42, 0.12);
}

.weight-segment:last-child {
    border-right: 0;
}

.weight-segment.capital {
    background: #dbeafe;
}

.weight-segment.advantage {
    background: #e0f2fe;
}

.weight-segment.market {
    background: #dcfce7;
}

.weight-segment.people {
    background: #fae8ff;
}

.weight-legend {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.weight-legend span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #475569;
}

.weight-legend i {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    display: inline-block;
}

.camp-image-figure {
    margin: 16px 0 0;
    border: 1px solid #d8e0ec;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    padding: 14px;
}

.camp-image-figure img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    display: block;
    background: #ffffff;
}

.camp-image-figure figcaption {
    margin: 10px 0 0;
    color: #475569;
    font-size: 0.82rem;
    line-height: 1.5;
}

.trust-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.trust-card {
    border: 1px solid #dbe4f0;
    border-radius: 12px;
    background: #ffffff;
    padding: 12px 12px 11px;
}

.trust-card h4 {
    margin: 0 0 6px;
    font-size: 0.88rem;
    line-height: 1.4;
    color: #0f172a;
}

.trust-card p {
    margin: 0;
    color: #475569;
    font-size: 0.8rem;
    line-height: 1.5;
}

.trust-chip {
    margin-top: 9px;
    display: inline-flex;
    align-items: center;
    border: 1px solid #d7e0ee;
    border-radius: 999px;
    padding: 4px 8px;
    font-size: 0.7rem;
    color: #334155;
    background: #f8fbff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.trust-ledger {
    border-color: #d4deeb;
    background: linear-gradient(175deg, #ffffff 0%, #f7faff 100%);
}

.trust-ledger h2 {
    border-left-color: #c6d6ea;
}

.methodology-callout {
    margin-top: 14px;
    border: 1px solid #dbe4f0;
    border-radius: 12px;
    background: #ffffff;
    padding: 12px 13px;
}

.methodology-callout h4 {
    margin: 0 0 8px;
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #475569;
}

.methodology-callout ul {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 6px;
}

.methodology-callout li {
    margin: 0;
    color: #1f2937;
    font-size: 0.88rem;
    line-height: 1.55;
}

.reviewer-log {
    margin-top: 18px;
    border: 1px solid #dbe4f0;
    border-radius: 12px;
    background: #ffffff;
    padding: 14px 15px;
}

.reviewer-log h3 {
    margin: 0 0 8px;
    font-size: 0.95rem;
    color: #0f172a;
}

.reviewer-log ul {
    margin: 0;
    padding-left: 20px;
}

.reviewer-log li {
    margin: 0 0 7px;
    color: #334155;
    font-size: 0.88rem;
    line-height: 1.55;
}

.reviewer-log li:last-child {
    margin-bottom: 0;
}

[data-content-slug="camp-framework-deep-dive"] .hero-title {
    max-width: 900px;
}

[data-content-slug="camp-framework-deep-dive"] .hero-subtitle {
    max-width: 840px;
}

@keyframes bar-rise {
    from {
        opacity: 0.35;
        transform: scaleX(0.2);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

.discussion-questions {
    margin-top: 18px;
    border: 1px solid #d8dee8;
    border-radius: 12px;
    background: #ffffff;
    padding: 14px 16px;
}

.discussion-questions h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.discussion-questions ol {
    margin: 0;
    padding-left: 20px;
}

.discussion-questions li {
    margin: 0 0 8px;
    color: #1f2937;
    line-height: 1.6;
}

.discussion-questions li:last-child {
    margin-bottom: 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 16px;
}

.card {
    grid-column: span 12;
    background: var(--content-surface);
    border: 1px solid var(--content-border);
    border-radius: var(--content-radius);
    padding: 20px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.card.is-hidden {
    display: none;
}

.featured-card {
    border-color: #d4deeb;
    background: linear-gradient(160deg, #ffffff 0%, #f8fbff 100%);
}

.card h3 {
    margin: 0 0 10px;
    font-size: 1.1rem;
}

.card p {
    margin: 0;
    color: var(--content-muted);
    line-height: 1.6;
}

.card .meta {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill {
    display: inline-block;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 0.73rem;
    border: 1px solid #dbe3ec;
    background: #f8fafc;
    color: #334155;
}

.pill.outcome {
    border-color: #bbf7d0;
    background: #f0fdf4;
    color: #166534;
}

.pill.failure {
    border-color: #fecaca;
    background: #fef2f2;
    color: #991b1b;
}

.claim-block {
    border: 1px solid var(--content-border);
    background: #ffffff;
    border-radius: 12px;
    padding: 14px 16px;
    margin: 12px 0;
}

.claim-label {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #475569;
    margin-bottom: 8px;
}

.claim-text {
    margin: 0;
    color: #111827;
    line-height: 1.6;
}

.article-body {
    margin-top: 18px;
    display: grid;
    gap: 16px;
}

.article-section {
    border: 1px solid var(--content-border);
    background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
    border-radius: 12px;
    padding: 18px;
}

.article-section h2 {
    margin: 0 0 10px;
    font-size: 1.18rem;
    line-height: 1.35;
    padding-left: 12px;
    border-left: 3px solid #dbe4f0;
}

.article-section p {
    margin: 0 0 10px;
    color: #1f2937;
    line-height: 1.7;
}

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

.article-section ul {
    margin: 0;
    padding-left: 20px;
}

.article-section li {
    margin: 0 0 8px;
    color: #1f2937;
    line-height: 1.65;
}

.article-section li:last-child {
    margin-bottom: 0;
}

.sources {
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px dashed #d5d9e0;
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.6;
}

.cta-row {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    text-decoration: none;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid #cfd7e3;
    color: #0f172a;
    font-weight: 600;
    font-size: 0.9rem;
    background: #ffffff;
}

.btn.primary {
    background: #0f172a;
    border-color: #0f172a;
    color: #ffffff;
}

.newsletter-module {
    margin-top: 28px;
    border: 1px solid var(--content-border);
    background: #ffffff;
    border-radius: var(--content-radius);
    padding: 20px;
}

.newsletter-module h3 {
    margin: 0 0 8px;
    font-size: 1.08rem;
}

.newsletter-module p {
    margin: 0 0 14px;
    color: var(--content-muted);
}

.newsletter-signup-form {
    display: grid;
    gap: 10px;
}

.newsletter-signup-form input[type="email"] {
    width: 100%;
    border: 1px solid #cfd7e3;
    border-radius: 10px;
    min-height: 44px;
    padding: 0 12px;
    font-size: 0.95rem;
}

.newsletter-signup-form button {
    border: 0;
    border-radius: 10px;
    min-height: 44px;
    padding: 0 14px;
    background: #0f172a;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
}

.newsletter-signup-form label {
    font-size: 0.84rem;
    color: #475569;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.form-status {
    min-height: 20px;
    font-size: 0.87rem;
}

.form-status.success {
    color: var(--content-success);
}

.form-status.error {
    color: var(--content-danger);
}

.content-footer {
    margin-top: 34px;
    border-top: 1px solid var(--content-border);
    padding-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: space-between;
    color: #475569;
    font-size: 0.9rem;
}

.content-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.content-footer-links a {
    text-decoration: none;
}

.content-nav a:focus-visible,
.content-cta:focus-visible,
.btn:focus-visible,
.download-link:focus-visible,
.newsletter-signup-form button:focus-visible,
.newsletter-signup-form input[type="email"]:focus-visible,
.newsletter-signup-form input[type="checkbox"]:focus-visible {
    outline: 2px solid #0f172a;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .content-header,
    .btn,
    .content-cta,
    .content-nav a,
    .newsletter-signup-form button {
        transition: none !important;
    }
    .bar-fill {
        animation: none !important;
    }
}

@media (max-width: 680px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .camp-hero-media {
        grid-template-columns: 1fr;
    }
    .weight-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .weight-stage {
        margin-top: 4px;
    }
    .bar-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .bar-track {
        height: 9px;
    }
    .content-tabs {
        margin-bottom: 14px;
    }
}

@media (min-width: 768px) {
    .featured-card {
        grid-column: span 12;
        padding: 24px;
    }
    .featured-card h3 {
        font-size: 1.35rem;
    }
    .card.span-6 {
        grid-column: span 6;
    }
    .card.span-4 {
        grid-column: span 4;
    }
}
