/* ============================================
   DUDEPIN CASINO DESIGN SYSTEM
   Fixed dark theme with restrained neon bowling accents
   ============================================ */

:root {
    color-scheme: dark;
    --background: #0b0712;
    --background-elevated: #100a19;
    --surface: #151020;
    --surface-strong: #1c1428;
    --surface-soft: #24192f;
    --foreground: #f7f1fa;
    --foreground-strong: #fff9fd;
    --muted-foreground: #c8bdcf;
    --subtle-foreground: #ad9fb7;
    --border: #3b2b49;
    --border-strong: #644078;
    --primary: #b60b79;
    --primary-hover: #d11391;
    --primary-foreground: #fff8fc;
    --secondary: #3d2562;
    --secondary-hover: #51317f;
    --secondary-foreground: #fbf7ff;
    --accent: #ff78cf;
    --accent-soft: #4b173c;
    --accent-foreground: #230716;
    --link: #ff91da;
    --link-hover: #ffc0e9;
    --destructive: #c2364e;
    --destructive-foreground: #fff7f8;
    --warning-surface: #352614;
    --warning-foreground: #ffe8b5;
    --success-surface: #12342e;
    --success-foreground: #d0fff3;
    --info-surface: #172b46;
    --info-foreground: #dcecff;
    --danger-surface: #3b171f;
    --danger-foreground: #ffdbe1;
    --focus: #ff9add;
    --transparent: transparent;
    --overlay: rgba(7, 4, 12, 0.82);
    --header-overlay: rgba(11, 7, 18, 0.94);
    --pink-glow: rgba(255, 66, 183, 0.22);
    --purple-glow: rgba(126, 63, 242, 0.22);
    --soft-glow: rgba(255, 120, 207, 0.1);
    --shadow-soft: 0 18px 60px rgba(4, 2, 9, 0.34);
    --shadow-card: 0 16px 34px rgba(4, 2, 9, 0.28);
    --shadow-neon: 0 0 0 1px rgba(255, 120, 207, 0.12), 0 18px 50px rgba(182, 11, 121, 0.18);
    --gradient-page: radial-gradient(circle at 82% 8%, var(--purple-glow), var(--transparent) 30%), radial-gradient(circle at 12% 38%, var(--pink-glow), var(--transparent) 27%), linear-gradient(180deg, var(--background-elevated), var(--background));
    --gradient-card: linear-gradient(145deg, var(--surface-strong), var(--surface));
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary-hover));
    --gradient-accent: linear-gradient(135deg, var(--accent), #b89cff);
    --font-body: "Manrope", sans-serif;
    --font-display: "Space Grotesk", sans-serif;
    --radius-sm: 0.65rem;
    --radius-md: 1rem;
    --radius-lg: 1.45rem;
    --radius-xl: 2rem;
    --radius-pill: 999px;
    --space-2xs: 0.35rem;
    --space-xs: 0.55rem;
    --space-sm: 0.8rem;
    --space-md: 1rem;
    --space-lg: 1.4rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4.5rem;
    --space-4xl: 6.5rem;
    --container: 80rem;
    --content: 48rem;
    --header-height: 4.5rem;
    --transition-fast: 160ms ease;
    --transition-base: 260ms ease;
}

/* ============================================
   RESET & OVERFLOW SAFETY
   Predictable sizing and resilient narrow-screen behavior
   ============================================ */

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

html {
    min-width: 20rem;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + var(--space-lg));
}

