/* =============================================================
   APPROMOVE — Shared Stylesheet
   styles.css — used by index.html, roadmap.html, games.html, download.html
   ============================================================= */

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

img {
    user-select: none; -webkit-user-select: none;
    -moz-user-select: none; -webkit-user-drag: none; pointer-events: none;
}
a img, button img { pointer-events: auto; }

/* ---- VARIABLES ---- */
:root {
    --bg: #06090f;
    --bg-soft: #0b1018;
    --bg-card: #101822;
    --accent: #3b82f6;
    --accent-soft: rgba(59,130,246,0.13);
    --cyan: #60a5fa;
    --green: #34d399;
    --orange: #fb923c;
    --pink: #818cf8;
    --red: #ef4444;
    --white: #eef2ff;
    --gray: #7a93b8;
    --gray-dim: #3d5470;
    --border: #152035;
}

html { scroll-behavior: smooth; overflow-x: hidden; scroll-padding-top: 60px; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

/* ---- GRADIENT TEXT (single definition) ---- */
.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, #60a5fa 60%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(59,130,246,0.55));
}

/* ---- LANGUAGE TOGGLE ---- */
.lang-switch { display: flex; gap: 4px; }
.lang-btn {
    background: transparent; border: 1px solid var(--border);
    color: var(--gray); padding: 4px 10px; border-radius: 6px;
    font-size: 0.7rem; font-weight: 700; cursor: pointer;
    transition: all 0.2s; text-transform: uppercase;
}
.lang-btn.active { background: var(--accent); color: var(--white); border-color: var(--accent); }
.lang-btn:hover:not(.active) { border-color: var(--gray); color: var(--white); }
/* !important garantiza que ninguna regla de componente (display:inline-flex, block, etc.)
   pueda pisar la lógica de idioma, sin importar su especificidad o posición en el CSS */
[data-lang="es"]              { display: none !important; }
body.lang-es [data-lang="es"] { display: revert !important; }
body.lang-es [data-lang="en"] { display: none !important; }

/* Modo ES: restaurar display correcto para elementos ES visibles */
body.lang-es span.tag[data-lang="es"],
body.lang-es a.nav-cta[data-lang="es"]            { display: inline-block !important; }
body.lang-es .mobile-menu a[data-lang="es"]       { display: block !important; }
body.lang-es a.btn-primary[data-lang="es"],
body.lang-es a.btn-ghost[data-lang="es"],
body.lang-es a.btn-dark-blue[data-lang="es"]      { display: inline-flex !important; }

/* ---- SCROLL REVEAL ---- */
.reveal {
    opacity: 0; transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-scale {
    opacity: 0; transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ---- PARTICLES ---- */
.particles {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 0;
}
.particle {
    position: absolute; width: 4px; height: 4px; border-radius: 50%;
    background: var(--accent); opacity: 0;
    animation: float-particle 12s infinite ease-in-out;
}
@keyframes float-particle {
    0%, 100% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.1; }
    100% { transform: translateY(-10vh) scale(1); }
}

/* ---- GRAIN TEXTURE OVERLAY ---- */
body::after {
    content: '';
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.04; pointer-events: none; z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 300px 300px;
}

/* ---- CUSTOM CURSOR ---- */
.cursor-ring {
    position: fixed; top: -12px; left: -12px; width: 24px; height: 24px;
    border: 1.5px solid rgba(124,108,240,0.7); border-radius: 50%;
    pointer-events: none; z-index: 99999;
    transition: width 0.25s, height 0.25s, border-color 0.25s, background 0.25s, opacity 0.3s;
    transform: translate(0,0);
}
.cursor-ring.link-hover {
    width: 44px; height: 44px; border-color: var(--cyan);
    background: rgba(56,217,245,0.06); top: -22px; left: -22px;
}
.cursor-dot {
    position: fixed; top: -3px; left: -3px; width: 6px; height: 6px;
    background: var(--accent); border-radius: 50%;
    pointer-events: none; z-index: 99999;
    box-shadow: 0 0 8px var(--accent);
}
@media (hover: none) { .cursor-ring, .cursor-dot { display: none; } }

/* ---- NAV ---- */
nav#navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(6, 9, 15, 0.85);
    backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
    border-bottom: 1px solid rgba(59,130,246,0.15);
    padding: 0 2rem; transition: background 0.3s;
}
nav#navbar.scrolled { background: rgba(6, 9, 15, 0.97); }
.nav-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    height: 60px;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-weight: 900; font-size: 1.05rem;
    text-decoration: none; color: var(--white); letter-spacing: -0.5px;
}
.nav-logo img { width: 32px; height: 32px; border-radius: 8px; display: block; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
    color: var(--gray); text-decoration: none; font-size: 0.82rem;
    font-weight: 500; transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-right { display: flex; align-items: center; gap: 1rem; }

.nav-cta {
    background: rgba(59,130,246,0.15);
    color: var(--accent); border: 1px solid rgba(59,130,246,0.4); padding: 8px 18px;
    border-radius: 8px; font-weight: 700; font-size: 0.78rem;
    cursor: pointer; text-decoration: none; transition: all 0.3s;
    letter-spacing: 0.02em;
}
.nav-cta:hover {
    background: rgba(59,130,246,0.28);
    border-color: var(--accent);
    transform: translateY(-1px);
}

/* ---- HAMBURGER ---- */
.nav-hamburger {
    display: none; flex-direction: column; justify-content: center;
    gap: 5px; width: 36px; height: 36px;
    background: transparent; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--white); border-radius: 2px; transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- MOBILE MENU ---- */
.mobile-menu {
    display: flex; flex-direction: column;
    position: absolute; top: 60px; left: 0; right: 0;
    background: rgba(10,10,15,0.97);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16,1,0.3,1);
}
.mobile-menu.open { max-height: 400px; }
.mobile-menu a {
    color: var(--gray); text-decoration: none; font-size: 1rem; font-weight: 500;
    padding: 0.85rem 2rem; transition: color 0.2s, background 0.2s; display: block;
}
.mobile-menu a:hover { color: var(--white); background: rgba(124,108,240,0.08); }

