/* Explain: Layout utilities and section styling for the website. */
.section-pad {
    padding-top: clamp(6rem, 12vw, 10rem);
    padding-bottom: clamp(6rem, 12vw, 10rem);
}

.hero-split {
    background: linear-gradient(135deg, var(--background-color) 0%, #FFFFFF 100%);
}

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

.orb-primary {
    width: 30rem;
    height: 30rem;
    right: 5%;
    top: -5%;
    background: rgba(16, 185, 129, 0.15); /* Emerald */
}

.orb-accent {
    width: 20rem;
    height: 20rem;
    left: 2%;
    bottom: 5%;
    background: rgba(212, 160, 23, 0.12); /* Gold */
}

.contact-section {
    background: var(--bg-mist-green);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}