/*
 * Zoccer Casino design system
 * Fixed dark stadium theme with electric-blue and gold accents.
 */

:root {
    color-scheme: dark;
    --background: #071027;
    --background-deep: #030919;
    --surface: #101c3b;
    --surface-strong: #17284e;
    --surface-soft: #1d3159;
    --surface-glass: rgba(18, 34, 68, 0.94);
    --foreground: #f6f8ff;
    --muted: #1a294a;
    --muted-foreground: #c4cce0;
    --primary: #f3ca68;
    --primary-strong: #c89428;
    --primary-foreground: #171006;
    --secondary: #00bdf5;
    --secondary-foreground: #03101b;
    --accent: #67e8ff;
    --accent-foreground: #04141c;
    --success: #57d49b;
    --success-foreground: #04130d;
    --warning: #f6c85f;
    --warning-foreground: #181005;
    --destructive: #ff707b;
    --destructive-foreground: #1b0507;
    --border: #31476f;
    --border-bright: #27c8ff;
    --gold-border: #d4ac56;
    --focus: #7ce7ff;
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.36);
    --glow-blue: 0 0 0 1px rgba(49, 206, 255, 0.55), 0 0 24px rgba(0, 189, 245, 0.24);
    --glow-gold: 0 0 0 1px rgba(243, 202, 104, 0.55), 0 0 24px rgba(243, 202, 104, 0.18);

    --font-display: "Saira", "Arial Narrow", sans-serif;
    --font-body: "Inter", Arial, sans-serif;

    --space-2xs: 0.25rem;
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4.5rem;
    --space-4xl: 6rem;

    --radius-sm: 0.5rem;
    --radius-md: 0.875rem;
    --radius-lg: 1.25rem;
    --radius-pill: 999px;
    --container: 76rem;
    --reading: 46rem;
    --header-height: 4.5rem;
    --transition: 180ms ease;
}

/* ============================================
   RESET & OVERFLOW SAFETY - Predictable rendering
   ============================================ */

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

html {
    min-width: 20rem;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + var(--space-md));
    background: var(--background-deep);
}

body {
    min-width: 20rem;
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 50% 0%, rgba(23, 66, 121, 0.34), transparent 32rem),
        linear-gradient(180deg, var(--background) 0%, var(--background-deep) 100%);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

img,
video,
iframe,
embed,
object,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

[class*="grid"] > *,
[class*="flex"] > * {
    min-width: 0;
}

section {
    position: relative;
    overflow: clip;
}

p,
li,
td,
th,
dd {
    overflow-wrap: break-word;
}

a,
button,
summary {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: var(--accent);
}

a:hover {
    color: var(--foreground);
}

:where(p, li, blockquote, figcaption, dd, .prose, .seo-text, article) a:not([class]) {
    text-decoration: underline;
    text-decoration-thickness: 0.1em;
    text-underline-offset: 0.18em;
}

a[href^="http"],
a[href^="mailto:"],
a[href^="tel:"] {
    overflow-wrap: anywhere;
}

button,
input,
textarea,
select {
    max-width: 100%;
    color: inherit;
    font: inherit;
}

button {
    cursor: pointer;
}

pre,
code,
.code-block,
[class*="code"] {
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
}

pre,
pre code,
.code-block code {
    display: block;
    white-space: pre;
}

.table-wrapper,
[class*="table-"] {
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
}

details {
    height: fit-content;
}

::selection {
    background: var(--primary);
    color: var(--primary-foreground);
}

/* ============================================
   ACCESSIBILITY - Focus, skip link and hidden text
   ============================================ */

:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    z-index: 2000;
    top: var(--space-sm);
    left: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    transform: translateY(-180%);
    border-radius: var(--radius-sm);
    background: var(--primary);
    color: var(--primary-foreground);
    font-weight: 800;
    text-decoration: none;
    transition: transform var(--transition);
}

