/* ============================================
   DESIGN TOKENS - WildRobin Casino
   Dark forest adventure palette with neon green & gold accents.
   No theme switcher - single dark theme applied via body.dark.
   ============================================ */

:root {
    --background: #0A0F0A;
    --foreground: #FAFAF9;
    --card: #112014;
    --card-foreground: #FAFAF9;
    --popover: #0A0F0A;
    --popover-foreground: #FAFAF9;
    --primary: #39FF14;
    --primary-foreground: #0A0F0A;
    --secondary: #FFD700;
    --secondary-foreground: #0A0F0A;
    --muted: #2A3B2E;
    --muted-foreground: #c0ccc0;
    --accent: #1A2B1D;
    --accent-foreground: #FAFAF9;
    --destructive: #e60000;
    --destructive-foreground: #FAFAF9;
    --border: #2A3B2E;
    --input: #112014;
    --ring: #39FF14;

    /* Typography */
    --font-heading: "Cinzel Decorative", "Times New Roman", serif;
    --font-body: "DM Sans", system-ui, -apple-system, sans-serif;

    /* Spacing scale (8px base) */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 4rem;

    /* Radii */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    /* Transitions */
    --transition-fast: 200ms ease-out;
    --transition-normal: 300ms ease-out;

    /* Layout */
    --max-width: 1200px;
    --header-height: 64px;

    /* Shadows */
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 20px rgba(57, 255, 20, 0.3);
    --shadow-glow-gold: 0 0 24px rgba(255, 215, 0, 0.3);
}

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

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

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

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

/* ============================================
   TYPOGRAPHY SYSTEM
   Cinzel Decorative for headings, DM Sans for body.
   H1: 48px desktop / 28px mobile
   H2: 36px desktop / 24px mobile
   H3: 24px desktop / 20px mobile
   ============================================ */

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

h1 {
    font-size: clamp(1.75rem, 5vw + 0.5rem, 3rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
    font-weight: 700;
}

p {
    margin-bottom: 1.5rem;
    max-width: 80ch;
}

/* ============================================
   UTILITY & LAYOUT
   ============================================ */

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
}

.section {
    padding: var(--space-md) 0;
    overflow: clip;
}

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

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

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

.text-gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: var(--space-xs) var(--space-sm);
    z-index: 2000;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
}

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

/* ============================================
   BUTTONS
   .btn base, --primary (neon green), --ghost (outline),
   --lg (large), --sm (small)
   ============================================ */

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

.btn:active {
    transform: scale(0.97);
}

.btn--primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.btn--primary:hover {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    border-color: var(--secondary);
    box-shadow: var(--shadow-glow-gold);
    transform: translateY(-2px);
}

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

.btn--ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.btn--lg {
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    min-height: 52px;
}

.btn--sm {
    font-size: 0.875rem;
    padding: 0.5rem 1.25rem;
    min-height: 40px;
}

/* ============================================
   HEADER & NAVIGATION
   Sticky header with brand, nav, and mobile drawer.
   ============================================ */

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

.site-header__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--space-sm);
}

/* Brand */
.site-brand {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--foreground);
    text-decoration: none;
    flex-shrink: 0;
}

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

.site-brand__mark {
    color: var(--primary);
    font-size: 1.1em;
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.5);
}

.site-brand__accent {
    color: var(--secondary);
    margin-left: 0.15em;
}

/* Primary nav - desktop inline, mobile drawer */
.primary-nav {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.primary-nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    list-style: none;
}

.primary-nav__link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--foreground);
    padding: var(--space-xs) 0;
    position: relative;
}

.primary-nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-fast);
}

.primary-nav__link:hover::after,
.primary-nav__link:focus::after {
    width: 100%;
}

.primary-nav__actions {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

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

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--foreground);
    border-radius: 2px;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
    margin: 0 auto;
}

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

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

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

