/*
 * ROBY CASINO - Cyberpunk Design System
 * Fonts: Orbitron (display), Rajdhani (body)
 * Palette: dark obsidian + neon cyan / purple / green
 */

:root {
    --background: #ffffff;
    --foreground: #1f2937;
    --card: #f8fafc;
    --card-foreground: #1f2937;
    --popover: #f8fafc;
    --popover-foreground: #1f2937;
    --primary: #0052ff;
    --primary-foreground: #ffffff;
    --secondary: #6d28d9;
    --secondary-foreground: #ffffff;
    --muted: #64748b;
    --muted-foreground: #475569;
    --accent: #16a34a;
    --accent-foreground: #000000;
    --destructive: #dc2626;
    --destructive-foreground: #ffffff;
    --border: #cbd5e1;
    --input: #ffffff;
    --ring: #0052ff;

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

    --container-max: 1200px;
    --radius: 6px;
    --header-h: 64px;

    --font-display: "Orbitron", sans-serif;
    --font-body: "Rajdhani", sans-serif;

    --ease: 250ms ease-out;
}

/* This site ships a single dark cyberpunk theme.
   Dark tokens are the canonical values used site-wide. */
:root {
    --background: #0c0a09;
    --foreground: #f0f4f8;
    --card: #12161f;
    --card-foreground: #f0f4f8;
    --popover: #12161f;
    --popover-foreground: #f0f4f8;
    --primary: #00f0ff;
    --primary-foreground: #04121a;
    --secondary: #a855f7;
    --secondary-foreground: #0c0a09;
    --muted: #1c2430;
    --muted-foreground: #aab6c6;
    --accent: #22c55e;
    --accent-foreground: #04140a;
    --destructive: #f00d34;
    --destructive-foreground: #ffffff;
    --border: #26313f;
    --input: #12161f;
    --ring: #00f0ff;

    --neon-cyan: #00f0ff;
    --neon-purple: #a855f7;
    --neon-green: #22c55e;
    --obsidian: #0c0a09;
    --near-black: #08090c;
}

/* ============================================
   OVERFLOW PREVENTION
   ============================================ */
*, *::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 { 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
   ============================================ */
html { scroll-behavior: smooth; }

body {
    margin: 0;
    background-color: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background-image:
        radial-gradient(circle at 15% 10%, rgba(0, 240, 255, 0.08), transparent 40%),
        radial-gradient(circle at 85% 90%, rgba(168, 85, 247, 0.08), transparent 40%);
    background-attachment: fixed;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin: 0 0 var(--space-sm);
    color: var(--foreground);
    overflow-wrap: anywhere;
}

h1 {
    font-size: 32px;
    font-weight: 800;
    text-shadow: 0 0 14px rgba(0, 240, 255, 0.45);
}
h2 { font-size: 26px; font-weight: 700; }
h3 { font-size: 22px; font-weight: 700; }

p { margin: 0 0 var(--space-sm); max-width: 72ch; }

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

ul, ol { padding-left: 1.2em; }

strong { color: var(--foreground); }

@media (min-width: 1024px) {
    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
    h3 { font-size: 28px; }
}

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

@media (min-width: 768px) {
    .container { padding-inline: var(--space-md); }
}

.section { padding-block: var(--space-xl); scroll-margin-top: calc(var(--header-h) + var(--space-sm)); }
@media (min-width: 1024px) {
    .section { padding-block: var(--space-2xl); }
}

.section__intro { max-width: 780px; margin-bottom: var(--space-lg); }

.dark-bg { background-color: var(--background); }

.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: 2000;
    background: var(--primary); color: var(--primary-foreground);
    padding: var(--space-xs) var(--space-sm); font-family: var(--font-display);
}
.skip-link:focus { left: 0; }

