/*
 * Zoccer Casino - Designsystem
 * Dunkle Stadionflächen, Spielfeldgrün und Flutlicht-Limette.
 */

:root {
    color-scheme: dark;
    --background: #090b0a;
    --background-elevated: #101310;
    --surface: #151815;
    --surface-strong: #1b1f1b;
    --surface-soft: #222722;
    --foreground: #f5f7f2;
    --muted-foreground: #b9c0b8;
    --subtle-foreground: #a7aea6;
    --primary: #baff24;
    --primary-hover: #d0ff57;
    --primary-foreground: #0a0c0b;
    --secondary: #45d66f;
    --secondary-foreground: #071109;
    --accent: #f2d431;
    --accent-foreground: #171300;
    --destructive: #ff6b6b;
    --destructive-foreground: #180303;
    --border: #3d453d;
    --border-strong: #91cb2b;
    --border-soft: #2a302a;
    --focus: #e2ff77;
    --stadium-blue: #15293d;
    --success: #70e796;
    --warning: #ffd95a;
    --header-height: 72px;
    --container: 1280px;
    --reading: 76ch;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 999px;
    --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.24);
    --shadow-lg: 0 22px 60px rgba(0, 0, 0, 0.42);
    --glow: 0 0 0 1px rgba(186, 255, 36, 0.12), 0 16px 50px rgba(123, 210, 35, 0.09);
    --space-2xs: 0.35rem;
    --space-xs: 0.6rem;
    --space-sm: 0.9rem;
    --space-md: 1.25rem;
    --space-lg: 1.75rem;
    --space-xl: 2.5rem;
    --space-2xl: 3.75rem;
    --space-3xl: 5.5rem;
    --font-display: "Archivo", sans-serif;
    --font-body: "Inter", sans-serif;
}

/* ============================================
   RESET & OVERFLOW SAFETY
   Predictable sizing and resilient media/text.
   ============================================ */

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

html {
    min-width: 320px;
    scroll-behavior: smooth;
    background: var(--background);
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 50% -15%, rgba(89, 160, 47, 0.14), transparent 31rem),
        linear-gradient(180deg, var(--background) 0%, #0c0f0d 55%, var(--background) 100%);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.68;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

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

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

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

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

a[href^="http"] {
    word-break: break-all;
}

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

section,
.hero,
.cta-band {
    overflow: clip;
}

details {
    height: fit-content;
}

[hidden] {
    display: none !important;
}

/* ============================================
   TYPOGRAPHY
   Dense, confident sports-editorial hierarchy.
   ============================================ */

h1,
h2,
h3,
h4,
p,
ul,
ol,
dl,
blockquote,
figure {
    margin-top: 0;
}

h1,
h2,
h3,
h4,
.section-title,
.footer-heading {
    color: var(--foreground);
    font-family: var(--font-display);
    font-weight: 760;
    letter-spacing: -0.025em;
    line-height: 1.12;
}

h1 {
    margin-bottom: var(--space-md);
    font-size: clamp(2.15rem, calc(7vw + 0.2rem), 4rem);
}

h2,
.section-title {
    margin-bottom: var(--space-md);
    font-size: clamp(1.75rem, calc(3vw + 0.8rem), 3rem);
}

h3 {
    margin-bottom: var(--space-sm);
    font-size: clamp(1.28rem, calc(1.2vw + 1rem), 1.75rem);
}

h4 {
    margin-bottom: var(--space-xs);
    font-size: 1.1rem;
}

p {
    margin-bottom: 1.1em;
    color: var(--muted-foreground);
}

ul,
ol {
    padding-left: 1.35rem;
}

strong {
    color: var(--foreground);
}

small,
.small {
    font-size: 0.875rem;
}

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

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: var(--space-sm);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 1.8rem;
    height: 2px;
    background: var(--primary);
    content: "";
}

:where(p, li, blockquote, figcaption, dd, .prose, .seo-text, article) a:not([class]) {
    color: var(--primary);
    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: var(--primary-hover);
}

/* ============================================
   ACCESSIBILITY
   Focus states, skip link and reduced motion.
   ============================================ */

.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.75rem 1rem;
    border-radius: var(--radius-sm);
    background: var(--primary);
    color: var(--primary-foreground);
    font-weight: 700;
    transform: translateY(-150%);
}

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

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

/* ============================================
   LAYOUT PRIMITIVES
   Shared widths, vertical rhythm and grids.
   ============================================ */

