.page-home {
    --home-section-heading-size: clamp(2rem, 1.5rem + 1.6vw, 2.8rem);
    background:
        radial-gradient(circle at 12% 14%, rgba(24, 128, 158, 0.16), transparent 26%),
        radial-gradient(circle at 84% 18%, rgba(13, 91, 132, 0.13), transparent 24%),
        radial-gradient(circle at 50% 72%, rgba(15, 110, 168, 0.09), transparent 32%),
        linear-gradient(180deg, #f8fbfd 0%, #f3f7fa 48%, #f7fafc 100%);
    background-attachment: fixed;
}

.page-home::before {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.74)),
        radial-gradient(circle at 1px 1px, rgba(0, 95, 155, 0.045) 1px, transparent 0);
    opacity: 0.28;
}

.page-home .section,
.page-home .section--soft,
.page-home .stats-section,
.page-home .section--cta {
    background: transparent;
}

.page-home .section {
    padding-top: calc(var(--space-8) * 0.25);
}

.page-home .section--flush {
    padding-top: calc((var(--space-8) + 2rem) * 0.25);
}

.page-home main {
    position: relative;
    isolation: isolate;
}

.hero-section {
    padding-bottom: calc(var(--space-7) + 0.5rem);
}

.hero-shell {
    position: relative;
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 40px;
    background:
        radial-gradient(circle at top left, rgba(25, 133, 161, 0.12), transparent 24%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 252, 0.9));
    border: 1px solid rgba(13, 13, 13, 0.06);
    box-shadow: 0 30px 70px rgba(8, 19, 29, 0.08);
    overflow: hidden;
}

.hero-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(13, 91, 132, 0.16), transparent 20%),
        linear-gradient(90deg, transparent 0%, transparent 58%, rgba(13, 91, 132, 0.04) 100%);
    pointer-events: none;
}

.page-home .hero-grid {
    grid-template-columns: 1fr;
}

.hero-copy {
    display: grid;
    gap: var(--space-4);
    align-content: start;
    justify-items: center;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-copy .eyebrow {
    color: #0d5b84;
}

.hero-copy .button--secondary {
    background: rgba(13, 91, 132, 0.06);
    border-color: rgba(13, 91, 132, 0.14);
    color: var(--color-ink);
}

.hero-copy h1 {
    max-width: none;
    font-size: clamp(3.1rem, 7vw, 5.8rem);
    line-height: 0.95;
    color: #10263a;
}

.hero-lead {
    max-width: 72ch;
    color: rgba(16, 38, 58, 0.8);
}

.hero-copy .button-row,
.hero-proofline {
    justify-content: center;
}

.hero-proofline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.hero-proofline span {
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #0d5b84;
    background: rgba(13, 91, 132, 0.08);
    border: 1px solid rgba(13, 91, 132, 0.1);
}

.hero-metrics {
    position: relative;
    z-index: 1;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
    align-items: stretch;
    text-align: left;
}

.hero-metrics article {
    display: grid;
    gap: 0.45rem;
    padding: 1rem 1.05rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(13, 13, 13, 0.06);
    box-shadow: 0 12px 24px rgba(8, 19, 29, 0.05);
}

.hero-metrics strong {
    color: #10263a;
}

.hero-metrics p {
    color: rgba(16, 38, 58, 0.72);
}

.social-proof {
    margin-top: -1rem;
}

.page-home .section-heading {
    width: 100%;
    max-width: none;
    justify-items: center;
    text-align: center;
}

.page-home .section-heading h2,
.page-home .split-panel > div:first-child h2,
.page-home .cta-banner__content h2 {
    width: 100%;
    max-width: none;
    font-size: var(--home-section-heading-size);
    line-height: 1.08;
    text-wrap: balance;
}

.page-home .logo-strip {
    justify-content: center;
}

.page-home .stats-layout,
.page-home .split-panel,
.page-home .cta-banner {
    grid-template-columns: 1fr;
}

.page-home .stats-section .section-heading {
    margin-bottom: var(--space-6);
}

.page-home .split-panel > div:first-child,
.page-home .cta-banner__content,
.page-home .cta-banner__actions {
    display: grid;
    justify-items: center;
    text-align: center;
}

.page-home .cta-banner__content {
    padding-left: 0;
}

.page-home .cta-banner__content p:last-child {
    max-width: none;
}

.stats-section {
    padding-top: calc((var(--space-7) - 0.5rem) * 0.25);
}

@media (max-width: 900px) {
    .hero-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-home {
        --home-section-heading-size: clamp(1.95rem, 1.55rem + 1.3vw, 2.45rem);
    }
}

@media (max-width: 640px) {
    .page-home {
        --home-section-heading-size: clamp(1.8rem, 1.4rem + 2.1vw, 2.2rem);
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }
}
