/*
 * ZOCCER CASINO DESIGN SYSTEM
 * Fixed dark football-stadium theme with lime conversion accents.
 */

:root {
    color-scheme: dark;
    --background: #070a09;
    --background-elevated: #0d1210;
    --surface: #111713;
    --surface-2: #171e1a;
    --surface-3: #202822;
    --card: #151b18;
    --foreground: #f4f7f2;
    --foreground-strong: #ffffff;
    --muted: #202722;
    --muted-foreground: #b9c2ba;
    --border: #39433c;
    --border-strong: #556159;
    --primary: #c8f04a;
    --primary-hover: #d7ff58;
    --primary-foreground: #111800;
    --secondary: #228634;
    --secondary-foreground: #ffffff;
    --accent: #63d34a;
    --accent-foreground: #071006;
    --warning: #ffd45a;
    --warning-foreground: #231900;
    --destructive: #d95d63;
    --destructive-foreground: #190306;
    --success: #73dc67;
    --success-foreground: #061305;
    --focus: #e5ff91;
    --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 18px 50px rgba(0, 0, 0, 0.38);
    --glow: 0 0 34px rgba(200, 240, 74, 0.18);
    --radius-sm: 0.55rem;
    --radius-md: 0.9rem;
    --radius-lg: 1.35rem;
    --radius-pill: 999px;
    --space-2xs: 0.35rem;
    --space-xs: 0.55rem;
    --space-sm: 0.8rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4.5rem;
    --header-height: 4.5rem;
    --container: 76rem;
    --measure: 72ch;
    --font-body: "Inter", sans-serif;
    --font-display: "Barlow Condensed", sans-serif;
    --transition: 180ms ease;
}

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

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

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

