/* ============================================
   DESIGN TOKENS - Forest adventure palette
   Deep forest black, emerald neon, outlaw gold
   Single dark theme (no switcher per brief)
   ============================================ */

:root {
    --background: #0b1510;
    --foreground: #ece7db;
    --card: #14251c;
    --card-foreground: #ece7db;
    --popover: #0f1d15;
    --popover-foreground: #ece7db;
    --primary: #229c6f;
    --primary-foreground: #07110c;
    --secondary: #1a2f22;
    --secondary-foreground: #dfe9dd;
    --muted: #243a2c;
    --muted-foreground: #9db3a3;
    --accent: #f0b429;
    --accent-foreground: #0b1510;
    --destructive: #ee3333;
    --destructive-foreground: #fef2f2;
    --border: #2a4634;
    --input: #101f16;
    --ring: #229c6f;

    /* Typography */
    --font-heading: "Bricolage Grotesque", sans-serif;
    --font-body: "IBM Plex Sans", sans-serif;

    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 96px;

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

    /* Shadows */
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 8px 36px rgba(0, 0, 0, 0.5);

    /* Layout */
    --max-content: 1180px;
    --header-height: 64px;
}

/* Same values for .dark - single theme, no overrides needed */
.dark {
    --background: #0b1510;
    --foreground: #ece7db;
    --card: #14251c;
    --card-foreground: #ece7db;
    --popover: #0f1d15;
    --popover-foreground: #ece7db;
    --primary: #229c6f;
    --primary-foreground: #07110c;
    --secondary: #1a2f22;
    --secondary-foreground: #dfe9dd;
    --muted: #243a2c;
    --muted-foreground: #9db3a3;
    --accent: #f0b429;
    --accent-foreground: #0b1510;
    --destructive: #ee3333;
    --destructive-foreground: #fef2f2;
    --border: #2a4634;
    --input: #101f16;
    --ring: #229c6f;
}

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

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

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

body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.58;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Subtle forest texture overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(52, 211, 153, 0.06), transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(52, 211, 153, 0.04), transparent 50%);
}

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

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

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

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

section {
    overflow: clip;
}

/* ============================================
   TYPOGRAPHY SYSTEM
   Bricolage Grotesque headings, IBM Plex Sans body
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin: 0;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.12;
}

h2 {
    font-size: 26px;
    font-weight: 750;
    line-height: 1.15;
}

h3 {
    font-size: 21px;
    font-weight: 700;
    line-height: 1.2;
}

h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

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

.eyebrow {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent);
    margin-bottom: var(--space-xs);
    display: inline-block;
}

@media (min-width: 768px) {
    h1 { font-size: 38px; }
    h2 { font-size: 30px; }
    h3 { font-size: 22px; }
}

@media (min-width: 1024px) {
    h1 { font-size: 46px; }
    h2 { font-size: 34px; }
    h3 { font-size: 24px; }

    body { font-size: 17px; }
}

/* ============================================
   LAYOUT PRIMITIVES
   ============================================ */

.container {
    max-width: var(--max-content);
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
    z-index: 1;
}

.section {
    padding: 56px 0;
    position: relative;
    z-index: 1;
}

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

.full-bleed {
    width: 100%;
    position: relative;
}

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

/* ============================================
   BUTTONS
   Gold primary, emerald secondary
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 220ms ease-out;
    min-height: 44px;
    line-height: 1.2;
    white-space: nowrap;
}

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

.btn-lg {
    padding: 16px 36px;
    font-size: 18px;
    min-height: 52px;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-gold {
    background: var(--accent);
    color: var(--accent-foreground);
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(240, 180, 41, 0.25);
}

.btn-gold:hover {
    background: #ffc835;
    color: var(--accent-foreground);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(240, 180, 41, 0.4);
}

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

.btn-emerald:hover {
    background: var(--primary);
    color: var(--primary-foreground);
    transform: translateY(-2px);
}

/* ============================================
   HEADER
   Sticky dark header with brand, nav, actions
   Note: no backdrop-filter/transform here - it would make
   position:fixed descendants resolve against the header
   instead of the viewport and break the mobile drawer.
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 21, 16, 0.92);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: var(--max-content);
    margin: 0 auto;
    padding: 0 var(--space-md);
    height: var(--header-height);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.site-brand {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--foreground);
    text-decoration: none;
    flex-shrink: 0;
}

.site-brand__mark {
    color: var(--accent);
    flex-shrink: 0;
}

.site-brand__text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.02em;
}

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

/* Desktop navigation */
.primary-nav {
    flex: 1;
    display: none;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--secondary-foreground);
    font-size: 16px;
    font-weight: 500;
    padding: 8px 4px;
    border-bottom: 2px solid transparent;
    transition: all 220ms ease-out;
}

