.hero-section,
.page-hero,
.content-section {
    padding: var(--space-section) 0;
}

.page-hero {
    position: relative;
    overflow: hidden;

    padding: 7rem 0 6rem;

    border-bottom: 1px solid var(--border);

    background:
        radial-gradient(
            circle at 18% 18%,
            rgba(120, 157, 248, 0.20),
            transparent 30%
        ),

        radial-gradient(
            circle at 82% 12%,
            rgba(221, 166, 248, 0.16),
            transparent 28%
        ),

        radial-gradient(
            circle at 50% 85%,
            rgba(164, 61, 234, 0.08),
            transparent 42%
        ),

        linear-gradient(
            180deg,
            rgba(4, 8, 20, 0.98),
            rgba(3, 6, 18, 1)
        );
}

.page-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.22) 1px,
            transparent 1.5px
        );

    background-size: 120px 120px;

    opacity: 0.08;

    pointer-events: none;
}

.page-hero::after {
    content: "";

    position: absolute;
    inset: auto 0 0;

    height: 45%;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(2, 4, 12, 0.72) 70%,
            rgba(2, 4, 12, 1)
        );

    pointer-events: none;
}

.page-hero > .site-shell {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    max-width: 10ch;
}

.page-hero-shell {
    max-width: 1320px;
}

.page-hero .lead {
    max-width: 58rem;
}

.page-hero h1 {
    max-width: none;
}

.page-hero .lead {
    max-width: 52rem;

    font-size: clamp(1.15rem, 2vw, 1.35rem);

    line-height: 1.75;
}

.hero-grid {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.78fr);
    gap: 5rem;
    align-items: center;
}

.hero-copy h1,
.page-hero h1 {
    margin-bottom: 1rem;

    font-size: clamp(3.4rem, 7vw, 6rem);
    line-height: 0.96;
    letter-spacing: -0.055em;

    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            #dfe7ff 26%,
            #9db7ff 58%,
            #dda6f8 100%
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    filter:
        drop-shadow(0 0 20px rgba(120, 157, 248, 0.12))
        drop-shadow(0 0 34px rgba(221, 166, 248, 0.08));
}

.hero-copy p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
    max-width: 48rem;
}

.hero-copy .lead {
    color: var(--accent-strong);
    font-size: clamp(1.15rem, 2vw, 1.35rem);
}


.content-section {
    position: relative;
    overflow: hidden;

    padding: 3.5rem 0;
}

.content-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 18% 12%, rgba(120, 157, 248, 0.13), transparent 28%),
        radial-gradient(circle at 82% 20%, rgba(221, 166, 248, 0.11), transparent 30%),
        radial-gradient(circle at 50% 85%, rgba(164, 61, 234, 0.09), transparent 35%);

    pointer-events: none;
}

.content-section > .site-shell {
    position: relative;
    z-index: 1;
}

.section-heading {
    margin-bottom: 1.75rem;
}

.section-heading h2 {
    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            #d9e4ff 32%,
            #9db7ff 62%,
            #dda6f8 100%
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    text-shadow: 0 0 28px rgba(157, 183, 255, 0.10);
}

.section-heading .lead {
    max-width: 42rem;
}

.alt-section {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(circle at 48% 0%, rgba(120, 157, 248, 0.12), transparent 36%),
        radial-gradient(circle at 80% 20%, rgba(221, 166, 248, 0.09), transparent 30%),
        linear-gradient(180deg, rgba(4, 8, 20, 0.96), rgba(2, 4, 12, 1));

    border-top: 1px solid rgba(255, 255, 255, 0.055);
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.prose-block h2 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.prose-block p {
    color: var(--text-soft);
}

.contact-grid {
    display: grid;
    gap: 1.25rem;
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.6fr);
    gap: 2rem;
    align-items: start;
}

.page-list {
    margin: 0;
    padding-left: 1.2rem;

    color: var(--text-soft);
}

.page-list li + li {
    margin-top: 0.75rem;
}

@media (max-width: 860px) {
    .hero-section {
        padding: 4rem 0 4.5rem;
    }

    .hero-grid,
    .split-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: clamp(2.8rem, 14vw, 4.5rem);
    }

    .page-hero {
        padding: 5rem 0 4.5rem;
    }
}