body {
    min-width: 320px;
    margin: 0;
    overflow-x: clip;
    background:
        radial-gradient(circle at 82% 7%, rgba(53, 130, 61, 0.13), transparent 22rem),
        linear-gradient(180deg, var(--background) 0%, #090d0b 55%, var(--background) 100%);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    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;
}

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

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

a {
    color: inherit;
}

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

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

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

button {
    border: 0;
}

ul,
ol {
    margin-top: 0;
}

section {
    position: relative;
    overflow: clip;
}

details {
    height: fit-content;
}

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

pre {
    padding: var(--space-md);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
}

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

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

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

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

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

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

/* ============================================
   TYPOGRAPHY - Bold matchday hierarchy
   ============================================ */

h1,
h2,
h3,
h4 {
    margin: 0 0 var(--space-md);
    color: var(--foreground-strong);
    font-family: var(--font-body);
    line-height: 1.15;
    letter-spacing: -0.035em;
}

h1 {
    font-size: clamp(2.35rem, calc(7vw + 0.4rem), 4.75rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.85rem, calc(3.5vw + 0.65rem), 3.25rem);
    font-weight: 800;
}

h3 {
    font-size: clamp(1.25rem, calc(1.6vw + 0.8rem), 1.75rem);
    font-weight: 700;
}

h4 {
    font-size: 1.125rem;
    font-weight: 700;
}

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

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

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

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

.display-number {
    color: var(--primary);
    font-family: var(--font-display);
    font-size: clamp(3rem, calc(8vw + 1rem), 7.5rem);
    font-weight: 700;
    line-height: 0.85;
    letter-spacing: -0.035em;
}

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

/* ============================================
   LAYOUT - Mobile-first containers and sections
   ============================================ */

main {
    display: block;
    min-height: 60vh;
}

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

.narrow {
    width: min(100%, var(--measure));
}

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

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

.page-section--surface {
    border-block: 1px solid rgba(85, 97, 89, 0.42);
    background: linear-gradient(135deg, rgba(30, 38, 33, 0.86), rgba(12, 16, 14, 0.96));
}

.page-section--pitch {
    background:
        linear-gradient(rgba(7, 10, 9, 0.64), rgba(7, 10, 9, 0.9)),
        repeating-linear-gradient(90deg, rgba(64, 143, 67, 0.12) 0 5rem, rgba(27, 91, 39, 0.08) 5rem 10rem);
}

.page-section--pitch::after,
.cta-band::after,
.site-footer::after {
    position: absolute;
    right: -5rem;
    bottom: -7rem;
    width: 20rem;
    height: 20rem;
    border: 1px solid rgba(200, 240, 74, 0.18);
    background-image:
        linear-gradient(rgba(200, 240, 74, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 240, 74, 0.1) 1px, transparent 1px);
    background-size: 2rem 2rem;
    content: "";
    pointer-events: none;
    transform: rotate(-14deg);
}

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

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

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

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

.section-head__kicker {
    margin-bottom: var(--space-xs);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

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

.section-head__lead {
    max-width: 68ch;
    margin: 0;
    color: var(--muted-foreground);
    font-size: 1.05rem;
}

.section-head--center .section-head__lead {
    margin-inline: auto;
}

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

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    height: var(--header-height);
    border-bottom: 1px solid rgba(85, 97, 89, 0.48);
    background: var(--background);
}

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

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

.site-brand__mark {
    flex: 0 0 auto;
    width: 2.1rem;
    height: 2.1rem;
    margin-right: 0.5rem;
    filter: drop-shadow(0 0 10px rgba(200, 240, 74, 0.2));
}

.site-brand__bolt {
    fill: var(--primary);
}

.site-brand__bolt-secondary {
    fill: var(--secondary);
}

.site-brand__text {
    display: flex;
    min-width: 0;
    flex-direction: column;
    line-height: 0.93;
    text-transform: uppercase;
}

.site-brand__name {
    overflow: hidden;
    max-width: 8.5rem;
    font-size: 1.04rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-overflow: ellipsis;
}

.site-brand__sub {
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

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

.header-login {
    display: none;
}

.primary-nav {
    display: none;
}

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

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

.primary-nav__list a {
    display: flex;
    align-items: center;
    min-height: 3.25rem;
    padding: 0.7rem 0.25rem;
    border-bottom: 1px solid var(--border);
    color: var(--foreground);
    font-weight: 700;
    text-decoration: none;
}

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

.primary-nav__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

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

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

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

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

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.78rem 1.2rem;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    transition: background-color var(--transition), border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

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

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

.btn--primary:hover {
    border-color: var(--primary-hover);
    background: var(--primary-hover);
    color: var(--primary-foreground);
    box-shadow: 0 0 42px rgba(200, 240, 74, 0.28);
}

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

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

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

.btn--sm {
    min-height: 2.75rem;
    padding: 0.68rem 0.9rem;
    font-size: 0.875rem;
}

.site-header__actions > .btn--primary {
    padding-inline: 0.75rem;
}

.btn--lg {
    min-height: 3.5rem;
    padding: 0.95rem 1.65rem;
    font-size: 1rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    min-height: 2.75rem;
    color: var(--primary);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 0.1em;
    text-underline-offset: 0.2em;
}

.text-link::after {
    margin-left: 0.4rem;
    content: "→";
    text-decoration: none;
}

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

.hero {
    min-height: calc(100svh - var(--header-height));
    padding-block: clamp(2.5rem, 8vw, 6.5rem);
    background:
        radial-gradient(circle at 88% 32%, rgba(122, 179, 219, 0.18), transparent 18rem),
        radial-gradient(circle at 8% 24%, rgba(201, 224, 255, 0.12), transparent 14rem),
        linear-gradient(180deg, #0a0d13 0%, #0b1110 64%, #0b160c 100%);
}

.hero::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.07) 19%, transparent 23%),
        linear-gradient(245deg, transparent 14%, rgba(255, 255, 255, 0.06) 15%, transparent 19%);
    content: "";
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
    gap: var(--space-xl);
}

.hero__content {
    min-width: 0;
}

.hero__eyebrow {
    margin-bottom: var(--space-sm);
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero__title {
    max-width: 16ch;
}

.hero__title strong {
    display: block;
    margin-top: 0.18em;
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 1.26em;
    font-weight: 700;
    line-height: 0.92;
}

.hero__lead {
    max-width: 58ch;
    color: var(--foreground);
    font-size: 1.05rem;
}

.hero__actions {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    margin-top: var(--space-lg);
    gap: var(--space-sm);
}

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

.hero__visual::after {
    position: absolute;
    right: 0;
    bottom: 2%;
    left: 0;
    height: 16%;
    background: radial-gradient(ellipse, rgba(200, 240, 74, 0.25), transparent 66%);
    content: "";
    filter: blur(18px);
}

.hero__visual img[data-visual-role="hero-foreground"] {
    position: absolute;
    z-index: 1;
    right: 50%;
    bottom: 0;
    width: min(32rem, 112%);
    max-height: 100%;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.48));
    transform: translateX(50%);
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    margin-top: var(--space-md);
    gap: 0.55rem 1rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.hero__meta span {
    display: inline-flex;
    align-items: center;
}

.hero__meta span::before {
    width: 0.45rem;
    height: 0.45rem;
    margin-right: 0.45rem;
    border-radius: 50%;
    background: var(--primary);
    content: "";
}

