/* ============================================
   1GO CASINO - Racing Glamour Design System
   ============================================ */

:root {
    /* Dark theme is the only theme - tokens duplicated for safety */
    --background: #0a0a0c;
    --background-soft: #111114;
    --foreground: #f5f5f0;
    --card: #16161a;
    --card-elevated: #1c1c22;
    --popover: #16161a;
    --popover-foreground: #f5f5f0;
    --primary: #e10600;
    --primary-bright: #ff1f2d;
    --primary-foreground: #ffffff;
    --secondary: #1f1f24;
    --secondary-foreground: #f5f5f0;
    --muted: #26262c;
    --muted-foreground: #b8b8c0;
    --accent: #e4b53d;
    --accent-foreground: #0a0a0c;
    --destructive: #f43f5e;
    --destructive-foreground: #000000;
    --border: #2a2a30;
    --border-strong: #3a3a42;
    --input: #1f1f24;
    --ring: #ff1f2d;

    /* Spacing scale (8px base) */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 96px;
    --space-4xl: 128px;

    --container: 1240px;
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-glow: 0 0 24px rgba(225, 6, 0, 0.45);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5);

    --header-h: 72px;
    --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
    --dur: 220ms;
}

/* ============================================
   RESET & OVERFLOW SAFETY
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

img, video, iframe, svg { max-width: 100%; height: auto; display: block; }
[class*="grid"] > *, [class*="flex"] > * { min-width: 0; }
pre, code { max-width: 100%; overflow-x: auto; }
.table-wrapper { max-width: 100%; overflow-x: auto; }
p, li, td, th { overflow-wrap: break-word; }
input, textarea, select { max-width: 100%; box-sizing: border-box; }
section { overflow: clip; }

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.skip-link {
    position: absolute; top: -100px; left: 16px; background: var(--primary);
    color: var(--primary-foreground); padding: 12px 18px; z-index: 10000;
    border-radius: var(--radius-sm); font-weight: 700; text-decoration: none;
}
.skip-link:focus { top: 16px; }

/* ============================================
   BASE TYPOGRAPHY
   Racing Sans One for display, Inter Tight for body
   ============================================ */
body {
    font-family: "Inter Tight", system-ui, -apple-system, Segoe UI, sans-serif;
    background: var(--background);
    color: var(--foreground);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background-image:
        radial-gradient(ellipse at top right, rgba(225, 6, 0, 0.08), transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(228, 181, 61, 0.04), transparent 60%);
    background-attachment: fixed;
}

h1, h2, h3, h4 {
    font-family: "Racing Sans One", "Inter Tight", sans-serif;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin: 0 0 var(--space-sm);
    color: var(--foreground);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2.125rem); }
h4 { font-size: clamp(1.15rem, 2vw, 1.5rem); }

p { margin: 0 0 var(--space-sm); color: var(--foreground); }
a { color: var(--primary-bright); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: #ffffff; }

.eyebrow {
    display: inline-block;
    font-family: "Inter Tight", sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--primary-bright);
    margin-bottom: var(--space-sm);
}
.eyebrow-gold { color: var(--accent); }

.text-accent {
    color: var(--primary-bright);
    text-shadow: 0 0 24px rgba(255, 31, 45, 0.45);
}

.section-heading {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: var(--space-lg);
    text-align: center;
}

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */
.container, .page-section {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}
.page-section {
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
}
@media (min-width: 1024px) {
    .page-section { padding-top: var(--space-4xl); padding-bottom: var(--space-4xl); }
}

.section-alt { background: var(--background-soft); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    font-family: "Inter Tight", sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
    text-decoration: none;
    min-height: 44px;
    white-space: nowrap;
}
.btn-lg { padding: 16px 32px; font-size: 16px; min-height: 52px; }
.btn-sm { padding: 8px 16px; font-size: 13px; min-height: 38px; }

