/* ============================================
   MARTIN CASINO - Royal Empire Design System
   Dark sapphire palace · gold filigree · blue parrot king
   ============================================ */

:root {
    /* Single dark theme - royal sapphire palace */
    --background: #0a0e1f;
    --foreground: #f5e8c7;
    --card: #121a33;
    --card-foreground: #f5e8c7;
    --primary: #3b82f6;
    --primary-foreground: #0a0e1f;
    --secondary: #1a2547;
    --secondary-foreground: #f5e8c7;
    --muted: #1f2a4a;
    --muted-foreground: #c5cee0;
    --accent: #f59e0b;
    --accent-foreground: #0a0e1f;
    --destructive: #ef4444;
    --destructive-foreground: #ffffff;
    --border: #2a3a5d;
    --input: #1a2547;
    --ring: #3b82f6;

    --gold-1: #f5d27a;
    --gold-2: #c9961f;
    --gold-3: #8a6313;
    --gold-gradient: linear-gradient(135deg, #f5d27a 0%, #c9961f 50%, #8a6313 100%);

    --font-display: "Cinzel", "Times New Roman", serif;
    --font-body: "Manrope", system-ui, -apple-system, sans-serif;

    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 48px;
    --space-xl: 96px;

    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 12px;

    --container: 1240px;
    --header-h: 72px;

    --shadow-soft: 0 4px 24px rgba(15, 30, 61, 0.08);
    --shadow-gold: 0 8px 32px rgba(201, 150, 31, 0.25);
    --shadow-deep: 0 12px 48px rgba(10, 14, 31, 0.4);

    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Single-theme site - dark tokens applied uniformly via :root above */
html { color-scheme: dark; }

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

html { scroll-behavior: smooth; }
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 at top, rgba(59, 130, 246, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 8px;
    background: var(--accent);
    color: var(--accent-foreground);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 2000;
    text-decoration: none;
}
.skip-link:focus { top: 8px; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.02em;
    margin: 0 0 var(--space-sm);
    color: var(--foreground);
}

h1 { font-size: clamp(30px, 5vw, 44px); font-weight: 700; letter-spacing: 0.04em; }
h2 { font-size: clamp(26px, 4vw, 34px); }
h3 { font-size: clamp(20px, 2.6vw, 24px); }
h4 { font-size: 18px; letter-spacing: 0.06em; text-transform: uppercase; }

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

p { margin: 0 0 var(--space-md); }
.lead { font-size: 19px; color: var(--muted-foreground); }
.eyebrow {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-block;
    margin-bottom: var(--space-sm);
}

a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(245, 158, 11, 0.4);
    text-underline-offset: 3px;
    transition: color 240ms var(--ease);
}
a:hover { color: var(--gold-1); }

/* ============================================
   LAYOUT
   ============================================ */
.container, .header-inner, .footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}
@media (min-width: 1024px) {
    .container, .header-inner, .footer-inner { padding: 0 var(--space-lg); }
}

section { padding: 56px 0; }
@media (min-width: 1024px) { section { padding: 96px 0; } }

.section-head { text-align: center; max-width: 760px; margin: 0 auto var(--space-lg); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.04em;
    padding: 14px 28px;
    min-height: 48px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 240ms var(--ease);
    background: transparent;
    color: var(--foreground);
}
.btn-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #c9961f 100%);
    color: #0a0e1f;
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #f5d27a 0%, #f59e0b 100%);
    transform: translateY(-2px);
}
.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border-color: var(--border);
}
.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.btn-lg { font-size: 17px; padding: 18px 40px; min-height: 56px; }
.btn-pulse { animation: cta-pulse 2.8s infinite var(--ease); }
@keyframes cta-pulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(245, 158, 11, 0.25); }
    50% { box-shadow: 0 8px 48px rgba(245, 158, 11, 0.55); }
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 14, 31, 0.92);
    border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
    .site-header { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-h);
    gap: var(--space-md);
}
.site-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--foreground);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.05em;
}
.site-brand .logo { width: 44px; height: 44px; border-radius: 50%; }
.brand-text em {
    font-style: normal;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.primary-nav {
    display: none;
    align-items: center;
    gap: var(--space-md);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--space-md);
}
.nav-list a {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 4px;
    transition: color 240ms var(--ease);
}
.nav-list a:hover { color: var(--accent); }
.nav-actions { display: flex; gap: 8px; }

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    z-index: 1001;
    gap: 5px;
    padding: 10px;
}
.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--accent);
    transition: transform 240ms var(--ease), opacity 200ms var(--ease);
    transform-origin: center;
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1024px) {
    .primary-nav { display: flex; position: static; }
    .mobile-menu-toggle { display: none; }
}

