/* Hero Section */
.hero-section {
    padding: 8rem 0 6rem;
    background: var(--bg-body);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--bg-surface) 0%, transparent 70%);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 1.5rem auto 3rem;
    color: var(--text-muted);
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Microcopy */
.hero-microcopy-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-microcopy-group {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.microcopy-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.3s;
    white-space: nowrap;
}

.microcopy-item.active {
    opacity: 1;
    color: var(--accent);
    transform: scale(1.05);
}

.microcopy-item.inactive {
    opacity: 0.4;
}

.microcopy-accent {
    color: var(--accent);
    font-weight: bold;
}

.hero-microcopy-divider {
    border-top: none;
    border-left: 1px solid var(--border-color);
    padding-top: 0;
    color: var(--primary);
}

.cta-section .btn-primary:hover {
    background: var(--btn-primary-hover);
}

@media (max-width: 768px) {
    .hero-microcopy-wrapper {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-microcopy-divider {
        border-left: none;
        border-top: 1px solid var(--border-color);
        padding-left: 0;
        padding-top: 1rem;
        width: 100%;
        max-width: 300px;
    }
}