/*
 * Vox Casino - Design System
 * Neon club aesthetic: deep blacks, electric orange, glowing frames
 * Fonts: Unbounded (display) + Manrope (body)
 * Mobile-first · Dark theme only (no toggle)
 */

/* ============================================
   DESIGN TOKENS
   Single dark theme
   ============================================ */

:root {
    --background: #0C0908;
    --foreground: #F5F0E8;
    --card: #1A1410;
    --card-foreground: #F5F0E8;
    --popover: #1A1410;
    --popover-foreground: #F5F0E8;
    --primary: #FF7A00;
    --primary-foreground: #0C0908;
    --secondary: #1E1E1E;
    --secondary-foreground: #F5F0E8;
    --muted: #2A2520;
    --muted-foreground: #9CA3AF;
    --accent: #FFC700;
    --accent-foreground: #0C0908;
    --destructive: #ea0d33;
    --destructive-foreground: #FFFFFF;
    --border: #2A2520;
    --input: #1A1410;
    --ring: #FF7A00;

    --header-height: 64px;
    --font-display: "Unbounded", sans-serif;
    --font-body: "Manrope", sans-serif;
    --shadow-neon: 0 0 30px rgba(255, 122, 0, 0.15);
    --shadow-neon-strong: 0 0 40px rgba(255, 122, 0, 0.3);
}

@media (min-width: 768px) {
    :root {
        --header-height: 72px;
    }
}

/* ============================================
   RESET & BASE
   ============================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

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-x: clip;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

/* ============================================
   TYPOGRAPHY
   Unbounded for headings, Manrope for body
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--foreground);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 {
    font-weight: 800;
    font-size: clamp(28px, 2rem + 3vw, 48px);
    margin-bottom: 20px;
}

h2 {
    font-weight: 700;
    font-size: clamp(24px, 1.5rem + 2vw, 36px);
    margin-bottom: 16px;
}

h3 {
    font-weight: 600;
    font-size: clamp(20px, 1.25rem + 1vw, 26px);
    margin-bottom: 14px;
}

h4 {
    font-weight: 500;
    font-size: clamp(18px, 1rem + 0.5vw, 20px);
    margin-bottom: 12px;
}

p {
    margin-bottom: 20px;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 150ms ease;
}

a:hover {
    color: var(--accent);
}

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

/* ============================================
   LAYOUT UTILITIES
   Container, sections, grids
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }
}

.section {
    padding: 56px 0;
}

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

.section-header {
    margin-bottom: 48px;
}

.section-header.text-center {
    text-align: center;
}

.section-header.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 18px;
    color: var(--muted-foreground);
    max-width: 720px;
    line-height: 1.6;
    margin-bottom: 0;
}

.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .card-grid.cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .card-grid.cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.two-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}

@media (min-width: 768px) {
    .two-column {
        grid-template-columns: 1fr 1fr;
    }
}

.text-center {
    text-align: center;
}

/* ============================================
   SKIP LINK
   Accessibility: keyboard navigation
   ============================================ */

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 12px 24px;
    font-weight: 600;
    font-size: 15px;
    z-index: 10000;
    border-radius: 0 0 8px 0;
    transition: top 200ms ease;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   LOGO MARK
   CSS-based brand logo (replaces missing image asset)
   ============================================ */

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 8px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: var(--shadow-neon);
}

.logo-mark-sm {
    width: 32px;
    height: 32px;
    font-size: 18px;
    border-radius: 6px;
}

/* ============================================
   HEADER
   Sticky, solid background (no backdrop-filter
   to avoid containing-block trap on fixed nav)
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    background: var(--background);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: 1280px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    color: var(--foreground);
    letter-spacing: -0.02em;
}

/* ============================================
   PRIMARY NAVIGATION
   Mobile: fixed drawer below header
   Desktop: inline horizontal nav
   ============================================ */

.primary-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    z-index: 999;
    overflow-y: auto;
    flex-direction: column;
    padding: 24px;
    gap: 4px;
}

.primary-nav.is-open {
    display: flex;
}

.nav-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 16px 8px;
    color: var(--foreground);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 18px;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.nav-actions .btn {
    width: 100%;
    justify-content: center;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: transform 250ms ease, opacity 250ms ease;
    align-self: center;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 768px) {
    .primary-nav {
        display: flex;
        position: static;
        flex-direction: row;
        align-items: center;
        background: transparent;
        padding: 0;
        gap: 32px;
        overflow: visible;
        height: auto;
    }

    .nav-link {
        border-bottom: none;
        padding: 8px 0;
        font-size: 16px;
        min-height: auto;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: width 200ms ease;
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .nav-actions {
        flex-direction: row;
        margin-top: 0;
        padding-top: 0;
        border-top: none;
        margin-left: auto;
        gap: 12px;
    }

    .nav-actions .btn {
        width: auto;
    }

    .menu-toggle {
        display: none;
    }
}

/* ============================================
   BUTTONS
   Primary (orange, dark text), Outline, sizes
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    min-height: 44px;
    padding: 12px 28px;
    border-radius: 8px;
    transition: background 150ms ease, color 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
    background: #E56A00;
    color: var(--primary-foreground);
    box-shadow: var(--shadow-neon-strong);
}

.btn-outline {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-large {
    min-height: 56px;
    font-size: 18px;
    padding: 16px 40px;
}

.btn-sm {
    min-height: 40px;
    font-size: 14px;
    padding: 8px 20px;
}

/* ============================================
   HERO
   Full-bleed background image with overlay
   ============================================ */

.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: clip;
}

