/* ============================================
   IRWIN CASINO - ULTRA LUXE DESIGN SYSTEM
   Purple velvet, emerald accents, golden trim
   ============================================ */

:root {
    --background: #120821;
    --foreground: #f5ecd9;
    --card: #1e1033;
    --card-foreground: #f5ecd9;
    --popover: #1e1033;
    --popover-foreground: #f5ecd9;
    --primary: #6d28d9;
    --primary-foreground: #ffffff;
    --secondary: #10b981;
    --secondary-foreground: #06251a;
    --muted: #2a1a3f;
    --muted-foreground: #cdbfde;
    --accent: #d4af37;
    --accent-foreground: #1a0d2e;
    --destructive: #be123c;
    --destructive-foreground: #ffffff;
    --border: #3a2554;
    --input: #22143a;
    --ring: #a855f7;
}

/* ============================================
   OVERFLOW PREVENTION
   ============================================ */
*, *::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; }
input, textarea, select { max-width: 100%; }
section { overflow: clip; }

/* ============================================
   BASE TYPOGRAPHY
   Cormorant Garamond for headings, Manrope for body
   ============================================ */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: "Manrope", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    background-image:
        radial-gradient(ellipse at top, rgba(168, 85, 247, 0.12), transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(16, 185, 129, 0.06), transparent 55%);
    background-attachment: fixed;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Cormorant Garamond", Georgia, serif;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: var(--foreground);
    margin: 0 0 0.5em;
    font-weight: 600;
}

h1 { font-size: clamp(2rem, 4vw + 1rem, 3rem); }
h2 { font-size: clamp(1.625rem, 2.5vw + 1rem, 2.25rem); }
h3 { font-size: clamp(1.25rem, 1vw + 1rem, 1.625rem); font-weight: 500; }
h4 { font-size: 1.25rem; font-weight: 500; }

p { margin: 0 0 1.25rem; }

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover { color: var(--primary); text-decoration: underline; }

ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 0.5rem; }

/* Tabular numbers for stats */
.tabular { font-variant-numeric: tabular-nums; }

/* ============================================
   ACCESSIBILITY
   ============================================ */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 0.75rem 1rem;
    z-index: 2000;
}
.skip-link:focus { left: 0; }

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

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

/* ============================================
   LAYOUT WRAPPERS
   ============================================ */
.container-1240 {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

@media (min-width: 768px) {
    .container-1240 { padding: 0 2rem; }
}

.dark-velvet {
    background-image:
        radial-gradient(circle at 20% 10%, rgba(168, 85, 247, 0.15), transparent 50%),
        radial-gradient(circle at 80% 90%, rgba(16, 185, 129, 0.08), transparent 50%);
}

section.section {
    padding: 72px 0;
}
@media (min-width: 1024px) {
    section.section { padding: 120px 0; }
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3rem;
}
.section-head .eyebrow {
    display: inline-block;
    font-family: "Manrope", sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 14px 28px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-height: 48px;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.2);
}
.btn-primary:hover {
    background: #c084fc;
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.35), 0 0 0 1px var(--accent);
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

.btn-secondary {
    background: var(--secondary);
    color: var(--secondary-foreground);
    border-color: rgba(212, 175, 55, 0.35);
}
.btn-secondary:hover {
    background: #34d399;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35), 0 0 0 1px var(--accent);
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border-color: var(--border);
}
.btn-ghost:hover {
    background: var(--muted);
    border-color: var(--accent);
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    color: var(--secondary);
    border-color: var(--secondary);
}
.btn-outline:hover {
    background: var(--secondary);
    color: var(--secondary-foreground);
    border-color: var(--accent);
    text-decoration: none;
}

.btn-block { width: 100%; }
.btn-large { padding: 18px 40px; font-size: 1.0625rem; }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(18, 8, 33, 0.92);
    border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
    .site-header {
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }
}

.header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 12px 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--foreground);
    text-decoration: none;
    font-family: "Cormorant Garamond", serif;
}
.site-brand:hover { text-decoration: none; color: var(--foreground); }

.site-brand .logo {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    background: var(--muted);
}

.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--foreground);
}
.brand-tag {
    font-family: "Manrope", sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
}

/* Mobile toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 48px; height: 48px;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    z-index: 1001;
}
.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--foreground);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}
.mobile-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Primary navigation - mobile drawer default */
.primary-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0; right: 0; bottom: 0;
    background: var(--background);
    z-index: 999;
    overflow-y: auto;
    padding: 2rem 1.5rem;
    flex-direction: column;
    gap: 1.5rem;
}
.primary-nav.is-open { display: flex; }

