/* ==========================================================
   sweep-stakescasino-canada.com — 2026 Design System
   Palette: Deep Indigo + Electric Lime + Hot Pink
   Font: Bricolage Grotesque (H) + Plus Jakarta Sans (body)
   Layout: Single-page, sticky nav, anchor sections
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ── TOKENS ────────────────────────────────────────────────── */
:root {
    --lime: #AAFF00;
    --lime-d: #88CC00;
    --lime-bg: rgba(170, 255, 0, 0.08);
    --pink: #FF2D78;
    --pink-bg: rgba(255, 45, 120, 0.1);
    --indigo: #0D0621;
    --indigo-l: #1A0E3A;
    --indigo-2: #251650;
    --indigo-3: #301E64;
    --blue-v: #4B2FE8;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-b: rgba(255, 255, 255, 0.08);
    --glass-s: rgba(255, 255, 255, 0.12);
    --border: rgba(255, 255, 255, 0.1);
    --border-l: rgba(255, 255, 255, 0.06);

    --text1: #F4F0FF;
    --text2: rgba(244, 240, 255, 0.75);
    --text3: rgba(244, 240, 255, 0.45);

    --font-h: 'Bricolage Grotesque', system-ui, sans-serif;
    --font: 'Plus Jakarta Sans', system-ui, sans-serif;

    --radius: 12px;
    --radius-l: 20px;
    --radius-xl: 32px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    --shadow-l: 0 8px 48px rgba(0, 0, 0, 0.5);
    --glow-lime: 0 0 32px rgba(170, 255, 0, 0.25);
    --glow-pink: 0 0 32px rgba(255, 45, 120, 0.2);
    --tr: 0.22s ease;
}

/* ── RESET ─────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px
}

body {
    font-family: var(--font);
    background: var(--indigo);
    color: var(--text1);
    line-height: 1.65;
    overflow-x: hidden
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    color: var(--lime);
    text-decoration: none;
    transition: color var(--tr)
}

a:hover {
    color: #fff
}

ul,
ol {
    padding-left: 1.25em
}

table {
    border-collapse: collapse;
    width: 100%
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--lime);
    color: var(--indigo);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 800;
    z-index: 9999;
    font-family: var(--font-h)
}

.skip-link:focus {
    top: 16px
}

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.container-sm {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px
}

.section {
    padding: 80px 0
}

/* ── GLASS CARDS ────────────────────────────────────────────── */
.glass {
    background: var(--glass-b);
    border: 1px solid var(--border);
    border-radius: var(--radius-l);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px)
}

.glass-sm {
    background: var(--glass);
    border: 1px solid var(--border-l);
    border-radius: var(--radius);
    backdrop-filter: blur(12px)
}

.glass-pop {
    background: var(--glass-s);
    border: 1px solid rgba(170, 255, 0, 0.2);
    border-radius: var(--radius-l)
}

/* ── NAV ────────────────────────────────────────────────────── */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(13, 6, 33, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-l)
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 64px
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-h);
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
    letter-spacing: -0.3px
}

.nav-logo .dot {
    color: var(--lime)
}

.nav-links {
    display: flex;
    gap: 2px;
    margin-left: auto;
    flex-wrap: wrap
}

.nav-links a {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text2);
    padding: 6px 10px;
    border-radius: 6px;
    transition: all var(--tr);
    white-space: nowrap
}

.nav-links a:hover {
    color: var(--lime);
    background: var(--lime-bg)
}

.nav-cta {
    margin-left: 8px
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text1);
    border-radius: 2px;
    transition: all var(--tr)
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--indigo-l);
    border-top: 1px solid var(--border-l);
    padding: 16px;
    gap: 4px
}

.mobile-menu a {
    color: var(--text2);
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem
}

.mobile-menu a:hover {
    color: var(--lime);
    background: var(--lime-bg)
}

.mobile-menu.open {
    display: flex
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-h);
    font-weight: 700;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all var(--tr);
    text-decoration: none;
    white-space: nowrap
}

.btn-lime {
    background: var(--lime);
    color: var(--indigo)
}

.btn-lime:hover {
    background: #CCFF33;
    color: var(--indigo);
    transform: translateY(-2px);
    box-shadow: var(--glow-lime)
}

.btn-glass {
    background: var(--glass-s);
    color: #fff;
    border: 1px solid var(--border)
}

.btn-glass:hover {
    background: var(--glass-b);
    color: var(--lime);
    border-color: var(--lime)
}

.btn-pink {
    background: var(--pink);
    color: #fff
}

.btn-pink:hover {
    background: #FF5599;
    transform: translateY(-2px);
    box-shadow: var(--glow-pink)
}

.btn-sm {
    font-size: 0.78rem;
    padding: 8px 16px
}

.btn-md {
    font-size: 0.875rem;
    padding: 10px 22px
}

