/* ============================================================
   AuraScore — style.css
   Premium Sports Intelligence Platform
   Dark theme · Glassmorphism · Professional gradients
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Palette */
    --bg-base:       #050B18;
    --bg-surface:    #0A1428;
    --bg-elevated:   #0F1D3A;
    --cyan:          #00D4FF;
    --cyan-dim:      rgba(0, 212, 255, 0.15);
    --violet:        #7C3AED;
    --violet-dim:    rgba(124, 58, 237, 0.15);
    --cyan-violet:   linear-gradient(135deg, #00D4FF 0%, #7C3AED 100%);
    --glass-bg:      rgba(255, 255, 255, 0.04);
    --glass-border:  rgba(255, 255, 255, 0.08);
    --glass-hover:   rgba(255, 255, 255, 0.07);
    --text-primary:  #F0F4FF;
    --text-secondary:#8A9BC0;
    --text-muted:    #4A5A7A;
    --success:       #22C55E;
    --warn:          #F59E0B;

    /* Typography */
    --font-display:  'Syne', sans-serif;
    --font-body:     'Inter', sans-serif;

    /* Spacing */
    --section-gap:   120px;
    --container:     1200px;

    /* Radius */
    --r-sm:  8px;
    --r-md:  14px;
    --r-lg:  20px;
    --r-xl:  28px;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Selection */
::selection {
    background: var(--violet-dim);
    color: var(--cyan);
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.section-eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 14px;
}

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

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-body {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 540px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.section-body.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* ── LAYOUT ───────────────────────────────────────────────── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    padding: 12px 24px;
    border-radius: var(--r-sm);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--cyan-violet);
    color: #fff;
    box-shadow: 0 0 24px rgba(0, 212, 255, 0.3), 0 4px 16px rgba(0,0,0,0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.45), 0 8px 24px rgba(0,0,0,0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-ghost:hover {
    background: var(--glass-hover);
    border-color: rgba(255,255,255,0.16);
}

.btn-lg {
    padding: 15px 30px;
    font-size: 15px;
    border-radius: var(--r-md);
}

.btn-xl {
    padding: 18px 44px;
    font-size: 17px;
    border-radius: var(--r-lg);
    letter-spacing: 0.03em;
}

.pulse-btn {
    animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 24px rgba(0,212,255,0.3), 0 4px 16px rgba(0,0,0,0.4); }
    50%       { box-shadow: 0 0 60px rgba(0,212,255,0.6), 0 0 30px rgba(124,58,237,0.4); }
}

/* ── HEADER ───────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: rgba(5, 11, 24, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: var(--glass-border);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 72px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

/* Nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 16px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 6px 14px;
    border-radius: var(--r-sm);
    transition: color 0.15s, background 0.15s;
}

.nav-link:hover {
    color: var(--text-primary);
    background: var(--glass-bg);
}

/* Header controls */
.header-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.header-cta {
    font-size: 13px;
    padding: 10px 20px;
}

/* Language switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    padding: 4px 6px;
    border-radius: 4px;
    transition: color 0.15s, background 0.15s;
}

.lang-btn:hover,
.lang-btn.active {
    color: var(--cyan);
    background: var(--cyan-dim);
}

.lang-divider {
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 72px;
}

/* Pulse canvas */
#pulse-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.35;
    pointer-events: none;
}

/* Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,212,255,0.18) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 80px 0 100px;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cyan);
    background: var(--cyan-dim);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
    animation: fadeSlideUp 0.6s ease both;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.2; }
}

.hero-title {
    font-size: clamp(56px, 8vw, 96px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
    animation: fadeSlideUp 0.6s 0.1s ease both;
}

.hero-title-brand {
    background: var(--cyan-violet);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    animation: fadeSlideUp 0.6s 0.15s ease both;
}

.hero-desc {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.75;
    margin-bottom: 40px;
    animation: fadeSlideUp 0.6s 0.2s ease both;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 64px;
    animation: fadeSlideUp 0.6s 0.25s ease both;
}

/* Metrics strip */
.hero-metrics {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 24px 32px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-lg);
    backdrop-filter: blur(12px);
    animation: fadeSlideUp 0.6s 0.3s ease both;
    width: fit-content;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 28px;
}

.metric-number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    background: var(--cyan-violet);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    line-height: 1;
}

.metric-suffix {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    background: var(--cyan-violet);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
    letter-spacing: 0.02em;
}

