/*
 * OnlySpins Casino - Sunset Island-Lounge Design System
 * Turquoise-gold tropical palette on deep navy-teal.
 * Fonts: Poppins (headings) + Manrope (body).
 */

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
    --background: #08252b;
    --foreground: #f4ede0;
    --card: #0d323a;
    --card-foreground: #f4ede0;
    --popover: #0d323a;
    --popover-foreground: #f4ede0;
    --primary: #f5b829;
    --primary-foreground: #08252b;
    --secondary: #15c5b2;
    --secondary-foreground: #08252b;
    --muted: #1a4048;
    --muted-foreground: #a7bcbe;
    --accent: #ff7a97;
    --accent-foreground: #08252b;
    --destructive: #ea0d33;
    --destructive-foreground: #ffffff;
    --border: #2a5058;
    --input: #1a4048;
    --ring: #f5b829;

    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 56px;
    --space-2xl: 96px;

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

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

    --ease: 250ms ease-out;
    --shadow-gold: 0 14px 40px -12px rgba(245, 184, 41, 0.45);
}

.dark {
    --background: #08252b;
    --foreground: #f4ede0;
    --card: #0d323a;
    --card-foreground: #f4ede0;
    --popover: #0d323a;
    --popover-foreground: #f4ede0;
    --primary: #f5b829;
    --primary-foreground: #08252b;
    --secondary: #15c5b2;
    --secondary-foreground: #08252b;
    --muted: #1a4048;
    --muted-foreground: #a7bcbe;
    --accent: #ff7a97;
    --accent-foreground: #08252b;
    --destructive: #ea0d33;
    --destructive-foreground: #ffffff;
    --border: #2a5058;
    --input: #1a4048;
    --ring: #f5b829;
    --shadow-gold: 0 14px 40px -12px rgba(245, 184, 41, 0.45);
}

/* ============================================
   RESET / BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }

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);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, video, iframe, svg { max-width: 100%; height: auto; }
[class*="grid"] > *, [class*="flex"] > * { min-width: 0; }
p, li, td, th { overflow-wrap: break-word; }
input, textarea, select { max-width: 100%; }
section { overflow: clip; }

h1, h2, h3, h4 {
    font-family: var(--font-head);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 var(--space-sm);
    color: var(--foreground);
}
h1 { font-size: 28px; font-weight: 700; }
h2 { font-size: 24px; font-weight: 600; }
h3 { font-size: 20px; font-weight: 500; }
p { margin: 0 0 var(--space-md); }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

@media (min-width: 1024px) {
    h1 { font-size: 40px; }
    h2 { font-size: 32px; }
    h3 { font-size: 24px; }
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 12px 20px;
    z-index: 2000;
    border-radius: 0 0 var(--radius-sm) 0;
}
.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
   ============================================ */
.max-w-1200, .mx-auto { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--space-sm); }

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

/* Signature golden sun-glint underline sweep */
.section-heading, .heading-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}
.section-heading::after, .heading-underline::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
    transition: width 600ms ease-out;
}
.animate-on-scroll.is-visible .section-heading::after,
.section-heading.is-visible::after,
.heading-underline.is-visible::after { width: 72px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 26px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 16px;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
    text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn--primary {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 8px 22px -10px var(--primary);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}
.btn--ghost {
    background: transparent;
    color: var(--foreground);
    border-color: var(--border);
}
.btn--ghost:hover { border-color: var(--secondary); color: var(--secondary); }
.btn--secondary {
    background: var(--secondary);
    color: var(--secondary-foreground);
}
.btn--secondary:hover { transform: translateY(-2px); }
.btn--lg { min-height: 54px; padding: 16px 40px; font-size: 18px; }

/* ============================================
   HEADER + NAVIGATION
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: color-mix(in srgb, var(--background) 92%, transparent);
    border-bottom: 1px solid var(--border);
}
.site-header__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--space-sm);
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
}
.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 20px;
    color: var(--foreground);
    text-decoration: none;
    flex-shrink: 0;
}
.site-brand:hover { text-decoration: none; }
.site-brand__mark { display: inline-flex; }
.site-brand__accent { color: var(--secondary); margin-left: 2px; }

.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    padding: 0 12px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    z-index: 1001;
}
.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--foreground);
    transition: transform var(--ease), opacity 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); }

.primary-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0; bottom: 0;
    background: var(--background);
    z-index: 999;
    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: 8px 12px;
    font-family: var(--font-head);
    font-weight: 500;
    color: var(--foreground);
    border-radius: var(--radius-sm);
}
.primary-nav__list a:hover { background: var(--muted); text-decoration: none; color: var(--secondary); }
.primary-nav__cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}
.primary-nav__cta .btn { width: 100%; }

@media (min-width: 1024px) {
    .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-xs); }
    .primary-nav__list a { min-height: 40px; }
    .primary-nav__cta { flex-direction: row; }
    .primary-nav__cta .btn { width: auto; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: var(--space-xl) 0;
    overflow: clip;
}
.hero__bg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(120deg, color-mix(in srgb, var(--background) 88%, transparent) 0%, color-mix(in srgb, var(--background) 55%, transparent) 55%, transparent 100%);
}
.hero__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--space-sm);
    width: 100%;
}
.hero__content { max-width: 640px; }
.hero__eyebrow {
    display: inline-block;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: var(--space-sm);
}
.hero__lead { font-size: 18px; color: var(--foreground); max-width: 60ch; }
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}
@media (min-width: 1024px) { .hero { min-height: 600px; } }

/* ============================================
   SECTION INTRO / PROSE
   ============================================ */
.section-intro { max-width: 70ch; margin-bottom: var(--space-lg); }
.prose { max-width: 70ch; }
.prose p, .prose li { color: var(--foreground); }
.prose a { color: var(--secondary); font-weight: 600; text-decoration: underline; }
.prose h2 { margin-top: var(--space-xl); }
.prose h3 { margin-top: var(--space-lg); }
.prose ul, .prose ol { padding-left: 1.4em; margin: 0 0 var(--space-md); }
.prose li { margin-bottom: var(--space-xs); }

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

/* ============================================
   CARDS - bonus_card + info_card
   ============================================ */
.bonus-card, .info-card {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
@media (min-width: 1024px) { .bonus-card, .info-card { padding: var(--space-lg); } }
.bonus-card:hover, .info-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary);
}

