/* Explain: Layout structure for page sections and responsive design. */
.section-pad {
    padding-top: clamp(5.5rem, 10vw, 9rem);
    padding-bottom: clamp(5.5rem, 10vw, 9rem);
}

.hero-split {
    background: radial-gradient(circle at top right, rgba(2, 132, 199, 0.06), transparent 45%),
                var(--background-color);
}

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

.orb-primary {
    width: 30rem;
    height: 30rem;
    right: -5%;
    top: 5%;
    background: rgba(2, 132, 199, 0.12);
}

.orb-secondary {
    width: 25rem;
    height: 25rem;
    left: -5%;
    bottom: 5%;
    background: rgba(14, 165, 233, 0.1);
}

.contact-section {
    background:
        radial-gradient(circle at 10% 20%, rgba(2, 132, 199, 0.05), transparent 30rem),
        var(--surface-color);
}