/* Mobile drawer */
@media (max-width: 1023px) {
    .primary-nav {
        display: flex;
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        align-items: stretch;
        background: var(--background);
        padding: var(--space-lg) var(--space-md);
        gap: var(--space-md);
        overflow-y: auto;
        z-index: 999;
        transform: translateX(100%);
        transition: transform 280ms var(--ease);
        visibility: hidden;
    }
    .primary-nav.is-open {
        transform: translateX(0);
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        gap: 4px;
    }
    .nav-list a {
        display: flex;
        align-items: center;
        min-height: 48px;
        font-size: 18px;
        padding: 12px 16px;
        border-bottom: 1px solid var(--border);
    }
    .nav-actions { flex-direction: column; gap: 12px; margin-top: var(--space-md); }
    .nav-actions .btn { width: 100%; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #06091a;
    border-top: 1px solid var(--border);
    margin-top: var(--space-xl);
    color: var(--muted-foreground);
}
.footer-inner {
    display: grid;
    gap: var(--space-lg);
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
}
.footer-col h3,
.footer-col h4 {
    font-family: var(--font-display);
    font-size: 15px;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-col a {
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 15px;
}
.footer-col a:hover { color: var(--accent); }
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--foreground);
    margin-bottom: var(--space-sm);
}
.footer-logo img { border-radius: 50%; }
.footer-tagline { font-size: 15px; margin-bottom: var(--space-md); }
.footer-license { display: flex; gap: 10px; }
.license-badge, .age-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border: 1px solid var(--accent);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent);
    text-transform: uppercase;
}
.payments-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px !important;
    font-size: 13px;
}
.payments-grid li {
    padding: 6px 10px;
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.18);
    border-radius: var(--radius-sm);
    color: var(--foreground);
    font-weight: 500;
    text-align: center;
}
.footer-note { font-size: 14px; margin-bottom: var(--space-sm); }
.responsible-links li { font-size: 14px; }
.footer-license-text { font-size: 12px; margin-top: var(--space-md); color: var(--muted-foreground); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding: var(--space-md) 0;
    text-align: center;
    font-size: 13px;
}
.footer-bottom p { margin: 0; }

/* ============================================
   ORNATE GOLD FRAME (decorative corners)
   ============================================ */
.frame-corner {
    position: absolute;
    width: 28px;
    height: 28px;
    pointer-events: none;
}
.frame-corner::before, .frame-corner::after {
    content: "";
    position: absolute;
    background: var(--gold-gradient);
}
.frame-corner::before { width: 100%; height: 2px; }
.frame-corner::after { width: 2px; height: 100%; }
.frame-tl { top: 8px; left: 8px; }
.frame-tl::before { top: 0; left: 0; }
.frame-tl::after { top: 0; left: 0; }
.frame-tr { top: 8px; right: 8px; }
.frame-tr::before { top: 0; right: 0; }
.frame-tr::after { top: 0; right: 0; }
.frame-bl { bottom: 8px; left: 8px; }
.frame-bl::before { bottom: 0; left: 0; }
.frame-bl::after { bottom: 0; left: 0; }
.frame-br { bottom: 8px; right: 8px; }
.frame-br::before { bottom: 0; right: 0; }
.frame-br::after { bottom: 0; right: 0; }

/* ============================================
   COMPONENT - info_card
   ============================================ */
