/*
 * CSS STYLES - Alawin Casino
 * Arabian night design system: deep indigo surfaces, gold/purple/turquoise neon.
 * Single fixed dark theme (no switcher per brief).
 * Mobile-first: base = 320px+, min-width media at 768px / 1024px / 1280px.
 */

/* ============================================
   DESIGN TOKENS
   Palette, typography, spacing, radii, shadows
   ============================================ */

:root {
    /* Surfaces */
    --bg: #140a24;
    --bg-2: #1b0f31;
    --bg-3: #241543;
    --surface: #221338;
    --surface-2: #2b1a47;
    --surface-3: #332055;
    --line: rgba(240, 199, 94, 0.22);
    --line-soft: rgba(168, 140, 220, 0.18);

    /* Text */
    --text: #f5efff;
    --text-soft: #cfc2e8;
    --muted: #a897c8;
    --heading: #ffd980;
    --heading-soft: #f0c75e;

    /* Accents */
    --gold: #f0c75e;
    --gold-2: #e39a1f;
    --gold-deep: #b06f0e;
    --purple: #9d4edd;
    --purple-2: #7b2fbf;
    --purple-neon: #c77dff;
    --teal: #2fd4c4;
    --teal-2: #17b8a8;
    --teal-neon: #4ef0dd;
    --coral: #ff5f6d;

    /* Action pairs (WCAG AA verified) */
    --primary: #f0c75e;
    --primary-foreground: #241302;
    --secondary: transparent;
    --secondary-foreground: #f0c75e;
    --accent: #2fd4c4;
    --accent-foreground: #062521;
    --destructive: #e12b31;
    --destructive-foreground: #ffffff;

    /* Glows */
    --glow-gold: 0 0 24px rgba(240, 199, 94, 0.35);
    --glow-purple: 0 0 32px rgba(157, 78, 221, 0.45);
    --glow-teal: 0 0 24px rgba(47, 212, 196, 0.35);

    /* Typography */
    --font-body: "Barlow", -apple-system, "Segoe UI", Roboto, sans-serif;
    --font-display: "Barlow Condensed", "Barlow", -apple-system, sans-serif;

    /* Spacing scale */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2.25rem;
    --space-2xl: 3.5rem;
    --space-3xl: 5rem;

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 999px;

    /* Layout */
    --container: 1280px;
    --header-h: 68px;
}

/* ============================================
   OVERFLOW PREVENTION - Safety Net
   ============================================ */

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

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

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

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

pre code,
.code-block code {
    display: block;
    min-width: 0;
}

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

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

details {
    height: fit-content;
}

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

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

section {
    overflow: clip;
}

/* ============================================
   BASE - document, body, typography
   ============================================ */

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    margin: 0;
    background:
        radial-gradient(1200px 600px at 85% -100px, rgba(157, 78, 221, 0.22), transparent 60%),
        radial-gradient(900px 500px at -10% 30%, rgba(47, 212, 196, 0.08), transparent 55%),
        var(--bg);
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

h1 {
    font-size: clamp(2.1rem, calc(4vw + 1rem), 3.6rem);
    font-weight: 800;
    text-transform: uppercase;
}

h2 {
    font-size: clamp(1.6rem, calc(2.4vw + 0.9rem), 2.5rem);
    font-weight: 700;
}

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

h4 {
    font-size: 1.15rem;
    font-weight: 600;
}

p {
    margin: 0 0 var(--space-md);
    max-width: 72ch;
}

a {
    color: var(--teal-neon);
}

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

ul, ol {
    padding-left: 1.4rem;
    margin: 0 0 var(--space-md);
}

li {
    margin-bottom: var(--space-xs);
}

strong {
    color: var(--heading-soft);
}

::selection {
    background: var(--purple);
    color: #ffffff;
}

:focus-visible {
    outline: 3px solid var(--teal-neon);
    outline-offset: 2px;
    border-radius: 4px;
}