/* ---- SECTION STRUCTURE ---- */
section { padding: 6rem 2rem; position: relative; }
.inner { max-width: 1000px; margin: 0 auto; }
.tag {
    display: inline-block; font-size: 0.65rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 2px; color: var(--accent);
    margin-bottom: 0.8rem; padding: 4px 12px;
    border: 1px solid var(--accent-soft); border-radius: 4px;
    background: var(--accent-soft);
}
.stitle {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900; letter-spacing: -1.5px; margin-bottom: 0.6rem;
}
.sdesc { font-size: 1rem; color: var(--gray); max-width: 520px; margin: 0 auto 3rem; }
.section-sep {
    width: 60%; max-width: 640px; height: 1px;
    background: rgba(255,255,255,0.07); margin: 0 auto; border-radius: 1px;
}

/* ---- BUTTONS — unified size ---- */
.btn-primary, .btn-ghost, .btn-dark-blue {
    padding: 18px 32px;
    border-radius: 12px;
    font-weight: 700; font-size: 1rem;
    letter-spacing: 0.04em; text-transform: uppercase;
    cursor: pointer; text-decoration: none;
    display: inline-flex; align-items: center; justify-content: center;
    gap: 9px;
    transition: all 0.25s; white-space: nowrap;
    min-width: 160px;
}
/* Lucide icons inside buttons */
.btn-primary [data-lucide],
.btn-ghost   [data-lucide],
.btn-dark-blue [data-lucide] {
    width: 18px; height: 18px; flex-shrink: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #60a5fa 100%);
    color: var(--white); border: none;
    position: relative; overflow: hidden;
    box-shadow: 0 4px 24px rgba(59,130,246,0.4);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(59,130,246,0.6);
}
.btn-primary::after {
    content: ''; position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.12) 50%, transparent 60%);
    transition: transform 0.5s; transform: translateX(-100%);
}
.btn-primary:hover::after { transform: translateX(100%); }

.btn-ghost {
    background: rgba(6,9,15,0.6); color: var(--cyan);
    border: 1.5px solid rgba(59,130,246,0.45);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5), inset 0 1px 0 rgba(96,165,250,0.07);
    backdrop-filter: blur(6px);
}
.btn-ghost:hover {
    background: rgba(59,130,246,0.18);
    border-color: var(--cyan);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(59,130,246,0.28);
}

/* ---- HERO ---- */
.hero {
    min-height: 100vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center;
    padding: 100px 2rem 60px; position: relative; overflow: hidden;
}
.hero-video-bg {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0; pointer-events: none; opacity: 0.2;
}
/* Dark overlay over video so text is always readable */
.hero::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom,
        rgba(6,9,15,0.65) 0%,
        rgba(6,9,15,0.22) 40%,
        rgba(6,9,15,0.65) 80%,
        rgba(6,9,15,0.92) 100%);
    z-index: 0; pointer-events: none;
}
.hero > *:not(.hero-video-bg) { position: relative; z-index: 1; }
.hero::before {
    content: ''; position: absolute; top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 1200px; height: 1200px; border-radius: 50%;
    background: radial-gradient(circle, rgba(59,130,246,0.2) 0%, rgba(96,165,250,0.06) 40%, transparent 65%);
    pointer-events: none;
    animation: hero-glow 6s ease-in-out infinite alternate;
}
@keyframes hero-glow {
    0% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    100% { opacity: 1; transform: translateX(-50%) scale(1.15); }
}

.hero-badges {
    display: flex; flex-wrap: wrap; gap: 12px;
    justify-content: center; align-items: center;
    margin-bottom: 2rem; animation: badge-fade 1s 0.1s both;
}
.webcam-live-tag {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.3);
    border-radius: 100px; padding: 10px 22px;
    font-size: 1rem; font-weight: 600; color: var(--cyan);
    letter-spacing: 0.01em;
}
.local-process-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.3);
    border-radius: 100px; padding: 10px 22px;
    font-size: 1rem; font-weight: 600; color: #4ade80;
    letter-spacing: 0.01em;
}
.local-lock-ico {
    width: 14px; height: 14px; stroke: #4ade80; flex-shrink: 0;
}
.webcam-live-tag .w-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan);
    animation: pulse 1.5s infinite;
}