.metric-divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
    flex-shrink: 0;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 40px;
    border: 1.5px solid var(--glass-border);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding: 6px 0;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--cyan);
    border-radius: 2px;
    animation: scroll-bounce 1.8s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%   { transform: translateY(0); opacity: 1; }
    70%  { transform: translateY(10px); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
}

/* ── CAPABILITIES ─────────────────────────────────────────── */
.capabilities {
    padding: var(--section-gap) 0;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 52px;
}

.cap-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-lg);
    padding: 28px 28px 24px;
    transition: all 0.25s ease;
    opacity: 0;
    transform: translateY(20px);
    cursor: default;
}

.cap-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.cap-card:hover {
    background: var(--glass-hover);
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 0 20px rgba(0,212,255,0.06);
}

.cap-icon {
    width: 44px;
    height: 44px;
    background: var(--cyan-dim);
    border: 1px solid rgba(0,212,255,0.2);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--cyan);
}

.cap-icon svg {
    width: 22px;
    height: 22px;
}

.cap-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.cap-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.cap-stat {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: 0.02em;
}

/* ── FEATURES SECTION ─────────────────────────────────────── */
.features {
    padding: var(--section-gap) 0;
    background: linear-gradient(180deg, transparent 0%, rgba(124,58,237,0.04) 50%, transparent 100%);
}

.features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.features-text .section-title { margin-bottom: 16px; }

/* Dashboard cards */
.features-dashboard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 12px;
}

.dash-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-md);
    padding: 20px;
    transition: border-color 0.2s;
}

.dash-card:hover { border-color: rgba(0,212,255,0.2); }

.dash-card-main { grid-column: 1 / -1; }
.dash-card-wide { grid-column: 1 / -1; }

.dash-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.dash-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.dash-badge {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 3px 8px;
    border-radius: 100px;
}

.dash-badge.live {
    color: var(--success);
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.2);
}

/* Elo compare */
.elo-compare {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    align-items: center;
}