.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: absolute;
    top: -60px;
    left: var(--space-md);
    z-index: 2000;
    background: var(--gold);
    color: var(--primary-foreground);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-sm);
    font-weight: 700;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: var(--space-xs);
}

/* ============================================
   LAYOUT - container, sections, prose rhythm
   ============================================ */

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--space-md);
}

@media (min-width: 768px) {
    .container {
        padding-inline: var(--space-xl);
    }
}

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

@media (min-width: 1024px) {
    .section {
        padding-block: var(--space-3xl);
    }
}

.section--alt {
    background: linear-gradient(180deg, rgba(43, 26, 71, 0.55), rgba(27, 15, 49, 0.2));
}

.section__head {
    max-width: 760px;
    margin-bottom: var(--space-xl);
}

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

.section__head--center p {
    margin-inline: auto;
}

.prose {
    max-width: 72ch;
}

.prose > * + * {
    margin-top: 0;
}

/* Grid utilities used across pages */
.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    gap: var(--space-lg);
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .grid-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* ============================================
   HEADER - sticky bar, brand, nav, actions
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(20, 10, 36, 0.96);
    border-bottom: 1px solid var(--line-soft);
}

@media (min-width: 1024px) {
    .site-header {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        background: rgba(20, 10, 36, 0.85);
    }
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    min-height: var(--header-h);
    padding-block: var(--space-xs);
}

.site-brand {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    text-decoration: none;
    flex-shrink: 0;
    z-index: 1001;
    position: relative;
}

.site-brand__lamp {
    filter: drop-shadow(0 0 8px rgba(240, 199, 94, 0.55));
    flex-shrink: 0;
}

.site-brand__text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.45rem;
    line-height: 0.95;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    display: flex;
    flex-direction: column;
}

.site-brand__sub {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    color: var(--text-soft);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.age-badge {
    display: none;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    border: 2px solid var(--coral);
    border-radius: var(--radius-full);
    color: #ffb3b9;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .age-badge {
        display: inline-flex;
    }
}

/* Header login/register hidden on small screens (drawer contains them) */
.site-header__actions .site-header__login,
.site-header__actions .site-header__register {
    display: none;
}

@media (min-width: 1024px) {
    .site-header__actions .site-header__login,
    .site-header__actions .site-header__register {
        display: inline-flex;
    }
}

/* ============================================
   PRIMARY NAV - inline on desktop, drawer mobile
   ============================================ */

.primary-nav {
    display: none;
}

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

.primary-nav__link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: var(--space-xs) var(--space-md);
    color: var(--text);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: color 0.15s ease, background 0.15s ease;
}

.primary-nav__link:hover {
    color: var(--gold);
    background: rgba(240, 199, 94, 0.08);
}

.primary-nav__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-lg) var(--space-md);
    border-top: 1px solid var(--line-soft);
}

/* Mobile drawer open state */
@media (max-width: 1023px) {
    .primary-nav.is-open {
        display: block;
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
        background: var(--bg-2);
        overflow-y: auto;
        padding-block: var(--space-md);
    }

    .primary-nav.is-open .primary-nav__list {
        padding-inline: var(--space-md);
    }
}

@media (min-width: 1024px) {
    .primary-nav {
        display: flex;
        align-items: center;
        gap: var(--space-lg);
        flex: 1;
        justify-content: center;
    }

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

    .primary-nav__link {
        min-height: 44px;
        padding: var(--space-xs) var(--space-sm);
        font-size: 0.95rem;
        white-space: nowrap;
    }

    .primary-nav__actions {
        display: none;
    }
}

@media (min-width: 1280px) {
    .primary-nav__link {
        padding: var(--space-xs) var(--space-md);
        font-size: 1rem;
    }
}

/* ============================================
   MENU TOGGLE - hamburger with X animation
   ============================================ */

.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.menu-toggle__line {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--gold);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

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

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

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

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
}

