.hero {
    min-height: calc(100vh - var(--header-h));
    background: var(--grad-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
            radial-gradient(ellipse 80% 60% at 50% 30%, rgba(124, 58, 237, .22) 0%, transparent 70%),
            radial-gradient(ellipse 50% 50% at 80% 80%, rgba(168, 85, 247, .1) 0%, transparent 60%),
            radial-gradient(ellipse 40% 40% at 10% 70%, rgba(168, 85, 247, .08) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(168, 85, 247, .08);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--gold-light);
    background: var(--gold-subtle);
    padding: 6px 16px;
    border-radius: 99px;
    border: 1px solid rgba(245, 158, 11, .25);
    margin-bottom: 28px;
}

.hero-title {
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 22px;
}
.hero-title .accent {
    background: var(--grad-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 64px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, .02);
    backdrop-filter: blur(10px);
}

.hero-stat {
    flex: 1;
    padding: 22px 24px;
    text-align: center;
    border-right: 1px solid var(--border-subtle);
}
.hero-stat:last-child { border-right: none; }

.hero-stat-val {
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--accent-light);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}
.hero-stat-val.gold { color: var(--gold-light); }

.hero-stat-label {
    font-size: .78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 44px 0 56px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-eyebrow {
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: clamp(2rem, 9vw, 3rem);
        line-height: 1.05;
        margin-bottom: 18px;
    }

    .hero-desc {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 28px;
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-stats {
        flex-direction: column;
        margin-top: 40px;
    }

    .hero-stat {
        border-right: none;
        border-bottom: 1px solid var(--border-subtle);
        padding: 18px 20px;
    }
    .hero-stat:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 34px;
    }

    .hero-title {
        font-size: 2.35rem;
    }

    .hero-eyebrow {
        font-size: .72rem;
        padding: 6px 12px;
        letter-spacing: .1em;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 32px;
    }
    .hero-stat {
        flex: 1 1 50%;
        border-right: 1px solid var(--border-subtle);
        border-bottom: 1px solid var(--border-subtle);
        padding: 16px 14px;
    }

    .hero-stat-val {
        font-size: 1.55rem;
    }

    .hero-stat-label {
        font-size: .68rem;
        letter-spacing: .04em;
    }
    .hero-stat:nth-child(2n) { border-right: none; }
    .hero-stat:last-child { border-bottom: none; }
}
