/* ============================================
   SLOTMAFIA CASINO - DESIGN SYSTEM
   Mafia-noir maximalism, glassmorphism, gold + onyx
   ============================================ */

/* OVERFLOW 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 { max-width: 100%; overflow-x: auto; }
pre code { display: block; min-width: 0; }
.table-wrapper { max-width: 100%; overflow-x: auto; min-width: 0; }
.table-wrapper:focus { outline: 2px solid var(--primary); outline-offset: 2px; }
p, li, td, th { overflow-wrap: break-word; }
input, textarea, select { max-width: 100%; }
section { overflow: clip; }

/* ============================================
   BASE / RESET
   ============================================ */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: "Inter Tight", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    background-image:
        radial-gradient(1200px 800px at 20% -10%, rgba(212,175,55,0.08), transparent 60%),
        radial-gradient(900px 600px at 90% 10%, rgba(139,26,43,0.10), transparent 60%),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.012) 0 1px, transparent 1px 4px);
}
img { display: block; }
a { color: var(--primary); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--primary-2); }
button { font: inherit; cursor: pointer; }

.skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--primary); color: var(--primary-foreground);
    padding: .75rem 1rem; z-index: 9999; font-weight: 700;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   TYPOGRAPHY - Playfair (display) + Inter Tight (body)
   ============================================ */
h1, h2, h3, h4, h5 {
    font-family: "Playfair Display", Georgia, serif;
    color: var(--foreground);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0 0 .6em;
}
h1 { font-size: clamp(1.875rem, 4.5vw + 1rem, 3.25rem); font-weight: 900; }
h2 { font-size: clamp(1.625rem, 3vw + 1rem, 2.375rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 1.5vw + 1rem, 1.625rem); font-weight: 600; }
h4 { font-size: clamp(1.125rem, 1vw + 1rem, 1.375rem); font-weight: 600; }
p { margin: 0 0 1.25rem; max-width: 75ch; }
.gold-italic, em.gold-italic {
    color: var(--primary);
    font-style: italic;
    background: linear-gradient(180deg, #ffe98a, #c89824);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.eyebrow {
    font-family: "Playfair Display", serif;
    font-style: italic;
    color: var(--primary);
    font-size: .95rem;
    letter-spacing: .04em;
    text-transform: none;
    display: inline-block;
    margin-bottom: .5rem;
}
.brand-mafia { font-family: "UnifrakturMaguntia", "Playfair Display", serif; }

/* ============================================
   LAYOUT - container, sections
   ============================================ */
.container, .header-inner, .footer-inner {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}
@media (min-width: 768px) {
    .container, .header-inner, .footer-inner {
        padding-left: var(--space-xl);
        padding-right: var(--space-xl);
    }
}
.section {
    padding: clamp(3rem, 6vw + 1rem, 6.875rem) 0;
    position: relative;
}
.section--tight { padding: clamp(2rem, 4vw + 1rem, 4rem) 0; }
.section-head { text-align: center; margin-bottom: clamp(1.5rem, 3vw, 3rem); }
.section-head .eyebrow { display: block; }
.section-head p { margin: 0 auto; color: var(--muted-foreground); }

/* ============================================
   BUTTONS - burning gold + ghost
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 48px;
    padding: .85rem 1.6rem;
    border-radius: var(--radius-pill);
    font-family: "Inter Tight", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
    position: relative;
    white-space: nowrap;
    letter-spacing: .01em;
}
.btn-primary {
    background: linear-gradient(180deg, #ffd76a 0%, #d4af37 50%, #a8801f 100%);
    color: #1a1108;
    box-shadow:
        0 0 0 1px rgba(255, 215, 106, .55) inset,
        0 8px 24px rgba(212, 175, 55, .35),
        0 2px 0 rgba(0,0,0,.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    color: #1a1108;
    box-shadow:
        0 0 0 1px rgba(255, 215, 106, .8) inset,
        0 12px 36px rgba(212, 175, 55, .55),
        0 2px 0 rgba(0,0,0,.4);
}
.btn-primary::before {
    content: "";
    position: absolute; inset: -2px;
    border-radius: inherit;
    background: linear-gradient(120deg, transparent, rgba(255,231,138,.6), transparent);
    background-size: 250% 100%;
    opacity: 0; transition: opacity .3s var(--ease);
    pointer-events: none;
}
.btn-primary:hover::before { opacity: 1; animation: burnSweep 1.2s linear infinite; }
@keyframes burnSweep { from {background-position: -120% 0;} to {background-position: 220% 0;} }

.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border-color: rgba(212,175,55,.45);
}
.btn-ghost:hover { color: var(--primary); border-color: var(--primary); }

.btn-block { width: 100%; }
.btn-xl { padding: 1.1rem 2.4rem; font-size: 1.125rem; min-height: 56px; }
.btn-burn { animation: burnPulse 2.4s ease-in-out infinite; }
@keyframes burnPulse {
    0%,100% { box-shadow: 0 0 0 1px rgba(255,215,106,.55) inset, 0 8px 24px rgba(212,175,55,.35); }
    50% { box-shadow: 0 0 0 1px rgba(255,231,138,.85) inset, 0 14px 44px rgba(212,175,55,.7); }
}

/* ============================================
   HEADER - fixed translucent glass
   ============================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    z-index: 1000;
    background: rgba(14, 11, 8, 0.86);
    border-bottom: 1px solid rgba(212,175,55,.2);
}
@media (min-width: 1024px) {
    .site-header {
        background: rgba(14, 11, 8, 0.62);
        backdrop-filter: blur(14px) saturate(140%);
        -webkit-backdrop-filter: blur(14px) saturate(140%);
    }
}
.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: var(--foreground);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: .01em;
}
.brand:hover { color: var(--foreground); }
.brand .logo {
    width: 40px; height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, #1f1812, #0e0b08);
    border: 1px solid rgba(212,175,55,.35);
    padding: 4px;
}
.brand-name { font-family: "Playfair Display", serif; font-size: 1.25rem; font-weight: 800; }
.brand-slot { color: var(--foreground); }
.brand-mafia { color: var(--primary); font-size: 1.5rem; vertical-align: -2px; }

main { padding-top: var(--header-h); }

/* NAV - desktop */
.main-nav {
    display: none;
}
.nav-list {
    list-style: none; margin: 0; padding: 0;
    display: flex; align-items: center; gap: 1.4rem;
}
.nav-link {
    color: var(--foreground);
    font-weight: 500;
    font-size: .95rem;
    padding: .5rem .25rem;
    position: relative;
}
.nav-link::after {
    content: ""; position: absolute;
    left: 0; right: 100%; bottom: -2px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transition: right .3s var(--ease);
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { right: 0; }
.nav-cta { display: flex; align-items: center; gap: .6rem; }

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }
}

