/* AIBG-126 - Sports Data Command Center Design */
/* Bold, distinctive, technical aesthetic - NO generic AI slop */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=JetBrains+Mono:wght@400;500;700&display=swap');

html {
    scroll-behavior: smooth;
    scroll-padding-top: 74px; /* Compensate for sticky navbar */
}

:root {
    /* Command Center Color Palette - Electric & Industrial */
    --primary-cyan: #00ffff;
    --accent-orange: #ff4500;
    --accent-yellow: #ffff00;
    --bg-void: #0a0a0a;
    --bg-charcoal: #1a1a1a;
    --bg-slate: #2a2a2a;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --text-dim: #606060;
    --border-glow: rgba(0, 255, 255, 0.3);
    --success: #00ff88;
    --danger: #ff4500;
    --grid-line: rgba(0, 255, 255, 0.08);
    
    /* Typography */
    --font-display: 'Archivo Black', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-mono);
    background: var(--bg-void);
    color: var(--text-white);
    line-height: 1.6;
    font-size: 15px;
    position: relative;
    overflow-x: hidden;
}

/* Grid background overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

/* Navbar - Command Bar Style */
.navbar {
    background: linear-gradient(180deg, var(--bg-charcoal) 0%, rgba(26, 26, 26, 0.95) 100%);
    border-bottom: 2px solid var(--primary-cyan);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary-cyan);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.nav-logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-orange), transparent);
}

.nav-logo i {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px var(--accent-orange));
    animation: pulse 2s ease-in-out infinite;
}

.logo-img {
    height: 38px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(220, 38, 38, 0.7)) drop-shadow(0 0 16px rgba(220, 38, 38, 0.3));
    animation: pulse 2s ease-in-out infinite;
    transition: filter 0.3s;
}

.nav-logo:hover .logo-img {
    filter: drop-shadow(0 0 12px rgba(220, 38, 38, 0.9)) drop-shadow(0 0 24px rgba(220, 38, 38, 0.5));
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-yellow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '> ';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
    transform: translateX(0);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* CTA Buttons - Glowing Tech Style */
.cta-button,
.primary-button {
    background: linear-gradient(135deg, var(--accent-orange), #ff6500);
    color: var(--text-white);
    padding: 0.8rem 1.8rem;
    border-radius: 0;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button::before,
.primary-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.cta-button:hover::before,
.primary-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover,
.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(255, 69, 0, 0.5);
}

.secondary-button {
    background: transparent;
    border: 2px solid var(--primary-cyan);
    color: var(--primary-cyan);
    padding: 0.8rem 1.8rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.secondary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.secondary-button:hover::before {
    left: 100%;
}

.secondary-button:hover {
    background: var(--primary-cyan);
    color: var(--bg-void);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    border-color: var(--primary-cyan);
}

/* Hero - Asymmetric Power Layout */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding: clamp(90px, 12vh, 130px) 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1), transparent);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-50px, -50px) rotate(180deg); }
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.08), transparent);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.8vw, 4rem);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    position: relative;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title .gradient-text {
    display: block;
    font-size: 1.15em;
    letter-spacing: 2px;
    margin-bottom: 0.35rem;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-yellow), var(--accent-orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradient 4s ease infinite;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 700px;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-subtitle strong {
    color: var(--primary-cyan);
    font-weight: 700;
}

/* Stats Dashboard - Data Grid Layout */
.stats-dashboard {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    max-width: 100%;
    position: relative;
}

.stat-item {
    background: linear-gradient(135deg, var(--bg-charcoal), var(--bg-slate));
    padding: 2.2rem 2rem;
    position: relative;
    border: 2px solid var(--primary-cyan);
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    transition: all 0.3s;
    animation: fadeInUp 0.8s ease-out both;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--accent-orange), transparent);
    transition: height 0.5s;
}

.stat-item:hover::before {
    height: 100%;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.3);
    border-color: var(--accent-orange);
}

.stat-number {
    font-family: var(--font-mono);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.3rem;
    letter-spacing: -1px;
}