.hero h1 {
    font-size: clamp(3.2rem, 8.5vw, 6.5rem);
    font-weight: 900; letter-spacing: -4px;
    line-height: 1.0; margin-bottom: 1.6rem;
    text-shadow: 0 2px 30px rgba(0,0,0,0.7);
    animation: hero-title 1s 0.5s both;
}
@keyframes hero-title {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero .sub {
    font-size: 1.2rem; color: rgba(190,185,230,0.9); max-width: 600px;
    margin-bottom: 3rem; font-weight: 400; line-height: 1.7;
    text-shadow: 0 1px 16px rgba(0,0,0,0.8);
    animation: hero-sub 1s 0.7s both;
}
@keyframes hero-sub {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-cta {
    display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center;
    max-width: 860px; width: 100%;
    animation: hero-cta-in 1s 0.9s both;
}
.hero-cta > a {
    flex: 1;
    min-width: 150px;
    max-width: 220px;
}
@keyframes hero-cta-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---- SECONDARY CTA ROW (Roadmap / Get Started) ---- */
.hero-cta-secondary {
    display: none; /* merged into hero-cta */
}
.btn-dark-blue {
    background: rgba(6,9,15,0.75);
    color: #60a5fa;
    border: 1.5px solid rgba(37,99,235,0.4);
    box-shadow: 0 4px 20px rgba(0,0,0,0.55), inset 0 1px 0 rgba(96,165,250,0.06);
    backdrop-filter: blur(8px);
}
.btn-dark-blue:hover {
    background: rgba(37,99,235,0.2);
    border-color: #60a5fa;
    color: #93c5fd;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37,99,235,0.3);
}

/* Discord row below hero CTA */
.hero-discord-row {
    display: flex; align-items: center; justify-content: center;
    margin-top: 1.5rem;
    animation: hero-cta-in 1s 1.1s both;
}

/* Discord button */
.btn-discord {
    padding: 13px 28px;
    border-radius: 100px;
    font-weight: 600; font-size: 0.92rem;
    letter-spacing: 0.03em;
    cursor: pointer; text-decoration: none;
    display: inline-flex; align-items: center; justify-content: center;
    gap: 9px; transition: all 0.25s; white-space: nowrap;
    background: rgba(88,101,242,0.13);
    color: #a5b4fc;
    border: 1.5px solid rgba(88,101,242,0.4);
    box-shadow: 0 2px 16px rgba(88,101,242,0.18);
    backdrop-filter: blur(8px);
}
.btn-discord:hover {
    background: rgba(88,101,242,0.26);
    border-color: #a5b4fc;
    color: #e0e7ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(88,101,242,0.32);
}
.discord-logo {
    width: 17px; height: 17px; flex-shrink: 0;
}
.itchio-logo {
    width: 17px; height: 17px; flex-shrink: 0;
}

/* ---- SCROLL HINT ---- */
.hero-scroll-hint {
    margin-top: 3rem;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    font-size: 0.88rem; font-weight: 600;
    color: rgba(96,165,250,0.6);
    letter-spacing: 0.1em; text-transform: uppercase;
    animation: hero-cta-in 1s 1.3s both;
}
.scroll-arrow {
    width: 26px; height: 26px;
    color: rgba(96,165,250,0.5);
    animation: bounce-down 1.8s ease-in-out infinite;
}
@keyframes bounce-down {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(6px); opacity: 1; }
}

/* ---- WORD HIGHLIGHT ---- */
.word-blue {
    color: var(--accent);
    font-weight: 700;
}

@keyframes badge-fade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ---- HERO STATS BAR ---- */
.hero-stats {
    display: flex; align-items: stretch; justify-content: center; flex-wrap: wrap;
    margin: 2.5rem 0 0; border: 1px solid var(--border); border-radius: 16px;
    overflow: hidden; background: rgba(255,255,255,0.02); max-width: 580px;
    animation: hero-cta-in 1s 1.1s both;
}
.hero-stat {
    padding: 1.2rem 1.6rem; text-align: center; flex: 1; min-width: 110px;
    border-right: 1px solid var(--border); transition: background 0.3s;
}
.hero-stat:last-child { border-right: none; }
.hero-stat:hover { background: rgba(124,108,240,0.05); }
.hero-stat-num {
    display: block; font-size: 1.5rem; font-weight: 900; letter-spacing: -1px;
    background: linear-gradient(135deg, var(--accent), var(--cyan));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; margin-bottom: 2px;
}
.hero-stat-lbl { font-size: 0.66rem; color: var(--gray); font-weight: 500; }

/* ---- HERO VISUAL (image with scan overlay) ---- */
.hero-visual {
    margin-top: 1.5rem; max-width: 500px; width: 100%;
    border-radius: 20px; overflow: hidden;
    border: 1px solid rgba(124,108,240,0.2);
    box-shadow: 0 30px 80px rgba(124,108,240,0.2), 0 0 0 1px rgba(124,108,240,0.08);
    max-height: 28vh; display: flex; align-items: center; position: relative;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-scan {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 20px; overflow: hidden; pointer-events: none; z-index: 2;
}
.hero-scan::after {
    content: ''; position: absolute; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent 5%, var(--cyan) 50%, transparent 95%);
    box-shadow: 0 0 18px var(--cyan), 0 0 40px rgba(56,217,245,0.35);
    animation: scan-down 5s ease-in-out infinite; opacity: 0;
}
@keyframes scan-down {
    0% { top: 0; opacity: 0; }
    5% { opacity: 0.9; }
    90% { opacity: 0.5; }
    100% { top: 100%; opacity: 0; }
}
.hero-detect {
    position: absolute; z-index: 3; width: 14px; height: 14px; border-radius: 50%;
    border: 2px solid var(--cyan); pointer-events: none;
    animation: detect-blink 2.5s ease-in-out infinite;
}
.hero-detect::before {
    content: ''; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 4px; height: 4px; border-radius: 50%; background: var(--cyan);
}
.hero-detect::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 28px; height: 28px; border-radius: 50%;
    border: 1px solid rgba(56,217,245,0.25);
    animation: ring-expand 2.5s ease-out infinite;
}
.hero-detect.d2 { border-color: var(--accent); animation-delay: 0.8s; }
.hero-detect.d2::before { background: var(--accent); }
.hero-detect.d2::after { border-color: rgba(124,108,240,0.25); }
.hero-detect.d3 { border-color: var(--green); animation-delay: 1.6s; }
.hero-detect.d3::before { background: var(--green); }
.hero-detect.d3::after { border-color: rgba(52,211,153,0.25); }
@keyframes detect-blink {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}
@keyframes ring-expand {
    0% { transform: translate(-50%,-50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%,-50%) scale(2.5); opacity: 0; }
}