.elo-team {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.elo-team-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.elo-bar-wrap {
    position: relative;
    height: 6px;
    background: rgba(255,255,255,0.05);
    border-radius: 3px;
    overflow: hidden;
}

.elo-bar { width: 100%; height: 100%; }

.elo-fill {
    height: 100%;
    border-radius: 3px;
    width: var(--w);
    animation: grow-bar 1s 0.5s ease both;
}

.elo-fill-a { background: linear-gradient(90deg, var(--cyan), #0099BB); }
.elo-fill-b { background: linear-gradient(90deg, var(--violet), #5B21B6); }

@keyframes grow-bar {
    from { width: 0; }
    to   { width: var(--w); }
}

.elo-score {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
}

.elo-vs {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-align: center;
    letter-spacing: 0.1em;
}

/* Momentum */
.momentum-track {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.form-dot {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.form-dot.win  { background: rgba(34,197,94,0.15); color: var(--success); border: 1px solid rgba(34,197,94,0.25); }
.form-dot.draw { background: rgba(245,158,11,0.15); color: var(--warn); border: 1px solid rgba(245,158,11,0.25); }
.form-dot.loss { background: rgba(239,68,68,0.15); color: #EF4444; border: 1px solid rgba(239,68,68,0.25); }

.momentum-label {
    font-size: 12px;
    font-weight: 600;
}

.momentum-label.positive { color: var(--success); }

/* Probability ring */
.prob-ring {
    position: relative;
    width: 64px;
    height: 64px;
    margin: 4px auto 8px;
}

.ring-svg {
    width: 100%;
    height: 100%;
}

.ring-value {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    color: var(--text-primary);
}

.prob-sub {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
}

/* Over/Under */
.ou-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ou-item {
    display: grid;
    grid-template-columns: 48px 1fr 36px;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
}

.ou-bar-bg {
    height: 6px;
    background: rgba(255,255,255,0.05);
    border-radius: 3px;
    overflow: hidden;
}

.ou-bar-fill {
    height: 100%;
    border-radius: 3px;
    animation: grow-bar 1s 0.6s ease both;
}

.ou-over  { background: linear-gradient(90deg, var(--cyan), #0099BB); }
.ou-under { background: linear-gradient(90deg, var(--violet), #5B21B6); }

/* ── SPORTS SECTION ───────────────────────────────────────── */
.sports-section {
    padding: var(--section-gap) 0;
    text-align: center;
}

.sports-section .section-title { text-align: center; }

.sports-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 52px;
}

.sport-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 24px 22px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-lg);
    width: 160px;
    transition: all 0.25s ease;
    cursor: default;
}

.sport-card:hover {
    transform: translateY(-4px);
    background: var(--glass-hover);
}

.sport-active {
    border-color: rgba(0,212,255,0.3);
    background: rgba(0,212,255,0.05);
}

.sport-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sport-active .sport-icon { color: var(--cyan); }
.sport-soon  .sport-icon { color: var(--text-muted); }

.sport-icon svg {
    width: 40px;
    height: 40px;
}

.sport-name {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.sport-status {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
}

.active-status {
    color: var(--success);
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.2);
}

.soon-status {
    color: var(--text-muted);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
}

/* ── TRUST SECTION ────────────────────────────────────────── */
.trust-section {
    padding: var(--section-gap) 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,212,255,0.03) 50%, transparent 100%);
}

.trust-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.trust-pillars {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 8px;
}

.pillar {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.pillar-icon {
    font-size: 14px;
    color: var(--cyan);
    flex-shrink: 0;
    padding-top: 2px;
}

.pillar strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 3px;
}

.pillar p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* Trust card */
.trust-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-xl);
    padding: 32px;
}

.tc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 14px;
}

.tc-row:first-child { padding-top: 0; }

.tc-label { color: var(--text-secondary); }

.tc-value {
    font-weight: 600;
    font-size: 12px;
    color: var(--success);
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.2);
    padding: 3px 10px;
    border-radius: 100px;
}

.tc-divider { height: 1px; background: var(--glass-border); margin: 8px 0; }

.tc-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.tc-total-val {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    background: var(--cyan-violet);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── FINAL CTA ────────────────────────────────────────────── */
.final-cta {
    position: relative;
    padding: var(--section-gap) 0;
    text-align: center;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(0,212,255,0.12) 0%, rgba(124,58,237,0.08) 50%, transparent 70%);
    pointer-events: none;
    filter: blur(40px);
}

.cta-inner {
    position: relative;
    z-index: 2;
}

.cta-headline {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    background: var(--cyan-violet);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-body {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 460px;
    margin: 0 auto 40px;
    line-height: 1.65;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 32px;
    background: var(--bg-surface);
}

.footer-inner { display: flex; flex-direction: column; gap: 48px; }

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-tagline {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 10px;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.15s;
}

.footer-col a:hover { color: var(--text-primary); }

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s;
}

.social-link svg { width: 16px; height: 16px; }

.social-link:hover {
    color: var(--text-primary);
    border-color: var(--glass-hover);
    background: var(--glass-hover);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--glass-border);
}

.copyright {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.15s;
}

.footer-legal a:hover { color: var(--text-secondary); }

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

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

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .capability-grid { grid-template-columns: repeat(2, 1fr); }
    .features-layout { grid-template-columns: 1fr; gap: 60px; }
    .trust-inner { grid-template-columns: 1fr; gap: 48px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-social { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (max-width: 768px) {
    :root { --section-gap: 80px; }

    /* Header */
    .main-nav {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(5,11,24,0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px 24px;
        border-bottom: 1px solid var(--glass-border);
        gap: 4px;
        z-index: 99;
    }

    .main-nav.open { display: flex; }

    .nav-link { padding: 12px 14px; width: 100%; }

    .hamburger { display: flex; }

    .header-cta { display: none; }

    /* Hero */
    .hero-metrics {
        flex-direction: column;
        padding: 20px 24px;
        gap: 16px;
        width: 100%;
        max-width: 320px;
    }
    .metric-divider { width: 40px; height: 1px; }
    .metric-item { flex-direction: row; gap: 10px; align-items: center; }

    /* Grid fixes */
    .capability-grid { grid-template-columns: 1fr; }
    .features-dashboard { grid-template-columns: 1fr; }
    .dash-card-main, .dash-card-wide { grid-column: 1; }
    .sports-grid { gap: 12px; }
    .sport-card { width: 140px; }

    /* Footer */
    .footer-top { grid-template-columns: 1fr; }
    .footer-social { align-items: flex-start; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .footer-links { flex-wrap: wrap; }
}

@media (max-width: 480px) {
    .hero-ctas { flex-direction: column; align-items: flex-start; }
    .hero-ctas .btn { width: 100%; justify-content: center; }
    .trust-inner { gap: 36px; }
    .sports-grid { gap: 10px; }
    .sport-card { width: calc(50% - 5px); }
}
