/* SHOUT Media WK Pool — gebaseerd 1:1 op shout-media.shoutmedia.be DNA */

:root {
    --orange: #FF7400;
    --orange-2: #FF5500;
    --orange-3: #e84800;
    --orange-light: #f8a528;
    --ink: #000000;
    --cream: #F8F1E4;
    --cream-2: #E8DFD0;
    --gray: #797979;
    --gray-light: rgba(0,0,0,0.1);
    --dark-1: #252525;
    --dark-2: #1a1a1a;
    --white: #FFFFFF;
    --error: #C53030;
    --success: #2F855A;

    --font: 'Urbanist', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
    margin: 0; padding: 0;
    font-family: var(--font);
    background: var(--white);
    color: var(--ink);
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* === TOP NAV (op orange hero, dus wit) === */
.top-nav {
    position: fixed;
    top: 20px; left: 20px; right: 20px;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 32px;
    pointer-events: none;
}
.top-nav > * { pointer-events: auto; }
.top-nav .logo {
    font-family: var(--font);
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.04em;
    line-height: 1;
}
.top-nav .logo .accent { color: var(--ink); }
.top-nav .links {
    display: flex;
    gap: 28px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #fff;
}
.top-nav .links a:hover { color: var(--ink); }

@media (max-width: 720px) {
    .top-nav { top: 12px; left: 12px; right: 12px; padding: 12px 18px; }
    .top-nav .logo { font-size: 18px; }
    .top-nav .links { gap: 14px; font-size: 0.65rem; letter-spacing: 0.1em; }
}

/* ==================== */
/* HERO SECTION         */
/* Orange gradient + orbs */
/* ==================== */
.hero-wrapper {
    margin: 20px;
}

.hero-section {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 40px);
    padding: 140px 20px 60px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-2) 50%, var(--orange-3) 100%);
    border-radius: 20px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.15) 0%, transparent 50%),
                      radial-gradient(circle at 80% 70%, rgba(0,0,0,0.12) 0%, transparent 50%);
    pointer-events: none;
}

.hero-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatOrb 20s ease-in-out infinite;
}
.hero-orb-1 { width: 400px; height: 400px; background: rgba(255,255,255,0.4); top: -100px; right: 10%; animation-delay: 0s; }
.hero-orb-2 { width: 300px; height: 300px; background: rgba(0,0,0,0.25); bottom: -50px; left: 5%; animation-delay: -7s; }
.hero-orb-3 { width: 250px; height: 250px; background: rgba(255,200,100,0.35); top: 30%; left: 50%; animation-delay: -14s; }
@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, 30px) scale(1.1); }
    50% { transform: translate(-30px, 60px) scale(0.9); }
    75% { transform: translate(40px, -20px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

/* SHOUT-stijl mega heading */
.hero-heading {
    text-align: center;
    padding: 0 0 30px 0;
}
.hero-heading h1 {
    font-family: var(--font);
    font-size: clamp(60px, 12vw, 140px);
    font-weight: 800;
    line-height: 0.85;
    letter-spacing: -4px;
    color: #fff;
    text-shadow: 0 10px 40px rgba(0,0,0,0.2);
    margin: 0;
    animation: heroIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(40px);
}
.hero-heading h1 .black { color: var(--ink); display: inline-block; }
.hero-heading h1 .italic { font-style: italic; }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }

.hero-sub {
    text-align: center;
    font-size: clamp(1rem, 1.6vw, 1.5rem);
    font-weight: 500;
    color: #fff;
    max-width: 720px;
    margin: 16px auto 0;
    line-height: 1.4;
    opacity: 0;
    animation: heroIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}
.hero-sub strong { color: var(--ink); font-weight: 800; }

@media (max-width: 768px) {
    .hero-wrapper { margin: 12px; }
    .hero-section { padding: 110px 20px 40px; min-height: calc(100vh - 24px); border-radius: 16px; }
    .hero-heading h1 { letter-spacing: -2px; }
}

/* ==================== */
/* HERO CARDS SLIDER    */
/* (3 cards die als info dienen) */
/* ==================== */
.hero-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 3rem;
}
.hero-slider {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}
.hero-slider::-webkit-scrollbar { display: none; }

