/*
 * ZOCCER CASINO DESIGN SYSTEM
 * Dark stadium interface with vivid lime accents, rain-night atmosphere,
 * technical card surfaces and mobile-first responsive behavior.
 */

:root {
    color-scheme: dark;

    --background: #0b0f0c;
    --background-deep: #070a08;
    --surface: #111713;
    --surface-raised: #172019;
    --surface-soft: #1c251e;
    --surface-glass: rgba(17, 23, 19, 0.94);
    --foreground: #f4f7f2;
    --foreground-strong: #ffffff;
    --muted: #202a22;
    --muted-foreground: #bac5bb;
    --subtle-foreground: #a4b0a6;
    --border: #344038;
    --border-strong: #526158;

    --primary: #b4f04a;
    --primary-hover: #c8ff65;
    --primary-active: #9fdc34;
    --primary-foreground: #0a1008;
    --secondary: #203226;
    --secondary-foreground: #f4f7f2;
    --accent: #e7ff5c;
    --accent-foreground: #101407;
    --gold: #f1bd42;
    --gold-soft: #ffd971;
    --destructive: #b92f3f;
    --destructive-foreground: #ffffff;
    --success: #6fcf5d;
    --warning: #f0b94e;
    --info: #65bde4;

    --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 18px 50px rgba(0, 0, 0, 0.34);
    --shadow-lg: 0 28px 80px rgba(0, 0, 0, 0.46);
    --glow-primary: 0 0 28px rgba(180, 240, 74, 0.24);

    --radius-sm: 0.625rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-pill: 999px;

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

    --font-display: "Archivo", sans-serif;
    --font-body: "Inter", sans-serif;
    --header-height: 4.5rem;
    --container: 75rem;
    --content: 48rem;
    --transition-fast: 160ms ease;
    --transition-base: 260ms ease;
}

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

*,
*::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);
}