/* MOBILE TOGGLE */
.mobile-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    border: 1px solid rgba(212,175,55,.4);
    background: rgba(26, 20, 16, .85);
    border-radius: 10px;
    z-index: 1001;
    padding: 0 10px;
}
.mobile-toggle span {
    display: block; height: 2px; width: 22px;
    background: var(--primary);
    transition: transform .3s var(--ease), opacity .2s var(--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); }

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

/* MOBILE NAV DRAWER */
@media (max-width: 1023.98px) {
    .main-nav {
        display: none;
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0; bottom: 0;
        background: var(--background);
        background-image:
            radial-gradient(700px 400px at 80% 10%, rgba(212,175,55,.10), transparent 60%),
            radial-gradient(500px 300px at 0% 100%, rgba(139,26,43,.10), transparent 60%);
        z-index: 999;
        padding: 1.25rem var(--space-md) 2rem;
        flex-direction: column;
        align-items: stretch;
        overflow-y: auto;
    }
    .main-nav.is-open { display: flex; }
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: .25rem;
        margin-bottom: 1.25rem;
    }
    .nav-list li { width: 100%; }
    .nav-link {
        display: flex;
        align-items: center;
        min-height: 52px;
        padding: .6rem .85rem;
        border-bottom: 1px solid rgba(212,175,55,.12);
        font-size: 1.075rem;
        font-family: "Playfair Display", serif;
    }
    .nav-cta {
        flex-direction: column;
        align-items: stretch;
        gap: .6rem;
        padding-top: .5rem;
    }
    .nav-cta .btn { width: 100%; }
}

/* ============================================
   GLASS CARDS - universal content card
   ============================================ */