body {
    min-width: 20rem;
    min-height: 100vh;
    margin: 0;
    overflow-x: clip;
    background: var(--gradient-page);
    background-attachment: fixed;
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

main {
    min-height: 60vh;
}

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

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

section {
    overflow: clip;
}

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

a {
    color: var(--link);
    text-decoration-color: currentColor;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.18em;
}

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

a[href^="http"],
a[href^="mailto:"],
a[href^="tel:"] {
    overflow-wrap: anywhere;
}

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

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

button,
summary,
a {
    -webkit-tap-highlight-color: var(--transparent);
}

button {
    border: 0;
}

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

pre,
.code-block {
    min-width: 0;
    padding: var(--space-md);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
}

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

details {
    height: fit-content;
}

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

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

.skip-link {
    position: fixed;
    top: var(--space-sm);
    left: var(--space-sm);
    z-index: 2000;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    background: var(--accent);
    color: var(--accent-foreground);
    font-weight: 800;
    transform: translateY(-150%);
    transition: transform var(--transition-fast);
}

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

/* ============================================
   TYPOGRAPHY
   Relaxed editorial rhythm with compact display headings
   ============================================ */

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

h1 {
    font-size: clamp(2.35rem, calc(5vw + 0.8rem), 5.6rem);
    line-height: 0.98;
}

h2 {
    font-size: clamp(1.75rem, calc(2.4vw + 0.8rem), 3.25rem);
}

h3 {
    font-size: clamp(1.2rem, calc(0.8vw + 1rem), 1.55rem);
}

h4 {
    font-size: 1.08rem;
}

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

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

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    margin: 0 0 var(--space-sm);
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.35;
    text-transform: uppercase;
}

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

.text-gradient {
    background: var(--gradient-accent);
    background-clip: text;
    color: var(--transparent);
    -webkit-background-clip: text;
}

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

.text-link::after {
    margin-left: var(--space-xs);
    content: "→";
    transition: transform var(--transition-fast);
}

.text-link:hover::after {
    transform: translateX(0.25rem);
}

/* ============================================
   LAYOUT PRIMITIVES
   Shared containers, sections and balanced responsive grids
   ============================================ */

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

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

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

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

.section--surface {
    background: linear-gradient(180deg, var(--transparent), var(--soft-glow), var(--transparent));
}

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

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

.section-heading p {
    max-width: 44rem;
    color: var(--muted-foreground);
}

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

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

.prose > * + * {
    margin-top: var(--space-lg);
}

.prose h2,
.prose h3,
.prose h4 {
    color: var(--foreground-strong);
}

.prose h2 {
    margin-top: var(--space-3xl);
}

.prose h3 {
    margin-top: var(--space-2xl);
}

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

.prose li + li {
    margin-top: var(--space-xs);
}

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

.feature-grid,
.card-grid,
.evidence-grid,
.social-proof-grid,
.stats-grid,
.logo-grid,
.game-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-md);
    align-items: start;
}

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

/* ============================================
   HEADER & NAVIGATION
   Opaque mobile drawer and compact desktop navigation
   ============================================ */

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

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

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

.site-brand__mark {
    display: grid;
    flex: 0 0 auto;
    width: 2.35rem;
    height: 2.35rem;
    place-items: center;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    background: var(--gradient-primary);
    box-shadow: 0 0 24px var(--pink-glow);
    color: var(--foreground-strong);
}

.site-brand__mark svg {
    width: 1.85rem;
    height: 1.85rem;
    overflow: visible;
}

.site-brand__mark circle:first-child {
    fill: var(--transparent);
    stroke: currentColor;
    stroke-width: 1.6;
}

.site-brand__mark .site-brand__hole {
    fill: currentColor;
    stroke: none;
}

.site-brand__mark path {
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.6;
}

.site-brand__text {
    display: flex;
    min-width: 0;
    flex-direction: column;
    font-family: var(--font-display);
    line-height: 1;
}

.site-brand__text strong {
    overflow: hidden;
    font-size: 1.05rem;
    letter-spacing: -0.03em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-brand__text small {
    margin-top: 0.2rem;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.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;
    padding: var(--space-lg) max(var(--space-md), calc((100vw - var(--container)) / 2));
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-xl);
    background: var(--background);
}

.primary-nav__links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-xs);
}

.primary-nav__links a {
    display: flex;
    min-height: 3rem;
    align-items: center;
    padding: 0.65rem var(--space-md);
    border: 1px solid var(--transparent);
    border-radius: var(--radius-md);
    color: var(--foreground);
    font-weight: 700;
    text-decoration: none;
}

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

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

.header-actions {
    display: none;
    margin-left: auto;
    align-items: center;
    gap: var(--space-md);
}

.header-login {
    display: none;
    min-height: 2.75rem;
    align-items: center;
    color: var(--foreground);
    font-weight: 750;
    text-decoration: none;
}

.menu-toggle {
    position: relative;
    z-index: 1001;
    display: inline-flex;
    width: 2.75rem;
    height: 2.75rem;
    margin-left: auto;
    padding: 0.65rem;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.28rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--foreground);
    cursor: pointer;
}

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

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