/* ============================================
   CARDS - Dense, dark content containers
   ============================================ */

.card,
.info-card,
.game-card,
.bonus-figure,
.stat-block,
.stat-highlight,
.review-card {
    min-width: 0;
}

.card,
.info-card {
    padding: var(--space-lg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, var(--surface-2), var(--card));
    box-shadow: var(--shadow-sm);
}

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

.game-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, var(--surface-2), var(--card));
    box-shadow: var(--shadow-sm);
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.game-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), var(--glow);
}

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

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

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

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

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

.media-split__media {
    min-height: 18rem;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-md);
}

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

.media-split__body {
    min-width: 0;
}

.media-split__body > p,
.media-split__body > ul {
    max-width: var(--measure);
}

/* ============================================
   STATS & BONUS FIGURES - Bold numeric proof
   ============================================ */

.stats-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-block: 1px solid var(--border);
    background: rgba(12, 17, 14, 0.94);
}

.stat-block {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 8.5rem;
    padding: var(--space-md);
    flex-direction: column;
    text-align: center;
}

.stat-block:nth-child(odd) {
    border-right: 1px solid var(--border);
}

.stat-block__icon {
    margin-bottom: var(--space-xs);
    color: var(--foreground);
    font-size: 1.35rem;
}

.stat-block__number {
    color: var(--primary);
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 9vw, 4.4rem);
    font-weight: 700;
    line-height: 0.9;
}

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

.stat-block__note {
    margin-top: 0.2rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

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

.bonus-figure {
    display: flex;
    min-height: 9rem;
    padding: var(--space-lg);
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgba(38, 45, 40, 0.96), rgba(17, 22, 19, 0.98));
    box-shadow: var(--shadow-sm);
}

.bonus-figure__value {
    color: var(--primary);
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 12vw, 5rem);
    font-weight: 700;
    line-height: 0.88;
}

.bonus-figure__label {
    margin-top: var(--space-sm);
    color: var(--foreground-strong);
    font-size: 1.12rem;
    font-weight: 800;
}

.bonus-figure__note {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.stat-highlight {
    padding: var(--space-lg);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    background: var(--surface-2);
}

.stat-highlight__value,
.stat-highlight__label,
.stat-highlight__source {
    display: block;
}

.stat-highlight__value {
    color: var(--primary);
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 0.9;
}

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

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

/* ============================================
   LISTS & PROCESS - Scan-friendly information
   ============================================ */

.check-list {
    display: grid;
    padding: 0;
    list-style: none;
    gap: 0.7rem;
}

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

.check-list li::before {
    position: absolute;
    top: 0.5em;
    left: 0;
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 50%;
    background: var(--primary);
    color: var(--primary-foreground);
    content: "✓";
    font-size: 0.7rem;
    font-weight: 900;
    line-height: 0.9rem;
    text-align: center;
}

.check-list--warning li::before {
    background: var(--warning);
    color: var(--warning-foreground);
    content: "!";
}

.step-list {
    display: grid;
    padding: 0;
    counter-reset: steps;
    list-style: none;
    gap: var(--space-md);
}

.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: 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(steps, decimal-leading-zero);
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
}

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

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

.pros-cons {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: var(--space-md);
}

.pros-cons__col {
    min-width: 0;
    padding: var(--space-lg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
}

.pros-cons__col--pro {
    border-top: 4px solid var(--success);
}

.pros-cons__col--con {
    border-top: 4px solid var(--warning);
}

.pros-cons__col ul {
    margin-bottom: 0;
    padding-left: 1.25rem;
}

/* ============================================
   TABLES - High-density factual comparisons
   ============================================ */

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

.data-table {
    width: 100%;
    min-width: 42rem;
    border-collapse: collapse;
    font-size: 0.94rem;
}

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

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

.data-table thead th {
    background: var(--surface-3);
    color: var(--primary);
    font-size: 0.875rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

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

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

.data-table tbody tr:hover > * {
    background: rgba(200, 240, 74, 0.055);
}

.data-table--highlight th:nth-child(2),
.data-table--highlight td:nth-child(2) {
    background: rgba(200, 240, 74, 0.09);
}

/* ============================================
   BADGES & TRUST - Payment and licence signals
   ============================================ */

.badge-block__title {
    font-size: 1rem;
}

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

.badge-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: 0.65rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface-2);
    color: var(--foreground);
    font-weight: 800;
    filter: saturate(0.35);
}

.badge-row--compact {
    gap: 0.5rem;
}

.badge-row--compact .badge-chip {
    min-height: 2.65rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
}

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

