/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--color-black);
    position: relative;
    overflow: hidden;
    padding-top: var(--header-height);
}

/* Grid pattern overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border-subtle) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
    pointer-events: none;
}

/* Gradient glows */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        var(--gradient-hero-glow-cyan),
        var(--gradient-hero-glow-orange);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: var(--z-base);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

/* Left column — text */
.hero__content {
    max-width: 640px;
}

.hero__eyebrow {
    font-family: var(--font-label);
    font-size: var(--fs-eyebrow);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gray);
    margin-bottom: var(--space-lg);
}

.hero__eyebrow span {
    color: var(--color-cyan);
}

.hero__title {
    font-family: var(--font-headline);
    font-size: var(--fs-hero);
    line-height: var(--lh-tight);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.hero__title strong {
    color: var(--color-cyan);
}

.hero__subtitle {
    font-size: var(--fs-body-lg);
    color: var(--color-gray-light);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-xl);
    max-width: 520px;
}

.hero__actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Right column — floating stats */
.hero__stats {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    align-items: flex-end;
}

.hero__stat-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-xl);
    min-width: 200px;
    text-align: center;
    transition: border-color var(--transition-base);
}

.hero__stat-card:hover {
    border-color: var(--border-cyan);
}

.hero__stat-number {
    font-family: var(--font-headline);
    font-size: var(--fs-h2);
    color: var(--color-cyan);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.hero__stat-label {
    font-family: var(--font-label);
    font-size: var(--fs-label);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gray);
}
