/*
 * GambleZen Casino - Design System
 * Zen-neon aesthetic: dark obsidian-indigo base, purple-turquoise accents.
 * Fonts: Sora (display), Manrope (body).
 */

/* ============================================
   DESIGN TOKENS
   :root = light values, .dark = active theme.
   Site ships dark-only (body.dark). No theme switcher.
   ============================================ */
:root {
    --background: #0a0912;
    --foreground: #f2f0f7;
    --card: #161327;
    --card-foreground: #f2f0f7;
    --popover: #161327;
    --popover-foreground: #f2f0f7;
    --primary: #a855f7;
    --primary-foreground: #ffffff;
    --secondary: #1c1938;
    --secondary-foreground: #e6e3f2;
    --muted: #252041;
    --muted-foreground: #cbc7dc;
    --accent: #2dd4bf;
    --accent-foreground: #06201d;
    --destructive: #f43f5e;
    --destructive-foreground: #120a20;
    --border: #2e2a4a;
    --input: #2e2a4a;
    --ring: #a855f7;

    /* Spacing scale (8px base grid) */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 56px;
    --space-2xl: 96px;

    --maxw: 1200px;
    --radius: 16px;
    --radius-sm: 10px;
    --header-h: 68px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);

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

.dark {
    --background: #0a0912;
    --foreground: #f2f0f7;
    --card: #161327;
    --card-foreground: #f2f0f7;
    --popover: #161327;
    --popover-foreground: #f2f0f7;
    --primary: #a855f7;
    --primary-foreground: #ffffff;
    --secondary: #1c1938;
    --secondary-foreground: #e6e3f2;
    --muted: #252041;
    --muted-foreground: #cbc7dc;
    --accent: #2dd4bf;
    --accent-foreground: #06201d;
    --destructive: #f43f5e;
    --destructive-foreground: #120a20;
    --border: #2e2a4a;
    --input: #2e2a4a;
    --ring: #a855f7;
}

/* ============================================
   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(circle at 12% -5%, rgba(168, 85, 247, 0.16), transparent 42%),
        radial-gradient(circle at 92% 8%, rgba(45, 212, 191, 0.12), transparent 40%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
}

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

h1 { font-size: clamp(1.875rem, 5vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.125rem); font-weight: 600; }
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(--accent); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--primary); }
a:focus-visible, button:focus-visible, summary:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

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

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    z-index: 2000;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 12px 18px;
    border-radius: 0 0 var(--radius-sm) 0;
    font-weight: 600;
}
.skip-link:focus { left: 0; }

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

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

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

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

/* Thin luminous divider between sections */
.divider-glow {
    height: 1px;
    border: 0;
    margin: 0 auto;
    max-width: var(--maxw);
    background: linear-gradient(90deg, transparent, rgba(168,85,247,0.5), rgba(45,212,191,0.5), transparent);
}

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

.lede { font-size: 1.15rem; color: var(--foreground); max-width: 68ch; }

/* ============================================
   BUTTONS
   .btn--primary electric purple fill; --ghost outline; --lg large.
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 12px 24px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    text-align: center;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.btn--lg { min-height: 54px; padding: 16px 34px; font-size: 1.0625rem; }

.btn--primary {
    background: linear-gradient(135deg, var(--primary), #7c3aed);
    color: var(--primary-foreground);
    box-shadow: 0 8px 26px rgba(168, 85, 247, 0.35);
}
.btn--primary:hover {
    color: var(--primary-foreground);
    transform: translateY(-2px);
    box-shadow: 0 12px 34px rgba(168, 85, 247, 0.5);
}

.btn--ghost {
    background: transparent;
    color: var(--foreground);
    border-color: var(--border);
}
.btn--ghost:hover { color: var(--foreground); border-color: var(--accent); background: rgba(45,212,191,0.08); }

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

/* ============================================
   HEADER + NAVIGATION
   Sticky. Mobile: burger + fixed drawer.
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 9, 18, 0.9);
    border-bottom: 1px solid var(--border);
}
@media (min-width: 769px) {
    .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: 10px;
    color: var(--foreground);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}
.site-brand:hover { color: var(--foreground); }
.site-brand__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #0a0912;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0;
}

.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    z-index: 1001;
}
.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--foreground);
    border-radius: 2px;
    transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.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: nav hidden by default, becomes fixed drawer when open */
.primary-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--background);
    padding: var(--space-md) var(--space-sm) var(--space-xl);
    overflow-y: auto;
    flex-direction: column;
    gap: var(--space-md);
}
.primary-nav.is-open { display: flex; }

.primary-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
}
.primary-nav__list a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 12px;
    color: var(--foreground);
    font-family: var(--font-display);
    font-weight: 600;
    border-radius: 10px;
}
.primary-nav__list a:hover { color: var(--accent); background: rgba(45,212,191,0.08); }

.primary-nav__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-top: var(--space-xs);
}
.primary-nav__actions .btn { width: 100%; }

