:root {
    --bg-primary: #0b0b10;
    --bg-secondary: #0e0e15;
    --accent: #5865f2;
    --accent-hover: #4752c4;
    --text-primary: #ededed;
    --text-secondary: #64647a;
    --card-bg: #111118;
    --border: #1e1e28;
    --success: #22c55e;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Dot grid texture — replaces particles */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 38px 38px;
    pointer-events: none;
    z-index: 0;
}

/* Single ambient glow — no animation */
body::after {
    content: '';
    position: fixed;
    top: -20%;
    left: -5%;
    width: 55%;
    height: 65%;
    background: radial-gradient(ellipse, rgba(88,101,242,0.055) 0%, transparent 68%);
    pointer-events: none;
    z-index: 0;
}

/* Kill old animated background system */
.bg-animation,
.bg-gradient,
.particles,
.particle {
    display: none !important;
}

/* ─── NAVBAR ─────────────────────────────────── */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 8%;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(11, 11, 16, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: padding 0.3s ease, background 0.3s ease;
}

.navbar.scrolled {
    padding: 16px 8%;
    background: rgba(11, 11, 16, 0.97);
}

.logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.2s;
}

.logo:hover { opacity: 0.75; transform: none; }

.logo i {
    color: var(--accent);
    font-size: 1.1rem;
    filter: none;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.2s;
    position: static;
}

.nav-links a::after { display: none; }
.nav-links a:hover { color: var(--text-primary); }

.cta-btn {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    background: linear-gradient(135deg, #6c77ff 0%, var(--accent) 100%);
    color: #fff;
    padding: 9px 22px;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(88, 101, 242, 0.18);
    overflow: visible;
    position: static;
}

.cta-btn::before { display: none; }

.cta-btn:hover {
    background: linear-gradient(135deg, #5b67f0 0%, var(--accent-hover) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(88, 101, 242, 0.35);
}

/* ─── HERO ────────────────────────────────────── */

.hero {
    padding: 170px 8% 100px;
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 100vh;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero-content {
    flex: 0 0 480px;
    animation: none;
}

/* Command badge above h1 */
.cmd-tag {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    color: var(--accent);
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.22);
    padding: 5px 12px;
    border-radius: 2px;
    margin-bottom: 28px;
    letter-spacing: 0.05em;
}

.hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 5.8rem;
    font-weight: 900;
    line-height: 0.96;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin-bottom: 28px;
    /* No gradient text */
    background: none;
    -webkit-text-fill-color: var(--text-primary);
    animation: heroIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero h1 .accent {
    background: linear-gradient(120deg, #8b92ff 0%, var(--accent) 48%, #4cc2ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

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

.hero p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 460px;
    line-height: 1.78;
    font-weight: 400;
    animation: heroIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    animation: heroIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
}

.btn-large { padding: 12px 30px; font-size: 0.9rem; }

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    backdrop-filter: none;
    box-shadow: none;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.15);
    color: var(--text-primary);
    box-shadow: none;
}

.hero-stats {
    display: flex;
    gap: 0;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    animation: heroIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.32s both;
}

.stat-item {
    padding-right: 44px;
    border-right: 1px solid var(--border);
    margin-right: 44px;
    position: static;
}

.stat-item:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}

.stat-item h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
    /* No gradient */
    background: none;
    -webkit-text-fill-color: var(--text-primary);
}

.stat-item p {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    font-weight: 400;
    margin: 0;
}

/* Hero image — clean, no rotating overlay */
.hero-card {
    flex: 1;
    width: 100%;
    max-width: 900px;
    align-self: center;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid var(--border);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
    display: block;
    background: none;
    backdrop-filter: none;
    height: auto;
    animation: heroIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}

.hero-card::before { display: none; }

/* ─── FEATURES ───────────────────────────────── */

.features {
    padding: 120px 8%;
    background: var(--bg-secondary);
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* Left-aligned two-column header */
.section-header {
    max-width: none;
    margin: 0 0 64px 0;
    text-align: left;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
}

.section-header h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3.6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    line-height: 1;
    flex-shrink: 0;
    /* Override gradient text */
    background: none;
    -webkit-text-fill-color: var(--text-primary);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.75;
    max-width: 380px;
    text-align: right;
    margin-bottom: 6px;
}

/* Grid using border lines instead of gap+bg trick */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    gap: 0;
    background: var(--border); /* fills the 1px gaps */
}

.feature-card {
    background: var(--card-bg);
    padding: 36px 32px;
    transition: background 0.2s;
    position: relative;
    border-radius: 0;
    border: none;
    backdrop-filter: none;
    overflow: visible;
}

.feature-card::before { display: none; }

.feature-card:hover {
    background: #141420;
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

/* Monospace card numbers */
.card-num {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    opacity: 0.6;
    margin-bottom: 24px;
}

.feature-icon {
    width: 36px;
    height: 36px;
    color: var(--text-secondary);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: none;
    border-radius: 0;
    transition: color 0.2s;
}

.feature-card:hover .feature-icon {
    color: var(--accent);
    transform: none;
    box-shadow: none;
}

.feature-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 12px;
    color: var(--text-primary);
    position: static;
    z-index: auto;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.875rem;
    position: static;
    z-index: auto;
}

