/* -- Report Styles ---------------------------------------------------------- */

.report-section {
    position: relative;
}.report-cover {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg-primary);
    padding: var(--section-padding-y) var(--section-padding-x);
}.report-cover-inner {
    position: relative;
    z-index: 1;
}.report-cover-accent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 63, 94, 0.08) 0%, transparent 70%);
    pointer-events: none;
}.report-cover-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.15;
}.report-cover-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}.report-prose p {
    color: var(--text-body);
    font-size: var(--body-size);
    line-height: var(--body-line-height);
    margin-bottom: 1.25rem;
}.report-prose p:last-child {
    margin-bottom: 0;
}.report-number-badge {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 700;
    color: var(--accent);
    opacity: 0.12;
    line-height: 1;
    margin-bottom: -0.5rem;
    user-select: none;
}.report-formula {
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-left: 3px solid #d4a853;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text-body);
    margin: 1.5rem 0;
}/* Reading progress */
.report-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 100;
    background: transparent;
}.report-progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--accent), #d4a853);
    transition: width 100ms linear;
}/* Download button */
.report-download-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    color: var(--text-heading);
    padding: 0.75rem 1.25rem;
    border-radius: 9999px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 300ms ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}.report-download-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(244, 63, 94, 0.3);
}/* -- Print styles ----------------------------------------------------------- */

@media print {
    #site-header,
    footer,
    .back-to-top,
    .sticky-cta-mobile,
    .report-download-btn,
    .report-progress,
    .ciak-overlay,
    #report-gate {
        display: none !important;
    }

    body, section, .report-section {
        background: #fff !important;
        color: #222 !important;
    }

    .text-text-heading, .font-heading, h1, h2, h3 {
        color: #111 !important;
    }

    .text-text-body, .report-prose p {
        color: #333 !important;
    }

    .text-accent, .text-accent-light {
        color: #c41640 !important;
    }

    .report-number-badge {
        color: #c41640 !important;
        opacity: 0.15 !important;
    }

    .report-formula {
        background: #f5f5f5 !important;
        border-color: #ddd !important;
        border-left-color: #b8860b !important;
        color: #333 !important;
    }

    .report-section {
        page-break-inside: avoid;
    }

    .report-cover {
        page-break-after: always;
        min-height: auto !important;
        padding: 4rem 2rem !important;
    }
}