.nav-link:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.nav-actions-mobile {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    padding-top: var(--space-sm);
    margin-top: var(--space-xs);
    border-top: 1px solid var(--border);
}

.header-actions {
    display: none;
    align-items: center;
    gap: var(--space-sm);
    margin-left: auto;
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    margin-left: auto;
    padding: 0;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--foreground);
    border-radius: 2px;
    transition: all 320ms ease-out;
}

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

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

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

/* Mobile drawer */
@media (max-width: 1023px) {
    .primary-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--background);
        display: none;
        flex-direction: column;
        padding: var(--space-lg);
        overflow-y: auto;
        z-index: 999;
    }

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

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-list li {
        min-width: 0;
    }

    .nav-link {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: 12px 0;
        font-size: 18px;
        border-bottom: 1px solid var(--border);
    }
}

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

    .header-actions {
        display: flex;
    }

    .mobile-toggle {
        display: none;
    }

    .nav-actions-mobile {
        display: none;
    }
}

/* ============================================
   FOOTER
   Four-column desktop, stacked mobile
   ============================================ */

.site-footer {
    background: #080f0b;
    border-top: 1px solid var(--border);
    padding: 56px 0 var(--space-lg);
    position: relative;
    z-index: 1;
}

.footer-inner {
    max-width: var(--max-content);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.footer-brand__mark {
    color: var(--accent);
}

.footer-brand__text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
}

.footer-desc {
    color: var(--muted-foreground);
    font-size: 15px;
    line-height: 1.5;
    max-width: 40ch;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

.footer-links a {
    color: var(--secondary-foreground);
    font-size: 15px;
    transition: color 220ms ease-out;
}

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

.footer-links--legal li {
    color: var(--muted-foreground);
    font-size: 14px;
    line-height: 1.5;
}

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.payment-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--muted-foreground);
}

.footer-sitemap-link {
    display: inline-block;
    color: var(--muted-foreground);
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

.footer-bottom {
    margin-top: var(--space-xl);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
}

.footer-copy {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: var(--space-xs);
}

.footer-license {
    font-size: 13px;
    color: var(--muted-foreground);
    line-height: 1.5;
    max-width: none;
}

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

/* ============================================
   INFO CARD GRID COMPONENT
   Moss-green cards with fern borders
   ============================================ */

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

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

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

.info-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 220ms ease-out, border-color 220ms ease-out, box-shadow 220ms ease-out;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

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

.info-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

.info-card__media {
    margin: -20px -20px var(--space-md);
    overflow: hidden;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    aspect-ratio: 5 / 3;
}

@media (min-width: 1024px) {
    .info-card__media {
        margin: -28px -28px var(--space-md);
    }
}

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

.info-card__eyebrow {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent);
    margin-bottom: var(--space-xs);
}

.info-card__title {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--foreground);
}

.info-card__body {
    font-size: 16px;
    color: var(--secondary-foreground);
    line-height: 1.58;
    margin-bottom: var(--space-md);
    flex: 1;
}

.info-card__meta {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: var(--space-sm);
}

.info-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--accent);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: color 220ms ease-out, gap 220ms ease-out;
}

.info-card__link:hover {
    color: #ffc835;
    gap: 12px;
}

.info-card__arrow {
    font-size: 14px;
    transition: transform 220ms ease-out;
}

.info-card__link:hover .info-card__arrow {
    transform: translateX(3px);
}

/* Gold arrow corner notch */
.info-card__notch {
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
    overflow: hidden;
    pointer-events: none;
}

.info-card__notch::before {
    content: '';
    position: absolute;
    top: -12px;
    right: -12px;
    width: 24px;
    height: 24px;
    background: var(--accent);
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 220ms ease-out;
}