/* ---- HERO GLITCH ---- */
.hero-glitch { position: relative; display: inline; }
.hero-glitch::before, .hero-glitch::after {
    content: attr(data-text); position: absolute; top: 0; left: 0;
    background: linear-gradient(135deg, var(--accent), var(--cyan));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; opacity: 0;
}
.hero-glitch::before {
    animation: glitch1 6s 2s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%);
}
.hero-glitch::after {
    animation: glitch2 6s 2s infinite;
    clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
}
@keyframes glitch1 {
    0%, 88%, 100% { opacity: 0; transform: translateX(0); }
    90% { opacity: 1; transform: translateX(-4px) skewX(-2deg); }
    93% { opacity: 1; transform: translateX(3px); }
    96% { opacity: 0; }
}
@keyframes glitch2 {
    0%, 88%, 100% { opacity: 0; transform: translateX(0); }
    90% { opacity: 1; transform: translateX(4px) skewX(2deg); }
    93% { opacity: 1; transform: translateX(-3px); }
    96% { opacity: 0; }
}

/* ---- SKELETON DECORATION ---- */
.skeleton-deco {
    position: absolute; right: 3%; top: 50%; transform: translateY(-50%);
    width: 90px; opacity: 0.1; pointer-events: none; display: none; z-index: 0;
}
@media (min-width: 1280px) { .skeleton-deco { display: block; } }
.sk-joint { animation: sk-glow 2.5s ease-in-out infinite; }
.sk-line { stroke-dasharray: 5 3; animation: sk-dash 4s linear infinite; }
@keyframes sk-glow { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
@keyframes sk-dash { to { stroke-dashoffset: -100; } }

/* ---- HERO IMAGE SECTION ---- */
.hero-img-section {
    background: var(--bg); padding: 0 2rem 6rem;
}
.hero-img-wrap {
    max-width: 960px; margin: 0 auto; position: relative;
    border-radius: 24px; overflow: hidden;
    border: 1px solid rgba(59,130,246,0.22);
    box-shadow: 0 0 0 1px rgba(59,130,246,0.07),
                0 40px 100px rgba(59,130,246,0.18),
                0 0 60px rgba(96,165,250,0.06);
}
.hero-img-wrap img {
    width: 100%; height: auto; display: block;
    filter: brightness(0.92) saturate(1.1);
    transition: filter 0.4s;
    pointer-events: none;
}
.hero-img-wrap:hover img { filter: brightness(1) saturate(1.15); }
.hero-img-label {
    position: absolute; top: 18px; left: 18px; z-index: 3;
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(6,9,15,0.78); backdrop-filter: blur(12px);
    border: 1px solid rgba(59,130,246,0.3);
    border-radius: 100px; padding: 7px 16px;
    font-size: 0.78rem; font-weight: 700; color: var(--cyan);
    letter-spacing: 0.04em; text-transform: uppercase;
}
.h-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--cyan); box-shadow: 0 0 8px var(--cyan);
    animation: pulse 1.5s infinite; flex-shrink: 0;
}
.hero-img-overlay {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
    background: linear-gradient(to top, rgba(13,11,30,0.92) 0%, rgba(13,11,30,0.3) 60%, transparent 100%);
    padding: 4rem 2.5rem 2.2rem;
}
.hero-img-overlay p {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 700; color: var(--white); margin: 0;
    letter-spacing: -0.3px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

/* ---- FEATURES GRID ---- */
.feat-section { background: var(--bg-soft); border-top: 1px solid var(--border); }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.feat-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 20px; padding: 2.2rem; transition: all 0.4s;
    position: relative; overflow: hidden;
}
.feat-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 2px; background: linear-gradient(90deg, transparent, var(--accent), #93c5fd, transparent);
    opacity: 0; transition: opacity 0.3s;
}
.feat-card:hover {
    border-color: rgba(59,130,246,0.45); transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(59,130,246,0.14),
                0 0 0 1px rgba(59,130,246,0.12),
                inset 0 0 40px rgba(59,130,246,0.04);
}
.feat-card:hover::before { opacity: 1; }
.feat-ico {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.feat-card:hover .feat-ico { transform: scale(1.12); }
.feat-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.feat-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

/* ---- GAMES TICKER ---- */
.games-ticker-outer {
    overflow: hidden; padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.015);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    user-select: none;
}
.games-ticker-track {
    display: flex; gap: 0; animation: ticker-scroll 28s linear infinite; width: max-content;
}
.games-ticker-outer:hover .games-ticker-track { animation-play-state: paused; }
.ticker-item {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0 1.8rem; white-space: nowrap;
    font-size: 0.82rem; font-weight: 600; color: var(--gray-dim); transition: color 0.2s;
}
.ticker-item:hover { color: var(--white); }
.t-ico { font-size: 1rem; }
.ticker-sep { color: var(--border); padding: 0 0.5rem; font-size: 0.7rem; }
@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ---- GAMES GRID ---- */
.games-section { background: var(--bg); overflow: hidden; }
.games-header { text-align: center; margin-bottom: 4rem; }
.games-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem; max-width: 900px; margin: 0 auto;
}
.game-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 20px; padding: 2.5rem 2rem; text-align: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative; overflow: hidden;
}
.game-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; transition: all 0.3s;
}
.game-card.minecraft::after  { background: linear-gradient(90deg, var(--green), #5cb85c); }
.game-card.skyrim::after     { background: linear-gradient(90deg, #8b9dc3, var(--cyan)); }
.game-card.roblox::after     { background: linear-gradient(90deg, var(--red), var(--orange)); }
.game-card.fortnite::after   { background: linear-gradient(90deg, #5b7cfa, var(--accent)); }
.game-card.terraria::after   { background: linear-gradient(90deg, var(--green), var(--cyan)); }
.game-card.among-us::after   { background: linear-gradient(90deg, var(--red), var(--pink)); }
.game-card.fall-guys::after  { background: linear-gradient(90deg, var(--pink), var(--orange)); }
.game-card.gta::after        { background: linear-gradient(90deg, var(--orange), var(--red)); }
.game-card.valorant::after   { background: linear-gradient(90deg, #fd4556, var(--red)); }
.game-card.generic::after    { background: linear-gradient(90deg, var(--accent), var(--cyan)); }

.game-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.game-card.minecraft:hover  { border-color: var(--green); }
.game-card.skyrim:hover     { border-color: var(--cyan); }
.game-card.roblox:hover     { border-color: var(--red); }
.game-card.fortnite:hover   { border-color: var(--accent); }
.game-card.terraria:hover   { border-color: var(--green); }
.game-card.among-us:hover   { border-color: var(--pink); }
.game-card.fall-guys:hover  { border-color: var(--pink); }
.game-card.gta:hover        { border-color: var(--orange); }
.game-card.valorant:hover   { border-color: #fd4556; }
.game-card.generic:hover    { border-color: var(--accent); }

.games-more {
    text-align: center; margin-top: 2.5rem; padding: 1.5rem;
    border: 1px dashed var(--border); border-radius: 16px;
    color: var(--gray); font-size: 0.9rem;
}
.games-more strong { color: var(--white); }
.game-icon {
    margin-bottom: 1.2rem; display: flex; justify-content: center; transition: transform 0.5s;
}
.game-icon [data-lucide] { width: 3rem; height: 3rem; stroke-width: 1.5; stroke: var(--accent); }
.game-card:hover .game-icon { transform: scale(1.15) rotate(5deg); }
.gest-ico { width: 11px; height: 11px; display: inline; vertical-align: middle; stroke: var(--accent); margin-right: 2px; }
.game-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 0.6rem; letter-spacing: -0.5px; }
.game-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }
.game-gestures { margin-top: 1.2rem; display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: center; }
.game-gestures span {
    font-size: 0.7rem; padding: 3px 10px; border-radius: 4px;
    font-weight: 700; background: rgba(255,255,255,0.05);
    color: var(--gray); border: 1px solid var(--border);
}

/* ---- SHOWCASE ROWS ---- */
.showcase-section { background: var(--bg-soft); }
.showcase-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center; margin-bottom: 6rem;
}
.showcase-row:last-child { margin-bottom: 0; }
.showcase-row.narrow-img { grid-template-columns: 2fr 3fr; }
.showcase-img {
    width: 100%; height: auto; border-radius: 16px;
    border: 1px solid var(--border); display: block;
}
.showcase-text .tag { margin-bottom: 1rem; }
.showcase-text h3 {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 900; letter-spacing: -1px; margin-bottom: 1rem;
}
.showcase-text p { font-size: 0.95rem; color: var(--gray); line-height: 1.75; }
.showcase-row.reverse .showcase-media { order: 2; }
.showcase-row.reverse .showcase-text { order: 1; }

/* ---- IMPACT / USE CASES ---- */
.impact-section { background: var(--bg); }
.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.impact-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 16px; padding: 2.5rem; text-align: center; transition: all 0.4s;
}
.impact-card:hover { transform: translateY(-4px); }
.impact-card.c1:hover { border-color: var(--accent); box-shadow: 0 10px 32px rgba(124,108,240,0.15); }
.impact-card.c2:hover { border-color: var(--green);  box-shadow: 0 10px 32px rgba(52,211,153,0.15); }
.impact-card.c3:hover { border-color: var(--cyan);   box-shadow: 0 10px 32px rgba(56,217,245,0.15); }
.impact-ico { font-size: 2.8rem; margin-bottom: 1rem; display: flex; justify-content: center; margin-bottom: 1rem; }
.impact-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.impact-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

/* ---- ROADMAP ---- */
.rm-section { background: var(--bg-soft); }
.rm-phase { margin-bottom: 3.5rem; }
.rm-phase-title {
    font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 1.2rem; display: flex; align-items: center; gap: 10px;
}
.rm-phase-title::after {
    content: ''; flex: 1; height: 1px; background: var(--border);
}
.rm-list { max-width: 680px; padding-left: 28px; position: relative; }
.rm-list::before {
    content: ''; position: absolute; left: 5px; top: 0; bottom: 0;
    width: 2px; background: linear-gradient(180deg, var(--green), var(--accent), var(--orange), var(--pink));
}
.rm-item { position: relative; padding: 0 0 1.8rem 2rem; }
.rm-dot {
    position: absolute; left: -21px; top: 4px;
    width: 14px; height: 14px; border-radius: 50%;
    border: 3px solid var(--bg-soft); transition: transform 0.3s;
}
.rm-item:hover .rm-dot { transform: scale(1.3); }
.d-done   { background: var(--green); }
.d-wip    { background: var(--accent); }
.d-soon   { background: var(--orange); }
.d-future { background: var(--pink); }
.rm-item h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 2px; }
.rm-item p  { font-size: 0.82rem; color: var(--gray); margin-top: 2px; }
.rm-status {
    font-size: 0.62rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 1px; margin-top: 4px; display: inline-block;
}
.s-done   { color: var(--green); }
.s-wip    { color: var(--accent); }
.s-soon   { color: var(--orange); }
.s-future { color: var(--pink); }

/* ---- ROADMAP PROGRESS BAR ---- */
.rm-progress-wrap { margin-bottom: 3rem; }
.rm-progress-labels { display: flex; justify-content: space-between; margin-bottom: 0.5rem; font-size: 0.75rem; color: var(--gray); }
.rm-progress-bar { height: 6px; background: var(--border); border-radius: 99px; overflow: hidden; }
.rm-progress-fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--green), var(--accent)); }

/* ---- BETA / DOWNLOAD CTA ---- */
.beta-section { background: var(--bg-soft); position: relative; overflow: hidden; border-top: 1px solid var(--border); }
.beta-section::before {
    content: ''; position: absolute; bottom: -200px; left: 50%;
    transform: translateX(-50%);
    width: 900px; height: 900px; border-radius: 50%;
    background: radial-gradient(circle, rgba(59,130,246,0.12), rgba(96,165,250,0.04) 40%, transparent 60%);
    pointer-events: none;
}
.beta-box { max-width: 600px; margin: 0 auto; text-align: center; position: relative; }
.beta-box h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900; letter-spacing: -1.5px; margin-bottom: 0.6rem; }
.beta-box > p { color: var(--gray); margin-bottom: 2rem; font-size: 0.95rem; }
.wl-badges {
    display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
    margin-top: 1.5rem; font-size: 0.78rem; color: var(--gray-dim);
}
.wl-badges span { display: inline-flex; align-items: center; gap: 5px; }

