/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-particles);
}

.hero__content {
    position: relative;
    z-index: var(--z-content);
    text-align: center;
    padding: var(--space-xl);
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.5rem 1.25rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 9999px;
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    color: var(--accent-emerald);
    margin-bottom: var(--space-xl);
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.hero__badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-emerald);
    border-radius: 50%;
    animation: pulseGlow 2s ease-in-out infinite;
    box-shadow: 0 0 8px var(--accent-emerald);
}

.hero__title {
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero__typing-wrapper {
    min-height: 2.5em;
    margin-bottom: var(--space-xl);
    animation: fadeIn 0.8s ease-out 0.6s both;
}

.hero__typing {
    font-family: var(--font-mono);
    font-size: var(--fs-xl);
    color: var(--accent-cyan);
}

.hero__typing .cursor {
    display: inline-block;
    width: 2px;
    height: 1.2em;
    background: var(--accent-cyan);
    margin-left: 2px;
    vertical-align: text-bottom;
    animation: blink 0.8s step-end infinite;
}

.hero__description {
    font-size: var(--fs-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin-inline: auto;
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero__actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: var(--z-content);
    animation: float 2s ease-in-out infinite, fadeIn 1s ease-out 1.5s both;
}

.hero__scroll-indicator svg {
    width: 24px;
    height: 24px;
    color: var(--text-muted);
}
