/* =====================================================
   BRUCEBET ONLINE DE — Design System "Dark Court"
   Brand: Navy (#0d1b2a) + Cyan (#00AEEF) + Gold (#f59e0b)
   Font: Space Grotesk + Barlow
   ===================================================== */

/* ---- RESET + BASE ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Brand Colors */
    --navy: #0d1b2a;
    --navy-mid: #112036;
    --navy-light: #1a2f47;
    --cyan: #00AEEF;
    --cyan-dark: #008ec4;
    --cyan-glow: rgba(0, 174, 239, 0.18);
    --gold: #f59e0b;
    --gold-light: #fbbf24;
    --white: #ffffff;
    --text-100: #f0f4f8;
    --text-200: #cbd5e1;
    --text-300: #94a3b8;
    --text-400: #64748b;
    --border: rgba(0, 174, 239, 0.15);
    --border-2: rgba(255, 255, 255, 0.08);

    /* Gradients */
    --grad-header: linear-gradient(180deg, #0d1b2a 0%, #112036 100%);
    --grad-hero: linear-gradient(135deg, #0d1b2a 0%, #0a2540 40%, #003560 100%);
    --grad-cyan: linear-gradient(135deg, #00AEEF, #0077b6);
    --grad-card: linear-gradient(160deg, #112036 0%, #0d1b2a 100%);

    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --glow-cyan: 0 0 24px rgba(0, 174, 239, 0.25);
    --glow-gold: 0 0 20px rgba(245, 158, 11, 0.2);

    /* Spacing & Shape */
    --r-sm: 4px;
    --r-md: 8px;
    --r-lg: 16px;
    --r-xl: 24px;
    --t: 0.2s ease;
    --t-lg: 0.35s ease;

    /* Typography */
    --font-main: 'Space Grotesk', system-ui, sans-serif;
    --font-display: 'Barlow Condensed', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--navy);
    color: var(--text-200);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    color: var(--cyan);
    text-decoration: none;
    transition: color var(--t);
}

a:hover {
    color: var(--cyan-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    font-family: var(--font-main);
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    z-index: 1000;
    background: var(--cyan);
    color: var(--navy);
    padding: 8px 16px;
    font-weight: 700;
    transition: top var(--t);
}

.skip-link:focus {
    top: 0;
}

/* Container */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--navy);
    border-bottom: 2px solid var(--cyan);
    box-shadow: 0 2px 20px rgba(0, 174, 239, 0.15);
}

.header-wrap {
    display: flex;
    align-items: center;
    height: 64px;
    gap: 1rem;
    justify-content: space-between;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.logo-link img {
    height: 44px;
    width: auto;
    max-height: 44px;
    object-fit: contain;
}

/* Navigation — horizontal links */
.site-nav {
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
    display: none;
}

.site-nav a {
    padding: 0.45rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-300);
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all var(--t);
    letter-spacing: 0.02em;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--cyan);
    border-bottom-color: var(--cyan);
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-200);
    border-radius: 2px;
    transition: all var(--t);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--navy-mid);
    border-top: 1px solid var(--border);
    padding: 0.5rem 0;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-200);
    border-bottom: 1px solid var(--border-2);
    transition: all var(--t);
}

.mobile-menu a:hover {
    color: var(--cyan);
    background: var(--navy-light);
}

.mobile-menu .menu-cta {
    margin: 0.75rem 1.25rem;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.4rem;
    background: var(--grad-cyan);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    border: none;
    border-radius: var(--r-md);
    letter-spacing: 0.03em;
    transition: all var(--t);
    white-space: nowrap;
    box-shadow: var(--glow-cyan);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 174, 239, 0.35);
    color: var(--white);
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 1.6rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 800;
    border: none;
    border-radius: var(--r-md);
    letter-spacing: 0.03em;
    transition: all var(--t-lg);
    box-shadow: var(--glow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(245, 158, 11, 0.4);
    color: var(--navy);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.2rem;
    background: transparent;
    color: var(--cyan);
    border: 1.5px solid var(--cyan);
    border-radius: var(--r-md);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--t);
}