.glass-card {
    position: relative;
    background: linear-gradient(180deg, rgba(26,20,16,.78), rgba(20,16,11,.68));
    border: 1px solid rgba(212,175,55,.18);
    border-radius: var(--radius-lg);
    padding: clamp(1.25rem, 2vw + 1rem, 1.75rem);
    backdrop-filter: blur(14px) saturate(130%);
    -webkit-backdrop-filter: blur(14px) saturate(130%);
    box-shadow: 0 14px 38px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,231,138,.06);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.glass-card::before {
    content: "";
    position: absolute; inset: 0;
    background: repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 5px);
    pointer-events: none;
    border-radius: inherit;
    opacity: .5;
}
.glass-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212,175,55,.45);
    box-shadow: 0 22px 56px rgba(0,0,0,.6), 0 0 0 1px rgba(255,215,106,.25);
}
.glass-card--burgundy {
    border-color: rgba(139,26,43,.4);
    background: linear-gradient(180deg, rgba(48,16,22,.72), rgba(26,12,16,.72));
}
.glass-card--emerald {
    border-color: rgba(16,185,129,.32);
}

/* Art Deco corner ornaments */
.ornament {
    position: absolute;
    width: 28px; height: 28px;
    pointer-events: none;
    background:
        linear-gradient(45deg, transparent 49%, var(--primary) 49% 51%, transparent 51%) no-repeat,
        radial-gradient(circle at 50% 50%, var(--primary) 0 2px, transparent 3px) no-repeat;
    background-size: 16px 16px, 6px 6px;
    background-position: 6px 6px, 0 0;
    opacity: .85;
}
.ornament-tl { top: 8px; left: 8px; }
.ornament-tr { top: 8px; right: 8px; transform: scaleX(-1); }
.ornament-bl { bottom: 8px; left: 8px; transform: scaleY(-1); }
.ornament-br { bottom: 8px; right: 8px; transform: scale(-1, -1); }
.ornament::before, .ornament::after {
    content: ""; position: absolute; background: var(--primary);
}
.ornament::before { top: 0; left: 0; width: 18px; height: 1.5px; }
.ornament::after { top: 0; left: 0; width: 1.5px; height: 18px; }

.glass-card__badge {
    position: absolute; top: 14px; right: 14px;
    background: linear-gradient(180deg, var(--secondary-2), var(--secondary));
    color: var(--secondary-foreground);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .35rem .65rem;
    border-radius: var(--radius-pill);
    z-index: 2;
    box-shadow: 0 4px 14px rgba(139,26,43,.45);
}
.glass-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #0a0805;
    box-shadow: 0 10px 28px rgba(0,0,0,.5);
}
.glass-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.glass-card:hover .glass-card__media img { transform: scale(1.06); }

.glass-card__body { display: flex; flex-direction: column; gap: .65rem; flex: 1; }
.glass-card__subtitle {
    font-family: "Playfair Display", serif; font-style: italic;
    color: var(--primary); font-size: .9rem;
}
.glass-card__title {
    font-family: "Playfair Display", serif;
    color: #fbf6e9;
    margin: 0;
    font-size: clamp(1.15rem, 1vw + 1rem, 1.45rem);
}
.glass-card__text { color: var(--muted-foreground); font-size: .96rem; margin: 0; }
.glass-card__meta { color: #8c7a5b; font-size: .8rem; margin: 0; font-style: italic; }

.glass-card__hero-num {
    margin: .25rem 0 .5rem;
    display: flex;
    align-items: baseline;
    gap: .55rem;
    flex-wrap: wrap;
}
.hero-num {
    font-family: "Playfair Display", serif;
    font-weight: 900;
    font-size: clamp(2rem, 3vw + 1rem, 2.75rem);
    background: linear-gradient(180deg, #ffe98a 0%, #d4af37 60%, #a8801f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 28px rgba(212,175,55,.25);
    line-height: 1;
}
.hero-num-label { color: var(--muted-foreground); font-size: .95rem; font-weight: 500; }

/* ============================================
   GRIDS - balanced multi-column layouts
   ============================================ */
.grid {
    display: grid;
    gap: var(--space-lg);
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 600px) {
    .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 768px) {
    .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid-4 { 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)); }
}

/* ============================================
   CTA BANNER - full-bleed conversion band
   ============================================ */
