/* Report-specific styles */

.report-hero {
    padding: 3rem 0 2rem;
    background: var(--mocha);
    color: white;
    text-align: center;
    position: relative;
}

.report-badge-large {
    margin-bottom: 0.5rem;
}

.badge-number-large {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Courier New', monospace;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
}

.report-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.report-subtitle {
    font-size: 1rem;
    opacity: 0.8;
}

/* Floating Model Switcher */
.model-switcher {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.model-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    border-radius: 0.5rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
}

.model-btn:hover {
    background: var(--bg-light);
    color: var(--text);
}

.model-btn.active {
    background: rgba(0, 0, 0, 0.04);
    color: var(--text);
}

.model-btn svg {
    width: 20px;
    height: 20px;
}

.model-tooltip {
    position: absolute;
    bottom: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    background: var(--mocha);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.model-btn:hover .model-tooltip {
    opacity: 1;
}

.report-content-section {
    padding: 4rem 0;
    background: white;
}

.report-meta-info {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.report-view {
    display: none;
}

.report-view.active {
    display: block;
    animation: fadeIn 0.4s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary);
}

.section-intro {
    font-size: 1.125rem;
    color: var(--text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1.5rem;
    color: var(--primary);
}

.bullet-list,
.numbered-list {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.bullet-list li,
.numbered-list li {
    margin-bottom: 1rem;
    padding-left: 0;
    position: relative;
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text);
}

.bullet-list li::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.6rem;
    width: 0.375rem;
    height: 0.375rem;
    background: var(--mocha);
    border-radius: 50%;
}

.numbered-list {
    counter-reset: item;
}

.numbered-list li::before {
    content: counter(item) ".";
    counter-increment: item;
    position: absolute;
    left: -1.5rem;
    color: var(--mocha);
    font-weight: 600;
}

.bullet-list li strong,
.numbered-list li strong {
    font-weight: 600;
    color: var(--primary);
    display: inline;
}

.bullet-list li strong::after,
.numbered-list li strong::after {
    color: var(--text);
    font-weight: 400;
}

.bullet-list a,
.numbered-list a,
.section-intro a {
    color: var(--clementine);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.bullet-list a:hover,
.numbered-list a:hover,
.section-intro a:hover {
    border-bottom-color: var(--clementine);
}

.back-section {
    padding: 3rem 0;
    background: var(--bg-light);
    text-align: center;
}

.back-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.back-button:hover {
    background: #5558e3;
    transform: translateX(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .report-header-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .report-header-content {
        text-align: left;
    }

    .toggle-container-fixed {
        align-items: flex-start;
        width: 100%;
    }

    .report-main-title {
        font-size: 2rem;
    }

    .badge-number-large {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .toggle-switch {
        width: 100%;
    }

    .toggle-btn {
        flex: 1;
    }
}
