/* ========================================
   Report Page — 보고서
   ======================================== */

.rp-page {
    background: #0B1120;
    min-height: 100vh;
    font-family: var(--font-family);
    color: #E2E8F0;
}

.rp-hero {
    padding: 140px 0 48px;
    text-align: center;
    background: linear-gradient(180deg, #0F172A 0%, #0B1120 100%);
    position: relative;
    overflow: hidden;
}

.rp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.rp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: #FCD34D;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 9999px;
    margin-bottom: 20px;
}

.rp-hero h1 {
    font-size: 38px;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.025em;
    margin-bottom: 12px;
}

.rp-hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* --- Feature Cards --- */
.rp-features {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.rp-feature {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
}

.rp-feature:hover {
    border-color: rgba(245, 158, 11, 0.2);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-4px);
}

.rp-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.rp-feature-icon.yellow { background: rgba(245, 158, 11, 0.12); color: #FCD34D; }
.rp-feature-icon.blue { background: rgba(37, 99, 235, 0.12); color: #93B4FF; }
.rp-feature-icon.green { background: rgba(16, 185, 129, 0.12); color: #6EE7B7; }

.rp-feature h3 {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.rp-feature p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
}

/* --- Sample Report Preview --- */
.rp-preview {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px 64px;
}

.rp-preview-title {
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 32px;
}

.rp-preview-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.rp-preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.rp-preview-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
}

.rp-preview-date {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

/* Stats Grid */
.rp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.rp-stat {
    text-align: center;
    padding: 20px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
}

.rp-stat-value {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 4px;
}

.rp-stat-value.yellow { color: #F59E0B; }
.rp-stat-value.blue { color: #3B82F6; }
.rp-stat-value.green { color: #10B981; }
.rp-stat-value.red { color: #EF4444; }

.rp-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* Chart placeholder */
.rp-chart-placeholder {
    height: 200px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.rp-chart-placeholder i {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.1);
}

.rp-chart-placeholder span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.25);
}

/* Bar chart visual */
.rp-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 160px;
    padding: 0 20px;
    margin-bottom: 8px;
}

.rp-bar {
    flex: 1;
    border-radius: 6px 6px 0 0;
    transition: height 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.rp-bar::after {
    content: attr(data-label);
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    white-space: nowrap;
}

/* Login CTA */
.rp-login-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px 64px;
}

.rp-login-card {
    text-align: center;
    padding: 60px 24px;
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 20px;
}

.rp-login-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.rp-login-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 28px;
    line-height: 1.6;
}

.rp-login-card .cs-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--primary);
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-family);
}

.rp-login-card .cs-login-btn:hover {
    background: var(--primary-dark);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
}

/* --- Responsive --- */
@media (max-width: 1023px) {
    .rp-features {
        grid-template-columns: 1fr;
    }

    .rp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .rp-hero {
        padding: 110px 0 32px;
    }

    .rp-hero h1 {
        font-size: 24px;
    }

    .rp-preview-card {
        padding: 24px;
    }

    .rp-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .rp-preview-header {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
}