body {
    min-width: 20rem;
    min-height: 100vh;
    margin: 0;
    overflow-x: clip;
    background:
        radial-gradient(circle at 50% -12rem, rgba(49, 94, 67, 0.2), transparent 34rem),
        linear-gradient(180deg, var(--background-deep) 0%, var(--background) 28%, #0c1110 100%);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(115deg, transparent 0 48%, rgba(255, 255, 255, 0.018) 49%, transparent 50%),
        radial-gradient(circle at 20% 30%, rgba(180, 240, 74, 0.035), transparent 22rem);
    background-size: 26px 36px, auto;
    content: "";
    pointer-events: none;
}

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

img {
    display: block;
}

[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-"],
.table-wrap {
    max-width: 100%;
    overflow-x: auto;
}

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

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

details {
    height: fit-content;
}

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

section {
    position: relative;
    overflow: clip;
}

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

/* ============================================
   TYPOGRAPHY - Strong condensed stadium hierarchy
   ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 var(--space-md);
    color: var(--foreground-strong);
    font-family: var(--font-display);
    font-weight: 750;
    line-height: 1.12;
    letter-spacing: -0.025em;
    text-wrap: balance;
}

h1 {
    font-size: clamp(2.35rem, calc(7vw + 0.5rem), 4.5rem);
}

h2 {
    font-size: clamp(1.8rem, calc(4vw + 0.5rem), 3rem);
}

h3 {
    font-size: clamp(1.2rem, calc(1.8vw + 0.75rem), 1.65rem);
}

h4 {
    font-size: 1.125rem;
}

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

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

p:last-child {
    margin-bottom: 0;
}

a {
    color: var(--primary);
    text-underline-offset: 0.16em;
    transition: color var(--transition-fast), border-color var(--transition-fast), background-color var(--transition-fast), transform var(--transition-fast);
}

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

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

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

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

.prose,
.seo-text {
    width: min(100%, var(--content));
}

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

.lead {
    max-width: 44rem;
    color: var(--muted-foreground);
    font-size: clamp(1.05rem, calc(0.7vw + 0.95rem), 1.25rem);
    line-height: 1.65;
}

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

.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: var(--space-sm);
    left: var(--space-sm);
    z-index: 2000;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    background: var(--primary);
    color: var(--primary-foreground);
    font-weight: 800;
    transform: translateY(-180%);
}

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

/* ============================================
   LAYOUT PRIMITIVES - Consistent page rhythm
   ============================================ */

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

.narrow {
    width: min(100%, var(--content));
    margin-inline: auto;
}

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

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

.page-section--raised {
    background:
        linear-gradient(135deg, rgba(180, 240, 74, 0.035), transparent 42%),
        var(--surface);
    border-block: 1px solid var(--border);
}

.page-section--stadium {
    background:
        radial-gradient(ellipse at 15% 0%, rgba(130, 214, 255, 0.18), transparent 18rem),
        radial-gradient(ellipse at 85% 0%, rgba(130, 214, 255, 0.18), transparent 18rem),
        linear-gradient(180deg, #121b1d 0%, #0d1310 62%, #142117 100%);
}

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

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

.section-header {
    max-width: 52rem;
    margin-bottom: var(--space-xl);
}

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

.section-header__kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.section-header__title {
    margin-bottom: var(--space-sm);
}

.section-header__intro {
    max-width: 46rem;
    margin-bottom: 0;
    color: var(--muted-foreground);
    font-size: 1.075rem;
}

.section-header--center .section-header__intro {
    margin-inline: auto;
}

/* ============================================
   HEADER & NAVIGATION - Opaque mobile drawer
   ============================================ */

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

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

.site-brand {
    display: inline-flex;
    flex: 0 1 auto;
    align-items: center;
    gap: var(--space-xs);
    min-width: 0;
    color: var(--foreground-strong);
    font-family: var(--font-display);
    line-height: 1;
    text-decoration: none;
}

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

.site-brand__mark {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    filter: drop-shadow(0 0 12px rgba(180, 240, 74, 0.18));
}

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

.site-brand__text strong {
    overflow: hidden;
    font-size: 1.13rem;
    font-style: normal;
    line-height: 1;
    text-overflow: ellipsis;
}

.site-brand__text em {
    margin-top: 0.16rem;
    color: var(--primary);
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.primary-nav {
    display: none;
}

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

.primary-nav__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-xs);
    padding: 0;
    margin: 0;
    list-style: none;
}

.primary-nav__list a {
    display: flex;
    align-items: center;
    min-height: 3rem;
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid var(--border);
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 750;
    text-decoration: none;
}

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

.primary-nav__drawer-actions {
    display: grid;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
}

.header-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: var(--space-xs);
}

.header-actions__login {
    display: none;
}

.menu-toggle {
    position: relative;
    z-index: 1001;
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0.65rem;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--foreground);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: auto;
    border-radius: var(--radius-pill);
    background: currentColor;
    transition: transform var(--transition-base), opacity var(--transition-fast);
}

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

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

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

/* ============================================
   BUTTONS - High contrast conversion actions
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    min-height: 3rem;
    padding: 0.8rem 1.35rem;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.btn--primary {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: var(--primary-foreground);
    box-shadow: var(--glow-primary);
}

.btn--primary:hover {
    border-color: var(--primary-hover);
    background: linear-gradient(135deg, var(--primary-hover), var(--accent));
    color: var(--primary-foreground);
    transform: translateY(-2px);
}

.btn--primary:active {
    background: var(--primary-active);
    transform: translateY(0);
}

.btn--secondary {
    border-color: var(--border-strong);
    background: var(--secondary);
    color: var(--secondary-foreground);
}

.btn--secondary:hover,
.btn--ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
}

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

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

.btn--lg {
    min-height: 3.5rem;
    padding-inline: 1.75rem;
    font-size: 1.08rem;
}

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

/* ============================================
   HERO SYSTEM - Integrated stadium artwork
   ============================================ */