/* ============================================
   BUTTONS
   .btn--primary - electric neon fill CTA
   .btn--ghost - outlined
   ============================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: var(--space-xs);
    min-height: 44px; padding: 0 var(--space-md);
    font-family: var(--font-display); font-weight: 700; font-size: 15px;
    text-transform: uppercase; letter-spacing: 0.05em;
    border: 1px solid transparent; border-radius: var(--radius);
    cursor: pointer; transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease);
    text-align: center;
}
.btn--lg { min-height: 54px; padding: 0 var(--space-lg); font-size: 17px; }

.btn--primary {
    background: var(--primary); color: var(--primary-foreground);
    box-shadow: 0 0 18px rgba(0, 240, 255, 0.35);
}
.btn--primary:hover {
    transform: scale(1.05); color: var(--primary-foreground);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.7);
}

.btn--ghost {
    background: transparent; color: var(--foreground);
    border-color: var(--primary);
}
.btn--ghost:hover {
    transform: scale(1.05); color: var(--primary);
    box-shadow: 0 0 18px rgba(0, 240, 255, 0.4);
}

.btn--accent {
    background: var(--accent); color: var(--accent-foreground);
    box-shadow: 0 0 18px rgba(34, 197, 94, 0.35);
}
.btn--accent:hover { transform: scale(1.05); box-shadow: 0 0 30px rgba(34, 197, 94, 0.6); }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(8, 9, 12, 0.9);
    border-bottom: 1px solid var(--border);
}
@media (min-width: 1024px) {
    .site-header { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
}

.site-header__inner {
    display: flex; align-items: center; justify-content: space-between;
    min-height: var(--header-h);
}

.site-brand {
    display: inline-flex; align-items: center; gap: var(--space-xs);
    font-family: var(--font-display); font-weight: 900; font-size: 20px;
    text-transform: uppercase; letter-spacing: 0.04em; color: var(--foreground);
}
.site-brand:hover { color: var(--foreground); }
.site-brand__mark {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border: 2px solid var(--primary);
    color: var(--primary); border-radius: var(--radius);
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.5); font-size: 18px;
}
.site-brand__accent { color: var(--primary); }

.nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 10px; z-index: 1001;
    background: transparent; border: 1px solid var(--border); border-radius: var(--radius);
    cursor: pointer;
}
.nav-toggle span {
    display: block; height: 2px; width: 100%; background: var(--primary);
    border-radius: 2px; 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;
    z-index: 999; background: var(--background);
    padding: var(--space-lg) var(--space-sm);
    overflow-y: auto;
    flex-direction: column; gap: var(--space-lg);
    border-top: 1px solid var(--border);
}
.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: var(--space-xs);
}
.primary-nav__list a {
    display: flex; align-items: center; min-height: 48px;
    font-family: var(--font-display); font-weight: 500; font-size: 16px;
    text-transform: uppercase; letter-spacing: 0.04em; color: var(--foreground);
    padding: 0 var(--space-xs); border-bottom: 1px solid var(--border);
}
.primary-nav__list a:hover { color: var(--primary); }

.primary-nav__cta {
    display: flex; flex-direction: column; gap: var(--space-sm);
}

@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; border: 0; overflow: visible;
    }
    .primary-nav__list { flex-direction: row; align-items: center; gap: var(--space-lg); }
    .primary-nav__list a { min-height: var(--header-h); border-bottom: 0; }
    .primary-nav__cta { flex-direction: row; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative; overflow: clip;
    min-height: 520px; display: flex; align-items: center;
    padding-block: var(--space-xl);
    border-bottom: 1px solid var(--border);
}
.hero__bg {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
}
.hero__overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(90deg, rgba(8,9,12,0.92) 0%, rgba(8,9,12,0.72) 55%, rgba(8,9,12,0.4) 100%);
}
.hero__content { position: relative; z-index: 2; max-width: 680px; }
.hero__eyebrow {
    display: inline-block; font-family: var(--font-display); font-weight: 700;
    font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--neon-green); margin-bottom: var(--space-sm);
    text-shadow: 0 0 12px rgba(34, 197, 94, 0.5);
}
.hero__title { margin-bottom: var(--space-md); }
.hero__lede { font-size: 19px; color: var(--foreground); margin-bottom: var(--space-lg); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); }

@media (min-width: 1024px) {
    .hero { min-height: 640px; }
}

/* ============================================
   INFO CARD - core content container
   ============================================ */