.container {
    width: min(calc(100% - 1.5rem), var(--container));
    margin-inline: auto;
}

.container--narrow {
    width: min(calc(100% - 1.5rem), 920px);
    margin-inline: auto;
}

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

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

.page-section--muted {
    background: linear-gradient(180deg, rgba(31, 36, 31, 0.72), rgba(16, 19, 16, 0.78));
    border-block: 1px solid var(--border-soft);
}

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

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

.section-lead {
    max-width: var(--reading);
    margin-bottom: 0;
    font-size: clamp(1rem, calc(0.35vw + 0.95rem), 1.16rem);
}

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

.prose > :last-child,
.seo-text > :last-child {
    margin-bottom: 0;
}

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

.stack > * + * {
    margin-top: var(--space-md);
}

.cluster {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    align-items: center;
}

/* ============================================
   HEADER & NAVIGATION
   Opaque mobile drawer; compact desktop bar.
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: var(--header-height);
    border-bottom: 1px solid var(--border-soft);
    background: var(--background);
}

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

.site-brand {
    display: inline-flex;
    min-width: 0;
    color: var(--foreground);
    text-decoration: none;
    align-items: center;
    gap: 0.55rem;
    flex: 0 1 auto;
}

.site-brand__mark {
    display: grid;
    width: 2rem;
    flex: 0 0 2rem;
    color: var(--primary);
    place-items: center;
}

.site-brand__text {
    display: flex;
    min-width: 0;
    flex-direction: column;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 650;
    letter-spacing: -0.02em;
    line-height: 0.95;
    text-transform: uppercase;
}

.site-brand__text strong {
    color: var(--foreground);
    font-size: 1.17rem;
    font-weight: 850;
}

.site-brand__text span {
    color: var(--primary);
}

.primary-nav {
    display: none;
}

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

.primary-nav__list {
    display: flex;
    padding: 0;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    list-style: none;
}

.primary-nav__link {
    display: flex;
    min-height: 52px;
    padding: 0.8rem 0.5rem;
    border-bottom: 1px solid var(--border-soft);
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    align-items: center;
}

.primary-nav__link:hover,
.primary-nav__link[aria-current="page"] {
    color: var(--primary);
}

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

.header-actions__login {
    display: inline-flex;
}

.nav-toggle {
    position: relative;
    z-index: 1001;
    display: inline-flex;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

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

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

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

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

/* ============================================
   BUTTONS & LINKS
   Thumb-friendly conversion controls.
   ============================================ */

.btn {
    display: inline-flex;
    min-height: 48px;
    padding: 0.78rem 1.3rem;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 780;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

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

.btn--primary {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 9px 26px rgba(186, 255, 36, 0.14);
}

.btn--primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 12px 34px rgba(186, 255, 36, 0.22);
}

.btn--outline,
.btn--ghost {
    border-color: var(--border-strong);
    background: transparent;
    color: var(--primary);
}

.btn--outline:hover,
.btn--ghost:hover {
    border-color: var(--primary);
    background: rgba(186, 255, 36, 0.08);
}

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

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

.link-arrow {
    display: inline-flex;
    color: var(--primary);
    font-weight: 750;
    text-underline-offset: 0.18em;
    align-items: center;
    gap: 0.45rem;
}

.link-arrow::after {
    content: "→";
}

/* ============================================
   BREADCRUMBS
   Compact wayfinding for nested game pages.
   ============================================ */

.breadcrumb {
    padding-block: var(--space-md) 0;
}