/* ============================================
   BUTTONS - gold primary, ghost secondary
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    min-height: 48px;
    padding: 0.7rem 1.6rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.03em;
    text-decoration: none;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn--gold {
    background: linear-gradient(160deg, #ffd980 0%, var(--gold) 45%, var(--gold-2) 100%);
    color: var(--primary-foreground);
    box-shadow: 0 4px 18px rgba(227, 154, 31, 0.35);
}

.btn--gold:hover {
    color: var(--primary-foreground);
    transform: translateY(-2px);
    box-shadow: 0 6px 26px rgba(227, 154, 31, 0.55), var(--glow-gold);
}

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

.btn--ghost:hover {
    color: var(--heading);
    background: rgba(240, 199, 94, 0.1);
    box-shadow: var(--glow-gold);
}

.btn--teal {
    background: linear-gradient(160deg, var(--teal-neon), var(--teal-2));
    color: var(--accent-foreground);
    box-shadow: var(--glow-teal);
}

.btn--teal:hover {
    color: var(--accent-foreground);
    transform: translateY(-2px);
}

.btn--sm {
    min-height: 40px;
    padding: 0.4rem 1.1rem;
    font-size: 0.95rem;
}

.btn--lg {
    min-height: 56px;
    padding: 0.9rem 2.4rem;
    font-size: 1.2rem;
}

.cta-inline {
    margin-block: var(--space-lg);
}

.cta-inline__micro {
    margin: var(--space-xs) 0 0;
    font-size: 0.9rem;
    color: var(--muted);
}

/* ============================================
   HERO - page hero with integrated artwork
   Pages place hero art via .hero__art (transparent PNG)
   ============================================ */

.hero {
    position: relative;
    padding-block: var(--space-2xl) var(--space-3xl);
    overflow: clip;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(700px 420px at 78% 20%, rgba(157, 78, 221, 0.4), transparent 65%),
        radial-gradient(520px 340px at 90% 70%, rgba(47, 212, 196, 0.18), transparent 60%),
        radial-gradient(600px 400px at 10% 80%, rgba(240, 199, 94, 0.1), transparent 60%);
    pointer-events: none;
}

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

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

.hero__content p {
    color: var(--text-soft);
    font-size: 1.08rem;
}

.hero__eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.9rem;
    color: var(--teal-neon);
    margin-bottom: var(--space-sm);
}

.hero__art {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero__art img {
    max-width: min(100%, 520px);
    filter: drop-shadow(0 12px 40px rgba(157, 78, 221, 0.5)) drop-shadow(0 0 24px rgba(240, 199, 94, 0.25));
}

@media (min-width: 1024px) {
    .hero {
        padding-block: var(--space-3xl);
    }

    .hero__inner {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: var(--space-2xl);
    }

    .hero__art img {
        max-width: 600px;
    }
}

/* ============================================
   CARDS - generic surface containers
   ============================================ */

.card {
    background: linear-gradient(165deg, var(--surface-2), var(--surface));
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    min-width: 0;
}

.card--glow {
    border-color: var(--line);
    box-shadow: var(--glow-purple);
}

.feature-card__icon {
    display: inline-flex;
    font-size: 1.8rem;
    margin-bottom: var(--space-sm);
    filter: drop-shadow(0 0 10px rgba(240, 199, 94, 0.5));
}

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

.feature-card__text {
    color: var(--text-soft);
    margin-bottom: var(--space-sm);
}

.feature-card__link {
    font-weight: 600;
}

/* ============================================
   TIER CARDS - bonus deposit steps (gold chest style)
   ============================================ */

.tier-card {
    position: relative;
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    background: linear-gradient(180deg, var(--surface-3), var(--surface));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    min-width: 0;
}

.tier-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(160deg, rgba(240, 199, 94, 0.6), rgba(157, 78, 221, 0.35), transparent 70%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.tier-card__step {
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.85rem;
    color: var(--teal-neon);
    margin-bottom: var(--space-xs);
}

.tier-card__offer {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2rem;
    line-height: 1.1;
    color: var(--gold);
    text-shadow: 0 0 18px rgba(240, 199, 94, 0.4);
    margin-bottom: var(--space-xs);
}

.tier-card__extra {
    color: var(--text);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.tier-card__note {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 0;
}

/* ============================================
   TABLES - comparison and summary tables
   ============================================ */

.table-wrapper {
    margin-block: var(--space-lg);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-md);
    overflow-x: auto;
    background: var(--surface);
}

.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    min-width: 560px;
}

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

.table thead th {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--gold);
    background: var(--surface-3);
    border-bottom: 2px solid var(--line);
}

