:root {
    --hope-navy: #253b5b;
    --hope-blue: #477ca8;
    --hope-teal: #67aaa5;
    --hope-cream: #faf8f4;
    --hope-text: #344454;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;

    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(103, 170, 165, 0.16),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 85%,
            rgba(141, 120, 181, 0.10),
            transparent 28%
        ),
        var(--hope-cream);

    color: var(--hope-text);

    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
}


/* Page */

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


/* Header */

.site-header {
    padding: 2rem 0;
}

.header-logo {
    display: block;
    width: 110px;
    height: 110px;
    object-fit: contain;
}


/* Hero */

.hero {
    flex: 1;

    display: flex;
    align-items: center;

    padding: 2rem 0 5rem;
}


.hero-card {
    position: relative;
    overflow: hidden;

    background: rgba(255, 255, 255, 0.94);

    border: 1px solid rgba(37, 59, 91, 0.08);

    border-radius: 1.75rem;

    box-shadow:
        0 1.5rem 4rem rgba(37, 59, 91, 0.10);

    padding: 4.5rem;
}


/* Decorative top border */

.hero-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 5px;

    background:
        linear-gradient(
            90deg,
            var(--hope-teal),
            var(--hope-blue),
            #8d78b5
        );
}


/* Logo */

.hero-logo {
    display: block;

    width: min(280px, 70%);

    height: auto;

    margin: 0 auto 2rem;
}


/* Status */

.status {
    display: inline-flex;

    align-items: center;
    gap: 0.55rem;

    padding: 0.6rem 1rem;

    border-radius: 50rem;

    background: rgba(103, 170, 165, 0.12);

    color: #3f817d;

    font-size: 0.78rem;

    font-weight: 700;

    letter-spacing: 0.075em;

    text-transform: uppercase;
}


.status-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--hope-teal);
}


/* Typography */

h1 {
    margin: 1.5rem 0;

    color: var(--hope-navy);

    font-size: clamp(2.7rem, 6vw, 4.8rem);

    line-height: 1.02;

    font-weight: 700;

    letter-spacing: -0.055em;
}


.lead {
    max-width: 680px;

    color: #5b6b79;

    font-size: 1.12rem;

    line-height: 1.8;
}


.condition {
    display: inline-block;

    margin-top: 1.75rem;

    color: var(--hope-navy);

    font-size: 0.95rem;

    font-weight: 600;
}


.condition span {
    margin: 0 0.35rem;

    color: var(--hope-teal);
}


/* Footer */

.site-footer {
    padding: 1.5rem 0;

    color: #7b8790;

    font-size: 0.85rem;
}


/* Mobile */

@media (max-width: 767.98px) {

    .site-header {
        padding: 1.25rem 0;
    }

    .header-logo {
        width: 80px;
        height: 80px;
    }

    .hero {
        padding: 1rem 0 3rem;
    }

    .hero-card {
        padding: 3rem 1.5rem;

        border-radius: 1.25rem;
    }

    .hero-logo {
        width: min(230px, 75%);
    }

    h1 {
        font-size: 2.75rem;
    }

    .lead {
        font-size: 1rem;
        line-height: 1.7;
    }

      background: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(37, 59, 91, 0.08);
        border-radius: 1.25rem;
        padding: 2rem;

        box-shadow:
            0 0.75rem 2rem rgba(37, 59, 91, 0.06);

        transition:
            transform 0.2s ease,
            box-shadow 0.2s ease;
    }

    .info-card:hover {
        transform: translateY(-3px);

        box-shadow:
            0 1rem 2.5rem rgba(37, 59, 91, 0.10);
    }

    .info-card h2 {
        color: var(--hope-navy);
        font-size: 1.35rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .info-card p {
        color: #667582;
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 0;
    }
}