.breadcrumb__list {
    display: flex;
    padding: 0;
    margin: 0;
    color: var(--subtle-foreground);
    font-size: 0.875rem;
    list-style: none;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.breadcrumb__item:not(:last-child)::after {
    margin-left: 0.4rem;
    color: var(--border-strong);
    content: "/";
}

.breadcrumb a {
    color: var(--muted-foreground);
}

/* ============================================
   HERO SYSTEM
   Integrated stadium scene with foreground art.
   Page templates provide unique image assets.
   ============================================ */

.hero {
    position: relative;
    min-height: calc(100svh - var(--header-height));
    background:
        linear-gradient(180deg, rgba(5, 8, 8, 0.05) 20%, rgba(5, 8, 8, 0.84) 78%, var(--background) 100%),
        radial-gradient(circle at 50% 16%, rgba(222, 255, 194, 0.2), transparent 18rem),
        linear-gradient(180deg, #0f2334 0%, #132118 57%, #0d1c0f 100%);
}

.hero::before,
.cta-band::before {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 8% 18%, rgba(255, 255, 255, 0.68) 0 3px, transparent 4px),
        radial-gradient(circle at 92% 18%, rgba(255, 255, 255, 0.68) 0 3px, transparent 4px);
    background-size: 12px 12px, 12px 12px;
    opacity: 0.24;
    pointer-events: none;
    content: "";
}

.hero::after,
.cta-band::after {
    position: absolute;
    right: -10%;
    bottom: -28%;
    left: -10%;
    height: 52%;
    border-top: 2px solid rgba(255, 255, 255, 0.22);
    border-radius: 50% 50% 0 0;
    background:
        linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, 0.22) 50%, transparent 50.2%),
        repeating-linear-gradient(90deg, rgba(31, 112, 48, 0.3) 0 8%, rgba(52, 139, 61, 0.24) 8% 16%);
    pointer-events: none;
    content: "";
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    width: min(100%, 1500px);
    min-height: inherit;
    margin-inline: auto;
    grid-template-columns: minmax(0, 1fr);
}

.hero__art {
    position: relative;
    min-height: 54svh;
    align-self: end;
}

.hero__art img[data-visual-role="hero-foreground"] {
    position: absolute;
    right: 50%;
    bottom: -1px;
    width: min(116%, 650px);
    max-height: 100%;
    object-fit: contain;
    object-position: center bottom;
    transform: translateX(50%);
}

.hero__content {
    position: relative;
    z-index: 2;
    width: calc(100% - 1.5rem);
    margin: -1rem auto var(--space-xl);
    padding: var(--space-lg);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    background: rgba(12, 14, 13, 0.96);
    box-shadow: var(--shadow-lg), var(--glow);
}

.hero__content p {
    max-width: 65ch;
}

.hero__meta {
    display: flex;
    padding: 0;
    margin: var(--space-lg) 0;
    list-style: none;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.hero__meta li {
    padding: 0.48rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    background: var(--surface-soft);
    color: var(--foreground);
    font-size: 0.875rem;
    font-weight: 650;
}

/* ============================================
   CARDS & MEDIA PANELS
   Dark bordered containers matching the reference.
   ============================================ */

.card,
.info-card,
.category-card,
.media-panel,
.offer-tile,
.testimonial-card {
    min-width: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgba(29, 33, 29, 0.98), rgba(16, 19, 16, 0.98));
    box-shadow: var(--shadow-sm);
}

.card,
.info-card,
.testimonial-card {
    padding: var(--space-lg);
}

.card--accent,
.card-featured,
.info-card--accent {
    border-color: var(--border-strong);
    box-shadow: var(--glow);
}

.category-card {
    overflow: hidden;
}

.category-card__media {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.category-card__body {
    padding: var(--space-lg);
}

.category-card__title {
    color: var(--foreground);
}

.media-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    overflow: hidden;
}

.media-panel__media {
    min-height: 240px;
    background: var(--stadium-blue);
}

.media-panel__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-panel__body {
    padding: var(--space-lg);
}

.media-panel__title {
    color: var(--foreground);
}

/* ============================================
   FACTS, STATS & BONUS TILES
   Concrete numbers get strong visual priority.
   ============================================ */

.fact-table {
    padding: var(--space-md);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, var(--surface-strong), var(--surface));
    box-shadow: var(--glow);
}

.fact-table__caption {
    color: var(--foreground);
    font-family: var(--font-display);
    font-weight: 740;
}

.fact-table__list {
    margin: 0;
}

.fact-table__row {
    display: grid;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
    grid-template-columns: minmax(0, 1fr) auto;
    gap: var(--space-md);
    align-items: baseline;
}

.fact-table__row:last-child {
    border-bottom: 0;
}

.fact-table dt {
    color: var(--muted-foreground);
}

.fact-table dd {
    margin: 0;
    color: var(--foreground);
    font-family: var(--font-display);
    font-weight: 780;
    text-align: right;
}

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

.offer-tile,
.stat-highlight {
    min-width: 0;
    padding: var(--space-lg) var(--space-md);
    text-align: center;
}

.offer-tile--featured {
    border-color: var(--primary);
    box-shadow: var(--glow);
}

.offer-tile__value,
.stat-highlight__value {
    display: block;
    color: var(--primary);
    font-family: var(--font-display);
    font-size: clamp(2rem, calc(2vw + 1.45rem), 3.5rem);
    font-weight: 850;
    letter-spacing: -0.04em;
    line-height: 1;
}

