/*
 * OnlySpins Casino - Design System
 * Tropical night-club aesthetic. Dark base, neon-turquoise + gold accents.
 * Fonts: Sora (headings) / Manrope (body).
 */

:root {
    --background: #f0fdfa;
    --foreground: #1c2b30;
    --card: #fdf6e9;
    --card-foreground: #1c2b30;
    --popover: #ffffff;
    --popover-foreground: #1c2b30;
    --primary: #0d7377;
    --primary-foreground: #ffffff;
    --secondary: #f5e9d0;
    --secondary-foreground: #1c2b30;
    --muted: #e2e8ea;
    --muted-foreground: #3f4d52;
    --accent: #d99a2b;
    --accent-foreground: #1c2b30;
    --destructive: #dc2626;
    --destructive-foreground: #ffffff;
    --border: #c9d4d6;
    --input: #e2e8ea;
    --ring: #0d7377;

    --glow-turquoise: 0 0 24px rgba(13, 115, 119, 0.35);
    --glow-gold: 0 0 24px rgba(217, 154, 43, 0.3);

    /* Spacing rhythm (8px grid) */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3.5rem;
    --space-section: 3.5rem;

    --radius: 16px;
    --radius-sm: 10px;
    --maxw: 1200px;
    --header-h: 68px;

    --font-head: "Sora", system-ui, sans-serif;
    --font-body: "Manrope", system-ui, sans-serif;

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --dur: 250ms;
}

.dark {
    --background: #050b14;
    --foreground: #f0f4f5;
    --card: #0d1b2a;
    --card-foreground: #f0f4f5;
    --popover: #0d1b2a;
    --popover-foreground: #f0f4f5;
    --primary: #2dd4d4;
    --primary-foreground: #04141a;
    --secondary: #122d3d;
    --secondary-foreground: #f0f4f5;
    --muted: #1c3644;
    --muted-foreground: #c4d5da;
    --accent: #f5c542;
    --accent-foreground: #04141a;
    --destructive: #ea0d33;
    --destructive-foreground: #ffffff;
    --border: #1f3d4d;
    --input: #122d3d;
    --ring: #2dd4d4;

    --glow-turquoise: 0 0 24px rgba(45, 212, 212, 0.45);
    --glow-gold: 0 0 24px rgba(245, 197, 66, 0.4);
}

/* ============================================
   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; }

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

section { overflow: clip; }

/* ============================================
   BASE / TYPOGRAPHY
   Sora headings, Manrope body. Fluid scale.
   ============================================ */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(45, 212, 212, 0.10), transparent),
        radial-gradient(ellipse 60% 40% at 90% 20%, rgba(245, 197, 66, 0.06), transparent);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-head);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--foreground);
    margin: 0 0 var(--space-sm);
}

h1 { font-size: clamp(1.875rem, 5vw, 2.75rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }

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

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

.content a[href] { word-break: break-word; }

ul, ol { line-height: 1.6; }

strong { color: var(--foreground); font-weight: 700; }

.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; left: -999px; top: 0; z-index: 1100;
    background: var(--accent); color: var(--accent-foreground);
    padding: var(--space-sm) var(--space-md); border-radius: 0 0 var(--radius-sm) 0;
    font-weight: 700;
}
.skip-link:focus { left: 0; }

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

/* ============================================
   LAYOUT HELPERS
   ============================================ */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--space-sm); }

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

.max-w-1200 { max-width: var(--maxw); margin-inline: auto; }

.eyebrow {
    display: inline-block; font-family: var(--font-head); font-weight: 600;
    font-size: 0.8125rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--primary); margin-bottom: var(--space-xs);
}

/* Palm-silhouette / neon horizon divider */
.section-divider {
    position: relative; height: 2px; margin-block: var(--space-lg);
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    box-shadow: 0 0 18px rgba(45, 212, 212, 0.5);
    border: none;
}