.btn-lg {
    font-size: 1rem;
    padding: 14px 28px
}

.btn-xl {
    font-size: 1.1rem;
    padding: 16px 36px
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--indigo)
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(75, 47, 232, 0.3) 0%, transparent 70%), radial-gradient(ellipse 40% 40% at 20% 70%, rgba(170, 255, 0, 0.08) 0%, transparent 60%);
    pointer-events: none
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 100px 0 80px;
    position: relative;
    z-index: 1
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--lime);
    margin-bottom: 20px
}

.hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime);
    animation: pulse 2s infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5)
    }
}

.hero h1 {
    font-family: var(--font-h);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: #fff
}

.hero h1 .accent {
    color: var(--lime)
}

.hero h1 .accent2 {
    color: var(--pink)
}

.hero-desc {
    color: var(--text2);
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 520px
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px
}

.hero-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.pill {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 100px;
    border: 1px solid var(--border);
    color: var(--text2);
    background: var(--glass)
}

.pill.lime {
    border-color: rgba(170, 255, 0, 0.4);
    color: var(--lime);
    background: var(--lime-bg)
}

.hero-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-l), 0 0 60px rgba(75, 47, 232, 0.3)
}

.hero-img img {
    width: 100%;
    border-radius: var(--radius-xl)
}

/* ── STATS RIBBON ───────────────────────────────────────────── */
.stats-ribbon {
    background: var(--indigo-l);
    border-top: 1px solid var(--border-l);
    border-bottom: 1px solid var(--border-l);
    padding: 0
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(6, 1fr)
}

.stat-cell {
    padding: 24px 16px;
    border-right: 1px solid var(--border-l);
    text-align: center
}

.stat-cell:last-child {
    border-right: none
}

.stat-num {
    font-family: var(--font-h);
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--lime);
    line-height: 1
}

.stat-label {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text3);
    margin-top: 6px
}

/* ── SECTION HEADERS ────────────────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 48px
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--lime);
    margin-bottom: 12px
}

.eyebrow::before,
.eyebrow::after {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--lime);
    opacity: 0.5
}

.section-header h2 {
    font-family: var(--font-h);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    line-height: 1.15
}

.section-header h2 .hi {
    color: var(--lime)
}

.section-header p {
    color: var(--text2);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65
}

/* ── TABLES ─────────────────────────────────────────────────── */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-l);
    border: 1px solid var(--border-l);
    box-shadow: var(--shadow)
}

table {
    width: 100%;
    border-collapse: collapse
}

caption {
    font-family: var(--font-h);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-l);
    background: rgba(255, 255, 255, 0.02)
}

thead th {
    background: var(--indigo-2);
    color: var(--text1);
    font-family: var(--font-h);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 14px 18px;
    text-align: left
}

th.lime-h {
    color: var(--lime)
}

tbody tr {
    border-bottom: 1px solid var(--border-l);
    transition: background var(--tr)
}

tbody tr:hover {
    background: var(--glass)
}

tbody tr:last-child {
    border: none
}

td {
    padding: 13px 18px;
    font-size: 0.875rem;
    color: var(--text2);
    line-height: 1.45
}

.td-best {
    color: var(--lime);
    font-weight: 700
}

.td-ok {
    color: #60CFFF;
    font-weight: 600
}

.td-warn {
    color: #FFB000;
    font-weight: 600
}

.td-bad {
    color: var(--pink);
    font-weight: 600
}

.td-winner {
    background: var(--lime-bg);
    border-left: 3px solid var(--lime)
}

.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-family: var(--font-h);
    font-weight: 800;
    font-size: 0.75rem
}

.r1 {
    background: var(--lime);
    color: var(--indigo)
}

.r2 {
    background: var(--glass-s);
    color: var(--text2);
    border: 1px solid var(--border)
}

.r3 {
    background: var(--glass);
    color: var(--text3);
    border: 1px solid var(--border-l)
}

/* ── CARDS GRID ─────────────────────────────────────────────── */
.card-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px
}

.card-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px
}

.card {
    padding: 28px;
    transition: all var(--tr)
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(170, 255, 0, 0.3);
    box-shadow: var(--shadow-l), 0 0 24px rgba(170, 255, 0, 0.1)
}

.card-icon {
    font-size: 2.2rem;
    margin-bottom: 14px
}

.card h3 {
    font-family: var(--font-h);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px
}

.card p {
    font-size: 0.875rem;
    color: var(--text2);
    line-height: 1.65
}

.card-num {
    font-family: var(--font-h);
    font-size: 2rem;
    font-weight: 800;
    color: var(--lime);
    margin-bottom: 4px
}