.offer-tile__label,
.stat-highlight__label {
    display: block;
    margin-top: 0.55rem;
    color: var(--foreground);
    font-weight: 750;
}

.offer-tile__note,
.stat-highlight__note {
    display: block;
    margin: 0.55rem 0 0;
    color: var(--subtle-foreground);
    font-size: 0.875rem;
}

.stat-highlight {
    border-left: 3px solid var(--primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    background: var(--surface);
    text-align: left;
}

/* ============================================
   TABLES
   High-density data with keyboard scroll support.
   ============================================ */

.table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

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

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

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

.data-table thead th {
    background: var(--primary);
    color: var(--primary-foreground);
    font-family: var(--font-display);
    font-weight: 800;
    white-space: nowrap;
}

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

.data-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.025);
}

.data-table .recommended,
.comparison-table .recommended {
    background: rgba(186, 255, 36, 0.11);
    color: var(--foreground);
    box-shadow: inset 2px 0 var(--primary), inset -2px 0 var(--primary);
}

.table-note {
    margin-top: var(--space-sm);
    color: var(--subtle-foreground);
    font-size: 0.875rem;
}

/* ============================================
   SUMMARY, CALLOUT & QUOTE PATTERNS
   Visual breaks for long commercial copy.
   ============================================ */

.tldr,
.callout {
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    background: var(--surface-strong);
}

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

.tldr__title,
.callout__title {
    margin-bottom: var(--space-sm);
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 800;
}

.tldr__list {
    padding-left: 1.25rem;
    margin-bottom: 0;
}

.tldr__list li::marker {
    color: var(--primary);
}

.callout {
    border-left: 4px solid var(--secondary);
}

.callout--warning {
    border-left-color: var(--warning);
    background: #24200f;
}

.callout--warning .callout__title {
    color: var(--warning);
}

.callout--danger {
    border-left-color: var(--destructive);
    background: #251313;
}

.callout--danger .callout__title {
    color: #ff9292;
}

.callout__text {
    margin-bottom: 0;
}

.pull-quote {
    position: relative;
    max-width: 900px;
    padding: var(--space-xl) var(--space-lg) var(--space-lg);
    margin-inline: 0;
    border-block: 1px solid var(--border-strong);
}

.pull-quote::before {
    position: absolute;
    top: -0.15em;
    left: 0;
    color: var(--primary);
    font-family: Georgia, serif;
    font-size: 4rem;
    line-height: 1;
    content: "“";
}

.pull-quote p {
    margin-bottom: var(--space-sm);
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: clamp(1.35rem, calc(1.3vw + 1rem), 2rem);
    font-weight: 680;
    line-height: 1.35;
}

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

/* ============================================
   STEPS & CHECKLISTS
   Actionable process explanations.
   ============================================ */

.steps {
    padding: 0;
    margin: 0;
    counter-reset: zoccer-step;
    list-style: none;
}

.steps__item {
    position: relative;
    padding: 0 0 var(--space-lg) 4rem;
    counter-increment: zoccer-step;
}

.steps__item::before {
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    background: var(--surface);
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 850;
    content: counter(zoccer-step);
    place-items: center;
}

.steps__item:not(:last-child)::after {
    position: absolute;
    top: 2.8rem;
    bottom: 0;
    left: 1.36rem;
    width: 1px;
    background: var(--border);
    content: "";
}

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

/* ============================================
   TRUST, PAYMENTS & BADGES
   Compact proof rows without unsupported ratings.
   ============================================ */

.trust-row,
.badge-row,
.payment-row,
.licence-row {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.trust-badge {
    min-width: 0;
    padding: var(--space-md);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface-soft);
    flex: 1 1 190px;
}

.trust-badge__title,
.trust-badge__text {
    display: block;
}

.trust-badge__title {
    color: var(--foreground);
    font-family: var(--font-display);
    font-weight: 780;
}

.trust-badge__text {
    margin-top: 0.3rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.badge-row {
    align-items: stretch;
}

.badge-chip,
.payment-chip,
.licence-chip {
    display: inline-flex;
    min-height: 44px;
    padding: 0.65rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--foreground);
    font-size: 0.875rem;
    font-weight: 700;
    align-items: center;
    justify-content: center;
}

.badge-chip {
    background: var(--surface-soft);
}

.payment-chip {
    min-width: 105px;
    background: #f3f5f1;
    color: #151815;
}