.card-grid {
    display: grid; gap: var(--space-md);
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 768px) {
    .card-grid--2, .card-grid--3, .card-grid--4 { 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(--near-black);
    border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
    position: relative;
}
.info-card::before {
    content: ""; position: absolute; inset: 0; border-radius: var(--radius);
    pointer-events: none; border: 1px solid transparent;
}
.info-card--cyan { box-shadow: inset 0 0 0 1px rgba(0, 240, 255, 0.12); }
.info-card--purple { box-shadow: inset 0 0 0 1px rgba(168, 85, 247, 0.15); }
.info-card--green { box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.15); }

.info-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 0 24px rgba(0, 240, 255, 0.25);
}
.info-card--purple:hover { border-color: var(--secondary); box-shadow: 0 0 24px rgba(168, 85, 247, 0.3); }
.info-card--green:hover { border-color: var(--accent); box-shadow: 0 0 24px rgba(34, 197, 94, 0.3); }

.info-card__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.info-card__media img { width: 100%; height: 100%; object-fit: cover; }

.info-card__icon {
    display: flex; align-items: center; justify-content: center;
    padding: var(--space-md); background: rgba(0, 240, 255, 0.04);
}
.info-card__icon img { width: 96px; height: 96px; object-fit: contain; }

.info-card__body { padding: var(--space-md); display: flex; flex-direction: column; gap: var(--space-sm); flex: 1; }
@media (min-width: 1024px) { .info-card__body { padding: var(--space-lg); } }

.info-card__title { font-size: 20px; margin: 0; overflow-wrap: anywhere; }
.info-card__text { color: var(--foreground); font-size: 17px; line-height: 1.6; }
.info-card__text p:last-child { margin-bottom: 0; }
.info-card__link {
    margin-top: auto; font-family: var(--font-display); font-weight: 600;
    font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em;
    color: var(--accent);
}
.info-card__link:hover { color: var(--neon-green); text-shadow: 0 0 10px rgba(34, 197, 94, 0.5); }

/* ============================================
   STAT BLOCK - data metrics
   ============================================ */
