/*
 * Zoccer Casino Design System
 * Fixed dark football-stadium theme with lime and pitch-green accents.
 */

/* ============================================
   DESIGN TOKENS - Single fixed dark theme
   ============================================ */
:root {
    color-scheme: dark;

    --background: #080d0b;
    --background-deep: #050806;
    --background-elevated: #0d1511;
    --surface: #111a16;
    --surface-strong: #17231d;
    --surface-soft: #1d2923;
    --surface-light: #f2f5f1;
    --surface-light-muted: #5d775d;

    --foreground: #6a926a;
    --foreground-strong: #888888;
    --foreground-dark: #377d47;
    --muted: #18221d;
    --muted-foreground: #b7c1ba;
    --subtle-foreground: #5b6860;
    --border: #2d3b34;
    --border-strong: #435349;

    --primary: #b8ff35;
    --primary-hover: #a5ee20;
    --primary-foreground: #000000;
    --secondary: #16221c;
    --secondary-hover: #213128;
    --secondary-foreground: #FFFFFF;
    --accent: #2de477;
    --accent-strong: #19bd5c;
    --accent-foreground: #061008;
    --warning: #ffd84a;
    --warning-foreground: #171000;
    --destructive: #ff6b7a;
    --destructive-foreground: #190205;

    --lime-glow: rgba(184, 255, 53, 0.24);
    --green-glow: rgba(45, 228, 119, 0.19);
    --stadium-glow: rgba(221, 255, 189, 0.14);
    --overlay-heavy: rgba(4, 8, 6, 0.88);
    --overlay-soft: rgba(4, 8, 6, 0.42);

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

    --text-xs: 0.875rem;
    --text-sm: 0.9375rem;
    --text-base: 1rem;
    --text-lg: clamp(1.0625rem, calc(0.3vw + 1rem), 1.1875rem);
    --text-xl: clamp(1.2rem, calc(0.8vw + 1rem), 1.5rem);
    --text-2xl: clamp(1.55rem, calc(1.7vw + 1rem), 2.25rem);
    --text-3xl: clamp(2rem, calc(3vw + 1rem), 3.75rem);
    --text-hero: clamp(2.35rem, calc(5.2vw + 0.8rem), 5.4rem);

    --space-2xs: 0.25rem;
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: clamp(2.5rem, calc(4vw + 1rem), 5rem);
    --space-3xl: clamp(4rem, calc(7vw + 1rem), 8rem);

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

    --shadow-sm: 0 12px 30px rgba(0, 0, 0, 0.22);
    --shadow-md: 0 24px 70px rgba(0, 0, 0, 0.34);
    --shadow-accent: 0 0 0 1px rgba(184, 255, 53, 0.18), 0 18px 50px rgba(104, 154, 27, 0.17);

    --container: 76rem;
    --container-wide: 94rem;
    --reading-width: 48rem;
    --header-height: 4.5rem;
    --transition-fast: 160ms ease;
    --transition-base: 260ms ease;
}

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

html {
    min-width: 20rem;
    overflow-x: clip;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 1rem);
    background: var(--background);
}

body {
    min-width: 20rem;
    margin: 0;
    overflow-x: clip;
    background:
        radial-gradient(circle at 12% 15%, rgba(45, 228, 119, 0.06), transparent 26rem),
        radial-gradient(circle at 88% 44%, rgba(184, 255, 53, 0.045), transparent 30rem),
        var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

button {
    border: 0;
}

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

section {
    position: relative;
    overflow: clip;
}

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

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

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

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

.table-wrapper {
    min-width: 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
}

details {
    height: fit-content;
}

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

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

/* ============================================
   TYPOGRAPHY - Bold matchday hierarchy
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 0.75em;
    color: var(--foreground-strong);
    font-family: var(--font-display);
    font-weight: 760;
    letter-spacing: -0.035em;
    line-height: 1.12;
}

h1 {
    max-width: 15ch;
    font-size: var(--text-hero);
}

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

h3 {
    font-size: var(--text-xl);
    letter-spacing: -0.025em;
}

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

p {
    margin: 0 0 1.25rem;
}

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

small,
.caption {
    font-size: var(--text-xs);
    line-height: 1.55;
}

strong {
    font-weight: 750;
}

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

/* ============================================
   ACCESSIBILITY - Focus, skip link, 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: 750;
    transform: translateY(-160%);
    transition: transform var(--transition-fast);
}

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

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

#main-content:focus {
    outline: none;
}

/* ============================================
   LAYOUT PRIMITIVES - Containers and section rhythm
   ============================================ */
.container,
.container-wide,
.reading-container {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
}

.container-wide {
    width: min(100% - 2rem, var(--container-wide));
}

.reading-container {
    width: min(100% - 2rem, var(--reading-width));
}

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

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

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

.content-section--surface {
    background: linear-gradient(145deg, rgba(23, 35, 29, 0.92), rgba(9, 15, 12, 0.98));
}

.content-section--pitch::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent 49.8%, rgba(184, 255, 53, 0.08) 50%, transparent 50.2%),
        radial-gradient(circle at 50% 50%, transparent 0 7rem, rgba(184, 255, 53, 0.08) 7.05rem 7.15rem, transparent 7.2rem),
        linear-gradient(180deg, rgba(45, 228, 119, 0.035), transparent 60%);
}

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

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

