/* =============================================
   PROMETOS — Hero Section
   File: assets/css/hero.css
   ============================================= */

.hero {
    position: relative;
    background: var(--navy-deepest);
    overflow: hidden;
    padding: 80px 0 72px;
    border-bottom: 1px solid var(--navy-border);
}

.hero__bg-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

#hero-canvas {
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0.45;
}

.hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero__label {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-blue);
    font-weight: 500;
    margin: 0 0 16px;
}

.hero__headline {
    font-family: 'Syne', sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.08;
    color: var(--text-bright);
    max-width: 800px;
    margin: 0 0 24px;
}

.hero__accent {
    color: var(--color-teal-light);
}

.hero__subtext {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-mid);
    max-width: 520px;
    margin: 0 0 36px;
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 56px;
    align-items: stretch;
}

.hero__btn {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.15s ease;
    line-height: 1;
    flex: 1;
    text-align: center;
    min-width: 200px;
}

.hero__btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.hero__btn--primary {
    background: var(--color-teal-light);
    color: var(--navy-deepest);
}

.hero__btn--secondary {
    border: 1px solid var(--color-teal-light);
    color: var(--color-teal-light);
    background: transparent;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--navy-border);
    border: 1px solid var(--navy-border);
    border-radius: 8px;
    overflow: hidden;
    max-width: 640px;
}

.hero__stat {
    background: #1f2124;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero__stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--color-blue);
    line-height: 1;
}

.hero__stat-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .hero {
        padding: 48px 0;
    }

    .hero__inner {
        padding: 0 20px;
    }

    .hero__headline {
        max-width: 100%;
    }

    .hero__subtext {
        max-width: 100%;
    }

    .hero__buttons {
        margin-bottom: 40px;
    }

    .hero__stats {
        max-width: 100%;
    }

    .hero__stat {
        padding: 18px 20px;
    }

    .hero__stat-number {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 36px 0;
    }

    .hero__buttons {
        flex-direction: column;
    }

    .hero__btn {
        min-width: unset;
        width: 100%;
    }

    .hero__stats {
        grid-template-columns: 1fr;
    }

    .hero__stat {
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    .hero__stat-number {
        min-width: 60px;
    }
}