.bonus-card {
    background:
        linear-gradient(var(--card), var(--card)) padding-box,
        linear-gradient(135deg, var(--secondary), var(--primary)) border-box;
    border: 2px solid transparent;
    text-align: center;
}
.bonus-card__tag {
    position: absolute;
    top: 14px; right: 14px;
    background: var(--accent);
    color: var(--accent-foreground);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 999px;
    letter-spacing: 0.02em;
}
.bonus-card__media { margin: -20px -20px var(--space-md); border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; }
@media (min-width: 1024px) { .bonus-card__media { margin: calc(-1 * var(--space-lg)) calc(-1 * var(--space-lg)) var(--space-md); } }
.bonus-card__media img { width: 100%; object-fit: cover; }
.bonus-card__body { flex: 1; }
.bonus-card__number {
    display: block;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(2rem, 6vw, 2.75rem);
    line-height: 1.05;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}
.bonus-card__title { font-size: 20px; font-weight: 600; }
.bonus-card__desc { color: var(--muted-foreground); font-size: 16px; }
.bonus-card__code {
    display: inline-block;
    background: var(--muted);
    color: var(--foreground);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    margin-bottom: var(--space-md);
}
.bonus-card__code strong { color: var(--secondary); letter-spacing: 0.04em; }
.bonus-card__cta { margin-top: auto; align-self: center; }

.info-card__media { margin: -20px -20px var(--space-md); border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; }
@media (min-width: 1024px) { .info-card__media { margin: calc(-1 * var(--space-lg)) calc(-1 * var(--space-lg)) var(--space-md); } }
.info-card__media img { width: 100%; object-fit: cover; }
.info-card__icon { font-size: 34px; margin-bottom: var(--space-sm); display: block; }
.info-card__step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    background: var(--primary);
    color: var(--primary-foreground);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 20px;
    border-radius: 999px;
    margin-bottom: var(--space-sm);
}
.info-card__label {
    display: inline-block;
    background: color-mix(in srgb, var(--secondary) 18%, transparent);
    color: #3ad9c7;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: var(--space-sm);
}
.info-card__title { font-size: 20px; font-weight: 500; }
.info-card__desc { color: var(--muted-foreground); font-size: 16px; margin: 0; }
.info-card__desc a { color: var(--secondary); font-weight: 600; text-decoration: underline; }

/* ============================================
   STAT HIGHLIGHT
   ============================================ */