.section-intro--right {
    margin-left: auto;
    text-align: right;
}

.section-intro p:not(.section-kicker) {
    max-width: 70ch;
    color: var(--muted-foreground);
    font-size: var(--text-lg);
}

.section-intro--center p:not(.section-kicker) {
    margin-inline: auto;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
    font-size: var(--text-sm);
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-kicker::before {
    content: "";
    width: 1.9rem;
    height: 0.2rem;
    border-radius: var(--radius-pill);
    background: linear-gradient(90deg, var(--accent), var(--primary));
    box-shadow: 0 0 18px var(--lime-glow);
}

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

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

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

/* ============================================
   HEADER & NAVIGATION - Opaque mobile drawer
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    border-bottom: 1px solid rgba(184, 255, 53, 0.1);
    background: #080d0b;
}

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

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

.site-brand__mark {
    position: relative;
    display: grid;
    flex: 0 0 auto;
    width: 2.35rem;
    height: 2.35rem;
    place-items: center;
    overflow: hidden;
    border: 2px solid var(--primary);
    border-radius: 50%;
    background: radial-gradient(circle at 35% 28%, #d9ff8a, var(--primary) 42%, #55c744 100%);
    box-shadow: 0 0 24px var(--lime-glow);
}

.site-brand__ball {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 45% 55% 48% 52%;
    background: var(--foreground-dark);
    transform: translate(-0.28rem, -0.35rem) rotate(24deg);
}

.site-brand__slash {
    position: absolute;
    width: 2.6rem;
    height: 0.42rem;
    border-radius: var(--radius-pill);
    background: var(--foreground-dark);
    transform: rotate(-48deg);
}

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

.site-brand__name {
    overflow: hidden;
    font-family: var(--font-display);
    font-size: 1.17rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-brand__subline {
    margin-top: 0.3rem;
    color: var(--primary);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.menu-toggle {
    position: relative;
    z-index: 1001;
    display: inline-flex;
    flex: 0 0 3rem;
    width: 3rem;
    height: 3rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    background: var(--secondary);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 1.25rem;
    height: 2px;
    border-radius: var(--radius-pill);
    background: var(--foreground);
    transform-origin: center;
    transition: transform var(--transition-base), opacity var(--transition-fast);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(0.5rem) 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.5rem) rotate(-45deg);
}

.primary-nav {
    display: none;
}

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

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

.primary-nav__link {
    position: relative;
    display: flex;
    min-height: 3.25rem;
    align-items: center;
    padding: 0.7rem 0.85rem;
    border-bottom: 1px solid var(--border);
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
}

.primary-nav__link:hover,
.primary-nav__link.is-current {
    color: var(--primary);
}

.primary-nav__mobile-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1.5rem;
}

.site-header__actions {
    display: none;
}

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

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

.button--primary {
    background: linear-gradient(110deg, var(--primary), #d4ff61);
    color: var(--primary-foreground);
    box-shadow: 0 12px 34px var(--lime-glow);
}

.button--primary:hover {
    background: linear-gradient(110deg, var(--primary-hover), var(--primary));
    box-shadow: 0 15px 42px rgba(184, 255, 53, 0.31);
}

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

.button--secondary:hover {
    border-color: var(--primary);
    background: var(--secondary-hover);
}

.button--ghost {
    border-color: rgba(244, 247, 244, 0.25);
    background: transparent;
    color: var(--foreground);
}

.button--large {
    min-height: 3.5rem;
    padding-inline: 1.75rem;
    font-size: 1.075rem;
}

.button--compact {
    min-height: 2.8rem;
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
}

/* ============================================
   HERO - Full-bleed stadium scene and integrated copy
   ============================================ */
.hero {
    isolation: isolate;
    display: grid;
    min-height: clamp(39rem, 95svh, 52rem);
    align-items: end;
    background: var(--background-deep);
}

.hero__media,
.hero__media::after,
.hero__media img,
.hero__overlay {
    position: absolute;
    inset: 0;
}

.hero__media {
    z-index: -3;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 62% center;
}

.hero__media::after {
    content: "";
    background:
        linear-gradient(180deg, rgba(4, 8, 6, 0.08), rgba(4, 8, 6, 0.3) 62%, rgba(4, 8, 6, 0.9)),
        linear-gradient(90deg, rgba(4, 8, 6, 0.94) 0%, rgba(4, 8, 6, 0.7) 45%, rgba(4, 8, 6, 0.08) 78%);
}

.hero__overlay {
    z-index: -2;
    pointer-events: none;
    background:
        linear-gradient(112deg, transparent 0 5%, rgba(45, 228, 119, 0.48) 5.2% 5.55%, transparent 5.8%),
        linear-gradient(72deg, transparent 0 91%, rgba(184, 255, 53, 0.56) 91.2% 91.55%, transparent 91.8%);
}

.hero__inner {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
    padding-block: clamp(5rem, 14svh, 8rem) 3.5rem;
}

.hero__content {
    max-width: 43rem;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.45rem 0.75rem;
    border: 1px solid rgba(184, 255, 53, 0.35);
    border-radius: var(--radius-pill);
    background: rgba(8, 13, 11, 0.82);
    color: var(--primary);
    font-size: var(--text-sm);
    font-weight: 750;
}

.hero h1 {
    text-wrap: balance;
    text-shadow: 0 3px 28px rgba(0, 0, 0, 0.78);
}

.hero__lead {
    max-width: 60ch;
    color: #e3eae5;
    font-size: var(--text-lg);
    font-weight: 500;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.85);
}

