/* Cinematic Hero Styles */

.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    /* Create a subtle gradient mesh background */
    background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.8) 0%, rgba(250, 251, 252, 0.0) 40%),
        radial-gradient(circle at 90% 80%, rgba(10, 124, 181, 0.05) 0%, rgba(250, 251, 252, 0.0) 40%),
        var(--cream);
}

/* Subtle Noise Texture */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Base64 noise texture for grain effect */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.hero-split {
    position: relative;
    z-index: 2;
    /* Ensure content is above noise */
    height: 100%;
    align-content: center;
}

.hero-content {
    /* Use will-change for performance hints on properties we'll animate */
    will-change: transform, opacity;
}

/* Enhanced Typography for "Cinematic" feel */
.hero-content h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-6);
    mix-blend-mode: multiply;
    /* Better text rendering on light backgrounds */
}

.hero-content p {
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    max-width: 540px;
    font-weight: 400;
    color: var(--gray-600);
}

/* Visual Column & Abstract Elements */
.hero-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    will-change: transform, opacity;
}

/* Glassmorphism Cards with enhanced blur */
.visual-card {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        0 20px 40px -4px rgba(5, 28, 44, 0.08),
        0 8px 16px -4px rgba(5, 28, 44, 0.04),
        inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.65);
}

.visual-card--main {
    width: 380px;
    padding: var(--space-8);
}

.visual-card--stats {
    background: rgba(255, 255, 255, 0.8);
}

.visual-card--status {
    background: rgba(255, 255, 255, 0.8);
}

/* Abstract Background Shapes for Parallax */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    z-index: -1;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    background: var(--sky);
    top: 20%;
    right: 10%;
    opacity: 0.1;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--teal);
    bottom: 10%;
    right: 30%;
    opacity: 0.05;
}

/* Scroll Trigger Spacer to ensure no "gap" issues during JS loading */
.scroll-spacer {
    display: none;
}