/* Base Styles & Utility Classes */
:root {
    color-scheme: dark;
}

body {
    background-color: #09090B;
}

/* Scrollbar formatting for WebKit */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #09090B;
}

::-webkit-scrollbar-thumb {
    background: #27272A;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3F3F46;
}

/* Glass Card Pattern */
.glass-card {
    background: rgba(24, 24, 27, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(24, 24, 27, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5), 0 0 20px -5px rgba(37, 99, 235, 0.1);
}

/* Minimal Glow Sub-Effect */
.glow-text {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Accessibility: Focus Rings */
.focus-ring {
    outline: none;
}

.focus-ring:focus-visible {
    outline: 2px solid #2563EB;
    outline-offset: 2px;
}

/* Button Classes */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: #FAFAFA;
    color: #09090B;
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 0.5rem;
    transition: all 250ms ease;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #E4E4E7;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: #FAFAFA;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 0.5rem;
    transition: all 250ms ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Responsive constraints handling UI/UX Pro Max rule against content jumping */
@media (prefers-reduced-motion: reduce) {

    *,
    ::before,
    ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Animated Ambient Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: float 25s infinite ease-in-out alternate;
    pointer-events: none;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: #2563EB;
    /* Accent Blue */
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: #14B8A6;
    /* Secondary Teal */
    bottom: -150px;
    right: -100px;
    animation-delay: -12s;
    animation-duration: 30s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(50px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}