.nav-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}
.nav-list li { margin: 0; border-bottom: 1px solid var(--border); }
.nav-link {
    display: flex;
    align-items: center;
    min-height: 56px;
    padding: 0 0.5rem;
    color: var(--foreground);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.375rem;
    font-weight: 500;
    text-decoration: none;
}
.nav-link:hover { color: var(--accent); text-decoration: none; }

.nav-cta-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}
.nav-cta-group .btn { width: 100%; }

@media (min-width: 1024px) {
    .mobile-toggle { display: none; }
    .primary-nav {
        display: flex;
        position: static;
        flex-direction: row;
        align-items: center;
        gap: 2rem;
        padding: 0;
        background: transparent;
        overflow: visible;
    }
    .nav-list {
        flex-direction: row;
        gap: 1.75rem;
    }
    .nav-list li { border: none; }
    .nav-link {
        font-family: "Manrope", sans-serif;
        font-size: 0.9375rem;
        font-weight: 500;
        min-height: auto;
        padding: 0.5rem 0;
        letter-spacing: 0.04em;
        position: relative;
    }
    .nav-link::after {
        content: "";
        position: absolute;
        left: 0; right: 0; bottom: -4px;
        height: 1px;
        background: var(--accent);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }
    .nav-link:hover::after { transform: scaleX(1); }
    .nav-cta-group {
        flex-direction: row;
        margin-top: 0;
    }
    .nav-cta-group .btn { width: auto; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #0a0418;
    color: var(--foreground);
    border-top: 1px solid var(--border);
    padding-top: 4rem;
    margin-top: 4rem;
}
.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}
@media (min-width: 768px) {
    .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .footer-inner { grid-template-columns: 1.5fr 1fr 1.2fr 1fr; }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.footer-brand .logo {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--accent);
}
.footer-brand .brand-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    font-weight: 600;
}
.footer-about {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
}

.footer-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.badge-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.badge-age { background: var(--accent); color: var(--accent-foreground); }

.footer-heading {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.25rem;
    color: var(--foreground);
    margin: 0 0 1rem;
}
.footer-links {
    list-style: none;
    padding: 0; margin: 0;
}
.footer-links li {
    margin-bottom: 0.625rem;
    font-size: 0.9375rem;
    color: var(--muted-foreground);
}
.footer-links a {
    color: var(--muted-foreground);
    transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--accent); text-decoration: none; }

.footer-payments {
    list-style: none;
    padding: 0; margin: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
}
.footer-payments li { margin: 0; }
.pay-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 6px;
    background: var(--muted);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--foreground);
    text-align: center;
    min-height: 36px;
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 1.25rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    text-align: center;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}
.footer-bottom p { margin: 0; }
.footer-bottom-link {
    color: var(--accent);
    font-weight: 600;
}
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        max-width: 1240px;
        margin: 3rem auto 0;
    }
}

/* ============================================
   HERO SECTIONS
   Full-bleed with vignette and Irwin mascot
   ============================================ */
.hero {
    position: relative;
    padding: 72px 1.25rem;
    overflow: clip;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(168, 85, 247, 0.25), transparent 60%),
        radial-gradient(ellipse at 30% 70%, rgba(16, 185, 129, 0.12), transparent 55%),
        linear-gradient(135deg, #1a0d2e 0%, #0a0418 100%);
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 200px 80px rgba(0,0,0,0.6);
    pointer-events: none;
}
.hero-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
@media (min-width: 1024px) {
    .hero {
        padding: 120px 2rem;
    }
    .hero-inner {
        grid-template-columns: 1.1fr 1fr;
        gap: 4rem;
    }
}

.hero-eyebrow {
    display: inline-block;
    font-family: "Manrope", sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    padding: 6px 14px;
    border: 1px solid var(--accent);
    border-radius: 999px;
    margin-bottom: 1.5rem;
}
.hero h1, .hero h2 {
    font-size: clamp(2rem, 4.5vw + 1rem, 3.5rem);
    margin-bottom: 1.25rem;
    color: var(--foreground);
}
.hero-lead {
    font-size: 1.0625rem;
    color: var(--muted-foreground);
    max-width: 540px;
    margin-bottom: 2rem;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}