/* ─── WHY US ──────────────────────────────────── */

.why-us {
    padding: 120px 8%;
    display: flex;
    align-items: flex-start;
    gap: 100px;
    position: relative;
    z-index: 1;
}

.why-content { flex: 1; }

.why-content h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3.6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 20px;
    background: none;
    -webkit-text-fill-color: var(--text-primary);
}

.why-content > p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.78;
    max-width: 480px;
}

.why-list {
    display: grid;
    gap: 0;
    margin-top: 48px;
    border-top: 1px solid var(--border);
}

.why-item {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    background: transparent;
    border-radius: 0;
    border-left: none;
    border-right: none;
    transition: none;
    backdrop-filter: none;
}

.why-item:hover {
    transform: none;
    background: transparent;
    border-color: var(--border);
}

/* Replace fa-check-circle with a simple monospace marker */
.check-icon {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--accent);
    margin-top: 5px;
    flex-shrink: 0;
    width: 28px;
    letter-spacing: 0;
    transition: none;
}

.why-item:hover .check-icon { transform: none; }

.why-item h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.why-item p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.68;
}

/* Why-us image */
.why-visual {
    flex: 1;
    min-width: 0;
    width: 100%;
    max-width: 700px;
    border-radius: 6px;
    border: 1px solid var(--border);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
    display: block;
    background: transparent;
    backdrop-filter: none;
    object-fit: contain;
    align-self: center;
    height: auto;
    margin-top: 0 !important;
}

.why-visual::before { display: none; }

/* ─── FOOTER ──────────────────────────────────── */

footer {
    padding: 44px 8%;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    position: relative;
    z-index: 1;
}

.footer-logo { display: none; }

.social-links {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
    justify-content: flex-start;
}

.social-links a {
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 4px;
    text-decoration: none;
}

.social-links a:hover {
    color: var(--text-primary);
    border-color: rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.03);
}

.copyright {
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-secondary);
    font-size: 0.7rem;
    line-height: 1.7;
    letter-spacing: 0.02em;
    text-align: right;
}

/* ─── MOBILE MENU ─────────────────────────────── */

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 1rem;
    cursor: pointer;
    padding: 7px 12px;
    border-radius: 4px;
    transition: border-color 0.2s;
}

.mobile-menu-btn:hover { border-color: rgba(255,255,255,0.2); }

/* Mobile menu panel (oculto por defecto; solo se usa en <= 968px) */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 14px 8% 20px;
    background: rgba(11, 11, 16, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    z-index: 999;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.mobile-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 14px 4px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--text-primary); }

.mobile-menu a.mm-cta {
    border-bottom: none;
    color: #fff;
    background: linear-gradient(135deg, #6c77ff 0%, var(--accent) 100%);
    border-radius: 6px;
    justify-content: center;
    margin-top: 12px;
    padding: 12px;
}

/* ─── AESTHETIC ENHANCEMENTS ──────────────────── */

/* Hero kicker row (status pill + command badge) */
.hero-kickers {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
    animation: heroIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-kickers .cmd-tag { margin-bottom: 0; }

/* ─── HERO MOCKUP (bracket card) ──────────────── */

.hero-mockup {
    background: linear-gradient(160deg, #14141e 0%, #0d0d14 100%);
    padding: 0;
    overflow: hidden;
    max-width: 600px;
    align-self: center;
    height: auto;
}

.mockup-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 13px 18px;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
}

.mockup-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #2a2a36;
}

.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #febc2e; }
.mockup-dot:nth-child(3) { background: #28c840; }

.mockup-bar-title {
    margin-left: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 7px;
}

.mockup-bar-title i { color: var(--accent); }

.mockup-bracket {
    display: flex;
    align-items: center;
    gap: 26px;
    padding: 34px 26px;
}

.bracket-round {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    flex: 1;
    min-width: 0;
}

.bracket-round-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-secondary);
    text-align: center;
}

.bracket-match {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: #15151f;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px;
}

.bm-team {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 7px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid transparent;
}

.bm-team span:first-child {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bm-team.win {
    color: var(--text-primary);
    background: rgba(88, 101, 242, 0.12);
    border-color: rgba(88, 101, 242, 0.32);
    font-weight: 600;
}

.bm-score {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    opacity: 0.75;
    flex-shrink: 0;
}

.bm-team.win .bm-score { color: var(--accent); opacity: 1; }

.champion-col { flex: 0 0 auto; }

.champion-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 20px;
    border-radius: 10px;
    background: linear-gradient(160deg, rgba(255, 215, 0, 0.13), rgba(255, 215, 0, 0.02));
    border: 1px solid rgba(255, 215, 0, 0.32);
    color: #ffd86b;
    font-weight: 700;
    font-size: 0.82rem;
    text-align: center;
    white-space: nowrap;
}

