:root {
    --bg: #edf4f7;
    --surface: rgba(255, 255, 255, 0.96);
    --surface-strong: #ffffff;
    --surface-soft: rgba(7, 57, 82, 0.05);
    --text: #143041;
    --text-muted: #4a6573;
    --border: rgba(20, 48, 65, 0.12);
    --border-strong: rgba(20, 48, 65, 0.18);
    --navy: #123247;
    --teal: #25b98e;
    --cyan: #2f9fe0;
    --shadow: 0 20px 48px rgba(18, 50, 71, 0.1);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --content-width: min(1160px, calc(100vw - 5rem));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Source Sans 3", "Segoe UI", sans-serif;
    color: var(--text);
    background:
    radial-gradient(circle at 10% 12%, rgba(47, 159, 224, 0.12), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(37, 185, 142, 0.1), transparent 20%),
    linear-gradient(180deg, #f7fbfc 0%, #edf4f7 58%, #e8f0f3 100%);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(36, 174, 240, 0.92);
    outline-offset: 4px;
}

.page-shell {
    position: relative;
    overflow: clip;
}

.page-shell::before,
.page-shell::after {
    content: "";
    position: fixed;
    inset: auto;
    width: 32rem;
    height: 32rem;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
    opacity: 0.5;
    z-index: -1;
}

.page-shell::before {
    top: -10rem;
    right: -12rem;
    background: rgba(37, 185, 142, 0.12);
}

.page-shell::after {
    bottom: 6rem;
    left: -14rem;
    background: rgba(47, 159, 224, 0.1);
}

.hero,
.section {
    width: var(--content-width);
    margin: 0 auto;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.95fr);
    gap: 1.5rem;
    padding: 2.5rem 0 2rem;
}

.hero__backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(47, 159, 224, 0.08), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 249, 251, 0.98));
    border: 1px solid var(--border);
    border-radius: 36px;
    box-shadow: var(--shadow);
    top: 40px;
}

.hero__content,
.hero__panel {
    position: relative;
    z-index: 1;
}

.hero__content {
    padding: 2.75rem clamp(2rem, 4vw, 3.5rem) 3.5rem;
}

.hero__panel {
    display: grid;
    align-content: center;
    gap: 1rem;
    padding: 2.5rem 1.75rem 2.5rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    max-width: min(42rem, 100%);
    margin-bottom: 2rem;
}

.brand__logo {
    width: 100%;
    height: auto;
}

.brand__logo--stacked {
    display: none;
    max-width: 260px;
}

.section__kicker,
.cta-card__eyebrow,
.status-card__label {
    margin: 0 0 0.9rem;
    font-family: "Source Sans 3", "Segoe UI", sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #2479b2;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Merriweather", Georgia, serif;
    font-weight: 700;
    line-height: 1.08;
    text-transform: none;
}

h1 {
    max-width: 13ch;
    font-size: clamp(2.9rem, 6.5vw, 4.9rem);
}

h2 {
    max-width: 16ch;
    font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
}

.hero__subheading {
    max-width: 38rem;
    margin: 1.5rem 0 0;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    line-height: 1.5;
    color: #274556;
}

.hero__summary,
.content-card p,
.status-card__text,
.cta-card p,
.site-footer p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-muted);
}

.hero__summary {
    max-width: 42rem;
    margin-top: 1.75rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.45rem;
    padding: 0.95rem 1.45rem;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    font-family: "Source Sans 3", "Segoe UI", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    color: #ffffff;
    background: linear-gradient(135deg, #14785f, #1a78a6);
    border-color: transparent;
    box-shadow: 0 16px 34px rgba(47, 159, 224, 0.16);
}

.button--primary:hover {
    background: linear-gradient(135deg, #116f59, #196d95);
    box-shadow: 0 18px 38px rgba(35, 116, 168, 0.22);
}

.button--secondary {
    color: var(--navy);
    background: rgba(255, 255, 255, 0.82);
    border-color: var(--border);
}

.button--secondary:hover {
    color: #0f2d40;
    background: rgba(232, 243, 248, 0.98);
    border-color: rgba(31, 121, 178, 0.28);
    box-shadow: 0 12px 26px rgba(18, 50, 71, 0.1);
}

.button--full {
    width: 100%;
}

.status-card,
.content-card,
.cta-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 253, 254, 0.92));
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.status-card {
    padding: 1.75rem;
}

.status-card__headline {
    margin: 0 0 0.7rem;
    font-family: "Merriweather", Georgia, serif;
    font-size: 1.8rem;
    line-height: 1.3;
    color: var(--navy);
}

.status-card--compact {
    background: linear-gradient(180deg, rgba(240, 248, 251, 0.98), rgba(255, 255, 255, 0.96));
}

.status-card a,
.site-footer a {
    color: #1f79b2;
}

.section {
    padding: 4rem 0 0;
}

.section__header {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.section__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.7fr);
    gap: 1.25rem;
}

.section__grid--registration {
    align-items: start;
}

.content-card,
.cta-card {
    padding: clamp(1.9rem, 3.2vw, 2.4rem);
}

.content-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 253, 0.94));
}

.content-card--wide {
    display: grid;
    gap: 1rem;
}

.content-card--compact-copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.55rem;
    height: 100%;
}

.content-card--highlight,
.cta-card {
    background:
        linear-gradient(180deg, rgba(47, 159, 224, 0.08), rgba(37, 185, 142, 0.05)),
        rgba(255, 255, 255, 0.98);
}

.metric {
    margin: 0;
    font-family: "Merriweather", Georgia, serif;
    font-size: clamp(3.6rem, 8vw, 5rem);
    line-height: 1;
    color: var(--navy);
}

.metric__label {
    margin: 0.85rem 0 0;
    font-family: "Source Sans 3", "Segoe UI", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2c6e95;
}

.content-card__support {
    margin-top: 1rem;
}

.cta-card {
    display: grid;
    align-content: start;
    gap: 1rem;
}

.site-footer {
    margin-top: 4rem;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(180deg, #19384b, #112b3a);
}

.site-footer__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    width: var(--content-width);
    margin: 0 auto;
    padding: 2rem 0 2.4rem;
}

.site-footer__title,
.site-footer__label {
    color: #ffffff;
    font-weight: 700;
}

.site-footer__note {
    margin-top: 0.25rem;
}

.site-footer p,
.site-footer a {
    color: rgba(232, 241, 246, 0.9);
}

@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero__panel {
        padding: 0 1.5rem 1.5rem;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    :root {
        --content-width: min(100vw - 1.25rem, 100vw - 1.25rem);
    }

    .hero {
        padding-top: 0.625rem;
    }

    .hero__backdrop {
        border-radius: 28px;
    }

    .hero__content {
        padding: 1.25rem 1.1rem 1.5rem;
    }

    .hero__panel {
        grid-template-columns: 1fr;
        padding: 0 1.1rem 1.1rem;
    }

    .brand {
        max-width: 16rem;
        margin-bottom: 1.4rem;
    }

    .brand__logo--horizontal {
        display: none;
    }

    .brand__logo--stacked {
        display: block;
    }

    h1 {
        max-width: none;
        font-size: clamp(2.5rem, 12vw, 3.6rem);
    }

    h2 {
        max-width: none;
    }

    .hero__actions,
    .site-footer__inner {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .section {
        padding-top: 2rem;
    }

    .site-footer {
        margin-top: 2.5rem;
    }

    .site-footer__inner {
        width: min(100vw - 1.25rem, 100vw - 1.25rem);
        padding: 1.5rem 0 1.8rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .button {
        transition: none;
    }

    .button:hover {
        transform: none;
    }
}