.hero-stat {
    padding: 1rem;
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
}
.hero-stat-number {
    display: block;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
    background: linear-gradient(135deg, #f5d77a, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.hero-stat-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
}
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-figure {
    position: relative;
}
.hero-figure img {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    display: block;
    animation: irwin-sway 6s ease-in-out infinite;
    filter: drop-shadow(0 30px 60px rgba(168, 85, 247, 0.35));
}

@keyframes irwin-sway {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
}

/* ============================================
   VELVET CARD - base building block
   ============================================ */
.velvet-card {
    background: linear-gradient(160deg, var(--card), #170a2c);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
    min-width: 0;
}
.velvet-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.4), transparent 40%, transparent 60%, rgba(212, 175, 55, 0.3));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.velvet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.25), 0 0 0 1px var(--accent);
}
@media (min-width: 1024px) {
    .velvet-card { padding: 28px; }
}

/* ============================================
   GAME CARD COMPONENT
   ============================================ */
.game-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
@media (min-width: 768px) {
    .game-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .game-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.game-card {
    background: linear-gradient(160deg, var(--card), #170a2c);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.game-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.3), 0 0 0 1px var(--accent);
}
.game-card-media {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    background: var(--muted);
    box-shadow: inset 0 0 60px rgba(0,0,0,0.4);
}
.game-card-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.game-badge {
    position: absolute;
    top: 10px; left: 10px;
    background: var(--accent);
    color: var(--accent-foreground);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 1;
}
.game-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.game-card-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: var(--foreground);
}
.game-card-provider {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin: 0 0 0.75rem;
}
@media (min-width: 1024px) {
    .game-card { padding: 28px; }
}

/* ============================================
   PROVIDER LOGO TILE
   ============================================ */
.provider-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
@media (min-width: 1024px) {
    .provider-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

.provider-tile {
    background: #160828;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.25rem;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 0;
}
.provider-tile:hover {
    border-color: var(--accent);
    box-shadow: 0 0 24px rgba(168, 85, 247, 0.3);
    transform: translateY(-3px);
}
.provider-tile-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}
.provider-tile img {
    max-width: 100%;
    max-height: 56px;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.3s ease;
    filter: brightness(1.1);
}
.provider-tile:hover img { opacity: 1; }
.provider-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 0.95rem;
    color: var(--foreground);
}
.provider-games {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 500;
}

/* ============================================
   BONUS CARD
   ============================================ */
.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .bonus-grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .bonus-grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.bonus-card {
    background: linear-gradient(135deg, #1f0e3a, #14082a);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.75rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
    position: relative;
    transition: all 0.4s ease;
    min-width: 0;
}
.bonus-card:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.3);
    transform: translateY(-4px);
}
@media (min-width: 768px) {
    .bonus-card.has-figure {
        grid-template-columns: 1.4fr 0.8fr;
    }
}
.bonus-card-content { display: flex; flex-direction: column; }
.bonus-amount {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
    line-height: 1;
    background: linear-gradient(135deg, #f5d77a, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.75rem;
}
.bonus-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.625rem;
    margin: 0 0 0.75rem;
    color: var(--foreground);
}
.bonus-description {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.bonus-microcopy {
    font-size: 0.8125rem;
    color: var(--accent);
    margin: 0.75rem 0 0;
}
.bonus-card-figure {
    display: flex;
    justify-content: center;
    align-items: center;
}
.bonus-card-figure img {
    max-width: 240px;
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(168, 85, 247, 0.4));
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
    max-width: 1240px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--border);
}
.faq-item {
    border-bottom: 1px solid var(--border);
    position: relative;
}
.faq-item:last-child { border-bottom: none; }
.faq-item[open] {
    background: rgba(168, 85, 247, 0.05);
}
.faq-item[open]::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--primary);
    box-shadow: 0 0 12px var(--primary);
}
.faq-question {
    list-style: none;
    cursor: pointer;
    padding: 1.5rem 1.75rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--foreground);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { content: ""; }
.faq-icon {
    width: 24px; height: 24px;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.faq-icon::before, .faq-icon::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    background: var(--accent);
    transform: translate(-50%, -50%);
}
.faq-icon::before { width: 14px; height: 2px; }
.faq-icon::after { width: 2px; height: 14px; transition: transform 0.3s ease; }
.faq-item[open] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}
.faq-answer {
    padding: 0 1.75rem 1.5rem;
    color: var(--foreground);
    font-size: 1rem;
    line-height: 1.7;
}
.faq-answer p { margin: 0; }

/* ============================================
   PAYMENT METHOD TILE
   ============================================ */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