.page-hero {
    isolation: isolate;
    min-height: calc(100svh - var(--header-height));
    background:
        radial-gradient(circle at 18% 8%, rgba(200, 237, 255, 0.2), transparent 13rem),
        radial-gradient(circle at 85% 9%, rgba(200, 237, 255, 0.18), transparent 13rem),
        linear-gradient(180deg, #13212a 0%, #0d1518 48%, #122215 78%, #0a0f0b 100%);
}

.page-hero::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        repeating-linear-gradient(105deg, transparent 0 17px, rgba(205, 231, 239, 0.06) 18px, transparent 19px 32px),
        linear-gradient(180deg, transparent 65%, rgba(81, 151, 83, 0.14));
    content: "";
    transform: skewX(-5deg) scale(1.05);
}

.page-hero::after {
    position: absolute;
    right: -8%;
    bottom: -22%;
    left: -8%;
    z-index: -1;
    height: 44%;
    border-top: 2px solid rgba(255, 255, 255, 0.22);
    border-radius: 50% 50% 0 0;
    background:
        repeating-linear-gradient(90deg, transparent 0 7.7%, rgba(255, 255, 255, 0.11) 8%, transparent 8.3%),
        linear-gradient(180deg, #1b4b29, #0d1b12);
    content: "";
    transform: perspective(26rem) rotateX(54deg);
    transform-origin: top;
}

.page-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-lg);
    width: min(100% - 2rem, 78rem);
    min-height: inherit;
    margin-inline: auto;
    padding-block: var(--space-2xl);
}

.page-hero__content {
    position: relative;
    z-index: 2;
    align-self: center;
    max-width: 43rem;
}

.page-hero__title {
    max-width: 13ch;
    margin-bottom: var(--space-md);
    text-shadow: 0 4px 28px rgba(0, 0, 0, 0.55);
}

.page-hero__offer {
    display: block;
    margin-top: var(--space-xs);
    color: var(--primary);
}

.page-hero__text {
    max-width: 39rem;
    color: #d5ddd6;
    font-size: clamp(1rem, calc(0.75vw + 0.9rem), 1.2rem);
}

.page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.page-hero__terms {
    max-width: 38rem;
    margin-top: var(--space-md);
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.page-hero__visual {
    position: relative;
    z-index: 1;
    display: grid;
    align-self: end;
    min-height: 19rem;
    place-items: end center;
}

.page-hero__visual img[data-visual-role="hero-foreground"] {
    width: min(100%, 35rem);
    max-height: 36rem;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 28px 36px rgba(0, 0, 0, 0.52));
}

.hero-confetti {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-confetti span {
    position: absolute;
    width: 0.45rem;
    height: 1.35rem;
    border-radius: 0.15rem;
    background: linear-gradient(90deg, #d28a1d, var(--gold-soft), #a76511);
    box-shadow: 0 0 10px rgba(241, 189, 66, 0.32);
    transform: rotate(var(--confetti-rotate, 24deg));
}

.hero-confetti span:nth-child(1) { top: 9%; left: 7%; --confetti-rotate: 31deg; }
.hero-confetti span:nth-child(2) { top: 18%; left: 31%; --confetti-rotate: -18deg; }
.hero-confetti span:nth-child(3) { top: 11%; right: 16%; --confetti-rotate: 46deg; }
.hero-confetti span:nth-child(4) { top: 40%; right: 5%; --confetti-rotate: -30deg; }
.hero-confetti span:nth-child(5) { bottom: 19%; left: 12%; --confetti-rotate: 64deg; }
.hero-confetti span:nth-child(6) { bottom: 10%; right: 28%; --confetti-rotate: -48deg; }

/* ============================================
   CARDS - Dense technical content containers
   ============================================ */

.card,
.info-card,
.usp-card,
.offer-card,
.game-card,
.testimonial-card {
    min-width: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgba(29, 39, 31, 0.98), rgba(13, 18, 14, 0.98));
    box-shadow: var(--shadow-sm);
}

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

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

.usp-card {
    position: relative;
    overflow: hidden;
}

.usp-card::after {
    position: absolute;
    right: -2.5rem;
    bottom: -3rem;
    width: 7rem;
    height: 7rem;
    border: 1px solid rgba(180, 240, 74, 0.2);
    border-radius: 50%;
    content: "";
}

.usp-card__icon {
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    margin-bottom: var(--space-md);
    place-items: center;
    border: 1px solid rgba(180, 240, 74, 0.45);
    border-radius: var(--radius-sm);
    background: rgba(180, 240, 74, 0.08);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 900;
}

.usp-card__metric,
.offer-card__amount {
    margin-bottom: var(--space-xs);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: clamp(1.8rem, calc(2vw + 1rem), 2.7rem);
    font-weight: 850;
    line-height: 1;
    letter-spacing: -0.04em;
}

.usp-card__title,
.offer-card__title {
    margin-bottom: var(--space-xs);
}

.usp-card__text,
.offer-card__text,
.offer-card__terms {
    color: var(--muted-foreground);
}

.offer-card__terms {
    padding-top: var(--space-sm);
    border-top: 1px solid var(--border);
    font-size: 0.875rem;
}

.offer-card .btn {
    margin-top: var(--space-sm);
}

.game-card {
    overflow: hidden;
}

.game-card__media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--surface-soft);
}