/* ============================================
   BUTTONS & ACTIONS
   High-contrast touch targets for conversion and navigation
   ============================================ */

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

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

.button--primary {
    background: var(--primary);
    box-shadow: 0 10px 30px var(--pink-glow);
    color: var(--primary-foreground);
}

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

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

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

.button--accent {
    background: var(--gradient-accent);
    color: var(--accent-foreground);
}

.button--accent:hover {
    color: var(--accent-foreground);
    box-shadow: 0 14px 34px var(--purple-glow);
}

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

.button--ghost:hover {
    border-color: var(--accent);
    background: var(--surface-strong);
    color: var(--foreground-strong);
}

.button--small {
    min-height: 2.75rem;
    padding-inline: 1rem;
    font-size: 0.9rem;
}

.button--large {
    min-height: 3.35rem;
    padding-inline: 1.45rem;
}

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

/* ============================================
   HERO SYSTEM
   Integrated foreground artwork with CSS-built neon atmosphere
   ============================================ */

.hero,
.page-hero {
    position: relative;
    isolation: isolate;
    min-height: calc(100svh - var(--header-height));
    padding-block: var(--space-2xl);
    overflow: clip;
}

.hero::before,
.page-hero::before {
    position: absolute;
    z-index: -2;
    width: clamp(16rem, 52vw, 48rem);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, var(--purple-glow), var(--transparent) 68%);
    content: "";
    inset: 8% -15% auto auto;
}

.hero::after,
.page-hero::after {
    position: absolute;
    z-index: -1;
    right: -8%;
    bottom: 6%;
    left: 42%;
    height: 32%;
    border-top: 1px solid var(--border-strong);
    background: repeating-linear-gradient(100deg, var(--transparent) 0 3.5rem, var(--soft-glow) 3.55rem 3.65rem);
    content: "";
    opacity: 0.7;
    transform: perspective(28rem) rotateX(58deg) rotateZ(-4deg);
    transform-origin: bottom;
}

.hero__grid,
.page-hero__grid {
    position: relative;
    z-index: 1;
    min-height: inherit;
    align-items: center;
}

.hero__copy,
.page-hero__copy {
    min-width: 0;
}

.hero__copy > p:not(.eyebrow),
.page-hero__copy > p:not(.eyebrow) {
    max-width: 42rem;
    color: var(--muted-foreground);
}

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

.hero__meta {
    display: flex;
    margin-top: var(--space-lg);
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.hero__meta span,
.tag,
.status-pill {
    display: inline-flex;
    min-height: 2rem;
    padding: 0.35rem 0.75rem;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    background: var(--surface);
    color: var(--muted-foreground);
    font-size: 0.875rem;
    font-weight: 700;
}

.hero__art,
.page-hero__art {
    position: relative;
    display: grid;
    min-height: 22rem;
    place-items: end center;
}

.hero__art::before,
.page-hero__art::before {
    position: absolute;
    z-index: -1;
    right: 5%;
    bottom: 4%;
    left: 5%;
    height: 28%;
    border-radius: 50%;
    background: radial-gradient(ellipse, var(--pink-glow), var(--transparent) 68%);
    filter: blur(0.8rem);
    content: "";
}

.hero-foreground,
[data-visual-role="hero-foreground"] {
    width: min(100%, 42rem);
    max-height: 42rem;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 1.5rem 2.5rem var(--overlay));
}

.hero-note {
    margin-top: var(--space-md);
    padding-left: var(--space-md);
    border-left: 3px solid var(--accent);
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

/* ============================================
   CARDS
   Premium content containers for features, media and evidence
   ============================================ */

.feature-card,
.content-card,
.media-card,
.evidence-card,
.social-proof-card,
.testimonial-card,
.info-card {
    min-width: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--gradient-card);
    box-shadow: var(--shadow-card);
}

.feature-card,
.content-card,
.evidence-card,
.social-proof-card,
.testimonial-card,
.info-card {
    padding: var(--space-lg);
}

.feature-card,
.content-card,
.evidence-card {
    position: relative;
    overflow: hidden;
}