.cta-banner {
    position: relative;
    padding: clamp(3rem, 5vw + 1rem, 5.5rem) var(--space-md);
    margin: clamp(2rem, 4vw, 4rem) 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background:
        radial-gradient(800px 400px at 70% 50%, rgba(212,175,55,.18), transparent 60%),
        radial-gradient(600px 300px at 10% 0%, rgba(139,26,43,.22), transparent 60%),
        linear-gradient(180deg, #14100b 0%, #0a0805 100%);
    border: 1px solid rgba(212,175,55,.22);
    text-align: center;
    isolation: isolate;
}
.cta-banner__smoke {
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.06), transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04), transparent 40%);
    pointer-events: none;
    z-index: 0;
}
.cta-banner__don {
    position: absolute;
    right: -40px; bottom: 0;
    width: clamp(180px, 28vw, 360px);
    opacity: .35;
    z-index: 0;
    pointer-events: none;
    filter: drop-shadow(0 0 30px rgba(0,0,0,.6));
}
.cta-banner__don img { width: 100%; height: auto; }
@media (min-width: 768px) {
    .cta-banner__don { opacity: .55; right: 2%; }
}
.cta-banner__inner {
    position: relative; z-index: 2;
    max-width: 760px; margin: 0 auto;
    display: flex; flex-direction: column; align-items: center; gap: 1.1rem;
}
.cta-banner__title {
    font-size: clamp(1.75rem, 3vw + 1rem, 3rem);
    margin: 0;
    color: #fbf6e9;
    line-height: 1.1;
}
.cta-banner__sub {
    color: var(--muted-foreground);
    font-size: clamp(1rem, .5vw + .9rem, 1.15rem);
    margin: 0;
    max-width: 60ch;
}
.cta-banner__micro {
    font-size: .8rem;
    color: #8c7a5b;
    margin: .25rem 0 0;
    letter-spacing: .03em;
}
.cta-banner__coins {
    position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden;
}
.coin {
    position: absolute;
    font-family: "Playfair Display", serif; font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 18px rgba(212,175,55,.6);
    font-size: 1.25rem;
    opacity: .6;
    animation: coinDrift 8s linear infinite;
}
.coin-1 { top: 10%; left: 8%; animation-delay: 0s; }
.coin-2 { top: 70%; left: 20%; animation-delay: 1.5s; }
.coin-3 { top: 30%; left: 85%; animation-delay: 3s; font-size: 1.6rem; }
.coin-4 { top: 80%; left: 70%; animation-delay: 4.5s; }
.coin-5 { top: 20%; left: 50%; animation-delay: 2.2s; font-size: 1.4rem; }
@keyframes coinDrift {
    0%   { transform: translateY(0) rotate(0); opacity: 0; }
    20%  { opacity: .8; }
    100% { transform: translateY(-60px) rotate(360deg); opacity: 0; }
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section { padding: clamp(2rem, 4vw, 4rem) 0; }
.faq-section__title { text-align: center; }
.faq-section__sub { text-align: center; color: var(--muted-foreground); max-width: 56ch; margin: 0 auto 2rem; }
.faq-list {
    max-width: 880px; margin: 0 auto;
    background: linear-gradient(180deg, rgba(26,20,16,.7), rgba(20,16,11,.6));
    border: 1px solid rgba(212,175,55,.18);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.faq-group {
    font-family: "Playfair Display", serif;
    font-style: italic;
    color: var(--primary);
    font-size: 1.05rem;
    padding: 1.2rem 1.25rem .6rem;
    margin: 0;
    border-top: 1px solid rgba(212,175,55,.12);
}
.faq-list > .faq-group:first-child { border-top: 0; }
.faq-item {
    border-top: 1px solid rgba(212,175,55,.12);
    position: relative;
    transition: background .25s var(--ease);
}
.faq-list > .faq-item:first-child { border-top: 0; }
.faq-item[open] {
    background: rgba(212,175,55,.04);
    box-shadow: inset 3px 0 0 var(--primary);
}
.faq-q {
    list-style: none;
    cursor: pointer;
    padding: 1.1rem 3rem 1.1rem 1.25rem;
    font-family: "Playfair Display", serif;
    color: #fbf6e9;
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    min-height: 56px;
    display: flex; align-items: center;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-icon {
    position: absolute; right: 1.25rem; top: 50%;
    width: 22px; height: 22px;
    transform: translateY(-50%);
    transition: transform .3s var(--ease);
}
.faq-icon::before, .faq-icon::after {
    content: ""; position: absolute;
    background: var(--primary);
    border-radius: 2px;
}
.faq-icon::before { left: 0; right: 0; top: 50%; height: 2px; transform: translateY(-50%); }
.faq-icon::after  { top: 0; bottom: 0; left: 50%; width: 2px; transform: translateX(-50%); transition: transform .3s var(--ease); }
.faq-item[open] .faq-icon::after { transform: translateX(-50%) rotate(90deg); }
.faq-a {
    padding: 0 1.25rem 1.25rem;
    color: var(--muted-foreground);
    font-size: 1rem;
    line-height: 1.65;
    animation: faqFade .35s var(--ease);
}
.faq-a a { color: var(--primary); text-decoration: underline; text-decoration-color: rgba(212,175,55,.4); }
.faq-a a:hover { text-decoration-color: var(--primary); }
.faq-a p { margin: 0 0 .75rem; }
.faq-a p:last-child { margin-bottom: 0; }
@keyframes faqFade { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================
   LOGO STRIP
   ============================================ */
.logo-strip {
    background: linear-gradient(180deg, rgba(10,8,5,.85), rgba(20,16,11,.7));
    border-top: 1px solid rgba(212,175,55,.25);
    border-bottom: 1px solid rgba(212,175,55,.25);
    padding: clamp(1rem, 2vw, 1.5rem) 0;
    margin: clamp(1.5rem, 3vw, 2.5rem) 0;
}
.logo-strip__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
@media (min-width: 768px) {
    .logo-strip__inner { flex-direction: row; gap: 1.75rem; padding: 0 var(--space-xl); }
}
.logo-strip__label {
    font-family: "Playfair Display", serif;
    font-style: italic;
    color: var(--primary);
    font-size: .95rem;
    flex-shrink: 0;
}
.logo-strip__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.75rem;
    flex: 1;
    min-width: 0;
}
.logo-strip__row:focus { outline: 2px solid var(--primary); outline-offset: 2px; }
@media (max-width: 767.98px) {
    .logo-strip__row {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        width: 100%;
        scrollbar-width: none;
        -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
                mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
        padding: 0 .25rem;
    }
    .logo-strip__row::-webkit-scrollbar { display: none; }
}
.logo-chip {
    flex-shrink: 0;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    color: #f5ead4;
    font-size: 1rem;
    letter-spacing: .04em;
    padding: .5rem .85rem;
    border: 1px solid rgba(212,175,55,.18);
    border-radius: 8px;
    background: rgba(255,255,255,.02);
    transition: color .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
    white-space: nowrap;
}
.logo-chip:hover {
    color: var(--primary);
    border-color: rgba(212,175,55,.5);
    background: rgba(212,175,55,.06);
}

/* ============================================
   ENGAGEMENT / CRO PATTERNS
   ============================================ */
.tldr {
    position: relative;
    padding: 1.25rem 1.5rem 1.25rem 1.75rem;
    margin: 1.5rem 0 2rem;
    background: linear-gradient(180deg, rgba(212,175,55,.07), rgba(212,175,55,.02));
    border: 1px solid rgba(212,175,55,.28);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
}
.tldr__label {
    font-family: "Playfair Display", serif;
    font-style: italic;
    color: var(--primary);
    font-size: .9rem;
    display: block;
    margin-bottom: .35rem;
}
.tldr p { margin: 0; color: var(--foreground); }

.callout {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary);
    background: rgba(212,175,55,.05);
    margin: 1.25rem 0;
    color: var(--foreground);
}
.callout--warn { border-left-color: var(--secondary-2); background: rgba(139,26,43,.08); }
.callout--ok   { border-left-color: var(--accent); background: rgba(16,185,129,.06); }

.stat-highlight {
    display: flex; flex-direction: column; gap: .15rem;
    padding: 1.25rem;
    border: 1px solid rgba(212,175,55,.22);
    border-radius: var(--radius-md);
    background: rgba(26,20,16,.6);
    text-align: center;
}
.stat-highlight__num {
    font-family: "Playfair Display", serif;
    font-weight: 900;
    font-size: clamp(1.75rem, 2.5vw + 1rem, 2.5rem);
    background: linear-gradient(180deg, #ffe98a, #c89824);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.stat-highlight__label { color: var(--muted-foreground); font-size: .9rem; }
.stat-highlight__src { color: #8c7a5b; font-size: .75rem; font-style: italic; margin-top: .25rem; }

.pull-quote {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: clamp(1.25rem, 1.5vw + 1rem, 1.75rem);
    line-height: 1.35;
    color: #fbf6e9;
    border-left: 4px solid var(--primary);
    padding: 1rem 0 1rem 1.5rem;
    margin: 2rem 0;
    position: relative;
}
.pull-quote::before {
    content: """;
    font-size: 4rem; color: var(--primary);
    position: absolute; top: -1rem; left: 1rem; line-height: 1;
    font-family: Georgia, serif;
    opacity: .35;
}
.pull-quote cite { display: block; font-style: normal; color: var(--muted-foreground); font-size: .95rem; margin-top: .5rem; }

/* details/summary global */
details.expandable {
    border: 1px solid rgba(212,175,55,.22);
    border-radius: var(--radius-md);
    padding: 0;
    margin: .75rem 0;
    background: rgba(26,20,16,.5);
    overflow: hidden;
}
details.expandable > summary {
    cursor: pointer;
    padding: .9rem 1.1rem;
    list-style: none;
    color: #fbf6e9;
    font-weight: 600;
    font-family: "Playfair Display", serif;
}
details.expandable > summary::-webkit-details-marker { display: none; }
details.expandable[open] > summary { color: var(--primary); }
details.expandable > *:not(summary) { padding: 0 1.1rem 1.1rem; color: var(--muted-foreground); }

/* Comparison table */
.compare-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .95rem; min-width: 480px; }
.compare-table thead th {
    background: rgba(212,175,55,.12);
    color: var(--primary);
    font-family: "Playfair Display", serif;
    text-align: left;
    padding: .85rem 1rem;
    border-bottom: 1px solid rgba(212,175,55,.3);
}
.compare-table tbody td {
    padding: .8rem 1rem;
    border-bottom: 1px solid rgba(212,175,55,.1);
    color: var(--foreground);
}
.compare-table tbody tr:nth-child(even) td { background: rgba(255,255,255,.02); }
.compare-table .col-recommended {
    background: rgba(212,175,55,.08) !important;
    box-shadow: inset 2px 0 0 var(--primary);
}

/* Trust badges row */
.trust-row {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;
    margin: 1.5rem 0;
}
.trust-badge {
    display: inline-flex; align-items: center; gap: .45rem;
    padding: .55rem .9rem;
    border: 1px solid rgba(212,175,55,.25);
    border-radius: var(--radius-pill);
    background: rgba(26,20,16,.6);
    color: var(--muted-foreground);
    font-size: .85rem;
    font-weight: 600;
}
.trust-badge strong { color: var(--primary); }

/* Social proof / review card */
.review-card {
    padding: 1.25rem 1.4rem;
    border: 1px solid rgba(212,175,55,.18);
    border-radius: var(--radius-md);
    background: rgba(26,20,16,.6);
}
.review-stars { color: var(--primary); letter-spacing: 2px; margin-bottom: .25rem; }
.review-card blockquote { margin: 0 0 .65rem; color: var(--foreground); font-style: italic; font-family: "Playfair Display", serif; font-size: 1.05rem; }
.review-card cite { color: var(--muted-foreground); font-size: .85rem; font-style: normal; }

/* ============================================
   HERO - homepage cinematic hero (used by pages)
   ============================================ */
.hero {
    position: relative;
    padding: clamp(2.5rem, 5vw + 1rem, 5rem) 0 clamp(2rem, 4vw + 1rem, 4rem);
    overflow: hidden;
}
.hero__inner { position: relative; z-index: 2; }
.hero__grid {
    display: grid;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 1024px) {
    .hero__grid { grid-template-columns: 1.05fr 0.95fr; }
}
.hero__title {
    font-size: clamp(2rem, 4.5vw + 1rem, 3.5rem);
    margin: 0 0 1rem;
    line-height: 1.05;
}
.hero__sub { color: var(--muted-foreground); font-size: 1.1rem; max-width: 50ch; }
.hero__cta-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.4rem; }
.hero__media {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(180deg, #1a1410, #0a0805);
    border: 1px solid rgba(212,175,55,.25);
    box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 50% 30%, transparent 0%, rgba(0,0,0,.45) 90%),
        linear-gradient(180deg, transparent 60%, rgba(14,11,8,.85) 100%);
    pointer-events: none;
}
.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: .75rem;
    margin-top: 1.75rem;
}
.hero__stat {
    text-align: center;
    padding: .75rem .5rem;
    border: 1px solid rgba(212,175,55,.18);
    border-radius: var(--radius-md);
    background: rgba(26,20,16,.6);
}
.hero__stat-num { font-family: "Playfair Display", serif; font-weight: 900; color: var(--primary); font-size: clamp(1.1rem, 1vw + .8rem, 1.5rem); display: block; }
.hero__stat-label { font-size: .75rem; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: .08em; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background:
        linear-gradient(180deg, #0a0805 0%, #050402 100%);
    border-top: 1px solid rgba(212,175,55,.2);
    margin-top: clamp(3rem, 6vw, 6rem);
    padding: clamp(2rem, 5vw, 3.5rem) 0 1.5rem;
    color: var(--muted-foreground);
}
.footer-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 768px) {
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
}
.footer-col { min-width: 0; }
.footer-col > summary {
    list-style: none; cursor: pointer;
    padding: .85rem 0;
    border-bottom: 1px solid rgba(212,175,55,.15);
    position: relative;
}
.footer-col > summary::-webkit-details-marker { display: none; }
.footer-col > summary::after {
    content: "+"; position: absolute; right: 0; top: 50%;
    transform: translateY(-50%); color: var(--primary); font-size: 1.3rem; font-weight: 700;
    transition: transform .25s var(--ease);
}
.footer-col[open] > summary::after { content: "−"; }
.footer-col-heading {
    display: inline-block;
    margin: 0; font-size: 1rem;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    color: #f5ead4;
    line-height: 1.15;
}
.footer-col ul { list-style: none; padding: 0; margin: .75rem 0 0; display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul a { color: var(--muted-foreground); font-size: .95rem; }
.footer-col ul a:hover { color: var(--primary); }
.footer-brand-col { padding-bottom: .5rem; }
.footer-brand-col .brand { color: #f5ead4; }
.footer-tagline { font-family: "Playfair Display", serif; font-style: italic; color: var(--muted-foreground); margin-top: .75rem; max-width: 36ch; }

@media (min-width: 768px) {
    .footer-col { padding: 0; }
    .footer-col > summary { pointer-events: none; padding: 0 0 .5rem; border: 0; }
    .footer-col > summary::after { display: none; }
    .footer-col[open] > summary, .footer-col > summary { color: #f5ead4; }
    .footer-col ul { margin-top: .25rem; }
}

.footer-payments {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(212,175,55,.15);
    display: flex; flex-direction: column; gap: .75rem;
}
.footer-payments-label {
    font-family: "Playfair Display", serif; font-style: italic;
    color: var(--primary); font-size: .9rem;
}
.footer-payments-row {
    display: flex; flex-wrap: wrap; gap: .5rem;
}
.pay-chip {
    display: inline-flex; align-items: center;
    padding: .45rem .8rem;
    border: 1px solid rgba(212,175,55,.22);
    border-radius: 6px;
    background: rgba(255,255,255,.02);
    font-size: .85rem;
    font-weight: 600;
    color: #f5ead4;
    letter-spacing: .03em;
}

.footer-legal {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(212,175,55,.15);
    display: flex; flex-direction: column; gap: .75rem;
}
.footer-badges { display: flex; flex-wrap: wrap; gap: .6rem; }
.badge-18 {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border: 2px solid var(--secondary-2);
    color: var(--secondary-2);
    font-weight: 900; font-size: .8rem;
    border-radius: 50%;
    background: rgba(139,26,43,.1);
}
.badge-license, .badge-ssl {
    padding: .45rem .75rem;
    border: 1px solid rgba(212,175,55,.25);
    border-radius: 6px;
    background: rgba(26,20,16,.6);
    font-size: .78rem;
    color: var(--muted-foreground);
    align-self: center;
}
.footer-disclaimer { font-size: .8rem; color: #8c7a5b; margin: 0; max-width: 70ch; }
.footer-disclaimer a { color: var(--primary); text-decoration: underline; }
.footer-copy { font-size: .8rem; color: #6c5d44; margin: 0; }

/* ============================================
   ANIMATIONS - scroll reveal
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
    will-change: opacity, transform;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-vault {
    clip-path: inset(0 50% 0 50%);
    opacity: 0;
    transition: clip-path 1s var(--ease), opacity .8s var(--ease);
}
.reveal-vault.is-visible {
    clip-path: inset(0 0 0 0);
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
    .animate-on-scroll, .reveal-vault { opacity: 1; transform: none; clip-path: none; }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.muted { color: var(--muted-foreground); }
.gold { color: var(--primary); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: var(--space-xl); }
.mb-lg { margin-bottom: var(--space-xl); }
.lead { font-size: 1.125rem; color: var(--foreground); }

/* ============================================
   SLOT TABS - category filter
   ============================================ */
.slot-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
    margin: 0 auto 2rem;
    padding: .5rem;
    border: 1px solid rgba(212,175,55,.18);
    border-radius: var(--radius-pill);
    background: rgba(26,20,16,.6);
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
}
.slot-tabs::-webkit-scrollbar { display: none; }
.slot-tab {
    flex-shrink: 0;
    min-height: 44px;
    padding: .55rem 1.1rem;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    background: transparent;
    color: var(--muted-foreground);
    font-family: "Inter Tight", sans-serif;
    font-weight: 600;
    font-size: .92rem;
    letter-spacing: .02em;
    cursor: pointer;
    transition: color .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
    white-space: nowrap;
}
.slot-tab:hover {
    color: var(--primary);
    border-color: rgba(212,175,55,.35);
}
.slot-tab.is-active {
    color: #1a1108;
    background: linear-gradient(180deg, #ffd76a 0%, #d4af37 60%, #a8801f 100%);
    border-color: rgba(255,215,106,.6);
    box-shadow: 0 6px 18px rgba(212,175,55,.35);
}
.slot-item.is-hidden { display: none; }

/* ============================================
   CONSIGLIERE - stub / transition page
   ============================================ */
.consigliere-stage {
    min-height: calc(100vh - var(--header-h) - 280px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2rem, 5vw, 4rem) 0;
}
.consigliere-card {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    padding: clamp(1.75rem, 4vw, 3rem);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212,175,55,.28);
    background:
        radial-gradient(700px 400px at 80% 0%, rgba(212,175,55,.10), transparent 60%),
        radial-gradient(500px 300px at 0% 100%, rgba(139,26,43,.14), transparent 60%),
        linear-gradient(180deg, rgba(26,20,16,.85), rgba(14,11,8,.9));
    box-shadow: 0 30px 80px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,231,138,.06);
    backdrop-filter: blur(14px) saturate(130%);
    -webkit-backdrop-filter: blur(14px) saturate(130%);
    overflow: hidden;
    display: grid;
    gap: clamp(1.25rem, 3vw, 2rem);
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    text-align: center;
}
@media (min-width: 768px) {
    .consigliere-card {
        grid-template-columns: 240px minmax(0, 1fr);
        text-align: left;
    }
}
.consigliere-don {
    width: clamp(160px, 40vw, 240px);
    aspect-ratio: 4 / 5;
    margin: 0 auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(212,175,55,.22);
    box-shadow: 0 20px 50px rgba(0,0,0,.55);
    background: #0a0805;
}
.consigliere-don img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.consigliere-body { display: flex; flex-direction: column; gap: .85rem; min-width: 0; }
.consigliere-title {
    margin: 0;
    font-size: clamp(1.6rem, 3vw + 1rem, 2.5rem);
    line-height: 1.15;
    color: #fbf6e9;
}
.consigliere-sub {
    color: var(--muted-foreground);
    font-size: 1.05rem;
    margin: 0;
    max-width: 52ch;
}
.consigliere-loader {
    display: inline-flex;
    gap: .5rem;
    margin: .5rem 0;
    justify-content: center;
}
@media (min-width: 768px) {
    .consigliere-loader { justify-content: flex-start; }
}
.loader-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: linear-gradient(180deg, #ffe98a, #c89824);
    box-shadow: 0 0 14px rgba(212,175,55,.55);
    animation: loaderPulse 1.4s ease-in-out infinite;
}
.loader-dot:nth-child(2) { animation-delay: .2s; }
.loader-dot:nth-child(3) { animation-delay: .4s; }
@keyframes loaderPulse {
    0%, 80%, 100% { transform: scale(.6); opacity: .35; }
    40% { transform: scale(1); opacity: 1; }
}
.consigliere-micro {
    color: #8c7a5b;
    font-size: .85rem;
    margin: .25rem 0 0;
}
.consigliere-micro a { color: var(--primary); text-decoration: underline; text-decoration-color: rgba(212,175,55,.4); }
.consigliere-micro a:hover { text-decoration-color: var(--primary); }

/* SEO text wrapper */
.seo-text {
    max-width: 880px;
    margin: 0 auto;
    color: var(--muted-foreground);
}
.seo-text h2, .seo-text h3 { color: #fbf6e9; margin-top: 2rem; }
.seo-text p { color: var(--muted-foreground); }
.seo-text a { color: var(--primary); text-decoration: underline; text-decoration-color: rgba(212,175,55,.4); }
.seo-text a:hover { text-decoration-color: var(--primary); }
.seo-text ul, .seo-text ol { color: var(--muted-foreground); padding-left: 1.25rem; }
.seo-text li { margin: .35rem 0; }