.hero__offers {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-block: 1.5rem;
}

.hero__offer {
    min-width: min(100%, 13rem);
    padding: 0.9rem 1rem;
    border: 1px solid rgba(184, 255, 53, 0.25);
    border-radius: var(--radius-md);
    background: rgba(8, 13, 11, 0.86);
    box-shadow: var(--shadow-sm);
}

.hero__offer strong,
.hero__offer span {
    display: block;
}

.hero__offer strong {
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1.15;
}

.hero__offer span {
    margin-top: 0.35rem;
    color: var(--muted-foreground);
    font-size: var(--text-sm);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.hero--compact {
    min-height: clamp(31rem, 76svh, 42rem);
}

.hero--compact .hero__inner {
    padding-bottom: 3rem;
}

/* ============================================
   GRIDS - Balanced reusable content layouts
   ============================================ */
.feature-grid,
.category-grid,
.stats-grid,
.related-grid,
.review-grid,
.trust-badges,
.steps-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}

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

/* ============================================
   CARDS - Content containers and quick facts
   ============================================ */
.card,
.info-card,
.feature-card,
.category-card,
.stat-highlight,
.step-card,
.review-card,
.related-card {
    min-width: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, var(--surface-strong), var(--surface));
    box-shadow: var(--shadow-sm);
}

.card,
.info-card {
    padding: clamp(1.25rem, 3vw, 2rem);
}

.card--light,
.panel--light {
    border-color: rgba(7, 16, 9, 0.12);
    background: var(--surface-light);
    color: var(--foreground-dark);
}

.card--light h2,
.card--light h3,
.panel--light h2,
.panel--light h3 {
    color: var(--foreground-dark);
}

