.hero {
    min-height: 82vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 5rem;
    background:
        radial-gradient(circle at 18% 28%, rgba(92, 207, 230,0.13), transparent 50%),
        radial-gradient(circle at 82% 72%, rgba(255, 204, 102,0.10), transparent 50%),
        linear-gradient(140deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.hero-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-dim);
    margin-bottom: 1.75rem;
}

.hero-badge i { color: var(--accent-green); font-size: 0.7rem; }

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.0625rem;
    color: var(--text-dim);
    max-width: 480px;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.hero-tagline {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
}

.stats-row { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.stat-item { text-align: left; }

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label { font-size: 0.8rem; color: var(--text-dim); font-weight: 500; margin-top: 0.15rem; }

.scroll-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 2.5rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}

.hero-visual { display: flex; justify-content: center; align-items: center; }

.hero-orb { width: 300px; height: 300px; position: relative; }

.hero-orb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.14;
    animation: morph 9s ease-in-out infinite;
}

.hero-orb::after {
    content: '';
    position: absolute;
    inset: 22%;
    background: var(--gradient);
    border-radius: 50%;
    opacity: 0.07;
}

.hero-orb-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    color: var(--accent);
    opacity: 0.6;
}

@keyframes morph {
    0%,100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25%      { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    50%      { border-radius: 50% 50% 30% 70% / 50% 70% 30% 50%; }
    75%      { border-radius: 30% 70% 50% 50% / 30% 50% 70% 50%; }
}

@media (max-width: 768px) {
    .hero-columns { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .stats-row { gap: 1.75rem; }
}