.info-card:hover .info-card__notch::before {
    opacity: 0.9;
}

/* ============================================
   FAQ ACCORDION COMPONENT
   Moss cards with gold chevron
   ============================================ */

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: var(--max-content);
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0;
    overflow: hidden;
    transition: border-color 220ms ease-out;
}

.faq-item[open] {
    border-color: var(--primary);
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: 20px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
    color: var(--foreground);
    list-style: none;
    min-height: 44px;
    user-select: none;
}

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

.faq-item__question:hover {
    color: var(--accent);
}

.faq-item__chevron {
    color: var(--accent);
    font-size: 14px;
    flex-shrink: 0;
    transition: transform 220ms ease-out;
}

.faq-item[open] .faq-item__chevron {
    transform: rotate(90deg);
}

.faq-item__answer {
    padding: 0 20px 20px;
}

.faq-item__answer p {
    font-size: 16px;
    color: var(--secondary-foreground);
    line-height: 1.58;
    margin: 0;
}

/* ============================================
   CTA BAND COMPONENT
   Full-bleed emerald-black with gold button
   ============================================ */

.cta-band {
    background: linear-gradient(135deg, #0a1810 0%, #0b1510 50%, #08120c 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 80px 0;
    position: relative;
    overflow: clip;
}

.cta-band__inner {
    max-width: var(--max-content);
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
}

.cta-band__slash {
    position: absolute;
    left: -40px;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
    transform: skewX(-15deg);
    opacity: 0.6;
}

.cta-band__content {
    max-width: 600px;
}

.cta-band__headline {
    font-size: 28px;
    font-weight: 800;
    color: var(--foreground);
    margin-bottom: var(--space-sm);
}

.cta-band__subtext {
    font-size: 17px;
    color: var(--secondary-foreground);
    line-height: 1.58;
    margin-bottom: var(--space-lg);
    max-width: 68ch;
}

.cta-band__button {
    margin-bottom: var(--space-sm);
}

.cta-band__bowstring {
    width: 200px;
    height: 1px;
    background: linear-gradient(to right, var(--primary), transparent);
    margin-bottom: var(--space-sm);
}

.cta-band__micro {
    font-size: 13px;
    color: var(--muted-foreground);
    line-height: 1.4;
}

@media (min-width: 1024px) {
    .cta-band { padding: 104px 0; }
    .cta-band__headline { font-size: 34px; }
}

/* ============================================
   ENGAGEMENT PATTERNS
   ============================================ */

/* Callout / highlight box */
.callout {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin: var(--space-lg) 0;
}

.callout__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

/* Stat highlight */
.stat-highlight {
    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);
}

.stat-highlight__number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.stat-highlight__label {
    font-size: 14px;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Pull quote */
.pull-quote {
    position: relative;
    padding: var(--space-lg) var(--space-lg) var(--space-lg) 56px;
    margin: var(--space-lg) 0;
    border-left: 3px solid var(--accent);
}

.pull-quote::before {
    content: '\201C';
    position: absolute;
    left: 16px;
    top: 8px;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.pull-quote__text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--foreground);
    line-height: 1.3;
    margin: 0 0 var(--space-sm);
}

.pull-quote__author {
    font-size: 14px;
    color: var(--muted-foreground);
}

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

.summary-box__title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: var(--space-xs);
}

.summary-box ul {
    margin: 0;
    padding-left: var(--space-md);
    color: var(--secondary-foreground);
}

.summary-box li {
    margin-bottom: 6px;
    line-height: 1.5;
}

/* 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 {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 10px 18px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-foreground);
}

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

.comparison-table thead {
    background: var(--secondary);
}

.comparison-table th {
    padding: 14px 16px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 1px solid var(--border);
}

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

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

.comparison-table .row-highlight {
    background: rgba(52, 211, 153, 0.05);
}

/* Table wrapper for scroll */
.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    min-width: 0;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

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

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

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }

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

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

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

.arrow-divider {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin: var(--space-lg) 0;
}

.arrow-divider::before,
.arrow-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
}

.arrow-divider__icon {
    color: var(--accent);
    font-size: 20px;
}