.feature-card {
    position: relative;
    padding: 1.35rem;
    transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.feature-card:hover {
    border-color: rgba(184, 255, 53, 0.42);
    transform: translateY(-4px);
    box-shadow: var(--shadow-accent);
}

.feature-card--light {
    border-color: rgba(7, 16, 9, 0.1);
    background: var(--surface-light);
    color: var(--foreground-dark);
}

.feature-card--light h3 {
    color: var(--foreground-dark);
}

.feature-card--light p {
    color: #354039;
}

.feature-card__icon,
.stat-highlight__icon,
.trust-badge__icon,
.related-card__icon {
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    margin-bottom: 1rem;
    border: 1px solid rgba(184, 255, 53, 0.24);
    border-radius: var(--radius-md);
    background: rgba(184, 255, 53, 0.09);
    color: var(--primary);
}

.feature-card__icon svg,
.stat-highlight__icon svg,
.trust-badge__icon svg,
.related-card__icon svg,
.step-card__icon svg {
    width: 1.7rem;
    height: 1.7rem;
    stroke: currentColor;
}

.feature-card p,
.category-card p,
.review-card p {
    color: var(--muted-foreground);
}

.feature-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.5rem;
    color: var(--primary);
    font-weight: 750;
    text-decoration: none;
}

.feature-card__link:hover {
    color: var(--foreground-strong);
}

.stat-highlight {
    display: flex;
    flex-direction: column;
    padding: 1.35rem;
}

.stat-highlight__number {
    color: var(--primary);
    font-family: var(--font-display);
    font-size: clamp(2rem, calc(3vw + 1rem), 4rem);
    letter-spacing: -0.05em;
    line-height: 1;
}

.stat-highlight__label {
    margin-top: 0.65rem;
    color: var(--foreground-strong);
    font-weight: 750;
}

.stat-highlight small {
    margin-top: 0.4rem;
    color: var(--muted-foreground);
}

/* ============================================
   SUMMARY, CALLOUTS & QUOTES - Editorial breaks
   ============================================ */
.summary-box {
    max-width: var(--reading-width);
    margin-block: var(--space-xl);
    padding: 1.25rem;
    border: 1px solid rgba(184, 255, 53, 0.34);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(184, 255, 53, 0.1), rgba(45, 228, 119, 0.045));
    box-shadow: var(--shadow-accent);
}

.summary-box__header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.summary-box__header h2 {
    margin: 0;
    font-size: 1.25rem;
}

.summary-box__icon {
    display: grid;
    flex: 0 0 auto;
    width: 2.8rem;
    height: 2.8rem;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: var(--primary-foreground);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 800;
}

.callout {
    display: flex;
    gap: 1rem;
    max-width: var(--reading-width);
    margin-block: var(--space-xl);
    padding: 1.2rem;
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    background: var(--surface-strong);
}

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

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

.callout__icon {
    display: grid;
    flex: 0 0 auto;
    width: 2.5rem;
    height: 2.5rem;
    place-items: center;
    border-radius: 50%;
    background: var(--muted);
    color: var(--primary);
}

.callout__content h3 {
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
}

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

.pull-quote {
    max-width: 56rem;
    margin: var(--space-2xl) 0;
    padding: 1.5rem 0 1.5rem 1.5rem;
    border-left: 5px solid var(--primary);
}