.skip-link:focus {
    transform: translateY(0);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   TYPOGRAPHY - Condensed sports headings, calm body copy
   ============================================ */

h1,
h2,
h3,
h4 {
    max-width: 24ch;
    margin: 0 0 var(--space-md);
    color: var(--foreground);
    font-family: var(--font-display);
    font-weight: 750;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.35rem, calc(6vw + 0.75rem), 4.75rem);
}

h2 {
    font-size: clamp(1.85rem, calc(3.2vw + 0.65rem), 3.25rem);
}

h3 {
    font-size: clamp(1.25rem, calc(1.35vw + 0.95rem), 1.75rem);
}

h4 {
    font-size: 1.125rem;
}

p,
ul,
ol,
blockquote,
figure {
    margin-top: 0;
}

p {
    max-width: var(--reading);
    margin-bottom: var(--space-md);
}

.lead {
    color: #e3e9f6;
    font-size: clamp(1.0625rem, calc(0.5vw + 0.95rem), 1.25rem);
    line-height: 1.65;
}

.kicker {
    margin-bottom: var(--space-sm);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    line-height: 1.3;
    text-transform: uppercase;
}

.text-gold {
    color: var(--primary);
}

.text-center {
    text-align: center;
}

/* ============================================
   LAYOUT - Shared containers and section rhythm
   ============================================ */

.container,
.section-inner {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
}

.content-section {
    padding-block: var(--space-3xl);
}

.content-section--tight {
    padding-block: var(--space-2xl);
}

.content-section--field {
    background:
        linear-gradient(rgba(4, 12, 30, 0.9), rgba(4, 12, 30, 0.96)),
        repeating-linear-gradient(90deg, rgba(52, 131, 79, 0.16) 0 8rem, rgba(30, 91, 59, 0.12) 8rem 16rem);
}

.content-section--glow::before {
    position: absolute;
    inset: 10% auto auto 50%;
    width: 32rem;
    height: 22rem;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(0, 189, 245, 0.13);
    filter: blur(70px);
    content: "";
    pointer-events: none;
}

.section-intro {
    max-width: var(--reading);
    margin-bottom: var(--space-xl);
}

.section-intro--center {
    margin-inline: auto;
    text-align: center;
}

.section-intro--center h2,
.section-intro--center p {
    margin-inline: auto;
}

.section-intro__text {
    color: var(--muted-foreground);
}

.prose {
    max-width: var(--reading);
}

.prose > *:last-child {
    margin-bottom: 0;
}

.divider-glow {
    height: 1px;
    border: 0;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
    box-shadow: 0 0 16px rgba(0, 189, 245, 0.5);
}

/* ============================================
   HEADER & NAVIGATION - Compact mobile controls, stadium banner desktop
   ============================================ */

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    min-height: var(--header-height);
    border-bottom: 1px solid rgba(243, 202, 104, 0.58);
    background:
        linear-gradient(90deg, rgba(0, 189, 245, 0.13), transparent 20%, transparent 80%, rgba(243, 202, 104, 0.12)),
        var(--background);
    box-shadow: 0 5px 22px rgba(0, 0, 0, 0.35);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100% - 1rem, var(--container));
    min-height: var(--header-height);
    margin-inline: auto;
    gap: var(--space-xs);
}

.site-brand,
.site-footer__brand {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 0.45rem;
    color: var(--foreground);
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 0.9;
    text-decoration: none;
}

.site-brand:hover {
    color: var(--foreground);
}

.site-brand__mark {
    flex: 0 0 auto;
    color: var(--primary);
    font-size: clamp(2rem, 8vw, 3rem);
    font-style: italic;
    font-weight: 900;
    line-height: 0.8;
    text-shadow: 0 0 16px rgba(243, 202, 104, 0.35);
}