.licence-chip {
    background: var(--surface-soft);
}

.licence-chip--age,
.age-mark {
    border-color: var(--foreground);
    border-radius: 50%;
    background: var(--foreground);
    color: var(--background);
}

/* ============================================
   FAQ / NATIVE DISCLOSURES
   Intrinsic-height one-column accordion.
   ============================================ */

.faq-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-sm);
    align-items: start;
}

.faq-item {
    align-self: start;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    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[open] {
    border-color: var(--border-strong);
}

.faq-item__q {
    position: relative;
    min-height: 58px;
    padding: 1rem 3.2rem 1rem 1.1rem;
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 760;
    line-height: 1.35;
    cursor: pointer;
    list-style: none;
}

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

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

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

.faq-item__q:focus-visible {
    border-radius: var(--radius-md);
    outline-offset: 0;
}

.faq-item__a {
    padding: 0 1.1rem 1.1rem;
    border-top: 1px solid var(--border-soft);
}

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

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

/* ============================================
   CTA BAND
   Stadium finale with centered conversion action.
   ============================================ */

.cta-band {
    position: relative;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(7, 12, 11, 0.38), rgba(7, 12, 11, 0.94)),
        radial-gradient(circle at 10% 10%, rgba(217, 255, 181, 0.38), transparent 21rem),
        radial-gradient(circle at 90% 10%, rgba(217, 255, 181, 0.38), transparent 21rem),
        var(--stadium-blue);
    box-shadow: var(--shadow-lg), var(--glow);
}

.cta-band__inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
    padding: var(--space-2xl) var(--space-lg);
    margin-inline: auto;
    text-align: center;
}

.cta-band__title {
    margin-bottom: var(--space-sm);
}

.cta-band__text {
    max-width: 62ch;
    margin-inline: auto;
}

.cta-band .btn {
    width: min(100%, 480px);
    margin-top: var(--space-sm);
}

.cta-band__note {
    display: flex;
    margin: var(--space-md) 0 0;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
}

.age-mark {
    display: inline-grid;
    width: 2.3rem;
    height: 2.3rem;
    flex: 0 0 2.3rem;
    font-weight: 850;
    place-items: center;
}

/* ============================================
   SOCIAL PROOF PATTERN
   Available only for supplied, evidence-backed quotes.
   ============================================ */

.testimonial-card blockquote {
    margin: 0;
}

.testimonial-card blockquote p {
    color: var(--foreground);
    font-size: 1.08rem;
}

.testimonial-card cite {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    font-style: normal;
}

/* ============================================
   FOOTER
   Crawlable content links, payments and 18+ notice.
   ============================================ */

.site-footer {
    padding-block: var(--space-2xl) var(--space-lg);
    border-top: 1px solid var(--border-soft);
    background: #070908;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-xl);
}

.footer-col--brand p {
    max-width: 56ch;
}

.footer-logo {
    display: block;
    margin-bottom: var(--space-sm);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 850;
}

.footer-heading {
    margin-bottom: var(--space-sm);
    font-size: 1rem;
    letter-spacing: 0;
}