/* Mobile nav drawer */
@media (max-width: 1023px) {
    .mobile-toggle {
        display: flex;
    }

    .primary-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--background);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: var(--space-sm);
        overflow-y: auto;
        z-index: 999;
        transform: translateX(100%);
        transition: transform var(--transition-normal);
        visibility: hidden;
    }

    .primary-nav.is-open {
        transform: translateX(0);
        visibility: visible;
    }

    .primary-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    .primary-nav__list li {
        border-bottom: 1px solid var(--border);
    }

    .primary-nav__link {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: var(--space-sm) 0;
        font-size: 1.1rem;
    }

    .primary-nav__actions {
        flex-direction: column;
        gap: var(--space-sm);
        margin-top: var(--space-md);
        width: 100%;
    }

    .primary-nav__actions .btn {
        width: 100%;
    }
}

@media (min-width: 1024px) {
    .primary-nav {
        visibility: visible;
    }
}

/* ============================================
   FOOTER
   Four-column layout on desktop, stacked on mobile.
   ============================================ */

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

.site-footer__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-sm);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

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

@media (min-width: 1024px) {
    .site-footer__inner {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

.site-footer__col {
    min-width: 0;
}

.site-brand--footer {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
}

.site-footer__tagline {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    max-width: 40ch;
}

.site-footer__heading {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--secondary);
    margin-bottom: var(--space-sm);
}

.site-footer__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.site-footer__list a {
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

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

.site-footer__payments {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.site-footer__payments li {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.8rem;
    color: var(--muted-foreground);
}

.site-footer__license {
    font-size: 0.85rem;
    color: var(--muted-foreground);
    margin-bottom: var(--space-sm);
}

.site-footer__age {
    font-size: 0.85rem;
    color: var(--muted-foreground);
}

.age-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--secondary-foreground);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    margin-right: var(--space-xs);
}

.site-footer__bottom {
    max-width: var(--max-width);
    margin: var(--space-md) auto 0;
    padding: var(--space-sm);
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.8rem;
    color: var(--muted-foreground);
}

/* Mobile footer links: ensure 44px tap targets */
@media (max-width: 767px) {
    .site-footer__list a {
        display: flex;
        align-items: center;
        min-height: 44px;
        padding: var(--space-xs) 0;
    }
}

/* ============================================
   PROMO CARD COMPONENT
   Dark mossy-green card with neon-green left accent border.
   Hover: 1.05 scale + glow shadow.
   ============================================ */

.promo-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    will-change: transform;
    min-width: 0;
    display: flex;
}

.promo-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.promo-card__inner {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

@media (max-width: 767px) {
    .promo-card__inner {
        padding: var(--space-sm);
    }
}

.promo-card__image {
    margin: calc(var(--space-md) * -1) calc(var(--space-md) * -1) var(--space-sm);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

@media (max-width: 767px) {
    .promo-card__image {
        margin: calc(var(--space-sm) * -1) calc(var(--space-sm) * -1) var(--space-sm);
    }
}

.promo-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-card__icon {
    font-size: 2rem;
    display: block;
    margin-bottom: var(--space-xs);
}

.promo-card__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--foreground);
    margin-bottom: var(--space-xs);
}

.promo-card__desc {
    color: var(--muted-foreground);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--space-sm);
    flex: 1;
}

/* ============================================
   STAT BLOCK COMPONENT
   Horizontal row of stats with gold gradient numbers.
   ============================================ */