.trust-badge {
    display: flex;
    align-items: center;
    min-height: 6.5rem;
    padding: var(--space-md);
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    text-align: center;
}

.trust-badge__mark {
    color: var(--muted-foreground);
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 700;
}

.trust-badge__label {
    margin-top: var(--space-xs);
    color: var(--foreground);
    font-size: 0.875rem;
    font-weight: 700;
}

.age-badge {
    display: inline-grid;
    width: 3rem;
    height: 3rem;
    flex: 0 0 auto;
    place-items: center;
    border: 2px solid var(--muted-foreground);
    border-radius: 50%;
    color: var(--foreground-strong);
    font-weight: 800;
}

/* ============================================
   ENGAGEMENT BOXES - Summaries, notes and quotes
   ============================================ */

.tldr,
.callout {
    max-width: var(--measure);
    padding: var(--space-lg);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(32, 40, 34, 0.96), rgba(16, 21, 18, 0.98));
    box-shadow: var(--shadow-sm);
}

.tldr {
    border-left: 5px solid var(--primary);
}

.tldr__title,
.callout__title {
    margin-bottom: var(--space-sm);
    color: var(--foreground-strong);
    font-size: 1.05rem;
    font-weight: 800;
}

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

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

.callout--note {
    border-left: 5px solid var(--accent);
}

.callout--warning {
    border-left: 5px solid var(--warning);
}

.callout--danger {
    border-left: 5px solid var(--destructive);
}

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

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

.pull-quote p {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.65rem, calc(2vw + 1rem), 2.6rem);
    font-weight: 600;
    line-height: 1.2;
}

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

/* ============================================
   FAQ ACCORDIONS - Native accessible disclosure
   ============================================ */

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

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

.faq__question {
    position: relative;
    min-height: 4rem;
    padding: 1.1rem 3rem 1.1rem 0;
    color: var(--foreground-strong);
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::after {
    position: absolute;
    top: 50%;
    right: 0.4rem;
    color: var(--primary);
    content: "+";
    font-family: var(--font-display);
    font-size: 1.8rem;
    line-height: 1;
    transform: translateY(-50%);
    transition: transform var(--transition);
}

.faq__item[open] .faq__question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq__answer {
    max-width: var(--measure);
    padding: 0 2.5rem 1.25rem 0;
    color: var(--muted-foreground);
}

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

/* ============================================
   CRO PATTERNS - CTA and social proof modules
   ============================================ */

.cta-band {
    padding-block: var(--space-3xl);
    border-block: 1px solid rgba(200, 240, 74, 0.28);
    background:
        radial-gradient(circle at 50% 100%, rgba(91, 171, 64, 0.2), transparent 24rem),
        linear-gradient(135deg, #101711, #090d0a);
    text-align: center;
}

.cta-band__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
}

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

.cta-band__text {
    max-width: 60ch;
    color: var(--muted-foreground);
}

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

.social-proof,
.review-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-md);
}