.stat-item.positive .stat-number {
    color: var(--success);
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.stat-item.negative .stat-number {
    color: var(--danger);
    text-shadow: 0 0 15px rgba(255, 69, 0, 0.5);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.8rem;
    animation: slideInLeft 1s ease-out 0.4s both;
}

/* Trust Indicators - Terminal Style */
.trust-indicators {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.trust-indicators span {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
}

.trust-indicators i {
    color: var(--primary-cyan);
    font-size: 1.2rem;
}

/* Sections */
section {
    padding: 50px 0;
    position: relative;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2.6rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--text-white), var(--primary-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* How It Works - Technical Grid */
.how-it-works {
    background: var(--bg-void);
    position: relative;
    padding: 40px 0 50px;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.model-card {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.03), rgba(255, 69, 0, 0.02));
    border: 1px solid var(--primary-cyan);
    padding: 1.2rem 1.4rem;
    position: relative;
    transition: all 0.4s;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.model-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-orange));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.model-card:hover::before {
    opacity: 0.2;
}

.model-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 255, 255, 0.3);
}

.model-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-yellow));
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    font-size: 1.8rem;
    color: var(--bg-void);
    transition: all 0.3s;
}

.model-card:hover .model-icon {
    transform: rotate(5deg) scale(1.1);
}

.model-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: var(--primary-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.model-card p {
    color: var(--text-gray);
    line-height: 1.5;
    font-size: 0.82rem;
}

/* Process Flow - Timeline Style */
.process-flow {
    background: linear-gradient(135deg, var(--bg-charcoal), var(--bg-void));
    border: 2px solid var(--primary-cyan);
    border-radius: 0;
    padding: 1.8rem;
    margin-top: 1.5rem;
    position: relative;
}

.process-flow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--primary-cyan), var(--accent-yellow));
    background-size: 200% 100%;
    animation: scanline 3s linear infinite;
}

@keyframes scanline {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.process-flow h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 1.2rem;
    color: var(--accent-orange);
    text-transform: uppercase;
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.flow-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--accent-orange));
    z-index: 0;
}

.flow-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    color: var(--bg-void);
    border-radius: 0;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 900;
    margin: 0 auto 0.8rem;
    border: 3px solid var(--bg-void);
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
}

.step-content h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--primary-cyan);
    text-transform: uppercase;
}

.step-content p {
    color: var(--text-gray);
    font-size: 0.78rem;
    line-height: 1.5;
}

/* Pricing - Command Cards */
.pricing {
    background: var(--bg-void);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(135deg, var(--bg-charcoal), var(--bg-slate));
    border: 2px solid var(--text-dim);
    padding: 2rem;
    position: relative;
    transition: all 0.4s;
    clip-path: polygon(25px 0, 100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%, 0 25px);
}

.pricing-card.featured {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.3);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.4);
}

.pricing-badge {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    color: var(--bg-void);
    padding: 0.6rem 1.5rem;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-glow);
}

.pricing-header h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-cyan);
    text-transform: uppercase;
}

.price {
    font-family: var(--font-mono);
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-orange);
    letter-spacing: -2px;
}

.price span {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-gray);
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    padding: 1rem 0;
    color: var(--text-gray);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--success);
    font-size: 1.2rem;
    margin-top: 2px;
}

.pricing-features li .fa-times {
    color: var(--text-dim);
    opacity: 0.3;
}

.pricing-button {
    display: block;
    width: 100%;
    padding: 1.3rem;
    text-align: center;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.free-button {
    background: transparent;
    border: 2px solid var(--primary-cyan);
    color: var(--primary-cyan);
}

.free-button:hover {
    background: var(--primary-cyan);
    color: var(--bg-void);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
}

.pro-button {
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-yellow));
    color: var(--bg-void);
}

.pro-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
}

.vip-button {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    color: var(--bg-void);
}

.vip-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 69, 0, 0.6);
}

.pricing-note {
    text-align: center;
    margin-top: 1.5rem;
    padding: 2rem;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid var(--border-glow);
}

.pricing-note p {
    color: var(--text-gray);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.pricing-note i {
    color: var(--primary-cyan);
    font-size: 1.3rem;
}

/* Track Record - Data Visualization */
.track-record {
    background: var(--bg-void);
}

.record-summary {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    margin: 1.5rem 0;
    align-items: center;
}

.record-chart {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(255, 69, 0, 0.03));
    border: 2px solid var(--primary-cyan);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.record-chart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.record-chart canvas {
    height: 400px;
    max-height: 400px;
}

.record-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.record-stat {
    background: linear-gradient(135deg, var(--bg-charcoal), var(--bg-slate));
    border: 1px solid var(--primary-cyan);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    position: relative;
}

.record-stat::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(0, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s;
}

.record-stat:hover::after {
    opacity: 1;
}

.record-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.3);
}