/* Star rating */
.star-rating {
    display: inline-flex;
    gap: 2px;
    color: var(--accent);
}

.star-rating .star {
    font-size: 18px;
}

/* Section eyebrow */
.section-eyebrow {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent);
    margin-bottom: var(--space-xs);
    display: block;
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-intro {
    color: var(--secondary-foreground);
    font-size: 17px;
    line-height: 1.58;
    margin-bottom: var(--space-lg);
    max-width: 68ch;
}

/* VIP progress bar */
.vip-progress {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin: var(--space-md) 0;
}

.vip-progress__bar {
    height: 8px;
    background: var(--secondary);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.vip-progress__fill {
    height: 100%;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 4px;
}

.vip-progress__levels {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--muted-foreground);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Hero section base */
.hero {
    position: relative;
    overflow: clip;
    padding: 56px 0;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(52, 211, 153, 0.08), transparent 60%),
        linear-gradient(180deg, #0a1810 0%, var(--background) 100%);
}

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

.hero__inner {
    max-width: var(--max-content);
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
    z-index: 2;
}

.hero__content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero__title {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: var(--space-md);
    color: var(--foreground);
}

@media (min-width: 768px) {
    .hero__title { font-size: 38px; }
}

@media (min-width: 1024px) {
    .hero__title { font-size: 46px; }
}

.hero__subtitle {
    font-size: 17px;
    color: var(--secondary-foreground);
    line-height: 1.58;
    margin-bottom: var(--space-lg);
    max-width: 68ch;
}

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

.hero__model {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    max-width: 600px;
    z-index: 1;
    opacity: 0.9;
}

.hero__model img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 1023px) {
    .hero__model {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 400px;
        margin: var(--space-lg) auto 0;
        opacity: 0.7;
    }
}

/* Arrow slash divider */
.arrow-slash-divider {
    display: flex;
    align-items: center;
    margin: var(--space-lg) 0;
}

.arrow-slash-divider__line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, var(--accent), transparent);
}

.arrow-slash-divider__line--right {
    background: linear-gradient(to left, var(--accent), transparent);
}

.arrow-slash-divider__icon {
    color: var(--accent);
    font-size: 24px;
    padding: 0 var(--space-sm);
}

/* Emerald-black band */
.emerald-band {
    background: linear-gradient(135deg, #0a1810 0%, #0d1c12 50%, #08120c 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 56px 0;
    position: relative;
    overflow: clip;
}

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

.emerald-band--cushion {
    padding: 80px 0;
}

@media (min-width: 1024px) {
    .emerald-band--cushion { padding: 120px 0; }
}

/* Two-column layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: start;
}

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

/* Step flow */
.step-flow {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

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

.step-flow__item {
    flex: 1;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    position: relative;
}

.step-flow__num {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: var(--space-xs);
}

.step-flow__connector {
    display: none;
    align-items: center;
    color: var(--accent);
    font-size: 24px;
    padding: 0 var(--space-xs);
}

@media (min-width: 768px) {
    .step-flow__connector { display: flex; }
}

/* Payment strip */
.payment-strip {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    align-items: center;
    padding: var(--space-md) 0;
}

.payment-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 10px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--muted-foreground);
    filter: grayscale(1);
    transition: filter 220ms ease-out, border-color 220ms ease-out;
}

.payment-logo:hover {
    filter: grayscale(0);
    border-color: var(--primary);
}

/* Winner / testimonial cards */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

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

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

.testimonial-card__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card__quote {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.3;
    margin: 0;
}

.testimonial-card__body {
    font-size: 15px;
    color: var(--secondary-foreground);
    line-height: 1.5;
    margin: 0;
}

.testimonial-card__author {
    font-size: 14px;
    color: var(--muted-foreground);
}

/* Content article styling */
.article-content {
    max-width: 68ch;
}

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

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

.article-content p {
    margin-bottom: var(--space-sm);
}

.article-content ul, .article-content ol {
    padding-left: var(--space-md);
    margin-bottom: var(--space-sm);
}

.article-content li {
    margin-bottom: var(--space-xs);
    line-height: 1.58;
}

/* Inline link in content - gold accent meets WCAG AA contrast
   on the dark forest background (--primary emerald did not). */
.article-content a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: var(--accent);
}

