/* ═══════════════════════════════════════════════════════════════════════════
   SpeedyBOT Public Site — Hero Section
   ═══════════════════════════════════════════════════════════════════════════ */

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding: var(--space-20) 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-glow);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
    pointer-events: none;
}

.hero-content,
.hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.hero-title {
    font-size: var(--text-6xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-6);
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-10);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-12);
    margin-top: var(--space-16);
    padding-top: var(--space-10);
    border-top: 1px solid var(--border-primary);
}

.hero-stat {
    text-align: center;
}

.hero-stat strong,
.hero-stat-value {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--text-primary);
}

.hero-stat span,
.hero-stat-label {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    margin-top: var(--space-1);
    display: block;
}

/* Small hero variant */
.hero--small {
    min-height: 50vh;
    padding: var(--space-16) 0;
}

/* Floating orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
}

.hero-orb--1 {
    width: 400px;
    height: 400px;
    background: var(--brand-500);
    top: -100px;
    right: -100px;
    animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb--2 {
    width: 300px;
    height: 300px;
    background: var(--blurple);
    bottom: -50px;
    left: -50px;
    animation: orbFloat 10s ease-in-out infinite reverse;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}