.hero-card {
    position: relative;
    flex-shrink: 0;
    width: calc((100% - 4.5rem) / 4);
    min-width: 280px;
    max-width: 28rem;
    aspect-ratio: 3 / 4;
    border-radius: 1.5rem;
    overflow: hidden;
    background: var(--dark-2);
    scroll-snap-align: start;
}
.hero-card_content {
    position: relative;
    width: 100%; height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--ink);
}
.hero-card_title {
    font-family: var(--font);
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
}
.hero-card_body { display: flex; flex-direction: column; gap: 1rem; }
.hero-card_subtitle {
    font-family: var(--font);
    font-size: clamp(1.1rem, 1.6vw, 1.5rem);
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}
.hero-card_divider {
    width: 3rem; height: 2px;
    background: currentColor;
    opacity: 0.3;
}
.hero-card_paragraph {
    font-family: var(--font);
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.8;
    margin: 0;
}
.hero-card.theme-cream { background: linear-gradient(145deg, var(--cream) 0%, var(--cream-2) 100%); }
.hero-card.theme-dark { background: linear-gradient(145deg, var(--dark-1) 0%, var(--dark-2) 100%); color: #fff; }
.hero-card.theme-dark .hero-card_content { color: #fff; }
.hero-card.theme-white { background: #fff; border: 1px solid var(--gray-light); }

@media (max-width: 767px) {
    .hero-card { aspect-ratio: 1 / 1; min-width: 240px; }
    .hero-card_content { padding: 1.5rem; }
}

/* ==================== */
/* WHITE SECTION        */
/* About + form layout  */
/* ==================== */
.section-white {
    background: #fff;
    padding: 100px 20px;
}
.section-cream {
    background: var(--cream);
    padding: 100px 20px;
}
.section-black {
    background: var(--ink);
    color: #fff;
    padding: 100px 20px;
}
.section-orange-gradient {
    background: linear-gradient(180deg, var(--orange) 0%, var(--orange-2) 100%);
    color: var(--ink);
    padding: 100px 20px;
}
.section-inner {
    max-width: 1400px;
    margin: 0 auto;
}
.section-inner-narrow {
    max-width: 920px;
    margin: 0 auto;
}

/* Section eyebrow + title (SHOUT about-stijl) */
.about-eyebrow {
    text-align: center;
    margin-bottom: 20px;
}
.about-eyebrow h3 {
    font-family: var(--font);
    font-size: clamp(28px, 4vw, 45px);
    font-weight: 800;
    font-style: italic;
    color: var(--ink);
    line-height: 1.1;
    margin: 0;
}
.about-eyebrow h3 .o { color: var(--orange); }

.about-body {
    text-align: center;
    margin: 0 auto;
    max-width: 68%;
}
.about-body h2 {
    font-family: var(--font);
    font-size: clamp(28px, 5vw, 60px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--gray);
    margin: 0;
}
.about-body h2 .ink { color: var(--ink); }

@media (max-width: 768px) {
    .section-white, .section-cream, .section-black, .section-orange-gradient { padding: 70px 20px; }
    .about-body { max-width: 90%; }
}

/* Header h2 (cases-stijl) */
.section-header h2 {
    font-family: var(--font);
    font-size: clamp(36px, 8vw, 70px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2px;
    color: var(--ink);
    margin: 0 0 40px;
    text-align: center;
}
.section-black .section-header h2 { color: #fff; }
.section-header h2 .gradient {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-intro {
    text-align: center;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.55;
    color: var(--gray);
    max-width: 720px;
    margin: 0 auto 40px;
}
.section-black .section-intro { color: rgba(255,255,255,0.7); }

/* ==================== */
/* FORM                 */
/* ==================== */
.form-card {
    background: #fff;
    border-radius: 32px;
    padding: clamp(28px, 4vw, 56px);
    max-width: 720px;
    margin: 0 auto;
    box-shadow: 0 24px 60px rgba(0,0,0,0.06);
    border: 1px solid var(--gray-light);
}
.section-cream .form-card { background: #fff; }

.form-row { margin-bottom: 24px; }
.form-row label {
    display: block;
    font-family: var(--font);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ink);
    margin-bottom: 10px;
}
.form-row input[type="text"],
.form-row input[type="email"] {
    width: 100%;
    padding: 18px 22px;
    border: 1.5px solid var(--gray-light);
    border-radius: 999px;
    font-family: var(--font);
    font-size: 1.05rem;
    font-weight: 500;
    background: var(--cream);
    color: var(--ink);
    transition: all 0.2s ease;
}
.form-row input[type="text"]:focus,
.form-row input[type="email"]:focus {
    outline: none;
    border-color: var(--orange);
    background: #fff;
}

/* Score input — BIG */
.score-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 18px;
    align-items: end;
    margin-top: 1rem;
}
.score-cell { text-align: center; }
.score-cell .lbl {
    font-family: var(--font);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gray);
    margin-bottom: 10px;
}
.score-cell input[type="number"] {
    width: 100%;
    padding: 28px 8px;
    border: 1.5px solid var(--gray-light);
    border-radius: 24px;
    font-family: var(--font);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    background: var(--cream);
    color: var(--ink);
    text-align: center;
    line-height: 1;
    letter-spacing: -0.05em;
    -moz-appearance: textfield;
    transition: all 0.2s ease;
}
.score-cell input[type="number"]:focus {
    outline: none;
    border-color: var(--orange);
    background: #fff;
}
.score-cell input::-webkit-inner-spin-button,
.score-cell input::-webkit-outer-spin-button {
    -webkit-appearance: none; margin: 0;
}
.score-vs {
    font-family: var(--font);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--gray);
    padding-bottom: 32px;
}

/* Honeypot */
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ==================== */
/* BUTTONS              */
/* ==================== */
.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
    justify-content: center;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 999px;
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1.5px solid transparent;
    line-height: 1;
    text-decoration: none;
}
.btn--orange { background: var(--orange); color: #fff; }
.btn--orange:hover { background: var(--orange-2); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,116,0,0.3); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--orange); transform: translateY(-2px); }
.btn--outline-ink { border-color: var(--ink); color: var(--ink); }
.btn--outline-ink:hover { background: var(--ink); color: #fff; }
.btn--outline-white { border-color: #fff; color: #fff; }
.btn--outline-white:hover { background: #fff; color: var(--ink); }
.btn:disabled, .btn[aria-disabled="true"] { opacity: 0.4; cursor: not-allowed; pointer-events: none; }

/* ==================== */
/* STATUS MESSAGES      */
/* ==================== */
.status-msg {
    margin-top: 20px;
    padding: 16px 22px;
    border-radius: 16px;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    display: none;
    text-align: left;
}
.status-msg.show { display: block; }
.status-msg--error { background: rgba(197,48,48,0.08); color: var(--error); border: 1px solid rgba(197,48,48,0.2); }
.status-msg--success { background: rgba(47,133,90,0.08); color: var(--success); border: 1px solid rgba(47,133,90,0.2); }
.status-msg--info { background: rgba(255,116,0,0.08); color: var(--orange-3); border: 1px solid rgba(255,116,0,0.2); }
.section-black .status-msg--info { background: rgba(255,116,0,0.18); color: #fff; }

/* ==================== */
/* COUNTDOWN (mega)     */
/* ==================== */
.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 800px;
    margin: 2rem auto 0;
}
.cd-cell {
    background: var(--cream);
    border-radius: 24px;
    padding: clamp(24px, 4vw, 40px) 14px;
    text-align: center;
    border: 1px solid var(--gray-light);
}
.section-black .cd-cell { background: var(--dark-1); color: #fff; border-color: rgba(255,255,255,0.1); }
.cd-num {
    font-family: var(--font);
    font-weight: 800;
    font-size: clamp(2.4rem, 7vw, 5.4rem);
    line-height: 1;
    letter-spacing: -0.05em;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
}
.section-black .cd-num { color: #fff; }
.cd-lbl {
    font-family: var(--font);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gray);
    margin-top: 12px;
}
.section-black .cd-lbl { color: rgba(255,255,255,0.6); }

/* ==================== */
/* PREDICTION DISPLAY   */
/* ==================== */
.pred-card {
    background: #fff;
    border-radius: 40px;
    padding: clamp(28px, 5vw, 56px);
    max-width: 880px;
    margin: 2rem auto 0;
    border: 1px solid var(--gray-light);
    box-shadow: 0 24px 60px rgba(0,0,0,0.06);
}
.pred-meta {
    font-family: var(--font);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gray);
    margin-bottom: 24px;
    text-align: center;
}
.pred-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
}
.pred-team { text-align: center; }
.pred-team_name {
    font-family: var(--font);
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.1;
    margin-bottom: 16px;
}
.pred-team_score {
    font-family: var(--font);
    font-weight: 800;
    font-size: clamp(4rem, 14vw, 9rem);
    line-height: 1;
    letter-spacing: -0.06em;
    color: var(--orange);
    text-align: center;
}
.pred-dash {
    font-family: var(--font);
    font-size: clamp(3rem, 9vw, 6rem);
    font-weight: 300;
    color: var(--gray);
    line-height: 1;
}

.result-banner {
    margin-top: 2rem;
    padding: 24px 28px;
    border-radius: 24px;
    text-align: center;
    background: var(--cream);
    border: 1px solid var(--gray-light);
}
.result-banner.winner {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-2) 100%);
    color: var(--ink);
    border-color: transparent;
}
.result-banner.wrong { opacity: 0.65; }
.result-banner_label {
    font-family: var(--font);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gray);
    margin-bottom: 10px;
}
.result-banner.winner .result-banner_label { color: rgba(0,0,0,0.65); }
.result-banner_msg {
    font-family: var(--font);
    font-weight: 800;
    font-size: clamp(1.2rem, 2.6vw, 1.8rem);
    line-height: 1.2;
}