.pull-quote blockquote {
    margin: 0;
    color: var(--foreground-strong);
    font-family: var(--font-display);
    font-size: clamp(1.4rem, calc(1.8vw + 1rem), 2.4rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.3;
}

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

/* ============================================
   LISTS - Football tick treatment
   ============================================ */
.check-list {
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 1.8rem;
}

.check-list li::before {
    content: "";
    position: absolute;
    top: 0.43em;
    left: 0;
    width: 0.85rem;
    height: 0.85rem;
    border: 0.18rem solid var(--primary);
    border-top: 0;
    border-left: 0;
    transform: rotate(45deg);
}

.check-list--compact {
    gap: 0.45rem;
    font-size: var(--text-sm);
}

/* ============================================
   OFFER CARDS - Stadium promotion panels
   ============================================ */
.offer-card {
    position: relative;
    isolation: isolate;
    display: grid;
    min-height: 29rem;
    overflow: clip;
    border: 1px solid rgba(184, 255, 53, 0.22);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 80% 30%, rgba(184, 255, 53, 0.18), transparent 20rem),
        linear-gradient(135deg, #101b16, #080d0b 70%);
    box-shadow: var(--shadow-md);
}

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

.offer-card::before {
    inset: auto -6rem -8rem auto;
    width: 19rem;
    height: 19rem;
    border: 1px solid rgba(184, 255, 53, 0.23);
    border-radius: 50%;
    box-shadow: 0 0 0 3rem rgba(184, 255, 53, 0.025), 0 0 0 6rem rgba(45, 228, 119, 0.025);
}

.offer-card::after {
    top: -5rem;
    right: 10%;
    width: 0.45rem;
    height: 26rem;
    border-radius: var(--radius-pill);
    background: linear-gradient(var(--accent), var(--primary));
    box-shadow: 0 0 32px var(--lime-glow);
    transform: rotate(26deg);
}

.offer-card__content {
    z-index: 2;
    align-self: end;
    padding: clamp(1.4rem, 4vw, 2.5rem);
}

.offer-card__amount {
    margin-bottom: 1rem;
    color: var(--primary);
    font-family: var(--font-display);
    font-size: clamp(2.35rem, calc(5vw + 1rem), 5rem);
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 0.95;
}

.offer-card__content > p:not(.offer-card__amount) {
    max-width: 52ch;
    color: var(--muted-foreground);
}

.offer-card__content .button {
    margin-top: 1.25rem;
}

.offer-card__media {
    position: absolute;
    inset: auto -8% 0 auto;
    z-index: 1;
    width: min(63%, 31rem);
    pointer-events: none;
}

.offer-card__media img {
    width: 100%;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.45));
}

/* ============================================
   CATEGORY CARDS - Framed portfolio previews
   ============================================ */
.category-card {
    overflow: hidden;
    transition: border-color var(--transition-base), transform var(--transition-base);
}

.category-card:hover {
    border-color: rgba(184, 255, 53, 0.38);
    transform: translateY(-4px);
}

.category-card__media {
    aspect-ratio: 7 / 5;
    overflow: hidden;
    background: var(--surface-soft);
}

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

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

.category-card__body {
    padding: 1.1rem;
}

.category-card__body h3 {
    margin-bottom: 0.5rem;
}

.category-card__body a {
    color: var(--primary);
    font-weight: 750;
    text-underline-offset: 0.18em;
}

/* ============================================
   MEDIA SPLIT - Editorial image and copy panels
   ============================================ */
.media-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: linear-gradient(145deg, var(--surface-strong), var(--background-elevated));
    box-shadow: var(--shadow-md);
}

.media-split--light {
    border-color: rgba(7, 16, 9, 0.12);
    background: var(--surface-light);
    color: var(--foreground-dark);
}

.media-split--light h2,
.media-split--light h3 {
    color: var(--foreground-dark);
}

.media-split__content {
    align-self: center;
    padding: clamp(1.4rem, 5vw, 3.5rem);
}

.media-split__prose {
    max-width: 62ch;
    color: var(--muted-foreground);
}

.media-split--light .media-split__prose {
    color: #354039;
}

.media-split__content .button {
    margin-top: 1.25rem;
}

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

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

/* ============================================
   STEPS - Registration and withdrawal flows
   ============================================ */
.steps-grid {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: steps;
}

.step-card {
    position: relative;
    padding: 1.35rem;
    border-color: rgba(184, 255, 53, 0.22);
}

.step-card__number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.step-card__icon {
    display: grid;
    width: 3.6rem;
    height: 3.6rem;
    place-items: center;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-md);
    background: rgba(184, 255, 53, 0.08);
    color: var(--primary);
}

.step-card h3 {
    padding-right: 2.5rem;
}

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

/* ============================================
   TRUST BADGES - Compact licence, support, payment row
   ============================================ */
.trust-badges {
    align-items: stretch;
}

.trust-badge {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(17, 26, 22, 0.82);
}

.trust-badge__icon {
    flex: 0 0 auto;
    margin: 0;
}

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

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

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

.payment-strip span {
    display: inline-flex;
    min-height: 2.5rem;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.8rem;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    background: var(--surface-strong);
    color: var(--foreground);
    font-size: var(--text-sm);
    font-weight: 700;
}

/* ============================================
   TABLES - Data-first comparisons with recommended state
   ============================================ */
