/*
 * Vox Casino Design System
 * Dark Velvet Night interface with luminous orange accents.
 */

:root,
.dark {
    --background: #0A0A0C;
    --foreground: #F5E6D3;
    --card: #16161A;
    --card-foreground: #F5E6D3;
    --popover: #121215;
    --popover-foreground: #F5E6D3;
    --primary: #E8E4D9;
    --primary-foreground: #0A0A0C;
    --secondary: #1A1A1F;
    --secondary-foreground: #F5E6D3;
    --muted: #27272A;
    --muted-foreground: #B8B8C0;
    --accent: #FF6B00;
    --accent-hover: #FF8A2A;
    --accent-foreground: #111111;
    --destructive: #ea1414;
    --destructive-foreground: #FFFFFF;
    --border: #2A2A30;
    --input: #16161A;
    --ring: #FF6B00;
    --cream: #F5E6D3;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    --glow: 0 0 32px rgba(255, 107, 0, 0.28);
    --container: 1200px;
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 3.75rem;
    --space-4xl: 6.25rem;
    --header-height: 76px;
    --bg-elevated: #111116;
    --bg-deep: #0D0D10;
    --bg-footer: #070708;
    --bg-th: #202026;
    --header-bg-rgb: 10, 10, 12;
}

.light {
    --background: #F5F2EE;
    --foreground: #1A1A1F;
    --card: #FFFFFF;
    --card-foreground: #1A1A1F;
    --popover: #FFFFFF;
    --popover-foreground: #1A1A1F;
    --primary: #1A1A1F;
    --primary-foreground: #F5F2EE;
    --secondary: #EDE9E2;
    --secondary-foreground: #1A1A1F;
    --muted: #E0DDD6;
    --muted-foreground: #65656a;
    --border: #D5D0C8;
    --input: #FFFFFF;
    --cream: #1A1A1F;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    --glow: 0 0 32px rgba(255, 107, 0, 0.18);
    --bg-elevated: #FFFFFF;
    --bg-deep: #EDE9E2;
    --bg-footer: #E8E4D9;
    --bg-th: #EDE9E2;
    --header-bg-rgb: 245, 242, 238;
}

@media (prefers-color-scheme: light) {
    :root:not(.dark) {
        --background: #F5F2EE;
        --foreground: #1A1A1F;
        --card: #FFFFFF;
        --card-foreground: #1A1A1F;
        --popover: #FFFFFF;
        --popover-foreground: #1A1A1F;
        --primary: #1A1A1F;
        --primary-foreground: #F5F2EE;
        --secondary: #EDE9E2;
        --secondary-foreground: #1A1A1F;
        --muted: #E0DDD6;
        --muted-foreground: #65656a;
        --border: #D5D0C8;
        --input: #FFFFFF;
        --cream: #1A1A1F;
        --shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        --glow: 0 0 32px rgba(255, 107, 0, 0.18);
        --bg-elevated: #FFFFFF;
        --bg-deep: #EDE9E2;
        --bg-footer: #E8E4D9;
        --bg-th: #EDE9E2;
        --header-bg-rgb: 245, 242, 238;
    }
}

/* ============================================
   RESET AND OVERFLOW SAFETY - predictable layout
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    scroll-behavior: smooth;
    background: var(--background);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 50% -10%, rgba(255, 107, 0, 0.16), transparent 32rem),
        var(--background);
    color: var(--foreground);
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

img, video, iframe, embed, object, svg {
    max-width: 100%;
    height: auto;
}

[class*="grid"] > *,
[class*="flex"] > *,
.card,
.info-card {
    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;
    white-space: pre;
}

.table-wrapper,
[class*="table-"] {
    max-width: 100%;
    overflow-x: auto;
}

p, li, td, th {
    overflow-wrap: break-word;
}

a {
    color: var(--accent);
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.18em;
}

a[href^="http"],
a[href^="mailto"] {
    word-break: break-word;
}

input, textarea, select, button {
    font: inherit;
}

input, textarea, select {
    max-width: 100%;
}

section, header, footer, .hero, .cta-banner {
    overflow-x: clip;
}

/* ============================================
   TYPOGRAPHY - Syne display with Manrope body
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 var(--space-md);
    color: var(--cream);
    font-family: "Syne", system-ui, sans-serif;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(1.75rem, calc(4vw + 0.7rem), 3rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.5rem, calc(2.4vw + 0.8rem), 2.25rem);
}

h3 {
    font-size: clamp(1.25rem, calc(1.4vw + 0.9rem), 1.625rem);
    font-weight: 600;
}

h4 {
    font-size: clamp(1.125rem, calc(0.8vw + 0.95rem), 1.25rem);
    font-weight: 600;
}

p {
    margin: 0 0 1.75rem;
    max-width: 74ch;
}

small, .small, figcaption, .caption {
    font-size: 0.875rem;
    line-height: 1.5;
}

.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: var(--space-md);
    top: var(--space-md);
    z-index: 2000;
    transform: translateY(-180%);
    background: var(--accent);
    color: var(--accent-foreground);
    padding: var(--space-sm) var(--space-md);
    border-radius: 999px;
    font-weight: 800;
}

.skip-link:focus {
    transform: translateY(0);
}

/* ============================================
   LAYOUT UTILITIES - containers and responsive grids
   ============================================ */