/* ============================================
   BUTTONS
   Glowing CTAs - turquoise + gold. 48px targets.
   ============================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    min-height: 48px; padding: 0 1.5rem;
    font-family: var(--font-head); font-weight: 700; font-size: 1rem;
    border-radius: 999px; border: 2px solid transparent; cursor: pointer;
    text-align: center; text-decoration: none;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
                background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn--gold {
    background: var(--accent); color: var(--accent-foreground);
    box-shadow: 0 6px 20px rgba(245, 197, 66, 0.28);
}
.btn--gold:hover { color: var(--accent-foreground); box-shadow: 0 0 0 6px rgba(45, 212, 212, 0.22), 0 8px 26px rgba(245, 197, 66, 0.42); }

.btn--turquoise {
    background: var(--primary); color: var(--primary-foreground);
    box-shadow: 0 6px 20px rgba(45, 212, 212, 0.25);
}
.btn--turquoise:hover { color: var(--primary-foreground); box-shadow: 0 0 0 6px rgba(45, 212, 212, 0.25), 0 8px 26px rgba(45, 212, 212, 0.4); }

.btn--ghost {
    background: transparent; color: var(--foreground); border-color: var(--border);
}
.btn--ghost:hover { color: var(--primary); border-color: var(--primary); box-shadow: var(--glow-turquoise); }

.btn--lg { min-height: 56px; padding: 0 2.25rem; font-size: 1.0625rem; }

/* ============================================
   HEADER / NAV
   Sticky translucent header, mobile drawer.
   ============================================ */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: color-mix(in srgb, var(--background) 88%, transparent);
    border-bottom: 1px solid var(--border);
}
@media (min-width: 1024px) {
    .site-header { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
}

.site-header__inner {
    max-width: var(--maxw); margin-inline: auto;
    min-height: var(--header-h); padding-inline: var(--space-sm);
    display: flex; align-items: center; justify-content: space-between; gap: var(--space-md);
}

.site-brand { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--foreground); min-width: 0; }
.site-brand:hover { color: var(--foreground); }
.site-brand__text { font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; letter-spacing: -0.02em; }
.site-brand__accent { color: var(--primary); }
.site-brand__mark { position: relative; width: 30px; height: 30px; flex-shrink: 0; display: inline-grid; place-items: center; }
.site-brand__ring {
    position: absolute; inset: 0; border-radius: 50%;
    border: 3px solid var(--primary); box-shadow: var(--glow-turquoise);
}
.site-brand__star {
    width: 9px; height: 9px; background: var(--accent); border-radius: 2px;
    transform: rotate(45deg); box-shadow: var(--glow-gold);
}

.primary-nav { display: flex; align-items: center; gap: var(--space-lg); min-width: 0; }
.primary-nav__list { display: flex; gap: var(--space-md); list-style: none; margin: 0; padding: 0; }
.primary-nav__link {
    font-family: var(--font-head); font-weight: 600; font-size: 0.98rem;
    color: var(--foreground); padding: 0.4rem 0; position: relative;
}
.primary-nav__link::after {
    content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
    background: var(--primary); box-shadow: var(--glow-turquoise);
    transition: width var(--dur) var(--ease);
}
.primary-nav__link:hover { color: var(--primary); }
.primary-nav__link:hover::after { width: 100%; }

.primary-nav__actions { display: flex; align-items: center; gap: var(--space-xs); }