.comparison-table-wrapper {
    margin-block: var(--space-xl);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.comparison-table {
    width: 100%;
    min-width: 44rem;
    border-collapse: separate;
    border-spacing: 0;
    color: var(--foreground);
    font-size: var(--text-sm);
}

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

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

.comparison-table thead th {
    border-top: 0;
    background: var(--surface-strong);
    color: var(--foreground-strong);
    font-weight: 750;
}

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

.comparison-table tbody tr:hover > * {
    background: rgba(184, 255, 53, 0.045);
}

.comparison-table .is-recommended {
    background: rgba(184, 255, 53, 0.1);
    box-shadow: inset 1px 0 rgba(184, 255, 53, 0.16), inset -1px 0 rgba(184, 255, 53, 0.16);
}

.comparison-table thead .is-recommended {
    color: var(--primary);
}

.comparison-table .is-recommended-row > * {
    border-top-color: rgba(184, 255, 53, 0.25);
}

/* ============================================
   TABS - Welcome offer selector
   ============================================ */
.tabs {
    min-width: 0;
}

.tabs__list {
    display: flex;
    max-width: 100%;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.25rem 0.25rem 0.75rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--surface);
}

.tabs__button {
    flex: 0 0 auto;
    min-height: 3rem;
    padding: 0.7rem 1.1rem;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-pill);
    background: var(--secondary);
    color: var(--secondary-foreground);
    font-weight: 750;
    cursor: pointer;
}

.tabs__button:hover,
.tabs__button.is-active,
.tabs__button[aria-selected="true"] {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--primary-foreground);
}

.tabs__panels {
    margin-top: 0.75rem;
}

.tabs__panel {
    padding: clamp(1.25rem, 4vw, 2rem);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
}

.tabs__panel[hidden] {
    display: none;
}

/* ============================================
   ACCORDION - Native details/summary FAQ
   ============================================ */
.accordion-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 0.75rem;
}

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

.faq-item[open] {
    border-color: rgba(184, 255, 53, 0.38);
    background: var(--surface-strong);
}

.faq-item summary {
    position: relative;
    display: flex;
    min-height: 3.5rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 3.5rem 1rem 1rem;
    color: var(--foreground-strong);
    font-family: var(--font-display);
    font-weight: 720;
    line-height: 1.35;
    cursor: pointer;
    list-style: none;
}

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

.faq-item summary:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: -3px;
}

.faq-item__indicator {
    position: absolute;
    top: 50%;
    right: 1.2rem;
    width: 1rem;
    height: 1rem;
    transform: translateY(-50%);
}

.faq-item__indicator::before,
.faq-item__indicator::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1rem;
    height: 2px;
    border-radius: var(--radius-pill);
    background: var(--primary);
    transform: translate(-50%, -50%);
    transition: transform var(--transition-base);
}

.faq-item__indicator::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-item__indicator::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

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

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

/* ============================================
   SOCIAL PROOF - Evidence-only review cards
   ============================================ */
.review-grid {
    align-items: stretch;
}

.review-card {
    padding: 1.25rem;
}

.review-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-card__header h3 {
    margin-bottom: 0.2rem;
    font-size: 1.05rem;
}

.review-card__header p,
.review-card__header time {
    color: var(--muted-foreground);
    font-size: var(--text-xs);
}

.review-card__header p {
    margin: 0;
}

.review-card__header time {
    flex: 0 0 auto;
}

.social-proof {
    padding: clamp(1.25rem, 4vw, 2.5rem);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: linear-gradient(145deg, rgba(23, 35, 29, 0.9), rgba(9, 15, 12, 0.96));
}

/* ============================================
   RELATED LINKS - Next-play navigation cards
   ============================================ */
.related-card {
    position: relative;
    display: flex;
    min-height: 11rem;
    flex-direction: column;
    padding: 1.25rem 3rem 1.25rem 1.25rem;
    color: var(--foreground);
    text-decoration: none;
    transition: border-color var(--transition-fast), transform var(--transition-fast), background-color var(--transition-fast);
}

.related-card:hover {
    border-color: var(--primary);
    background: var(--surface-strong);
    transform: translateY(-3px);
}

.related-card strong {
    font-family: var(--font-display);
    font-size: 1.15rem;
}

.related-card > span:not(.related-card__icon, .related-card__arrow) {
    margin-top: 0.45rem;
    color: var(--muted-foreground);
    font-size: var(--text-sm);
}

