/* Hero Section Styles - Minimal & Timeless */
.hero {
    position: relative;
    min-height: 700px;
    width: 100%;
    overflow: hidden;
    background: #000000;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
}

.hero::after {
    display: none;
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
    /* Removed animation for better INP */
    text-align: center;
    width: 100%;
    /* Optimize rendering */
    contain: layout style;
}

/* Hero Title - Minimal Typography */
.hero-title {
    font-size: 64px;
    font-weight: 300;
    line-height: 1.1;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.03em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    /* Optimize for interactions */
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    /* Prevent layout shifts */
    contain: layout style;
}

.hero-title-highlight {
    display: block;
    font-weight: 400;
    color: #00ffff;
    margin-top: 8px;
}

/* Hero Subtitle - Clean & Simple */
.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Stats - Minimal Design */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 16px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 40px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Hero Actions - Clean Buttons */
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 8px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 0;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid;
    cursor: pointer;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.1em;
}

.btn-primary {
    background: transparent;
    color: #00ffff;
    border-color: #00ffff;
}

.btn-primary:hover {
    background: #00ffff;
    color: #000000;
    border-color: #00ffff;
}

.btn-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.2);
}

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

/* Animations - Subtle */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero {
        min-height: 600px;
        padding: 120px 0 80px;
    }
    
    .hero-container {
        padding: 0 24px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-stats {
        gap: 32px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .hero-actions {
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 500px;
        padding: 100px 0 60px;
    }
    
    .hero-content {
        gap: 32px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .stat-divider {
        height: 32px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 12px;
    }
}