.site-brand__text {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.site-brand__name {
    font-size: clamp(1rem, 4.7vw, 1.7rem);
    letter-spacing: 0.01em;
}

.site-brand__sub {
    color: var(--primary);
    font-size: clamp(0.65rem, 2.8vw, 1rem);
    letter-spacing: 0.08em;
}

.primary-nav {
    display: none;
}

.primary-nav.is-open {
    position: fixed;
    z-index: 999;
    inset: var(--header-height) 0 0;
    display: block;
    max-width: 100vw;
    overflow-y: auto;
    padding: var(--space-lg);
    background: var(--background);
}

.primary-nav__list,
.footer-nav__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-nav.is-open .primary-nav__list {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: var(--space-xs);
}

.primary-nav a {
    display: flex;
    min-height: 3rem;
    align-items: center;
    border-bottom: 1px solid var(--border);
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
    color: var(--primary);
}

.header-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 0.3rem;
}

.nav-toggle {
    position: relative;
    z-index: 1001;
    display: inline-flex;
    width: 2.75rem;
    min-width: 2.75rem;
    height: 2.75rem;
    padding: 0.65rem;
    align-items: stretch;
    justify-content: space-around;
    flex-direction: column;
    border: 0;
    border-radius: var(--radius-sm);
    background: transparent;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--foreground);
    transform-origin: center;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(0.43rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-0.43rem) rotate(-45deg);
}

/* ============================================
   BUTTONS - Gold conversion actions and blue outlines
   ============================================ */

.btn {
    display: inline-flex;
    min-height: 3rem;
    padding: 0.7rem 1.15rem;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    color: var(--primary-foreground);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.btn:hover {
    color: var(--primary-foreground);
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.btn--gold {
    border-color: #ffe49a;
    background: linear-gradient(115deg, #bd882b, #ffe08a 52%, #c99535);
    box-shadow: var(--glow-blue);
}

.btn--ghost {
    border-color: var(--secondary);
    background: var(--background);
    color: var(--foreground);
    box-shadow: 0 0 15px rgba(0, 189, 245, 0.18);
}

.btn--ghost:hover {
    color: var(--foreground);
}

.btn--sm {
    min-height: 2.75rem;
    padding-inline: 0.7rem;
    font-size: 0.875rem;
}

.btn--lg {
    min-height: 3.5rem;
    padding-inline: clamp(1.25rem, 6vw, 2.75rem);
    font-size: clamp(1.05rem, calc(1vw + 0.85rem), 1.35rem);
}

.cta-inline {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.cta-inline__note,
.cta-band__note {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* ============================================
   HERO - Integrated stadium artwork with independent foreground media
   ============================================ */

.hero {
    min-height: calc(100svh - var(--header-height));
    padding: var(--space-2xl) 0 0;
    background:
        radial-gradient(circle at 15% 45%, rgba(38, 175, 255, 0.3), transparent 17rem),
        radial-gradient(circle at 85% 45%, rgba(38, 175, 255, 0.3), transparent 17rem),
        linear-gradient(180deg, #070d21 0%, #0c1c3b 58%, #0a382e 100%);
}

.hero::before,
.hero::after {
    position: absolute;
    bottom: 6%;
    width: 13rem;
    height: 13rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 2%, rgba(77, 203, 255, 0.36) 3% 22%, transparent 62%);
    filter: blur(1px);
    content: "";
    pointer-events: none;
}

.hero::before {
    left: -6rem;
}

.hero::after {
    right: -6rem;
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    width: min(100% - 2rem, var(--container));
    min-height: calc(100svh - var(--header-height) - var(--space-2xl));
    margin-inline: auto;
    grid-template-columns: minmax(0, 1fr);
}

.hero__content {
    z-index: 2;
    align-self: start;
    text-align: center;
}

.hero__content h1,
.hero__content p {
    margin-inline: auto;
}

.hero__content .lead {
    max-width: 42rem;
}

.hero__art {
    display: flex;
    min-height: 25rem;
    align-items: flex-end;
    justify-content: center;
    margin-top: var(--space-xl);
}

.hero__art img[data-visual-role="hero-foreground"] {
    width: min(100%, 34rem);
    max-height: 42rem;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 1.25rem 2.25rem rgba(0, 0, 0, 0.46));
}

/* ============================================
   CARDS - Neon-edged content containers
   ============================================ */

.feature-grid,
.link-grid,
.source-grid,
.stat-grid {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-md);
}

.feature-card,
.link-card,
.source-note,
.stat-highlight {
    min-width: 0;
    border: 1px solid var(--border-bright);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, var(--surface-strong), var(--surface));
    box-shadow: var(--glow-blue);
}

.feature-card {
    display: grid;
    min-height: 100%;
    padding: var(--space-lg);
    grid-template-columns: 4rem minmax(0, 1fr);
    gap: var(--space-md);
}

.feature-card__icon,
.link-card__icon,
.trust-row__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 800;
    text-shadow: 0 0 16px rgba(0, 189, 245, 0.6);
}

.feature-card h3,
.link-card h3 {
    margin-bottom: var(--space-sm);
}

.feature-card p,
.link-card p {
    margin-bottom: 0;
    color: var(--muted-foreground);
}

.link-card {
    display: flex;
    min-height: 100%;
    padding: var(--space-lg);
    flex-direction: column;
}

.link-card__icon {
    width: 4rem;
    height: 4rem;
    margin-bottom: var(--space-md);
    border: 1px solid var(--gold-border);
    border-radius: 50%;
    background: var(--muted);
}

.link-card__link {
    margin-top: auto;
    padding-top: var(--space-lg);
    color: var(--primary);
    font-weight: 800;
    text-underline-offset: 0.2em;
}

/* ============================================
   MEDIA BLOCKS - Alternating copy and integrated illustration
   ============================================ */

.media-block {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-xl);
}

