:root {
    --brand-primary: #004aad;
    --brand-secondary: #e3f2ff;
    --brand-dark: #0f172a;
    --brand-muted: #6b7280;
    --brand-accent: #f59e0b;
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

body {
    background: #f5f7fb;
    color: #0f172a;
}

.brand-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.hero-banner {
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.88), rgba(0, 74, 173, 0.45)),
        url('/assets/hero.jpg') center/cover;
    border-radius: 1.5rem;
    padding: 3.5rem;
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.12);
    margin-top: 2rem;
    color: #fff;
}

.hero-badge {
    background: var(--brand-secondary);
    color: var(--brand-primary);
    font-weight: 600;
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-primary);
    display: inline-block;
}

.hero-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-stats .stat-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    padding: 1.2rem 1.5rem;
    box-shadow: inset 0 0 0 1px rgba(99, 102, 241, 0.25);
    min-width: 180px;
}

.hero-stats h3 {
    margin-bottom: 0;
    font-size: 2rem;
}

.hero-banner .lead {
    color: rgba(255, 255, 255, 0.85);
}

.hero-figure {
    max-width: 90%;
    border: 6px solid #fff;
}

.disclaimer-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1.25rem;
    padding: 1.5rem 2rem;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15);
    color: #0f172a;
}

.inside-figure {
    border: 8px solid #fff;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.2);
}

.pill-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
}

.cta-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.section-heading {
    max-width: 680px;
    margin-bottom: 2rem;
}

.card-elevated {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
    height: 100%;
}

.list-check {
    padding-left: 1.2rem;
    color: var(--brand-muted);
}

.list-check li {
    margin-bottom: 0.35rem;
}

.detail-list dt {
    font-weight: 600;
    font-size: 0.85rem;
}

.detail-list dd {
    margin-bottom: 0.35rem;
    color: var(--brand-dark);
    font-size: 0.95rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: rgba(0, 74, 173, 0.15);
    color: var(--brand-primary);
    font-size: 0.85rem;
    margin-right: 0.35rem;
    margin-bottom: 0.35rem;
}

.tag-muted {
    background: rgba(107, 114, 128, 0.2);
    color: var(--brand-muted);
}

.list {
    padding-left: 1.1rem;
    color: var(--brand-muted);
}

.list li {
    margin-bottom: 0.35rem;
}

.form-note {
    font-size: 0.85rem;
    color: var(--brand-muted);
}

.text-brand {
    color: var(--brand-primary) !important;
}

.gradient-strip {
    background: linear-gradient(120deg, var(--brand-primary), #0081c9);
    border-radius: 1.25rem;
    color: #fff;
    padding: 2.5rem;
}

.story-card {
    border-radius: 1rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 1.3rem;
    background: #fff;
    height: 100%;
}

.table {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.table thead th {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: var(--brand-muted);
    background: #f8fafc;
}

.table td,
.table th {
    vertical-align: middle;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    border-radius: 999px;
    padding: 0.15rem 0.75rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.status-public {
    background: rgba(0, 74, 173, 0.15);
    color: var(--brand-primary);
}

.status-private {
    background: rgba(107, 114, 128, 0.2);
    color: var(--brand-muted);
}

.site-footer {
    background: linear-gradient(120deg, rgba(15, 23, 42, 0.95), rgba(0, 74, 173, 0.85)),
        url('/assets/center.jpg') center/cover fixed;
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 0;
    margin-top: 4rem;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.9);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
}

.footer-column h3 {
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.contact-list li {
    color: rgba(255, 255, 255, 0.9);
}

.contact-list a {
    text-decoration: none;
    color: inherit;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand img {
    width: 48px;
    height: 48px;
}

.fine-print {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 2rem;
    text-align: center;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

@media (max-width: 768px) {
    .hero-banner {
        padding: 2rem;
    }

    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }
}
