/*
 * Zoccer Casino Design System
 * Fixed dark theme with football-green, lime and restrained trophy-gold accents.
 */

:root {
    color-scheme: dark;
    --background: #0a0d0b;
    --background-deep: #060806;
    --surface: #111713;
    --surface-strong: #172119;
    --surface-soft: #1b261d;
    --card: #121914;
    --card-hover: #19231b;
    --foreground: #f5f7f3;
    --foreground-strong: #ffffff;
    --muted: #202922;
    --muted-foreground: #b9c2b8;
    --border: #334036;
    --border-strong: #526353;
    --primary: #c6f042;
    --primary-hover: #d8ff5d;
    --primary-foreground: #101607;
    --secondary: #efd06a;
    --secondary-hover: #ffe493;
    --secondary-foreground: #171204;
    --accent: #37d66f;
    --accent-foreground: #06150b;
    --destructive: #d9354b;
    --destructive-foreground: #ffffff;
    --focus: #d8ff5d;
    --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 18px 54px rgba(0, 0, 0, 0.34);
    --shadow-glow: 0 0 42px rgba(198, 240, 66, 0.14);
    --gradient-primary: linear-gradient(135deg, #b7ee32 0%, #d8ff5d 100%);
    --gradient-gold: linear-gradient(135deg, #bd8732 0%, #f6d879 48%, #c49038 100%);
    --gradient-field: linear-gradient(145deg, #142918 0%, #0b160d 58%, #071009 100%);
    --gradient-dark: linear-gradient(180deg, #101612 0%, #080b09 100%);
    --radius-sm: 0.625rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-pill: 999px;
    --space-2xs: 0.375rem;
    --space-xs: 0.625rem;
    --space-sm: 0.875rem;
    --space-md: 1.25rem;
    --space-lg: 1.75rem;
    --space-xl: 2.5rem;
    --space-2xl: 3.5rem;
    --space-3xl: 5rem;
    --container: 80rem;
    --container-narrow: 48rem;
    --header-height: 4.75rem;
    --font-heading: "Outfit", sans-serif;
    --font-body: "Inter", sans-serif;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.375rem;
    --heading-sm: clamp(1.35rem, calc(2vw + 0.8rem), 2rem);
    --heading-md: clamp(1.75rem, calc(3vw + 0.8rem), 3rem);
    --heading-lg: clamp(2.3rem, calc(5vw + 0.5rem), 4.75rem);
}

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

html {
    min-width: 20rem;
    scroll-behavior: smooth;
    background: var(--background);
}

body {
    min-width: 20rem;
    margin: 0;
    overflow-x: clip;
    background:
        radial-gradient(circle at 15% 8%, rgba(35, 90, 45, 0.16), transparent 26rem),
        radial-gradient(circle at 90% 35%, rgba(198, 240, 66, 0.06), transparent 30rem),
        var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

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-"] {
    max-width: 100%;
}

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

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

input,
textarea,
select {
    max-width: 100%;
    box-sizing: border-box;
}

section {
    overflow: clip;
}

details {
    height: fit-content;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

/* ============================================
   TYPOGRAPHY - Strong condensed-feeling display, readable body
   ============================================ */
h1,
h2,
h3,
h4 {
    margin: 0 0 0.65em;
    color: var(--foreground-strong);
    font-family: var(--font-heading);
    font-weight: 750;
    line-height: 1.08;
    text-wrap: balance;
}

h1 {
    font-size: var(--heading-lg);
    letter-spacing: -0.035em;
}

h2 {
    font-size: var(--heading-md);
    letter-spacing: -0.025em;
}

h3 {
    font-size: var(--heading-sm);
    letter-spacing: -0.015em;
}

h4 {
    font-size: var(--text-xl);
}

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

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

small {
    font-size: var(--text-sm);
}

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

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

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

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

/* ============================================
   ACCESSIBILITY - Focus, skip link and reduced motion support
   ============================================ */
.skip-link {
    position: fixed;
    z-index: 2000;
    top: var(--space-sm);
    left: var(--space-sm);
    padding: 0.75rem 1rem;
    transform: translateY(-180%);
    border-radius: var(--radius-sm);
    background: var(--primary);
    color: var(--primary-foreground);
    font-weight: 700;
    text-decoration: none;
}

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

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

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

/* ============================================
   LAYOUT - Shared page width and vertical rhythm
   ============================================ */
.container {
    width: min(calc(100% - 2rem), var(--container));
    margin-inline: auto;
}

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

main {
    min-height: 60vh;
}

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

.page-section--surface {
    background: var(--surface);
}

.page-section--field {
    background:
        linear-gradient(90deg, transparent 49.8%, rgba(239, 208, 106, 0.18) 50%, transparent 50.2%),
        linear-gradient(rgba(255, 255, 255, 0.025) 50%, transparent 50%),
        var(--gradient-field);
    background-size: auto, 100% 4rem, auto;
}

.page-section--light {
    background: #edf1ea;
    color: #20261f;
}

.page-section--light h2,
.page-section--light h3,
.page-section--light strong {
    color: #0b100c;
}

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

.content-grid,
.two-column,
.three-column,
.four-column,
.stats-grid,
.feature-grid,
.testimonial-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-md);
    align-items: start;
}

.prose {
    max-width: 72ch;
}

.prose p,
.seo-text p {
    margin-bottom: 1.25em;
}

.prose ul,
.prose ol,
.seo-text ul,
.seo-text ol {
    padding-left: 1.35rem;
}

/* ============================================
   HEADER & NAVIGATION - Compact fixed dark masthead
   ============================================ */
.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    min-height: var(--header-height);
    border-bottom: 1px solid rgba(239, 208, 106, 0.16);
    background: var(--background-deep);
}

.site-header__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    width: min(calc(100% - 1rem), var(--container));
    min-height: var(--header-height);
    margin-inline: auto;
    gap: 0.5rem;
}

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

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

.site-brand__disc {
    fill: var(--surface);
    stroke: var(--primary);
}

.site-brand__glyph {
    fill: none;
    stroke: var(--primary);
}

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

.site-brand__name {
    font-size: 1.15rem;
    letter-spacing: 0.01em;
}

.site-brand__sub {
    color: var(--primary);
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

.nav-toggle span {
    display: block;
    width: 1.25rem;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.primary-nav {
    position: fixed;
    z-index: 999;
    inset: var(--header-height) 0 0;
    display: none;
    overflow-y: auto;
    padding: var(--space-lg) 1rem;
    background: var(--background);
}

.primary-nav.is-open {
    display: block;
}

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

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

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

.header-actions {
    display: flex;
    min-width: 0;
    justify-content: flex-end;
    gap: 0.4rem;
}

.header-actions .btn {
    min-height: 2.75rem;
    padding-inline: 0.72rem;
    font-size: 0.875rem;
}

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

/* ============================================
   BUTTONS - High contrast lime conversion actions
   ============================================ */
.btn {
    display: inline-flex;
    min-height: 3rem;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.2rem;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 750;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.btn--primary {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-glow);
    color: var(--primary-foreground);
}

.btn--primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 0 54px rgba(198, 240, 66, 0.22);
}

.btn--secondary {
    background: var(--gradient-gold);
    color: var(--secondary-foreground);
}

.btn--ghost {
    border-color: var(--secondary);
    background: transparent;
    color: #ffe08a;
}

.btn--ghost:hover {
    background: rgba(239, 208, 106, 0.1);
}

.btn--sm {
    min-height: 2.75rem;
    padding: 0.65rem 1rem;
}

.btn--lg {
    min-height: 3.5rem;
    padding: 0.95rem clamp(1.4rem, 5vw, 2.5rem);
    font-size: clamp(1rem, calc(1vw + 0.85rem), 1.25rem);
}

/* ============================================
   SECTION HEADINGS - Centered editorial rhythm
   ============================================ */
.section-heading {
    max-width: 58rem;
    margin: 0 auto var(--space-xl);
}

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

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

.section-heading__eyebrow,
.eyebrow {
    margin-bottom: 0.65rem;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 750;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-heading__intro {
    max-width: 70ch;
    margin-inline: auto;
    color: var(--muted-foreground);
    font-size: var(--text-lg);
}

.section-heading--left .section-heading__intro {
    margin-left: 0;
}

/* ============================================
   HERO FOUNDATION - Integrated art, field geometry and split layout
   ============================================ */
.hero {
    position: relative;
    isolation: isolate;
    min-height: calc(100svh - var(--header-height));
    padding: var(--space-xl) 0 var(--space-2xl);
    background:
        radial-gradient(circle at 50% 15%, rgba(239, 208, 106, 0.14), transparent 22rem),
        linear-gradient(125deg, rgba(28, 68, 35, 0.35), transparent 48%),
        var(--background-deep);
}

.hero::before {
    position: absolute;
    z-index: -1;
    inset: auto 0 0;
    height: 28%;
    content: "";
    opacity: 0.74;
    background:
        linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, 0.45) 50%, transparent 50.2%),
        linear-gradient(0deg, transparent 49.5%, rgba(255, 255, 255, 0.18) 50%, transparent 50.5%),
        repeating-linear-gradient(90deg, #24652d 0 8%, #2f7838 8% 16%);
    clip-path: polygon(9% 100%, 91% 100%, 78% 0, 22% 0);
}

.hero::after {
    position: absolute;
    z-index: -1;
    top: -20%;
    left: 49%;
    width: 0.18rem;
    height: 115%;
    content: "";
    background: var(--gradient-gold);
    box-shadow: 0 0 28px rgba(239, 208, 106, 0.65), 2rem 0 0 rgba(55, 214, 111, 0.2);
    transform: rotate(16deg);
}

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

.hero__visual {
    position: relative;
    min-height: 22rem;
}

.hero__visual img[data-visual-role="hero-foreground"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 28px 32px rgba(0, 0, 0, 0.42));
}

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

.hero__content p {
    max-width: 64ch;
    margin-inline: auto;
    color: #d3dbd1;
    font-size: clamp(1rem, calc(1vw + 0.8rem), 1.25rem);
}

.hero__actions {
    display: flex;
    margin-top: var(--space-lg);
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.hero__age {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    border: 3px solid var(--destructive);
    border-radius: 50%;
    background: var(--foreground-strong);
    color: #0a0a0a;
    font-family: var(--font-heading);
    font-weight: 800;
}

/* ============================================
   CARDS - Content containers with pitch and trophy styling
   ============================================ */
.card,
.info-card,
.feature-card,
.stat-block,
.testimonial-card {
    min-width: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--card);
    box-shadow: var(--shadow-sm);
}

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

.card--featured {
    border-color: var(--secondary);
    background:
        linear-gradient(145deg, rgba(239, 208, 106, 0.09), transparent 55%),
        var(--card);
}

.feature-card {
    overflow: hidden;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    background: var(--card-hover);
}

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

.feature-card__icon {
    display: grid;
    width: 3.25rem;
    height: 3.25rem;
    margin: var(--space-lg) var(--space-lg) 0;
    place-items: center;
    border: 1px solid rgba(239, 208, 106, 0.44);
    border-radius: 50%;
    background: rgba(239, 208, 106, 0.1);
    color: var(--secondary);
}

.feature-card__content {
    padding: var(--space-lg);
}

.feature-card__content h3 {
    font-size: 1.45rem;
}

.feature-card__content p {
    color: var(--muted-foreground);
}

.feature-card__link {
    display: inline-flex;
    margin-top: 0.25rem;
    color: var(--primary);
    font-weight: 700;
    text-underline-offset: 0.2em;
}

.icon-symbol {
    width: 1.55rem;
    height: 1.55rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ============================================
   STATS - Large supplied figures with source context
   ============================================ */
.stats-grid {
    gap: 0.85rem;
}

.stat-block {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    padding: var(--space-md);
    gap: 1rem;
    border-color: rgba(239, 208, 106, 0.48);
    background:
        linear-gradient(135deg, rgba(239, 208, 106, 0.1), transparent 70%),
        #16150f;
}

.stat-block__icon {
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    border-radius: 50%;
    background: rgba(239, 208, 106, 0.12);
    color: var(--secondary);
}

.stat-block__number {
    display: block;
    color: #ffe389;
    font-family: var(--font-heading);
    font-size: clamp(2rem, calc(4vw + 0.5rem), 3.75rem);
    line-height: 0.95;
}

.stat-block__label {
    display: block;
    margin-top: 0.35rem;
    color: var(--foreground-strong);
    font-weight: 700;
}

.stat-block__context,
.stat-block__source {
    display: block;
    margin: 0.5rem 0 0;
    color: var(--muted-foreground);
    font-size: var(--text-sm);
    line-height: 1.45;
}

/* ============================================
   MEDIA PANELS - Reusable text/image split blocks
   ============================================ */
.media-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: var(--gradient-dark);
    box-shadow: var(--shadow-md);
}

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

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

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

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

/* ============================================
   SUMMARY & CALLOUTS - Citation-friendly key takeaways
   ============================================ */
.summary-box {
    padding: var(--space-lg);
    border: 1px solid rgba(198, 240, 66, 0.5);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(198, 240, 66, 0.09), transparent 60%),
        var(--surface);
    box-shadow: var(--shadow-glow);
}