.btn-outline:hover {
    background: var(--cyan);
    color: var(--navy);
}

.btn-tracker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.78rem;
    font-weight: 800;
    border: none;
    border-radius: var(--r-md);
    letter-spacing: 0.02em;
    transition: all var(--t);
    white-space: nowrap;
}

.btn-tracker:hover {
    background: var(--gold-light);
    color: var(--navy);
    transform: translateY(-1px);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    background: var(--grad-hero);
    position: relative;
    overflow: hidden;
    padding: 3.5rem 0 3rem;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(0, 174, 239, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 10% 20%, rgba(245, 158, 11, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-100);
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.hero h1 em {
    font-style: normal;
    color: var(--cyan);
}

.hero-desc {
    font-size: 1rem;
    color: var(--text-300);
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-img {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md), var(--glow-cyan);
}

.hero-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

/* BONUS STRIP */
.bonus-strip {
    background: var(--navy-mid);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

.bonus-strip-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.bonus-strip-inner::-webkit-scrollbar {
    display: none;
}

.bonus-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.bonus-pill-icon {
    font-size: 1.2rem;
}

.bonus-pill-text {
    font-size: 0.8rem;
    color: var(--text-300);
}

.bonus-pill-val {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
}

/* Divider */
.bonus-strip-divider {
    width: 1px;
    height: 28px;
    background: var(--border-2);
    flex-shrink: 0;
}

/* =====================================================
   SECTIONS
   ===================================================== */
.section {
    padding: 3.5rem 0;
}

.section-alt {
    background: var(--navy-mid);
}

.section-header {
    margin-bottom: 2rem;
}

.section-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text-100);
    line-height: 1.2;
}

.section-title em {
    font-style: normal;
    color: var(--cyan);
}

.section-desc {
    font-size: 0.9rem;
    color: var(--text-300);
    margin-top: 0.5rem;
    max-width: 560px;
}

/* =====================================================
   CARDS
   ===================================================== */
.cards-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.cards-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.cards-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* Card — left border accent style */
.card {
    background: var(--grad-card);
    border: 1px solid var(--border-2);
    border-left: 3px solid var(--cyan);
    border-radius: var(--r-md);
    padding: 1.5rem;
    transition: all var(--t-lg);
}

.card:hover {
    border-left-color: var(--gold);
    box-shadow: var(--glow-cyan);
    transform: translateY(-2px);
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r-md);
    background: var(--cyan-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-100);
    margin-bottom: 0.4rem;
}

.card-text {
    font-size: 0.85rem;
    color: var(--text-300);
    line-height: 1.65;
}

.card-stat {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 0.25rem;
}

/* Rating Stars */
.rating-stars {
    color: var(--gold);
    font-size: 0.9rem;
}

.rating-val {
    font-weight: 700;
    color: var(--text-100);
    font-size: 0.9rem;
}

/* =====================================================
   TABLES
   ===================================================== */
.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--r-md);
    border: 1px solid var(--border);
    max-width: 100%;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
}

thead {
    background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
}

thead th {
    padding: 0.85rem 1rem;
    text-align: left;
    font-size: 0.73rem;
    font-weight: 700;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
    border-bottom: 1px solid var(--border);
}

tbody tr {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    transition: background var(--t);
}

tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

tbody tr:hover {
    background: rgba(0, 174, 239, 0.05);
}

tbody td {
    padding: 0.8rem 1rem;
    font-size: 0.875rem;
    color: var(--text-300);
    vertical-align: middle;
}

tbody td:first-child {
    color: var(--text-200);
    font-weight: 500;
}

.tag {
    display: inline-block;
    padding: 0.15rem 0.55rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
}

.tag-green {
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
}

.tag-cyan {
    background: rgba(0, 174, 239, 0.12);
    color: var(--cyan);
}

.tag-gold {
    background: rgba(245, 158, 11, 0.12);
    color: var(--gold);
}