.container,
.container-1200,
.section-container {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
}

.section {
    padding-block: var(--space-3xl);
}

.full-bleed,
.full-bleed-hero {
    width: 100%;
}

.grid,
.card-grid,
.info-grid,
.trust-grid,
.social-proof-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-lg);
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-xl);
    align-items: center;
}

.section-heading {
    margin: 0 auto var(--space-xl);
    max-width: 820px;
    text-align: center;
}

.section-heading p {
    margin-inline: auto;
    color: var(--muted-foreground);
}

/* ============================================
   HEADER AND NAVIGATION - sticky mobile-safe drawer
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--background);
    border-bottom: 1px solid var(--border);
}

.site-header__inner {
    width: min(100% - 2rem, var(--container));
    min-height: var(--header-height);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    min-height: 48px;
    flex-shrink: 0;
    color: var(--cream);
    font-family: "Syne", sans-serif;
    font-size: 1.125rem;
    font-weight: 800;
    text-decoration: none;
}

.logo {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    object-fit: contain;
    filter: drop-shadow(0 0 14px rgba(255, 107, 0, 0.38));
}

.mobile-menu-toggle {
    position: relative;
    z-index: 1001;
    display: inline-flex;
    width: 48px;
    height: 48px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--card);
    color: var(--cream);
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 200ms ease-out, opacity 200ms ease-out;
}

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

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

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

.primary-nav {
    display: none;
}

.primary-nav.is-open {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    padding: var(--space-xl);
    overflow-y: auto;
    background: var(--background);
    border-top: 1px solid var(--border);
}

.primary-nav__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-xs);
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    color: var(--cream);
    font-weight: 700;
    text-decoration: none;
}

.primary-nav__list a {
    position: relative;
}

.primary-nav__list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 150ms ease-out;
}

.primary-nav__list a:hover::after,
.primary-nav__list a:focus-visible::after {
    width: 100%;
}

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

/* ============================================
   BUTTONS AND LINKS - conversion-forward actions
   ============================================ */
.btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.75rem 1.25rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: transform 200ms ease-out, box-shadow 200ms ease-out, background 200ms ease-out, border-color 200ms ease-out;
}

.btn--primary {
    background: var(--accent);
    color: var(--accent-foreground);
    box-shadow: 0 0 0 rgba(255, 107, 0, 0);
}

.btn--primary:hover,
.btn--primary:focus-visible {
    background: linear-gradient(135deg, var(--accent), #FFD0A6);
    transform: translateY(-2px);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.22), var(--glow);
}

.btn--ghost {
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--cream);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
    border-color: var(--accent);
    box-shadow: var(--glow);
}

.btn--large {
    padding-inline: var(--space-xl);
}

.text-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: var(--accent);
    font-weight: 800;
}

/* ============================================
   HERO AND MEDIA BLOCKS - Velvet Night atmosphere
   ============================================ */
.hero {
    position: relative;
    padding-block: 5rem;
    background:
        radial-gradient(circle at 70% 80%, rgba(255, 107, 0, 0.28), transparent 24rem),
        linear-gradient(180deg, var(--bg-elevated) 0%, var(--background) 100%);
}

.hero::after,
.cta-banner::after,
.glow-panel::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -30%;
    width: min(900px, 120vw);
    height: 320px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(255, 107, 0, 0.38), transparent 68%);
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 1;
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-xl);
    align-items: center;
}

.hero__content p,
.lead {
    color: var(--muted-foreground);
    font-size: clamp(1rem, calc(0.45vw + 0.95rem), 1.125rem);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.hero__media img,
.feature-image {
    width: 100%;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: var(--shadow), var(--glow);
}

/* ============================================
   CARDS - Content containers and reusable macros
   ============================================ */
.card,
.info-card,
.summary-box,
.callout-box,
.glow-panel,
.review-card,
.stat-highlight,
.trust-badge {
    border: 1px solid var(--border);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)), var(--card);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
}

.info-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 200ms ease-out, box-shadow 200ms ease-out, border-color 200ms ease-out;
}

