/*
 * CSS STYLES - GambleZen Casino Design System
 * "Cosmic Zen" aesthetic: dark space backgrounds, purple-turquoise neon accents.
 * Fonts: Unbounded (headings), Manrope (body).
 * Mobile-first methodology with min-width media queries.
 */

:root {
    --background: #f8fafc;
    --foreground: #1e293b;
    --card: #ffffff;
    --card-foreground: #1e293b;
    --popover: #ffffff;
    --popover-foreground: #1e293b;
    --primary: #4f46e5;
    --primary-foreground: #ffffff;
    --secondary: #5eead4;
    --secondary-foreground: #0f172a;
    --muted: #e2e8f0;
    --muted-foreground: #64748b;
    --accent: #db2777;
    --accent-foreground: #ffffff;
    --destructive: #ef4444;
    --destructive-foreground: #000000;
    --border: #cbd5e1;
    --input: #ffffff;
    --ring: #4f46e5;

    --font-heading: "Unbounded", sans-serif;
    --font-body: "Manrope", sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --transition-fast: 150ms ease-out;
    --transition-base: 300ms ease-out;
    --transition-slow: 500ms ease-out;

    --header-height: 64px;
    --max-w: 1200px;
}

.dark {
    --background: #0c0a09;
    --foreground: #e2e8f0;
    --card: #161b22;
    --card-foreground: #e2e8f0;
    --popover: #1e293b;
    --popover-foreground: #e2e8f0;
    --primary: #9367f7;
    --primary-foreground: #ffffff;
    --secondary: #06b6d4;
    --secondary-foreground: #0c0a09;
    --muted: #1e293b;
    --muted-foreground: #94a3b8;
    --accent: #e11d48;
    --accent-foreground: #ffffff;
    --destructive: #ea0d33;
    --destructive-foreground: #ffffff;
    --border: #334155;
    --input: #1e293b;
    --ring: #9367f7;
}

/* ============================================
   RESET & BASE
   Box sizing, typography defaults, overflow safety
   ============================================ */

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

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

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    overflow-x: hidden;
}

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

a {
    word-break: break-all;
}

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

section {
    overflow: clip;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 var(--space-sm);
}

h1 { font-size: clamp(1.75rem, calc(3vw + 1rem), 3rem); }
h2 { font-size: clamp(1.5rem, calc(2.5vw + 0.75rem), 2.25rem); }
h3 { font-size: clamp(1.25rem, calc(2vw + 0.5rem), 1.75rem); }
h4 { font-size: clamp(1.125rem, calc(1.5vw + 0.5rem), 1.375rem); }

p {
    margin: 0 0 var(--space-sm);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

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

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-\[1200px\] {
    max-width: 1200px;
}

.max-w-\[800px\] {
    max-width: 800px;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.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;
}

/* ============================================
   HEADER & NAVIGATION
   .site-header - fixed top bar with brand, nav, toggles
   .main-nav - primary navigation (inline desktop, drawer mobile)
   .mobile-menu-toggle - hamburger button (mobile only)
   .theme-toggle - light/dark switch button
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    height: var(--header-height);
    padding: 0 var(--space-sm);
    background: var(--background);
    border-bottom: 1px solid var(--border);
}

.site-brand {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.125rem;
    color: var(--foreground);
    text-decoration: none;
    flex-shrink: 0;
    z-index: 1001;
}

.site-brand:hover {
    color: var(--primary);
}

.site-brand__text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Theme toggle */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--card);
    color: var(--foreground);
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    z-index: 1001;
}

.theme-toggle:hover {
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.3);
}

.theme-toggle__icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle__icon--moon {
    display: none;
}

html.dark .theme-toggle__icon--sun {
    display: none;
}

html.dark .theme-toggle__icon--moon {
    display: flex;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--card);
    cursor: pointer;
    flex-shrink: 0;
    z-index: 1001;
    padding: 0 10px;
    transition: border-color var(--transition-fast);
}

.mobile-menu-toggle:hover {
    border-color: var(--primary);
}

.mobile-menu-toggle__bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-fast);
}

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

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

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

/* Main navigation */
.main-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    z-index: 999;
    overflow-y: auto;
    padding: var(--space-md);
}

.main-nav.is-open {
    display: block;
}

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

.main-nav__item {
    min-width: 0;
}