.feature-card::after,
.evidence-card::after {
    position: absolute;
    right: -3rem;
    bottom: -4rem;
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    background: radial-gradient(circle, var(--purple-glow), var(--transparent) 70%);
    content: "";
    pointer-events: none;
}

.feature-card--featured {
    border-color: var(--accent);
    box-shadow: var(--shadow-neon);
}

.feature-card__icon {
    display: grid;
    width: 3rem;
    height: 3rem;
    margin-bottom: var(--space-md);
    place-items: center;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-md);
    background: var(--accent-soft);
    color: var(--accent);
}

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

.feature-card p,
.content-card__body,
.evidence-card p,
.media-card p,
.social-proof-card p,
.testimonial-card p,
.info-card p {
    color: var(--muted-foreground);
}

.content-card--accent {
    border-color: var(--border-strong);
    background: linear-gradient(145deg, var(--accent-soft), var(--surface));
}

.content-card--warning {
    border-color: var(--border-strong);
    background: var(--warning-surface);
    color: var(--warning-foreground);
}

.content-card--warning h3,
.content-card--warning .content-card__body {
    color: var(--warning-foreground);
}

.media-card {
    overflow: hidden;
}

.media-card__visual,
.media-frame {
    position: relative;
    overflow: hidden;
    background: var(--surface-soft);
}

.media-card__visual {
    aspect-ratio: 3 / 2;
}

.media-card__visual img,
.media-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.media-frame {
    min-width: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

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

.evidence-card__top {
    display: flex;
    margin-bottom: var(--space-md);
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-sm);
}

.evidence-card__top .feature-card__icon {
    margin: 0;
}

.evidence-card small {
    display: block;
    margin-top: var(--space-md);
    color: var(--subtle-foreground);
    font-size: 0.875rem;
}

.status-pill {
    min-height: 1.8rem;
    background: var(--surface-soft);
    color: var(--foreground);
    white-space: nowrap;
}

/* ============================================
   SUMMARY, CALLOUTS & EDITORIAL BREAKS
   Citation-friendly visual pauses for long-form content
   ============================================ */

.summary-box {
    min-width: 0;
    padding: var(--space-lg);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--surface-strong), var(--accent-soft));
    box-shadow: var(--shadow-neon);
}

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

.summary-box__heading .icon-symbol {
    flex: 0 0 auto;
    color: var(--accent);
}

.summary-box__heading h2 {
    margin: 0;
    font-size: clamp(1.3rem, calc(1vw + 1rem), 1.8rem);
}

.check-list {
    display: grid;
    margin: var(--space-lg) 0 0;
    padding: 0;
    gap: var(--space-sm);
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 1.7rem;
    color: var(--muted-foreground);
}

.check-list li::before {
    position: absolute;
    top: 0.55rem;
    left: 0;
    width: 0.75rem;
    height: 0.4rem;
    border-bottom: 2px solid var(--accent);
    border-left: 2px solid var(--accent);
    content: "";
    transform: rotate(-45deg);
}

.callout {
    display: grid;
    min-width: 0;
    padding: var(--space-lg);
    grid-template-columns: 0.35rem minmax(0, 1fr);
    gap: var(--space-md);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
}

.callout__marker {
    min-height: 100%;
    border-radius: var(--radius-pill);
    background: var(--accent);
}

.callout h3 {
    margin-bottom: var(--space-xs);
    font-size: 1.12rem;
}

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

.callout--warning {
    border-color: var(--border-strong);
    background: var(--warning-surface);
}

.callout--warning .callout__marker {
    background: var(--warning-foreground);
}

.callout--warning h3,
.callout--warning .callout__body {
    color: var(--warning-foreground);
}

.callout--danger {
    background: var(--danger-surface);
}

.callout--danger .callout__marker {
    background: var(--danger-foreground);
}

.callout--danger h3,
.callout--danger .callout__body {
    color: var(--danger-foreground);
}

.callout--success {
    background: var(--success-surface);
}

.callout--success .callout__marker {
    background: var(--success-foreground);
}

.callout--success h3,
.callout--success .callout__body {
    color: var(--success-foreground);
}

.stat-highlight {
    display: flex;
    min-width: 0;
    padding: var(--space-lg);
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
}