.stat-row {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

@media (min-width: 768px) {
    .stat-row {
        flex-direction: row;
        align-items: stretch;
    }
}

.stat-item {
    flex: 1;
    padding: var(--space-md);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
    .stat-item {
        border-bottom: none;
        border-right: 1px solid var(--primary);
    }

    .stat-item:last-child {
        border-right: none;
    }
}

.stat-item__number {
    display: block;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(2rem, 4vw + 0.5rem, 3rem);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: var(--space-xs);
}

.stat-item__label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ============================================
   CTA BANNER COMPONENT
   Full-bleed section with dark background and glowing arrow accent.
   ============================================ */

.cta-banner {
    position: relative;
    background: linear-gradient(135deg, #0A0F0A 0%, #112014 50%, #0A0F0A 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: var(--space-lg) var(--space-sm);
    text-align: center;
    overflow: clip;
}

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

.cta-banner__arrow {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    opacity: 0.15;
    pointer-events: none;
    max-width: 200px;
}

.cta-banner__arrow img {
    width: 100%;
    height: auto;
}

.cta-banner__arrow--css {
    width: 300px;
    height: 4px;
    background: var(--primary);
    transform: translateY(-50%) rotate(-25deg);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.3;
        box-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
    }
    50% {
        opacity: 0.6;
        box-shadow: 0 0 30px rgba(57, 255, 20, 0.6);
    }
}

.cta-banner__inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-banner__headline {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
    color: var(--foreground);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
}

.cta-banner__subtext {
    color: var(--muted-foreground);
    font-size: 1.05rem;
    margin-bottom: var(--space-md);
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner__micro {
    margin-top: var(--space-sm);
    font-size: 0.8rem;
    color: var(--muted-foreground);
}

/* ============================================
   FAQ ACCORDION COMPONENT
   Collapsible Q&A pairs using native details/summary.
   ============================================ */

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion__item {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-xs);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq-accordion__item[open] {
    border-left-color: var(--primary);
    box-shadow: 0 0 12px rgba(57, 255, 20, 0.15);
}

.faq-accordion__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    padding: var(--space-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--foreground);
    cursor: pointer;
    list-style: none;
    user-select: none;
}

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

.faq-accordion__question:hover {
    color: var(--primary);
}

.faq-accordion__chevron {
    flex-shrink: 0;
    font-size: 0.75rem;
    color: var(--primary);
    transition: transform var(--transition-normal);
}

.faq-accordion__item[open] .faq-accordion__chevron {
    transform: rotate(180deg);
}

.faq-accordion__answer {
    padding: 0 var(--space-sm) var(--space-sm);
    color: var(--muted-foreground);
    font-size: 1rem;
    line-height: 1.6;
}

.faq-accordion__answer p {
    margin-bottom: 0;
}

/* ============================================
   ENGAGEMENT & CRO PATTERNS
   Reusable UI patterns for all pages.
   ============================================ */

/* Summary / TL;DR Box */
.summary-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--secondary);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin: var(--space-md) 0;
}

.summary-box__title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--secondary);
    margin-bottom: var(--space-xs);
}

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

/* Callout / Highlight Box */
.callout {
    background: var(--accent);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin: var(--space-md) 0;
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}

.callout__icon {
    flex-shrink: 0;
    font-size: 1.5rem;
    color: var(--primary);
}

.callout__body {
    min-width: 0;
}

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

.callout--warning {
    border-left: 3px solid var(--destructive);
}

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

.callout--tip {
    border-left: 3px solid var(--primary);
}

/* Pull Quote */
.pull-quote {
    border-left: 4px solid var(--primary);
    padding: var(--space-sm) var(--space-md);
    margin: var(--space-md) 0;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    line-height: 1.4;
    color: var(--foreground);
    font-style: italic;
}

.pull-quote cite {
    display: block;
    margin-top: var(--space-xs);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-style: normal;
    color: var(--muted-foreground);
}

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

.trust-badge {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.85rem;
    color: var(--muted-foreground);
    font-weight: 600;
    text-align: center;
    min-width: 0;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: var(--space-sm);
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.comparison-table th {
    background: var(--accent);
    color: var(--secondary);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .col-highlight {
    background: rgba(57, 255, 20, 0.05);
}

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

/* ============================================
   GRID LAYOUTS
   ============================================ */

.grid {
    display: grid;
    gap: var(--space-sm);
    grid-template-columns: 1fr;
    align-items: stretch;
}

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

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

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

/* ============================================
   HERO SECTION
   Full-bleed hero with dark forest background and model.
   ============================================ */

.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: clip;
    background: linear-gradient(135deg, #050805 0%, #0A0F0A 50%, #112014 100%);
}

@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;
    opacity: 0.35;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--background) 0%, transparent 60%);
}