.champion-card i { font-size: 1.3rem; }

/* ─── WHY-US MOCKUP (mensaje de Discord) ──────── */
.why-mockup {
    background: linear-gradient(160deg, #14141e 0%, #0d0d14 100%);
    padding: 22px 24px 26px;
    height: auto;
    overflow: hidden;
}

.dc-channel {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-secondary);
    padding-bottom: 14px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--border);
    letter-spacing: 0.03em;
}

.dc-message { display: flex; gap: 16px; }

.dc-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6c77ff, var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.dc-body { flex: 1; min-width: 0; }

.dc-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.dc-name { color: var(--text-primary); font-weight: 600; font-size: 0.95rem; }

.dc-bot {
    background: var(--accent);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 1px 5px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.dc-time { color: var(--text-secondary); font-size: 0.7rem; }

.dc-embed {
    border-left: 4px solid var(--accent);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    padding: 14px 16px;
    max-width: 440px;
}

.dc-embed-title { color: var(--text-primary); font-weight: 700; font-size: 0.95rem; margin-bottom: 6px; }
.dc-embed-desc { color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 14px; }

.dc-embed-fields { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 12px; }
.dc-field { display: flex; flex-direction: column; gap: 3px; }
.dc-field-name { color: var(--text-primary); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.dc-field-val { color: var(--text-secondary); font-size: 0.82rem; }

.dc-embed-footer { color: var(--text-secondary); font-size: 0.68rem; opacity: 0.7; font-family: 'JetBrains Mono', monospace; }

.dc-reactions { display: flex; gap: 8px; margin-top: 12px; }
.dc-react {
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.25);
    border-radius: 8px;
    padding: 3px 10px;
    font-size: 0.78rem;
    color: var(--text-secondary);
}

/* Monospace section kicker label */
.kicker {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent);
    margin-bottom: 16px;
    position: relative;
    padding-left: 26px;
}

.kicker::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 18px;
    height: 1px;
    background: var(--accent);
    opacity: 0.6;
}

.section-heading { flex-shrink: 0; }
.section-heading h2 { margin: 0; }

/* Subtle accent glow behind the hero image */
.hero-card {
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5),
                0 0 70px rgba(88, 101, 242, 0.1);
}

/* Feature card: reveal accent top line + icon box */
.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent 80%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.feature-card:hover::after { transform: scaleX(1); }

.feature-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.015);
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.feature-card:hover .feature-icon {
    border-color: rgba(88, 101, 242, 0.4);
    background: rgba(88, 101, 242, 0.08);
}

/* CTA band before footer */
.cta-band {
    padding: 110px 8%;
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    background:
        radial-gradient(ellipse at 50% 0%, rgba(88, 101, 242, 0.12) 0%, transparent 60%),
        var(--bg-secondary);
    text-align: center;
}

.cta-band-inner {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-band .kicker { padding-left: 0; }
.cta-band .kicker::before { display: none; }

.cta-band h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3.4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.02;
    color: var(--text-primary);
    margin-bottom: 18px;
}

.cta-band p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 36px;
}

/* ─── RESPONSIVE ──────────────────────────────── */

@media (max-width: 1200px) {
    .hero h1 { font-size: 4.8rem; }
    .section-header h2,
    .why-content h2 { font-size: 3rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 968px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    /* En móvil el header solo muestra el logo y la hamburguesa */
    .navbar .cta-btn { display: none; }
    .mobile-menu { display: flex; }

    .hero {
        flex-direction: column;
        padding: 140px 6% 80px;
        gap: 48px;
        overflow: visible;
    }

    .hero-content { flex: none; width: 100%; }

    .hero h1 { font-size: 4rem; }
    .hero-card {
        width: 100%;
        max-width: none;
        border-radius: 6px;
        border: 1px solid var(--border);
        align-self: auto;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .section-header p {
        text-align: left;
        max-width: none;
    }

    .why-us {
        flex-direction: column;
        gap: 60px;
    }
    .why-visual {
        max-width: 100%;
        width: 100%;
    }

    footer {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    .copyright { text-align: center; }
    .social-links { justify-content: center; }
}

@media (max-width: 640px) {
    .hero h1 { font-size: 3.2rem; }
    .hero p { font-size: 1rem; }
    .section-header h2,
    .why-content h2 { font-size: 2.4rem; }
    .cta-band { padding: 80px 6%; }
    .cta-band h2 { font-size: 2.4rem; }
    .mockup-bracket { gap: 14px; padding: 22px 14px; }
    .bracket-round { gap: 16px; }
    .champion-col { display: none; }
    /* Ocultar la estadística "24/7 Online" en móvil */
    .hero-stats .stat-online { display: none; }
    .hero-stats .stat-item:nth-child(2) { border-right: none; margin-right: 0; padding-right: 0; }
    .features-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: flex-start; }
    .cta-band .hero-buttons { align-items: stretch; }
    .btn-large { width: 100%; justify-content: center; }
}

/* ─── SCROLL ANIMATIONS ───────────────────────── */

.fade-in {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}