.media-block__text,
.media-block__media {
    min-width: 0;
}

.media-block__text p {
    color: var(--muted-foreground);
}

.media-block__media {
    display: flex;
    min-height: 15rem;
    align-items: center;
    justify-content: center;
}

.media-block__media img {
    width: min(100%, 36rem);
    object-fit: contain;
    filter: drop-shadow(0 1rem 2rem rgba(0, 0, 0, 0.42));
}

.media-block__cta {
    margin-top: var(--space-lg);
}

/* ============================================
   TL;DR, CALLOUTS & LISTS - Citation-friendly reading breaks
   ============================================ */

.tldr-box,
.callout {
    min-width: 0;
    max-width: var(--reading);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: var(--surface-glass);
}

.tldr-box {
    border: 1px solid var(--gold-border);
    box-shadow: var(--glow-gold);
}

.tldr-box__title,
.callout__title {
    margin-bottom: var(--space-sm);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
}

.tldr-box__list,
.check-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tldr-box__list li,
.check-list li {
    position: relative;
    padding-left: 1.65rem;
}

.tldr-box__list li + li,
.check-list li + li {
    margin-top: var(--space-xs);
}

.tldr-box__list li::before,
.check-list li::before {
    position: absolute;
    top: 0.02em;
    left: 0;
    color: var(--success);
    content: "✓";
    font-weight: 900;
}

.callout {
    border: 1px solid var(--secondary);
    border-left-width: 0.35rem;
    box-shadow: var(--glow-blue);
}

.callout--warning {
    border-color: var(--warning);
    box-shadow: var(--glow-gold);
}

.callout--danger {
    border-color: var(--destructive);
    box-shadow: 0 0 20px rgba(255, 112, 123, 0.16);
}

.callout__text {
    margin-bottom: 0;
    color: var(--muted-foreground);
}

.step-list {
    max-width: var(--reading);
    margin: var(--space-xl) 0 0;
    padding: 0;
    list-style: none;
    counter-reset: steps;
}

.step-list__item {
    position: relative;
    padding: 0 0 var(--space-xl) 4.25rem;
    counter-increment: steps;
}

.step-list__item::before {
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    border: 1px solid var(--primary);
    border-radius: 50%;
    background: var(--surface);
    color: var(--primary);
    box-shadow: var(--glow-gold);
    content: counter(steps);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
}

.step-list__item:not(:last-child)::after {
    position: absolute;
    top: 3.25rem;
    bottom: 0.25rem;
    left: 1.5rem;
    width: 1px;
    background: linear-gradient(var(--primary), var(--secondary));
    content: "";
}