.main-nav__link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 var(--space-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast), color var(--transition-fast);
}

.main-nav__link:hover {
    background: var(--muted);
    color: var(--primary);
}

.header-cta {
    border: 1px solid var(--border);
    justify-content: center;
}

.header-cta--primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--primary-foreground);
    border: none;
    justify-content: center;
}

.header-cta--primary:hover {
    opacity: 0.9;
    color: var(--primary-foreground);
}

/* Desktop navigation */
@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }

    .main-nav {
        display: block;
        position: static;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        background: transparent;
        overflow: visible;
        padding: 0;
        z-index: auto;
    }

    .main-nav__list {
        flex-direction: row;
        align-items: center;
        gap: var(--space-xs);
    }

    .main-nav__link {
        min-height: 40px;
        padding: 0 var(--space-sm);
    }

    .header-cta {
        padding: 0 var(--space-md);
    }
}

/* ============================================
   BUTTONS
   .btn - base button styles
   .btn--primary - vivid purple with glow
   .btn--glow - Cosmic Glow Frame effect
   .btn--secondary - turquoise outline
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    min-height: 48px;
    padding: 0 var(--space-lg);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.btn--primary:hover {
    color: var(--primary-foreground);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.btn--glow {
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3), 0 0 40px rgba(139, 92, 246, 0.15);
}

.btn--glow:hover {
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.5), 0 0 60px rgba(139, 92, 246, 0.25);
}

.btn--secondary {
    background: transparent;
    color: var(--secondary);
    border-color: var(--secondary);
}

.btn--secondary:hover {
    background: rgba(6, 182, 212, 0.1);
    color: var(--secondary);
}

/* ============================================
   CTA BANNER
   .cta-banner - full-bleed hero-style call to action
   Deep violet gradient, floating particles, centered content
   ============================================ */

.cta-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px var(--space-sm);
    background: linear-gradient(135deg, #1a0b2e 0%, #0c0a09 100%);
    overflow: clip;
}

@media (min-width: 768px) {
    .cta-banner {
        padding: 80px var(--space-lg);
    }
}

.cta-banner__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-banner__particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary);
    box-shadow: 0 0 12px var(--secondary);
    opacity: 0.6;
}

.cta-banner__particle--1 { top: 15%; left: 10%; animation: float-particle 6s ease-in-out infinite; }
.cta-banner__particle--2 { top: 25%; left: 80%; animation: float-particle 7s ease-in-out infinite 0.5s; background: var(--primary); box-shadow: 0 0 12px var(--primary); }
.cta-banner__particle--3 { top: 60%; left: 15%; animation: float-particle 8s ease-in-out infinite 1s; }
.cta-banner__particle--4 { top: 70%; left: 85%; animation: float-particle 6.5s ease-in-out infinite 0.3s; background: var(--primary); box-shadow: 0 0 12px var(--primary); }
.cta-banner__particle--5 { top: 40%; left: 50%; animation: float-particle 9s ease-in-out infinite 0.7s; }
.cta-banner__particle--6 { top: 80%; left: 45%; animation: float-particle 7.5s ease-in-out infinite 1.2s; background: var(--primary); box-shadow: 0 0 12px var(--primary); }

@keyframes float-particle {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-20px) scale(1.3); opacity: 0.9; }
}

.cta-banner__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.cta-banner__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, calc(3vw + 1rem), 3rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: var(--space-sm);
    line-height: 1.15;
}

.cta-banner__subheading {
    font-size: 1.125rem;
    color: #94a3b8;
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.cta-banner__micro-copy {
    margin-top: var(--space-sm);
    font-size: 0.875rem;
    color: #64748b;
}

/* ============================================
   INFO CARD GRID
   .info-card-grid - responsive grid container
   .info-card - individual card with padding, border, hover effect
   ============================================ */

.info-card-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-md);
    margin: var(--space-md) 0;
}

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

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

.info-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: var(--space-md);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.info-card:hover {
    transform: scale(1.05);
    border-color: var(--accent);
    box-shadow: 0 12px 40px rgba(219, 39, 119, 0.15);
}

.info-card__media {
    margin: calc(-1 * var(--space-md)) calc(-1 * var(--space-md)) var(--space-md);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
}