.info-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    color: var(--card-foreground);
    transition: transform 280ms var(--ease), border-color 280ms var(--ease), box-shadow 280ms var(--ease);
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}
@media (min-width: 768px) {
    .info-card { padding: 32px; }
}
.info-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: var(--accent);
    box-shadow: var(--shadow-gold);
}
.info-card-highlight {
    background: linear-gradient(160deg, rgba(245, 158, 11, 0.08), var(--card));
    border-color: var(--accent);
}
.info-card-media {
    margin: -20px -20px 0;
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--secondary);
}
.info-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (min-width: 768px) {
    .info-card-media { margin: -32px -32px 0; }
}
.info-card-icon {
    font-size: 36px;
    color: var(--accent);
    line-height: 1;
}
.info-card-eyebrow {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
}
.info-card-title {
    font-family: var(--font-display);
    font-size: 22px;
    margin: 0;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.info-card-text { margin: 0; color: var(--muted-foreground); font-size: 16px; }
.info-card-link {
    margin-top: auto;
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.card-grid {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: 1fr;
}
@media (min-width: 768px) { .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-lg); } }
.card-grid-2 { display: grid; gap: var(--space-md); grid-template-columns: 1fr; }
@media (min-width: 768px) { .card-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-lg); } }
.card-grid-4 { display: grid; gap: var(--space-md); grid-template-columns: 1fr; }
@media (min-width: 640px) { .card-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .card-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* ============================================
   COMPONENT - stat_block
   ============================================ */
.stats-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-md);
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(245, 158, 11, 0.25);
    border-bottom: 1px solid rgba(245, 158, 11, 0.25);
}
@media (min-width: 768px) {
    .stats-row { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--space-lg); }
}
.stat-block {
    text-align: center;
    padding: var(--space-sm);
    position: relative;
}
.stat-block + .stat-block::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
    display: none;
}
@media (min-width: 768px) {
    .stat-block + .stat-block::before { display: block; }
}
.stat-eyebrow {
    display: block;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 8px;
}
.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(40px, 7vw, 56px);
    font-weight: 700;
    line-height: 1;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
}
.stat-label {
    display: block;
    font-size: 15px;
    color: var(--foreground);
    font-weight: 500;
}
.stat-source { display: block; font-size: 12px; color: var(--muted-foreground); margin-top: 6px; }

/* ============================================
   COMPONENT - faq_accordion
   ============================================ */