/* ==================== */
/* TABLES (admin)       */
/* ==================== */
.table-wrap {
    overflow-x: auto;
    border-radius: 24px;
    border: 1px solid var(--gray-light);
    background: #fff;
}
table.data {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font);
}
table.data th {
    text-align: left;
    padding: 18px 20px;
    background: var(--cream);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gray);
    border-bottom: 1px solid var(--gray-light);
}
.section-black table.data th { background: var(--dark-1); color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.08); }
table.data td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--gray-light);
    font-size: 0.92rem;
}
.section-black table.data td { border-color: rgba(255,255,255,0.06); }
table.data tr:last-child td { border-bottom: none; }
table.data tr.winner-row { background: rgba(255,116,0,0.08); font-weight: 800; }
.section-black table.data tr.winner-row { background: rgba(255,116,0,0.2); color: #fff; }

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.66rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}
.badge--ok { background: rgba(47,133,90,0.15); color: var(--success); }
.badge--pending { background: rgba(0,0,0,0.05); color: var(--gray); }
.badge--winner { background: var(--orange); color: var(--ink); }

/* ==================== */
/* STATS                */
/* ==================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 1.5rem;
}
.stat-tile {
    background: #fff;
    border: 1px solid var(--gray-light);
    border-radius: 24px;
    padding: 28px;
}
.section-black .stat-tile { background: var(--dark-1); border-color: rgba(255,255,255,0.08); color: #fff; }
.stat-tile_label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gray);
    margin-bottom: 14px;
}
.section-black .stat-tile_label { color: rgba(255,255,255,0.55); }
.stat-tile_value {
    font-family: var(--font);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

/* ==================== */
/* ADMIN CARDS          */
/* ==================== */
.admin-card {
    background: #fff;
    border: 1px solid var(--gray-light);
    border-radius: 32px;
    padding: clamp(24px, 4vw, 40px);
    margin-bottom: 24px;
}
.section-black .admin-card { background: var(--dark-1); border-color: rgba(255,255,255,0.08); color: #fff; }
.admin-card_title {
    font-family: var(--font);
    font-weight: 800;
    font-size: clamp(1.4rem, 2.4vw, 1.8rem);
    margin: 0 0 1rem;
    letter-spacing: -0.03em;
}
.admin-card_title .gradient {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Fetch result preview */
.fetch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 1rem;
}
.fetch-source {
    border: 1.5px solid var(--gray-light);
    border-radius: 18px;
    padding: 16px 18px;
    background: var(--cream);
}
.section-black .fetch-source { background: var(--dark-2); border-color: rgba(255,255,255,0.08); }
.fetch-source.success { border-color: var(--orange); background: rgba(255,116,0,0.08); }
.fetch-source_name {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gray);
    margin-bottom: 6px;
}
.fetch-source_score {
    font-family: var(--font);
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -0.03em;
}
.fetch-source_err {
    font-size: 0.8rem;
    color: var(--gray);
}
.consensus-banner {
    margin-top: 16px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: var(--ink);
    padding: 18px 24px;
    border-radius: 18px;
    font-family: var(--font);
    font-weight: 800;
    text-align: center;
    font-size: 1.05rem;
}

/* ==================== */
/* AUDIT                */
/* ==================== */
.audit-block {
    background: #fff;
    border: 1px solid var(--gray-light);
    border-radius: 24px;
    padding: clamp(24px, 3vw, 36px);
    margin-bottom: 20px;
}
.audit-block.reveal {
    border-color: var(--orange);
    background: linear-gradient(145deg, #fff 0%, rgba(255,116,0,0.04) 100%);
}
.audit-block h3 {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--orange);
    margin: 0 0 18px;
}
.audit-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-light);
    font-size: 0.92rem;
}
.audit-row:last-child { border-bottom: none; }
.audit-row .label {
    font-weight: 800;
    color: var(--gray);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}
.audit-row code, .audit-block code {
    font-family: 'SF Mono', Menlo, Consolas, monospace;
    font-size: 0.8rem;
    background: var(--cream);
    padding: 4px 10px;
    border-radius: 6px;
    word-break: break-all;
}

/* ==================== */
/* HERO TAGS            */
/* ==================== */
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 24px;
}
.hero-tag {
    font-family: var(--font);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    backdrop-filter: blur(8px);
}
.hero-tag b { color: var(--ink); margin-right: 6px; }