.related-card__arrow {
    position: absolute;
    right: 1.25rem;
    bottom: 1.25rem;
    color: var(--primary);
    font-size: 1.5rem;
}

/* ============================================
   CTA BAND - Full-width conversion finish
   ============================================ */
.cta-band {
    position: relative;
    isolation: isolate;
    overflow: clip;
    padding: clamp(2rem, 7vw, 5rem) 1rem;
    border: 1px solid rgba(184, 255, 53, 0.2);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 50% 110%, rgba(184, 255, 53, 0.2), transparent 23rem),
        linear-gradient(135deg, #17221d, #080d0b);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.cta-band::before,
.cta-band::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 0.45rem;
    height: 22rem;
    border-radius: var(--radius-pill);
    background: linear-gradient(var(--accent), var(--primary));
    box-shadow: 0 0 32px var(--lime-glow);
}

.cta-band::before {
    top: -8rem;
    left: 8%;
    transform: rotate(-33deg);
}

.cta-band::after {
    right: 8%;
    bottom: -8rem;
    transform: rotate(33deg);
}

.cta-band__content {
    max-width: 48rem;
    margin-inline: auto;
}

.cta-band__content > p {
    color: var(--muted-foreground);
    font-size: var(--text-lg);
}

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

/* ============================================
   FOOTER - Internal links, payments and 18+ notice
   ============================================ */
.site-footer {
    position: relative;
    overflow: clip;
    border-top: 1px solid var(--border);
    background: #060a08;
}

.site-footer__glow {
    position: absolute;
    top: -12rem;
    left: 50%;
    width: min(80vw, 58rem);
    height: 18rem;
    border-radius: 50%;
    background: rgba(184, 255, 53, 0.07);
    filter: blur(70px);
    transform: translateX(-50%);
    pointer-events: none;
}

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

.site-footer__brand,
.site-footer h2 {
    color: var(--foreground-strong);
    font-family: var(--font-display);
    font-weight: 760;
}

.site-footer__brand {
    margin-bottom: 0.7rem;
    font-size: 1.4rem;
}

.site-footer__brand-block p,
.site-footer__licence,
.site-footer__bottom {
    color: var(--muted-foreground);
}

.site-footer__brand-block p {
    max-width: 48ch;
}

.responsible-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 0.75rem;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-pill);
    background: var(--surface);
    font-size: var(--text-sm);
}

.responsible-chip strong {
    display: grid;
    width: 2.25rem;
    height: 2.25rem;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: var(--primary-foreground);
}

.site-footer__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.site-footer h2 {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    letter-spacing: 0;
}