.step-list__title {
    margin-bottom: var(--space-xs);
}

/* ============================================
   STAT HIGHLIGHTS & QUOTES - Editorial emphasis
   ============================================ */

.stat-highlight {
    display: flex;
    padding: var(--space-xl);
    align-items: flex-start;
    flex-direction: column;
}

.stat-highlight__value {
    color: var(--primary);
    font-family: var(--font-display);
    font-size: clamp(2.3rem, calc(4vw + 1rem), 4.5rem);
    font-weight: 850;
    line-height: 1;
}

.stat-highlight__label {
    margin-top: var(--space-sm);
    font-weight: 700;
}

.stat-highlight__note {
    margin-top: var(--space-xs);
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.pull-quote {
    max-width: 54rem;
    margin: var(--space-2xl) 0;
    padding: var(--space-xl) var(--space-lg);
    border-block: 1px solid var(--gold-border);
    color: var(--foreground);
}

.pull-quote blockquote {
    margin: 0;
}

.pull-quote p {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.4rem, calc(2vw + 0.85rem), 2.35rem);
    font-weight: 650;
    line-height: 1.35;
}

.pull-quote figcaption {
    margin-top: var(--space-md);
    color: var(--primary);
    font-size: 0.875rem;
}

/* ============================================
   TABLES - Scroll-safe comparisons and strategy matrices
   ============================================ */

.table-wrapper {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.data-table {
    width: 100%;
    min-width: 42rem;
    border-collapse: collapse;
    color: var(--foreground);
}

.data-table caption {
    padding: var(--space-lg);
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 750;
    text-align: left;
}

.data-table th,
.data-table td {
    padding: var(--space-md);
    border-top: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

.data-table thead th {
    background: var(--muted);
    color: var(--primary);
    font-family: var(--font-display);
}

.data-table .is-highlight {
    background: rgba(243, 202, 104, 0.12);
    box-shadow: inset 2px 0 var(--primary), inset -2px 0 var(--primary);
}

/* ============================================
   FAQ ACCORDIONS - Native accessible disclosures
   ============================================ */

.faq-group {
    display: grid;
    max-width: 62rem;
    margin-inline: auto;
    align-items: start;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-md);
}

.faq-item {
    align-self: start;
    border: 1px solid var(--border-bright);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, var(--surface-strong), var(--surface));
    box-shadow: var(--glow-blue);
}

.faq-item summary {
    position: relative;
    min-height: 3.75rem;
    padding: var(--space-md) 3.25rem var(--space-md) var(--space-lg);
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 750;
    line-height: 1.35;
    list-style: none;
    cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    position: absolute;
    top: 50%;
    right: var(--space-lg);
    width: 0.8rem;
    height: 0.8rem;
    transform: translateY(-65%) rotate(45deg);
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    content: "";
    transition: transform var(--transition);
}

.faq-item[open] summary::after {
    transform: translateY(-30%) rotate(225deg);
}

.faq-item__answer {
    padding: 0 var(--space-lg) var(--space-lg);
    border-top: 1px solid var(--border);
    color: var(--muted-foreground);
}

.faq-item__answer > :first-child {
    margin-top: var(--space-md);
}

.faq-item__answer > :last-child {
    margin-bottom: 0;
}

/* ============================================
   SOURCE NOTES & SOCIAL PROOF - Evidence-aware cards
   ============================================ */

.source-note {
    padding: var(--space-lg);
}

.source-note__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
}

.source-note p:last-child {
    margin-bottom: 0;
    color: var(--muted-foreground);
}

.social-proof-grid {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-md);
}

.review-card {
    min-width: 0;
    padding: var(--space-lg);
    border: 1px solid var(--border-bright);
    border-radius: var(--radius-lg);
    background: var(--surface-glass);
    box-shadow: var(--glow-blue);
}

.review-card blockquote {
    margin: 0;
}

.review-card cite {
    display: block;
    margin-top: var(--space-md);
    color: var(--primary);
    font-size: 0.875rem;
}