.stat-highlight { text-align: center; }
.stat-highlight__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}
@media (min-width: 768px) { .stat-highlight__row { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.stat-block {
    padding: var(--space-md) var(--space-xs);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
}
.stat-block__number {
    display: block;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    color: var(--primary);
    line-height: 1.1;
}
.stat-block__label {
    display: block;
    color: var(--muted-foreground);
    font-size: 15px;
    margin-top: 6px;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion__list {
    max-width: 70ch;
    margin: var(--space-lg) auto 0;
}
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-item__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    min-height: 44px;
    padding: var(--space-md) 0;
    cursor: pointer;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 18px;
    color: var(--foreground);
    list-style: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__chevron {
    flex-shrink: 0;
    width: 12px; height: 12px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(45deg);
    transition: transform var(--ease);
}
.faq-item[open] .faq-item__chevron { transform: rotate(-135deg); }
.faq-item[open] .faq-item__q { color: var(--primary); }
.faq-item__a { padding: 0 0 var(--space-md); }
.faq-item__a p { color: var(--muted-foreground); margin: 0; max-width: 70ch; }
.faq-item__a a { color: var(--secondary); font-weight: 600; }

/* ============================================
   DATA TABLE
   ============================================ */
.data-table-wrapper {
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin: var(--space-lg) 0;
}
.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
}
.data-table__caption {
    text-align: left;
    padding: var(--space-md);
    color: var(--muted-foreground);
    font-size: 15px;
    caption-side: bottom;
}
.data-table th, .data-table td {
    padding: 14px 18px;
    text-align: left;
    font-size: 16px;
    border-bottom: 1px solid var(--border);
}
.data-table thead th {
    background: color-mix(in srgb, var(--secondary) 16%, var(--card));
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--foreground);
}
.data-table tbody tr:nth-child(even) { background: color-mix(in srgb, var(--muted) 40%, var(--card)); }
.data-table tbody th { font-weight: 600; color: var(--foreground); }
.data-table__row--highlight {
    background: color-mix(in srgb, var(--primary) 16%, var(--card)) !important;
}
.data-table__row--highlight th, .data-table__row--highlight td { color: var(--foreground); font-weight: 600; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    text-align: center;
    padding: var(--space-xl) var(--space-sm);
    border-radius: var(--radius);
    overflow: clip;
    margin: var(--space-xl) 0;
}
@media (min-width: 1024px) { .cta-banner { padding: var(--space-2xl) var(--space-lg); } }
.cta-banner__bg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
}
.cta-banner__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(120deg, color-mix(in srgb, var(--primary) 55%, transparent), color-mix(in srgb, var(--secondary) 65%, transparent)), color-mix(in srgb, var(--background) 55%, transparent);
}
.cta-banner__content { position: relative; max-width: 640px; margin: 0 auto; }
.cta-banner__heading { font-size: clamp(1.6rem, 4vw, 2.4rem); color: var(--foreground); }
.cta-banner__sub { color: var(--foreground); font-size: 18px; }
.cta-banner__micro { color: var(--muted-foreground); font-size: 14px; margin: var(--space-sm) 0 0; }

/* ============================================
   ENGAGEMENT PATTERNS - callout, TL;DR, pull quote, trust
   ============================================ */
.callout {
    border-left: 4px solid var(--primary);
    background: color-mix(in srgb, var(--primary) 10%, var(--card));
    padding: var(--space-md);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: var(--space-md) 0;
}
.callout--info { border-left-color: var(--secondary); background: color-mix(in srgb, var(--secondary) 10%, var(--card)); }
.callout--warn { border-left-color: var(--accent); background: color-mix(in srgb, var(--accent) 10%, var(--card)); }
.callout p:last-child { margin-bottom: 0; }

.tldr {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-md);
    margin: var(--space-lg) 0;
}
.tldr__title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: var(--space-xs);
}
.tldr p { margin-bottom: 0; }

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

/* Trust badges / license / payment strip */
.badge-row { display: flex; flex-wrap: wrap; gap: var(--space-xs); margin-top: var(--space-sm); }
.badge {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--foreground);
}
.badge--age { background: var(--accent); color: var(--accent-foreground); border-color: transparent; }
.badge--license { background: var(--muted); }

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0 0;
}
.trust-strip li {
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--card);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 14px;
    color: var(--muted-foreground);
}
.logo-strip { text-align: center; margin: var(--space-md) 0; }
.logo-strip img { display: inline-block; }

.payment-strip--center {
    justify-content: center;
    margin: 0 auto var(--space-lg);
}
.payment-strip--center li {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 15px;
    padding: 8px 18px;
    color: var(--foreground);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: color-mix(in srgb, var(--card) 60%, var(--background));
    border-top: 1px solid var(--border);
    margin-top: var(--space-2xl);
}
.site-footer__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: var(--space-xl) var(--space-sm) var(--space-lg);
    display: grid;
    gap: var(--space-lg);
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 768px) { .site-footer__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .site-footer__inner { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.site-footer__brand {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 20px;
    color: var(--foreground);
    display: block;
    margin-bottom: var(--space-xs);
}
.site-footer__tagline { color: var(--muted-foreground); font-size: 15px; max-width: 40ch; }
.site-footer__heading {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: var(--space-sm);
}
.site-footer__links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-xs); }
.site-footer__links a { color: var(--foreground); font-size: 15px; }
.site-footer__links a:hover { color: var(--primary); }
.payment-strip { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: var(--space-xs); }
.payment-strip li {
    padding: 5px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--muted-foreground);
    background: var(--card);
}
.site-footer__bottom {
    border-top: 1px solid var(--border);
    padding: var(--space-md) var(--space-sm);
}
.site-footer__bottom p {
    max-width: var(--maxw);
    margin: 0 auto;
    text-align: center;
    color: var(--muted-foreground);
    font-size: 14px;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 500ms ease-out, transform 500ms ease-out;
}
.animate-on-scroll.is-visible { opacity: 1; transform: none; }
.grid .animate-on-scroll:nth-child(2) { transition-delay: 80ms; }
.grid .animate-on-scroll:nth-child(3) { transition-delay: 160ms; }
.grid .animate-on-scroll:nth-child(4) { transition-delay: 240ms; }

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

/* a11y-autofix: link-in-text-block */
/* axe link-in-text-block: inline links inside body copy must be
   distinguishable without relying on color. Scope to text containers so
   nav/button/card links (already visually distinct) keep their styling. */
:where(p, li, blockquote, figcaption, dd, .prose, .seo-text, article)
  a:not([class]) {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