.site-footer ul {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer a {
    color: var(--muted-foreground);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.site-footer__trust .payment-strip {
    margin-bottom: 1rem;
}

.site-footer__licence {
    max-width: 52ch;
    font-size: var(--text-xs);
}

.site-footer__bottom {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
    padding-block: 1.25rem 2rem;
    border-top: 1px solid var(--border);
    font-size: var(--text-xs);
}

.site-footer__bottom p {
    margin: 0;
}

/* ============================================
   PROGRESSIVE REVEAL - Cards stay visible before observation
   ============================================ */
html.motion-ready [data-reveal].is-revealed {
    animation: card-reveal 520ms ease both;
}

@keyframes card-reveal {
    from {
        opacity: 0.72;
        transform: translateY(0.75rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   TABLET - 768px and above
   ============================================ */
@media (min-width: 48rem) {
    :root {
        --header-height: 4.75rem;
    }

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

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

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

    .site-header__inner {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        width: min(100% - 2rem, var(--container-wide));
    }

    .site-brand__mark {
        width: 2.6rem;
        height: 2.6rem;
    }

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

    .menu-toggle {
        display: none;
    }

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

    .primary-nav__list {
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 0.2rem;
    }

    .primary-nav__link {
        min-height: 2.75rem;
        padding: 0.65rem 0.55rem;
        border-bottom: 0;
        font-size: 0.84rem;
        white-space: nowrap;
    }

    .primary-nav__link::after {
        content: "";
        position: absolute;
        right: 0.55rem;
        bottom: 0.2rem;
        left: 0.55rem;
        height: 2px;
        border-radius: var(--radius-pill);
        background: var(--primary);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform var(--transition-fast);
    }

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

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

    .hero {
        align-items: center;
        min-height: clamp(40rem, 82svh, 50rem);
    }

    .hero__media img {
        object-position: center;
    }

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

    .hero__content {
        width: 62%;
    }

    .hero__offer {
        min-width: 14rem;
    }

    .feature-grid,
    .category-grid,
    .stats-grid,
    .related-grid,
    .review-grid,
    .trust-badges,
    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-grid--3 > :last-child:nth-child(odd),
    .stats-grid--3 > :last-child:nth-child(odd),
    .trust-badges > :last-child:nth-child(odd),
    .steps-grid--3 > :last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }

    .offer-card {
        min-height: 32rem;
    }

    .offer-card__content {
        width: 62%;
    }

    .offer-card__media {
        width: min(52%, 32rem);
    }

    .media-split {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-height: 29rem;
    }

    .media-split--reverse .media-split__content {
        order: 2;
    }

    .media-split--reverse .media-split__media {
        order: 1;
    }

    .site-footer__inner {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
        width: min(100% - 3rem, var(--container));
    }

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

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

/* ============================================
   DESKTOP - 1024px and above
   ============================================ */
@media (min-width: 64rem) {
    :root {
        --header-height: 5.5rem;
    }

    .site-header__inner {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 1.25rem;
        width: min(100% - 2.5rem, var(--container-wide));
    }

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

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

    .site-brand__subline {
        font-size: 0.72rem;
    }

    .primary-nav {
        justify-content: center;
    }

    .primary-nav__list {
        justify-content: center;
        gap: clamp(0.2rem, 0.65vw, 0.75rem);
    }

    .primary-nav__link {
        padding-inline: 0.65rem;
        font-size: clamp(0.82rem, 1vw, 1rem);
    }

    .site-header__actions {
        display: flex;
        align-items: center;
        gap: 0.55rem;
    }

    .hero {
        min-height: clamp(43rem, calc(84vh - var(--header-height)), 55rem);
    }

    .hero__inner {
        width: min(100% - 4rem, var(--container-wide));
        padding-left: clamp(2rem, 6vw, 7rem);
    }

    .hero__content {
        width: 50%;
        max-width: 48rem;
    }

    .hero__media::after {
        background:
            linear-gradient(180deg, rgba(4, 8, 6, 0.02), rgba(4, 8, 6, 0.12) 62%, rgba(4, 8, 6, 0.75)),
            linear-gradient(90deg, rgba(4, 8, 6, 0.97) 0%, rgba(4, 8, 6, 0.74) 35%, rgba(4, 8, 6, 0.12) 66%, rgba(4, 8, 6, 0.02));
    }

    .feature-grid,
    .stats-grid,
    .trust-badges,
    .steps-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

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

    .feature-grid--3 > :last-child:nth-child(odd),
    .stats-grid--3 > :last-child:nth-child(odd),
    .trust-badges > :last-child:nth-child(odd),
    .steps-grid--3 > :last-child:nth-child(odd) {
        grid-column: auto;
    }

    .offer-card {
        min-height: 34rem;
    }

    .offer-card__content {
        width: 56%;
    }

    .offer-card__media {
        right: 1%;
        width: min(48%, 34rem);
    }

    .site-footer__inner {
        grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr) minmax(0, 1.1fr);
        gap: 3rem;
        width: min(100% - 4rem, var(--container));
        padding-block: 4rem 2.5rem;
    }

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

    .site-footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        gap: 2rem;
        width: min(100% - 4rem, var(--container));
    }
}

/* ============================================
   WIDE DESKTOP - 1280px maximum composition
   ============================================ */
@media (min-width: 80rem) {
    .site-header__inner {
        width: min(100% - 4rem, var(--container-wide));
    }

    .primary-nav__list {
        gap: 1rem;
    }

    .site-header__actions {
        gap: 0.75rem;
    }

    .button--compact {
        padding-inline: 1.25rem;
    }

    .hero__inner {
        padding-left: clamp(4rem, 9vw, 10rem);
    }

    .hero__content {
        width: 48%;
    }
}

/* ============================================
   REDUCED MOTION - Preserve all content visibility
   ============================================ */
@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;
    }

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