.info-card::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: -48px;
    height: 72px;
    background: radial-gradient(ellipse, rgba(255, 107, 0, 0.25), transparent 70%);
    transition: opacity 200ms ease-out;
    opacity: 0.45;
}

.info-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(255, 107, 0, 0.55);
    box-shadow: var(--shadow), var(--glow);
}

.info-card:hover::after {
    opacity: 1;
}

.info-card__media {
    aspect-ratio: 16 / 10;
    background: var(--secondary);
    overflow: hidden;
}

.info-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-card__content {
    position: relative;
    z-index: 1;
    padding: var(--space-lg);
}

.info-card__content p {
    color: var(--muted-foreground);
}

.info-card__badge,
.eyebrow {
    display: inline-flex;
    margin-bottom: var(--space-sm);
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ============================================
   ENGAGEMENT PATTERNS - answer capsules and proof
   ============================================ */
.summary-box,
.callout-box {
    padding: var(--space-lg);
    margin-block: var(--space-xl);
}

.summary-box {
    border-color: rgba(255, 107, 0, 0.45);
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.12), rgba(255, 255, 255, 0.02)), var(--card);
}

.summary-box h2,
.summary-box h3,
.callout-box h2,
.callout-box h3 {
    margin-bottom: var(--space-sm);
}

.callout-box {
    border-left: 4px solid var(--accent);
}

.stat-highlight {
    padding: var(--space-lg);
    text-align: center;
}

.stat-highlight__number,
.stat-number {
    display: block;
    color: var(--accent);
    font-family: "Syne", sans-serif;
    font-size: clamp(2rem, calc(3vw + 1rem), 3.75rem);
    font-weight: 800;
    line-height: 1;
}

.stat-highlight__label,
.stat-label {
    display: block;
    margin-top: var(--space-xs);
    color: var(--cream);
    font-weight: 800;
}

.stat-highlight__source,
.stat-source {
    display: block;
    margin-top: var(--space-xs);
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.pull-quote,
blockquote {
    margin: var(--space-xl) 0;
    padding: var(--space-xl);
    border-left: 4px solid var(--accent);
    border-radius: 0 24px 24px 0;
    background: rgba(255, 107, 0, 0.08);
    color: var(--cream);
    font-family: "Syne", sans-serif;
    font-size: clamp(1.5rem, calc(1.6vw + 1rem), 2rem);
    font-style: italic;
    line-height: 1.3;
}

blockquote cite,
.pull-quote cite {
    display: block;
    margin-top: var(--space-md);
    color: var(--muted-foreground);
    font-family: "Manrope", sans-serif;
    font-size: 0.875rem;
    font-style: normal;
}

.trust-badges,
.payment-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin: 0;
    padding: 0;
    list-style: none;
}

.trust-badge,
.payment-list li {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    color: var(--cream);
    filter: grayscale(0.45);
    font-weight: 800;
}

.social-proof-grid .review-card,
.review-card {
    padding: var(--space-lg);
}

.review-card p {
    color: var(--muted-foreground);
}

/* ============================================
   TABLES AND COMPARISONS - AI-citable structure
   ============================================ */
table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 20px;
    background: var(--card);
}

th, td {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

th {
    color: var(--cream);
    font-family: "Syne", sans-serif;
    background: var(--bg-th);
}

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

.recommended,
[scope="col"].recommended {
    background: rgba(255, 107, 0, 0.16);
    color: var(--cream);
}

/* ============================================
   ACCORDIONS AND DETAILS - native accessible FAQ
   ============================================ */
.faq-section {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
    padding-block: var(--space-3xl);
}

.faq-list {
    display: grid;
    gap: var(--space-lg);
    max-width: 820px;
    margin-inline: auto;
}

details,
.faq-item {
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--card);
    overflow: hidden;
}

summary,
.faq-item summary {
    position: relative;
    min-height: 64px;
    padding: var(--space-lg) 3.5rem var(--space-lg) var(--space-lg);
    color: var(--cream);
    font-family: "Syne", sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "⌄";
    position: absolute;
    right: var(--space-lg);
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 1.5rem;
    transition: transform 300ms ease;
}

details[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
}

details[open] {
    box-shadow: inset 0 -4px 0 rgba(255, 107, 0, 0.5), var(--glow);
}

.faq-item__answer,
details > div {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--muted-foreground);
}

/* ============================================
   ACTIVATION STEPS - numbered process list
   ============================================ */
.activation-steps {
    display: grid;
    gap: var(--space-lg);
    max-width: 820px;
    margin-inline: auto;
}

.activation-step {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    padding: var(--space-lg);
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--card);
    transition: transform 200ms ease-out, box-shadow 200ms ease-out, border-color 200ms ease-out;
}

.activation-step:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 0, 0.55);
    box-shadow: var(--shadow), var(--glow);
}

