/*
 * ZOCCER CASINO DESIGN SYSTEM
 * Dark stadium surfaces, electric cyan, pitch green and trophy gold.
 * Mobile-first; fixed dark theme by project requirement.
 */

:root {
    color-scheme: dark;
    --background: #061024;
    --background-deep: #030919;
    --surface: #0b1936;
    --surface-raised: #10244a;
    --surface-soft: #172b51;
    --surface-muted: #263451;
    --foreground: #f4f8ff;
    --muted-foreground: #b8c6dc;
    --subtle-foreground: #a8b7ce;
    --primary: #70f44f;
    --primary-foreground: #071525;
    --secondary: #13d9f4;
    --secondary-foreground: #061024;
    --accent: #f6c84b;
    --accent-foreground: #151004;
    --destructive: #ff5d63;
    --destructive-foreground: #1b0507;
    --border: #29446f;
    --border-bright: #20d8f4;
    --focus: #92ff72;
    --success: #70f44f;
    --warning: #ffd166;
    --info: #44dff6;
    --header-height: 72px;
    --container: 1200px;
    --reading-width: 74ch;
    --radius-sm: 0.55rem;
    --radius-md: 0.9rem;
    --radius-lg: 1.3rem;
    --radius-xl: 1.8rem;
    --radius-pill: 999px;
    --space-2xs: 0.35rem;
    --space-xs: 0.55rem;
    --space-sm: 0.8rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4.5rem;
    --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.24);
    --shadow-lg: 0 24px 70px rgba(0, 0, 0, 0.42);
    --glow-cyan: 0 0 0 1px rgba(19, 217, 244, 0.5), 0 0 22px rgba(19, 217, 244, 0.24);
    --glow-green: 0 0 0 1px rgba(112, 244, 79, 0.48), 0 0 22px rgba(112, 244, 79, 0.2);
    --gradient-action: linear-gradient(100deg, var(--secondary) 0%, #31e4bd 52%, var(--primary) 100%);
    --gradient-stadium: radial-gradient(circle at 15% 0%, rgba(22, 194, 255, 0.2), transparent 33%), radial-gradient(circle at 88% 10%, rgba(112, 244, 79, 0.14), transparent 28%), linear-gradient(180deg, #07142d 0%, var(--background) 60%, var(--background-deep) 100%);
    --font-body: "Inter", sans-serif;
    --font-display: "Poppins", sans-serif;
}

/* ============================================
   RESET & OVERFLOW SAFETY - Predictable rendering
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 1rem);
    background: var(--background);
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: clip;
    background: var(--gradient-stadium);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.68;
    text-rendering: optimizeLegibility;
}

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

img {
    display: block;
}

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

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

a {
    color: inherit;
}

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

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

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

section {
    overflow: clip;
}

details {
    height: fit-content;
}

code {
    max-width: 100%;
    overflow-wrap: anywhere;
}

pre,
.code-block {
    min-width: 0;
    max-width: 100%;
    padding: var(--space-lg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow-x: auto;
    background: var(--background-deep);
}

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

.table-wrapper {
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
}

:where(p, li, blockquote, figcaption, dd, .prose, .seo-text, article) a:not([class]) {
    color: #73eaff;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.18em;
}

:where(p, li, blockquote, figcaption, dd, .prose, .seo-text, article) a:not([class]):hover {
    color: #a6ff8f;
}

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

/* ============================================
   TYPOGRAPHY - Strong sports editorial hierarchy
   ============================================ */
h1,
h2,
h3,
h4,
p,
ul,
ol,
blockquote,
figure {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    color: var(--foreground);
    font-family: var(--font-display);
    line-height: 1.18;
    text-wrap: balance;
}

h1 {
    margin-bottom: 1.25rem;
    font-size: clamp(2.15rem, calc(6vw + 0.7rem), 4.9rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.75rem, calc(3vw + 0.6rem), 3rem);
    font-weight: 700;
    letter-spacing: -0.028em;
}

h3 {
    margin-bottom: 0.7rem;
    font-size: clamp(1.18rem, calc(1.1vw + 0.9rem), 1.55rem);
    font-weight: 700;
}

h4 {
    margin-bottom: 0.55rem;
    font-size: 1.05rem;
    font-weight: 700;
}

p {
    margin-bottom: 1.15rem;
}

p:last-child,
ul:last-child,
ol:last-child {
    margin-bottom: 0;
}

.lead {
    max-width: var(--reading-width);
    color: var(--muted-foreground);
    font-size: clamp(1.05rem, calc(0.5vw + 0.98rem), 1.25rem);
    line-height: 1.7;
}

.eyebrow,
.section-heading__kicker {
    margin-bottom: 0.65rem;
    color: #76eafd;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.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;
}

.skip-link {
    position: fixed;
    top: 0.5rem;
    left: 0.5rem;
    z-index: 2000;
    padding: 0.8rem 1rem;
    border-radius: var(--radius-sm);
    background: var(--primary);
    color: var(--primary-foreground);
    font-weight: 800;
    text-decoration: none;
    transform: translateY(-150%);
}

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

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

/* ============================================
   LAYOUT - Containers, sections and prose rhythm
   ============================================ */
.container,
.section__inner,
.hero__inner {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
}

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

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

.section--surface {
    background: linear-gradient(180deg, rgba(15, 34, 69, 0.76), rgba(6, 16, 36, 0.95));
}

.section--pitch {
    background: linear-gradient(rgba(4, 13, 31, 0.76), rgba(4, 13, 31, 0.94)), repeating-linear-gradient(90deg, rgba(67, 187, 107, 0.16) 0 12.5%, rgba(57, 151, 92, 0.16) 12.5% 25%);
}

.section--pitch::after {
    content: "";
    position: absolute;
    inset: 8% 3%;
    z-index: 0;
    border: 1px solid rgba(72, 223, 248, 0.2);
    border-radius: 48% / 12%;
    pointer-events: none;
}

.section--pitch > * {
    position: relative;
    z-index: 1;
}

.prose {
    width: min(100%, var(--reading-width));
}

.prose > * + * {
    margin-top: 1.15rem;
}

.prose h2,
.prose h3 {
    margin-top: 2.4rem;
}

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

.section-heading {
    max-width: 840px;
    margin-bottom: var(--space-2xl);
}

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

.section-heading--left {
    text-align: left;
}

.section-heading__title {
    margin-bottom: 0.85rem;
}

.section-heading__lead {
    max-width: 68ch;
    margin-inline: auto;
    color: var(--muted-foreground);
    font-size: 1.06rem;
}

.section-heading--left .section-heading__lead {
    margin-inline: 0;
}

/* ============================================
   HEADER & NAVIGATION - Compact stadium control bar
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    border-bottom: 1px solid rgba(32, 216, 244, 0.16);
    background: var(--background-deep);
}

.site-header__inner {
    display: flex;
    width: min(100% - 1.25rem, 1440px);
    height: 100%;
    margin-inline: auto;
    align-items: center;
    gap: 0.55rem;
}

.site-brand {
    display: inline-flex;
    min-width: 0;
    flex-shrink: 0;
    align-items: center;
    color: var(--foreground);
    font-family: var(--font-display);
    text-decoration: none;
}

.site-brand__mark {
    color: var(--secondary);
    font-size: 2.6rem;
    font-weight: 500;
    font-style: italic;
    line-height: 0.9;
    text-shadow: 0 0 12px rgba(19, 217, 244, 0.78), 2px 2px 0 rgba(246, 200, 75, 0.58);
}

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

.site-brand__name {
    color: #8cecff;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.05em;
    text-shadow: 0 0 10px rgba(19, 217, 244, 0.65);
}

.site-brand__sub {
    margin-top: 0.3rem;
    color: #b7ff7d;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(112, 244, 79, 0.46);
}

.nav-toggle {
    position: relative;
    z-index: 1001;
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    padding: 0;
    border: 0;
    border-radius: var(--radius-sm);
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--secondary);
    cursor: pointer;
}

.nav-toggle span {
    position: absolute;
    width: 24px;
    height: 2px;
    border-radius: var(--radius-pill);
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span:nth-child(1) { transform: translateY(-7px); }
.nav-toggle span:nth-child(3) { transform: translateY(7px); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }

.primary-nav {
    display: none;
}

.primary-nav.is-open {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    max-width: 100vw;
    padding: 1.25rem 1rem 2rem;
    overflow-y: auto;
    background: var(--background);
}

.primary-nav__list {
    display: flex;
    max-width: 680px;
    padding: 0;
    margin: 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    list-style: none;
}

.primary-nav__link {
    display: flex;
    min-height: 50px;
    padding: 0.75rem 0.9rem;
    border-radius: var(--radius-sm);
    align-items: center;
    color: var(--foreground);
    font-family: var(--font-display);
    font-weight: 600;
    text-decoration: none;
}

.primary-nav__link:hover,
.primary-nav__link.is-active {
    background: var(--surface-raised);
    color: #8cecff;
}

.site-header__actions {
    display: flex;
    min-width: 0;
    margin-left: auto;
    align-items: center;
    gap: 0.55rem;
}

.header-login {
    display: none;
    min-height: 44px;
    padding-inline: 0.45rem;
    align-items: center;
    color: #71eaff;
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}

.primary-nav__mobile-only {
    display: block;
}

/* ============================================
   BUTTONS - High-contrast conversion controls
   ============================================ */
.btn {
    display: inline-flex;
    min-height: 48px;
    padding: 0.8rem 1.25rem;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    align-items: center;
    justify-content: center;
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--primary {
    border-color: rgba(255, 255, 255, 0.55);
    background: var(--gradient-action);
    color: var(--primary-foreground);
    box-shadow: 0 0 0 2px rgba(19, 217, 244, 0.15), 0 0 25px rgba(112, 244, 79, 0.28);
}

.btn--primary:hover {
    box-shadow: 0 0 0 2px rgba(19, 217, 244, 0.25), 0 0 34px rgba(112, 244, 79, 0.42);
    filter: saturate(1.08);
}

.btn--secondary {
    border-color: var(--secondary);
    background: var(--surface-raised);
    color: #9af1ff;
    box-shadow: var(--glow-cyan);
}

.btn--sm {
    min-height: 44px;
    padding: 0.68rem 0.9rem;
    font-size: 0.88rem;
}

.btn--lg {
    min-height: 56px;
    padding: 0.95rem 1.8rem;
    font-size: 1.08rem;
}

.btn--full {
    width: 100%;
}

/* ============================================
   HERO - Integrated stadium art and copy split
   ============================================ */
.hero {
    position: relative;
    isolation: isolate;
    min-height: calc(100svh - var(--header-height));
    background: radial-gradient(circle at 20% 30%, rgba(28, 166, 255, 0.26), transparent 34%), radial-gradient(circle at 82% 60%, rgba(112, 244, 79, 0.12), transparent 28%), linear-gradient(180deg, #07142e 0%, #050d21 100%);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    pointer-events: none;
}

.hero::before {
    inset: 0;
    background: linear-gradient(112deg, transparent 0 15%, rgba(24, 209, 250, 0.09) 15.2% 15.8%, transparent 16% 82%, rgba(112, 244, 79, 0.09) 82.2% 82.8%, transparent 83%), repeating-linear-gradient(90deg, transparent 0 9.5%, rgba(52, 213, 255, 0.045) 10% 10.2%);
}

.hero::after {
    right: -10%;
    bottom: -22%;
    left: -10%;
    height: 48%;
    border: 2px solid rgba(28, 218, 250, 0.25);
    border-radius: 50% 50% 0 0;
    background: repeating-linear-gradient(90deg, rgba(39, 138, 83, 0.2) 0 8%, rgba(53, 178, 103, 0.2) 8% 16%);
    transform: perspective(500px) rotateX(58deg);
    transform-origin: bottom;
}

.hero__inner {
    display: grid;
    min-height: inherit;
    padding-block: 2rem 3rem;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
    align-items: center;
}

.hero__media {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 270px;
    place-items: center;
}

.hero__media::before {
    content: "";
    position: absolute;
    inset: 15% 6% 3%;
    z-index: -1;
    border: 3px solid rgba(242, 88, 255, 0.85);
    border-radius: 0.2rem;
    box-shadow: 0 0 18px rgba(242, 88, 255, 0.65), inset 0 0 26px rgba(19, 217, 244, 0.2);
}

.hero__art {
    width: min(100%, 560px);
    max-height: 52svh;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(19, 217, 244, 0.35));
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero__title {
    text-shadow: 0 4px 22px rgba(0, 0, 0, 0.68), 0 0 18px rgba(52, 188, 255, 0.15);
}

.hero__text {
    max-width: 64ch;
    margin: 0 auto 1.5rem;
    color: #d8e4f5;
    font-size: 1.05rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

/* Compact hero for commercial and informational inner pages. */
.page-hero {
    position: relative;
    isolation: isolate;
    background: radial-gradient(circle at 18% 20%, rgba(19, 217, 244, 0.22), transparent 34%), radial-gradient(circle at 84% 28%, rgba(112, 244, 79, 0.12), transparent 30%), linear-gradient(180deg, #081733, #061024);
}

.page-hero::after {
    content: "";
    position: absolute;
    right: -8%;
    bottom: -42%;
    left: -8%;
    z-index: -1;
    height: 62%;
    border: 1px solid rgba(19, 217, 244, 0.24);
    border-radius: 50% 50% 0 0;
    background: repeating-linear-gradient(90deg, rgba(46, 157, 90, 0.16) 0 10%, rgba(61, 191, 108, 0.16) 10% 20%);
    transform: perspective(520px) rotateX(58deg);
    transform-origin: bottom;
}

.page-hero__inner {
    display: grid;
    width: min(100% - 2rem, var(--container));
    min-height: 620px;
    padding-block: 2.25rem 3.5rem;
    margin-inline: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
    align-items: center;
}

.page-hero__media {
    display: grid;
    min-height: 260px;
    place-items: center;
}

.page-hero__art {
    width: min(100%, 620px);
    max-height: 48svh;
    object-fit: contain;
    filter: drop-shadow(0 0 18px rgba(19, 217, 244, 0.34));
}

.page-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-hero__title {
    font-size: clamp(2.1rem, calc(5vw + 0.7rem), 4.3rem);
    text-shadow: 0 4px 22px rgba(0, 0, 0, 0.68);
}

.page-hero__text {
    max-width: 62ch;
    margin: 0 auto 1.5rem;
    color: #d4e2f4;
    font-size: 1.05rem;
}

/* ============================================
   CARDS - Neon content containers and pitch panels
   ============================================ */
.feature-grid,
.overview-grid,
.card-grid,
.social-proof-grid,
.trust-badges {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}

.neon-card,
.card,
.info-card,
.testimonial-card {
    min-width: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: linear-gradient(150deg, rgba(19, 43, 85, 0.96), rgba(7, 18, 43, 0.98));
    box-shadow: var(--shadow-sm);
}

.neon-card {
    position: relative;
    display: flex;
    min-height: 100%;
    padding: 1.35rem;
    flex-direction: column;
    overflow: hidden;
}

.neon-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid var(--card-accent, var(--secondary));
    border-radius: inherit;
    box-shadow: inset 0 0 18px color-mix(in srgb, var(--card-accent, var(--secondary)) 16%, transparent);
    pointer-events: none;
}

.neon-card--green { --card-accent: var(--primary); }
.neon-card--gold { --card-accent: var(--accent); }
.neon-card--blue { --card-accent: var(--secondary); }

.neon-card__icon,
.pitch-card__icon {
    display: inline-grid;
    width: 54px;
    height: 54px;
    margin-bottom: 1rem;
    place-items: center;
    color: var(--card-accent, var(--secondary));
    filter: drop-shadow(0 0 9px currentColor);
}

.icon {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.neon-card__title {
    margin-bottom: 0.65rem;
}

.neon-card__text,
.pitch-card__text,
.testimonial-card__text {
    color: var(--muted-foreground);
}

.neon-card__link {
    display: inline-flex;
    min-height: 44px;
    margin-top: auto;
    padding-top: 1rem;
    align-items: center;
    color: #8eeeff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.pitch-card {
    position: relative;
    display: grid;
    min-width: 0;
    padding: 1.2rem;
    border: 2px solid #25d9f4;
    border-radius: var(--radius-md);
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    background: linear-gradient(100deg, rgba(16, 43, 87, 0.98), rgba(11, 27, 57, 0.98));
    box-shadow: var(--glow-cyan);
}

.pitch-card::before,
.pitch-card::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 13px;
    height: 40%;
    border: 2px solid #25d9f4;
    transform: translateY(-50%);
}

.pitch-card::before { left: -2px; border-left: 0; }
.pitch-card::after { right: -2px; border-right: 0; }

.pitch-card__icon {
    margin: 0;
}

.pitch-card__title {
    margin-bottom: 0.3rem;
}

.card,
.info-card,
.testimonial-card {
    padding: 1.35rem;
}

.testimonial-card__quote {
    margin-bottom: 1rem;
    color: var(--foreground);
    font-size: 1.05rem;
}

.testimonial-card__meta {
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

/* ============================================
   VIP TIERS - Football rank progression
   ============================================ */
.tier-list {
    display: grid;
    padding: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    list-style: none;
}

.tier-badge {
    display: flex;
    min-width: 0;
    padding: 1rem 0.55rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tier-badge:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: min(50%, 200px);
    justify-self: center;
}

.tier-badge__medal {
    display: grid;
    width: 86px;
    height: 86px;
    margin-bottom: 0.65rem;
    place-items: center;
    color: var(--tier-color, #d89263);
    filter: drop-shadow(0 0 12px color-mix(in srgb, var(--tier-color) 44%, transparent));
}

.tier-badge__medal svg {
    width: 100%;
    fill: color-mix(in srgb, var(--tier-color) 26%, var(--surface));
    stroke: var(--tier-color);
    stroke-width: 1.8;
}

.tier-badge--bronze { --tier-color: #dc9367; }
.tier-badge--silver { --tier-color: #c6d6e8; }
.tier-badge--gold { --tier-color: #f6c84b; }
.tier-badge--diamond { --tier-color: #80deff; }
.tier-badge--champion { --tier-color: #bd8cff; }

.tier-badge__name {
    color: var(--foreground);
    font-family: var(--font-display);
    font-weight: 700;
}

.tier-badge__text {
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

/* ============================================
   SUMMARY, CALLOUTS & CHECKLISTS - Scannable guidance
   ============================================ */
.tldr-box,
.callout,
.checklist {
    min-width: 0;
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    background: var(--surface-raised);
}

.tldr-box {
    border: 1px solid var(--secondary);
    box-shadow: inset 4px 0 0 var(--secondary), var(--shadow-sm);
}

.tldr-box__title,
.callout__title {
    margin-bottom: 0.65rem;
    color: var(--foreground);
    font-family: var(--font-display);
    font-weight: 700;
}

.tldr-box__list {
    display: grid;
    padding-left: 1.25rem;
    margin-bottom: 0;
    gap: 0.45rem;
    color: var(--muted-foreground);
}

.callout {
    border: 1px solid var(--callout-color, var(--info));
    border-left-width: 5px;
}

.callout--info { --callout-color: var(--info); }
.callout--success { --callout-color: var(--success); }
.callout--warning { --callout-color: var(--warning); }
.callout--danger { --callout-color: var(--destructive); }
.callout__text { color: var(--muted-foreground); }

.checklist {
    border: 1px solid var(--border);
}

.checklist__title {
    margin-bottom: 1rem;
}

.checklist__list {
    display: grid;
    padding: 0;
    margin: 0;
    gap: 0.75rem;
    list-style: none;
}

.checklist__item {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 0.7rem;
    color: var(--muted-foreground);
}

.checklist__tick {
    position: relative;
    width: 22px;
    height: 22px;
    border: 2px solid var(--primary);
    border-radius: 50%;
}

.checklist__tick::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 6px;
    width: 5px;
    height: 9px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(45deg);
}

/* ============================================
   STEPS - Numbered process explanations
   ============================================ */
.steps-list {
    display: grid;
    padding: 0;
    margin: 0;
    counter-reset: steps;
    gap: 1rem;
    list-style: none;
}

.steps-list__item {
    position: relative;
    min-width: 0;
    padding: 1.25rem 1.25rem 1.25rem 4.1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    counter-increment: steps;
}

.steps-list__item::before {
    content: counter(steps);
    position: absolute;
    top: 1.1rem;
    left: 1rem;
    display: grid;
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 50%;
    place-items: center;
    background: var(--gradient-action);
    color: var(--primary-foreground);
    font-family: var(--font-display);
    font-weight: 800;
}

.steps-list__title { margin-bottom: 0.35rem; }
.steps-list__text { color: var(--muted-foreground); }

/* ============================================
   TABLES - Accessible qualitative comparisons
   ============================================ */
.table-wrapper {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

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

.data-table__caption {
    padding: 1rem 1.25rem;
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
}

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

.data-table thead th {
    background: var(--surface-raised);
    color: #dffaff;
    font-family: var(--font-display);
}

.data-table tbody th {
    color: var(--foreground);
    font-weight: 700;
}

.data-table td {
    color: var(--muted-foreground);
}

.data-table .is-recommended {
    background: rgba(112, 244, 79, 0.1);
    box-shadow: inset 2px 0 0 rgba(112, 244, 79, 0.65), inset -2px 0 0 rgba(112, 244, 79, 0.65);
}

/* ============================================
   FAQ ACCORDION - Native disclosure, neon outline
   ============================================ */
.faq-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.85rem;
    align-items: start;
    interpolate-size: allow-keywords;
}

.faq-item::details-content {
    block-size: 0;
    overflow: hidden;
    opacity: 0;
    transition: block-size 220ms ease, opacity 180ms ease;
}

.faq-item[open]::details-content {
    block-size: auto;
    opacity: 1;
}

.faq-item {
    align-self: start;
    border: 1px solid #229cc5;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--surface-raised), var(--surface));
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.faq-item[open] {
    border-color: var(--secondary);
    box-shadow: var(--glow-cyan);
}

.faq-item__q {
    position: relative;
    min-height: 56px;
    padding: 1rem 3.25rem 1rem 1rem;
    color: var(--foreground);
    font-family: var(--font-display);
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

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

.faq-item__q::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 1rem;
    color: var(--secondary);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
    transform: translateY(-50%);
    transition: transform 180ms ease;
}

.faq-item[open] .faq-item__q::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item__q:focus-visible {
    border-radius: inherit;
    outline-offset: -4px;
}

.faq-item__a {
    padding: 0 1rem 1.15rem;
    border-top: 1px solid var(--border);
    color: var(--muted-foreground);
}

.faq-item__a > :first-child { margin-top: 1rem; }

/* ============================================
   MEDIA - Framed editorial imagery, never hero art
   ============================================ */
.media-figure {
    margin: 0;
}

.media-figure img {
    width: 100%;
    border: 1px solid var(--border-bright);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-lg), var(--glow-cyan);
}

.media-figure figcaption {
    margin-top: 0.65rem;
    color: var(--muted-foreground);
    font-size: 0.88rem;
}

/* ============================================
   QUOTES & FACTS - Editorial visual breaks
   ============================================ */
.pull-quote {
    position: relative;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    margin: 2rem 0;
    border-left: 5px solid var(--accent);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    background: var(--surface-raised);
}

.pull-quote::before {
    content: "“";
    position: absolute;
    top: -0.4rem;
    left: 0.45rem;
    color: var(--accent);
    font-family: Georgia, serif;
    font-size: 3rem;
}

.pull-quote p {
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: clamp(1.2rem, calc(1vw + 1rem), 1.65rem);
    line-height: 1.45;
}

.pull-quote cite {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    font-style: normal;
}

.fact-highlight {
    display: flex;
    min-width: 0;
    padding: 1.3rem;
    border: 1px solid var(--secondary);
    border-radius: var(--radius-lg);
    flex-direction: column;
    background: var(--surface-raised);
    box-shadow: var(--glow-cyan);
}

.fact-highlight__value {
    color: var(--primary);
    font-family: var(--font-display);
    font-size: clamp(2rem, calc(3vw + 1rem), 3.5rem);
    font-weight: 800;
    line-height: 1;
}

.fact-highlight__label {
    margin-top: 0.45rem;
    color: var(--foreground);
    font-weight: 700;
}

.fact-highlight__note {
    margin-top: 0.35rem;
    color: var(--muted-foreground);
    font-size: 0.88rem;
}

/* ============================================
   TRUST BADGES & SOCIAL PROOF - Neutral evidence containers
   ============================================ */
.trust-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
    margin: 0;
    list-style: none;
}

.trust-badge {
    display: flex;
    min-height: 84px;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    background: var(--surface);
    color: var(--muted-foreground);
    filter: saturate(0.72);
    text-align: center;
}

.trust-badge svg {
    width: 34px;
    color: #9bdceb;
}

/* ============================================
   RESPONSIBLE PLAY - Deliberately separated sober band
   ============================================ */
.age-notice {
    padding-block: var(--space-2xl);
    background: linear-gradient(100deg, #4a5063, #303a55);
}

.age-notice__inner {
    display: grid;
    width: min(100% - 2rem, 980px);
    margin-inline: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.age-notice__badge,
.age-mark__badge {
    display: inline-grid;
    border: 4px solid var(--destructive);
    border-radius: 50%;
    place-items: center;
    color: #fff4f4;
    font-family: var(--font-display);
    font-weight: 800;
}

.age-notice__badge {
    width: 92px;
    height: 92px;
    margin-inline: auto;
    font-size: 1.8rem;
    box-shadow: 0 0 18px rgba(255, 93, 99, 0.35);
}

.age-notice__title { margin-bottom: 0.5rem; }
.age-notice__text { color: #edf2fb; }

/* ============================================
   CTA BAND - Stadium floodlight conversion finish
   ============================================ */
.cta-band {
    position: relative;
    padding-block: var(--space-3xl);
    background: radial-gradient(circle at 10% 0%, rgba(73, 204, 255, 0.34), transparent 26%), radial-gradient(circle at 90% 0%, rgba(73, 204, 255, 0.34), transparent 26%), linear-gradient(180deg, #081a39, #061024);
}

.cta-band::before,
.cta-band::after {
    content: "";
    position: absolute;
    top: -5%;
    width: 120px;
    height: 210px;
    background: conic-gradient(from 172deg at 50% 0%, transparent 0 43%, rgba(96, 216, 255, 0.27) 48%, transparent 55%);
    pointer-events: none;
}

.cta-band::before { left: 0; }
.cta-band::after { right: 0; transform: scaleX(-1); }

.cta-band__inner {
    position: relative;
    z-index: 1;
    width: min(100% - 2rem, 760px);
    margin-inline: auto;
    text-align: center;
}

.cta-band__title { margin-bottom: 0.75rem; }
.cta-band__text { color: var(--muted-foreground); }
.cta-band__note { margin-top: 0.9rem; color: var(--subtle-foreground); font-size: 0.9rem; }

/* ============================================
   FOOTER - Dense information with payment categories
   ============================================ */
.site-footer {
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--secondary), var(--primary)) 1;
    background: var(--background-deep);
}

.site-footer__top {
    display: grid;
    width: min(100% - 2rem, var(--container));
    padding-block: 2.5rem;
    margin-inline: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
}

.site-footer__brand .site-brand__mark { font-size: 3.4rem; }
.site-footer__brand .site-brand__name { font-size: 1.5rem; }
.site-footer__brand .site-brand__sub { font-size: 0.9rem; }
.site-footer__claim { max-width: 34ch; margin-top: 1rem; color: var(--muted-foreground); }

.site-footer__title {
    margin-bottom: 0.9rem;
    font-size: 1rem;
}

.site-footer__list,
.payment-row {
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-footer__list {
    display: grid;
    gap: 0.45rem;
}

.site-footer__list a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: var(--muted-foreground);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.site-footer__list a:hover { color: #8cecff; }

.payment-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.payment-chip {
    display: inline-flex;
    min-height: 42px;
    padding: 0.55rem 0.7rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    align-items: center;
    gap: 0.45rem;
    background: var(--surface);
    color: var(--muted-foreground);
    font-size: 0.82rem;
}

.payment-chip svg {
    width: 23px;
    fill: none;
    stroke: var(--secondary);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-footer__legal {
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

.age-mark {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--foreground);
    font-weight: 700;
}

.age-mark__badge {
    width: 48px;
    height: 48px;
    border-width: 3px;
    flex: 0 0 48px;
}

.site-footer__bottom {
    display: flex;
    width: min(100% - 2rem, var(--container));
    padding-block: 1.1rem;
    border-top: 1px solid var(--border);
    margin-inline: auto;
    flex-direction: column;
    gap: 0.35rem;
    color: var(--muted-foreground);
    font-size: 0.82rem;
}

.site-footer__bottom p { margin: 0; }

/* ============================================
   FORMS - Dark accessible controls
   ============================================ */
.form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}

.form-field {
    display: grid;
    min-width: 0;
    gap: 0.45rem;
}

.form-field label {
    color: var(--foreground);
    font-weight: 700;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    min-height: 48px;
    padding: 0.75rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--foreground);
}

.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: #aebcd0; }

/* ============================================
   SCROLL REVEAL - Progressive enhancement only
   ============================================ */
.js-reveal [data-reveal]:not(.is-visible) {
    opacity: 0;
    transform: translateY(20px);
}

.js-reveal [data-reveal] {
    transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (min-width: 360px) and (max-width: 1023px) {
    .header-login { display: inline-flex; }
}

/* ============================================
   TABLET - Two-column content and roomier header
   ============================================ */
@media (min-width: 768px) {
    :root { --header-height: 80px; }

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

    .section { padding-block: 5.5rem; }
    .section--tight { padding-block: 3.5rem; }

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

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

    .overview-grid > :last-child:nth-child(odd) {
        grid-column: 1 / -1;
        width: calc(50% - 0.5rem);
        justify-self: center;
    }

    .split-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 3rem;
    }

    .hero__inner { padding-block: 3rem 4rem; }
    .hero__media { min-height: 380px; }

    .page-hero__inner { width: min(100% - 3rem, var(--container)); }
    .page-hero__media { min-height: 360px; }

    .tier-list { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .tier-badge:last-child:nth-child(odd) { grid-column: auto; width: auto; }

    .age-notice__inner {
        grid-template-columns: 110px minmax(0, 1fr);
        text-align: left;
    }

    .age-notice__badge { margin-inline: 0; }

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

    .site-footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        gap: 2rem;
    }

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

/* ============================================
   DESKTOP - Reference-matched wide stadium composition
   ============================================ */
@media (min-width: 1024px) {
    :root { --header-height: 92px; }

    .site-header {
        background: rgba(3, 9, 25, 0.96);
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
    }

    .site-header__inner {
        width: min(100% - 3rem, 1500px);
        gap: 1.25rem;
    }

    .nav-toggle { display: none; }

    .site-brand { margin-right: 0.35rem; }
    .site-brand__mark { font-size: 3.35rem; }
    .site-brand__name { font-size: 1.32rem; }
    .site-brand__sub { font-size: 0.82rem; }

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

    .primary-nav__list {
        max-width: none;
        margin: 0;
        flex-direction: row;
        align-items: center;
        gap: 0.2rem;
    }

    .primary-nav__link {
        position: relative;
        min-height: 48px;
        padding: 0.7rem 0.4rem;
        white-space: nowrap;
        font-size: 0.78rem;
    }

    .primary-nav__link::after {
        content: "";
        position: absolute;
        right: 0.65rem;
        bottom: 0.15rem;
        left: 0.65rem;
        height: 2px;
        border-radius: var(--radius-pill);
        background: var(--secondary);
        box-shadow: 0 0 10px var(--secondary);
        transform: scaleX(0);
        transition: transform 180ms ease;
    }

    .primary-nav__link:hover,
    .primary-nav__link.is-active {
        background: transparent;
    }

    .primary-nav__link:hover::after,
    .primary-nav__link.is-active::after {
        transform: scaleX(1);
    }

    .primary-nav__mobile-only { display: none; }
    .header-login { display: none; }
    .header-cta { padding-inline: 0.9rem; }

    .hero__inner {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 4rem;
    }

    .hero__media {
        min-height: 620px;
        order: 0;
    }

    .hero__art {
        width: min(100%, 720px);
        max-height: 75vh;
    }

    .hero__content {
        order: 1;
        text-align: left;
    }

    .hero__text {
        margin-inline: 0;
        font-size: 1.16rem;
    }

    .hero__actions { justify-content: flex-start; }

    .page-hero__inner {
        min-height: 680px;
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: 4rem;
    }

    .page-hero__media { min-height: 520px; }
    .page-hero__art { max-height: 620px; }
    .page-hero__content { text-align: left; }
    .page-hero__text { margin-inline: 0; font-size: 1.12rem; }

    .feature-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .overview-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .overview-grid > :last-child:nth-child(odd) { grid-column: auto; width: auto; }
    .card-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .card-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .trust-badges { grid-template-columns: repeat(4, minmax(0, 1fr)); }

    .site-footer__top {
        grid-template-columns: 1.1fr 0.8fr 1.25fr 1.3fr;
        gap: 2.5rem;
    }
}

@media (min-width: 1280px) {
    .site-brand { margin-right: 1rem; }
    .site-brand__mark { font-size: 4.6rem; }
    .site-brand__name { font-size: 1.8rem; }
    .site-brand__sub { font-size: 1.05rem; }
    .primary-nav__link { padding-inline: 0.85rem; font-size: 0.94rem; }
    .site-header__actions { gap: 0.9rem; }
    .header-login { display: inline-flex; }
    .header-cta { padding-inline: 1.55rem; }
}

/* ============================================
   NARROW MOBILE - Preserve 320px header composition
   ============================================ */
@media (max-width: 359px) {
    .site-header__inner { width: calc(100% - 0.75rem); gap: 0.25rem; }
    .site-brand__mark { font-size: 2.2rem; }
    .site-brand__name { font-size: 0.92rem; }
    .site-brand__sub { font-size: 0.67rem; }
    .header-cta { padding-inline: 0.7rem; font-size: 0.78rem; }
}

/* ============================================
   REDUCED MOTION & PRINT - Respect user preferences
   ============================================ */
@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 !important;
        transform: none !important;
    }
}

@media print {
    .site-header,
    .site-footer,
    .cta-band,
    .btn,
    .nav-toggle { display: none !important; }
    body { background: #fff; color: #111; }
    h1, h2, h3, h4, p, li, td, th { color: #111; }
    a { color: #111; }
}
