/*
============================================================
HERO.CSS
============================================================
*/

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}

/* Static gradient orbs */
.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-section::before {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.09) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.hero-section::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.07) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
}

/* Grid dot pattern */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 60px;
}

/* Available badge */
.available-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.3px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out both;
}

.available-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

/* Hero Heading */
.hero-section h1 {
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f1f5f9 0%, var(--primary) 60%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.7s ease-out 0.1s both;
    line-height: 1.15;
}

/* Tagline */
.tagline {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    animation: fadeInUp 0.7s ease-out 0.3s both;
}

/* CTA */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease-out 0.4s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.9rem 2rem;
    background: var(--primary);
    color: #080d1a;
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: var(--glow-green);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.2px;
}

.cta-button:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(74, 222, 128, 0.4);
    color: #080d1a;
}

/* ── Tablet (≤ 1024px) ── */
@media (max-width: 1024px) {
    .hero-section::before { width: 500px; height: 500px; }
    .hero-section::after  { width: 350px; height: 350px; }
}

/* ── Mobile (≤ 768px) ── */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
    }

    .hero-section .container {
        padding-top: 110px;
        padding-bottom: 80px;
    }

    .hero-typing-line { font-size: 1rem; }

    .tagline {
        font-size: 0.9625rem;
        padding: 0 0.25rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1rem 1.5rem;
    }

    .hero-section::before { width: 300px; height: 300px; }
    .hero-section::after  { width: 220px; height: 220px; }
}

/* ── Small mobile (≤ 480px) ── */
@media (max-width: 480px) {
    .available-badge { font-size: 0.75rem; }
}
