/* Hero */
.reports-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--slate-dark) 100%);
    padding: 64px 0 48px;
    text-align: center;
}
.reports-hero h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}
.reports-hero p {
    font-size: 1.1rem;
    color: var(--gray-light);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Auth bar */
.auth-bar {
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}
.auth-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.auth-bar-text { font-size: 0.9rem; color: var(--gray); }
.auth-bar-buttons { display: flex; gap: 8px; }

/* Report sections */
.reports-section { padding: 56px 0; }
.reports-section.alt { background: var(--bg-subtle); }

/* Report card grid */
.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 24px;
}
.report-card {
    display: block;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    text-decoration: none;
    color: var(--text);
    transition: box-shadow 0.2s, transform 0.15s;
    position: relative;
}
.report-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-2px);
    text-decoration: none;
}
.report-card.locked { opacity: 0.85; }
.report-card .lock-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 1.1rem;
}
.report-card-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 10px;
}
.report-card-tag.free { background: #d1fae5; color: #065f46; }
.report-card-tag.recap { background: #fef3c7; color: #92400e; }
.report-card-tag.agenda_prep { background: #dbeafe; color: #1e40af; }
.report-card-tag.post_meeting { background: #ede9fe; color: #5b21b6; }
.report-card-tag.locked { background: var(--bg-alt); color: var(--gray); }
.report-card-tag.subscriber { background: #dbeafe; color: #1e40af; }
.report-card-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.4;
}
.report-card-date {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}
.no-reports { color: var(--gray); font-style: italic; }

/* Report type info cards */
.report-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 880px;
    margin: 0 auto;
}
.report-type-card {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
}
.report-type-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.report-type-card .tag-before { background: #dbeafe; color: #1e40af; }
.report-type-card .tag-after { background: #d1fae5; color: #065f46; }
.report-type-card .tag-free { background: #fef3c7; color: #92400e; }
.report-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 12px;
}
.report-type-card p { font-size: 0.93rem; color: var(--slate-light); line-height: 1.6; margin-bottom: 16px; }
.report-type-card ul { list-style: none; padding: 0; }
.report-type-card li {
    font-size: 0.88rem;
    color: var(--slate);
    padding: 4px 0 4px 20px;
    position: relative;
}
.report-type-card li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 700;
    font-size: 0.85rem;
}

/* Coverage stats */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}
.coverage-stat {
    text-align: center;
    padding: 24px 16px;
    background: var(--bg-subtle);
    border-radius: 10px;
    border: 1px solid var(--border);
}
.coverage-stat .stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
    line-height: 1.2;
}
.coverage-stat .stat-label { font-size: 0.82rem; color: var(--slate-light); margin-top: 4px; }

/* Modal */
.modal-overlay {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.modal-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px 32px;
    max-width: 420px;
    width: 90%;
    text-align: center;
}
.modal-card h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.modal-card p { color: var(--gray); margin-bottom: 24px; line-height: 1.6; }
.modal-card .btn-primary { display: inline-block; margin-bottom: 12px; }
.modal-close { display: block; margin: 0 auto; }

/* Toast */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #065f46;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 1001;
}
.toast.visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Responsive */
@media (max-width: 768px) {
    .reports-hero { padding: 48px 0 36px; }
    .reports-hero h1 { font-size: 1.7rem; }
    .report-types-grid { grid-template-columns: 1fr; }
    .coverage-grid { grid-template-columns: repeat(2, 1fr); }
    .auth-bar-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    .coverage-grid { grid-template-columns: 1fr; }
}