.game-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease;
}

.game-card:hover .game-card__media img {
    transform: scale(1.035);
}

.game-card__body {
    padding: var(--space-md);
}

.game-card__title {
    margin-bottom: var(--space-2xs);
    font-size: 1.15rem;
}

.game-card__provider {
    margin-bottom: var(--space-sm);
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.game-card__meta {
    display: grid;
    gap: var(--space-xs);
    padding: 0;
    margin: 0;
    list-style: none;
}

.game-card__meta li {
    display: flex;
    justify-content: space-between;
    gap: var(--space-sm);
    padding-top: var(--space-xs);
    border-top: 1px solid var(--border);
    font-size: 0.875rem;
}

.game-card__meta span {
    color: var(--subtle-foreground);
}

/* ============================================
   STATS & SCOREBOARD - Supplied quantitative facts
   ============================================ */

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

.stat-highlight {
    display: flex;
    min-width: 0;
    min-height: 8rem;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-md);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background:
        linear-gradient(rgba(180, 240, 74, 0.04), rgba(180, 240, 74, 0.01)),
        repeating-linear-gradient(90deg, transparent 0 14px, rgba(255, 255, 255, 0.022) 15px 16px),
        var(--surface);
    text-align: center;
}

.stat-highlight__number {
    color: var(--primary);
    font-family: var(--font-display);
    font-size: clamp(2rem, calc(4vw + 0.75rem), 4.6rem);
    font-weight: 850;
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.stat-highlight__label {
    margin-top: var(--space-sm);
    color: var(--foreground-strong);
    font-family: var(--font-display);
    font-weight: 750;
}

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

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

.rating-display__score {
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 850;
    line-height: 1;
}

.rating-display__bars {
    display: grid;
    flex: 1 1 12rem;
    gap: var(--space-xs);
}

.rating-display__bar {
    height: 0.5rem;
    overflow: hidden;
    border-radius: var(--radius-pill);
    background: var(--muted);
}

.rating-display__bar span {
    display: block;
    width: var(--rating-width, 90%);
    height: 100%;
    border-radius: inherit;
    background: var(--primary);
}

/* ============================================
   MEDIA PANELS - Framed editorial scene treatment
   ============================================ */

.media-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-md);
}

.media-panel__content {
    align-self: center;
    padding: var(--space-xl);
}

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

.media-panel__body + .btn {
    margin-top: var(--space-sm);
}

.media-panel__media {
    min-height: 18rem;
    background: var(--surface-soft);
}

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

/* ============================================
   PAYMENT & TRUST BADGES - Recognizable compact marks
   ============================================ */

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

.payment-badge {
    display: flex;
    min-width: 0;
    min-height: 7.5rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #f4f6f3;
    color: #121712;
    text-align: center;
}