/* ---- CONTACT FORM ---- */
.beta-form-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; padding: 1.5rem; text-align: left;
}
.beta-form-card h4 {
    font-size: 0.9rem; font-weight: 700; margin-bottom: 0.3rem; color: var(--white);
    display: flex; align-items: center; gap: 8px;
}
.beta-form-card > p { font-size: 0.82rem; color: var(--gray-dim); margin-bottom: 1rem; line-height: 1.5; }
.feedback-textarea, .feedback-input {
    width: 100%; background: rgba(255,255,255,0.05);
    border: 1px solid var(--border); border-radius: 10px;
    color: var(--white); font-family: inherit; font-size: 0.85rem;
    padding: 0.75rem 1rem; margin-bottom: 0.75rem; transition: border-color 0.2s;
}
.feedback-textarea { resize: none; height: 90px; }
.feedback-textarea::placeholder, .feedback-input::placeholder { color: var(--gray-dim); }
.feedback-textarea:focus, .feedback-input:focus { outline: none; border-color: var(--accent); }
.beta-email-submit {
    background: transparent; color: var(--accent); border: 1px solid var(--accent);
    padding: 12px 20px; border-radius: 10px; font-size: 0.88rem; font-weight: 700;
    cursor: pointer; transition: all 0.2s; white-space: nowrap; font-family: inherit; width: 100%;
}
.beta-email-submit:hover { background: var(--accent-soft); }
.beta-form-success { display: none; color: var(--green); font-size: 0.85rem; margin-top: 0.6rem; }
.beta-form-success.show { display: block; }