.info-card__media img {
    width: 100%;
    display: block;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.info-card__decorative {
    margin: calc(-1 * var(--space-md)) calc(-1 * var(--space-md)) var(--space-md);
    padding: var(--space-lg);
    text-align: center;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
}

.info-card__body {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    flex: 1;
}

.info-card__eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
}

.info-card__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--card-foreground);
    margin: 0;
}

.info-card__text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--muted-foreground);
    flex: 1;
}

.info-card__text a {
    color: var(--secondary);
    text-decoration: underline;
}

.info-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    margin-top: var(--space-xs);
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.info-card__link:hover {
    color: var(--accent);
}

/* ============================================
   FAQ ACCORDION
   .faq-section - full-width container with dark background
   .faq-item - individual expandable item (native details/summary)
   ============================================ */

.faq-section {
    padding: var(--space-xl) 0;
    background: var(--background);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--card);
    overflow: hidden;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.faq-item[open] {
    border-color: var(--secondary);
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.15);
}

.faq-item__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    padding: var(--space-md);
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.faq-item__summary::-webkit-details-marker {
    display: none;
}

.faq-item__question {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--card-foreground);
}

.faq-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--secondary);
}

.faq-item__icon-minus {
    display: none;
}

.faq-item[open] .faq-item__icon-plus {
    display: none;
}

.faq-item[open] .faq-item__icon-minus {
    display: flex;
}

.faq-item__answer {
    padding: 0 var(--space-md) var(--space-md);
}

.faq-item__answer p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   STAT BLOCK
   .stat-block - prominent large number with label
   ============================================ */

.stat-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-md);
}

.stat-block__number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, calc(5vw + 1rem), 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-block__label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--muted-foreground);
    margin-top: var(--space-xs);
}

.stat-block__source {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-top: var(--space-xs);
    opacity: 0.8;
}

/* ============================================
   CALLOUT
   .callout - attention-grabbing inline block with accent border
   ============================================ */

.callout {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
    background: var(--card);
    margin: var(--space-md) 0;
}

.callout--warning {
    border-left-color: var(--destructive);
}

.callout--success {
    border-left-color: var(--secondary);
}

.callout--info {
    border-left-color: var(--primary);
}

.callout__icon {
    flex-shrink: 0;
    color: var(--primary);
}

.callout--warning .callout__icon {
    color: var(--destructive);
}

.callout--success .callout__icon {
    color: var(--secondary);
}

.callout__content {
    flex: 1;
    min-width: 0;
}

.callout__title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--card-foreground);
    margin: 0 0 var(--space-xs);
}

.callout__text {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   SUMMARY BOX
   .summary-box - bordered container for key takeaways
   ============================================ */

.summary-box {
    padding: var(--space-md);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--card);
    margin: var(--space-md) 0;
}

.summary-box__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--card-foreground);
    margin: 0 0 var(--space-sm);
}

.summary-box__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.summary-box__item {
    position: relative;
    padding-left: var(--space-md);
    color: var(--muted-foreground);
    line-height: 1.6;
}

.summary-box__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
}

/* ============================================
   PULL QUOTE
   .pull-quote - oversized quote with attribution
   ============================================ */

.pull-quote {
    margin: var(--space-lg) 0;
    padding: var(--space-lg) var(--space-md);
    border-left: 4px solid var(--primary);
    background: var(--card);
    border-radius: var(--radius-md);
}

.pull-quote__text {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, calc(2vw + 0.5rem), 1.75rem);
    font-weight: 500;
    font-style: italic;
    color: var(--card-foreground);
    line-height: 1.4;
    margin: 0 0 var(--space-sm);
}

.pull-quote__attribution {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    font-style: normal;
}

/* ============================================
   TRUST BADGES
   .trust-badges - horizontal row of badge items
   ============================================ */

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-md) 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--card);
    transition: box-shadow var(--transition-fast);
}

.trust-badge:hover {
    box-shadow: 0 0 16px rgba(139, 92, 246, 0.2);
}

.trust-badge__icon {
    color: var(--secondary);
}

.trust-badge__label {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--card-foreground);
}

/* ============================================
   COMPARISON TABLE
   .comparison-table - styled table with highlighted column
   ============================================ */

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.comparison-table__th {
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--card-foreground);
    background: var(--muted);
    border-bottom: 2px solid var(--border);
    white-space: nowrap;
}

.comparison-table__th--recommended {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(6, 182, 212, 0.15));
    color: var(--primary);
}