.table tbody tr:last-child td {
    border-bottom: none;
}

.table tbody tr:hover {
    background: rgba(157, 78, 221, 0.08);
}

/* Recommended/highlighted column */
.table .is-highlight {
    background: rgba(240, 199, 94, 0.09);
    box-shadow: inset 2px 0 0 var(--gold), inset -2px 0 0 var(--gold);
}

/* ============================================
   FAQ - native details/summary accordion
   ============================================ */

.faq {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: start;
}

.faq-item {
    width: 100%;
    background: var(--surface-2);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-md);
    overflow: hidden;
    align-self: start;
}

.faq-item__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    cursor: pointer;
    list-style: none;
    min-height: 56px;
    color: var(--text);
    font-weight: 600;
    transition: background 0.15s ease;
}

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

.faq-item__summary:hover {
    background: rgba(157, 78, 221, 0.1);
}

.faq-item__question {
    flex: 1;
    min-width: 0;
}

.faq-item__icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-item__icon::before,
.faq-item__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background: var(--gold);
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease;
}

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

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

.faq-item__body {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--text-soft);
}

.faq-item__body p:last-child {
    margin-bottom: 0;
}

/* ============================================
   CALLOUT - tip/warning/note highlight boxes
   ============================================ */

.callout {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--teal);
    background: rgba(47, 212, 196, 0.08);
    margin-block: var(--space-lg);
}

.callout--warning {
    border-left-color: var(--coral);
    background: rgba(255, 95, 109, 0.08);
}

.callout--gold {
    border-left-color: var(--gold);
    background: rgba(240, 199, 94, 0.08);
}

.callout__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--heading);
    margin-bottom: var(--space-xs);
}

.callout__text {
    margin-bottom: 0;
    color: var(--text-soft);
}

/* ============================================
   TL;DR BOX - key takeaways summary
   ============================================ */

.tldr-box {
    background: linear-gradient(160deg, var(--surface-3), var(--surface));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-xl);
    margin-block: var(--space-xl);
    box-shadow: var(--glow-purple);
}

.tldr-box__title {
    font-family: var(--font-display);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--teal-neon);
    font-size: 1.05rem;
    margin-bottom: var(--space-sm);
}

.tldr-box__list {
    margin-bottom: 0;
}

.tldr-box__list li::marker {
    color: var(--gold);
}

/* ============================================
   STAT - large number highlight
   ============================================ */

.stat {
    text-align: center;
    padding: var(--space-lg);
    min-width: 0;
}

.stat__value {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.2rem, calc(3vw + 1rem), 3.4rem);
    line-height: 1;
    color: var(--gold);
    text-shadow: 0 0 24px rgba(240, 199, 94, 0.45);
    margin-bottom: var(--space-xs);
}

.stat__label {
    display: block;
    font-weight: 600;
    color: var(--text);
}

.stat__note {
    display: block;
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: var(--space-xs);
}

/* ============================================
   CTA BAND - full-width conversion band
   ============================================ */

.cta-band {
    position: relative;
    margin-block: var(--space-2xl);
    padding-block: var(--space-2xl);
    background:
        radial-gradient(600px 300px at 85% 50%, rgba(157, 78, 221, 0.35), transparent 65%),
        linear-gradient(120deg, var(--bg-3), var(--purple-2) 140%);
    border-block: 1px solid var(--line);
    overflow: clip;
}

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

.cta-band__title {
    margin-bottom: var(--space-sm);
}

.cta-band__text {
    color: var(--text-soft);
    max-width: 52ch;
}