.tag-gray {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-400);
}

.tag-red {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
}

/* =====================================================
   CHARTS
   ===================================================== */
.chart-panel {
    background: var(--grad-card);
    border: 1px solid var(--border-2);
    border-radius: var(--r-lg);
    padding: 1.5rem;
    overflow: hidden;
}

.chart-panel-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-200);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.chart-canvas-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
}

canvas {
    max-width: 100% !important;
    width: 100% !important;
}

.chart-note {
    font-size: 0.7rem;
    color: var(--text-400);
    margin-top: 0.6rem;
    text-align: right;
}

/* =====================================================
   PAGE HERO (subpages)
   ===================================================== */
.page-hero {
    background: var(--grad-hero);
    position: relative;
    overflow: hidden;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border);
}

.page-hero::after {
    content: '';
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 174, 239, 0.1), transparent 60%);
    pointer-events: none;
}

.page-hero-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.page-hero-img {
    width: 320px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--text-100);
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.page-hero h1 em {
    font-style: normal;
    color: var(--cyan);
}

.page-hero p {
    font-size: 0.95rem;
    color: var(--text-300);
    max-width: 520px;
}

/* BREADCRUMB */
.breadcrumb {
    padding: 0.6rem 0;
    font-size: 0.78rem;
    color: var(--text-400);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--border-2);
}

.breadcrumb a {
    color: var(--text-400);
}

.breadcrumb a:hover {
    color: var(--cyan);
}

.breadcrumb-sep {
    color: var(--border-2);
}

/* =====================================================
   FAQ ACCORDION
   ===================================================== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-item {
    border: 1px solid var(--border-2);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: border-color var(--t);
}

.faq-item:hover {
    border-color: var(--border);
}

.faq-q {
    width: 100%;
    text-align: left;
    background: var(--grad-card);
    border: none;
    cursor: pointer;
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-200);
    font-family: var(--font-main);
    transition: background var(--t);
}

.faq-q:hover {
    background: var(--navy-light);
}

.faq-q .chevron {
    transition: transform var(--t);
    color: var(--cyan);
}

.faq-q.open .chevron {
    transform: rotate(180deg);
}

.faq-a {
    display: none;
    padding: 0.75rem 1.25rem 1.25rem;
    background: var(--navy);
    font-size: 0.875rem;
    color: var(--text-300);
    line-height: 1.7;
    border-top: 1px solid var(--border-2);
}

.faq-a.open {
    display: block;
}

/* =====================================================
   PROS / CONS
   ===================================================== */
.pc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.pc-box {
    background: var(--grad-card);
    border: 1px solid var(--border-2);
    border-radius: var(--r-md);
    padding: 1.25rem;
}

.pc-box.pros {
    border-top: 3px solid #22c55e;
}

.pc-box.cons {
    border-top: 3px solid #ef4444;
}

.pc-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 0.9rem;
}

.pc-box.pros .pc-title {
    color: #22c55e;
}

.pc-box.cons .pc-title {
    color: #ef4444;
}

.pc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pc-list li {
    font-size: 0.875rem;
    color: var(--text-300);
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.pros .pc-list li::before {
    content: '✓';
    color: #22c55e;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.cons .pc-list li::before {
    content: '✗';
    color: #ef4444;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* =====================================================
   STEP LIST
   ===================================================== */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-2);
}

.step-item:last-child {
    border-bottom: none;
}

.step-num {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--grad-cyan);
    color: var(--white);
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-cyan);
}

.step-body h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-200);
    margin-bottom: 0.3rem;
}

.step-body p {
    font-size: 0.875rem;
    color: var(--text-300);
}

/* =====================================================
   AUTHOR BLOCK
   ===================================================== */
.author-mini {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--grad-card);
    border-radius: var(--r-md);
    border: 1px solid var(--border-2);
    border-left: 3px solid var(--cyan);
    margin-bottom: 2rem;
}

.author-mini img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--cyan);
    flex-shrink: 0;
}

