/*
Theme Name: Ghosstless
Author: Seb
Description: Theme for Ghosstless OS based on user mockup
Version: 2.0
*/

/* ===================================================
   1. RESET Y GLOBALES
   =================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: #07090e;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    overflow-x: hidden;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===================================================
   2. HEADER & NAVEGACIÓN
   =================================================== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 5%;
    background: rgba(7, 9, 14, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    position: fixed;
    width: 100%;
    top: 38px;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.logo-container a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo-container img {
    height: 52px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.25s ease;
}
.nav-chevron { margin-left: 4px; color: #d7dce5; font-size: 15px; }

nav ul li a:hover, nav ul li a.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #94a3b8;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.search-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(168, 85, 247, 0.5);
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(168, 85, 247, 0.3);
}

.btn-download {
    background: linear-gradient(90deg, #6366f1, #a855f7);
    color: #ffffff !important;
    padding: 10px 22px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    transition: all 0.25s ease;
}

.btn-download:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
}

/* ===================================================
   3. HERO PRINCIPAL (HOME)
   =================================================== */
.hero-section {
    min-height: 100vh;
    background: url('./assets/final-bg.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: scroll;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 148px 5% 30px 5%;
    position: relative;
    box-sizing: border-box;
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(7, 9, 14, 0.88) 0%, rgba(7, 9, 14, 0.55) 45%, rgba(7, 9, 14, 0.15) 100%),
                linear-gradient(to top, rgba(7, 9, 14, 0.95) 0%, rgba(7, 9, 14, 0) 25%);
    z-index: 1;
    pointer-events: none;
}

.hero-main-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1320px;
    margin: auto auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    max-width: 620px;
}

