/* ==========================================================================
   INTERO HERO BLOCK — style.css
   ========================================================================== */

.intero-hero {
    position: relative;
    background: var(--color-dark);
    min-height: 95vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

/* ── Background elements ──────────────────────────────────────────────────── */
/* .intero-hero__glow removed — teal glow now lives behind card only */
.intero-hero__glow { display: none; }

.intero-hero__grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(46,196,182,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46,196,182,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: intero-grid-drift 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes intero-grid-drift {
    0%   { transform: translateY(0); }
    100% { transform: translateY(60px); }
}

/* ── Inner layout ─────────────────────────────────────────────────────────── */
.intero-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 992px) {
    .intero-hero {
        padding: 140px 0 120px;
    }
    .intero-hero__inner {
        grid-template-columns: 1fr 1.1fr;
        gap: 60px;
        align-items: center;
    }
}

/* ── Left: Content ────────────────────────────────────────────────────────── */
.intero-hero__eyebrow-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.intero-hero__eyebrow-bar {
    display: block;
    width: 4px;
    height: 36px;
    background: var(--gradient-logo);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.intero-hero__eyebrow {
    font-size: var(--font-size-xs);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-secondary);
}

.intero-hero__headline {
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 800;
    line-height: var(--line-height-heading);
    letter-spacing: -0.02em;
    color: var(--color-bg);
    margin: 0 0 24px;
}

.intero-hero__sub {
    font-size: clamp(16px, 1.4vw, 18px);
    color: rgba(255,255,255,0.65);
    line-height: var(--line-height-base);
    margin: 0 0 36px;
    max-width: 520px;
}

/* ── CTA buttons ──────────────────────────────────────────────────────────── */
.intero-hero__ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
    margin-bottom: 24px;
}

@media (max-width: 600px) {
    .intero-hero__ctas {
        flex-direction: column;
        align-items: stretch;
    }
    .intero-hero__ctas .intero-btn {
        justify-content: center;
        width: 100%;
    }
}

/* ── Award badges row — below buttons ─────────────────────────────────────── */
.intero-hero__badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.intero-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    padding: 5px 12px 5px 8px;
    transition: border-color 0.2s, background 0.2s;
}

.intero-hero__badge:hover {
    background: rgba(46,196,182,0.08);
    border-color: rgba(46,196,182,0.3);
}

.intero-hero__badge-star {
    color: #fbbf24;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.intero-hero__badge-text {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    white-space: nowrap;
}

.intero-hero__badge-sub {
    font-size: 10px;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    white-space: nowrap;
}

/* ── Right: Card wrap + teal glow behind card ─────────────────────────────── */
.intero-hero__card-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

/* Teal glow — sits BEHIND the card (z-index 0), bolder opacity */
.intero-hero__teal-glow {
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    width: 680px;
    height: 680px;
    background: radial-gradient(circle,
        rgba(46,196,182,0.35) 0%,
        rgba(46,196,182,0.20) 25%,
        rgba(46,196,182,0.08) 55%,
        transparent 72%
    );
    pointer-events: none;
    z-index: 0;
}

/* ── Dashboard card ───────────────────────────────────────────────────────── */
.intero-hero__card {
    position: relative;
    z-index: 1;                   /* sits above the teal glow */
    background: rgba(18,16,54,0.88);
    border: 1px solid rgba(46,196,182,0.25);
    border-radius: var(--radius-card);
    padding: 32px;
    width: 100%;
    max-width: 560px;
    backdrop-filter: blur(12px);
    box-shadow:
        0 24px 64px rgba(0,0,0,0.5),
        0 0 0 1px rgba(46,196,182,0.08) inset;
    background-image:
        linear-gradient(rgba(46,196,182,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46,196,182,0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    margin-top: -32px;
}

.intero-hero__card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(46,196,182,0.12);
}

.intero-hero__card-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    flex: 1;
}

.intero-hero__card-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.intero-hero__card-dot--live {
    background: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(46,196,182,0.2);
    animation: intero-pulse 2s ease-in-out infinite;
}

@keyframes intero-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(46,196,182,0.2); }
    50%       { box-shadow: 0 0 0 6px rgba(46,196,182,0.05); }
}

.intero-hero__card-live-text {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-secondary);
}

/* ── Stats grid — 3 columns × 2 rows ─────────────────────────────────────── */
.intero-hero__card-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.intero-hero__card-stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 14px 12px;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.05);
    min-height: 110px;            /* consistent row height */
}

.intero-hero__card-stat-value {
    font-size: clamp(20px, 1.8vw, 26px);
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.intero-hero__card-stat-label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.03em;
    line-height: 1.3;
    flex: 1;
}

.intero-hero__card-stat-trend {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 9px;
    font-weight: 700;
    margin-top: 4px;
    color: var(--color-secondary);
}

.intero-hero__card-stat-trend svg {
    width: 10px;
    height: 10px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