.summary-box__heading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.summary-box__heading h2 {
    margin: 0;
    font-size: 1.5rem;
}

.summary-box__icon {
    color: var(--primary);
}

.summary-box__list {
    display: grid;
    margin: 1rem 0 0;
    padding: 0;
    gap: 0.65rem;
    list-style: none;
}

.summary-box__list li {
    position: relative;
    padding-left: 1.45rem;
}

.summary-box__list li::before {
    position: absolute;
    top: 0.25rem;
    left: 0;
    color: var(--primary);
    content: "✓";
    font-weight: 800;
}

.callout {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    padding: var(--space-md);
    gap: 0.9rem;
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    background: var(--surface);
}

.callout--warning {
    border-left-color: var(--secondary);
    background: linear-gradient(90deg, rgba(239, 208, 106, 0.11), transparent 50%), var(--surface);
}

.callout--danger {
    border-left-color: var(--destructive);
    background: linear-gradient(90deg, rgba(220, 67, 87, 0.1), transparent 50%), var(--surface);
}

.callout__icon {
    color: var(--primary);
}

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

.callout--danger .callout__icon {
    color: #ff8997;
}

.callout h3 {
    margin-bottom: 0.35rem;
    font-size: 1.15rem;
}

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

/* ============================================
   TABLES - Scrollable factual comparisons and highlighted columns
   ============================================ */
