/* ================================================ */
/*  UPC-STYLE INNER PAGE HERO                        */
/*  Shared by: teams, schedule, groups, draws        */
/*  Uses CSS variables from theme-system.css         */
/* ================================================ */

/* ── Wrapper ─────────────────────────────────────── */
.inner-page-hero {
    position: relative;
    padding: 7.5rem 2rem 3.5rem;
    text-align: center;
    overflow: hidden;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color, var(--border-primary));
}

/* Ambient glow — primary (top-left) */
.inner-page-hero::before {
    content: "";
    position: absolute;
    top: -15%; left: -10%;
    width: 55%; height: 65%;
    background: radial-gradient(ellipse at 35% 40%,
        color-mix(in srgb, var(--accent-primary) 18%, transparent) 0%,
        color-mix(in srgb, var(--accent-primary) 6%, transparent) 40%,
        transparent 70%);
    filter: blur(55px);
    pointer-events: none;
    z-index: 0;
    animation: pulse-glow 8s ease-in-out infinite;
}

/* Ambient glow — secondary (bottom-right) */
.inner-page-hero::after {
    content: "";
    position: absolute;
    bottom: -20%; right: -10%;
    width: 50%; height: 60%;
    background: radial-gradient(ellipse at 65% 60%,
        color-mix(in srgb, var(--accent-secondary) 14%, transparent) 0%,
        transparent 65%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
    animation: pulse-glow 8s ease-in-out infinite 4s;
}

/* ── Content container ───────────────────────────── */
.inner-page-hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

/* ── Eyebrow label ───────────────────────────────── */
.inner-page-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-primary);
    margin-bottom: 1.25rem;
}

.inner-page-hero__eyebrow::before {
    content: "";
    display: inline-block;
    width: 5px; height: 5px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* ── Title ────────────────────────────────────────── */
.inner-page-hero__title {
    font-family: 'Bebas Neue', 'Barlow Condensed', 'Inter', sans-serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 0.92;
    color: var(--text-primary);
    margin-bottom: 1.1rem;
    letter-spacing: .01em;
}

.inner-page-hero__title .ht-accent {
    color: var(--accent-primary);
}

/* ── Subtitle ────────────────────────────────────── */
.inner-page-hero__sub {
    font-size: 1rem;
    color: var(--text-primary);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ── Quick-stat chips ────────────────────────────── */
.inner-page-hero__stats {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.iphero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 1.4rem;
    background: color-mix(in srgb, var(--bg-secondary) 80%, transparent);
    border: 1px solid var(--border-color, var(--border-primary));
    border-radius: 0.75rem;
    backdrop-filter: blur(8px);
    min-width: 80px;
    cursor: default;
}

.iphero-stat-val {
    font-family: 'Bebas Neue', 'Barlow Condensed', 'Inter', sans-serif;
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--accent-primary);
    line-height: 1;
    letter-spacing: .02em;
}

.iphero-stat-lbl {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-top: 0.18rem;
    opacity: 0.7;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 640px) {
    .inner-page-hero {
        padding: 6.5rem 1.25rem 2.5rem;
    }
    .inner-page-hero__title {
        font-size: clamp(2.2rem, 10vw, 3rem);
    }
    .iphero-stat {
        padding: 0.6rem 1rem;
        min-width: 64px;
    }
    .iphero-stat-val { font-size: 1.55rem; }
}