/* Theme toggle */
.theme-toggle {
    display: inline-grid; place-items: center; flex-shrink: 0; margin-left: auto;
    width: 48px; height: 48px; padding: 0;
    background: transparent; border: 1px solid var(--border); border-radius: 12px; cursor: pointer;
    transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.theme-toggle:hover { border-color: var(--primary); box-shadow: var(--glow-turquoise); }
.theme-toggle__icon { position: relative; width: 20px; height: 20px; display: block; }
.theme-toggle__icon::before {
    content: ""; position: absolute; inset: 0; border-radius: 50%;
    background: var(--accent); box-shadow: var(--glow-gold);
    transition: transform var(--dur) var(--ease);
}
.dark .theme-toggle__icon::before {
    background: transparent;
    box-shadow: inset -6px -3px 0 0 var(--accent);
    transform: rotate(-18deg);
}

.nav-toggle {
    display: none; position: relative; z-index: 1001;
    width: 48px; height: 48px; padding: 12px;
    background: transparent; border: 1px solid var(--border); border-radius: 12px; cursor: pointer;
}
.nav-toggle span {
    display: block; width: 100%; height: 2px; background: var(--foreground);
    border-radius: 2px; transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
@media (max-width: 1023px) {
    .nav-toggle { display: block; }
    .primary-nav {
        display: none;
        position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; z-index: 999;
        flex-direction: column; align-items: stretch; justify-content: flex-start; gap: var(--space-md);
        background: var(--background); padding: var(--space-lg) var(--space-md);
        overflow-y: auto;
    }
    .primary-nav.is-open { display: flex; }
    .primary-nav__list { flex-direction: column; gap: 0; }
    .primary-nav__link {
        display: flex; align-items: center; min-height: 52px;
        font-size: 1.15rem; border-bottom: 1px solid var(--border);
    }
    .primary-nav__actions { flex-direction: column; align-items: stretch; margin-top: var(--space-sm); }
    .primary-nav__actions .btn { width: 100%; }
}

/* ============================================
   FOOTER
   4 columns → 1 on mobile.
   ============================================ */
.site-footer { background: var(--card); border-top: 1px solid var(--border); margin-top: var(--space-section); }
.site-footer__inner {
    max-width: var(--maxw); margin-inline: auto; padding: var(--space-xl) var(--space-sm) var(--space-lg);
    display: grid; grid-template-columns: 1fr; gap: var(--space-lg);
}
@media (min-width: 640px) { .site-footer__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .site-footer__inner { grid-template-columns: 1.4fr 1fr 1fr 1.3fr; } }

.site-brand--footer { margin-bottom: var(--space-sm); }
.site-footer__tagline { color: var(--muted-foreground); font-size: 0.95rem; margin: 0; }
.site-footer__heading { font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--foreground); margin-bottom: var(--space-sm); }
.site-footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.site-footer__links a { color: var(--muted-foreground); font-size: 0.95rem; }
.site-footer__links a:hover { color: var(--primary); }

.site-footer__pays { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.site-footer__pays img { border: 1px solid var(--border); border-radius: 8px; background: var(--secondary); padding: 4px; }

.site-footer__badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: var(--space-sm); }
.site-footer__note { color: var(--muted-foreground); font-size: 0.85rem; margin: 0; }

.site-footer__bar {
    border-top: 1px solid var(--border); text-align: center;
    padding: var(--space-md) var(--space-sm); color: var(--muted-foreground); font-size: 0.85rem;
}
.site-footer__bar p { margin: 0; }

/* ============================================
   HERO
   Full-bleed, model over tropical night sky.
   Foreground always sits on a dark image overlay, so text stays light
   regardless of the active theme.
   ============================================ */
.hero {
    position: relative; overflow: clip;
    min-height: clamp(460px, 78vh, 720px);
    display: flex; align-items: center;
    border-bottom: 1px solid var(--border);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(5,11,20,0.5) 0%, rgba(5,11,20,0.72) 55%, rgba(5,11,20,0.94) 100%);
}
.hero__inner {
    position: relative; z-index: 1;
    max-width: var(--maxw); margin-inline: auto; width: 100%;
    padding: var(--space-xl) var(--space-sm);
}
.hero__content { max-width: 720px; }
.hero__title { font-size: clamp(2rem, 6vw, 3.25rem); margin-bottom: var(--space-md); color: #f0f4f5; }
.hero .eyebrow { color: #2dd4d4; }
.hero__lead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: #f0f4f5; margin-bottom: var(--space-lg); }
.hero__lead a { color: #2dd4d4; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.hero__lead a:hover { color: var(--accent); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); }

/* ============================================
   PROSE / CONTENT
   ============================================ */
.prose { max-width: 72ch; }
.prose h2 { margin-top: var(--space-xl); }
.prose h3 { margin-top: var(--space-lg); }
.prose ul, .prose ol { padding-left: 1.25rem; margin-bottom: var(--space-md); }
.prose li { margin-bottom: 0.5rem; }
.prose a { text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }

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

/* ============================================
   BONUS CARD
   ============================================ */
.bonus-card {
    display: flex; flex-direction: column; align-items: flex-start;
    background: var(--secondary); border: 1px solid var(--accent);
    border-radius: var(--radius); padding: var(--space-md);
    min-width: 0; position: relative; overflow: hidden;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
@media (min-width: 768px) { .bonus-card { padding: var(--space-lg); } }
.bonus-card:hover { transform: translateY(-4px); box-shadow: 0 0 0 1px var(--accent), var(--glow-gold); }
.bonus-card__media { align-self: center; margin-bottom: var(--space-xs); }
.bonus-card__media img { width: 120px; height: 120px; object-fit: contain; }
.bonus-card__label {
    font-family: var(--font-head); font-weight: 600; font-size: 0.8rem;
    letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); margin-bottom: 0.4rem;
}
.bonus-card__figure {
    font-family: var(--font-head); font-weight: 800; line-height: 1;
    font-size: clamp(2.5rem, 7vw, 3.5rem); color: var(--accent);
    text-shadow: var(--glow-gold); margin: 0 0 var(--space-sm);
}
.bonus-card__suffix { font-size: 0.4em; margin-left: 0.35em; color: var(--foreground); }
.bonus-card__desc { color: var(--foreground); font-size: 0.98rem; margin-bottom: var(--space-md); }
.bonus-card__cta { margin-top: auto; }

/* ============================================
   INFO CARD
   ============================================ */
.info-card {
    display: flex; flex-direction: column; min-width: 0;
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.info-card:hover { transform: scale(1.03); box-shadow: 0 12px 30px rgba(0,0,0,0.35); border-color: var(--accent); }
.info-card__media { aspect-ratio: 3 / 2; overflow: hidden; }
.info-card__media img { width: 100%; height: 100%; object-fit: cover; }
.info-card__icon {
    font-size: 2.25rem; padding: var(--space-md) var(--space-md) 0; line-height: 1;
}
.info-card__body { padding: var(--space-md); display: flex; flex-direction: column; flex: 1; }
.info-card__title { margin-bottom: 0.5rem; }
.info-card__desc { color: var(--card-foreground); font-size: 0.98rem; margin-bottom: var(--space-md); }
.info-card__link { margin-top: auto; font-family: var(--font-head); font-weight: 600; color: var(--primary); }
.info-card__link:hover { color: var(--accent); }
.info-card__link::after { content: " →"; }

/* ============================================
   FAQ ACCORDION (native details/summary)
   ============================================ */
.faq-accordion { max-width: 800px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item__q {
    list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
    gap: var(--space-sm); min-height: 56px; padding: var(--space-sm) var(--space-sm) var(--space-sm) 0;
    font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--foreground);
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__icon { position: relative; width: 22px; height: 22px; flex-shrink: 0; }
.faq-item__icon::before, .faq-item__icon::after {
    content: ""; position: absolute; background: var(--primary); border-radius: 2px;
    transition: transform var(--dur) var(--ease);
}
.faq-item__icon::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.faq-item__icon::after { left: 50%; top: 0; width: 2px; height: 100%; transform: translateX(-50%); }
.faq-item[open] .faq-item__icon::after { transform: translateX(-50%) scaleY(0); }
.faq-item[open] { border-left: 3px solid var(--primary); padding-left: var(--space-sm); box-shadow: -4px 0 18px -8px var(--primary); }
.faq-item[open] .faq-item__q { color: var(--primary); }
.faq-item__a { padding: 0 var(--space-sm) var(--space-md) 0; }
.faq-item__a p { color: var(--muted-foreground); line-height: 1.7; margin: 0; }

/* ============================================
   HOW-TO STEPS
   ============================================ */
.how-to { list-style: none; margin: 0 auto; padding: 0; max-width: 760px; position: relative; }
.how-to__step { position: relative; display: flex; gap: var(--space-md); padding-bottom: var(--space-lg); }
.how-to__step::before {
    content: ""; position: absolute; left: 27px; top: 56px; bottom: -8px; width: 2px;
    background: linear-gradient(var(--primary), transparent);
}
.how-to__step:last-child { padding-bottom: 0; }
.how-to__step:last-child::before { display: none; }
.how-to__num {
    flex-shrink: 0; display: grid; place-items: center; width: 56px; height: 56px;
    border-radius: 50%; border: 3px solid var(--primary); box-shadow: var(--glow-turquoise);
    font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--accent);
    background: var(--card);
}
.how-to__content { padding-top: 0.35rem; }
.how-to__title { margin-bottom: 0.35rem; }
.how-to__desc { color: var(--muted-foreground); margin: 0; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative; overflow: clip; text-align: center;
    padding-block: clamp(3.5rem, 8vw, 6rem);
    border-block: 1px solid var(--border);
    margin-block: var(--space-section);
}
.cta-banner__bg { position: absolute; inset: 0; z-index: 0; }
.cta-banner__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner__bg::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(5,11,20,0.7), rgba(5,11,20,0.85));
}
.cta-banner__inner { position: relative; z-index: 1; max-width: 720px; margin-inline: auto; padding-inline: var(--space-sm); }
.cta-banner__title { margin-bottom: var(--space-sm); color: #f0f4f5; }
.cta-banner__subtitle { color: #f0f4f5; font-size: 1.1rem; margin-bottom: var(--space-lg); }
.cta-banner__micro { margin-top: var(--space-md); color: #c4d5da; font-size: 0.85rem; }

/* ============================================
   TRUST BADGES ROW
   ============================================ */
.trust-row {
    background: var(--secondary); border: 1px solid var(--border);
    border-radius: var(--radius); padding: var(--space-md);
}
.trust-row__title { text-align: center; font-family: var(--font-head); font-weight: 600; color: var(--muted-foreground); margin-bottom: var(--space-md); }
.trust-row__items {
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
    gap: var(--space-md);
}
.trust-row__item {
    display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
    flex-shrink: 0; transition: transform var(--dur) var(--ease), filter var(--dur) var(--ease);
    filter: grayscale(0.35);
}
.trust-row__item:hover { transform: translateY(-2px); filter: grayscale(0); }
.trust-row__item img { object-fit: contain; }
.trust-row__label { font-size: 0.8rem; color: var(--secondary-foreground); }

/* ============================================
   ENGAGEMENT / CRO PATTERNS
   ============================================ */

/* TL;DR / summary box */
.summary-box {
    background: var(--secondary); border: 1px solid var(--border);
    border-left: 4px solid var(--primary); border-radius: var(--radius-sm);
    padding: var(--space-md); margin-bottom: var(--space-lg);
}
.summary-box__title {
    font-family: var(--font-head); font-weight: 700; font-size: 0.85rem;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); margin-bottom: 0.5rem;
}
.summary-box p:last-child, .summary-box ul:last-child { margin-bottom: 0; }

/* Callout / highlight box */
.callout {
    display: flex; gap: var(--space-sm);
    background: var(--card); border: 1px solid var(--accent);
    border-radius: var(--radius-sm); padding: var(--space-md);
    margin-block: var(--space-md);
}
.callout__icon { font-size: 1.5rem; line-height: 1; flex-shrink: 0; }
.callout p { margin: 0; }
.callout--info { border-color: var(--primary); }

/* Stat highlight */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: var(--space-md); }
.stat {
    text-align: center; background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: var(--space-md);
}
.stat__number { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.75rem, 4vw, 2.5rem); color: var(--accent); text-shadow: var(--glow-gold); line-height: 1; }
.stat__label { display: block; color: var(--muted-foreground); font-size: 0.9rem; margin-top: 0.35rem; }
.stat__source { display: block; color: var(--muted-foreground); font-size: 0.75rem; margin-top: 0.25rem; }

/* Pull quote */
.pull-quote {
    border-left: 4px solid var(--primary); padding: var(--space-sm) var(--space-md);
    margin-block: var(--space-lg); font-family: var(--font-head); font-size: 1.25rem;
    font-weight: 600; color: var(--foreground); font-style: italic;
}
.pull-quote cite { display: block; font-size: 0.9rem; font-style: normal; font-weight: 500; color: var(--muted-foreground); margin-top: var(--space-xs); }

/* Comparison table */
.table-wrapper { margin-block: var(--space-lg); border: 1px solid var(--border); border-radius: var(--radius); }
table.data-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.data-table caption { text-align: left; padding: var(--space-sm) var(--space-md); font-family: var(--font-head); font-weight: 600; color: var(--muted-foreground); }
.data-table th, .data-table td { padding: 0.85rem var(--space-md); text-align: left; border-bottom: 1px solid var(--border); }
.data-table thead th { background: var(--secondary); font-family: var(--font-head); color: var(--foreground); }
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover { background: color-mix(in srgb, var(--primary) 8%, transparent); }
.data-table .is-recommended { background: color-mix(in srgb, var(--accent) 12%, transparent); }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0; transform: translateY(24px);
    transition: opacity 600ms var(--ease), transform 600ms var(--ease);
    transition-delay: var(--delay, 0ms);
}
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
    .animate-on-scroll { opacity: 1; transform: none; }
    .btn:hover, .info-card:hover, .bonus-card:hover { transform: none; }
}