.hero__model {
    position: absolute;
    right: 0;
    bottom: 0;
    max-height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero__model img {
    max-height: 500px;
    width: auto;
    height: auto;
    object-fit: contain;
}

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

.hero__content {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-lg) var(--space-sm);
    width: 100%;
}

@media (min-width: 768px) {
    .hero__content {
        max-width: 60%;
    }
}

.hero__title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(1.75rem, 5vw + 0.5rem, 3rem);
    color: var(--foreground);
    margin-bottom: var(--space-sm);
    line-height: 1.15;
}

.hero__subtitle {
    font-size: 1.1rem;
    color: var(--muted-foreground);
    margin-bottom: var(--space-md);
    max-width: 50ch;
}

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

/* Diagonal arrow accent */
.hero__arrow {
    position: absolute;
    top: 30%;
    right: 10%;
    width: 200px;
    height: 3px;
    background: var(--primary);
    transform: rotate(-20deg);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.4);
    animation: pulse-glow 2.5s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

/* ============================================
   SECTION HEADINGS
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: var(--space-md);
}

.section-header h2 {
    margin-bottom: var(--space-xs);
}

.section-header p {
    color: var(--muted-foreground);
    max-width: 60ch;
    margin: 0 auto;
}

/* ============================================
   ANIMATIONS - Scroll reveal
   Elements with .animate-on-scroll start hidden,
   revealed by IntersectionObserver adding .is-visible.
   ============================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

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

/* ============================================
   CONTENT TYPOGRAPHY - Article body
   ============================================ */

.article-body {
    max-width: 800px;
    margin: 0 auto;
}

.article-body h2 {
    margin-top: var(--space-md);
    margin-bottom: var(--space-sm);
}

.article-body h3 {
    margin-top: var(--space-md);
    margin-bottom: var(--space-xs);
}

.article-body p {
    margin-bottom: 1.5rem;
    color: var(--muted-foreground);
}

.article-body p a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.article-body p a:hover {
    color: var(--secondary);
}

.article-body ul,
.article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--muted-foreground);
}

.article-body li {
    margin-bottom: var(--space-xs);
}

/* ============================================
   PAYMENT METHODS ROW
   ============================================ */

.payment-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    align-items: stretch;
}

.payment-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    text-align: center;
    min-width: 120px;
    flex: 1 1 120px;
    max-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.payment-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: var(--space-xs);
}

.payment-item__name {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--foreground);
    margin-bottom: 4px;
}

.payment-item__desc {
    display: block;
    font-size: 0.8rem;
    color: var(--muted-foreground);
}

/* Mobile: use a 2-column grid so the last item spans full width
   instead of sitting alone and centered. */
@media (max-width: 767px) {
    .payment-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .payment-item {
        max-width: none;
    }

    .payment-item:last-child {
        grid-column: 1 / -1;
    }
}

/* ============================================
   IMAGE UTILITY
   ============================================ */

.inline-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: var(--space-md) 0;
}

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

/* ============================================
   SITEMAP LIST
   Vertical list of page entries with descriptions.
   ============================================ */

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

.sitemap-list__item {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    transition: box-shadow var(--transition-fast);
}

.sitemap-list__item:hover {
    box-shadow: var(--shadow-glow);
}

.sitemap-list__item h3 {
    margin-bottom: var(--space-xs);
}

.sitemap-list__item h3 a {
    color: var(--foreground);
    text-decoration: none;
}

.sitemap-list__item h3 a:hover {
    color: var(--primary);
}

.sitemap-list__item p {
    color: var(--muted-foreground);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 767px) {
    .hero__model {
        opacity: 0.4;
    }

    .hero__arrow {
        display: none;
    }
}

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

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