.payment-badge img {
    width: 100%;
    height: 3rem;
    object-fit: contain;
}

.payment-badge__name {
    margin-top: var(--space-xs);
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 800;
}

.payment-badge__note {
    color: #344039;
    font-size: 0.75rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: var(--space-sm);
    padding: 0;
    margin: 0;
    list-style: none;
}

.trust-badges__item {
    display: flex;
    min-width: min(100%, 15rem);
    flex: 1 1 14rem;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
}

.trust-badges__icon {
    display: grid;
    width: 3rem;
    height: 3rem;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 850;
}

.trust-badges__body {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.trust-badges__body span {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.age-badge {
    display: inline-grid;
    width: 3.5rem;
    height: 3.5rem;
    flex: 0 0 auto;
    place-items: center;
    border: 2px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 850;
}

/* ============================================
   TABLES - Scrollable factual comparisons
   ============================================ */

.table-wrap {
    min-width: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

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

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

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

.data-table thead th {
    border-top: 0;
    background: var(--muted);
    color: var(--foreground-strong);
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.025em;
}

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

.data-table tbody tr:hover {
    background: rgba(180, 240, 74, 0.035);
}

.data-table .is-highlight {
    background: rgba(180, 240, 74, 0.1);
    box-shadow: inset 2px 0 var(--primary), inset -2px 0 var(--primary);
}

/* ============================================
   STEPS - Numbered process for KYC and guides
   ============================================ */

.step-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-md);
    padding: 0;
    margin: 0;
    list-style: none;
    counter-reset: zoccer-steps;
}

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

.step-list__item::before {
    position: absolute;
    top: var(--space-lg);
    left: var(--space-lg);
    display: grid;
    width: 2.5rem;
    height: 2.5rem;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: var(--primary-foreground);
    content: counter(zoccer-steps);
    font-family: var(--font-display);
    font-weight: 850;
}

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

.step-list__text {
    margin: 0;
    color: var(--muted-foreground);
}

/* ============================================
   ENGAGEMENT BOXES - Summary, callout and quote
   ============================================ */

.summary-box {
    padding: var(--space-lg);
    border: 1px solid rgba(180, 240, 74, 0.48);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    background: linear-gradient(120deg, rgba(180, 240, 74, 0.11), rgba(180, 240, 74, 0.025));
}

.summary-box__title {
    margin-bottom: var(--space-sm);
    color: var(--foreground-strong);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 850;
}

.summary-box__list {
    display: grid;
    gap: var(--space-xs);
    padding-left: 1.2rem;
    margin: 0;
}

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

.callout {
    padding: var(--space-lg);
    border: 1px solid var(--border-strong);
    border-left: 4px solid var(--info);
    border-radius: var(--radius-md);
    background: var(--surface-raised);
}

.callout--success { border-left-color: var(--success); }
.callout--warning { border-left-color: var(--warning); }
.callout--danger { border-left-color: var(--destructive); }

.callout__title {
    margin-bottom: var(--space-xs);
    color: var(--foreground-strong);
    font-family: var(--font-display);
    font-weight: 850;
}

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

.pull-quote {
    position: relative;
    padding: var(--space-xl) var(--space-lg) var(--space-lg);
    margin-inline: 0;
    border-block: 1px solid var(--border-strong);
    color: var(--foreground-strong);
    font-family: var(--font-display);
    font-size: clamp(1.25rem, calc(1.4vw + 1rem), 2rem);
    font-weight: 650;
    line-height: 1.35;
}

.pull-quote::before {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--primary);
    content: "“";
    font-size: 3.5rem;
    line-height: 1;
}

.pull-quote cite {
    display: block;
    margin-top: var(--space-md);
    color: var(--muted-foreground);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 500;
}

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

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

.faq-item {
    align-self: start;
    border-bottom: 1px solid var(--border);
}

.faq-item__question {
    position: relative;
    min-height: 3.75rem;
    padding: 1.1rem 3rem 1.1rem 0;
    color: var(--foreground-strong);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 750;
    line-height: 1.35;
    cursor: pointer;
    list-style: none;
}

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