/* ---- REQUIREMENTS ---- */
.req-section { padding: 6rem 2rem; }
.req-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.req-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 16px; padding: 2rem 1.5rem; text-align: center; transition: border-color 0.3s;
}
.req-card:hover { border-color: rgba(124,108,240,0.4); }
.req-ico { font-size: 2rem; display: flex; justify-content: center; margin-bottom: 1rem; }
.req-card h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.req-card p { font-size: 0.85rem; color: var(--gray-dim); margin: 0; line-height: 1.6; }

/* ---- INSTALL STEPS ---- */
.install-section { padding: 5rem 2rem; }
.install-steps { display: flex; flex-direction: column; gap: 2rem; max-width: 680px; margin: 3rem auto 0; }
.install-step { display: flex; gap: 1.4rem; align-items: flex-start; }
.install-num {
    width: 38px; height: 38px; border-radius: 50%; background: var(--accent);
    color: var(--white); display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.95rem; flex-shrink: 0; margin-top: 0.1rem;
}
.install-body h4 { font-size: 0.97rem; font-weight: 700; margin-bottom: 0.3rem; color: var(--white); }
.install-body p { font-size: 0.85rem; color: var(--gray-dim); line-height: 1.6; margin: 0 0 0.8rem; }
.install-screens { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 0.8rem; }
.install-screen { display: flex; flex-direction: column; gap: 0.4rem; }
.install-screen-wrap { position: relative; border-radius: 10px; overflow: hidden; }
.install-screen img { width: 100%; height: auto; border-radius: 10px; border: 1px solid var(--border); display: block; }
.install-screen figcaption { font-size: 0.75rem; color: var(--gray-dim); text-align: center; }
.click-indicator { position: absolute; transform: translateX(-50%); pointer-events: none; display: flex; flex-direction: column; align-items: center; gap: 1px; }
.click-arrow { font-size: 1.5rem; line-height: 1; color: #ff5020; text-shadow: 0 0 10px rgba(255,80,30,0.7); animation: bounce-arr 1s ease-in-out infinite; }
.click-label-bubble { background: rgba(255,80,30,0.95); color: #fff; font-size: 0.67rem; font-weight: 700; padding: 2px 8px; border-radius: 20px; white-space: nowrap; }
@keyframes bounce-arr { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@keyframes bounce-right { 0%,100% { transform: translateX(0); } 50% { transform: translateX(4px); } }

/* ---- HOW IT WORKS ---- */
.steps-section { background: var(--bg-soft); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.step-card { text-align: center; position: relative; }
.step-num {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--cyan));
    color: var(--white); font-weight: 900; font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem; box-shadow: 0 4px 20px rgba(124,108,240,0.3);
    transition: transform 0.3s;
}
.step-card:hover .step-num { transform: scale(1.1); }
.step-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; }
.step-card p { font-size: 0.82rem; color: var(--gray); }
.step-connector {
    position: absolute; top: 24px; left: 70%; right: -30%;
    height: 2px; background: linear-gradient(90deg, var(--accent), transparent);
}

/* ---- FAQ ---- */
.faq-section { padding: 6rem 2rem; }
.faq-list { max-width: 720px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.faq-q {
    width: 100%; background: none; border: none; color: var(--white);
    font-size: 0.95rem; font-weight: 600; padding: 1.5rem; text-align: left;
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    gap: 1rem; font-family: inherit;
}
.faq-q:hover { background: rgba(255,255,255,0.03); }
.faq-icon { color: var(--accent); font-size: 1.4rem; flex-shrink: 0; transition: transform 0.3s; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 1.5rem; }
.faq-item.open .faq-a { max-height: 280px; padding: 0 1.5rem 1.5rem; }
.faq-a p { color: var(--gray-dim); font-size: 0.9rem; line-height: 1.75; margin: 0; }

/* ---- DISCLAIMER BOX ---- */
.disclaimer-box {
    background: rgba(239,68,68,0.06); border: 1px solid rgba(239,68,68,0.25);
    border-radius: 12px; padding: 1.2rem 1.5rem; margin-bottom: 2rem; text-align: left;
}
.disclaimer-box .disc-title {
    font-size: 0.7rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 2px; color: var(--red); margin-bottom: 0.5rem;
    display: flex; align-items: center; gap: 6px;
}
.disclaimer-box p { font-size: 0.78rem; color: var(--gray); line-height: 1.65; margin: 0; }

/* ---- PAGE HERO (for inner pages) ---- */
.page-hero {
    padding: 120px 2rem 60px; text-align: center;
    background: var(--bg); position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(124,108,240,0.14) 0%, transparent 60%);
    pointer-events: none;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero .tag { margin-bottom: 1.2rem; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900; letter-spacing: -2px; margin-bottom: 1rem; }
.page-hero p { font-size: 1rem; color: var(--gray); max-width: 520px; margin: 0 auto; }

/* ---- FOOTER ---- */
footer {
    border-top: 1px solid var(--border);
    padding: 2.5rem 2rem; text-align: center;
}
.footer-inner { max-width: 960px; margin: 0 auto; }
.footer-links {
    display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 1.2rem;
}
.footer-links a { color: var(--gray-dim); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 0.72rem; color: var(--gray-dim); }

/* ---- LUCIDE ICONS ---- */
[data-lucide] { width: 22px; height: 22px; stroke: currentColor; stroke-width: 1.75; display: block; }
.feat-ico [data-lucide]   { width: 24px; height: 24px; }
.impact-ico [data-lucide] { width: 36px; height: 36px; stroke-width: 1.5; }
.req-ico [data-lucide]    { width: 28px; height: 28px; stroke-width: 1.5; }
.step-ico [data-lucide]   { width: 20px; height: 20px; stroke-width: 2; }
.badge-ico [data-lucide]  { width: 14px; height: 14px; }
.nav-logo [data-lucide]   { width: 18px; height: 18px; }

/* ---- FOCUS ---- */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ---- PREFERS REDUCED MOTION ---- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal, .reveal-scale { opacity: 1 !important; transform: none !important; }
    .particle { display: none; }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .feat-grid, .games-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .step-connector { display: none; }
    .req-grid { grid-template-columns: 1fr 1fr; }
    .showcase-row, .showcase-row.narrow-img { grid-template-columns: 1fr; gap: 2rem; }
    .showcase-row.reverse .showcase-media { order: 1; }
    .showcase-row.reverse .showcase-text { order: 2; }
    .impact-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    /* General spacing */
    section { padding: 3.5rem 1.25rem; }

    /* Nav — only logo + lang-switch (small) + hamburger visible */
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
    nav#navbar { padding: 0; }
    .nav-inner { gap: 0; padding: 0 1rem; width: 100%; box-sizing: border-box; }
    .nav-right { gap: 0.5rem; flex-shrink: 0; }
    .nav-logo { font-size: 0.95rem; gap: 8px; min-width: 0; overflow: hidden; }
    .nav-logo span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .nav-logo img { width: 26px; height: 26px; flex-shrink: 0; }
    .lang-btn { padding: 3px 7px; font-size: 0.62rem; }
    .mobile-menu { left: 0; right: 0; }

    /* Hero */
    .hero { padding: 85px 1.25rem 40px; }
    .hero h1 { font-size: 2rem; letter-spacing: -1.5px; margin-bottom: 1rem; }
    .hero .sub { font-size: 0.95rem; margin-bottom: 2rem; }
    .hero-badges { gap: 8px; margin-bottom: 1.2rem; }
    .webcam-live-tag { font-size: 0.72rem; padding: 6px 12px; gap: 6px; max-width: 100%; }
    .local-process-tag { font-size: 0.72rem; padding: 6px 12px; gap: 6px; max-width: 100%; }
    .webcam-live-tag .w-dot { width: 7px; height: 7px; }

    /* Hero CTA: apilados en columna en móvil */
    .hero-cta { display: flex; flex-direction: column; gap: 0.6rem; width: 100%; max-width: 100%; }
    .hero-cta > a {
        min-width: unset; max-width: 100%; width: 100%; flex: none;
        padding: 14px 16px; font-size: 0.9rem;
        text-transform: none; letter-spacing: 0;
        justify-content: center;
    }
    .hero-cta > a [data-lucide] { width: 16px; height: 16px; flex-shrink: 0; }
    .hero-discord-row { margin-top: 0.75rem; }
    .btn-discord { padding: 13px 22px; font-size: 0.85rem; width: 100%; justify-content: center; }
    .discord-logo { width: 16px; height: 16px; }

    /* Hero stats */
    .hero-stats { max-width: 100%; border-radius: 12px; }
    .hero-stat { min-width: 50%; border-bottom: 1px solid var(--border); padding: 0.9rem 1rem; }
    .hero-stat:nth-child(odd) { border-right: 1px solid var(--border); }
    .hero-stat:nth-child(even) { border-right: none; }
    .hero-stat:nth-last-child(-n+2) { border-bottom: none; }

    /* Grids */
    .feat-grid, .games-grid, .impact-grid, .steps-grid { grid-template-columns: 1fr; }
    .req-grid { grid-template-columns: 1fr 1fr; }
    .feat-card { padding: 1.5rem; }

    /* Section titles */
    .stitle { letter-spacing: -1px; }
    .sdesc { font-size: 0.88rem; margin-bottom: 2rem; }

    /* Skeleton */
    .skeleton-deco { display: none; }

    /* Download page */
    .install-screens { grid-template-columns: 1fr; align-items: center; }
    .install-screen { width: 100%; max-width: 340px; margin: 0 auto; }
    .install-step { flex-direction: column; align-items: flex-start; }

    /* Beta/Download CTA */
    .beta-box h2 { letter-spacing: -1px; }
    .wl-badges { gap: 0.75rem; font-size: 0.72rem; }
    .beta-section { padding: 3.5rem 1.25rem; }
    .beta-box .btn-primary {
        display: flex; width: 100%; max-width: 100%;
        justify-content: center; padding: 14px 16px;
        font-size: 0.9rem; text-transform: none; letter-spacing: 0;
    }

    /* Showcase */
    .showcase-section { padding: 3rem 1.25rem; }
    .showcase-row { margin-bottom: 3.5rem; }

    /* Footer */
    .footer-links { gap: 1.2rem; }
    footer { padding: 2rem 1rem; }

    /* Scroll hint */
    .hero-scroll-hint { display: none; }
}