@media (min-width: 1024px) {
    .payment-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}
.payment-tile {
    background: #160828;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 0;
    aspect-ratio: 1 / 1;
    justify-content: center;
}
.payment-tile:hover {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
    transform: translateY(-3px);
}
.payment-tile img {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
}
.payment-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 0.9rem;
    color: var(--foreground);
}
.payment-type {
    font-size: 0.7rem;
    color: var(--muted-foreground);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    margin: 4rem 0;
    padding: 72px 1.5rem;
    position: relative;
    overflow: clip;
    background:
        radial-gradient(ellipse at 80% 50%, rgba(168, 85, 247, 0.25), transparent 60%),
        linear-gradient(135deg, #1a0d2e, #0a0418);
    border-top: 1px solid var(--accent);
    border-bottom: 1px solid var(--accent);
}
@media (min-width: 1024px) {
    .cta-banner { padding: 120px 2rem; }
}
.cta-banner-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}
@media (min-width: 768px) {
    .cta-banner-inner { grid-template-columns: 1.3fr 1fr; }
}
.cta-banner-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.875rem, 3vw + 1rem, 3rem);
    font-weight: 600;
    margin: 0 0 1rem;
    color: var(--foreground);
}
.cta-banner-subtitle {
    font-size: 1.0625rem;
    color: var(--muted-foreground);
    margin: 0 0 2rem;
    max-width: 540px;
}
.cta-banner-microcopy {
    font-size: 0.8125rem;
    color: var(--accent);
    margin: 1rem 0 0;
}
.cta-banner-figure { text-align: center; }
.cta-banner-figure img {
    max-width: 320px;
    width: 100%;
    filter: drop-shadow(0 20px 50px rgba(168, 85, 247, 0.4));
}

/* ============================================
   ENGAGEMENT PATTERNS - shared UI blocks
   ============================================ */

/* TL;DR / Summary box */
.tldr {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.12), rgba(16, 185, 129, 0.08));
    border: 1px solid var(--accent);
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    margin: 2rem 0;
    position: relative;
}
.tldr-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}
.tldr h3, .tldr p:last-child { margin-bottom: 0; }

/* Callout box */
.callout {
    border-left: 3px solid var(--accent);
    padding: 1.25rem 1.5rem;
    background: rgba(168, 85, 247, 0.06);
    border-radius: 0 12px 12px 0;
    margin: 1.75rem 0;
    color: var(--foreground);
}
.callout strong { color: var(--accent); }

/* Stat highlight */
.stat-highlight {
    text-align: center;
    padding: 1.5rem;
}
.stat-highlight .stat-number {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    font-size: clamp(2.5rem, 4vw + 1rem, 4rem);
    line-height: 1;
    background: linear-gradient(135deg, #f5d77a, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: block;
}
.stat-highlight .stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.5rem;
    display: block;
}
.stat-highlight .stat-source {
    font-size: 0.75rem;
    color: var(--accent);
    margin-top: 0.5rem;
    display: block;
}

/* Pull quote */
.pullquote {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.375rem, 2vw + 0.5rem, 1.875rem);
    font-style: italic;
    line-height: 1.4;
    color: var(--foreground);
    border-left: 3px solid var(--accent);
    padding: 1rem 1.75rem;
    margin: 2.5rem 0;
}
.pullquote cite {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 600;
    color: var(--accent);
    margin-top: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Comparison table */
.table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--card);
}
.comparison-table, table.styled {
    width: 100%;
    border-collapse: collapse;
    font-variant-numeric: tabular-nums;
}
.comparison-table th, .comparison-table td,
table.styled th, table.styled td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 0.9375rem;
}
.comparison-table th, table.styled th {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(212, 175, 55, 0.06);
}
.comparison-table .col-highlight,
table.styled .col-highlight {
    background: rgba(168, 85, 247, 0.1);
    border-left: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
}

/* Trust badges row */
.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0;
    opacity: 0.85;
}
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}
.trust-badge strong { color: var(--accent); }

