/* Explain: Layout utilities for the engineering website sections. - */
.section-pad {
    padding-top: clamp(4.5rem, 10vw, 8rem);
    padding-bottom: clamp(4.5rem, 10vw, 8rem);
}

.hero-split {
    background:
        linear-gradient(115deg, rgba(248, 250, 252, 0.96) 0%, rgba(248, 250, 252, 0.85) 52%, rgba(30, 58, 138, 0.08) 100%);
}

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

.orb-sage {
    width: 24rem;
    height: 24rem;
    right: 8%;
    top: 10%;
    background: rgba(30, 58, 138, 0.15);
}

.orb-terracotta {
    width: 18rem;
    height: 18rem;
    left: 4%;
    bottom: 10%;
    background: rgba(234, 88, 12, 0.15);
}

.contact-section {
    background:
        radial-gradient(circle at 8% 16%, rgba(30, 58, 138, 0.1), transparent 24rem),
        linear-gradient(180deg, var(--background-color), var(--surface-color));
}