/* ── SCORE CARD ─────────────────────────────────────────────── */
.score-block {
    background: linear-gradient(135deg, var(--indigo-2), var(--indigo-3));
    border: 1px solid rgba(170, 255, 0, 0.2);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    box-shadow: var(--glow-lime);
    position: relative;
    overflow: hidden
}

.score-block::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(170, 255, 0, 0.15) 0%, transparent 70%);
    pointer-events: none
}

.score-big {
    font-family: var(--font-h);
    font-size: 5rem;
    font-weight: 800;
    color: var(--lime);
    line-height: 1;
    text-shadow: 0 0 40px rgba(170, 255, 0, 0.4)
}

.score-denom {
    font-size: 1.5rem;
    color: var(--text3)
}

.score-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text3);
    margin-top: 8px
}

.score-stars {
    font-size: 1.3rem;
    margin: 12px 0;
    letter-spacing: 4px;
    color: var(--lime)
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-l);
    font-size: 0.8rem
}

.bar-row:last-child {
    border: none
}

.bar-label {
    color: var(--text2);
    flex: 1;
    text-align: left
}

.bar-wrap {
    flex: 2;
    height: 4px;
    background: var(--glass-b);
    border-radius: 2px
}

.bar-fill {
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--lime-d), var(--lime))
}

.bar-val {
    color: var(--lime);
    font-weight: 700;
    font-family: var(--font-h);
    min-width: 28px;
    text-align: right
}

/* ── CHART BARS (CSS) ────────────────────────────────────────── */
.chart-wrap {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 180px;
    padding: 0 8px
}

.chart-bar-grp {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1
}

.chart-bar {
    width: 100%;
    border-radius: 4px 4px 0 0;
    transition: height 1s ease;
    min-width: 32px;
    max-width: 60px
}

.chart-bar.lime {
    background: linear-gradient(to top, var(--lime-d), var(--lime))
}

.chart-bar.blue {
    background: linear-gradient(to top, #2563EB, #60A5FA)
}

.chart-bar.pink {
    background: linear-gradient(to top, #BE185D, var(--pink))
}

.chart-bar.grey {
    background: linear-gradient(to top, #374151, #6B7280)
}

.chart-lbl {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text3);
    text-align: center;
    white-space: nowrap
}

.chart-val {
    font-family: var(--font-h);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text2)
}

/* ── PROVINCE TABLE ──────────────────────────────────────────── */
.prov-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px
}

.prov-card {
    padding: 16px;
    border-radius: var(--radius);
    border: 1px solid var(--border-l);
    background: var(--glass);
    display: flex;
    align-items: center;
    gap: 12px
}

.prov-flag {
    font-size: 1.5rem
}

.prov-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff
}

.prov-status {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px
}

.prov-card.ok .prov-status {
    color: var(--lime)
}

.prov-card.ok {
    border-color: rgba(170, 255, 0, 0.15)
}

/* ── COMPARE COLS ────────────────────────────────────────────── */
.vs-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    border-radius: var(--radius-l);
    overflow: hidden;
    border: 1px solid var(--border-l)
}

.vs-col {
    padding: 32px
}

.vs-col.lime-col {
    background: var(--lime-bg);
    border-right: 1px solid var(--border-l)
}

.vs-col.dark-col {
    background: var(--glass)
}

.vs-sep {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    background: var(--indigo-l);
    font-family: var(--font-h);
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--text3);
    border-left: 1px solid var(--border-l);
    border-right: 1px solid var(--border-l)
}

.vs-col h3 {
    font-family: var(--font-h);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px
}

/* ── CHECK LIST ──────────────────────────────────────────────── */
.check-list {
    list-style: none;
    padding: 0
}

.check-list li {
    padding: 7px 0 7px 28px;
    position: relative;
    font-size: 0.875rem;
    color: var(--text2);
    border-bottom: 1px solid var(--border-l)
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--lime);
    font-weight: 800
}

.check-list li.no::before {
    content: '✗';
    color: var(--pink)
}

.check-list li.no {
    color: var(--text3)
}