.review-card {
    padding: var(--space-lg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.review-card__rating {
    display: flex;
    margin-bottom: var(--space-sm);
    color: var(--primary);
    gap: 0.15rem;
}

.review-card blockquote {
    margin: 0;
    color: var(--foreground);
}

.review-card__author {
    display: block;
    margin-top: var(--space-md);
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* ============================================
   BREADCRUMBS - Compact wayfinding
   ============================================ */

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

.breadcrumbs ol {
    display: flex;
    width: max-content;
    min-width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 0.45rem;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

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

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

/* ============================================
   FOOTER - Navigation, payments and legal context
   ============================================ */

.site-footer {
    position: relative;
    overflow: clip;
    border-top: 1px solid var(--border);
    background: #090c0b;
}

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

.site-brand--static {
    pointer-events: none;
}

.site-footer__brand p {
    max-width: 36rem;
    margin-top: var(--space-md);
    color: var(--muted-foreground);
}

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

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

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

.footer-col li + li {
    margin-top: 0.45rem;
}

.footer-col a {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    color: var(--muted-foreground);
    text-decoration: none;
}

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

.site-footer__legal {
    position: relative;
    z-index: 1;
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
    padding-block: var(--space-lg);
    border-top: 1px solid var(--border);
}

.site-footer__licence {
    display: flex;
    align-items: flex-start;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    gap: var(--space-md);
}

.site-footer__copy {
    margin: var(--space-md) 0 0;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* ============================================
   SCROLL REVEAL - Progressive enhancement only
   ============================================ */

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

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

/* ============================================
   LARGE MOBILE - Restore secondary header action
   ============================================ */

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

/* ============================================
   TABLET - Two-column content and denser grids
   ============================================ */

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

    .container,
    .section-inner,
    .hero__inner,
    .site-footer__inner,
    .site-footer__legal,
    .breadcrumbs {
        width: min(100% - 3rem, var(--container));
    }

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

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

    .hero__actions {
        align-items: center;
        flex-direction: row;
    }

    .hero__visual {
        min-height: 28rem;
    }

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

    .stat-block {
        border-right: 1px solid var(--border);
    }

    .stat-block:last-child {
        border-right: 0;
    }

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

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

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

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

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

    .site-footer__inner {
        grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    }

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

/* ============================================
   DESKTOP - Wide stadium composition and inline nav
   ============================================ */

@media (min-width: 1024px) {
    .site-header {
        background: rgba(7, 10, 9, 0.97);
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
    }

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

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

    .site-brand__name {
        max-width: none;
        font-size: 1.28rem;
    }

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

    .nav-toggle,
    .site-header__actions {
        display: none;
    }

    .primary-nav,
    .primary-nav.is-open {
        position: static;
        z-index: auto;
        display: flex;
        flex: 1 1 auto;
        align-items: center;
        justify-content: flex-end;
        max-width: none;
        padding: 0;
        overflow: visible;
        border: 0;
        background: transparent;
        gap: var(--space-lg);
    }

    .primary-nav__list {
        align-items: center;
        flex-direction: row;
        justify-content: flex-end;
        gap: clamp(0.45rem, 1vw, 1rem);
    }

    .primary-nav__list a {
        position: relative;
        min-height: 3rem;
        padding: 0.5rem 0.2rem;
        border: 0;
        font-size: clamp(0.78rem, 0.82vw, 0.9rem);
        white-space: nowrap;
    }

    .primary-nav__list a::after {
        position: absolute;
        right: 0;
        bottom: 0.25rem;
        left: 0;
        height: 2px;
        background: var(--primary);
        content: "";
        transform: scaleX(0);
        transform-origin: left;
        transition: transform var(--transition);
    }

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

    .primary-nav__actions {
        display: flex;
        flex: 0 0 auto;
        grid-template-columns: none;
        margin: 0;
        gap: var(--space-sm);
    }

    .hero {
        min-height: min(52rem, calc(100vh - var(--header-height)));
        padding-block: clamp(4rem, 7vw, 7rem);
    }

    .hero__inner {
        grid-template-columns: minmax(0, 1.18fr) minmax(22rem, 0.82fr);
        gap: clamp(2rem, 5vw, 5rem);
    }

    .hero__visual {
        min-height: 39rem;
        align-self: stretch;
    }

    .hero__visual img[data-visual-role="hero-foreground"] {
        right: 46%;
        width: min(43rem, 128%);
    }

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

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

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

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

    .site-footer__inner {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr) minmax(0, 1fr);
    }

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

/* ============================================
   WIDE DESKTOP - Maximum content width
   ============================================ */

@media (min-width: 1280px) {
    .primary-nav__list {
        gap: 1rem;
    }

    .primary-nav__list a {
        font-size: 0.9rem;
    }

    .hero__title {
        max-width: 17ch;
    }
}

/* ============================================
   NARROW MOBILE - Preserve controls at 320px
   ============================================ */

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

    .site-brand__mark {
        width: 1.8rem;
        height: 1.8rem;
        margin-right: 0.35rem;
    }

    .site-brand__name {
        max-width: 4.8rem;
        font-size: 0.9rem;
    }

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

    .site-header__actions > .btn--primary {
        min-height: 2.65rem;
        padding-inline: 0.62rem;
        font-size: 0.78rem;
    }

    .site-header__actions {
        gap: 0.25rem;
    }

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

/* ============================================
   HOMEPAGE - Integrated artwork and split blocks
   ============================================ */

.content-grid--start {
    align-items: start;
}

.media-split__media--bare {
    display: grid;
    min-height: auto;
    overflow: visible;
    place-items: end center;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.media-split__media--bare img {
    width: auto;
    max-width: 100%;
    max-height: 26rem;
    min-height: 0;
    object-fit: contain;
    filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.55));
}

.homepage-updated {
    margin: calc(-1 * var(--space-lg)) 0 var(--space-xl);
    color: var(--muted-foreground);
    text-align: center;
}

.seo-text > p {
    max-width: var(--measure);
    color: var(--muted-foreground);
}

.seo-text strong {
    color: var(--foreground-strong);
}

@media (min-width: 768px) {
    .media-split__media--bare img {
        max-height: 30rem;
    }
}

/* ============================================
   REDUCED MOTION - Accessible static experience
   ============================================ */

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