.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-3xl) 0;
    position: relative;
}

.hero .status-badge {
    margin-bottom: var(--space-xl);
}

.hero-name {
    font-size: var(--text-5xl);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
}

.hero-title {
    font-size: var(--text-xl);
    color: var(--color-accent-primary);
    font-weight: 500;
    margin-bottom: var(--space-lg);
}

.hero-statement {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    line-height: 1.7;
}

.company-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    margin-bottom: var(--space-2xl);
}

.hero-cta {
    margin-bottom: var(--space-3xl);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-text-muted);
    font-size: var(--text-xs);
    animation: bobble 2s ease-in-out infinite;
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
}

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

@media (max-width: 768px) {
    .hero-name {
        font-size: var(--text-4xl);
    }

    .hero-title {
        font-size: var(--text-lg);
    }
}