.check-list li:last-child {
    border: none
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-item {
    border: 1px solid var(--border-l);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 8px;
    background: var(--glass)
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    font-family: var(--font-h);
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background var(--tr)
}

.faq-q:hover {
    background: var(--glass-s)
}

.faq-icon {
    color: var(--lime);
    font-size: 1.3rem;
    transition: transform 0.25s ease;
    margin-left: 12px;
    flex-shrink: 0
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease
}

.faq-a.open {
    max-height: 400px;
    padding: 0 22px 18px
}

.faq-a p {
    font-size: 0.875rem;
    color: var(--text2);
    line-height: 1.7
}

.faq-item.active .faq-icon {
    transform: rotate(45deg)
}

.faq-item.active {
    border-color: rgba(170, 255, 0, 0.25)
}

.faq-item.active .faq-q {
    color: var(--lime)
}

/* ── NOTICE ──────────────────────────────────────────────────── */
.notice {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 20px;
    border-radius: var(--radius);
    border-left: 3px solid var(--lime);
    background: var(--lime-bg)
}

.notice.info {
    border-color: #60A5FA;
    background: rgba(96, 165, 250, 0.07)
}

.notice.warn {
    border-color: #FFB000;
    background: rgba(255, 176, 0, 0.08)
}

.notice-ico {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 1px
}

.notice p {
    font-size: 0.875rem;
    color: var(--text2);
    line-height: 1.6;
    margin: 0
}

/* ── STEPS ───────────────────────────────────────────────────── */
.steps {
    counter-reset: s;
    list-style: none;
    padding: 0
}

.steps li {
    counter-increment: s;
    padding: 20px 20px 20px 64px;
    position: relative;
    border-left: 2px solid var(--border-l);
    margin-left: 24px;
    margin-bottom: 8px
}

.steps li::before {
    content: counter(s);
    position: absolute;
    left: -20px;
    top: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--lime);
    color: var(--indigo);
    font-family: var(--font-h);
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center
}

.steps li h4 {
    font-family: var(--font-h);
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px
}

.steps li p {
    font-size: 0.875rem;
    color: var(--text3)
}

/* ── CTA ─────────────────────────────────────────────────────── */
.cta-band {
    background: linear-gradient(135deg, var(--blue-v) 0%, var(--indigo-3) 50%, var(--indigo-2) 100%);
    border-top: 1px solid rgba(170, 255, 0, 0.2);
    border-bottom: 1px solid rgba(170, 255, 0, 0.2);
    padding: 72px 0;
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(170, 255, 0, 0.07) 0%, transparent 70%)
}

.cta-band h2 {
    font-family: var(--font-h);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    position: relative
}

.cta-band p {
    color: var(--text2);
    font-size: 1rem;
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    position: relative
}

.cta-legal {
    font-size: 0.75rem;
    color: var(--text3);
    margin-top: 16px;
    position: relative
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
    background: var(--indigo-l);
    border-top: 1px solid var(--border-l);
    padding: 48px 0 24px
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px
}

.footer-brand p {
    font-size: 0.8rem;
    color: var(--text3);
    line-height: 1.65;
    margin-top: 12px
}

.footer-col h4 {
    font-family: var(--font-h);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--lime);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px
}

.footer-col ul {
    list-style: none;
    padding: 0
}

.footer-col li {
    margin-bottom: 8px
}

.footer-col a {
    font-size: 0.82rem;
    color: var(--text2);
    transition: color var(--tr)
}

.footer-col a:hover {
    color: var(--lime)
}

.footer-warn {
    border-top: 1px solid var(--border-l);
    border-bottom: 1px solid var(--border-l);
    padding: 18px 0;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 20px
}

.fw-tag {
    background: var(--pink);
    color: #fff;
    font-family: var(--font-h);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 4px 10px;
    border-radius: 6px;
    flex-shrink: 0
}

.footer-warn p {
    font-size: 0.78rem;
    color: var(--text3);
    line-height: 1.55
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text3)
}

.footer-badges {
    display: flex;
    gap: 6px
}

.fbadge {
    font-family: var(--font-h);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid var(--border-l);
    color: var(--text3)
}

/* ── ANIMATIONS ──────────────────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0)
}

.glow-text {
    text-shadow: 0 0 24px rgba(170, 255, 0, 0.5)
}

/* ── MT UTILS ────────────────────────────────────────────────── */
.mt-16 {
    margin-top: 16px
}

.mt-24 {
    margin-top: 24px
}

.mt-32 {
    margin-top: 32px
}

.mt-48 {
    margin-top: 48px
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media(max-width:1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        padding: 60px 0 40px
    }

    .hero-img {
        display: none
    }

    .stats-inner {
        grid-template-columns: repeat(3, 1fr)
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr
    }

    .vs-grid {
        grid-template-columns: 1fr
    }

    .vs-sep {
        padding: 12px;
        writing-mode: horizontal-tb;
        border: none;
        border-top: 1px solid var(--border-l);
        border-bottom: 1px solid var(--border-l)
    }
}

@media(max-width:768px) {

    .nav-links,
    .nav-cta {
        display: none
    }

    .burger {
        display: flex
    }

    .section {
        padding: 48px 0
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr)
    }

    .chart-wrap {
        height: 120px;
        gap: 6px
    }

    .score-block {
        padding: 24px
    }

    .footer-inner {
        grid-template-columns: 1fr
    }
}

@media(max-width:480px) {
    .stats-inner {
        grid-template-columns: repeat(2, 1fr)
    }

    .hero-btns {
        flex-direction: column
    }

    .cta-btns {
        flex-direction: column;
        align-items: center
    }
}