.stat-highlight strong {
    color: var(--accent);
    font-family: var(--font-display);
    font-size: clamp(2.2rem, calc(3vw + 1rem), 4.5rem);
    letter-spacing: -0.055em;
    line-height: 1;
}

.stat-highlight span {
    margin-top: var(--space-sm);
    color: var(--foreground);
    font-weight: 750;
}

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

.pull-quote {
    position: relative;
    margin: var(--space-2xl) 0;
    padding: var(--space-xl) 0 var(--space-xl) var(--space-lg);
    border-left: 4px solid var(--accent);
}

.pull-quote::before {
    position: absolute;
    top: -1.2rem;
    left: var(--space-md);
    color: var(--accent);
    content: "“";
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 1;
}

.pull-quote blockquote {
    margin: 0;
    color: var(--foreground-strong);
    font-family: var(--font-display);
    font-size: clamp(1.35rem, calc(1.5vw + 1rem), 2.25rem);
    font-weight: 550;
    line-height: 1.35;
}

.pull-quote figcaption {
    margin-top: var(--space-md);
    color: var(--subtle-foreground);
    font-size: 0.875rem;
}

/* ============================================
   STEPS, TAGS & TRUST BADGES
   Scannable process and proof-status elements
   ============================================ */

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

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

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

.step-list h3 {
    margin-bottom: var(--space-xs);
}

.step-list li div div {
    color: var(--muted-foreground);
}

