/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
    position: relative;
    animation: rise 800ms cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
}
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242, 255, 58, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}
.hero-title {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(180deg, #FFFFFF 0%, #A0A0A0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: 18px;
    color: var(--text-soft);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}
.btn-primary {
    background: var(--yellow);
    color: #000;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 150ms ease, box-shadow 150ms ease;
    box-shadow: 0 0 0 1px rgba(242, 255, 58, 0.4), 0 8px 30px -8px rgba(242, 255, 58, 0.5);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(242, 255, 58, 0.6), 0 12px 40px -8px rgba(242, 255, 58, 0.6);
}

@media (max-width: 768px) {
    .hero-title { font-size: 40px !important; }
}
