/* Hero Section Styles */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: flex-start; /* Changed from center to flex-start to respect top padding */
    position: relative;
    padding-top: 160px; /* Nav Height (110px) + 50px Gap */
    padding-bottom: 50px; /* Reduced mobile bottom padding */
    overflow: hidden;
    
    /* Base color #0B0F14 */
    background-color: #0B0F14;
    
    /* Mobile: 50px radius */
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;

    /* Soft gradients: Top-Left and Bottom-Right */
    background-image: 
        radial-gradient(circle at 0% 0%, rgba(200, 223, 146, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(200, 223, 146, 0.08) 0%, transparent 40%);
}

@media (min-width: 1024px) {
    .hero-section {
        padding-top: 160px; /* Consistent spacing for Desktop */
        padding-bottom: 104px; /* Restore original bottom padding for desktop */
        align-items: center; /* Center vertically on desktop if preferred, or keep flex-start */
        /* Desktop: 100px radius */
        border-bottom-left-radius: 100px;
        border-bottom-right-radius: 100px;
    }
}

/* Background Effects Container */
.hero-bg-effects {
    /* z-index: 0; handled in HTML class */
}

/* Grid Pattern (SVG Encoded) */
/* Grid 80px x 80px with 1px lines (0.03 opacity) and 5px square intersection dots (0.06 opacity) */
.hero-grid-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 80 0 L 0 0 0 80' fill='none' stroke='white' stroke-opacity='0.02' stroke-width='1'/%3E%3Crect x='0' y='0' width='5' height='5' fill='white' fill-opacity='0.05'/%3E%3C/svg%3E");
    background-size: 80px 80px;
    background-repeat: repeat;
    opacity: 0;
    transition: opacity 0.3s ease;
    /* Masking for flashlight effect */
    mask-image: radial-gradient(circle 300px at var(--mouse-x, 50%) var(--mouse-y, 50%), black 0%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle 300px at var(--mouse-x, 50%) var(--mouse-y, 50%), black 0%, transparent 100%);
}

/* Mouse Spotlight */
.hero-mouse-light {
    background: radial-gradient(circle, rgba(218, 255, 115, 0.12) 0%, transparent 70%); /* Increased opacity from 0.06 to 0.12 */
    transform: translate(-50%, -50%);
    pointer-events: none;
    will-change: left, top;
}

/* Toggle Glass Effect */
.toggle-glass-hero {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: #DAFF73;
    text-transform: uppercase;
    margin-bottom: 32px;
}

/* Hero Title */
.hero-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700; /* Bold */
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 64px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 80px;
    }
}

/* Video container */
.hero-symbol-container {
    width: 200px; /* Reduced from 250px for mobile */
    height: 200px; /* Reduced from 250px for mobile */
    position: relative;
    /* z-index removed to allow mix-blend-mode to interact with hero background */
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero-symbol-container {
        width: 380px;
        height: 380px;
    }
}

/* Specific class for Hero Symbol Video */
.hero-symbol-video {
    mix-blend-mode: multiply !important;
    background-color: transparent !important;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.9; /* Keeping the opacity as per previous design */
}

/* Hero Symbol Image Sequence */
.hero-symbol-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    pointer-events: none;
    mix-blend-mode: multiply; /* Ensuring blend mode works for images too if needed, though user didn't ask explicitly, it matches video style */
}