/* ============================================
   TRUST BADGES - Security and responsibility markers
   ============================================ */

.trust-row {
    display: grid;
    margin: var(--space-xl) 0 0;
    padding: 0;
    align-items: stretch;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-sm);
    list-style: none;
}

.trust-row__item {
    display: flex;
    min-width: 0;
    min-height: 7rem;
    padding: var(--space-md);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: var(--space-xs);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    background: var(--surface);
    text-align: center;
}

.trust-row__label {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    font-weight: 700;
}

/* ============================================
   CTA BAND - Full-width matchday conversion zone
   ============================================ */

.cta-band {
    padding: var(--space-3xl) var(--space-md);
    background:
        radial-gradient(circle at 15% 20%, rgba(0, 189, 245, 0.38), transparent 14rem),
        radial-gradient(circle at 85% 20%, rgba(0, 189, 245, 0.38), transparent 14rem),
        linear-gradient(180deg, #102c59 0%, #0c2851 62%, #12432f 100%);
}

.cta-band::before {
    position: absolute;
    inset: auto 0 0;
    height: 35%;
    background: repeating-linear-gradient(90deg, rgba(83, 173, 96, 0.3) 0 10%, rgba(43, 127, 69, 0.28) 10% 20%);
    clip-path: polygon(0 45%, 100% 0, 100% 100%, 0 100%);
    content: "";
}

.cta-band__inner {
    position: relative;
    z-index: 1;
    max-width: 54rem;
    margin-inline: auto;
    text-align: center;
}

.cta-band h2,
.cta-band p {
    margin-inline: auto;
}

.cta-band p {
    color: #e4eafa;
}

.cta-band__note {
    margin-top: var(--space-sm);
}

/* ============================================
   FOOTER - Dense link map, payment chips and 18+ marker
   ============================================ */

.site-footer {
    border-top: 1px solid var(--gold-border);
    background:
        linear-gradient(90deg, rgba(0, 189, 245, 0.08), transparent 30%, transparent 70%, rgba(243, 202, 104, 0.08)),
        var(--background-deep);
}

.site-footer__inner {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
    padding-block: var(--space-2xl);
}

.site-footer__brand {
    margin-bottom: var(--space-xl);
}

.footer-nav__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-sm) var(--space-md);
}

.footer-nav a {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    color: var(--foreground);
    font-weight: 700;
    text-decoration: none;
}

.footer-nav a:hover {
    color: var(--primary);
}

.footer-pay {
    display: flex;
    margin-top: var(--space-xl);
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.pay-chip {
    display: inline-flex;
    min-height: 2.25rem;
    padding: 0.35rem 0.75rem;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--muted);
    color: var(--muted-foreground);
    font-size: 0.875rem;
    font-weight: 700;
}

.site-footer__legal {
    display: grid;
    margin-top: var(--space-xl);
    align-items: start;
    grid-template-columns: auto minmax(0, 1fr);
    gap: var(--space-md);
}

.site-footer__legal p,
.site-footer__copy {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.age-badge {
    display: inline-grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    border: 3px solid var(--destructive);
    border-radius: 50%;
    color: var(--foreground);
    font-family: var(--font-display);
    font-weight: 800;
}

.site-footer__copy {
    margin: var(--space-lg) 0 0;
}

/* ============================================
   SCROLL REVEAL - Progressive enhancement only
   ============================================ */

.js-reveal [data-reveal] {
    opacity: 0;
    transform: translateY(1.25rem);
    transition: opacity 520ms ease, transform 520ms ease;
}

.js-reveal [data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

/* ============================================
   SMALL MOBILE - Keep header useful at 320px
   ============================================ */

@media (max-width: 374px) {
    .site-header__inner {
        width: calc(100% - 0.5rem);
        gap: 0.15rem;
    }

    .site-brand {
        gap: 0.25rem;
    }

    .site-brand__mark {
        font-size: 1.8rem;
    }

    .site-brand__name {
        font-size: 0.88rem;
    }

    .site-brand__sub {
        font-size: 0.58rem;
    }

    .header-actions {
        gap: 0.15rem;
    }

    .nav-toggle {
        width: 2.6rem;
        min-width: 2.6rem;
        height: 2.6rem;
    }

    .btn--sm {
        min-height: 2.6rem;
        padding-inline: 0.45rem;
        font-size: 0.75rem;
    }
}

/* ============================================
   TABLET - Two-column content and wider rhythm
   ============================================ */

@media (min-width: 768px) {
    :root {
        --header-height: 5rem;
    }

    .container,
    .section-inner {
        width: min(100% - 3rem, var(--container));
    }

    .content-section {
        padding-block: var(--space-4xl);
    }

    .feature-grid,
    .link-grid,
    .stat-grid,
    .social-proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .source-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .source-grid > :last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }

    .media-block {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--space-2xl);
    }

    .media-block--reverse .media-block__text {
        order: 2;
    }

    .media-block--reverse .media-block__media {
        order: 1;
    }

    .trust-row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .footer-nav__list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .cta-inline {
        align-items: center;
        flex-direction: row;
    }

    .hero__art {
        min-height: 34rem;
    }
}

