#hero {
    position: relative;
    background: var(--bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-eyebrow {
    display: inline-block;
    margin-bottom: 22px;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.1s;
}

#hero h1 {
    font-size: clamp(3.2rem, 9vw, 7rem);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.04em;
    line-height: 0.95;
    opacity: 0;
    animation: fadeUp 0.5s ease forwards 0.4s;
}

.hero-subtitle {
    margin: 28px auto 0;
    max-width: 620px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-muted);
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 5.0s;
}

.hero-tags {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 5.4s;
}

.hero-tags span {
    padding: 7px 16px;
    border-radius: 999px;
    border: 1.5px solid var(--border);
    background: #fff;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 400;
}

@media (max-width: 768px) {
    #hero {
        padding: 110px 20px 72px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-tags span {
        font-size: 12px;
        padding: 6px 12px;
    }
}