.table-wrapper {
    min-width: 0;
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.comparison-table {
    width: 100%;
    min-width: 42rem;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table caption {
    padding: 1rem;
    color: var(--foreground-strong);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    text-align: left;
}

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

.comparison-table thead th {
    background: #1a241c;
    color: var(--foreground-strong);
    font-family: var(--font-heading);
    font-weight: 700;
}

.comparison-table tbody th {
    color: var(--foreground-strong);
}

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

.comparison-table .is-highlighted {
    background: rgba(198, 240, 66, 0.08);
    box-shadow: inset 2px 0 rgba(198, 240, 66, 0.22), inset -2px 0 rgba(198, 240, 66, 0.22);
}

.comparison-table tbody tr:last-child > * {
    border-bottom: 0;
}

/* ============================================
   FAQ ACCORDION - Native disclosure with clear state indicator
   ============================================ */
.faq-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
    align-items: start;
}

.faq-item {
    align-self: start;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    transition: border-color 180ms ease, background 180ms ease;
}

.faq-item[open] {
    border-color: rgba(198, 240, 66, 0.52);
    background: var(--surface-strong);
}

.faq-item summary {
    position: relative;
    min-height: 3.5rem;
    padding: 1rem 3.5rem 1rem 1rem;
    color: var(--foreground-strong);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    cursor: pointer;
    list-style: none;
}

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

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

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

.faq-item__answer {
    padding: 0 1rem 1.1rem;
    color: var(--muted-foreground);
}

/* ============================================
   TRUST, PROVIDERS & PAYMENT CHIPS - Compact proof anchors
   ============================================ */
.trust-badges {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    margin: 0;
    padding: 0;
    gap: 0.75rem;
    list-style: none;
}

.trust-badge {
    display: flex;
    min-width: 0;
    align-items: center;
    padding: 1rem;
    gap: 0.8rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
}

.trust-badge__icon {
    flex: 0 0 auto;
    color: var(--secondary);
}

.trust-badge strong,
.trust-badge small {
    display: block;
}

.trust-badge small {
    margin-top: 0.2rem;
    color: var(--muted-foreground);
    line-height: 1.4;
}

.provider-chips,
.chip-row {
    display: flex;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    gap: 0.55rem;
    list-style: none;
}

.provider-chips li,
.chip {
    display: inline-flex;
    min-height: 2.5rem;
    align-items: center;
    padding: 0.5rem 0.8rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    background: #161d18;
    color: #d8ded6;
    font-size: var(--text-sm);
    font-weight: 650;
}

/* ============================================
   STEPS - KYC and payment process timelines
   ============================================ */
.step-list {
    display: grid;
    margin: 0;
    padding: 0;
    gap: var(--space-md);
    list-style: none;
    counter-reset: steps;
}

.step-list li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    padding: var(--space-md);
    gap: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
}