@media (min-width: 768px) {
    .hero {
        min-height: 600px;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(12, 9, 8, 0.95) 0%, rgba(12, 9, 8, 0.75) 40%, rgba(12, 9, 8, 0.35) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 24px;
}

@media (min-width: 1024px) {
    .hero-inner {
        padding: 96px 32px;
    }
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: var(--muted-foreground);
    margin-bottom: 32px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-content p {
        font-size: 20px;
    }
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* ============================================
   INFO CARDS
   Image top, content below, neon glow on hover
   ============================================ */

.info-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 300ms ease-out, box-shadow 300ms ease-out, border-color 300ms ease-out;
}

.info-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-neon-strong);
    border-color: var(--primary);
}

.info-card-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.info-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.info-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .info-card-body {
        padding: 32px;
    }
}

.info-card-body h3 {
    margin-bottom: 12px;
}

.info-card-body p {
    color: var(--muted-foreground);
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.card-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 200ms ease, color 150ms ease;
    align-self: flex-start;
}

.card-link:hover {
    color: var(--accent);
    gap: 10px;
}

.card-link-arrow {
    transition: transform 200ms ease;
}

.card-link:hover .card-link-arrow {
    transform: translateX(4px);
}

/* ============================================
   STAT BLOCKS
   Large numbers with labels, optional frame
   ============================================ */

.stat-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 768px) {
    .stat-block {
        flex-direction: row;
        justify-content: space-between;
        gap: 32px;
    }
}

.stat-block-framed {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px 24px;
    box-shadow: var(--shadow-neon);
}

@media (min-width: 768px) {
    .stat-block-framed {
        padding: 40px 32px;
    }
}

.stat-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.stat-number {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(28px, 1.75rem + 1vw, 36px);
    color: var(--primary);
    line-height: 1.1;
}

.stat-label {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: 8px;
}

.stat-source {
    font-size: 12px;
    color: var(--muted-foreground);
    margin-top: 4px;
    opacity: 0.8;
}

/* ============================================
   FAQ ACCORDION
   Custom JS-driven, smooth grid-rows animation
   ============================================ */

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    border-left: 3px solid transparent;
    transition: border-left-color 250ms ease, box-shadow 250ms ease;
}

.faq-item[data-open="true"] {
    border-left-color: var(--primary);
    box-shadow: var(--shadow-neon);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 17px;
    color: var(--foreground);
    text-align: left;
    gap: 16px;
}

@media (min-width: 1024px) {
    .faq-question {
        padding: 32px;
    }
}

.faq-question-text {
    flex: 1;
}

.faq-chevron {
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 250ms ease;
    display: flex;
    align-items: center;
}

.faq-item[data-open="true"] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 250ms ease;
}

.faq-item[data-open="true"] .faq-answer-wrapper {
    grid-template-rows: 1fr;
}

.faq-answer {
    overflow: hidden;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--muted-foreground);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (min-width: 1024px) {
    .faq-answer p {
        padding: 0 32px 32px;
    }
}

/* ============================================
   CTA BANNER
   Full-width neon-edge framed conversion section
   ============================================ */

.cta-banner {
    padding: 56px 24px;
}

@media (min-width: 1024px) {
    .cta-banner {
        padding: 96px 24px;
    }
}

.cta-banner-frame {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(255, 122, 0, 0.3);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.06), rgba(12, 9, 8, 0.9));
    box-shadow: var(--shadow-neon);
    padding: 48px 24px;
    text-align: center;
}

@media (min-width: 768px) {
    .cta-banner-frame {
        padding: 64px 48px;
    }
}

.cta-banner-inner h2 {
    margin-bottom: 16px;
}