.tagline {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #818cf8;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: inline-block;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.highlight-linux {
    background: linear-gradient(90deg, #a855f7, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-os {
    color: #818cf8;
}

.hero-description {
    font-size: 17.5px;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0 0 32px 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(90deg, #6366f1, #a855f7);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.45);
    transition: all 0.25s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(99, 102, 241, 0.6);
    color: #ffffff;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(18, 22, 38, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 14px;
    text-decoration: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.25s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
}

.btn-icon {
    font-size: 20px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-text strong {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.btn-text small {
    font-size: 11.5px;
    opacity: 0.8;
    font-weight: 400;
}

.hero-quote {
    font-size: 14.5px;
    font-style: italic;
    color: #94a3b8;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* ===================================================
   4. TERMINAL NEOFETCH FLOTANTE (ORIGINAL DEL MOCKUP)
   =================================================== */
.hero-terminal-container {
    flex: 1;
    max-width: 440px;
    display: flex;
    justify-content: flex-end;
}

.neofetch-window {
    width: 100%;
    background: rgba(10, 13, 26, 0.88);
    border: 1px solid rgba(120, 150, 255, 0.35);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75), 0 0 35px rgba(99, 102, 241, 0.22);
    font-family: 'JetBrains Mono', 'Fira Code', Consolas, Monaco, monospace;
    font-size: 12px;
}

.terminal-titlebar {
    background: rgba(20, 26, 50, 0.85);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.terminal-dots {
    display: flex;
    gap: 7px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.terminal-title-text {
    position: absolute;
    width: 100%;
    left: 0;
    text-align: center;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 600;
    pointer-events: none;
}

.terminal-body {
    padding: 16px;
}

.terminal-grid {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
}

.terminal-ascii {
    color: #38bdf8;
    flex-shrink: 0;
}

.ghost-ascii {
    margin: 0;
    font-size: 11px;
    line-height: 1.1;
    font-weight: 700;
    filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.4));
}

.terminal-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.term-line {
    font-size: 11.5px;
    color: #e2e8f0;
}

.term-bold {
    font-weight: 700;
}

.term-cyan {
    color: #38bdf8;
}

.term-dim {
    color: #64748b;
}

.terminal-meters {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.meter-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.meter-label {
    width: 38px;
    font-size: 11px;
    color: #94a3b8;
    font-weight: 600;
}

.meter-bar {
    flex: 1;
    height: 7px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.6s ease;
}

.fill-cyan { background: #38bdf8; box-shadow: 0 0 8px rgba(56, 189, 248, 0.6); }
.fill-purple { background: #a855f7; box-shadow: 0 0 8px rgba(168, 85, 247, 0.6); }
.fill-green { background: #34d399; box-shadow: 0 0 8px rgba(52, 211, 153, 0.6); }

.meter-val {
    width: 32px;
    text-align: right;
    font-size: 11px;
    color: #cbd5e1;
}

.terminal-prompt {
    font-size: 11.5px;
    color: #cbd5e1;
}

.prompt-user {
    color: #34d399;
}

.prompt-path {
    color: #38bdf8;
}

.term-cursor {
    display: inline-block;
    color: #38bdf8;
    font-weight: 700;
    animation: termBlink 1s step-start infinite;
}

@keyframes termBlink {
    50% { opacity: 0; }
}

/* ===================================================
   5. BARRA DE CARACTERÍSTICAS (5 ITEMS COMPLETOS)
   =================================================== */
.features-dock-wrapper {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1320px;
    margin: 10px auto 0 auto;
}

.features-dock {
    background: rgba(12, 16, 32, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    padding: 22px 28px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.dock-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 10px;
    border-radius: 12px;
    transition: all 0.25s ease;
}

.dock-item:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

.dock-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.dock-text h4 {
    margin: 0;
    font-size: 14.5px;
    font-weight: 700;
    color: #ffffff;
}

.dock-text p {
    margin: 4px 0 0 0;
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.4;
}

/* ===================================================
   6. PÁGINAS INTERNAS GENERALES (COMUNIDAD, DOCS)
   =================================================== */
.internal-page {
    min-height: calc(100vh - 120px);
    padding: 120px 5% 50px 5%;
    background: #07090e;
}

.page-container {
    max-width: 960px;
    margin: 0 auto;
    background: rgba(14, 18, 32, 0.7);
    padding: 44px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.page-title {
    font-size: 38px;
    margin-top: 0;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-content {
    font-size: 16px;
    line-height: 1.7;
    color: #cbd5e1;
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 28px;
    margin-bottom: 28px;
}

.glass-card {
    background: rgba(20, 26, 50, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 18px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-4px);
    background: rgba(25, 33, 64, 0.75);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(168, 85, 247, 0.15);
}

.glass-card h3 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 20px;
}

.glass-card p {
    margin: 0;
    color: #94a3b8;
    line-height: 1.6;
}

.btn-massive {
    display: inline-block;
    background: linear-gradient(90deg, #6366f1, #a855f7);
    color: #ffffff !important;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.45);
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-massive:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 14px 35px rgba(99, 102, 241, 0.65);
}

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

/* ===================================================
   7. PÁGINA ESPECÍFICA: CARACTERÍSTICAS
   =================================================== */
.specs-hero {
    min-height: 100vh;
    background: url('./assets/room-bg.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 6% 60px 6%;
    position: relative;
    box-sizing: border-box;
}

.specs-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 35% 50%, rgba(7, 10, 24, 0.65) 0%, rgba(5, 7, 14, 0.92) 100%);
    z-index: 1;
    pointer-events: none;
}

.specs-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.specs-card {
    flex: 1.25;
    max-width: 720px;
    background: rgba(13, 17, 36, 0.82);
    border: 1.5px solid rgba(120, 150, 255, 0.45);
    border-radius: 28px;
    padding: 38px 44px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 50px rgba(99, 102, 241, 0.22), inset 0 0 25px rgba(120, 160, 255, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.specs-tagline {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #818cf8;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.specs-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.18;
    margin: 0 0 12px 0;
    color: #ffffff;
}

.highlight-cyan {
    background: linear-gradient(90deg, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-purple {
    background: linear-gradient(90deg, #a855f7, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.specs-subtitle {
    font-size: 15px;
    color: #94a3b8;
    margin: 0 0 28px 0;
    line-height: 1.5;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.spec-col {
    background: rgba(22, 28, 58, 0.6);
    border: 1px solid rgba(140, 170, 255, 0.22);
    border-radius: 20px;
    padding: 22px 24px;
    transition: all 0.25s ease;
}

.spec-col:hover {
    transform: translateY(-4px);
    border-color: rgba(160, 190, 255, 0.5);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5), 0 0 20px rgba(99, 102, 241, 0.25);
}

.spec-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.spec-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.spec-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spec-icon-cyan {
    background: rgba(56, 189, 248, 0.15);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.35);
}

.spec-icon-purple {
    background: rgba(168, 85, 247, 0.15);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.35);
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
    font-size: 13.5px;
    color: #cbd5e1;
}

.spec-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 900;
    flex-shrink: 0;
}

.check-cyan {
    background: rgba(56, 189, 248, 0.22);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.5);
}

.check-purple {
    background: rgba(168, 85, 247, 0.22);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.5);
}

.specs-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-specs-action {
    background: linear-gradient(90deg, #6366f1, #a855f7);
    color: #ffffff !important;
    padding: 14px 32px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.42), 0 0 20px rgba(168, 85, 247, 0.32);
    transition: all 0.25s ease;
}

.btn-specs-action:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 14px 32px rgba(99, 102, 241, 0.6), 0 0 32px rgba(168, 85, 247, 0.5);
}

.specs-badge {
    background: rgba(30, 41, 75, 0.65);
    border: 1px solid rgba(96, 165, 250, 0.35);
    border-radius: 20px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #93c5fd;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.specs-mascot {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.penguin-pointing-hero {
    max-width: 490px;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 40px rgba(99, 102, 241, 0.45));
    animation: gentlePulse 4s ease-in-out infinite alternate;
}

@keyframes gentlePulse {
    from {
        transform: translateY(0px) scale(1);
    }
    to {
        transform: translateY(-8px) scale(1.015);
    }
}

/* ===================================================
   8. FOOTER GHOSSTLESS SECURITY (ADAPTADO AL TONO EXACTO)
   =================================================== */
.site-footer {
    background: #080a11;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 28px 5%;
    position: relative;
    z-index: 10;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.6);
}

.footer-container {
    max-width: 1420px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-col-left {
    flex: 1.2;
    max-width: 460px;
}

.footer-legal {
    margin: 0;
    font-size: 12px;
    color: #8b9bb4;
    line-height: 1.6;
}

.footer-legal a {
    color: #c084fc;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-col-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo {
    height: 48px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.6));
    transition: transform 0.25s ease;
}

.footer-logo:hover {
    transform: scale(1.04);
}

.footer-col-right {
    flex: 1.2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-link {
    color: #94a3b8;
    opacity: 0.85;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    opacity: 1;
    transform: translateY(-2px);
    color: #a855f7;
    filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.5));
}

/* ===================================================
   9. SISTEMA RESPONSIVE PROFESIONAL (TODOS LOS DISPOSITIVOS)
   =================================================== */
/* Laptops & Pantallas Medianas (1025px a 1250px) */
@media (max-width: 1250px) {
    .features-dock {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
    .hero-title {
        font-size: 50px;
    }
}

/* Tablets Landscape & Tablets Grandes (769px a 1024px) */
@media (max-width: 1024px) {
    .hero-section {
        padding-top: 100px;
    }
    
    .hero-main-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-terminal-container {
        max-width: 520px;
        width: 100%;
        margin: 20px auto 0 auto;
        justify-content: center;
    }

    .features-dock {
        grid-template-columns: repeat(2, 1fr);
    }

    .specs-container {
        flex-direction: column;
        text-align: center;
    }

    .specs-card {
        max-width: 100%;
    }

    .specs-actions {
        justify-content: center;
    }
}

/* Tablets Portrait & Teléfonos Grandes (481px a 768px) */
@media (max-width: 768px) {
    header {
        padding: 12px 18px;
        flex-wrap: wrap;
    }

    .logo-container img {
        height: 40px;
    }

    nav {
        order: 3;
        width: 100%;
        margin-top: 10px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
    }

    nav ul {
        gap: 8px;
        white-space: nowrap;
    }

    nav ul li a {
        font-size: 13.5px;
        padding: 6px 10px;
    }

    .btn-download {
        padding: 8px 16px;
        font-size: 12.5px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-description {
        font-size: 15.5px;
    }

    .features-dock {
        grid-template-columns: 1fr;
        padding: 18px 20px;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .specs-card {
        padding: 26px 20px;
    }

    .specs-title {
        font-size: 30px;
    }

    .page-container {
        padding: 24px 18px;
    }

    .page-title {
        font-size: 28px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 18px;
    }

    .footer-col-left {
        max-width: 100%;
        order: 2;
    }

    .footer-col-center {
        order: 1;
    }

    .footer-col-right {
        order: 3;
        justify-content: center;
    }
}

/* Prioridad final: panel de accesibilidad neón. */
.accessibility-launcher { width:68px; height:68px; padding:0; overflow:hidden; background:#061632; border:2px solid #57d7ff; box-shadow:0 0 0 3px rgba(122,78,255,.7),0 12px 30px rgba(0,0,0,.48),0 0 22px rgba(30,169,255,.78); }
.accessibility-launcher img { width:100%; height:100%; object-fit:cover; transform:scale(1.22); }
.accessibility-panel { width:min(330px,calc(100vw - 44px)); bottom:102px; overflow:hidden; color:#e7efff; background:linear-gradient(145deg,rgba(11,27,66,.98),rgba(5,13,37,.98)); border:1px solid #6c61ff; border-radius:17px; box-shadow:0 0 0 1px rgba(52,195,255,.32),0 20px 54px rgba(0,0,0,.58),inset 0 1px 0 rgba(255,255,255,.12); }
.accessibility-heading { display:grid; grid-template-columns:50px 1fr auto; gap:10px; align-items:center; padding:15px 17px; background:transparent; border-bottom:1px solid rgba(140,180,255,.18); }
.accessibility-heading > img { width:44px; height:44px; object-fit:cover; border:1px solid #38bdf8; border-radius:50%; box-shadow:0 0 14px rgba(56,189,248,.75); transform:scale(1.08); }
.accessibility-heading h2, .accessibility-heading h2 + p, .accessibility-voice h3 { color:#fff; }
.accessibility-heading h2 { margin:0; font-size:17px; }.accessibility-heading p { margin:2px 0 0; color:#8fa4c8; font-size:11px; }.accessibility-close { padding:0; color:#d7e3ff; background:transparent; }
.accessibility-body { padding:0 17px 6px; }.a11y-section { padding:13px 0; border-bottom:1px solid rgba(140,180,255,.14); }.a11y-section:last-child { border:0; }
.a11y-section h3 { margin:0; display:flex; gap:10px; align-items:center; color:#f6f8ff; font-size:14px; }.a11y-section h3 span { color:#52d5ff; font-size:19px; }.a11y-section > p { margin:3px 0 10px 29px; color:#8396b8; font-size:10.5px; }
.a11y-label { display:block; margin:0 0 6px; color:#c5d2ea; font-size:11px; }.a11y-size-control { display:grid; grid-template-columns:1fr 1.3fr 1fr; overflow:hidden; border:1px solid rgba(105,129,201,.28); border-radius:8px; background:rgba(47,66,119,.35); }.a11y-size-control button { height:32px; color:#dbe8ff; background:transparent; border:0; font-weight:700; cursor:pointer; }.a11y-size-control button.is-active { color:#fff; background:linear-gradient(135deg,#5656db,#3934b6); box-shadow:inset 0 0 0 1px #8488ff,0 0 12px rgba(91,92,255,.52); }
.a11y-switch-row { width:100%; min-height:28px; padding:4px 0; display:flex; align-items:center; justify-content:space-between; color:#c1cee5; background:transparent; border:0; font:12px 'Inter',sans-serif; text-align:left; cursor:pointer; }.a11y-switch-row i { position:relative; width:32px; height:18px; flex:0 0 auto; background:#26365d; border:1px solid rgba(135,160,220,.26); border-radius:12px; }.a11y-switch-row i::after { content:''; position:absolute; top:2px; left:2px; width:12px; height:12px; background:#fff; border-radius:50%; box-shadow:0 1px 4px rgba(0,0,0,.45); transition:.2s ease; }.a11y-switch-row.is-active { color:#fff; }.a11y-switch-row.is-active i { background:linear-gradient(90deg,#297df4,#8755fa); box-shadow:0 0 10px rgba(71,143,255,.48); }.a11y-switch-row.is-active i::after { transform:translateX(14px); }
.accessibility-voice { padding:13px 0 3px; border:0; }.voice-controls { gap:5px; margin:5px 0 8px; }.voice-controls button { padding:7px 8px; color:#dbe7ff; background:rgba(36,57,109,.54); border:1px solid #466bbd; border-radius:7px; font-size:11px; }.accessibility-voice label { display:grid; grid-template-columns:70px 1fr; align-items:center; gap:4px; margin:6px 0; color:#b9c8e1; font-size:11px; }.accessibility-voice select { width:100%; margin:0; padding:6px 8px; color:#dce8ff; background:rgba(9,22,55,.7); border-color:#294a91; border-radius:6px; font-size:11px; }.accessibility-voice .voice-note { margin:8px 0 0; color:#7cb5e6; font-size:10px; }.accessibility-reset { width:calc(100% - 34px); min-height:35px; margin:7px 17px 16px; color:#81cbff; background:rgba(12,30,69,.5); border:1px solid #4e9fec; border-radius:8px; font-size:11px; }
@media (max-width:768px) { .accessibility-launcher { width:62px; height:62px; } .accessibility-panel { bottom:88px; } }

/* Páginas de comunidad y documentación */
.hub-page { min-height: 100svh; padding: 180px 5% 110px; color: #f8fafc; background: radial-gradient(circle at 15% 10%, rgba(126, 68, 211, .22), transparent 32%), #07090e; }
.hub-hero { max-width: 850px; margin: 0 auto 58px; text-align: center; }
.hub-kicker { margin: 0 0 16px; color: #c084fc; font: 700 12px/1.2 'Fira Code', monospace; letter-spacing: .16em; }
.hub-hero h1 { max-width: 750px; margin: 0 auto; font-size: clamp(42px, 7vw, 82px); line-height: 1; letter-spacing: -.06em; }
.hub-hero > p:last-of-type { max-width: 650px; margin: 24px auto 0; color: #aab8ce; font-size: clamp(16px, 2vw, 20px); line-height: 1.65; }
.hub-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hub-actions .btn-primary, .hub-actions .btn-secondary { min-width: 210px; padding: 14px 20px; text-decoration: none; }
.hub-grid, .docs-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 1240px; margin: auto; gap: 14px; }
.hub-grid article, .docs-grid a { min-height: 280px; padding: 30px; color: inherit; background: linear-gradient(145deg, rgba(29, 23, 43, .82), rgba(7, 9, 14, .9)); border: 1px solid rgba(255,255,255,.11); border-radius: 20px; box-shadow: 0 18px 40px rgba(0,0,0,.18); transition: transform .25s cubic-bezier(.16,1,.3,1), border-color .25s ease, box-shadow .25s ease; }
.hub-grid article:hover, .docs-grid a:hover { transform: translateY(-5px); border-color: rgba(192,132,252,.55); box-shadow: 0 22px 45px rgba(0,0,0,.32), 0 0 24px rgba(168,85,247,.14); }
.hub-grid span, .docs-grid span { color: #c084fc; font: 700 13px 'Fira Code', monospace; letter-spacing: .12em; }
.hub-grid h2, .docs-grid h2 { margin: 48px 0 12px; font-size: clamp(23px, 2vw, 30px); letter-spacing: -.035em; }
.hub-grid p, .docs-grid p { margin: 0; color: #aab8ce; line-height: 1.7; }
.docs-grid a { text-decoration: none; }
.docs-grid span { display: block; font-size: 28px; }
.docs-grid h2 { margin-top: 42px; }
.demo-trigger { cursor: pointer; font: inherit; text-align: left; }
.demo-trigger span, .demo-trigger small { display: block; }
.mobile-menu-toggle { display: none; }
@media (max-width: 900px) { .hub-grid, .docs-grid { grid-template-columns: 1fr; max-width: 640px; } .hub-grid article, .docs-grid a { min-height: 210px; } }
@media (max-width: 900px) {
    header { padding: 10px 16px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; }
    .logo-container { width: 64px; }
    .logo-container a { width: 205px; }
    .logo-container img { width: 205px; max-width: none; }
    .mobile-menu-toggle { justify-self: end; display: inline-flex; align-items: center; gap: 7px; min-height: 40px; padding: 0 14px; color: #f8fafc; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.13); border-radius: 12px; font: 700 13px 'Inter', sans-serif; cursor: pointer; }
    .mobile-menu-toggle:hover, .mobile-menu-toggle[aria-expanded="true"] { border-color: rgba(192,132,252,.55); background: rgba(168,85,247,.17); }
    header nav { position: absolute; top: calc(100% + 8px); left: 14px; right: 14px; z-index: 10; width: auto; max-height: calc(100svh - 140px); margin: 0; padding: 10px; display: none; overflow: auto; background: rgba(10,10,16,.98); border: 1px solid rgba(192,132,252,.3); border-radius: 16px; box-shadow: 0 24px 60px rgba(0,0,0,.58); backdrop-filter: blur(20px); }
    header nav.is-open { display: block; }
    header nav ul { width: 100%; margin: 0; display: grid; gap: 4px; white-space: normal; }
    header nav ul li a { display: block; width: 100%; padding: 12px 14px; border-radius: 10px; font-size: 14px; }
    .header-actions { gap: 8px; }
    .hub-page { padding-top: 145px; }
}
@media (max-width: 600px) { .hub-page { padding: 130px 5% 76px; } .hub-hero { text-align: left; } .hub-hero h1 { font-size: clamp(38px, 13vw, 58px); } .hub-hero > p:last-of-type { margin-left: 0; } .hub-actions { justify-content: stretch; } .hub-actions .btn-primary, .hub-actions .btn-secondary { width: 100%; text-align: center; } .hub-grid article, .docs-grid a { padding: 24px; border-radius: 17px; } .demo-modal { padding: 12px; } .demo-modal-panel { padding: 18px; } .demo-modal-panel h2 { padding-right: 26px; font-size: 18px; } }

/* ===================================================
   13. TESTIMONIOS INFINITOS
   =================================================== */
.gh-testimonials { overflow: hidden; padding: 108px 0 116px; color: #f8fafc; background: #050505; border-top: 1px solid rgba(255,255,255,.07); }
.gh-testimonials-heading { max-width: 800px; margin: 0 auto 68px; padding: 0 24px; text-align: center; }
.gh-eyebrow { margin: 0 0 16px; color: #a855f7; font-size: 11px; font-weight: 800; letter-spacing: .22em; }
.gh-testimonials-heading h2 { margin: 0; font-size: clamp(32px, 4vw, 52px); line-height: 1.08; letter-spacing: -.045em; }
.gh-testimonials-heading > p:last-child { max-width: 650px; margin: 25px auto 0; color: #91a0b5; font-size: 18px; line-height: 1.65; }
.gh-marquee { width: 100%; overflow: hidden; margin-top: 20px; mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent); }
.gh-marquee-track { display: flex; width: max-content; animation: gh-marquee-left 48s linear infinite; }
.gh-marquee-reverse { animation-name: gh-marquee-right; animation-duration: 54s; }
.gh-testimonial-card { width: 320px; min-height: 252px; margin: 0 10px; padding: 26px 20px; flex: 0 0 320px; box-sizing: border-box; background: rgba(5,5,5,.96); border: 1px solid rgba(148,163,184,.22); border-radius: 15px; }
.gh-testimonial-user { display: flex; align-items: center; gap: 12px; }
.gh-avatar { display: grid; width: 40px; height: 40px; place-items: center; flex: 0 0 40px; color: #fff; background: linear-gradient(135deg, #a855f7, #06b6d4 85%); border-radius: 50%; font-size: 15px; font-weight: 800; }
.gh-testimonial-user strong, .gh-testimonial-user small { display: block; }
.gh-testimonial-user strong { font-size: 16px; }
.gh-testimonial-user small { margin-top: 3px; color: #778399; font-size: 13px; }
.gh-testimonial-card > p { margin: 25px 0 0; color: #d8dee8; font-size: 16px; line-height: 1.72; }
@keyframes gh-marquee-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes gh-marquee-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.a11y-pause .gh-marquee-track { animation-play-state: paused; }
@media (max-width: 640px) { .gh-testimonials { padding: 78px 0 84px; } .gh-testimonials-heading { margin-bottom: 46px; } .gh-testimonials-heading > p:last-child { font-size: 15px; } .gh-testimonial-card { width: 286px; flex-basis: 286px; min-height: 230px; } }
.gh-community-progress { padding: 110px 5% 105px; color:#f8fafc; background:#050505; border-top:1px solid rgba(255,255,255,.07); }.gh-progress-heading { max-width:900px; margin:0 auto 55px; text-align:center; }.gh-progress-heading h2 { margin:0; font-size:clamp(32px,4vw,52px); letter-spacing:-.045em; }.gh-progress-heading > p:last-child { margin:22px auto 0; color:#91a0b5; font-size:18px; }.gh-progress-grid { display:grid; grid-template-columns:repeat(3,1fr); max-width:1320px; margin:auto; border:1px solid rgba(148,163,184,.22); }.gh-progress-card,.gh-progress-empty { min-height:245px; padding:29px; border-right:1px solid rgba(148,163,184,.22); border-bottom:1px solid rgba(148,163,184,.22); background:linear-gradient(145deg,rgba(16,16,24,.5),rgba(3,3,5,.9)); }.gh-progress-card:nth-child(3n) { border-right:0; }.gh-progress-icon { color:#a855f7; font-size:25px; }.gh-progress-date { margin:13px 0 8px; color:#8b5cf6; font-size:12px; font-weight:700; text-transform:uppercase; }.gh-progress-card h3,.gh-progress-empty h3 { margin:0 0 12px; font-size:21px; }.gh-progress-content { color:#aebbd0; line-height:1.65; }.gh-iso-version { display:inline-block; margin-top:18px; padding:5px 9px; color:#d8b4fe; border:1px solid rgba(168,85,247,.45); border-radius:5px; font-size:12px; }.gh-iso-download { display:block; margin-top:18px; color:#c084fc; font-weight:700; text-decoration:none; }.gh-iso-download:hover { color:#fff; }@media(max-width:800px){.gh-progress-grid{grid-template-columns:1fr}.gh-progress-card,.gh-progress-empty{border-right:0}.gh-progress-heading > p:last-child{font-size:15px}}
.gh-community-stats { padding: 105px 5% 115px; color:#f8fafc; background:#050505; border-top:1px solid rgba(255,255,255,.07); }.gh-stats-heading { max-width:820px; margin:0 auto 55px; text-align:center; }.gh-stats-heading h2 { margin:0; font-size:clamp(32px,4vw,52px); line-height:1.1; letter-spacing:-.045em; }.gh-stats-heading > p:last-child { margin:22px auto 0; color:#91a0b5; font-size:18px; line-height:1.6; }.gh-stats-grid { display:grid; grid-template-columns:repeat(4,1fr); max-width:1320px; margin:auto; gap:12px; }.gh-stats-grid article { min-height:310px; padding:30px; display:flex; flex-direction:column; border:1px solid rgba(148,163,184,.2); border-radius:18px; background:linear-gradient(145deg,rgba(20,20,28,.7),rgba(5,5,7,.95)); background-image:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(145deg,rgba(20,20,28,.7),rgba(5,5,7,.95)); background-size:25px 25px,25px 25px,auto; }.gh-stats-grid h3 { margin:0 0 23px; font-size:19px; }.gh-stats-grid p { margin:0; color:#aebbd0; font-size:16px; line-height:1.75; }.gh-stats-grid strong { margin-top:auto; color:#fff; font-size:30px; letter-spacing:.04em; }@media(max-width:900px){.gh-stats-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:560px){.gh-community-stats{padding:78px 6% 85px}.gh-stats-grid{grid-template-columns:1fr}.gh-stats-grid article{min-height:230px}.gh-stats-heading > p:last-child{font-size:15px}}

/* Compatibilidad con la portada actual */
.hero { position: relative; min-height: 690px; padding: 185px 5% 90px; display: flex; align-items: center; background: url('./assets/final-bg.jpg') center/cover no-repeat; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,9,14,.92), rgba(7,9,14,.58) 54%, rgba(7,9,14,.18)); pointer-events: none; }
.hero-content { position: relative; z-index: 1; width: 100%; max-width: 650px; }
.hero h1 { margin: 0 0 22px; font-size: clamp(44px, 5vw, 68px); line-height: 1.08; letter-spacing: -.04em; }
.hero h1 .highlight { position: relative; display: inline-block; color: #a855f7; }
.hero h1 .highlight::after,
.hero h1 .highlight::before { content: ''; position: absolute; left: -5%; width: 110%; height: 24px; border-top: 4px solid rgba(255,255,255,.96); border-radius: 50%; pointer-events: none; }
.hero h1 .highlight::after { bottom: -7px; transform: rotate(-3deg); }
.hero h1 .highlight::before { bottom: -3px; left: 1%; width: 104%; border-top-width: 2px; transform: rotate(2deg); opacity: .82; }
.hero-content > p { margin: 0 0 32px; color: #cbd5e1; font-size: 18px; line-height: 1.65; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 18px; }
.hero-buttons .btn-primary, .hero-buttons .btn-secondary { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 2px; padding: 14px 28px; }
.hero-buttons small { font-size: 11px; opacity: .78; }
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1320px; margin: -1px auto 0; padding: 52px 5% 82px; background: #07090e; }
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon { flex: 0 0 auto; padding-top: 3px; }
.feature-text h4 { margin: 0 0 7px; font-size: 16px; }
.feature-text p { margin: 0; color: #94a3b8; font-size: 14px; line-height: 1.5; }
@media (max-width: 900px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .hero { min-height: 620px; padding: 160px 6% 70px; } .hero-content > p { font-size: 16px; } .features { grid-template-columns: 1fr; padding: 42px 6% 60px; } }
.footer-modern { display:none !important; }

/* Solicitud de demo: mensajes privados en el panel de WordPress. */
.demo-request-card { display: grid; grid-template-columns: minmax(220px, .8fr) minmax(300px, 1.2fr); gap: 32px; margin: 0 0 40px; padding: 32px; background: rgba(15,12,35,.72); border: 1px solid rgba(168,85,247,.45); border-radius: 20px; box-shadow: 0 18px 44px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.1); }
.demo-request-kicker { color: #c084fc; font-size: 12px; font-weight: 800; letter-spacing: 1.5px; }
.demo-request-card h2 { margin: 10px 0; color: #fff; font-size: 28px; line-height: 1.15; }
.demo-request-card p { margin: 0; color: #aebbd0; line-height: 1.55; }
.demo-request-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.demo-request-form label { display: grid; gap: 7px; color: #dbe5f5; font-size: 13px; font-weight: 700; }
.demo-request-form input, .demo-request-form select, .demo-request-form textarea { width: 100%; padding: 11px 12px; color: #f8fafc; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18); border-radius: 9px; font: 14px 'Inter', sans-serif; outline: none; }
.demo-request-form input:focus, .demo-request-form select:focus, .demo-request-form textarea:focus { border-color: #c084fc; box-shadow: 0 0 0 3px rgba(168,85,247,.18); }
.demo-request-form select option { color: #111827; }
.demo-message-field, .demo-request-form .btn-massive { grid-column: 1 / -1; }
.demo-request-form .btn-massive { text-align: center; }
.demo-honeypot { position: absolute; left: -9999px; }
.demo-notice { margin: -14px 0 24px; padding: 14px 17px; border-radius: 11px; font-weight: 700; }
.demo-notice-success { color: #d1fae5; background: rgba(16,185,129,.16); border: 1px solid rgba(52,211,153,.45); }
.demo-notice-error { color: #fee2e2; background: rgba(239,68,68,.14); border: 1px solid rgba(248,113,113,.42); }
@media (max-width: 768px) { .demo-request-card { grid-template-columns: 1fr; padding: 24px 20px; } .demo-request-form { grid-template-columns: 1fr; } .demo-message-field, .demo-request-form .btn-massive { grid-column: auto; } }

/* Panel de accesibilidad: interfaz neón compacta. */
.accessibility-launcher { width: 68px; height: 68px; padding: 0; overflow: hidden; background: #061632; border: 2px solid #57d7ff; box-shadow: 0 0 0 3px rgba(122,78,255,.7), 0 12px 30px rgba(0,0,0,.48), 0 0 22px rgba(30,169,255,.78); }
.accessibility-launcher img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.22); }
.accessibility-panel { width: min(330px, calc(100vw - 44px)); bottom: 102px; overflow: hidden; color: #e7efff; background: linear-gradient(145deg, rgba(11,27,66,.98), rgba(5,13,37,.98)); border: 1px solid #6c61ff; border-radius: 17px; box-shadow: 0 0 0 1px rgba(52,195,255,.32), 0 20px 54px rgba(0,0,0,.58), inset 0 1px 0 rgba(255,255,255,.12); }
.accessibility-heading { display: grid; grid-template-columns: 50px 1fr auto; gap: 10px; align-items: center; padding: 15px 17px; background: transparent; border-bottom: 1px solid rgba(140,180,255,.18); }
.accessibility-heading > img { width: 44px; height: 44px; object-fit: cover; border: 1px solid #38bdf8; border-radius: 50%; box-shadow: 0 0 14px rgba(56,189,248,.75); transform: scale(1.08); }
.accessibility-heading h2 { color: #fff; font-size: 17px; }
.accessibility-heading p { margin: 2px 0 0; color: #8fa4c8; font-size: 11px; }
.accessibility-close { padding: 0; color: #d7e3ff; font-size: 25px; }
.accessibility-body { padding: 0 17px 6px; }
.a11y-section { padding: 13px 0; border-bottom: 1px solid rgba(140,180,255,.14); }
.a11y-section:last-child { border-bottom: 0; }
.a11y-section h3 { margin: 0; display: flex; gap: 10px; align-items: center; color: #f6f8ff; font-size: 14px; }
.a11y-section h3 span { color: #52d5ff; font-size: 19px; }
.a11y-section > p { margin: 3px 0 10px 29px; color: #8396b8; font-size: 10.5px; }
.a11y-label { display: block; margin: 0 0 6px; color: #c5d2ea; font-size: 11px; }
.a11y-size-control { display: grid; grid-template-columns: 1fr 1.3fr 1fr; overflow: hidden; border: 1px solid rgba(105,129,201,.28); border-radius: 8px; background: rgba(47,66,119,.35); }
.a11y-size-control button { height: 32px; color: #dbe8ff; background: transparent; border: 0; font-weight: 700; cursor: pointer; }
.a11y-size-control button.is-active { color: #fff; background: linear-gradient(135deg, #5656db, #3934b6); box-shadow: inset 0 0 0 1px #8488ff, 0 0 12px rgba(91,92,255,.52); }
.a11y-switch-row { width: 100%; min-height: 28px; padding: 4px 0; display: flex; align-items: center; justify-content: space-between; color: #c1cee5; background: transparent; border: 0; font: 12px 'Inter', sans-serif; text-align: left; cursor: pointer; }
.a11y-switch-row i { position: relative; width: 32px; height: 18px; flex: 0 0 auto; background: #26365d; border: 1px solid rgba(135,160,220,.26); border-radius: 12px; transition: .2s ease; }
.a11y-switch-row i::after { content: ''; position: absolute; top: 2px; left: 2px; width: 12px; height: 12px; background: #fff; border-radius: 50%; box-shadow: 0 1px 4px rgba(0,0,0,.45); transition: .2s ease; }
.a11y-switch-row.is-active { color: #fff; }
.a11y-switch-row.is-active i { background: linear-gradient(90deg,#297df4,#8755fa); box-shadow: 0 0 10px rgba(71,143,255,.48); }
.a11y-switch-row.is-active i::after { transform: translateX(14px); }
.accessibility-voice { padding-bottom: 3px; }
.voice-controls { gap: 5px; margin: 5px 0 8px; }
.voice-controls button { padding: 7px 8px; color: #dbe7ff; background: rgba(36,57,109,.54); border: 1px solid #466bbd; border-radius: 7px; font-size: 11px; }
.accessibility-voice label { display: grid; grid-template-columns: 70px 1fr; align-items: center; gap: 4px; margin: 6px 0; color: #b9c8e1; font-size: 11px; }
.accessibility-voice select { width: 100%; margin: 0; padding: 6px 8px; color: #dce8ff; background: rgba(9,22,55,.7); border-color: #294a91; border-radius: 6px; font-size: 11px; }
.accessibility-voice .voice-note { margin: 8px 0 0; color: #7cb5e6; font-size: 10px; }
.accessibility-reset { width: calc(100% - 34px); min-height: 35px; margin: 7px 17px 16px; color: #81cbff; background: rgba(12,30,69,.5); border: 1px solid #4e9fec; border-radius: 8px; font-size: 11px; }
@media (max-width: 768px) { .accessibility-launcher { width: 62px; height: 62px; } .accessibility-panel { bottom: 88px; } }

/* Teléfonos Pequeños (menos de 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .terminal-body {
        padding: 12px 10px;
    }

    .terminal-grid {
        flex-direction: column;
        text-align: left;
    }

    .btn-specs-action {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================================
   10. DEMO EN VIDEO
   =================================================== */
.demo-modal[hidden] { display: none; }
.demo-modal { position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center; padding: 24px; }
.demo-modal-backdrop { position: absolute; inset: 0; background: rgba(3,8,12,.82); backdrop-filter: blur(8px); }
.demo-modal-panel { position: relative; z-index: 1; width: min(920px, 100%); padding: 28px; background: #12101d; border: 1px solid rgba(168,85,247,.42); border-radius: 18px; box-shadow: 0 25px 70px rgba(0,0,0,.65), 0 0 36px rgba(99,102,241,.16); }
.demo-modal-panel h2 { margin: 0 0 18px; color: #f1f5f3; font-size: 22px; }
.demo-modal-close { position: absolute; top: 8px; right: 12px; border: 0; background: none; color: #a8b8b4; font-size: 30px; line-height: 1; cursor: pointer; }
.demo-modal-close:hover { color: #fff; }
.demo-video { display: block; width: 100%; max-height: 72vh; border-radius: 10px; background: #050708; }
.demo-open { overflow: hidden; }

/* ===================================================
   11. BOTONES LIQUID GLASS
   =================================================== */
.btn-download,
.btn-primary,
.btn-secondary,
.btn-massive,
.btn-specs-action {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(255,255,255,.42);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.66), inset 0 -1px 0 rgba(255,255,255,.1), 0 10px 26px rgba(7,9,14,.3);
    backdrop-filter: blur(18px) saturate(155%);
    -webkit-backdrop-filter: blur(18px) saturate(155%);
}
.btn-download::before,
.btn-primary::before,
.btn-secondary::before,
.btn-massive::before,
.btn-specs-action::before {
    content: '';
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(115deg, rgba(255,255,255,.38), transparent 40%, rgba(255,255,255,.06) 100%);
    pointer-events: none;
}
.btn-download:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-massive:hover,
.btn-specs-action:hover {
    border-color: rgba(255,255,255,.58);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.76), 0 14px 32px rgba(7,9,14,.38), 0 0 20px rgba(168,85,247,.2);
}
.btn-primary,
.btn-massive,
.btn-specs-action {
    background: linear-gradient(135deg, rgba(112,72,218,.78), rgba(181,72,248,.72)) !important;
}
.btn-secondary {
    background: linear-gradient(135deg, rgba(82,38,122,.76), rgba(174,65,232,.56)) !important;
}
.btn-download {
    background: linear-gradient(135deg, rgba(95,57,180,.76), rgba(181,72,248,.68)) !important;
}
.btn-primary:hover,
.btn-massive:hover,
.btn-specs-action:hover {
    background: linear-gradient(135deg, rgba(112,115,255,.86), rgba(192,100,255,.76)) !important;
}
.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(95,50,120,.82), rgba(190,94,255,.58)) !important;
}
.btn-download:hover {
    background: linear-gradient(135deg, rgba(75,94,190,.8), rgba(190,94,255,.75)) !important;
}

/* ===================================================
   12. BARRA SUPERIOR Y ACCESIBILIDAD
   =================================================== */
.utility-bar { position: fixed; inset: 0 0 auto; height: 38px; z-index: 1001; background: rgba(7,9,14,.9); border-bottom: 1px solid rgba(255,255,255,.08); backdrop-filter: blur(14px); }
.utility-content { max-width: 1320px; height: 100%; margin: 0 auto; padding: 0 5%; display: flex; justify-content: flex-end; align-items: center; gap: 14px; }
.language-switcher { position: relative; }
.language-toggle { height: 28px; padding: 0 11px; display: inline-flex; align-items: center; gap: 7px; color: #f8fafc; background: rgba(168,85,247,.2); border: 1px solid rgba(255,255,255,.25); border-radius: 15px; font-size: 11px; font-weight: 700; cursor: pointer; }
.language-menu { position: absolute; top: calc(100% + 7px); right: 0; min-width: 132px; overflow: hidden; padding: 5px; background: #131022; border: 1px solid rgba(168,85,247,.38); border-radius: 10px; box-shadow: 0 12px 28px rgba(0,0,0,.45); }
.language-menu[hidden], .accessibility-panel[hidden] { display: none; }
.language-option { display: block; width: 100%; padding: 8px 9px; color: #e2e8f0; background: transparent; border: 0; border-radius: 7px; text-align: left; cursor: pointer; font: inherit; font-size: 12px; }
.language-option:hover { background: rgba(168,85,247,.2); }
.top-socials { display: flex; align-items: center; height: 100%; }
.top-socials a { width: 30px; height: 22px; display: inline-flex; align-items: center; justify-content: center; color: #e2e8f0; border-left: 1px solid rgba(255,255,255,.14); text-decoration: none; font-weight: 800; font-size: 14px; transition: color .2s ease, background .2s ease; }
.top-socials a:hover { color: #d8b4fe; background: rgba(168,85,247,.14); }
.github-stars { display: inline-flex; align-items: center; gap: 7px; min-height: 38px; padding: 0 14px 0 7px; color: #090909 !important; background: #ffd21a; border: 2px solid #151515; border-radius: 22px; box-shadow: 0 0 0 1px #ffd21a, 0 4px 12px rgba(255,210,26,.22); text-decoration: none; font-size: 14px; font-weight: 700; }
.github-stars:hover { color: #090909 !important; background: #ffe45c; transform: translateY(-1px); }
.github-mark { display: grid; width: 25px; height: 25px; place-items: center; color: #fff; background: #050505; border-radius: 50%; font-size: 14px; }
.github-stars strong { font-size: 16px; }
.logo-container { width: 66px; overflow: hidden; }
.logo-container a { width: 220px; }
.logo-container img { width: 220px; max-width: none; height: auto; }
nav { margin-left: 20px; }
nav ul { gap: 42px; }
.header-actions { gap: 18px; }

.accessibility-launcher { position: fixed; left: 22px; bottom: 22px; z-index: 1500; width: 58px; height: 58px; padding: 0; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, #0e7490, #2563eb); border: 3px solid rgba(255,255,255,.8); border-radius: 50%; box-shadow: 0 10px 28px rgba(0,0,0,.42), 0 0 0 3px rgba(56,189,248,.6); font-size: 27px; cursor: pointer; }
.accessibility-panel { position: fixed; left: 22px; bottom: 94px; z-index: 1501; width: min(416px, calc(100vw - 44px)); overflow: hidden; color: #12233e; background: #fff; border: 1px solid rgba(255,255,255,.82); border-radius: 17px; box-shadow: 0 22px 60px rgba(0,0,0,.48); }
.accessibility-heading { display: flex; align-items: center; justify-content: space-between; padding: 18px 18px; color: white; background: #112d52; }
.accessibility-heading h2, .accessibility-voice h3 { margin: 0; font-size: 19px; }
.accessibility-close { color: #fff; background: transparent; border: 0; font-size: 28px; line-height: 1; cursor: pointer; }
.accessibility-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
.accessibility-actions button, .accessibility-reset { min-height: 48px; color: #122b4c; background: #f4f7fb; border: 1px solid #d5e0ed; border-radius: 9px; font: 700 14px 'Inter', sans-serif; cursor: pointer; }
.accessibility-actions button:hover, .accessibility-actions button.is-active { color: #fff; background: #6041a3; border-color: #6041a3; }
.accessibility-reset { width: calc(100% - 30px); margin: 0 15px 15px; color: #fff; background: #112d52; border-color: #112d52; }
.accessibility-voice { padding: 18px 15px; border-top: 1px solid #dce5ef; }
.accessibility-voice h3 { margin-bottom: 13px; color: #111827; }
.voice-controls { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 13px; }
.voice-controls button, .accessibility-voice select { padding: 8px 10px; color: #173451; background: #eff5fa; border: 1px solid #cbd9e7; border-radius: 8px; font: 14px 'Inter', sans-serif; cursor: pointer; }
.accessibility-voice label { display: block; margin: 9px 0; font-size: 14px; }
.accessibility-voice select { margin-left: 8px; background: #fff; }
.accessibility-voice p { margin: 13px 0 0; color: #60738b; font-size: 13px; line-height: 1.45; }

.a11y-font-large { font-size: 112.5%; }
.a11y-font-xlarge { font-size: 125%; }
.a11y-contrast { filter: contrast(1.35); }
.a11y-grayscale { filter: grayscale(1); }
.a11y-underline a:not(.btn-primary):not(.btn-secondary):not(.btn-download):not(.btn-massive):not(.btn-specs-action) { text-decoration: underline !important; text-underline-offset: 3px; }
.a11y-readable, .a11y-readable * { font-family: Arial, Helvetica, sans-serif !important; letter-spacing: normal !important; }
.a11y-pause *, .a11y-pause *::before, .a11y-pause *::after { animation-play-state: paused !important; transition: none !important; }

@media (max-width: 768px) {
    header { top: 38px; }
    .hero-section { padding-top: 178px; }
    .utility-content { justify-content: center; padding: 0 10px; gap: 6px; }
    .top-socials a { width: 27px; }
    .github-stars { display: none; }
    .accessibility-launcher { width: 52px; height: 52px; left: 14px; bottom: 14px; font-size: 23px; }
    .accessibility-panel { left: 14px; bottom: 78px; width: min(416px, calc(100vw - 28px)); }
}

/* Se mantiene al final para sustituir el panel heredado. */
.accessibility-launcher { width:68px; height:68px; padding:0; overflow:hidden; background:#061632; border:2px solid #57d7ff; box-shadow:0 0 0 3px rgba(122,78,255,.7),0 12px 30px rgba(0,0,0,.48),0 0 22px rgba(30,169,255,.78); }
.accessibility-launcher img { width:100%; height:100%; object-fit:cover; transform:scale(1.22); }.accessibility-panel { width:min(330px,calc(100vw - 44px)); bottom:102px; color:#e7efff; background:linear-gradient(145deg,rgba(11,27,66,.98),rgba(5,13,37,.98)); border:1px solid #6c61ff; box-shadow:0 0 0 1px rgba(52,195,255,.32),0 20px 54px rgba(0,0,0,.58),inset 0 1px 0 rgba(255,255,255,.12); }.accessibility-heading { display:grid; grid-template-columns:50px 1fr auto; gap:10px; align-items:center; padding:15px 17px; background:transparent; border-bottom:1px solid rgba(140,180,255,.18); }.accessibility-heading > img { width:44px; height:44px; object-fit:cover; border:1px solid #38bdf8; border-radius:50%; box-shadow:0 0 14px rgba(56,189,248,.75); transform:scale(1.08); }.accessibility-heading h2, .accessibility-voice h3 { margin:0; color:#fff; font-size:17px; }.accessibility-heading p { margin:2px 0 0; color:#8fa4c8; font-size:11px; }.accessibility-body { padding:0 17px 6px; }.a11y-section { padding:13px 0; border-bottom:1px solid rgba(140,180,255,.14); }.a11y-section h3 { margin:0; color:#f6f8ff; font-size:14px; }.a11y-section > p { margin:3px 0 10px 29px; color:#8396b8; font-size:10.5px; }.a11y-label { display:block; margin:0 0 6px; color:#c5d2ea; font-size:11px; }.a11y-size-control { display:grid; grid-template-columns:1fr 1.3fr 1fr; overflow:hidden; border:1px solid rgba(105,129,201,.28); border-radius:8px; background:rgba(47,66,119,.35); }.a11y-size-control button { height:32px; color:#dbe8ff; background:transparent; border:0; font-weight:700; }.a11y-size-control button.is-active { color:#fff; background:linear-gradient(135deg,#5656db,#3934b6); box-shadow:inset 0 0 0 1px #8488ff,0 0 12px rgba(91,92,255,.52); }.a11y-switch-row { width:100%; min-height:28px; padding:4px 0; display:flex; align-items:center; justify-content:space-between; color:#c1cee5; background:transparent; border:0; font:12px 'Inter',sans-serif; text-align:left; }.a11y-switch-row i { position:relative; width:32px; height:18px; background:#26365d; border:1px solid rgba(135,160,220,.26); border-radius:12px; }.a11y-switch-row i::after { content:''; position:absolute; top:2px; left:2px; width:12px; height:12px; background:#fff; border-radius:50%; }.a11y-switch-row.is-active i { background:linear-gradient(90deg,#297df4,#8755fa); }.a11y-switch-row.is-active i::after { transform:translateX(14px); }.accessibility-voice { padding:13px 0 3px; border:0; }.voice-controls { gap:5px; margin:5px 0 8px; }.voice-controls button { padding:7px 8px; color:#dbe7ff; background:rgba(36,57,109,.54); border:1px solid #466bbd; border-radius:7px; font-size:11px; }.accessibility-voice label { display:grid; grid-template-columns:70px 1fr; gap:4px; margin:6px 0; color:#b9c8e1; font-size:11px; }.accessibility-voice select { width:100%; margin:0; padding:6px 8px; color:#dce8ff; background:rgba(9,22,55,.7); border-color:#294a91; border-radius:6px; font-size:11px; }.accessibility-voice .voice-note { margin:8px 0 0; color:#7cb5e6; font-size:10px; }.accessibility-reset { width:calc(100% - 34px); min-height:35px; margin:7px 17px 16px; color:#81cbff; background:rgba(12,30,69,.5); border:1px solid #4e9fec; border-radius:8px; font-size:11px; }
@media (max-width:768px) { .accessibility-launcher { width:62px; height:62px; } .accessibility-panel { bottom:88px; } }