.step-list__number {
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    place-items: center;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    font-family: var(--font-heading);
    font-weight: 800;
}

.step-list h3 {
    margin-bottom: 0.35rem;
    font-size: 1.2rem;
}

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

/* ============================================
   PULL QUOTES & SOCIAL PROOF - Optional editorial interruption
   ============================================ */
.pull-quote {
    margin: var(--space-xl) 0;
    padding: var(--space-lg);
    border-left: 5px solid var(--secondary);
    background: linear-gradient(90deg, rgba(239, 208, 106, 0.1), transparent 75%);
}

.pull-quote blockquote {
    color: var(--foreground-strong);
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, calc(2vw + 0.8rem), 2.4rem);
    font-weight: 650;
    line-height: 1.25;
}

.pull-quote figcaption {
    margin-top: 0.75rem;
    color: var(--muted-foreground);
    font-size: var(--text-sm);
}

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

.testimonial-card blockquote {
    color: var(--foreground);
    font-size: var(--text-lg);
}

.testimonial-card__meta {
    display: grid;
    margin-top: 1rem;
    gap: 0.15rem;
}

.testimonial-card__meta span {
    color: var(--muted-foreground);
    font-size: var(--text-sm);
}

/* ============================================
   CTA BAND - Full-width conversion close with 18+ context
   ============================================ */
