.hero {
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-alien {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(300px, 55vw, 700px);
    height: auto;
    opacity: .07;
    z-index: 0;
    animation: alienDrift 8s ease-in-out infinite;
    filter: blur(1px);
}

@keyframes alienDrift {
    0%, 100% { transform: translate(-50%, -50%) translateY(0) scale(1); }
    25% { transform: translate(-50%, -50%) translateY(-20px) scale(1.02); }
    50% { transform: translate(-50%, -50%) translateY(-8px) scale(1); }
    75% { transform: translate(-50%, -50%) translateY(-25px) scale(1.01); }
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    width: clamp(400px, 70vw, 900px);
    height: clamp(300px, 50vw, 700px);
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0, 255, 136, 0.08) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    transition: background 2s ease;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.terminal-status {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px 8px 12px;
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-family: var(--font-mono);
    background: rgba(0, 255, 136, 0.04);
    margin-bottom: 40px;
    transition: border-color 1s, background 1s;
}

.ts-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s ease-in-out infinite;
    transition: background 1s;
}

.ts-label { color: var(--text-muted); transition: color 1s; }
.ts-value { color: var(--green); font-weight: 600; transition: color 1s; }
.ts-sep { color: var(--text-muted); opacity: .3; }

.hero h1 {
    font-family: var(--font-mono);
    font-size: clamp(32px, 5.5vw, 64px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.line-green { color: var(--green); }

.hero-desc {
    max-width: 580px;
    margin: 0 auto 40px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75px;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.stats-ribbon {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-top: 56px;
}

.stat-item {
    background: var(--bg-surface);
    padding: 20px 12px;
    text-align: center;
}

.stat-value {
    font-family: var(--font-mono);
    font-size: 22px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 2px;
}

.stat-value.red { color: var(--red); }
    stat-value.white { color: var(--text-primary); }

.stat-label {
    font-size: 10px;
    font-family: var(--font-mono);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 640px) {
    .stats-ribbon {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero {
        padding: 100px 0 40px;
        min-height: auto;
    }
}