.author-mini-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-200);
}

.author-mini-role {
    font-size: 0.75rem;
    color: var(--text-400);
}

.author-mini-updated {
    font-size: 0.72rem;
    color: var(--text-400);
    margin-top: 0.1rem;
}

/* Author profile page */
.author-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2.5rem;
    align-items: start;
    background: var(--grad-card);
    border: 1px solid var(--border-2);
    border-radius: var(--r-xl);
    padding: 2rem;
}

.author-card-photo img {
    width: 200px;
    height: 200px;
    border-radius: var(--r-xl);
    object-fit: cover;
    border: 3px solid var(--cyan);
    box-shadow: var(--glow-cyan);
}

.author-name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-100);
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.9rem;
    color: var(--cyan);
    margin-bottom: 1rem;
}

.author-bio {
    font-size: 0.9rem;
    color: var(--text-300);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.author-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.author-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cyan);
}

.author-stat span {
    font-size: 0.72rem;
    color: var(--text-400);
}

/* =====================================================
   SEO CONTENT SECTION
   ===================================================== */
.seo-block {
    background: var(--navy-mid);
    border-top: 1px solid var(--border-2);
    padding: 3rem 0;
}

.seo-article {
    max-width: 820px;
}

.seo-article h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-100);
    margin: 2rem 0 0.75rem;
}

.seo-article h2:first-child {
    margin-top: 0;
}

.seo-article h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--cyan);
    margin: 1.5rem 0 0.5rem;
}

.seo-article p {
    font-size: 0.93rem;
    color: var(--text-300);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.seo-article a {
    color: var(--cyan);
    border-bottom: 1px dashed rgba(0, 174, 239, 0.4);
}

.seo-article a:hover {
    color: var(--gold);
}

.seo-article ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.seo-article ul li {
    font-size: 0.9rem;
    color: var(--text-300);
}

.seo-article strong {
    color: var(--text-200);
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
    background: var(--navy);
    border-top: 2px solid var(--border);
    padding: 3rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-2);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-100);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-desc {
    font-size: 0.82rem;
    color: var(--text-400);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-age {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 6px;
    background: #ef4444;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: var(--text-400);
    padding: 0.25rem 0;
    transition: color var(--t);
}

.footer-col a:hover {
    color: var(--text-200);
}

.footer-bottom {
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.78rem;
    color: var(--text-400);
}

.footer-legal {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--text-400);
    font-size: 0.78rem;
}

.footer-legal a:hover {
    color: var(--text-300);
}

/* Sponsor logos row */
.footer-partners {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.partner-badge {
    padding: 0.35rem 0.75rem;
    border: 1px solid var(--border-2);
    border-radius: var(--r-sm);
    font-size: 0.72rem;
    color: var(--text-400);
    background: rgba(255, 255, 255, 0.02);
}

/* =====================================================
   MOBILE RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    .cards-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-img {
        display: none;
    }

    .page-hero-inner {
        grid-template-columns: 1fr;
    }

    .page-hero-img {
        display: none;
    }
}

@media (max-width: 768px) {
    .site-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-cta .btn-outline {
        display: none;
    }

    .hero {
        padding: 2rem 0 1.75rem;
    }

    .cards-3 {
        grid-template-columns: 1fr;
    }

    .cards-2 {
        grid-template-columns: 1fr;
    }

    .pc-grid {
        grid-template-columns: 1fr;
    }

    .chart-canvas-wrap {
        height: 220px;
        overflow: hidden;
    }

    canvas {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .chart-panel {
        overflow: hidden;
    }

    .table-wrap {
        overflow-x: auto;
        max-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .author-card {
        grid-template-columns: 1fr;
    }

    .author-card-photo img {
        width: 140px;
        height: 140px;
        margin: 0 auto;
    }

    .author-stats {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cards-4 {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .bonus-strip-inner {
        gap: 1rem;
    }

    .chart-canvas-wrap {
        height: 180px;
    }
}
.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;}