.faq-section {
    max-width: 880px;
    margin: 0 auto;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
}
@media (min-width: 768px) { .faq-section { padding: var(--space-lg); } }
.faq-heading { text-align: center; margin-bottom: var(--space-lg); }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    padding: 20px 4px;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
    list-style: none;
}
@media (min-width: 768px) {
    .faq-question { padding: 28px 8px; font-size: 20px; }
}
.faq-question::-webkit-details-marker { display: none; }
.faq-toggle {
    position: relative;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
.faq-toggle::before, .faq-toggle::after {
    content: "";
    position: absolute;
    background: var(--accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 240ms var(--ease);
}
.faq-toggle::before { width: 14px; height: 2px; }
.faq-toggle::after { width: 2px; height: 14px; }
.faq-item[open] .faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-answer {
    padding: 0 4px 24px;
    color: var(--foreground);
    line-height: 1.65;
}
.faq-answer p { margin: 0; }

/* ============================================
   COMPONENT - cta_banner
   ============================================ */
.cta-banner {
    padding: 56px var(--space-md);
}
@media (min-width: 1024px) { .cta-banner { padding: 96px var(--space-md); } }
.cta-inner {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(160deg, #0f1638 0%, #1a2456 60%, #0a0e1f 100%);
    border: 1px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 48px 24px;
    overflow: hidden;
    box-shadow: var(--shadow-deep), 0 0 0 1px rgba(245, 158, 11, 0.2);
}
@media (min-width: 768px) {
    .cta-inner { padding: 72px 64px; }
}
.cta-title {
    font-family: var(--font-display);
    font-size: clamp(26px, 4.4vw, 40px);
    margin-bottom: var(--space-md);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 0.04em;
}
.cta-subtitle {
    color: var(--foreground);
    font-size: 18px;
    margin-bottom: var(--space-lg);
}
.cta-micro {
    margin-top: var(--space-md);
    font-size: 13px;
    color: var(--muted-foreground);
    letter-spacing: 0.06em;
}
.cta-feather {
    position: absolute;
    width: 120px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.3), transparent 70%);
    filter: blur(20px);
    pointer-events: none;
}
.cta-feather-left { top: -40px; left: -40px; transform: rotate(-30deg); }
.cta-feather-right { bottom: -40px; right: -40px; transform: rotate(40deg); background: radial-gradient(ellipse, rgba(245, 158, 11, 0.3), transparent 70%); }

/* ============================================
   COMPONENT - trust_badges_row
   ============================================ */
.trust-row {
    background: var(--secondary);
    border-top: 1px solid rgba(245, 158, 11, 0.25);
    border-bottom: 1px solid rgba(245, 158, 11, 0.25);
    padding: var(--space-md);
    margin: var(--space-lg) 0;
    border-radius: var(--radius);
    text-align: center;
}
.trust-eyebrow {
    display: block;
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-sm);
    font-weight: 600;
}
.trust-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    overflow-x: auto;
}
@media (max-width: 600px) {
    .trust-list {
        flex-wrap: nowrap;
        justify-content: flex-start;
        scroll-snap-type: x mandatory;
        padding: 4px 8px;
    }
    .trust-list::-webkit-scrollbar { display: none; }
}
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--foreground);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(10, 14, 31, 0.4);
    flex-shrink: 0;
    transition: opacity 240ms var(--ease);
}
.trust-badge-icon {
    color: var(--accent);
    font-size: 20px;
    font-weight: 700;
}
.trust-badge:hover { opacity: 0.85; }

/* ============================================
   HERO PATTERN (used by index + all pages)
   ============================================ */
.hero {
    position: relative;
    padding: 64px 0 80px;
    overflow: clip;
}
@media (min-width: 1024px) { .hero { padding: 96px 0 120px; } }
.hero-inner {
    position: relative;
    display: grid;
    gap: var(--space-lg);
    grid-template-columns: 1fr;
    align-items: center;
    z-index: 2;
}
@media (min-width: 1024px) {
    .hero-inner { grid-template-columns: 1.1fr 0.9fr; gap: var(--space-xl); }
}
.hero-copy h1 { margin-bottom: var(--space-md); }
.hero-copy .lead { margin-bottom: var(--space-lg); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-figure {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--secondary);
    box-shadow: var(--shadow-deep);
    border: 1px solid rgba(245, 158, 11, 0.3);
}
.hero-figure img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg-glow {
    position: absolute;
    top: 10%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}
.hero-bonus-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold-gradient);
    color: #0a0e1f;
    padding: 14px 20px;
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-weight: 700;
    text-align: center;
    box-shadow: var(--shadow-gold);
    z-index: 3;
}
.hero-bonus-badge strong { display: block; font-size: 24px; }
.hero-bonus-badge span { font-size: 12px; letter-spacing: 0.1em; }