@media (min-width: 769px) {
    .nav-toggle { display: none; }
    .primary-nav {
        display: flex;
        position: static;
        flex-direction: row;
        align-items: center;
        gap: var(--space-lg);
        padding: 0;
        background: transparent;
        overflow: visible;
    }
    .primary-nav__list { flex-direction: row; gap: var(--space-md); }
    .primary-nav__list a { min-height: auto; padding: 6px 4px; background: none; }
    .primary-nav__list a:hover { background: none; }
    .primary-nav__actions { flex-direction: row; margin-top: 0; }
    .primary-nav__actions .btn { width: auto; }
}

/* ============================================
   HERO
   Full-bleed with model image + zen-temple glow.
   ============================================ */
.hero {
    position: relative;
    padding-block: var(--space-xl);
    background:
        radial-gradient(circle at 78% 30%, rgba(168,85,247,0.25), transparent 45%),
        radial-gradient(circle at 20% 80%, rgba(45,212,191,0.18), transparent 50%),
        var(--background);
    border-bottom: 1px solid var(--border);
}
.hero__inner {
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: var(--space-sm);
    display: grid;
    gap: var(--space-lg);
    align-items: center;
}
.hero__content { position: relative; z-index: 2; }
.hero__media { position: relative; }
.hero__media img {
    width: 100%;
    border-radius: var(--radius);
    display: block;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-top: var(--space-md); }
.hero__microcopy { font-size: 0.9rem; color: var(--muted-foreground); margin-top: var(--space-sm); }

@media (min-width: 1024px) {
    .hero { padding-block: var(--space-xl); }
    .hero__inner { grid-template-columns: 1.05fr 0.95fr; gap: var(--space-xl); }
}

/* ============================================
   CARDS + GRIDS
   .info-card universal content unit.
   ============================================ */
.card-grid {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: 1fr;
}
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) {
    .card-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .card-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.info-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-md);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.info-card:hover {
    transform: scale(1.03);
    border-color: rgba(168,85,247,0.5);
    box-shadow: 0 16px 40px rgba(168, 85, 247, 0.22);
}
.info-card__media {
    margin: calc(var(--space-md) * -1) calc(var(--space-md) * -1) var(--space-md);
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(168,85,247,0.12), rgba(45,212,191,0.1));
}
.info-card__media img { width: 100%; display: block; }
.info-card__icon {
    font-size: 2rem;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(168,85,247,0.2), rgba(45,212,191,0.16));
    margin-bottom: var(--space-sm);
}
.info-card__title { margin-bottom: var(--space-xs); }
.info-card__text { color: var(--muted-foreground); margin-bottom: var(--space-sm); }
.info-card__link {
    margin-top: auto;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--accent);
}

/* Two-column feature block (image + copy) */
.feature-split {
    display: grid;
    gap: var(--space-lg);
    align-items: center;
    grid-template-columns: 1fr;
}
@media (min-width: 900px) { .feature-split { grid-template-columns: 1fr 1fr; } }
.feature-split__media img {
    width: 100%;
    border-radius: var(--radius);
    filter: drop-shadow(0 10px 30px rgba(168,85,247,0.25));
}

/* ============================================
   STAT HIGHLIGHT
   Oversized turquoise numerals.
   ============================================ */
.stat-highlight__heading { text-align: center; margin-bottom: var(--space-lg); }
.stat-highlight__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-sm);
    border-block: 1px solid var(--border);
    padding-block: var(--space-lg);
}
@media (min-width: 768px) { .stat-highlight__row { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.stat-block { text-align: center; padding: var(--space-sm); }
.stat-block__number {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 6vw, 3rem);
    line-height: 1;
    color: var(--accent);
    text-shadow: 0 0 24px rgba(45,212,191,0.4);
}
.stat-block__label {
    display: block;
    margin-top: var(--space-xs);
    font-weight: 600;
    color: var(--foreground);
}
.stat-block__context {
    display: block;
    margin-top: 4px;
    font-size: 0.85rem;
    color: var(--muted-foreground);
}

/* ============================================
   CTA BAND
   Full-bleed near-black indigo with glow.
   ============================================ */
.cta-band {
    position: relative;
    padding-block: var(--space-xl);
    text-align: center;
    background: linear-gradient(180deg, #0d0b1c, #120c26);
    border-block: 1px solid var(--border);
}
@media (min-width: 1024px) { .cta-band { padding-block: var(--space-xl); } }
.cta-band__glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(168,85,247,0.28), transparent 45%),
        radial-gradient(circle at 72% 78%, rgba(45,212,191,0.22), transparent 45%);
    pointer-events: none;
    animation: pulse-glow 6s ease-in-out infinite;
}
.cta-band__inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin-inline: auto;
    padding-inline: var(--space-sm);
}
.cta-band__heading { margin-bottom: var(--space-sm); }
.cta-band__text { color: var(--foreground); font-size: 1.1rem; margin-bottom: var(--space-lg); }
.cta-band__microcopy { margin-top: var(--space-sm); font-size: 0.9rem; color: var(--muted-foreground); }

@keyframes pulse-glow {
    0%, 100% { opacity: 0.75; }
    50% { opacity: 1; }
}

/* ============================================
   DATA TABLE
   ============================================ */