.btn-primary {
    background: linear-gradient(135deg, #ff1f2d 0%, #c50410 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(225, 6, 0, 0.35);
}
.btn-primary:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 28px rgba(255, 31, 45, 0.6);
    color: #ffffff;
}

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

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 12, 0.92);
    border-bottom: 1px solid var(--border);
}
@media (min-width: 769px) {
    .site-header { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
}

.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 12px var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    min-height: var(--header-h);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--foreground);
}
.brand-mark {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 38px; height: 38px;
    background: linear-gradient(135deg, #ff1f2d, #b80008);
    color: #fff;
    font-family: "Racing Sans One", sans-serif;
    font-size: 22px;
    border-radius: 8px;
    box-shadow: 0 0 16px rgba(255, 31, 45, 0.5);
}
.brand-mark-dot {
    position: absolute; right: 4px; bottom: 4px;
    width: 6px; height: 6px;
    background: repeating-conic-gradient(#fff 0% 25%, #000 0% 50%) 50% / 6px 6px;
    border-radius: 1px;
}
.brand-text {
    font-family: "Racing Sans One", sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.brand-text-accent { color: var(--primary-bright); }

.primary-nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex: 1;
    justify-content: flex-end;
}
.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    list-style: none;
    margin: 0; padding: 0;
}
.nav-link {
    color: var(--foreground);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 8px 4px;
    position: relative;
    transition: color var(--dur) var(--ease);
}
.nav-link::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--primary-bright);
    transition: width var(--dur) var(--ease);
}
.nav-link:hover { color: var(--primary-bright); }
.nav-link:hover::after { width: 100%; }

.nav-auth {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    width: 44px; height: 44px;
    padding: 0;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 1001;
}
.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--foreground);
    transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
    .mobile-menu-toggle { display: flex; }
    .primary-nav {
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0; bottom: 0;
        background: var(--background);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: var(--space-lg) var(--space-md);
        gap: var(--space-md);
        overflow-y: auto;
        z-index: 999;
        display: none;
    }
    .primary-nav.is-open { display: flex; }
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        width: 100%;
    }
    .nav-link {
        display: flex;
        align-items: center;
        min-height: 52px;
        padding: 12px 16px;
        border-bottom: 1px solid var(--border);
        font-size: 17px;
    }
    .nav-auth {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-top: var(--space-md);
    }
    .nav-auth .btn { width: 100%; }
}

/* ============================================
   HERO BANNER
   ============================================ */
.hero {
    position: relative;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(225, 6, 0, 0.25), transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(228, 181, 61, 0.06), transparent 60%),
        linear-gradient(180deg, #0a0a0c 0%, #131318 100%);
    padding: var(--space-3xl) 0 var(--space-3xl);
    overflow: clip;
}
@media (min-width: 1024px) {
    .hero { padding: var(--space-4xl) 0; }
}

.hero-flag {
    position: absolute;
    top: -10%; right: -15%;
    width: 70%;
    height: 130%;
    background:
        repeating-conic-gradient(#ffffff 0deg 90deg, #0a0a0c 90deg 180deg) 0 0 / 48px 48px;
    transform: rotate(-22deg);
    opacity: 0.08;
    pointer-events: none;
    mask-image: linear-gradient(135deg, transparent 0%, #000 35%, #000 65%, transparent 100%);
    -webkit-mask-image: linear-gradient(135deg, transparent 0%, #000 35%, #000 65%, transparent 100%);
}

.hero-confetti {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-confetti span {
    position: absolute;
    width: 10px; height: 10px;
    background: var(--primary-bright);
    border-radius: 2px;
    opacity: 0.6;
    animation: confetti 8s linear infinite;
}
.hero-confetti span:nth-child(1) { left: 8%; top: -10px; animation-delay: 0s; background: var(--primary-bright); }
.hero-confetti span:nth-child(2) { left: 22%; top: -10px; animation-delay: 1.2s; background: #ffffff; }
.hero-confetti span:nth-child(3) { left: 38%; top: -10px; animation-delay: 2.4s; background: var(--accent); }
.hero-confetti span:nth-child(4) { left: 55%; top: -10px; animation-delay: 0.6s; background: var(--primary-bright); }
.hero-confetti span:nth-child(5) { left: 72%; top: -10px; animation-delay: 3.2s; background: #ffffff; }
.hero-confetti span:nth-child(6) { left: 88%; top: -10px; animation-delay: 4.4s; background: var(--accent); }

@keyframes confetti {
    0% { transform: translateY(0) rotate(0); opacity: 0; }
    10% { opacity: 0.8; }
    100% { transform: translateY(120vh) rotate(720deg); opacity: 0; }
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}
@media (min-width: 900px) {
    .hero-inner {
        grid-template-columns: 1.1fr 1fr;
        gap: var(--space-2xl);
    }
}

.hero-content { order: 2; }
.hero-visual { order: 1; }
@media (min-width: 900px) {
    .hero-content { order: 1; }
    .hero-visual { order: 2; }
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    margin: 0 0 var(--space-md);
    line-height: 0.95;
}
.hero-subtitle {
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    color: var(--muted-foreground);
    margin-bottom: var(--space-lg);
    max-width: 56ch;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: var(--space-md);
}
.hero-trust {
    font-size: 13px;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}
.hero-visual {
    position: relative;
}
.hero-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(225, 6, 0, 0.2);
    animation: floaty 9s ease-in-out infinite;
}
@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ============================================
   INFO CARD
   ============================================ */
.info-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-md);
}
@media (min-width: 640px) { .info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .info-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.info-grid.cols-4 { grid-template-columns: minmax(0, 1fr); }
@media (min-width: 640px) { .info-grid.cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .info-grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.info-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-md);
    min-width: 0;
    overflow: hidden;
    transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.info-card::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--primary-bright), transparent);
    box-shadow: 0 0 12px var(--primary-bright);
    opacity: 0.7;
    transition: opacity var(--dur) var(--ease);
}
.info-card:hover {
    transform: rotate(-1deg) translateY(-4px);
    border-color: var(--primary-bright);
    box-shadow: var(--shadow-card);
}
.info-card:hover::before { opacity: 1; }

.info-card-highlight {
    background: linear-gradient(160deg, rgba(225, 6, 0, 0.12), var(--card) 60%);
    border-color: rgba(255, 31, 45, 0.4);
}
.info-card-media {
    margin: calc(var(--space-md) * -1) calc(var(--space-md) * -1) var(--space-md);
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
    aspect-ratio: 16 / 10;
    background: var(--background-soft);
}
.info-card-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 600ms var(--ease);
}
.info-card:hover .info-card-media img { transform: scale(1.06); }