/* Social proof / review cards */
.review-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .review-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.review-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
    min-width: 0;
    position: relative;
}
.review-rating {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.review-rating .rating-number {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    font-size: 2.5rem;
    line-height: 1;
    background: linear-gradient(135deg, #f5d77a, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.review-rating .rating-max {
    font-size: 1rem;
    color: var(--muted-foreground);
}
.review-source {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}
.review-quote {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.125rem;
    font-style: italic;
    color: var(--foreground);
    line-height: 1.5;
}
.review-stars {
    color: var(--accent);
    letter-spacing: 0.15em;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

/* USP grid for hero/index */
.usp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .usp-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.usp-card {
    background: linear-gradient(160deg, var(--card), #170a2c);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
    text-align: center;
    transition: all 0.4s ease;
    min-width: 0;
}
.usp-card:hover {
    border-color: var(--accent);
    box-shadow: 0 16px 40px rgba(168, 85, 247, 0.25);
    transform: translateY(-4px);
}
.usp-number {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    font-size: clamp(2rem, 3vw + 1rem, 3rem);
    line-height: 1;
    background: linear-gradient(135deg, #f5d77a, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: block;
    margin-bottom: 0.75rem;
}
.usp-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.375rem;
    color: var(--foreground);
    margin: 0 0 0.5rem;
}
.usp-text {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    margin: 0;
}

/* VIP levels */
.vip-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
@media (min-width: 1024px) {
    .vip-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.vip-tier {
    background: linear-gradient(160deg, var(--card), #170a2c);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
}
.vip-tier:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}
.vip-medallion {
    width: 64px; height: 64px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #f5d77a, #8a6508);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a0d2e;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}
.vip-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
    color: var(--foreground);
    letter-spacing: 0.05em;
}
.vip-perk {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0;
}

/* Filter pills */
.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.filter-pill {
    padding: 10px 22px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--foreground);
    font-family: "Manrope", sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.04em;
}
.filter-pill:hover,
.filter-pill.active {
    border-color: var(--accent);
    background: rgba(168, 85, 247, 0.12);
    color: var(--accent);
    box-shadow: 0 0 16px rgba(168, 85, 247, 0.2);
}

/* Sitemap list */
.sitemap-list {
    display: grid;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.sitemap-item {
    background: linear-gradient(160deg, var(--card), #170a2c);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.75rem;
    transition: all 0.3s ease;
    margin: 0;
}
.sitemap-item:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}
.sitemap-item h3 {
    margin: 0 0 0.75rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.625rem;
}
.sitemap-item h3 a {
    color: var(--foreground);
    transition: color 0.3s ease;
}
.sitemap-item h3 a:hover {
    color: var(--accent);
    text-decoration: none;
}
.sitemap-item p {
    color: var(--muted-foreground);
    margin: 0;
}

/* Breadcrumbs */
.breadcrumbs {
    list-style: none;
    padding: 1.5rem 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}
.breadcrumbs li { margin: 0; }
.breadcrumbs li + li::before {
    content: "›";
    margin-right: 0.5rem;
    color: var(--accent);
}
.breadcrumbs a { color: var(--muted-foreground); }
.breadcrumbs a:hover { color: var(--accent); }

/* Navigation anchor cards */
.nav-anchor-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .nav-anchor-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.nav-anchor-card {
    background: linear-gradient(160deg, var(--card), #170a2c);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--foreground);
    transition: all 0.4s ease;
}
.nav-anchor-card:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(168, 85, 247, 0.3);
    text-decoration: none;
    color: var(--foreground);
}
.nav-anchor-card .figure {
    aspect-ratio: 16 / 10;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: var(--muted);
}
.nav-anchor-card .figure img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.nav-anchor-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    margin: 0 0 0.75rem;
}
.nav-anchor-card p {
    color: var(--muted-foreground);
    margin: 0 0 1rem;
    font-size: 0.9375rem;
}
.nav-anchor-card .arrow {
    margin-top: auto;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8125rem;
}

/* ============================================
   ANIMATIONS - scroll reveals
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/* Responsive image utilities */
.responsive-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* ============================================
   REFUSAL PAGE - minimal, centered
   ============================================ */
.container-720 {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.refusal-section { padding: 4rem 0; }
.refusal-notice .eyebrow {
    display: inline-block;
    font-family: "Manrope", sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}
.refusal-notice h1 {
    font-size: clamp(1.875rem, 3vw + 1rem, 2.75rem);
    margin-bottom: 1.5rem;
}
.refusal-notice h2 {
    font-size: 1.625rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.refusal-notice .refusal-lead {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1.75rem;
}
.refusal-notice code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.875em;
    padding: 2px 6px;
    background: var(--muted);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--accent);
}
.refusal-notice ul {
    margin: 0 0 1.5rem;
}
.refusal-notice ul li {
    color: var(--foreground);
    line-height: 1.65;
    margin-bottom: 0.625rem;
}