/* ════════════════════════════════════════════
   Hero Header V6 — Bold Brutalist — scw-hh6
   ════════════════════════════════════════════ */

.scw-hh6 {
    position: relative;
    background: var(--scw-hh6-bg, #08080C);
    overflow: hidden;
    font-family: var(--scw-font, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
}

/* ── Inner layout: two-column split ── */
.scw-hh6__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    position: relative;
    z-index: 10;
}

/* No-images: single centered column */
.scw-hh6--no-images .scw-hh6__inner {
    grid-template-columns: 1fr;
    max-width: 800px;
    text-align: center;
    padding: 80px 40px;
}

/* ── Left column: massive typography ── */
.scw-hh6__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 40px 40px 60px;
}

.scw-hh6--no-images .scw-hh6__content {
    padding: 60px 40px;
    align-items: center;
}

/* ── Mega heading — Anybody display font, massive, uppercase ── */
.scw-hh6__title {
    font-family: 'Anybody', 'Impact', 'Arial Black', sans-serif;
    font-size: clamp(56px, 8vw, 110px);
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: -5px;
    text-transform: uppercase;
    margin: 0 0 28px;
    color: var(--scw-hh6-heading-color, #FFFFFF);
    animation: scwHh6FadeUp 0.7s ease both 0.1s;
}

.scw-hh6__line {
    display: block;
}

.scw-hh6__line-accent {
    color: var(--scw-hh6-accent, #FF3B6E);
}

.scw-hh6__line-outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--scw-hh6-outline-color, rgba(255, 255, 255, 0.12));
    font-size: 0.91em;
}

/* ── Description ── */
.scw-hh6__desc {
    font-size: 15px;
    color: var(--scw-hh6-desc-color, rgba(255, 255, 255, 0.3));
    line-height: 1.8;
    max-width: 400px;
    margin: 0 0 36px;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    animation: scwHh6FadeUp 0.7s ease both 0.25s;
}

/* ── CTA area ── */
.scw-hh6__cta-area {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: scwHh6FadeUp 0.7s ease both 0.4s;
}

.scw-hh6--no-images .scw-hh6__cta-area {
    justify-content: center;
}

/* Primary CTA — hard edge, no border-radius, uppercase */
.scw-hh6__cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--scw-hh6-cta-bg, #FF3B6E);
    color: var(--scw-hh6-cta-color, #ffffff);
    border: none;
    padding: 18px 40px;
    border-radius: 0;
    font-family: var(--scw-font, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 6px 30px color-mix(in srgb, var(--scw-hh6-cta-bg, #FF3B6E), transparent 75%);
}

.scw-hh6__cta-primary:hover {
    background: var(--scw-hh6-cta-hover, #E0245E);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px color-mix(in srgb, var(--scw-hh6-cta-bg, #FF3B6E), transparent 60%);
}

.scw-hh6__cta-primary:active {
    transform: translateY(0);
}

/* Secondary text link — uppercase, no decoration */
.scw-hh6__cta-link {
    color: var(--scw-hh6-link-color, rgba(255, 255, 255, 0.25));
    font-size: 13px;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.scw-hh6__cta-link:hover {
    color: var(--scw-hh6-link-hover, #ffffff);
}

/* ── Right column: hard-edge image grid ── */
.scw-hh6__media {
    position: relative;
    min-height: 0;
}

.scw-hh6__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: var(--scw-hh6-grid-gap, 3px);
    height: 100%;
    min-height: 0;
}

/* ── Grid cell ── */
.scw-hh6__cell {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.scw-hh6__cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.5s ease;
    filter: grayscale(var(--scw-hh6-img-desat, 40%)) brightness(0.7);
}

.scw-hh6__cell:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.06);
}

/* Cell inner border overlay */
.scw-hh6__cell::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

/* ── Live dot indicator ── */
.scw-hh6__cell-live {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    z-index: 5;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
    animation: scwHh6LivePulse 1.5s ease-in-out infinite;
}

@keyframes scwHh6LivePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50%      { box-shadow: 0 0 0 5px rgba(34, 197, 94, 0); }
}

/* ── Country label — slides up on hover ── */
.scw-hh6__cell-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 12px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 5;
}

.scw-hh6__cell:hover .scw-hh6__cell-label {
    transform: translateY(0);
}

/* ── Bottom bar ── */
.scw-hh6__bottom {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px 16px 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    flex-wrap: wrap;
    gap: 12px;
}

.scw-hh6__bottom-stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}

.scw-hh6__bs-val {
    font-size: 18px;
    font-weight: 700;
    color: var(--scw-hh6-accent, #FF3B6E);
}

.scw-hh6__bs-lbl {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}

.scw-hh6__bottom-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 1px;
}

/* ── Bottom curve SVG ── */
.scw-hh6__curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
    pointer-events: none;
    z-index: 15;
}

.scw-hh6__curve svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* ── Fade-in animations ── */
@keyframes scwHh6FadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════
   Responsive — Tablet (≤ 1024px)
   ════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .scw-hh6__inner {
        min-height: auto;
    }

    .scw-hh6__content {
        padding: 32px 32px 32px 40px;
    }

    .scw-hh6__title {
        font-size: clamp(48px, 7vw, 80px);
    }

    .scw-hh6__line-outline {
        font-size: 0.9em;
        -webkit-text-stroke-width: 1.5px;
    }

    .scw-hh6__bottom {
        padding: 14px 30px 14px 40px;
    }

    .scw-hh6__bottom-stats {
        gap: 24px;
    }
}

/* ════════════════════════════════════════════
   Responsive — Mobile (≤ 768px)
   ════════════════════════════════════════════ */
@media (max-width: 768px) {
    .scw-hh6__inner {
        grid-template-columns: 1fr;
    }

    .scw-hh6__content {
        padding: 30px;
    }

    .scw-hh6__title {
        font-size: 56px;
        letter-spacing: -2px;
    }

    .scw-hh6__line-outline {
        -webkit-text-stroke-width: 1.5px;
    }

    .scw-hh6__grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        max-height: 50vh;
    }

    .scw-hh6__bottom {
        padding: 12px 20px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .scw-hh6__bottom-stats {
        gap: 20px;
    }

    .scw-hh6__curve svg {
        height: 50px;
    }
}

/* ════════════════════════════════════════════
   Responsive — Small mobile (≤ 480px)
   ════════════════════════════════════════════ */
@media (max-width: 480px) {
    .scw-hh6__content {
        padding: 24px 16px;
    }

    .scw-hh6__title {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .scw-hh6__line-outline {
        -webkit-text-stroke-width: 1px;
    }

    .scw-hh6__desc {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .scw-hh6__cta-area {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .scw-hh6__cta-primary {
        width: 100%;
        padding: 14px 28px;
        font-size: 12px;
    }

    .scw-hh6__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }

    .scw-hh6__bottom {
        padding: 10px 16px;
    }

    .scw-hh6__bottom-stats {
        gap: 16px;
    }

    .scw-hh6__bs-val {
        font-size: 16px;
    }

    .scw-hh6__curve svg {
        height: 36px;
    }
}
