/* ══════════════════════════════════════════════
   SmallBusinessAIPlaybook — Shared Styles
   Primary: #0E2442  |  Font: Avenir fallback stack
   ══════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ── Base ── */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Avenir', 'Avenir Next', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #0E2442;
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: #0E2442; transition: color 0.2s; }
strong { color: #0E2442; }

::selection { background: rgba(14,36,66,0.12); }

/* ── Skip to content (accessibility) ── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: #0E2442;
    color: #fff;
    padding: 8px 16px;
    border-radius: 0 0 6px 6px;
    z-index: 9999;
    font-size: 0.9rem;
    text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ── Header / Nav ── */
.site-header {
    background-color: #0E2442;
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(14,36,66,0.15);
}

.site-header .logo { height: 40px; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #ffffff;
    border-radius: 1px;
    transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 7px 12px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
    color: #ffffff;
    background: rgba(255,255,255,0.12);
}

/* ── Hero ── */
.hero {
    background: linear-gradient(170deg, #0E2442 0%, #132d52 60%, #17365f 100%);
    color: #ffffff;
    padding: 90px 40px 100px;
    text-align: center;
    position: relative;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0E2442, #2d5a8e, #0E2442);
    opacity: 0.5;
}
.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    max-width: 900px;
    margin: 0 auto 22px;
    line-height: 1.12;
    letter-spacing: -0.02em;
}
.hero .subtitle {
    font-size: 1.2rem;
    max-width: 680px;
    margin: 0 auto 40px;
    opacity: 0.82;
    line-height: 1.65;
    font-weight: 400;
}
.hero .cta-btn {
    display: inline-block;
    padding: 16px 44px;
    border: 2px solid #ffffff;
    border-radius: 30px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s, transform 0.2s;
}
.hero .cta-btn:hover {
    background-color: #ffffff;
    color: #0E2442;
    transform: translateY(-1px);
}

/* ── Content wrapper ── */
.content-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ── Sections ── */
.section { padding: 72px 0; }
.section.bg-light { background-color: #f7f9fb; }
.section.bg-dark { background: #0E2442; color: #ffffff; }
.section.bg-dark p { color: rgba(255,255,255,0.85); }
.section.bg-dark h2, .section.bg-dark h3 { color: #ffffff; }

.section h2 {
    font-size: 2rem;
    margin-bottom: 22px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}
.section h3 {
    font-size: 1.35rem;
    margin: 40px 0 14px;
    line-height: 1.3;
}
.section p {
    font-size: 1.05rem;
    margin-bottom: 18px;
    color: #2a3a50;
    line-height: 1.75;
}
.section ul, .section ol {
    margin: 0 0 20px 24px;
    font-size: 1.05rem;
    color: #2a3a50;
    line-height: 1.75;
}
.section li { margin-bottom: 10px; }

/* ── Stat cards ── */
.stat-row {
    display: flex;
    gap: 24px;
    margin: 36px 0;
    flex-wrap: wrap;
}
.stat-card {
    flex: 1;
    min-width: 200px;
    background: #ffffff;
    border-left: 4px solid #0E2442;
    padding: 28px 24px;
    box-shadow: 0 2px 16px rgba(14,36,66,0.06);
    border-radius: 6px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 24px rgba(14,36,66,0.1);
}
.stat-card .number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0E2442;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.stat-card .label {
    font-size: 0.92rem;
    color: #5a6a7a;
    line-height: 1.5;
}
.stat-card cite {
    font-style: normal;
    font-size: 0.82rem;
    color: #8a9ab0;
}
.stat-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* For stat cards on dark bg */
.bg-dark .stat-card { border-left-color: #ffffff; }
.bg-dark .stat-card .number { color: #0E2442; }

/* ── Blockquote / Pullquote ── */
blockquote {
    border-left: 4px solid #0E2442;
    margin: 32px 0;
    padding: 24px 28px;
    background: #f7f9fb;
    font-style: italic;
    font-size: 1.12rem;
    color: #2a3a50;
    border-radius: 0 10px 10px 0;
    line-height: 1.7;
}
blockquote cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    font-size: 0.88rem;
    color: #5a6a7a;
    font-weight: 500;
}

/* ── Callout box ── */
.callout {
    background: #0E2442;
    color: #ffffff;
    padding: 32px 28px;
    border-radius: 12px;
    margin: 36px 0;
    box-shadow: 0 4px 20px rgba(14,36,66,0.15);
}
.callout h3 { color: #ffffff; margin-top: 0; font-size: 1.2rem; }
.callout p { color: rgba(255,255,255,0.85); margin-bottom: 0; line-height: 1.7; }
.callout a { color: rgba(255,255,255,0.9); text-decoration: underline; }

/* ── "Try It Now" prompt box ── */
.try-it-now {
    background: linear-gradient(135deg, #0E2442 0%, #1a3a5c 100%);
    color: #ffffff;
    padding: 36px 32px;
    border-radius: 14px;
    margin: 44px 0;
    position: relative;
    box-shadow: 0 4px 24px rgba(14,36,66,0.18);
}
.try-it-now h3 {
    color: #ffffff;
    margin: 0 0 12px 0;
    font-size: 1.2rem;
}
.try-it-now p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 16px;
    line-height: 1.65;
}
.try-it-now .prompt-text {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 8px;
    padding: 18px 22px;
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1.65;
    margin-bottom: 16px;
    position: relative;
}

/* ── Prompt card (for prompt library + inline) ── */
.prompt-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px;
    margin: 28px 0;
    box-shadow: 0 2px 12px rgba(14,36,66,0.05);
    transition: box-shadow 0.2s, transform 0.2s;
}
.prompt-card:hover {
    box-shadow: 0 4px 20px rgba(14,36,66,0.09);
    transform: translateY(-1px);
}
.prompt-card .scenario {
    font-size: 0.85rem;
    color: #5a6a7a;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 8px;
    font-weight: 600;
}
.prompt-card h4 {
    font-size: 1.12rem;
    color: #0E2442;
    margin-bottom: 14px;
}
.prompt-card .prompt-text {
    background: #f7f9fb;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 18px 22px;
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.88rem;
    color: #2a3a50;
    line-height: 1.65;
    margin-bottom: 14px;
    white-space: pre-wrap;
    position: relative;
}
.prompt-card .tip {
    font-size: 0.88rem;
    color: #5a6a7a;
    margin-bottom: 0;
    line-height: 1.5;
    padding-left: 12px;
    border-left: 2px solid #e2e8f0;
}

/* ── Copy button ── */
.copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: #0E2442;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    font-family: inherit;
}
.copy-btn:hover { background: #1a3a5c; transform: translateY(-1px); }
.copy-btn:active { transform: scale(0.97); }
.copy-btn.copied { background: #16a34a; }

/* Copy button inside try-it-now */
.try-it-now .copy-btn {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
}
.try-it-now .copy-btn:hover { background: rgba(255,255,255,0.22); }
.try-it-now .copy-btn.copied { background: #16a34a; border-color: #16a34a; }

/* ── Chapter nav / progress ── */
.chapter-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 44px 0;
    margin-top: 24px;
    border-top: 1px solid #e2e8f0;
}
.chapter-nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #0E2442;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.2s, transform 0.15s;
}
.chapter-nav a:hover { background: #1a3a5c; transform: translateY(-1px); }
.chapter-nav .prev { background: transparent; color: #0E2442; border: 1px solid #d1d5db; }
.chapter-nav .prev:hover { background: #f7f9fb; color: #0E2442; }

/* ── Prompt Library Filter ── */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0 40px;
}
.filter-btn {
    padding: 9px 22px;
    border: 1px solid #d1d5db;
    border-radius: 20px;
    background: #ffffff;
    color: #2a3a50;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.filter-btn:hover { border-color: #0E2442; color: #0E2442; }
.filter-btn.active {
    background: #0E2442;
    color: #ffffff;
    border-color: #0E2442;
}

/* ── Disclaimer ── */
.disclaimer {
    background: #f7f9fb;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 22px 26px;
    margin: 40px 0;
    font-size: 0.88rem;
    color: #5a6a7a;
    line-height: 1.65;
}

/* ── Footer ── */
.site-footer {
    background: #0a1a30;
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding: 32px 40px;
    font-size: 0.85rem;
    line-height: 1.6;
}
.site-footer a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}
.site-footer a:hover { color: #ffffff; }

/* ── Kitchen metaphor cards ── */
.metaphor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 36px 0;
}
.metaphor-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 26px;
    box-shadow: 0 2px 12px rgba(14,36,66,0.06);
    border-top: 3px solid #0E2442;
    transition: transform 0.2s, box-shadow 0.2s;
}
.metaphor-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(14,36,66,0.1);
}
.bg-light .metaphor-card { background: #ffffff; }
.metaphor-card .emoji {
    font-size: 2rem;
    margin-bottom: 10px;
}
.metaphor-card h4 {
    font-size: 1.02rem;
    color: #0E2442;
    margin-bottom: 4px;
}
.metaphor-card .equals {
    font-size: 0.84rem;
    color: #5a6a7a;
    margin-bottom: 10px;
    font-weight: 500;
}
.metaphor-card p {
    font-size: 0.92rem;
    color: #2a3a50;
    margin-bottom: 0;
    line-height: 1.55;
}

/* ── Prompting spectrum steps ── */
.spectrum-step {
    background: #ffffff;
    border-radius: 12px;
    padding: 26px;
    margin: 22px 0;
    box-shadow: 0 2px 12px rgba(14,36,66,0.05);
    border-left: 4px solid #0E2442;
    transition: transform 0.2s, box-shadow 0.2s;
}
.spectrum-step:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(14,36,66,0.08);
}
.bg-light .spectrum-step { background: #ffffff; }
.spectrum-step h4 {
    font-size: 1.08rem;
    color: #0E2442;
    margin-bottom: 4px;
}
.spectrum-step .tech-term {
    font-size: 0.78rem;
    color: #5a6a7a;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 10px;
    font-weight: 500;
}
.spectrum-step p {
    font-size: 0.96rem;
    margin-bottom: 12px;
    line-height: 1.6;
}
.spectrum-step .prompt-text {
    background: #f7f9fb;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 14px 18px;
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.86rem;
    color: #2a3a50;
    line-height: 1.55;
    margin: 0;
}

/* ── Anatomy visual ── */
.anatomy-box {
    background: #f7f9fb;
    border: 2px solid #0E2442;
    border-radius: 14px;
    padding: 32px;
    margin: 36px 0;
}
.anatomy-box h4 {
    text-align: center;
    color: #0E2442;
    font-size: 1.15rem;
    margin-bottom: 24px;
}
.anatomy-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}
.anatomy-label {
    background: #0E2442;
    color: #ffffff;
    padding: 5px 14px;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    min-width: 100px;
    text-align: center;
    letter-spacing: 0.3px;
}
.anatomy-text {
    font-size: 0.95rem;
    color: #2a3a50;
    line-height: 1.55;
}

/* ── Fade-in animation for sections ── */
@media (prefers-reduced-motion: no-preference) {
    .section {
        animation: fadeInUp 0.6s ease-out both;
    }
    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(16px); }
        to   { opacity: 1; transform: translateY(0); }
    }
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .main-nav { display: none; }
    .nav-toggle { display: flex; }

    .main-nav.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #0E2442;
        z-index: 999;
        padding: 80px 24px 40px;
        gap: 4px;
        overflow-y: auto;
    }
    .main-nav.open a {
        font-size: 1.1rem;
        padding: 14px 16px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
}

@media (max-width: 768px) {
    .hero { padding: 60px 24px 70px; }
    .hero h1 { font-size: 2rem; }
    .hero .subtitle { font-size: 1.05rem; }
    .content-wrap { padding: 0 24px; }
    .section { padding: 52px 0; }
    .section h2 { font-size: 1.55rem; }
    .section h3 { font-size: 1.2rem; }
    .stat-row { flex-direction: column; }
    .stat-card { min-width: unset; }
    .site-header { padding: 12px 20px; }
    .site-footer { padding: 24px 20px; }
    .metaphor-grid { grid-template-columns: 1fr; }
    .chapter-nav { flex-direction: column; gap: 12px; }
    .chapter-nav a { width: 100%; justify-content: center; }
    .prompt-card { padding: 20px; }
    .try-it-now { padding: 28px 22px; }
    .callout { padding: 24px 20px; }
    .anatomy-row { flex-direction: column; gap: 6px; }
    .anatomy-label { min-width: auto; }
}

/* ── AI Tools Grid ── */
.tools-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 32px 0;
    justify-content: center;
}
.tool-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    text-decoration: none;
    color: #0E2442;
    font-size: 0.95rem;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    box-shadow: 0 1px 6px rgba(14,36,66,0.04);
    min-width: 140px;
}
.tool-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(14,36,66,0.1);
    border-color: #0E2442;
}
.bg-light .tool-link { background: #ffffff; }

/* ── Standalone CTA button (used outside hero) ── */
.cta-btn {
    display: inline-block;
    padding: 16px 44px;
    background: #0E2442;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}
.cta-btn:hover {
    background: #1a3a5c;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ── Splash page (homepage) ── */
.splash-hero {
    background: linear-gradient(170deg, #0E2442 0%, #132d52 60%, #17365f 100%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    position: relative;
}
.splash-hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    max-width: 900px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}
.splash-hero .subtitle {
    font-size: 1.4rem;
    max-width: 640px;
    opacity: 0.82;
    line-height: 1.65;
    margin-bottom: 44px;
}
.splash-hero .cta-btn {
    display: inline-block;
    padding: 18px 52px;
    border: 2px solid #ffffff;
    border-radius: 30px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s, transform 0.2s;
}
.splash-hero .cta-btn:hover {
    background-color: #ffffff;
    color: #0E2442;
    transform: translateY(-2px);
}
.splash-tagline {
    margin-top: 48px;
    font-size: 0.92rem;
    opacity: 0.55;
    max-width: 500px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .splash-hero { padding: 40px 24px; }
    .splash-hero h1 { font-size: 2.2rem; }
    .splash-hero .subtitle { font-size: 1.05rem; }
    .tools-grid { gap: 10px; }
    .tool-link { min-width: 120px; padding: 10px 16px; font-size: 0.88rem; }
}

/* ── Cookie Consent Banner ── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    color: #0E2442;
    z-index: 9999;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.1);
    border-top: 1px solid #e2e8f0;
    animation: slideUp 0.4s ease-out;
}
@keyframes slideUp {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
}
.cookie-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}
.cookie-banner-inner p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #5a6a7a;
    margin: 0;
    white-space: nowrap;
}
.cookie-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.cookie-btn {
    padding: 8px 18px;
    border-radius: 5px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: background 0.2s, transform 0.15s;
}
.cookie-btn:active { transform: scale(0.97); }
.cookie-accept {
    background: #0E2442;
    color: #ffffff;
}
.cookie-accept:hover { background: #1a3a5c; }
.cookie-manage {
    background: transparent;
    color: #5a6a7a;
    border: 1px solid #d1d5db;
}
.cookie-manage:hover {
    color: #0E2442;
    border-color: #0E2442;
}

/* ── Preferences panel ── */
.cookie-prefs {
    border-top: 1px solid #e2e8f0;
}
.cookie-prefs-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 12px 40px 16px;
}
.cookie-pref-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #e2e8f0;
}
.cookie-pref-row:last-of-type { border-bottom: none; }
.cookie-pref-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.cookie-pref-info strong {
    color: #0E2442;
    font-size: 0.92rem;
}
.cookie-pref-info span {
    font-size: 0.82rem;
    color: #5a6a7a;
    line-height: 1.4;
}
.cookie-toggle.disabled {
    font-size: 0.82rem;
    color: #8a9ab0;
    font-style: italic;
}
.cookie-prefs-actions {
    padding-top: 14px;
    text-align: right;
}

/* Toggle switch */
.cookie-toggle-switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 26px;
    flex-shrink: 0;
}
.cookie-toggle-switch input { opacity: 0; width: 0; height: 0; }
.cookie-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #d1d5db;
    border-radius: 26px;
    transition: background 0.25s;
}
.cookie-slider::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: #ffffff;
    border-radius: 50%;
    transition: transform 0.25s;
}
.cookie-toggle-switch input:checked + .cookie-slider {
    background: #4ade80;
}
.cookie-toggle-switch input:checked + .cookie-slider::before {
    transform: translateX(20px);
}

@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        padding: 14px 24px;
        text-align: center;
        gap: 10px;
    }
    .cookie-prefs-inner { padding: 10px 24px 14px; }
    .cookie-pref-row { gap: 10px; }
}

/* ── Print ── */
@media print {
    .site-header, .nav-toggle, .chapter-nav, .copy-btn, .filter-bar, .cookie-banner { display: none !important; }
    .hero { background: #0E2442 !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
    .section { padding: 24px 0; break-inside: avoid; }
    body { font-size: 11pt; }
}