.stat-block-wrap__title { margin-bottom: var(--space-lg); }
.stat-grid {
    display: grid; gap: var(--space-xs);
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 768px) {
    .stat-grid--2, .stat-grid--3, .stat-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .stat-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .stat-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.stat-cell {
    background: var(--near-black);
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: var(--space-lg); text-align: center;
    display: flex; flex-direction: column; gap: var(--space-xs);
    background-image:
        linear-gradient(rgba(0,240,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,240,255,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
}
.stat-cell__number {
    font-family: var(--font-display); font-weight: 900; font-size: 40px;
    color: var(--neon-green); text-shadow: 0 0 16px rgba(34, 197, 94, 0.5);
    line-height: 1;
}
.stat-cell:nth-child(even) .stat-cell__number {
    color: var(--primary); text-shadow: 0 0 16px rgba(0, 240, 255, 0.5);
}
.stat-cell__label {
    font-family: var(--font-body); font-weight: 600; font-size: 16px;
    color: var(--muted-foreground); text-transform: uppercase; letter-spacing: 0.03em;
}
.stat-cell__source { font-size: 13px; color: var(--muted-foreground); opacity: 0.85; }

@media (min-width: 1024px) {
    .stat-cell__number { font-size: 52px; }
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion { display: flex; flex-direction: column; gap: var(--space-sm); }
.faq-accordion__title { margin-bottom: var(--space-md); }

.faq-item {
    background: var(--card); border: 1px solid var(--border);
    border-left: 3px solid var(--primary); border-radius: var(--radius);
    transition: box-shadow var(--ease);
}
.faq-item:hover { box-shadow: 0 0 18px rgba(0, 240, 255, 0.25); }

.faq-item__question {
    display: flex; align-items: center; justify-content: space-between; gap: var(--space-sm);
    padding: var(--space-md); cursor: pointer; list-style: none;
    font-family: var(--font-display); font-weight: 500; font-size: 16px;
    text-transform: uppercase; letter-spacing: 0.02em; color: var(--foreground);
    min-height: 48px;
}
@media (min-width: 1024px) { .faq-item__question { padding: var(--space-md) var(--space-lg); } }
.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; top: 50%; left: 50%;
    background: var(--primary); box-shadow: 0 0 8px rgba(0, 240, 255, 0.6);
    transition: transform var(--ease);
}
.faq-item__icon::before { width: 16px; height: 2px; transform: translate(-50%, -50%); }
.faq-item__icon::after { width: 2px; height: 16px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-item__icon::after { transform: translate(-50%, -50%) scaleY(0); }

.faq-item__answer {
    padding: 0 var(--space-md) var(--space-md);
    color: var(--foreground); font-size: 17px; line-height: 1.7;
}
@media (min-width: 1024px) { .faq-item__answer { padding: 0 var(--space-lg) var(--space-lg); } }
.faq-item__answer p { margin: 0; max-width: 68ch; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative; overflow: clip;
    padding-block: var(--space-xl); text-align: center;
    background: var(--near-black); border-block: 1px solid var(--border);
    scroll-margin-top: calc(var(--header-h) + var(--space-sm));
}
@media (min-width: 1024px) { .cta-banner { padding-block: var(--space-2xl); } }
.cta-banner__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cta-banner__overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(8,9,12,0.85), rgba(8,9,12,0.92));
}
.cta-banner__content { position: relative; z-index: 2; }
.cta-banner__heading {
    color: var(--foreground); margin-bottom: var(--space-sm);
    text-shadow: 0 0 18px rgba(0, 240, 255, 0.5);
}
.cta-banner__subtext { color: var(--foreground); font-size: 19px; margin: 0 auto var(--space-lg); max-width: 60ch; }
.cta-banner__micro { color: var(--muted-foreground); font-size: 14px; margin-top: var(--space-sm); }

/* ============================================
   ENGAGEMENT PATTERNS
   ============================================ */
.tldr-box, .callout {
    border: 1px solid var(--border); border-left: 4px solid var(--accent);
    background: var(--card); border-radius: var(--radius);
    padding: var(--space-md); margin-block: var(--space-md);
}
.tldr-box { border-left-color: var(--primary); }
.tldr-box__title, .callout__title {
    font-family: var(--font-display); font-size: 14px; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--primary); margin-bottom: var(--space-xs);
}
.callout__title { color: var(--accent); }
.tldr-box p:last-child, .callout p:last-child { margin-bottom: 0; }

.pull-quote {
    border-left: 4px solid var(--secondary); padding: var(--space-md) var(--space-lg);
    margin-block: var(--space-lg); font-family: var(--font-display);
    font-size: 22px; line-height: 1.4; color: var(--foreground);
    text-shadow: 0 0 14px rgba(168, 85, 247, 0.3);
}
.pull-quote cite {
    display: block; margin-top: var(--space-sm); font-family: var(--font-body);
    font-size: 15px; font-style: normal; color: var(--muted-foreground);
}

.trust-badges {
    display: flex; flex-wrap: wrap; gap: var(--space-md);
    align-items: center; justify-content: center;
    list-style: none; padding: 0; margin: var(--space-md) 0;
}
.trust-badges li {
    font-family: var(--font-display); font-size: 14px; letter-spacing: 0.05em;
    text-transform: uppercase; color: var(--muted-foreground);
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: var(--space-xs) var(--space-sm);
}

/* Data tables */
.data-table {
    width: 100%; border-collapse: collapse; font-size: 16px;
    border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.data-table th, .data-table td {
    padding: var(--space-sm); text-align: left; border-bottom: 1px solid var(--border);
}
.data-table thead th {
    background: var(--near-black); color: var(--primary);
    font-family: var(--font-display); font-size: 13px; text-transform: uppercase;
    letter-spacing: 0.05em;
}
.data-table tbody tr:nth-child(even) { background: rgba(255, 255, 255, 0.02); }
.data-table tbody tr:hover { background: rgba(0, 240, 255, 0.06); }
.data-table .is-highlight { background: rgba(34, 197, 94, 0.08); }

.tier-bar {
    display: grid; gap: var(--space-xs); margin-block: var(--space-md);
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 768px) { .tier-bar { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
.tier-bar__step {
    background: var(--near-black); border: 1px solid var(--border);
    border-radius: var(--radius); padding: var(--space-sm); text-align: center;
}
.tier-bar__step strong {
    display: block; font-family: var(--font-display); color: var(--accent);
    font-size: 15px; text-transform: uppercase;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--near-black); border-top: 1px solid var(--border);
    margin-top: var(--space-2xl); padding-top: var(--space-xl);
    color: var(--muted-foreground);
}
.site-footer__inner {
    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__tagline { font-size: 15px; margin-top: var(--space-sm); max-width: 40ch; }
.site-footer__heading {
    font-family: var(--font-display); font-size: 15px; text-transform: uppercase;
    letter-spacing: 0.05em; color: var(--foreground); margin-bottom: var(--space-sm);
}
.site-footer__links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-xs); }
.site-footer__links a {
    color: var(--foreground); font-size: 16px; opacity: 0.85;
    display: flex; align-items: center; min-height: 44px;
}
.site-footer__links a:hover { color: var(--primary); opacity: 1; }

.payment-icons { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: var(--space-xs); }
.payment-icons__item {
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: 6px 10px; font-size: 14px; font-family: var(--font-display);
    letter-spacing: 0.03em; color: var(--foreground); opacity: 0.85;
}

.license-badge { display: flex; gap: var(--space-sm); align-items: flex-start; }
.license-badge__age {
    flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border: 2px solid var(--destructive); border-radius: 50%;
    color: var(--destructive); font-family: var(--font-display); font-weight: 700;
}
.license-badge p { font-size: 14px; margin: 0; color: var(--foreground); opacity: 0.85; }

.site-footer__bottom {
    margin-top: var(--space-lg); padding-block: var(--space-md);
    border-top: 1px solid var(--border); font-size: 14px;
    color: var(--foreground); opacity: 0.85;
    overflow-wrap: anywhere;
}

/* ============================================
   SITEMAP
   ============================================ */
.sitemap-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-md); }
.sitemap-list__item {
    border: 1px solid var(--border); border-left: 3px solid var(--primary);
    border-radius: var(--radius); padding: var(--space-md); background: var(--card);
}
.sitemap-list__item h3 { font-size: 18px; margin-bottom: var(--space-xs); }
.sitemap-list__item p { margin: 0; font-size: 16px; }

/* ============================================
   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: translateY(0); }

.card-grid .animate-on-scroll.is-visible:nth-child(2) { transition-delay: 80ms; }
.card-grid .animate-on-scroll.is-visible:nth-child(3) { transition-delay: 160ms; }
.card-grid .animate-on-scroll.is-visible:nth-child(4) { transition-delay: 240ms; }
.stat-grid .animate-on-scroll.is-visible:nth-child(2) { transition-delay: 80ms; }
.stat-grid .animate-on-scroll.is-visible:nth-child(3) { transition-delay: 160ms; }
.stat-grid .animate-on-scroll.is-visible:nth-child(4) { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .animate-on-scroll { opacity: 1; transform: none; transition: none; }
    .btn, .info-card { transition: none; }
    .btn:hover, .info-card:hover { 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;
}
