/* Explain: Layout utilities for various page sections, including hero and contact. - */
.section-pad {
    padding-top: clamp(5.5rem, 10vw, 9rem);
    padding-bottom: clamp(5.5rem, 10vw, 9rem);
}

.hero-split {
    background: transparent;
}

.hero-split::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -10;
    background:
        linear-gradient(115deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.45) 52%, rgba(37, 99, 235, 0.25) 100%);
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(8px);
    opacity: 0.52;
    pointer-events: none;
    z-index: -1;
}

.orb-sage {
    width: 24rem;
    height: 24rem;
    right: 8%;
    top: 10%;
    background: rgba(37, 99, 235, 0.2);
}

.orb-terracotta {
    width: 18rem;
    height: 18rem;
    left: 4%;
    bottom: 10%;
    background: rgba(59, 130, 246, 0.25);
}

.contact-section {
    background:
        radial-gradient(circle at 8% 16%, rgba(59, 130, 246, 0.2), transparent 24rem),
        linear-gradient(180deg, var(--background-color), var(--surface-color));
}
