.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.hero-content h1 {
    font-size: clamp(36px, 6vw, 72px);
    line-height: 1.1;
    animation: fadeUp 1s ease forwards;
}

.hero-subtitle {
    margin-top: 20px;
    font-size: 20px;
    opacity: 0.8;
    animation: fadeUp 1.2s ease forwards;
}

.hero-tags {
    margin-top: 15px;
    color: var(--accent-1);
    animation: fadeUp 1.4s ease forwards;
}

.hero-btn {
    display: inline-block;
    margin-top: 40px;
    padding: 14px 32px;
    border: 1px solid var(--accent-2);
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s;
}

.hero-btn:hover {
    background: var(--accent-2);
    color: #000;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