.trust-badges {
    padding: var(--space-lg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-badges__title {
    margin-bottom: var(--space-md);
    color: var(--subtle-foreground);
    font-size: 0.875rem;
    font-weight: 750;
    text-align: center;
}

.trust-badges__row,
.payment-marks,
.provider-marks {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    align-items: center;
    justify-content: center;
}

.trust-badges__row span,
.payment-marks span,
.provider-marks span {
    display: inline-flex;
    min-height: 2.75rem;
    padding: 0.65rem 1rem;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--muted-foreground);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    filter: grayscale(0.35);
}

/* ============================================
   TABLES
   Accessible comparison and status tables with highlighted columns
   ============================================ */

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

.table-wrapper {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
}

.comparison-table,
.prose table {
    width: 100%;
    min-width: 42rem;
    border-collapse: collapse;
    color: var(--muted-foreground);
    font-size: 0.94rem;
}

.comparison-table caption,
.prose table caption {
    padding: var(--space-md) var(--space-lg);
    color: var(--foreground-strong);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 650;
    text-align: left;
}

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

.comparison-table thead th,
.prose table thead th {
    background: var(--surface-strong);
    color: var(--foreground-strong);
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.comparison-table tbody th,
.prose table tbody th {
    color: var(--foreground);
    font-weight: 750;
}

.comparison-table .is-highlighted {
    background: var(--accent-soft);
    color: var(--foreground-strong);
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td,
.prose table tr:last-child th,
.prose table tr:last-child td {
    border-bottom: 0;
}

/* ============================================
   FAQ & NATIVE DISCLOSURES
   One-column accessible accordions with visible state indicator
   ============================================ */

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

.faq-item {
    min-width: 0;
    align-self: start;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    transition: border-color var(--transition-base), background-color var(--transition-base);
}

.faq-item[open] {
    border-color: var(--border-strong);
    background: var(--surface-strong);
}

.faq-item summary {
    position: relative;
    min-height: 3.6rem;
    padding: 1rem 3.5rem 1rem var(--space-lg);
    color: var(--foreground-strong);
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 650;
    line-height: 1.45;
    list-style: none;
}

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

.faq-item summary::before,
.faq-item summary::after {
    position: absolute;
    top: 50%;
    right: var(--space-lg);
    width: 1rem;
    height: 2px;
    border-radius: var(--radius-pill);
    background: var(--accent);
    content: "";
    transition: transform var(--transition-base);
}

.faq-item summary::after {
    transform: rotate(90deg);
}

.faq-item[open] summary::after {
    transform: rotate(0deg);
}

.faq-item summary:focus-visible {
    border-radius: var(--radius-md);
    outline-offset: -3px;
}

.faq-item__answer {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--muted-foreground);
    animation: disclosure-in var(--transition-base) both;
}

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

@keyframes disclosure-in {
    from {
        opacity: 0;
        transform: translateY(-0.25rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   CTA BAND
   Contrasting, calm conversion section without urgency styling
   ============================================ */

.cta-band {
    position: relative;
    isolation: isolate;
    width: min(100% - 2rem, var(--container));
    margin: var(--space-3xl) auto;
    padding: var(--space-2xl) var(--space-lg);
    overflow: hidden;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--surface-strong), var(--accent-soft));
    box-shadow: var(--shadow-neon);
    text-align: center;
}

.cta-band__glow {
    position: absolute;
    z-index: -1;
    top: -8rem;
    left: 50%;
    width: 22rem;
    height: 22rem;
    border-radius: 50%;
    background: radial-gradient(circle, var(--pink-glow), var(--transparent) 68%);
    transform: translateX(-50%);
}

.cta-band__content {
    width: min(100%, 44rem);
    margin-inline: auto;
}

.cta-band p {
    margin-inline: auto;
    color: var(--muted-foreground);
}

.cta-band small {
    display: block;
    margin-top: var(--space-md);
    color: var(--subtle-foreground);
    font-size: 0.875rem;
}

/* ============================================
   SOCIAL PROOF DISPLAY
   Evidence-oriented cards without synthetic ratings or counters
   ============================================ */

.social-proof-card,
.testimonial-card {
    position: relative;
}

.social-proof-card__meta,
.testimonial-card__meta {
    display: flex;
    margin-top: var(--space-md);
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    color: var(--subtle-foreground);
    font-size: 0.875rem;
}

.testimonial-card blockquote {
    margin: 0;
    color: var(--foreground);
    font-size: 1.05rem;
}

.testimonial-card cite {
    color: var(--muted-foreground);
    font-style: normal;
    font-weight: 750;
}

/* ============================================
   BREADCRUMBS & ARTICLE META
   Neutral page orientation without forcing a homepage link
   ============================================ */

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

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

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

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

.article-meta {
    display: flex;
    margin-top: var(--space-md);
    flex-wrap: wrap;
    gap: var(--space-sm) var(--space-lg);
    color: var(--subtle-foreground);
    font-size: 0.875rem;
}

/* ============================================
   RESPONSIBLE PLAY & LICENSING
   Restrained warning surfaces for factual risk information
   ============================================ */

.responsible-panel,
.license-panel {
    display: grid;
    min-width: 0;
    padding: var(--space-lg);
    gap: var(--space-md);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    background: var(--surface-strong);
}

.age-mark {
    display: inline-grid;
    width: 3.2rem;
    height: 3.2rem;
    flex: 0 0 auto;
    place-items: center;
    border: 2px solid var(--accent);
    border-radius: 50%;
    color: var(--foreground-strong);
    font-family: var(--font-display);
    font-weight: 750;
}

.risk-list {
    display: grid;
    margin: 0;
    padding: 0;
    gap: var(--space-sm);
    list-style: none;
}

.risk-list li {
    padding: var(--space-sm) var(--space-md);
    border-left: 3px solid var(--accent);
    background: var(--surface);
    color: var(--muted-foreground);
}

/* ============================================
   FOOTER
   Internal navigation, payment marks and licensing disclosure
   ============================================ */

.site-footer {
    margin-top: var(--space-3xl);
    border-top: 1px solid var(--border);
    background: var(--background-elevated);
}

.site-footer__grid {
    padding-block: var(--space-2xl);
}

.site-footer__brand p,
.site-footer__trust p,
.site-footer__bottom {
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

.site-brand--footer {
    margin-bottom: var(--space-md);
}

.site-footer h2 {
    margin-bottom: var(--space-md);
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.site-footer__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
}

.site-footer__nav a {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    color: var(--muted-foreground);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

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

.site-footer__trust .payment-marks {
    justify-content: flex-start;
}

.footer-notices {
    display: flex;
    margin-top: var(--space-lg);
    align-items: flex-start;
    gap: var(--space-md);
}

.footer-notices p {
    margin: 0;
}

.site-footer__bottom {
    display: flex;
    padding-block: var(--space-lg);
    flex-direction: column;
    gap: var(--space-xs);
    border-top: 1px solid var(--border);
}

.site-footer__bottom p {
    margin: 0;
}

/* ============================================
   PROGRESSIVE REVEAL
   JavaScript adds hidden state only to non-structural support cards
   ============================================ */

.js-reveal-ready .reveal-target {
    opacity: 0;
    transform: translateY(1rem);
    transition: opacity 520ms ease, transform 520ms ease;
}

.js-reveal-ready .reveal-target.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   TABLET ENHANCEMENTS - 768px+
   ============================================ */

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

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

    .container--narrow,
    .prose {
        max-width: var(--content);
    }

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

    .site-header {
        background: var(--header-overlay);
        -webkit-backdrop-filter: blur(1rem);
        backdrop-filter: blur(1rem);
    }

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

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

    .primary-nav {
        position: static;
        display: flex;
        min-width: 0;
        margin-left: auto;
        align-items: center;
        background: var(--transparent);
    }

    .primary-nav__links {
        flex-direction: row;
        align-items: center;
        gap: 0.15rem;
    }

    .primary-nav__links a {
        min-height: 2.75rem;
        padding: 0.55rem 0.65rem;
        font-size: 0.82rem;
        white-space: nowrap;
    }

    .drawer-actions,
    .menu-toggle {
        display: none;
    }

    .header-actions {
        display: flex;
        margin-left: var(--space-sm);
        gap: var(--space-sm);
    }

    .header-login {
        display: inline-flex;
        font-size: 0.9rem;
    }

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

    .hero__grid,
    .page-hero__grid,
    .split-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: var(--space-2xl);
    }

    .hero__copy,
    .page-hero__copy {
        padding-block: var(--space-xl);
    }

    .hero__art,
    .page-hero__art {
        min-height: 34rem;
    }

    .feature-grid,
    .card-grid,
    .evidence-grid,
    .social-proof-grid,
    .stats-grid,
    .game-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .site-footer__bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .cta-band {
        padding: var(--space-3xl);
    }
}

/* ============================================
   DESKTOP ENHANCEMENTS - 1024px+
   ============================================ */

@media (min-width: 64rem) {
    .primary-nav__links a {
        padding-inline: 0.85rem;
        font-size: 0.88rem;
    }

    .header-actions {
        margin-left: var(--space-md);
    }

    .hero__grid,
    .page-hero__grid {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
        gap: var(--space-3xl);
    }

    .hero__art,
    .page-hero__art {
        min-height: 40rem;
    }

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

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

    .media-card__content,
    .feature-card,
    .content-card,
    .evidence-card,
    .social-proof-card,
    .testimonial-card,
    .info-card {
        padding: var(--space-xl);
    }
}

/* ============================================
   LARGE DESKTOP CONSTRAINT - 1280px+
   Keeps line lengths and artwork scale controlled
   ============================================ */

@media (min-width: 80rem) {
    .hero::before,
    .page-hero::before {
        right: 2%;
    }

    .hero__copy,
    .page-hero__copy {
        padding-left: var(--space-md);
    }
}

/* ============================================
   SMALL MOBILE COMPOSITION
   Ensures closed header fits at 320px and 375px
   ============================================ */

@media (min-width: 30rem) and (max-width: 47.99rem) {
    .header-actions {
        display: flex;
    }

    .header-login {
        display: none;
    }

    .menu-toggle {
        margin-left: 0;
    }
}

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

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

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

    .site-brand__text small {
        font-size: 0.67rem;
    }
}

/* ============================================
   REDUCED MOTION
   Keeps all content visible and suppresses non-essential movement
   ============================================ */

@media (min-width: 48rem) and (max-width: 63.99rem) {
    .site-header {
        background: var(--background);
        -webkit-backdrop-filter: none;
        backdrop-filter: 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: flex;
        max-width: 100vw;
        margin: 0;
        padding: var(--space-lg) max(var(--space-md), calc((100vw - var(--container)) / 2));
        overflow-y: auto;
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-xl);
        background: var(--background);
    }

    .primary-nav__links {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-xs);
    }

    .primary-nav__links a {
        min-height: 3rem;
        padding: 0.65rem var(--space-md);
        font-size: 1rem;
        white-space: normal;
    }

    .drawer-actions {
        display: grid;
    }

    .menu-toggle {
        display: inline-flex;
        margin-left: 0;
    }
}

@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 .reveal-target,
    .js-reveal-ready .reveal-target.is-visible {
        opacity: 1;
        transform: none;
    }
}