.record-stat h3 {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-cyan);
    margin-bottom: 0.8rem;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.record-stat p {
    color: var(--text-dim);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.record-cta {
    text-align: center;
    margin-top: 2rem;
}

/* FAQ - Accordion Style */
.faq {
    background: var(--bg-void);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.faq-item {
    background: linear-gradient(135deg, var(--bg-charcoal), var(--bg-slate));
    border-left: 4px solid var(--accent-orange);
    padding: 1.5rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '?';
    position: absolute;
    top: 10px;
    right: 10px;
    font-family: var(--font-display);
    font-size: 6rem;
    color: rgba(0, 255, 255, 0.05);
    font-weight: 900;
}

.faq-item:hover {
    transform: translateX(10px);
    border-left-color: var(--primary-cyan);
    box-shadow: -5px 0 30px rgba(0, 255, 255, 0.2);
}

.faq-item h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--primary-cyan);
    margin-bottom: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Footer - Terminal Style */
.footer {
    background: linear-gradient(180deg, var(--bg-void), var(--bg-charcoal));
    border-top: 2px solid var(--primary-cyan);
    padding: 3rem 0 2rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary-cyan);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-section h4 {
    font-family: var(--font-display);
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.footer-section a {
    color: var(--primary-cyan);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: var(--accent-orange);
    text-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
}

.telegram-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-yellow));
    color: var(--bg-void);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
    transition: all 0.3s;
}

.telegram-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    margin-top: 2.5rem;
    border-top: 1px solid var(--border-glow);
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* Language Switcher - Minimal Flags */
.lang-switcher {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.lang-flag {
    cursor: pointer;
    font-size: 1.8rem;
    opacity: 0.4;
    transition: all 0.3s;
    filter: grayscale(100%);
}

.lang-flag:hover {
    opacity: 0.8;
    transform: scale(1.2);
    filter: grayscale(0%);
}

.lang-flag.active {
    opacity: 1;
    transform: scale(1.1);
    filter: grayscale(0%) drop-shadow(0 0 8px rgba(0, 255, 255, 0.5));
}

/* Tables */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-family: var(--font-mono);
}

table th {
    background: linear-gradient(135deg, var(--bg-charcoal), var(--bg-slate));
    color: var(--primary-cyan);
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid var(--primary-cyan);
}

table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
    font-size: 0.9rem;
}

table tr {
    transition: all 0.2s;
}

table tr:hover {
    background: rgba(0, 255, 255, 0.05);
}

.result-win {
    color: var(--success);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.result-loss {
    color: var(--danger);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 69, 0, 0.3);
}

.result-void {
    color: var(--text-dim);
    font-weight: 700;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .stats-dashboard {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .flow-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .flow-steps::before {
        display: none;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .record-summary {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(1.5rem, 6vw, 2.4rem);
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stats-dashboard {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .models-grid {
        grid-template-columns: 1fr;
    }
    
    .flow-steps {
        grid-template-columns: 1fr;
    }
    
    .record-details {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .primary-button,
    .secondary-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .model-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .process-flow {
        padding: 2rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .price {
        font-size: 3rem;
    }
}

/* Utility Classes */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-yellow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glitch Effect (on hover for special elements) */
@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

.glitch:hover {
    animation: glitch 0.3s infinite;
}

/* ========================================
   BILINGUAL LANG-SECTION SHOW/HIDE
   ======================================== */
/* Default: show ES (no data-lang set yet) */
.lang-section[lang="en"] { display: none; }
.lang-section[lang="es"] { display: block; }

/* After switchLang sets data-lang attribute */
[data-lang="en"] .lang-section[lang="es"] { display: none; }
[data-lang="en"] .lang-section[lang="en"] { display: block; }
[data-lang="es"] .lang-section[lang="es"] { display: block; }
[data-lang="es"] .lang-section[lang="en"] { display: none; }

/* Also hide lang dividers in lang-section approach */
[data-lang="en"] .lang-divider,
[data-lang="en"] .lang-label { display: none; }
[data-lang="es"] .lang-divider,
[data-lang="es"] .lang-label { display: none; }

/* ========================================
   SCROLL OFFSET — sticky navbar compensation
   ======================================== */
section[id],
[id="how-it-works"],
[id="pricing"],
[id="track-record"],
[id="faq"] {
    scroll-margin-top: 80px;
}

/* Scroll indicator at hero bottom */
.scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-cyan);
    font-size: 1.4rem;
    opacity: 0.6;
    animation: bounce 2s ease-in-out infinite;
    text-decoration: none;
    z-index: 2;
}

.scroll-indicator:hover { opacity: 1; }

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}