/* Floating coins & feathers for GSAP-style intro */
.floating-deco {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    will-change: transform, opacity;
}
.deco-coin {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #f5d27a, #c9961f 60%, #8a6313);
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.5);
    animation: coin-fall 8s var(--ease) infinite;
}
.deco-feather {
    width: 14px;
    height: 56px;
    background: linear-gradient(to bottom, #3b82f6, #1e3a8a);
    border-radius: 50% 50% 50% 50% / 70% 70% 30% 30%;
    transform-origin: center;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
    animation: feather-fall 10s var(--ease) infinite;
}
.deco-1 { top: 8%; left: 8%; animation-delay: 0s; }
.deco-2 { top: 18%; right: 12%; animation-delay: 1.5s; }
.deco-3 { top: 60%; left: 5%; animation-delay: 3s; }
.deco-4 { top: 40%; right: 6%; animation-delay: 2s; }
.deco-5 { top: 75%; right: 20%; animation-delay: 4s; }

@keyframes coin-fall {
    0% { transform: translateY(-60px) rotate(0deg); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateY(120px) rotate(360deg); opacity: 0; }
}
@keyframes feather-fall {
    0% { transform: translateY(-40px) rotate(-20deg); opacity: 0; }
    20% { opacity: 0.8; }
    50% { transform: translateY(60px) rotate(20deg); }
    80% { opacity: 0.8; }
    100% { transform: translateY(180px) rotate(-20deg); opacity: 0; }
}

/* ============================================
   ENGAGEMENT PATTERNS
   ============================================ */
.tldr-box {
    background: linear-gradient(160deg, rgba(245, 158, 11, 0.08), rgba(59, 130, 246, 0.08));
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
}
.tldr-box strong {
    display: block;
    font-family: var(--font-display);
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 8px;
}
.tldr-box p:last-child { margin-bottom: 0; }

.callout {
    background: var(--card);
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    padding: var(--space-md);
    margin: var(--space-md) 0;
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}
.callout-icon { color: var(--accent); font-size: 24px; flex-shrink: 0; }
.callout p:last-child { margin-bottom: 0; }

.pull-quote {
    border-left: 4px solid var(--accent);
    padding: var(--space-sm) var(--space-md);
    margin: var(--space-lg) 0;
    font-family: var(--font-display);
    font-size: 22px;
    line-height: 1.4;
    color: var(--foreground);
    font-style: italic;
}
.pull-quote cite {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: 12px;
    font-style: normal;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-md) 0;
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    font-size: 15px;
}
.comparison-table thead {
    background: var(--secondary);
}
.comparison-table th, .comparison-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.comparison-table th {
    font-family: var(--font-display);
    color: var(--accent);
    letter-spacing: 0.05em;
    font-size: 14px;
    text-transform: uppercase;
}
.comparison-table .recommended {
    background: rgba(245, 158, 11, 0.08);
    color: var(--foreground);
    font-weight: 600;
}
.comparison-table tr:last-child td { border-bottom: none; }

.stat-highlight {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(245, 158, 11, 0.12);
    color: var(--accent);
    border-radius: var(--radius-sm);
    font-weight: 700;
}

/* ============================================
   PROVIDER / PAYMENT LOGO STRIP
   ============================================ */
.logo-strip {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    padding: var(--space-md);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
@media (min-width: 640px) { .logo-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .logo-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--space-lg); } }
.logo-strip-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    background: rgba(245, 158, 11, 0.04);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius);
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: 16px;
    letter-spacing: 0.06em;
    min-height: 64px;
    text-align: center;
    transition: all 240ms var(--ease);
}
.logo-strip-item:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* ============================================
   SEO BODY TEXT (long-form prose)
   ============================================ */
.prose {
    max-width: 820px;
    margin: 0 auto;
}
.prose h2 { margin-top: var(--space-lg); }
.prose h3 { margin-top: var(--space-md); color: var(--accent); }
.prose ul, .prose ol { padding-left: 24px; margin-bottom: var(--space-md); }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent); font-weight: 600; }

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
    font-size: 13px;
    color: var(--muted-foreground);
    padding: 16px 0;
    letter-spacing: 0.04em;
}
.breadcrumbs a { color: var(--muted-foreground); text-decoration: none; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { color: var(--accent); }
.breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.breadcrumbs li + li::before { content: "›"; margin-right: 8px; color: var(--accent); }

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll { opacity: 1; transform: none; transition: none; }
    .btn-pulse { animation: none; }
    .floating-deco { animation: none; display: none; }
}

/* ============================================
   UTILITY
   ============================================ */
.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;
}
.text-center { text-align: center; }
.mt-lg { margin-top: var(--space-lg); }
.mb-lg { margin-bottom: var(--space-lg); }