.comparison-table__td {
    padding: var(--space-sm) var(--space-md);
    color: var(--muted-foreground);
    border-bottom: 1px solid var(--border);
}

.comparison-table__td--recommended {
    background: rgba(139, 92, 246, 0.05);
    color: var(--card-foreground);
    font-weight: 600;
}

/* ============================================
   SOCIAL PROOF
   .social-proof - grid of review cards
   ============================================ */

.social-proof {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-md);
    margin: var(--space-md) 0;
}

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

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

.review-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    padding: var(--space-md);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.review-card__rating {
    display: flex;
    gap: 2px;
    color: #f59e0b;
}

.review-card__text {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.review-card__author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xs);
}

.review-card__name {
    font-weight: 700;
    color: var(--card-foreground);
    font-size: 0.9375rem;
}

.review-card__date {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

/* ============================================
   SECTION HEADER
   .section-header - reusable heading block with eyebrow and subtitle
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header__eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--secondary);
    margin-bottom: var(--space-xs);
}

.section-header__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, calc(2.5vw + 0.75rem), 2.25rem);
    font-weight: 800;
    color: var(--foreground);
    margin: 0 0 var(--space-xs);
}

.section-header__subtitle {
    font-size: 1.0625rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   PAYMENT STRIP
   .payment-strip - horizontal row of payment method badges
   ============================================ */

.payment-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) 0;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.payment-strip__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--card);
    transition: box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.payment-strip__item:hover {
    border-color: var(--secondary);
    box-shadow: 0 0 16px rgba(6, 182, 212, 0.2);
}

.payment-strip__label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--card-foreground);
}

/* ============================================
   FOOTER
   .site-footer - bottom bar with copyright and links
   ============================================ */

.site-footer {
    border-top: 1px solid var(--border);
    background: var(--background);
    padding: var(--space-md) var(--space-sm);
}

.site-footer__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    text-align: center;
}

@media (min-width: 768px) {
    .site-footer__inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.site-footer__copy {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0;
}

.site-footer__nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-md);
}

.site-footer__link {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.site-footer__link:hover {
    color: var(--primary);
}

/* ============================================
   HOMEPAGE
   .home-hero - full-bleed hero with model image and overlay
   .page-section - standard vertical rhythm section wrapper
   ============================================ */

.home-hero {
    position: relative;
    overflow: clip;
    background: linear-gradient(135deg, #1a0b2e 0%, #0c0a09 100%);
}

.home-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.home-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.55;
}

.home-hero__overlay {
    position: relative;
    z-index: 1;
    padding: var(--space-2xl) 0;
    background: linear-gradient(180deg, rgba(12, 10, 9, 0.35) 0%, rgba(12, 10, 9, 0.85) 100%);
}

.home-hero__eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--secondary);
    margin-bottom: var(--space-sm);
}

.home-hero h1 {
    color: #ffffff;
    max-width: 720px;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
}

.home-hero__lead {
    max-width: 620px;
    font-size: 1.125rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.home-hero__code {
    font-size: 0.9375rem;
    color: #94a3b8;
    margin: 0;
}

.home-hero__code strong {
    color: var(--secondary);
    letter-spacing: 0.08em;
}

.page-section {
    padding: var(--space-xl) 0;
}

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

.home-stats {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

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

.home-pay-media {
    text-align: center;
    margin: var(--space-md) 0;
}

.home-pay-media img {
    display: inline-block;
}

/* ============================================
   SITEMAP
   .sitemap-list - clean list of site pages with descriptions
   ============================================ */

.sitemap-intro {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.sitemap-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.sitemap-list__item {
    padding: var(--space-md);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--card);
    transition: border-color var(--transition-fast);
}

.sitemap-list__item:hover {
    border-color: var(--secondary);
}

.sitemap-list__name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 var(--space-xs);
}

.sitemap-list__link {
    color: var(--foreground);
    text-decoration: none;
}

.sitemap-list__link:hover {
    color: var(--primary);
}

.sitemap-list__url {
    font-size: 0.8125rem;
    color: var(--secondary);
    margin: 0 0 var(--space-xs);
    word-break: break-all;
}

.sitemap-list__desc {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   SCROLL ANIMATIONS
   .animate-on-scroll - starts hidden, revealed by IntersectionObserver
   ============================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

/* ============================================
   ACCESSIBILITY
   ============================================ */

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

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

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