.cta-band__micro {
    margin: var(--space-sm) 0 0;
    font-size: 0.88rem;
    color: var(--muted);
}

.cta-band__art {
    text-align: center;
}

.cta-band__art img {
    max-width: min(100%, 480px);
    filter: drop-shadow(0 10px 34px rgba(240, 199, 94, 0.35));
}

@media (min-width: 1024px) {
    .cta-band__inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
    }
}

/* ============================================
   MEDIA FIGURE - framed editorial imagery
   ============================================ */

.media-figure {
    margin: var(--space-xl) 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line-soft);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.media-figure img {
    display: block;
    width: 100%;
}

.media-figure__caption {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.88rem;
    color: var(--muted);
    background: var(--surface);
}

/* ============================================
   PULL QUOTE - oversized quote break
   ============================================ */

.pull-quote {
    margin: var(--space-2xl) 0;
    padding: var(--space-lg) var(--space-xl);
    border-left: 4px solid var(--purple-neon);
    background: rgba(157, 78, 221, 0.08);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.pull-quote p {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, calc(1.6vw + 0.9rem), 1.8rem);
    font-weight: 600;
    color: var(--heading);
    line-height: 1.3;
    margin-bottom: var(--space-xs);
}

.pull-quote__cite {
    font-style: normal;
    font-size: 0.92rem;
    color: var(--muted);
}

/* ============================================
   TRUST ROW & PAY CHIPS - footer/body trust signals
   ============================================ */

.trust-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: var(--space-xs) var(--space-md);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-soft);
    background: var(--surface);
}

.trust-badge--age {
    border: 2px solid var(--coral);
    border-radius: var(--radius-full);
    color: #ffb3b9;
    font-weight: 800;
    min-width: 44px;
}

.pay-chips {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.pay-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: var(--space-xs) var(--space-sm);
    background: var(--surface-2);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-soft);
}

/* ============================================
   FOOTER - links, payments, license, legal
   ============================================ */

.site-footer {
    margin-top: var(--space-3xl);
    background: linear-gradient(180deg, var(--bg-2), #0d0718);
    border-top: 1px solid var(--line-soft);
    padding-block: var(--space-2xl) var(--space-xl);
}

.site-footer__grid {
    display: grid;
    gap: var(--space-xl);
    grid-template-columns: minmax(0, 1fr);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--line-soft);
}

@media (min-width: 768px) {
    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .site-footer__grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
    }
}

.site-footer__logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.6rem;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    flex-direction: column;
    line-height: 0.95;
    margin-bottom: var(--space-sm);
}

.site-footer__desc {
    color: var(--muted);
    font-size: 0.95rem;
}

.site-footer__heading {
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.95rem;
    color: var(--heading);
    margin-bottom: var(--space-sm);
}

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

.site-footer__nav a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    color: var(--text-soft);
    text-decoration: none;
}

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

.site-footer__legal {
    padding-top: var(--space-xl);
    color: var(--muted);
    font-size: 0.88rem;
}

.site-footer__legal p {
    max-width: 90ch;
}

/* ============================================
   SITEMAP - directory listing
   ============================================ */

.sitemap-page .hero__content {
    max-width: 72ch;
}

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

.sitemap-item {
    background: linear-gradient(165deg, var(--surface-2), var(--surface));
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    min-width: 0;
}

.sitemap-item h3 {
    margin-bottom: var(--space-xs);
}

.sitemap-item h3 a {
    text-decoration: none;
    color: var(--gold);
}

.sitemap-item h3 a:hover {
    color: var(--heading);
    text-decoration: underline;
}

.sitemap-item p {
    color: var(--text-soft);
    margin-bottom: 0;
    font-size: 0.96rem;
}

@media (min-width: 768px) {
    .sitemap-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ============================================
   SCROLL REVEAL - progressive enhancement only
   Elements are visible by default; JS adds .reveal
   to below-fold targets before observing.
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .faq-item__icon::before,
    .faq-item__icon::after,
    .menu-toggle__line,
    .btn {
        transition: none;
    }
}
