/* --- ACP Status Page Styles --- */

/* Page Hero - Global Standard */
.page-hero {
    background: radial-gradient(circle at center, #002699 0%, #000000 100%);
    color: #fff;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #e0f2fe;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-tag.alert {
    background: rgba(255, 179, 0, 0.2);
    border-color: rgba(255, 179, 0, 0.4);
    color: #ffd60a;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
    color: #e2e8f0;
}

/* Base Sections */
.block-layout {
    padding: 5rem 0;
}

.block-layout.alt-bg {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
}

.sub-heading {
    color: #64748b;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Status Banner */
.status-banner {
    background: #fff;
    border-left: 6px solid #ef4444;
    /* Red for alert/ended */
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.1);
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.status-icon {
    font-size: 3rem;
    line-height: 1;
}

.status-banner h2 {
    color: #ef4444;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.status-banner p {
    color: #334155;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.stat-card {
    text-align: center;
    min-width: 200px;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: #0066FF;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #0066FF 0%, #004080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.content-block p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.8;
}

.content-margin-top {
    margin-top: 3rem;
}

/* Comparison Table */
.comparison-table-container {
    max-width: 850px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.program-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.program-table th,
.program-table td {
    padding: 1.25rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.program-table th {
    background: #f8fafc;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.program-table th.col-active {
    background: #f0fdf4;
    /* Light green */
    color: #166534;
    border-bottom: 2px solid #22c55e;
}

.program-table th.col-inactive {
    background: #fef2f2;
    /* Light red */
    color: #991b1b;
    border-bottom: 2px solid #ef4444;
}

.program-table td {
    color: #334155;
    font-size: 1.05rem;
}

.program-table tr:last-child td {
    border-bottom: none;
}

.status-active {
    color: #166534;
    font-weight: 700;
    background: #dcfce7;
}

.status-inactive {
    color: #991b1b;
    font-weight: 700;
    background: #fee2e2;
}

/* Buttons */
.center-cta {
    text-align: center;
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary-large {
    background: linear-gradient(135deg, #0066FF 0%, #004080 100%);
    color: #fff;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 102, 255, 0.4);
}

.btn-secondary-large {
    background: #fff;
    color: #0066FF;
    border: 2px solid #0066FF;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    transition: all 0.2s;
}

.btn-secondary-large:hover {
    background: #f0f7ff;
}

/* Animations */
.fade-in-up,
.slide-in-left,
.slide-in-right {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-in-up {
    transform: translateY(30px);
}

.slide-in-left {
    transform: translateX(-50px);
}

.slide-in-right {
    transform: translateX(50px);
}

.visible.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.visible.slide-in-left {
    opacity: 1;
    transform: translateX(0);
}

.visible.slide-in-right {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.25rem;
    }

    .status-banner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .stats-grid {
        gap: 3rem;
    }

    .stat-number {
        font-size: 3rem;
    }
}