.info-card-number {
    font-family: "Racing Sans One", sans-serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    background: linear-gradient(135deg, #ff1f2d, #c50410);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: var(--space-sm);
}
.info-card-title { margin: 0 0 10px; font-size: clamp(1.2rem, 2vw, 1.5rem); }
.info-card-text { color: var(--muted-foreground); margin: 0 0 var(--space-sm); font-size: 15px; }
.info-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary-bright);
}
.info-card-link:hover { color: #ffffff; }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section {
    max-width: 880px;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-md);
}
.faq-list {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: 0; }
.faq-item[open] { background: rgba(225, 6, 0, 0.06); }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md);
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    color: var(--foreground);
    list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-icon {
    flex-shrink: 0;
    position: relative;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--primary);
    display: inline-block;
}
.faq-icon::before, .faq-icon::after {
    content: "";
    position: absolute;
    background: #fff;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
}
.faq-icon::before { width: 10px; height: 2px; }
.faq-icon::after { width: 2px; height: 10px; transition: transform var(--dur) var(--ease); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-answer {
    padding: 0 var(--space-md) var(--space-md);
    border-left: 2px solid var(--primary);
    margin-left: var(--space-md);
    color: var(--muted-foreground);
    animation: fadeIn 220ms var(--ease);
}
.faq-answer p { color: var(--muted-foreground); margin: 0; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    padding: var(--space-3xl) var(--space-md);
    text-align: center;
    background: linear-gradient(180deg, #0a0a0c, #15050a, #0a0a0c);
    overflow: clip;
}
@media (min-width: 1024px) { .cta-banner { padding: var(--space-4xl) var(--space-md); } }
.cta-flag-pattern {
    position: absolute;
    inset: -20%;
    background: repeating-conic-gradient(#ffffff 0deg 90deg, #000 90deg 180deg) 0 0 / 64px 64px;
    transform: rotate(-12deg);
    opacity: 0.05;
    pointer-events: none;
}
.cta-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(225, 6, 0, 0.35), transparent 55%);
    pointer-events: none;
}
.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}
.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin: 0 0 var(--space-sm);
}
.cta-amount {
    display: inline-block;
    font-size: clamp(3rem, 8vw, 5.5rem);
    background: linear-gradient(135deg, #ff1f2d, #ff5e6a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 50px rgba(255, 31, 45, 0.4);
}
.cta-subtitle {
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    color: var(--muted-foreground);
    margin-bottom: var(--space-lg);
}
.cta-micro {
    margin-top: var(--space-md);
    font-size: 13px;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================
   SEO TEXT BLOCK
   ============================================ */
.seo-text {
    padding: var(--space-3xl) var(--space-md);
    background: var(--background-soft);
}
@media (min-width: 1024px) { .seo-text { padding: var(--space-4xl) var(--space-md); } }
.seo-inner {
    max-width: 760px;
    margin: 0 auto;
}
.seo-heading {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: var(--space-lg);
}
.seo-body { font-size: 17px; line-height: 1.75; color: #e8e8e0; }
.seo-body p { color: #e8e8e0; margin-bottom: var(--space-md); }
.seo-body h3 {
    font-family: "Inter Tight", sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}
.seo-body a {
    color: var(--primary-bright);
    border-bottom: 1px solid rgba(255, 31, 45, 0.45);
    padding-bottom: 1px;
    transition: color var(--dur), border-color var(--dur);
}
.seo-body a:hover {
    color: #ffffff;
    border-color: #ffffff;
}
.seo-body ul, .seo-body ol { padding-left: 1.4em; margin: 0 0 var(--space-md); }
.seo-body li { margin-bottom: 8px; }

/* ============================================
   TRUST / BADGE STRIPS
   ============================================ */
.trust-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-md);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--background-soft);
}
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted-foreground);
}
.trust-badge-age {
    color: #ffffff;
    background: var(--primary);
    border-color: var(--primary);
}