.data-table-wrapper {
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
    background: var(--card);
}
.data-table__caption {
    caption-side: top;
    text-align: left;
    padding: var(--space-md) var(--space-md) 0;
    color: var(--muted-foreground);
    font-size: 0.95rem;
}
.data-table th, .data-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.data-table thead th {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--accent);
    background: rgba(45,212,191,0.06);
    white-space: nowrap;
}
.data-table tbody th { font-weight: 600; color: var(--foreground); }
.data-table td { color: var(--muted-foreground); }
.data-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.02); }
.data-table__row--highlight {
    outline: 2px solid var(--primary);
    outline-offset: -2px;
    background: rgba(168,85,247,0.08) !important;
}
.data-table__row--highlight th, .data-table__row--highlight td { color: var(--foreground); }

/* ============================================
   FAQ ACCORDION (native details/summary)
   ============================================ */
.faq-accordion__heading { text-align: center; margin-bottom: var(--space-lg); }
.faq-accordion__list { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); background: var(--card); }
.faq-item:last-child { border-bottom: 0; }
.faq-item[open] { border-left: 3px solid var(--primary); }
.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    padding: var(--space-md);
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    list-style: none;
}
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__icon {
    position: relative;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}
.faq-item__icon::before, .faq-item__icon::after {
    content: "";
    position: absolute;
    background: var(--accent);
    border-radius: 2px;
    transition: transform 0.25s var(--ease);
}
.faq-item__icon::before { top: 9px; left: 0; width: 20px; height: 2px; }
.faq-item__icon::after { top: 0; left: 9px; width: 2px; height: 20px; }
.faq-item[open] .faq-item__icon::after { transform: scaleY(0); }
.faq-item__answer { padding: 0 var(--space-md) var(--space-md); }
.faq-item__answer p { margin: 0; color: var(--muted-foreground); }

/* ============================================
   ENGAGEMENT PATTERNS
   .callout, .tldr, .pull-quote, .trust-row, .badge-list
   ============================================ */
.tldr {
    background: var(--secondary);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
    margin-bottom: var(--space-lg);
}
.tldr__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: var(--space-xs);
}
.tldr p { margin: 0; }

.callout {
    background: rgba(168,85,247,0.08);
    border: 1px solid rgba(168,85,247,0.35);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
    margin-block: var(--space-md);
}
.callout p:last-child { margin-bottom: 0; }

.pull-quote {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 1.625rem);
    line-height: 1.35;
    color: var(--foreground);
    border-left: 4px solid var(--primary);
    padding-left: var(--space-md);
    margin: var(--space-lg) 0;
    font-weight: 600;
}
.pull-quote cite { display: block; margin-top: var(--space-sm); font-size: 0.95rem; font-style: normal; color: var(--muted-foreground); font-weight: 500; }

.prose { max-width: 72ch; }
.prose p, .prose li { color: var(--foreground); }

/* Trust badges row */
.trust-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    list-style: none;
    padding: 0;
    margin: 0;
}
.trust-row img { height: 34px; width: auto; opacity: 0.85; }
.trust-row li { flex-shrink: 0; }

/* Logo/payment strip inside cards */
.logo-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    list-style: none;
    padding: 0;
    margin: 0;
}
.logo-strip img { height: 48px; width: auto; }
.logo-strip li { flex-shrink: 0; }

/* 18+ badge */
.badge-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--destructive);
    color: var(--destructive-foreground);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-right: 6px;
    vertical-align: middle;
}

/* License badge box */
.license-box {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-md);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #08060f;
    border-top: 1px solid var(--border);
    margin-top: var(--space-2xl);
}
.site-footer__inner {
    max-width: var(--maxw);
    margin-inline: auto;
    padding: var(--space-xl) var(--space-sm) var(--space-lg);
    display: grid;
    gap: var(--space-lg);
    grid-template-columns: 1fr;
}
@media (min-width: 640px) { .site-footer__inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .site-footer__inner { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }

.site-brand--footer { margin-bottom: var(--space-sm); }
.site-footer__tagline { color: var(--muted-foreground); font-size: 0.95rem; max-width: 40ch; }
.site-footer__heading {
    font-family: var(--font-display);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}
.site-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-xs); }
.site-footer__col ul li a { color: var(--muted-foreground); }
.site-footer__col ul li a:hover { color: var(--accent); }

.payment-logos { display: flex; flex-wrap: wrap; gap: 10px; }
.payment-logos li { flex-shrink: 0; }
.payment-logos img { height: 44px; width: auto; background: rgba(255,255,255,0.05); border-radius: 6px; padding: 6px; }

.site-footer__bottom {
    max-width: var(--maxw);
    margin-inline: auto;
    padding: var(--space-md) var(--space-sm) var(--space-xl);
    border-top: 1px solid var(--border);
}
.site-footer__license {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted-foreground);
    font-size: 0.9rem;
    max-width: 90ch;
}
.site-footer__copyright { color: var(--muted-foreground); font-size: 0.85rem; margin: var(--space-sm) 0 0; }

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

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
    .animate-on-scroll { opacity: 1; transform: none; }
}