.faq-item__question::after {
    position: absolute;
    top: 50%;
    right: 0.4rem;
    width: 0.75rem;
    height: 0.75rem;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    content: "";
    transform: translateY(-70%) rotate(45deg);
    transition: transform var(--transition-base);
}

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

.faq-item__answer {
    max-width: 48rem;
    padding: 0 2.5rem var(--space-lg) 0;
    color: var(--muted-foreground);
}

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

/* ============================================
   CTA BAND - Full-width conversion moment
   ============================================ */

.cta-band {
    background:
        radial-gradient(circle at 80% 30%, rgba(255, 217, 113, 0.16), transparent 14rem),
        radial-gradient(circle at 25% 0%, rgba(162, 214, 255, 0.14), transparent 20rem),
        linear-gradient(135deg, #10171b, #101912 70%);
    border-block: 1px solid var(--border);
}

.cta-band::after {
    position: absolute;
    right: -10%;
    bottom: -5rem;
    width: 24rem;
    height: 11rem;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 20%, rgba(255,255,255,0.2), transparent 1px),
        linear-gradient(180deg, #285433, #112318);
    background-size: 20px 20px, auto;
    content: "";
    transform: rotate(-7deg);
}

.cta-band__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-lg);
    width: min(100% - 2rem, var(--container));
    min-height: 25rem;
    margin-inline: auto;
    padding-block: var(--space-3xl);
}

.cta-band__content {
    align-self: center;
    max-width: 42rem;
}

.cta-band__title {
    max-width: 16ch;
}

.cta-band__text {
    max-width: 39rem;
    color: var(--muted-foreground);
    font-size: 1.075rem;
}

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

.cta-band__media {
    display: grid;
    min-height: 15rem;
    place-items: end center;
}

.cta-band__media img {
    width: min(100%, 30rem);
    max-height: 24rem;
    object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(0,0,0,0.48));
}

/* ============================================
   SOCIAL PROOF - Evidence-ready card layout
   Use only with supplied testimonial/review evidence
   ============================================ */

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

.testimonial-card__meta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
}

.testimonial-card__avatar {
    width: 3rem;
    height: 3rem;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 50%;
    background: var(--muted);
}

.testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card__identity {
    display: flex;
    flex-direction: column;
}

.testimonial-card__identity span {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* ============================================
   BREADCRUMBS - Non-linking orientation trail
   ============================================ */

.breadcrumbs {
    width: min(100% - 2rem, var(--container));
    margin: var(--space-md) auto 0;
}

.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    padding: 0;
    margin: 0;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    list-style: none;
}

.breadcrumbs__list li + li::before {
    margin-right: var(--space-xs);
    color: var(--border-strong);
    content: "/";
}

/* ============================================
   FOOTER - Public links, payments and legal notes
   ============================================ */

.site-footer {
    border-top: 1px solid var(--border);
    background: var(--background-deep);
}

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

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

.site-footer__claim {
    max-width: 31rem;
    margin-top: var(--space-md);
    color: var(--muted-foreground);
    font-size: 0.925rem;
}

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

.site-footer__col ul {
    display: grid;
    gap: var(--space-xs);
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-footer__col a {
    color: var(--muted-foreground);
    text-decoration: underline;
    text-decoration-color: var(--border-strong);
}

.site-footer__col a:hover {
    color: var(--primary);
    text-decoration-color: var(--primary);
}

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

.site-footer__payments li {
    display: grid;
    min-height: 2.25rem;
    place-items: center;
    padding: var(--space-xs);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--muted-foreground);
    font-size: 0.75rem;
    text-align: center;
}

.site-footer__legal {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding-top: var(--space-xl);
    margin-top: var(--space-xl);
    border-top: 1px solid var(--border);
}

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

.site-footer__copy {
    padding-top: var(--space-lg);
    margin-top: var(--space-lg);
    border-top: 1px solid var(--border);
}