.footer-links {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links li + li {
    margin-top: 0.55rem;
}

.footer-links a {
    color: var(--muted-foreground);
    text-decoration: underline;
    text-decoration-color: var(--border);
    text-underline-offset: 0.2em;
}

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

.footer-note,
.footer-copy {
    color: var(--subtle-foreground);
    font-size: 0.875rem;
}

.footer-strip,
.footer-legal {
    padding-top: var(--space-xl);
    margin-top: var(--space-xl);
    border-top: 1px solid var(--border-soft);
}

.footer-legal p {
    max-width: 105ch;
    font-size: 0.875rem;
}

.footer-copy {
    margin-bottom: 0;
}

/* ============================================
   SCROLL REVEAL ENHANCEMENT
   Visible by default; JS scopes the initial state.
   ============================================ */

.js-reveal :is(.card, .info-card, .category-card, .media-panel, .offer-tile, .stat-highlight, .callout, .faq-item, .testimonial-card)[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.js-reveal :is(.card, .info-card, .category-card, .media-panel, .offer-tile, .stat-highlight, .callout, .faq-item, .testimonial-card)[data-reveal].is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   TABLET - 768px+
   More columns and increased breathing room.
   ============================================ */

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

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

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

    .site-header__inner {
        width: min(calc(100% - 2rem), 1460px);
    }

    .site-brand__mark {
        width: 2.5rem;
        flex-basis: 2.5rem;
    }

    .site-brand__text {
        font-size: 0.9rem;
    }

    .site-brand__text strong {
        font-size: 1.45rem;
    }

    .header-actions__login {
        display: inline-flex;
    }

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

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

    .media-panel {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        align-items: stretch;
    }

    .media-panel--reverse .media-panel__media {
        order: 2;
    }

    .media-panel__body {
        display: flex;
        padding: var(--space-xl);
        flex-direction: column;
        justify-content: center;
    }

    .fact-table {
        padding: var(--space-lg);
    }

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

/* ============================================
   DESKTOP - 1024px+
   Wide hero split and inline primary navigation.
   ============================================ */

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

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

    .site-brand {
        flex: 0 0 auto;
    }

    .site-brand__mark {
        width: 3.2rem;
        flex-basis: 3.2rem;
    }

    .site-brand__text {
        font-size: 1rem;
    }

    .site-brand__text strong {
        font-size: 1.75rem;
    }

    .primary-nav,
    .primary-nav.is-open {
        position: static;
        inset: auto;
        z-index: auto;
        display: flex;
        max-width: none;
        padding: 0;
        overflow: visible;
        background: transparent;
        flex: 1 1 auto;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .primary-nav__list {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: clamp(0.5rem, 1.6vw, 1.8rem);
    }

    .primary-nav__link {
        position: relative;
        min-height: var(--header-height);
        padding: 0 0.2rem;
        border-bottom: 0;
        font-size: clamp(0.9rem, 1.15vw, 1.12rem);
        white-space: nowrap;
    }

    .primary-nav__link::after {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        height: 3px;
        background: var(--primary);
        content: "";
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 180ms ease;
    }

    .primary-nav__link:hover::after,
    .primary-nav__link[aria-current="page"]::after {
        transform: scaleX(1);
    }

    .nav-toggle {
        display: none;
    }

    .header-actions {
        gap: 0.7rem;
    }

    .hero {
        min-height: min(810px, calc(100svh - var(--header-height)));
    }

    .hero__inner {
        grid-template-columns: minmax(0, 1fr) minmax(520px, 0.92fr);
        align-items: center;
    }

    .hero__art {
        min-height: inherit;
        order: 0;
    }

    .hero__art img[data-visual-role="hero-foreground"] {
        right: -2%;
        width: min(102%, 760px);
        max-height: 94%;
        transform: none;
    }

    .hero__content {
        width: auto;
        max-width: 650px;
        margin: var(--space-xl) var(--space-xl) var(--space-xl) 0;
        padding: clamp(2rem, 3.2vw, 3.5rem);
    }

    .hero__content h1 {
        font-size: clamp(2.7rem, 3.8vw, 4.45rem);
    }

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

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

    .cards-grid--3 > :last-child:nth-child(3n + 2) {
        grid-column: span 2;
    }

    .cards-grid--4 > :last-child:nth-child(4n + 2),
    .cards-grid--4 > :nth-last-child(2):nth-child(4n + 1) {
        grid-column: span 2;
    }

    .category-card__body,
    .card,
    .info-card,
    .testimonial-card {
        padding: var(--space-xl);
    }

    .footer-grid {
        gap: var(--space-2xl);
    }
}

/* ============================================
   WIDE DESKTOP - 1280px+
   Reference-scale containers and stronger rhythm.
   ============================================ */

@media (min-width: 1280px) {
    .container {
        width: min(calc(100% - 5rem), var(--container));
    }

    .page-section {
        padding-block: 6.5rem;
    }

    .hero__content {
        margin-right: 4rem;
    }
}

/* ============================================
   VERY NARROW MOBILE
   Preserve readable brand and 44px controls at 320px.
   ============================================ */

@media (max-width: 767px) {
    .site-brand__mark {
        display: none;
    }
}

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

    .header-actions__login {
        display: none;
    }

    .site-brand__text strong {
        font-size: 1.08rem;
    }

    .header-actions .btn--sm {
        padding-inline: 0.72rem;
        font-size: 0.84rem;
    }

    .hero__content {
        width: calc(100% - 1rem);
        padding: var(--space-md);
    }

    .offer-grid,
    .stats-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@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 :is(.card, .info-card, .category-card, .media-panel, .offer-tile, .stat-highlight, .callout, .faq-item, .testimonial-card)[data-reveal] {
        opacity: 1;
        transform: none;
    }
}
