/* Explain: Layout and decorative styles for various site sections. - */
.section-pad {
    padding-top: clamp(5.5rem, 10vw, 9rem);
    padding-bottom: clamp(5.5rem, 10vw, 9rem);
}

.hero-split {
    background:
        linear-gradient(115deg, rgba(5, 5, 5, 0.96) 0%, rgba(15, 17, 21, 0.8) 52%, rgba(0, 229, 255, 0.05) 100%);
}

.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(0, 229, 255, 0.15);
    box-shadow: 0 0 60px rgba(0, 229, 255, 0.2);
}

.orb-terracotta {
    width: 18rem;
    height: 18rem;
    left: 4%;
    bottom: 10%;
    background: rgba(0, 153, 255, 0.15);
    box-shadow: 0 0 60px rgba(0, 153, 255, 0.2);
}

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

@keyframes float-science {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-30px) rotate(15deg) scale(1.05); }
}

.deco-icon {
    position: absolute;
    color: var(--accent-color);
    opacity: 0.12;
    animation: float-science 12s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}