.logo-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-md);
    align-items: center;
}
@media (min-width: 640px) { .logo-row { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.logo-chip {
    background: var(--card);
    border: 1px solid var(--border);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius);
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 14px;
    color: var(--muted-foreground);
    transition: border-color var(--dur), color var(--dur);
}
.logo-chip:hover { border-color: var(--primary-bright); color: #fff; }

/* ============================================
   TABLE
   ============================================ */
.table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
}
.table-wrapper:focus { outline: 2px solid var(--primary-bright); outline-offset: 2px; }
.table-wrapper:focus-visible { outline: 2px solid var(--primary-bright); outline-offset: 2px; }
.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 540px;
}
.data-table thead { background: var(--background-soft); }
.data-table th, .data-table td {
    text-align: left;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}
.data-table th {
    font-family: "Inter Tight", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
    color: var(--accent);
}
.data-table tbody tr:last-child td { border-bottom: 0; }
.data-table tbody tr:hover { background: rgba(255, 31, 45, 0.05); }
.data-table .highlight-col { color: var(--primary-bright); font-weight: 700; }

/* ============================================
   ENGAGEMENT / CRO PATTERNS
   ============================================ */
.tldr-box {
    background: linear-gradient(135deg, rgba(225, 6, 0, 0.08), rgba(228, 181, 61, 0.04));
    border-left: 4px solid var(--primary-bright);
    border-radius: var(--radius);
    padding: var(--space-md) var(--space-lg);
    margin-bottom: var(--space-lg);
}
.tldr-box h3,
.tldr-box .tldr-heading {
    font-family: "Inter Tight", sans-serif;
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

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

.stat-highlight {
    text-align: center;
    padding: var(--space-md);
}
.stat-highlight .stat-number {
    display: block;
    font-family: "Racing Sans One", sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary-bright);
    line-height: 1;
}
.stat-highlight .stat-label {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-foreground);
}

.pull-quote {
    border-left: 4px solid var(--primary-bright);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-style: italic;
    color: var(--foreground);
}
.pull-quote cite {
    display: block;
    margin-top: var(--space-sm);
    font-size: 14px;
    color: var(--muted-foreground);
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.steps-list {
    counter-reset: step;
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: var(--space-md);
}
.steps-list li {
    counter-increment: step;
    position: relative;
    padding: var(--space-md) var(--space-md) var(--space-md) calc(var(--space-md) + 56px);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.steps-list li::before {
    content: counter(step);
    position: absolute;
    left: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    width: 38px; height: 38px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #ff1f2d, #b80008);
    color: #fff;
    border-radius: 50%;
    font-family: "Racing Sans One", sans-serif;
    font-size: 18px;
    box-shadow: 0 0 16px rgba(255, 31, 45, 0.4);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #08080a;
    border-top: 1px solid var(--border);
    padding-top: var(--space-2xl);
    margin-top: var(--space-3xl);
}
.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md) var(--space-2xl);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-xl);
}
@media (min-width: 640px) { .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .footer-inner { grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr)); } }

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--space-sm);
}
.footer-tagline {
    color: var(--muted-foreground);
    font-size: 15px;
    max-width: 36ch;
}
.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: var(--space-md);
}

.footer-heading {
    font-family: "Inter Tight", sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}
.footer-list, .footer-payments {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-payments {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-payments li {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.footer-list a {
    color: var(--muted-foreground);
    transition: color var(--dur);
}
.footer-list a:hover { color: var(--primary-bright); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: var(--space-md);
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--muted-foreground);
}
.footer-bottom a { color: var(--muted-foreground); }
.footer-bottom a:hover { color: var(--primary-bright); }
.footer-copy { margin: 0; }
.footer-meta { margin: 0; }

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: none;
}

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