.cta-band {
    position: relative;
    padding-block: var(--space-2xl);
    border-block: 1px solid rgba(198, 240, 66, 0.28);
    background:
        radial-gradient(circle at 50% 110%, rgba(198, 240, 66, 0.16), transparent 40%),
        linear-gradient(135deg, #102015 0%, #070a08 100%);
}

.cta-band__inner {
    max-width: 52rem;
    text-align: center;
}

.cta-band__kicker {
    margin-bottom: 0.5rem;
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cta-band__inner > p:not(.cta-band__kicker) {
    max-width: 60ch;
    margin-inline: auto;
    color: var(--muted-foreground);
}

.cta-band .btn {
    margin-top: var(--space-md);
}

.cta-band small {
    display: block;
    margin-top: 0.85rem;
    color: var(--muted-foreground);
}

/* ============================================
   FOOTER - Dense legal, navigation and trust information
   ============================================ */
.site-footer {
    padding: var(--space-2xl) 0 var(--space-lg);
    border-top: 1px solid #273228;
    background: #060806;
}

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

.site-brand--footer {
    margin-bottom: 1rem;
}

.site-footer__claim,
.site-footer__disclaimer,
.site-footer__copyright {
    color: var(--muted-foreground);
    font-size: var(--text-sm);
}

.site-footer__claim {
    max-width: 34rem;
}

.site-footer__heading {
    margin-bottom: 0.8rem;
    color: var(--foreground-strong);
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer__nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__nav li + li {
    margin-top: 0.45rem;
}

.site-footer__nav a {
    color: #d5ddd3;
    text-underline-offset: 0.2em;
}

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

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

.legal-badges {
    display: flex;
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
    gap: 0.6rem;
}

.legal-badge {
    display: inline-flex;
    min-height: 2.4rem;
    align-items: center;
    padding: 0.45rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    color: #d7ddd5;
    font-size: var(--text-sm);
    font-weight: 650;
}

.legal-badge--age {
    border: 2px solid var(--destructive);
    background: var(--foreground-strong);
    color: #111111;
    font-family: var(--font-heading);
    font-weight: 800;
}

.site-footer__copyright {
    margin-top: 1rem;
}

/* ============================================
   SCROLL REVEAL - Progressive enhancement only below the fold
   ============================================ */
.js-reveal-ready [data-reveal] {
    opacity: 0;
    transform: translateY(1.25rem);
    transition: opacity 500ms ease, transform 500ms ease;
}

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

/* ============================================
   TABLET - Wider grids and comfortable header controls
   ============================================ */
@media (min-width: 48rem) {
    :root {
        --header-height: 5.25rem;
    }

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

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

    .two-column,
    .feature-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

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

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

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

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

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

    .media-panel--left .media-panel__visual {
        order: -1;
    }

    .site-footer__top {
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
    }

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

/* ============================================
   DESKTOP - Reference-aligned masthead, split hero and dense cards
   ============================================ */
@media (min-width: 64rem) {
    :root {
        --header-height: 6.75rem;
    }

    .site-header {
        background: rgba(7, 14, 9, 0.98);
    }

    .site-header__inner {
        display: flex;
        width: min(calc(100% - 4rem), var(--container));
        gap: var(--space-lg);
    }

    .nav-toggle {
        display: none;
    }

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

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

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

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

    .primary-nav {
        position: static;
        display: block;
        overflow: visible;
        margin-left: auto;
        padding: 0;
        background: transparent;
    }

    .primary-nav__list {
        flex-direction: row;
        align-items: center;
        gap: 0.25rem;
    }

    .primary-nav a {
        min-height: 3rem;
        padding-inline: 1rem;
        font-size: 1.05rem;
    }

    .header-actions {
        gap: 0.75rem;
    }

    .header-actions .btn {
        min-height: 3.25rem;
        padding-inline: 1.5rem;
        font-size: 1rem;
    }

    .hero {
        min-height: calc(100vh - var(--header-height));
        padding-block: 0;
    }

    .hero__inner {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
        min-height: calc(100vh - var(--header-height));
        gap: clamp(2rem, 5vw, 6rem);
    }

    .hero__visual {
        min-height: calc(100vh - var(--header-height));
    }

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

    .hero__content p {
        margin-left: 0;
    }

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

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

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

    .site-footer__top {
        grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.55fr) minmax(0, 1.2fr);
        align-items: start;
    }

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

/* ============================================
   LARGE DESKTOP - Maximum readable composition width
   ============================================ */
@media (min-width: 80rem) {
    .container {
        width: min(calc(100% - 5rem), var(--container));
    }

    .hero__content h1 {
        max-width: 13ch;
    }
}

/* ============================================
   NARROW MOBILE - Preserve 320px header composition
   ============================================ */
@media (max-width: 23.4rem) {
    .site-header__inner {
        width: calc(100% - 0.5rem);
        gap: 0.25rem;
    }

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

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

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

    .header-actions .btn {
        min-width: 0;
        padding-inline: 0.55rem;
        font-size: 0.8rem;
    }
}

/* ============================================
   REDUCED MOTION - Keep all content visible and stable
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

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

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

/* ============================================
   HOMEPAGE - Reference-led bonus, media and conversion compositions
   ============================================ */
.home-cta-row {
    display: flex;
    margin-top: var(--space-xl);
    justify-content: center;
}

.section-media {
    overflow: hidden;
    margin: 0 0 var(--space-xl);
    border: 1px solid rgba(239, 208, 106, 0.48);
    border-radius: var(--radius-xl);
    background: var(--surface);
    box-shadow: var(--shadow-md);
}

.section-media img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.section-media figcaption {
    padding: 0.75rem 1rem;
    color: var(--muted-foreground);
    font-size: var(--text-sm);
}

.bonus-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    overflow: hidden;
    margin-bottom: var(--space-lg);
    border: 1px solid rgba(239, 208, 106, 0.58);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(239, 208, 106, 0.08), transparent 48%),
        var(--gradient-dark);
    box-shadow: var(--shadow-md);
}

.bonus-showcase__body {
    padding: var(--space-lg);
}

.bonus-showcase__visual {
    min-height: 22rem;
    background: #0b120d;
}

.bonus-showcase__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.bonus-figures {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    margin: 0 0 var(--space-lg);
    padding: 0;
    gap: 0.65rem;
    list-style: none;
}

.bonus-figure {
    display: grid;
    padding: 1rem;
    border: 1px solid rgba(239, 208, 106, 0.52);
    border-radius: var(--radius-md);
    background: rgba(239, 208, 106, 0.08);
}

.bonus-figure--accent {
    border-color: rgba(198, 240, 66, 0.72);
    background: rgba(198, 240, 66, 0.09);
}

.bonus-figure__value {
    color: #ffe389;
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 0.95;
}

.bonus-figure--accent .bonus-figure__value {
    color: var(--primary);
}

.bonus-figure__label {
    margin-top: 0.45rem;
    color: var(--foreground-strong);
    font-weight: 700;
}

.payment-strip {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
}

.payment-strip h3 {
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.payment-strip p {
    margin-top: 0.85rem;
    color: var(--muted-foreground);
}

.page-section--field .media-panel {
    border-color: rgba(239, 208, 106, 0.48);
}

@media (min-width: 48rem) {
    .bonus-figures {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .bonus-figure {
        min-height: 9.5rem;
        align-content: center;
    }
}

@media (min-width: 64rem) {
    .bonus-showcase {
        grid-template-columns: minmax(0, 1.45fr) minmax(20rem, 0.65fr);
        align-items: stretch;
    }

    .bonus-showcase__body {
        padding: var(--space-xl);
    }

    .bonus-showcase__visual {
        min-height: 36rem;
    }

    .home-cta-row {
        justify-content: flex-start;
    }

    .section-media img {
        max-height: 38rem;
    }
}

@media (max-width: 47.99rem) {
    .hero {
        padding-top: 0;
    }

    .hero__inner {
        width: 100%;
        gap: 0;
    }

    .hero__visual {
        min-height: 31rem;
        background:
            radial-gradient(circle at 50% 35%, rgba(239, 208, 106, 0.23), transparent 16rem),
            linear-gradient(180deg, rgba(19, 56, 27, 0.42), transparent 70%);
    }

    .hero__visual img[data-visual-role="hero-foreground"] {
        object-position: center bottom;
    }

    .hero__content {
        padding: var(--space-lg) 1rem 0;
    }

    .hero__content h1 {
        font-size: clamp(2.35rem, 11vw, 3.55rem);
    }

    .hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero__actions .btn,
    .home-cta-row .btn {
        width: 100%;
    }

    .bonus-showcase__body {
        order: 2;
    }

    .bonus-showcase__visual {
        order: 1;
    }
}

@media (max-width: 23.4rem) {
    .hero__visual {
        min-height: 26rem;
    }

    .bonus-showcase__body,
    .payment-strip {
        padding: var(--space-md);
    }
}

/* ============================================
   SITEMAP - Neutral page directory with descriptions
   ============================================ */
.sitemap-index {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    margin: 0;
    padding: 0;
    gap: 0.85rem;
    list-style: none;
}

.sitemap-entry {
    padding: var(--space-md);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    background: var(--card);
}

.sitemap-entry h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.sitemap-entry h3 a {
    color: var(--foreground-strong);
    text-decoration: none;
}

.sitemap-entry h3 a:hover {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.sitemap-entry p {
    color: var(--muted-foreground);
}

.sitemap-entry--current {
    border-left-color: var(--secondary);
    background:
        linear-gradient(135deg, rgba(239, 208, 106, 0.09), transparent 60%),
        var(--card);
}

.sitemap-entry__badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border: 1px solid rgba(239, 208, 106, 0.5);
    border-radius: var(--radius-pill);
    color: var(--secondary);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 650;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    vertical-align: middle;
}

.sitemap-entry__path {
    margin-top: 0.6rem;
}

.sitemap-entry__path code {
    color: var(--muted-foreground);
    font-size: var(--text-sm);
}