/* ============================================
   PROGRESSIVE REVEAL - Visible without JavaScript
   ============================================ */

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

.js-reveal [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   ACCESSIBILITY STATES - Keyboard and motion
   ============================================ */

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

.table-wrap:focus-visible {
    outline-offset: 4px;
}

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

/* ============================================
   TABLET - Wider grids and balanced panels
   ============================================ */

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

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

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

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

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

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

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

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

    .site-footer__brand {
        grid-column: 1 / -1;
    }

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

/* ============================================
   DESKTOP - Reference-matched horizontal header
   ============================================ */

@media (min-width: 64rem) {
    :root {
        --header-height: 6rem;
    }

    .site-header {
        background: var(--surface-glass);
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
    }

    .site-header__inner {
        gap: var(--space-xl);
    }

    .site-brand__mark svg {
        width: 3rem;
        height: 3rem;
    }

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

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

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

    .primary-nav__list {
        flex-direction: row;
        align-items: center;
        gap: var(--space-xl);
    }

    .primary-nav__list a {
        min-height: 3rem;
        padding: 0;
        border: 0;
        font-size: 1.05rem;
    }

    .primary-nav__drawer-actions {
        display: none;
    }

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

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

    .menu-toggle {
        display: none;
    }

    .page-hero {
        min-height: min(50rem, calc(100svh - var(--header-height)));
    }

    .page-hero__inner {
        grid-template-columns: minmax(0, 1.05fr) minmax(25rem, 0.95fr);
        gap: 0;
        width: min(100% - 4rem, 78rem);
        padding-block: var(--space-2xl);
    }

    .page-hero__visual {
        min-height: 38rem;
        margin-right: -2rem;
    }

    .page-hero__visual img[data-visual-role="hero-foreground"] {
        width: min(115%, 44rem);
        max-width: none;
        max-height: 43rem;
    }

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

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

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

    .media-panel__content {
        padding: var(--space-2xl);
    }

    .media-panel__media {
        min-height: 29rem;
    }

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

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

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

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

    .step-list {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .step-list__item {
        padding: 4.75rem var(--space-md) var(--space-lg);
    }

    .step-list__item::before {
        top: var(--space-lg);
        left: var(--space-md);
    }

    .cta-band__inner {
        grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
        min-height: 30rem;
        padding-block: var(--space-3xl);
    }

    .cta-band__media {
        align-self: end;
        min-height: 25rem;
    }

    .cta-band__media img {
        width: min(115%, 38rem);
        max-width: none;
        max-height: 30rem;
    }

    .site-footer__grid {
        grid-template-columns: 1.7fr 1fr 0.8fr 1.6fr;
    }

    .site-footer__brand {
        grid-column: auto;
    }
}

/* ============================================
   LARGE DESKTOP - Maximum content width and scale
   ============================================ */

@media (min-width: 80rem) {
    .site-header__inner {
        width: min(100% - 4rem, 82rem);
    }

    .page-hero__inner {
        width: min(100% - 5rem, 82rem);
    }

    .page-hero__title {
        font-size: 4.75rem;
    }
}

/* ============================================
   VERY NARROW MOBILE - Keep header controls fitting
   ============================================ */

@media (max-width: 22.4375rem) {
    .site-header__inner {
        width: calc(100% - 1rem);
    }

    .site-brand__mark svg {
        width: 1.8rem;
        height: 1.8rem;
    }

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

    .site-brand__text em {
        font-size: 0.7rem;
    }

    .header-actions .btn--sm {
        min-height: 2.65rem;
        padding-inline: 0.72rem;
        font-size: 0.82rem;
    }

    .header-actions {
        gap: 0.3rem;
    }

    .menu-toggle {
        width: 2.65rem;
        height: 2.65rem;
    }

    .page-hero__inner,
    .container,
    .section-inner,
    .breadcrumbs,
    .cta-band__inner,
    .site-footer__inner {
        width: calc(100% - 1.25rem);
    }
}