.activation-step__number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.18), rgba(255, 107, 0, 0.06));
    border: 2px solid var(--accent);
    color: var(--accent);
    font-family: "Syne", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.activation-step__content {
    flex: 1;
    min-width: 0;
}

.activation-step__content h3 {
    margin-bottom: var(--space-xs);
}

.activation-step__content p {
    margin: 0;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .activation-steps {
        gap: var(--space-xl);
    }

    .activation-step {
        padding: var(--space-xl);
    }
}

/* ============================================
   CTA BANNER - full-width conversion band
   ============================================ */
.cta-banner {
    position: relative;
    padding-block: var(--space-3xl);
    background: linear-gradient(180deg, var(--bg-elevated), var(--background));
}

.cta-banner__inner {
    position: relative;
    z-index: 1;
    width: min(100% - 2rem, 860px);
    margin-inline: auto;
    text-align: center;
}

.cta-banner__inner p {
    margin-inline: auto;
    color: var(--muted-foreground);
    font-size: 1.0625rem;
}

.cta-banner__microcopy {
    display: block;
    margin-top: var(--space-md);
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* ============================================
   FOOTER - license, links, payments, responsible gaming
   ============================================ */
.site-footer {
    border-top: 1px solid var(--border);
    background: var(--bg-footer);
}

.site-footer__inner {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
    padding-block: var(--space-3xl);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-xl);
}

.site-footer h2 {
    font-size: 1.125rem;
}

.site-footer p,
.footer-legal {
    color: var(--muted-foreground);
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: var(--cream);
    font-weight: 700;
    text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--accent);
}

.age-badge {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin-bottom: var(--space-md);
    border: 2px solid var(--accent);
    border-radius: 50%;
    color: var(--cream);
    font-family: "Syne", sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
}

.site-footer__bottom {
    border-top: 1px solid var(--border);
    padding: var(--space-md);
    text-align: center;
    color: var(--muted-foreground);
}

.site-footer__bottom p {
    margin: 0 auto;
}

/* ============================================
   ANIMATIONS - subtle reveal and motion safety
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 500ms ease-out, transform 500ms ease-out;
}

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

.info-grid .animate-on-scroll:nth-child(2),
.card-grid .animate-on-scroll:nth-child(2) {
    transition-delay: 80ms;
}

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

:focus-visible {
    outline: 3px solid var(--ring);
    outline-offset: 3px;
}

/* ============================================
   RESPONSIVE ENHANCEMENTS - tablet and desktop
   ============================================ */
@media (min-width: 640px) {
    .card-grid,
    .info-grid,
    .trust-grid,
    .social-proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    body {
        font-size: 17px;
    }

    .section,
    .faq-section {
        padding-block: var(--space-4xl);
    }

    .hero {
        padding-block: 7.5rem;
    }

    .summary-box,
    .callout-box,
    .stat-highlight,
    .review-card,
    .info-card__content {
        padding: var(--space-xl);
    }

    .site-footer__inner {
        grid-template-columns: 1.4fr 0.8fr 0.9fr 0.9fr;
    }
}

@media (min-width: 1024px) {
    .site-header {
        background: rgba(var(--header-bg-rgb), 0.86);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .mobile-menu-toggle {
        display: none;
    }

    .primary-nav,
    .primary-nav.is-open {
        position: static;
        display: flex;
        flex: 1;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: var(--space-xl);
        padding: 0;
        overflow: visible;
        background: transparent;
        border: 0;
    }

    .primary-nav__list {
        flex-direction: row;
        align-items: center;
        gap: var(--space-lg);
        overflow-x: auto;
    }

    .primary-nav__list li {
        flex-shrink: 0;
    }

    .header-actions {
        flex-direction: row;
        align-items: center;
        flex-shrink: 0;
    }

    .hero__inner {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    }

    .info-grid,
    .card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1280px) {
    .container,
    .container-1200,
    .section-container,
    .site-header__inner,
    .site-footer__inner,
    .hero__inner {
        width: min(100% - 3rem, var(--container));
    }
}

/* ============================================
   SITEMAP PAGE - simple vertical page list
   ============================================ */
.sitemap-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-lg);
    max-width: 820px;
    margin-inline: auto;
}

.sitemap-list .info-card__content {
    padding: var(--space-xl);
}

.sitemap-list .info-card__content h2 {
    font-size: clamp(1.25rem, calc(1.4vw + 0.9rem), 1.625rem);
}

.sitemap-list .info-card__content p {
    color: var(--muted-foreground);
}

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

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .animate-on-scroll,
    .animate-on-scroll.is-visible,
    .info-card:hover,
    .btn--primary:hover {
        transform: none;
    }
}