.cta-banner-inner p {
    color: var(--muted-foreground);
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.micro-copy {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: 16px;
    margin-bottom: 0;
}

/* ============================================
   FOOTER
   Three-column grid, payments, legal
   ============================================ */

.site-footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 56px 0 48px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .footer-inner {
        padding: 0 32px;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    color: var(--foreground);
}

.footer-text {
    font-size: 15px;
    color: var(--muted-foreground);
    line-height: 1.6;
    max-width: 400px;
}

.footer-heading {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    color: var(--foreground);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 15px;
    transition: color 150ms ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-payments {
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.payment-label {
    display: block;
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 12px;
    font-weight: 500;
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.payment-item {
    padding: 8px 16px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 13px;
    color: var(--muted-foreground);
    font-weight: 500;
}

.footer-legal {
    text-align: center;
    padding-bottom: 16px;
}

.footer-legal p {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-bottom: 8px;
}

.age-warning {
    color: var(--primary) !important;
    font-weight: 600;
}

.copyright {
    margin-top: 12px !important;
}

/* ============================================
   PROSE
   Long-form content styling for text sections
   ============================================ */

.prose {
    max-width: 720px;
    font-size: 17px;
    line-height: 1.6;
}

.prose p {
    color: var(--foreground);
    margin-bottom: 24px;
}

.prose p strong {
    color: var(--primary);
}

.prose h2 {
    margin-top: 56px;
    margin-bottom: 20px;
}

.prose h3 {
    margin-top: 40px;
    margin-bottom: 16px;
}

.prose h4 {
    margin-top: 32px;
    margin-bottom: 12px;
}

.prose ul, .prose ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.prose li {
    margin-bottom: 12px;
    color: var(--foreground);
}

.prose a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
}

.prose a:hover {
    color: var(--accent);
}

.prose blockquote {
    border-left: 3px solid var(--primary);
    padding: 20px 24px;
    margin: 32px 0;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 20px;
    color: var(--foreground);
    background: var(--card);
    border-radius: 0 8px 8px 0;
    line-height: 1.4;
}

.prose blockquote cite {
    display: block;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 15px;
    color: var(--muted-foreground);
    margin-top: 12px;
    font-style: normal;
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    font-size: 15px;
}

.prose th, .prose td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.prose th {
    background: var(--card);
    color: var(--foreground);
    font-weight: 600;
}

.prose td {
    color: var(--muted-foreground);
}

/* ============================================
   ENGAGEMENT PATTERNS
   TL;DR, callout, pull quote, comparison table,
   trust badges, testimonials
   ============================================ */

/* TL;DR / Summary box */
.tldr-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary);
    border-radius: 8px;
    padding: 24px;
    margin: 32px 0;
}

.tldr-box-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tldr-box p {
    margin-bottom: 0;
    color: var(--foreground);
}

/* Callout / Highlight box */
.callout {
    background: rgba(255, 122, 0, 0.06);
    border: 1px solid rgba(255, 122, 0, 0.2);
    border-radius: 8px;
    padding: 20px 24px;
    margin: 28px 0;
}

.callout-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 8px;
}

.callout p {
    margin-bottom: 0;
    color: var(--foreground);
}

/* Pull quote */
.pull-quote {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(22px, 1.5rem + 1vw, 32px);
    color: var(--primary);
    line-height: 1.3;
    margin: 40px 0;
    padding-left: 24px;
    border-left: 3px solid var(--primary);
    max-width: 720px;
}

.pull-quote cite {
    display: block;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    color: var(--muted-foreground);
    margin-top: 16px;
    font-style: normal;
}

/* Comparison table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    font-size: 15px;
    min-width: 0;
}

.comparison-table th {
    background: var(--card);
    color: var(--foreground);
    font-family: var(--font-body);
    font-weight: 600;
    padding: 16px;
    text-align: left;
    border-bottom: 2px solid var(--border);
}

.comparison-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--muted-foreground);
}

.comparison-table .col-highlight {
    background: rgba(255, 122, 0, 0.05);
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
}

.comparison-table .col-highlight th {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* Trust badges row */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin: 24px 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    color: var(--muted-foreground);
    font-weight: 500;
}

/* Testimonial / Social proof */
.testimonial {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

.testimonial p {
    color: var(--foreground);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--foreground);
}

.testimonial-author-role {
    font-size: 13px;
    color: var(--muted-foreground);
}

/* ============================================
   BADGE
   Inline pill label for tags/categories
   ============================================ */

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 14px;
    background: rgba(255, 122, 0, 0.12);
    color: var(--primary);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    border-radius: 20px;
    border: 1px solid rgba(255, 122, 0, 0.25);
    letter-spacing: 0.02em;
}

/* ============================================
   INLINE IMAGES
   Framed images within content sections
   ============================================ */

.inline-image {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.inline-image img {
    width: 100%;
    display: block;
}

/* ============================================
   SITEMAP PAGE
   Simple list of pages with descriptions
   ============================================ */

.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-entry {
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.sitemap-entry:first-child {
    border-top: 1px solid var(--border);
}

.sitemap-link {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
    color: var(--primary);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 150ms ease;
}

a.sitemap-link:hover {
    color: var(--accent);
}

.sitemap-link[aria-disabled="true"] {
    color: var(--muted-foreground);
    cursor: default;
}

.sitemap-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* ============================================
   ANIMATIONS
   Scroll-triggered fade-in slide-up
   ============================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger grid children */
.card-grid .animate-on-scroll:nth-child(2) {
    transition-delay: 80ms;
}

.card-grid .animate-on-scroll:nth-child(3) {
    transition-delay: 160ms;
}

.card-grid .animate-on-scroll:nth-child(4) {
    transition-delay: 240ms;
}

/* ============================================
   REDUCED MOTION
   Respect user preferences
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }

    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   FOCUS STATES
   Visible focus rings for keyboard navigation
   ============================================ */

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ============================================
   PRINT
   ============================================ */

@media print {
    .site-header,
    .site-footer,
    .cta-banner,
    .menu-toggle {
        display: none;
    }

    body {
        background: #fff;
        color: #000;
    }
}

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