/* ============================================
   DESKTOP - Reference-matched horizontal header and split hero
   ============================================ */

@media (min-width: 1024px) {
    :root {
        --header-height: 6.25rem;
    }

    .site-header__inner {
        width: min(100% - 3rem, 90rem);
        gap: var(--space-lg);
    }

    .site-brand__mark {
        font-size: 3.2rem;
    }

    .site-brand__name {
        font-size: 1.85rem;
    }

    .site-brand__sub {
        font-size: 1.05rem;
    }

    .nav-toggle {
        display: none;
    }

    .primary-nav,
    .primary-nav.is-open {
        position: static;
        display: block;
        max-width: none;
        overflow: visible;
        padding: 0;
        background: transparent;
    }

    .primary-nav__list,
    .primary-nav.is-open .primary-nav__list {
        display: flex;
        align-items: center;
        flex-direction: row;
        gap: clamp(0.7rem, 1.5vw, 1.8rem);
    }

    .primary-nav a {
        min-height: 3rem;
        border: 0;
        font-size: clamp(0.9rem, 1.15vw, 1.1rem);
        white-space: nowrap;
    }

    .header-actions {
        gap: var(--space-sm);
    }

    .btn--sm {
        min-height: 3rem;
        padding-inline: 1.2rem;
        font-size: 1rem;
    }

    .hero {
        min-height: min(52rem, calc(100svh - var(--header-height)));
        padding-top: 0;
    }

    .hero__inner {
        min-height: min(52rem, calc(100svh - var(--header-height)));
        grid-template-columns: minmax(0, 1.08fr) minmax(24rem, 0.92fr);
        gap: var(--space-xl);
    }

    .hero__content {
        align-self: center;
        padding-block: var(--space-3xl);
        text-align: left;
    }

    .hero__content h1,
    .hero__content p {
        margin-left: 0;
    }

    .hero__art {
        min-height: 100%;
        margin-top: 0;
    }

    .hero__art img[data-visual-role="hero-foreground"] {
        width: min(100%, 41rem);
        max-height: 49rem;
    }

    .feature-grid--four {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .feature-grid--three,
    .link-grid--three,
    .source-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .source-grid > :last-child:nth-child(odd) {
        grid-column: auto;
    }

    .feature-grid--four .feature-card {
        grid-template-columns: minmax(0, 1fr);
        text-align: center;
    }

    .feature-grid--four .feature-card__icon {
        min-height: 5rem;
        font-size: 3rem;
    }

    .faq-group--two {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-nav__list {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

/* ============================================
   WIDE DESKTOP - Cap scale and preserve reference density
   ============================================ */

@media (min-width: 1280px) {
    .hero__inner,
    .container,
    .section-inner {
        width: min(100% - 4rem, var(--container));
    }

    .content-section {
        padding-block: 7rem;
    }
}

/* ============================================
   REDUCED MOTION - Preserve visibility and usability
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .js-reveal [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