.article-content a:hover {
    color: #ffc835;
}

/* Sitemap page styling */
.sitemap-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: var(--max-content);
}

.sitemap-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: border-color 220ms ease-out, transform 220ms ease-out;
}

@media (min-width: 1024px) {
    .sitemap-card { padding: 28px; }
}

.sitemap-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.sitemap-card__title {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.sitemap-card__title a {
    color: var(--foreground);
}

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

.sitemap-card__desc {
    font-size: 16px;
    color: var(--secondary-foreground);
    line-height: 1.58;
    margin: 0;
}

/* VIP tier cards */
.vip-tier-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
}

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

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

.vip-tier-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    transition: transform 220ms ease-out, border-color 220ms ease-out;
    position: relative;
    overflow: hidden;
}

.vip-tier-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}

.vip-tier-card__name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: var(--space-xs);
}

.vip-tier-card__cashback {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: var(--space-xs);
}

.vip-tier-card__perks {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* Game tile thumbnail grid */
.game-tile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

@media (min-width: 1024px) {
    .game-tile-grid { grid-template-columns: repeat(2, 1fr); }
}

.game-tile {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid var(--border);
    background: var(--card);
}

.game-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Horizontal scroll chips */
.chip-scroll {
    display: flex;
    gap: var(--space-xs);
    overflow-x: auto;
    padding: var(--space-xs) 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.chip-scroll::-webkit-scrollbar {
    height: 4px;
}

.chip-scroll::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 2px;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-foreground);
    white-space: nowrap;
    flex-shrink: 0;
    min-height: 44px;
    transition: border-color 220ms ease-out, color 220ms ease-out;
}

.filter-chip:hover,
.filter-chip.is-active {
    border-color: var(--accent);
    color: var(--accent);
}

/* Badge inline */
.inline-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
}

/* Coin cluster decorative */
.coin-cluster {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 60px;
    z-index: 3;
    pointer-events: none;
}

/* License badge */
.license-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 10px 18px;
    background: var(--card);
    border: 1px solid var(--accent);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
}

/* 18+ badge */
.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid var(--destructive);
    border-radius: 50%;
    font-size: 16px;
    font-weight: 800;
    color: var(--destructive);
}

/* ============================================
   HOMEPAGE SPECIFICS
   ============================================ */

.hero__highlight {
    color: var(--accent);
}

.hero__stats {
    margin-top: var(--space-lg);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

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

.stats-row .stat-highlight__number {
    font-size: 28px;
}

@media (min-width: 1024px) {
    .stats-row .stat-highlight__number { font-size: 34px; }
}

.offer-micro {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin-top: var(--space-md);
    max-width: 68ch;
}

/* VIP teaser layout */
.vip-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .vip-layout { grid-template-columns: 1.15fr 0.85fr; }
}

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

.vip-perks li {
    position: relative;
    padding-left: 28px;
    color: var(--secondary-foreground);
    line-height: 1.5;
}

.vip-perks li::before {
    content: '\27A4';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-size: 15px;
}

.vip-image img {
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    display: block;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

/* Badge row */
.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    align-items: center;
    margin-top: var(--space-md);
}

/* CTA band wrapper with overlapping coin cluster */
.cta-band-wrap {
    position: relative;
}

.cta-band-wrap__coins {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: auto;
    z-index: 5;
    pointer-events: none;
}

@media (min-width: 1024px) {
    .cta-band-wrap__coins { width: 260px; }
}

/* ============================================
   BONUS PAGE SPECIFICS
   ============================================ */

.cashback-ladder {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-sm);
}

.cashback-ladder__row {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.cashback-ladder__label {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 14px;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.cashback-ladder__label strong {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--accent);
}

.vip-tier-card__crest {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-xs);
}

.vip-tier-card__crest img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.step-flow__item h3 {
    font-size: 18px;
    margin-bottom: var(--space-xs);
}

.step-flow__item > img {
    display: block;
    width: 100%;
    max-width: 120px;
    height: auto;
    margin: 0 auto var(--space-sm);
    object-fit: contain;
}

.trust-badge img,
.license-badge img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.step-flow__item p:last-child {
    margin-bottom: 0;
    font-size: 15px;
    color: var(--secondary-foreground);
}

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