﻿/* ===============================
   AI HERO + METRICS + VALUE
   =============================== */

.hero-section {
    color: #f8fafc;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top left, #1e293b 0, #020617 45%, #000 100%);
    padding-top: 5rem;
    padding-bottom: 4rem;
}

/* === Glow Effects === */

.hero-glow {
    position: absolute;
    width: 40rem;
    height: 40rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.17), transparent 65%);
    top: -10rem;
    right: -10rem;
    pointer-events: none;
    opacity: 0.9;
}

.hero-glow-2 {
    position: absolute;
    width: 32rem;
    height: 32rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.18), transparent 70%);
    bottom: -10rem;
    left: -8rem;
    pointer-events: none;
    opacity: 0.8;
}

/* === Hero Text === */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    padding: 0.25rem 0.9rem;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.25), rgba(15, 23, 42, 0.95));
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: #cbd5f5;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2.6rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0.02em;
}

.hero-highlight {
    background: linear-gradient(120deg, #38bdf8, #22c55e, #facc15);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.02rem;
    color: #cbd5f5;
    max-width: 34rem;
}

/* === Hero Metrics === */

.hero-metrics {
    margin-top: 1.4rem;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #9ca3af;
}

    .hero-metrics strong {
        color: #e5e7eb;
        font-weight: 600;
    }

/* === Video Frame === */

.video-frame {
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.9), 0 0 0 1px rgba(148, 163, 184, 0.25);
    background: radial-gradient(circle at top left, #1d283a, #020617);
}

.video-caption-bar {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #9ca3af;
    padding: 0.6rem 1rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pill-status {
    border-radius: 999px;
    padding: 0.1rem 0.75rem;
    border: 1px solid rgba(34, 197, 94, 0.6);
    color: #bbf7d0;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* === Metrics Strip === */

.metrics-strip {
    padding-block: 2.3rem;
    border-top: 1px solid rgba(15, 23, 42, 1);
    border-bottom: 1px solid rgba(15, 23, 42, 1);
    background: radial-gradient(circle at center, rgba(15, 23, 42, 1), #020617 65%);
}

.metric-label {
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 0.75rem;
    color: #9ca3af;
}

.metric-value {
    color: #7dd3fc;
    font-size: 1.35rem;
    font-weight: 600;
}

/* === Value Cards === */

.section-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #ffffff;
}

.section-subtitle {
    font-size: 0.95rem;
    color: #9ca3af;
    max-width: 38rem;
}

.pill {
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    padding: 0.2rem 0.7rem;
    font-size: 0.75rem;
    color: #cbd5f5;
    margin-right: 0.4rem;
    margin-bottom: 0.4rem;
    white-space: nowrap;
}

.card-ai {
    border-radius: 1.1rem;
    border: 1px solid rgba(15, 23, 42, 1);
    background: radial-gradient(circle at top left, rgba(30, 64, 175, 0.45), rgba(15, 23, 42, 0.96));
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
}

.card-ai-alt {
    border-radius: 1.1rem;
    border: 1px solid rgba(15, 23, 42, 1);
    background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.35), rgba(15, 23, 42, 0.96));
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
}

.tagline-small {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #9ca3af;
}

.step-title {
    color: #7dd3fc;
}

/* === Responsive === */

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 5.2rem;
        padding-bottom: 3.2rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .video-frame {
        margin-top: 2rem;
    }
}
