/* ============================================
   FLUXY PAGE STYLES - PREMIUM DARK DESIGN v2
   Diseño más limpio con textos más grandes
============================================ */

/* Variables - Paleta Oscura Premium */
.fluxy-page {
    --fluxy-bg: #000000;
    --fluxy-bg-card: #0a0a0f;
    --fluxy-red: #FF0040;
    --fluxy-blue: #4A00E0;
    --fluxy-purple: #9333FF;
    --fluxy-purple-dark: #7B2FFF;
    --fluxy-gradient: linear-gradient(135deg, #FF0040 0%, #9333FF 50%, #0066FF 100%);
    --fluxy-gradient-reverse: linear-gradient(135deg, #0066FF 0%, #9333FF 50%, #FF0040 100%);
    --fluxy-gradient-purple: linear-gradient(135deg, #9333FF 0%, #7B2FFF 100%);
    --fluxy-text: #ffffff;
    --fluxy-text-dim: rgba(255, 255, 255, 0.7);
    --fluxy-card-bg: rgba(10, 10, 20, 0.98);
    --fluxy-border: rgba(147, 51, 255, 0.4);
}

/* Base */
.fluxy-page {
    min-height: 100vh;
    background: var(--fluxy-bg);
    color: var(--fluxy-text);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    font-size: 18px;
    zoom: 0.9;
}

/* ============================================
   PANTALLA DE CARGA - COLORES EXACTOS DE FLUXY
============================================ */
.fluxy-loading-screen {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    overflow: hidden;
}

.fluxy-loading-screen.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

/* Grid de fondo - colores de la web */
.loader-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(147, 51, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 64, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Glows con los colores exactos de Fluxy */
.loader-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.loader-glow-1 {
    top: -100px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: #FF0040;
    opacity: 0.4;
    animation: loaderGlow 3s ease-in-out infinite;
}

.loader-glow-2 {
    bottom: -100px;
    left: -50px;
    width: 400px;
    height: 400px;
    background: #7B2FFF;
    opacity: 0.4;
    animation: loaderGlow 3s ease-in-out infinite 1s;
}

@keyframes loaderGlow {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

/* Contenido central */
.loader-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* Contenedor del logo con anillos */
.loader-logo-container {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Anillo exterior - ROJO FLUXY */
.loader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: #FF0040;
    border-right-color: #FF0040;
    border-radius: 50%;
    animation: loaderSpin 1s linear infinite;
    box-shadow: 0 0 20px rgba(255, 0, 64, 0.4);
}

/* Anillo interior - MORADO FLUXY */
.loader-ring-2 {
    position: absolute;
    width: 80%;
    height: 80%;
    border: 3px solid transparent;
    border-bottom-color: #9333FF;
    border-left-color: #9333FF;
    border-radius: 50%;
    animation: loaderSpin 1.5s linear infinite reverse;
    box-shadow: 0 0 20px rgba(147, 51, 255, 0.4);
}

/* Anillo adicional punteado - MORADO OSCURO FLUXY */
.loader-logo-container::before {
    content: '';
    position: absolute;
    width: 115%;
    height: 115%;
    border: 2px dashed rgba(123, 47, 255, 0.5);
    border-radius: 50%;
    animation: loaderSpin 8s linear infinite;
}

@keyframes loaderSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Logo central */
.loader-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 25px rgba(147, 51, 255, 0.5)) drop-shadow(0 0 40px rgba(255, 0, 64, 0.3));
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Texto "FLUXY" - MORADO IGUAL QUE LA WEB */
.loader-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.loader-title {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 0.3em;
    color: #9333FF;
    text-shadow: 0 0 30px rgba(147, 51, 255, 0.5);
}

.loader-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.15em;
}

/* Barra de progreso - GRADIENTE DE LA WEB */
.loader-progress {
    width: 220px;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(147, 51, 255, 0.3);
}

.loader-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #FF0040 0%, #9333FF 50%, #0066FF 100%);
    border-radius: 10px;
    transition: width 0.2s ease;
    box-shadow: 0 0 15px rgba(147, 51, 255, 0.4);
}

/* Porcentaje - MORADO FLUXY */
.loader-percent {
    font-size: 0.9rem;
    font-weight: 700;
    color: #9333FF;
    letter-spacing: 0.1em;
}

/* Fondo */
.fluxy-bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(123, 47, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 64, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.fluxy-glow {
    position: fixed;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.12;
    pointer-events: none;
}

.fluxy-glow-1 {
    top: -200px;
    right: -100px;
    background: var(--fluxy-red);
    animation: fluxyFloat 20s ease-in-out infinite;
}

.fluxy-glow-2 {
    bottom: -200px;
    left: -100px;
    background: var(--fluxy-blue);
    animation: fluxyFloat 25s ease-in-out infinite reverse;
}

.fluxy-glow-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, var(--fluxy-blue) 0%, var(--fluxy-red) 100%);
    opacity: 0.04;
}

@keyframes fluxyFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(40px, -40px) scale(1.1);
    }
}

/* ============================================
   NAVEGACIÓN
============================================ */
.fluxy-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(3, 3, 5, 0.98) 0%, rgba(3, 3, 5, 0.9) 50%, transparent 100%);
}

.fluxy-nav-logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(255, 0, 51, 0.3));
}

.fluxy-nav-links {
    display: flex;
    gap: 2rem;
}

.fluxy-nav-links a {
    color: var(--fluxy-text-dim);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.fluxy-nav-links a:hover {
    color: var(--fluxy-text);
    background: rgba(255, 255, 255, 0.08);
}

/* ============================================
   HERO
============================================ */
.fluxy-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 5%;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.fluxy-hero-content {
    flex: 1;
    max-width: 700px;
}

.fluxy-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(123, 47, 255, 0.15);
    border: 1px solid var(--fluxy-purple);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: #ceb3ff;
    margin-bottom: 2.5rem;
    box-shadow: 0 0 30px rgba(123, 47, 255, 0.25);
}

.fluxy-hero-badge .badge-icon {
    color: var(--fluxy-purple);
}

.fluxy-hero-title {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.hero-logo-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(255, 0, 51, 0.5));
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 30px rgba(255, 0, 51, 0.5));
    }

    50% {
        filter: drop-shadow(0 0 50px rgba(123, 47, 255, 0.6));
    }
}

.fluxy-title-main {
    font-size: clamp(5rem, 12vw, 8rem);
    font-weight: 900;
    background: var(--fluxy-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.fluxy-hero-subtitle {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--fluxy-text);
    margin-bottom: 1.5rem;
}

.fluxy-hero-description {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--fluxy-text-dim);
    margin-bottom: 3rem;
}

/* Botones */
.fluxy-hero-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.fluxy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fluxy-btn svg {
    flex-shrink: 0;
}

.fluxy-btn-primary {
    background: var(--fluxy-purple);
    color: white;
    box-shadow: 0 0 25px rgba(123, 47, 255, 0.4);
    border: 2px solid var(--fluxy-purple);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.fluxy-btn-primary:hover {
    background: var(--fluxy-purple-dark);
    border-color: var(--fluxy-purple-dark);
    box-shadow: 0 10px 40px rgba(123, 47, 255, 0.6);
    transform: translateY(-4px) scale(1.02);
}

.fluxy-btn-secondary {
    background: rgba(10, 10, 20, 0.8);
    color: white;
    border: 2px solid rgba(123, 47, 255, 0.5);
    box-shadow: 0 0 20px rgba(123, 47, 255, 0.1);
}

.fluxy-btn-secondary:hover {
    border-color: var(--fluxy-purple);
    background: rgba(123, 47, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(123, 47, 255, 0.3);
}

.fluxy-btn-disabled {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.08);
    cursor: not-allowed;
    position: relative;
}

.fluxy-btn-disabled small {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--fluxy-gradient);
    color: white;
    font-size: 0.65rem;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-weight: 700;
}

/* Logo en el título hero */
.fluxy-title-logo {
    height: clamp(80px, 15vw, 140px);
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 60px rgba(255, 0, 51, 0.5)) drop-shadow(0 0 100px rgba(0, 85, 255, 0.3));
    animation: titleLogoGlow 3s ease-in-out infinite;
}

@keyframes titleLogoGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 60px rgba(255, 0, 51, 0.5)) drop-shadow(0 0 100px rgba(123, 47, 255, 0.3));
    }

    50% {
        filter: drop-shadow(0 0 80px rgba(123, 47, 255, 0.6)) drop-shadow(0 0 120px rgba(255, 0, 51, 0.4));
    }
}

/* Stats */
.fluxy-hero-stats {
    display: flex;
    gap: 3rem;
}

.fluxy-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fluxy-stat svg {
    flex-shrink: 0;
}

.fluxy-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--fluxy-text);
}

.fluxy-stat-label {
    font-size: 1rem;
    color: var(--fluxy-text-dim);
}

/* Hero Visual */
.fluxy-hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Nuevo Showcase con Logo Central y Órbitas */
.fluxy-app-showcase {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Anillos decorativos */
.showcase-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    animation: ringPulse 4s ease-in-out infinite;
}

.ring-1 {
    width: 100%;
    height: 100%;
    border-color: rgba(147, 51, 255, 0.5);
    box-shadow: 0 0 30px rgba(147, 51, 255, 0.15);
    animation-delay: 0s;
}

.ring-2 {
    width: 75%;
    height: 75%;
    border-color: rgba(147, 51, 255, 0.6);
    box-shadow: 0 0 30px rgba(147, 51, 255, 0.2);
    animation-delay: 0.5s;
}

.ring-3 {
    width: 50%;
    height: 50%;
    border-color: rgba(147, 51, 255, 0.4);
    animation-delay: 1s;
}

@keyframes ringPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Logo central */
.showcase-logo-container {
    position: relative;
    z-index: 10;
}

.showcase-main-logo {
    width: 180px;
    height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 0 60px rgba(147, 51, 255, 0.6)) drop-shadow(0 0 100px rgba(147, 51, 255, 0.4));
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(147, 51, 255, 0.4) 0%, rgba(147, 51, 255, 0.2) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
    animation: glowPulse 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Órbita con features */
.showcase-orbit {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: orbitSpin 25s linear infinite;
}

@keyframes orbitSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.orbit-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    background: var(--fluxy-card-bg);
    border: 1px solid var(--fluxy-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    animation: orbitSpinReverse 25s linear infinite;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@keyframes orbitSpinReverse {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.orbit-item svg {
    color: var(--fluxy-purple);
}

.orbit-item span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--fluxy-text);
}

.orbit-item:hover {
    border-color: var(--fluxy-purple);
    transform: rotate(-360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(147, 51, 255, 0.4);
}

/* Posiciones de los items en órbita */
.item-1 {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.item-2 {
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.item-3 {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.item-4 {
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}

/* TikTok Badge */
.tiktok-badge {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }

    50% {
        box-shadow: 0 10px 40px rgba(255, 0, 51, 0.4), 0 0 20px rgba(0, 85, 255, 0.3);
    }
}

.tiktok-badge svg {
    color: white;
}

/* ============================================
   SECCIONES
============================================ */
.fluxy-section {
    padding: 7rem 5%;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fluxy-section.fluxy-visible {
    opacity: 1;
    transform: translateY(0);
}

.fluxy-container {
    max-width: 1300px;
    margin: 0 auto;
}

.fluxy-section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.fluxy-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: rgba(123, 47, 255, 0.15);
    border: 1px solid var(--fluxy-purple);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    color: #ceb3ff;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(123, 47, 255, 0.2);
}

.fluxy-tag.coming {
    background: rgba(255, 0, 64, 0.15);
    border-color: var(--fluxy-red);
    color: #ffb3c1;
    box-shadow: 0 0 20px rgba(255, 0, 64, 0.2);
}

.fluxy-tag svg {
    color: inherit;
}

.fluxy-section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--fluxy-text);
}

.fluxy-section-title span {
    color: var(--fluxy-purple);
}

/* ============================================
   FEATURES GRID - 2x2 CUADRADO PERFECTO
============================================ */
.fluxy-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 1400px;
    margin: 0 auto;
}

.fluxy-feature-card {
    background: var(--fluxy-card-bg);
    border: 1px solid var(--fluxy-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

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

.fluxy-feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--fluxy-purple);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(147, 51, 255, 0.2);
}

/* Featured card ocupa 2 columnas (primera fila completa) */
.fluxy-feature-card.featured {
    grid-column: span 2;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(147, 51, 255, 0.08) 0%, rgba(255, 0, 64, 0.03) 100%);
    border-color: rgba(147, 51, 255, 0.4);
}

.fluxy-feature-card.featured .fluxy-feature-icon {
    margin-bottom: 1rem;
}

.fluxy-feature-card.featured .fluxy-feature-desc {
    margin-bottom: 1.25rem;
}

.fluxy-feature-card.featured .fluxy-feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.5rem;
    margin: 0;
}

.fluxy-feature-card.featured .fluxy-feature-list li {
    margin-bottom: 0;
}

.fluxy-feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(10, 10, 20, 0.8);
    border: 1px solid var(--fluxy-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fluxy-purple);
    margin-bottom: 1.25rem;
    box-shadow: 0 0 20px rgba(123, 47, 255, 0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.fluxy-feature-card:hover .fluxy-feature-icon {
    background: var(--fluxy-purple);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(123, 47, 255, 0.6);
    border-color: var(--fluxy-purple);
}

/* Bloque eliminado por duplicidad */

.fluxy-feature-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.fluxy-feature-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--fluxy-text-dim);
    margin-bottom: 1.5rem;
}

.fluxy-feature-desc code {
    background: rgba(255, 0, 64, 0.15);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    color: #ff8fa3;
    border: 1px solid rgba(255, 0, 64, 0.3);
}

.fluxy-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fluxy-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 1.1rem;
    color: var(--fluxy-text-dim);
    margin-bottom: 0.85rem;
}

.fluxy-feature-list svg {
    color: var(--fluxy-purple);
    flex-shrink: 0;
}

/* ============================================
   COMING SOON - GRID ORDENADO
============================================ */
.fluxy-coming-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1400px;
    margin: 0 auto;
}

.fluxy-coming-card {
    background: var(--fluxy-card-bg);
    border: 1px solid var(--fluxy-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

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

.fluxy-coming-card:hover {
    transform: translateY(-12px);
    border-color: var(--fluxy-purple);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35), 0 0 50px rgba(123, 47, 255, 0.3);
}

.fluxy-coming-card.mystery {
    background: rgba(123, 47, 255, 0.06);
    border-style: dashed;
    border-color: rgba(123, 47, 255, 0.4);
}

.fluxy-coming-icon {
    width: 90px;
    height: 90px;
    background: rgba(10, 10, 20, 0.8);
    border: 1px solid var(--fluxy-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fluxy-purple);
    margin: 0 auto 1.75rem;
    box-shadow: 0 0 30px rgba(123, 47, 255, 0.2);
    transition: all 0.3s ease;
}

.fluxy-coming-card:hover .fluxy-coming-icon {
    background: var(--fluxy-purple);
    color: white;
    box-shadow: 0 0 35px rgba(123, 47, 255, 0.6);
    border-color: var(--fluxy-purple);
    transform: scale(1.1);
}

.fluxy-coming-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--fluxy-purple);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 20px;
}

.fluxy-coming-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.fluxy-coming-card p {
    font-size: 1.1rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--fluxy-text-dim);
}

/* ============================================
   CREATOR / CONTACTO - REDISEÑO
============================================ */
.fluxy-creator-card {
    background: var(--fluxy-card-bg);
    border: 1px solid var(--fluxy-border);
    border-radius: 32px;
    padding: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.creator-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

/* Foto Section */
.creator-photo-section {
    flex-shrink: 0;
    position: relative;
}

.photo-frame {
    position: relative;
    width: 240px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--fluxy-purple);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(147, 51, 255, 0.3);
}

.photo-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.photo-glow {
    position: absolute;
    inset: -50px;
    background: radial-gradient(ellipse at center, rgba(147, 51, 255, 0.25) 0%, transparent 60%);
    filter: blur(30px);
    pointer-events: none;
    z-index: -1;
}

.creator-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: var(--fluxy-purple);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 10px 30px rgba(147, 51, 255, 0.5);
}

.creator-badge svg {
    color: white;
}

/* Info Section */
.creator-info-section {
    flex: 1;
}

.creator-name-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.creator-name-row h2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--fluxy-text);
    margin: 0;
}

.creator-alias {
    color: var(--fluxy-purple);
    font-size: 1.25rem;
    font-weight: 700;
}

.creator-title {
    font-size: 1.15rem;
    color: var(--fluxy-purple);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.creator-skills {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.skill-tag {
    padding: 0.4rem 1rem;
    background: rgba(123, 47, 255, 0.12);
    border: 1px solid rgba(123, 47, 255, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ceb3ff;
}

.creator-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--fluxy-text-dim);
    margin-bottom: 1.5rem;
}

.creator-bio strong {
    color: var(--fluxy-red);
}

.creator-stats-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid var(--fluxy-border);
}

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

.creator-stat .stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 900;
    background: var(--fluxy-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.creator-stat .stat-label {
    font-size: 0.9rem;
    color: var(--fluxy-text-dim);
    font-weight: 500;
}

.fluxy-social-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.fluxy-social-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--fluxy-border);
    border-radius: 50px;
    color: var(--fluxy-text);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.fluxy-social-btn:hover {
    transform: translateY(-5px) scale(1.03);
}

.fluxy-social-btn.tiktok:hover {
    background: #000;
    border-color: #fff;
}

.fluxy-social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
}

.fluxy-social-btn.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

.fluxy-social-btn.disabled {
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.08);
    cursor: not-allowed;
    position: relative;
}

.fluxy-social-btn.disabled:hover {
    transform: none;
}

.fluxy-social-btn.disabled small {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--fluxy-gradient);
    color: white;
    font-size: 0.6rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-weight: 700;
}

/* ============================================
   FOOTER SIMPLE
============================================ */
.fluxy-footer-simple {
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid var(--fluxy-border);
}

.fluxy-footer-simple p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   INSTALACIÓN - GRID 3 COLUMNAS PERFECTO
============================================ */
.fluxy-install-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1400px;
    margin: 0 auto;
}

.fluxy-install-step {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    text-align: center;
    background: var(--fluxy-card-bg);
    border: 1px solid var(--fluxy-border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.fluxy-install-step:hover {
    border-color: var(--fluxy-purple);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), 0 0 20px rgba(147, 51, 255, 0.15);
}

/* Paso de éxito ocupa las 3 columnas (ancho completo) */
.fluxy-install-step.step-success {
    grid-column: span 3;
    padding: 1.75rem;
    background: linear-gradient(135deg, rgba(0, 200, 100, 0.06) 0%, rgba(147, 51, 255, 0.06) 100%);
    border-color: rgba(0, 200, 100, 0.4);
}

.step-number {
    width: 48px;
    height: 48px;
    background: rgba(10, 10, 20, 0.9);
    border: 2px solid var(--fluxy-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--fluxy-purple);
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(147, 51, 255, 0.25);
    transition: all 0.3s ease;
}

.fluxy-install-step:hover .step-number {
    background: var(--fluxy-purple);
    color: white;
    box-shadow: 0 0 25px rgba(147, 51, 255, 0.6);
    transform: scale(1.05);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    color: var(--fluxy-text);
}

.step-content p {
    font-size: 0.95rem;
    color: var(--fluxy-text-dim);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Imágenes de pasos */
.step-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--fluxy-border);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.step-image:hover {
    border-color: var(--fluxy-purple);
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(123, 47, 255, 0.15);
}

.step-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.3);
}

/* Mantener placeholders por si faltan imágenes */
.step-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 4rem 2rem;
    background: rgba(123, 47, 255, 0.05);
    border: 2px dashed rgba(123, 47, 255, 0.3);
    border-radius: 16px;
    color: var(--fluxy-purple);
    transition: all 0.3s ease;
}

.step-image-placeholder:hover {
    border-color: var(--fluxy-red);
    background: rgba(255, 0, 64, 0.05);
    color: var(--fluxy-red);
}

.step-image-placeholder svg {
    opacity: 0.5;
}

.step-image-placeholder span {
    font-size: 1.1rem;
    font-weight: 600;
}

.step-image-placeholder small {
    font-size: 0.9rem;
    color: var(--fluxy-blue);
    opacity: 0.7;
}

/* Advertencias en pasos */
/* Advertencias en pasos */
.step-warning {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 0, 64, 0.15);
    border: 1px solid rgba(255, 0, 64, 0.3);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: #ffb3c1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-warning svg {
    flex-shrink: 0;
    color: var(--fluxy-red);
    margin-top: 2px;
}

.step-warning.warning-info {
    background: rgba(123, 47, 255, 0.15);
    border-color: rgba(123, 47, 255, 0.3);
    color: #ceb3ff;
}

.step-warning.warning-info svg {
    color: var(--fluxy-purple);
}

/* Paso de éxito */
.step-success {
    border-color: rgba(123, 47, 255, 0.4);
    background: linear-gradient(135deg, rgba(123, 47, 255, 0.1), rgba(0, 200, 100, 0.05));
}

.step-success .step-number {
    background: linear-gradient(135deg, #7B2FFF 0%, #00c864 100%);
}

/* Recomendación importante */
.fluxy-recommendation {
    background: rgba(147, 51, 255, 0.08);
    border: 2px solid rgba(147, 51, 255, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
    margin-top: 2rem;
}

.recommendation-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.recommendation-header svg {
    color: var(--fluxy-purple);
}

.recommendation-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--fluxy-purple);
}

.fluxy-recommendation>p {
    font-size: 1.1rem;
    color: var(--fluxy-text-dim);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.fluxy-recommendation ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.fluxy-recommendation ol li {
    font-size: 1.05rem;
    color: var(--fluxy-text);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.recommendation-reason {
    font-size: 0.95rem !important;
    color: #ceb3ff !important;
    font-weight: 600;
    padding: 1rem;
    background: rgba(123, 47, 255, 0.15);
    border: 1px solid rgba(123, 47, 255, 0.3);
    border-radius: 12px;
    margin-top: 1rem;
}

/* Modal de Descarga */
.download-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.download-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.download-modal {
    background: var(--fluxy-card-bg);
    border: 1px solid var(--fluxy-border);
    border-radius: 24px;
    padding: 3rem;
    max-width: 550px;
    width: 90%;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.download-modal-overlay.active .download-modal {
    transform: scale(1);
}

.download-modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 0, 64, 0.2), rgba(123, 47, 255, 0.2));
    border: 1px solid rgba(255, 0, 64, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 30px rgba(255, 0, 64, 0.2);
}

.download-modal-icon svg {
    color: var(--fluxy-red);
    filter: drop-shadow(0 0 10px rgba(255, 0, 64, 0.6));
}

.download-modal h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.download-modal p {
    font-size: 1.1rem;
    color: var(--fluxy-text-dim);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.download-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.download-modal .modal-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.download-modal .modal-btn-primary {
    background: linear-gradient(135deg, #FF0040 0%, #7B2FFF 100%);
    color: white;
    box-shadow: 0 10px 40px rgba(123, 47, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-modal .modal-btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid var(--fluxy-text-dim);
}

.download-modal .modal-btn-secondary:hover {
    border-color: var(--fluxy-purple);
    color: var(--fluxy-purple);
}

.download-modal .modal-btn:hover {
    transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE
============================================ */

@media (max-width: 1024px) {
    .fluxy-hero {
        flex-direction: column;
        padding-top: 10rem;
    }

    .fluxy-hero-visual {
        order: -1;
    }

    .creator-layout {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .creator-name-row {
        justify-content: center;
    }

    .creator-skills {
        justify-content: center;
    }

    .creator-stats-row {
        justify-content: center;
    }

    .fluxy-social-buttons {
        justify-content: center;
    }

    /* Coming soon grid - 2 columnas en tablet */
    .fluxy-coming-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Instalación - 2 columnas en tablet */
    .fluxy-install-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .fluxy-install-step.step-success {
        grid-column: span 2;
    }

    /* Featured card - lista en 2 columnas */
    .fluxy-feature-card.featured .fluxy-feature-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fluxy-page {
        font-size: 16px;
    }

    .fluxy-nav {
        padding: 1rem 1.5rem;
    }

    .fluxy-nav-links {
        display: none;
    }

    .fluxy-hero {
        padding: 8rem 1.5rem 4rem;
    }

    .fluxy-hero-title {
        flex-direction: column;
        text-align: center;
    }

    .fluxy-section {
        padding: 4rem 1.5rem;
    }

    .fluxy-hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }

    .fluxy-hero-buttons {
        flex-direction: column;
    }

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

    .fluxy-social-buttons {
        flex-direction: column;
    }

    .fluxy-social-btn {
        justify-content: center;
    }

    .fluxy-creator-card {
        padding: 2rem 1.5rem;
    }

    /* Features 1 columna en móvil */
    .fluxy-features-grid {
        grid-template-columns: 1fr;
    }

    .fluxy-feature-card.featured {
        grid-column: span 1;
    }

    /* Instalación 1 columna en móvil */
    .fluxy-install-steps {
        grid-template-columns: 1fr;
    }

    .fluxy-install-step {
        padding: 1.25rem;
    }

    .fluxy-install-step.step-success {
        grid-column: span 1;
        flex-direction: column;
        text-align: center;
    }

    .fluxy-install-step.step-success .step-content {
        grid-template-columns: 1fr;
    }

    .fluxy-install-step.step-success .step-image {
        grid-column: 1;
        grid-row: auto;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    /* Coming soon grid 1 columna */
    .fluxy-coming-grid {
        grid-template-columns: 1fr;
    }

    .fluxy-app-showcase {
        width: 320px;
        height: 320px;
    }

    .showcase-main-logo {
        width: 120px;
        height: 120px;
    }

    .orbit-item {
        padding: 0.75rem 1rem;
    }

    .orbit-item svg {
        width: 22px;
        height: 22px;
    }

    .orbit-item span {
        font-size: 0.75rem;
    }

    .tiktok-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.25rem;
    }
}

/* ============================================
   RESPONSIVE - MÓVILES PEQUEÑOS (480px)
============================================ */
@media (max-width: 480px) {

    /* Ajuste de viewport para mejor visualización */
    .fluxy-page {
        font-size: 14px;
    }

    /* Navegación centrada */
    .fluxy-nav {
        padding: 0.75rem 1rem;
        justify-content: center;
    }

    .fluxy-nav-logo img {
        height: 40px;
    }

    /* Hero más compacto */
    .fluxy-hero {
        padding: 6rem 1rem 3rem;
        gap: 2rem;
    }

    .fluxy-hero-content {
        max-width: 100%;
        text-align: center;
    }

    .fluxy-hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .fluxy-title-logo {
        height: clamp(60px, 20vw, 100px);
    }

    .fluxy-hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .fluxy-hero-description {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }

    /* Botones más compactos */
    .fluxy-hero-buttons {
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .fluxy-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        gap: 0.6rem;
    }

    .fluxy-btn svg {
        width: 18px;
        height: 18px;
    }

    .fluxy-btn-disabled small {
        font-size: 0.55rem;
        padding: 0.2rem 0.4rem;
        top: -8px;
        right: -5px;
    }

    /* Stats compactas */
    .fluxy-hero-stats {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .fluxy-stat {
        gap: 0.5rem;
    }

    .fluxy-stat svg {
        width: 20px;
        height: 20px;
    }

    .fluxy-stat-number {
        font-size: 1.1rem;
    }

    /* Showcase orbital más pequeño */
    .fluxy-app-showcase {
        width: 260px;
        height: 260px;
    }

    .showcase-main-logo {
        width: 90px;
        height: 90px;
    }

    .logo-glow {
        width: 150px;
        height: 150px;
    }

    /* Orbit items más pequeños */
    .orbit-item {
        padding: 0.5rem 0.75rem;
        border-radius: 12px;
        gap: 0.3rem;
    }

    .orbit-item svg {
        width: 18px;
        height: 18px;
    }

    .orbit-item span {
        font-size: 0.65rem;
    }

    /* Ajustar posiciones de orbit items */
    .item-1 {
        top: -5px;
    }

    .item-2 {
        right: -15px;
    }

    .item-3 {
        bottom: -5px;
    }

    .item-4 {
        left: -15px;
    }

    .tiktok-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        bottom: -30px;
    }

    /* Secciones más compactas */
    .fluxy-section {
        padding: 3.5rem 1rem;
    }

    .fluxy-section-header {
        margin-bottom: 3rem;
    }

    .fluxy-tag {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
    }

    .fluxy-section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    /* Features grid */
    .fluxy-features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .fluxy-feature-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .fluxy-feature-card.featured {
        grid-column: span 1;
    }

    .fluxy-feature-icon {
        width: 60px;
        height: 60px;
        border-radius: 14px;
        margin-bottom: 1.25rem;
    }

    .fluxy-feature-icon svg {
        width: 26px;
        height: 26px;
    }

    .fluxy-feature-title {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .fluxy-feature-desc {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .fluxy-feature-list li {
        font-size: 0.9rem;
        gap: 0.6rem;
        margin-bottom: 0.6rem;
    }

    .fluxy-feature-list svg {
        width: 16px;
        height: 16px;
    }

    /* Coming Soon Grid */
    .fluxy-coming-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .fluxy-coming-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .fluxy-coming-icon {
        width: 65px;
        height: 65px;
        border-radius: 16px;
        margin-bottom: 1.25rem;
    }

    .fluxy-coming-icon svg {
        width: 28px;
        height: 28px;
    }

    .fluxy-coming-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.7rem;
        top: 1rem;
        right: 1rem;
    }

    .fluxy-coming-card h3 {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }

    .fluxy-coming-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Instalación */
    .fluxy-install-steps {
        gap: 1.5rem;
    }

    .fluxy-install-step {
        padding: 1.25rem;
        border-radius: 16px;
        gap: 1rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        border-radius: 14px;
    }

    .step-content h3 {
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
    }

    .step-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    .step-content code {
        font-size: 0.8rem;
        padding: 0.15rem 0.4rem;
    }

    .step-image {
        border-radius: 12px;
    }

    .step-warning {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .step-warning svg {
        width: 18px;
        height: 18px;
    }

    /* Recomendación */
    .fluxy-recommendation {
        padding: 1.5rem;
        border-radius: 16px;
        margin-top: 1.5rem;
    }

    .recommendation-header {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .recommendation-header svg {
        width: 22px;
        height: 22px;
    }

    .recommendation-header h3 {
        font-size: 1.15rem;
    }

    .fluxy-recommendation>p {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .fluxy-recommendation ol {
        margin: 1rem 0;
        padding-left: 1.25rem;
    }

    .fluxy-recommendation ol li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .recommendation-reason {
        font-size: 0.85rem !important;
        padding: 0.75rem;
    }

    /* Creator Section */
    .fluxy-creator-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .creator-layout {
        gap: 1.5rem;
    }

    .photo-frame {
        width: 180px;
        border-radius: 16px;
    }

    .creator-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.75rem;
        bottom: -12px;
    }

    .creator-name-row h2 {
        font-size: 1.4rem;
    }

    .creator-alias {
        font-size: 1rem;
    }

    .creator-title {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .creator-skills {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .skill-tag {
        padding: 0.3rem 0.7rem;
        font-size: 0.75rem;
    }

    .creator-bio {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .creator-stats-row {
        gap: 1rem;
        padding: 1rem;
        margin-bottom: 1.25rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .creator-stat .stat-value {
        font-size: 1.4rem;
    }

    .creator-stat .stat-label {
        font-size: 0.75rem;
    }

    .fluxy-social-buttons {
        gap: 0.5rem;
    }

    .fluxy-social-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }

    .fluxy-social-btn svg {
        width: 18px;
        height: 18px;
    }

    .fluxy-social-btn.disabled small {
        font-size: 0.5rem;
        padding: 0.15rem 0.4rem;
    }

    /* Modal más compacto */
    .download-modal {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .download-modal-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .download-modal-icon svg {
        width: 28px;
        height: 28px;
    }

    .download-modal h3 {
        font-size: 1.35rem;
        margin-bottom: 0.75rem;
    }

    .download-modal p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .download-modal-buttons {
        gap: 0.75rem;
    }

    .download-modal .modal-btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Footer */
    .fluxy-footer-simple {
        padding: 2rem 1rem;
    }

    .fluxy-footer-simple p {
        font-size: 0.85rem;
    }
}

/* ============================================
   RESPONSIVE - MÓVILES MUY PEQUEÑOS (400px)
============================================ */
@media (max-width: 400px) {
    .fluxy-page {
        font-size: 13px;
    }

    .fluxy-hero {
        padding: 5.5rem 0.75rem 2.5rem;
    }

    .fluxy-title-logo {
        height: clamp(50px, 18vw, 80px);
    }

    .fluxy-hero-subtitle {
        font-size: 1.1rem;
    }

    .fluxy-hero-description {
        font-size: 0.9rem;
    }

    .fluxy-btn {
        padding: 0.8rem 1.25rem;
        font-size: 0.85rem;
    }

    /* Showcase aún más pequeño */
    .fluxy-app-showcase {
        width: 220px;
        height: 220px;
    }

    .showcase-main-logo {
        width: 75px;
        height: 75px;
    }

    .orbit-item {
        padding: 0.4rem 0.6rem;
    }

    .orbit-item svg {
        width: 16px;
        height: 16px;
    }

    .orbit-item span {
        font-size: 0.55rem;
    }

    .item-2 {
        right: -10px;
    }

    .item-4 {
        left: -10px;
    }

    /* Secciones */
    .fluxy-section {
        padding: 3rem 0.75rem;
    }

    .fluxy-section-title {
        font-size: 1.35rem;
    }

    .fluxy-feature-card,
    .fluxy-coming-card {
        padding: 1.25rem;
    }

    .fluxy-install-step {
        padding: 1rem;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }

    .fluxy-creator-card {
        padding: 1.25rem;
    }

    .photo-frame {
        width: 150px;
    }

    .creator-name-row h2 {
        font-size: 1.25rem;
    }

    .creator-stats-row {
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .fluxy-social-btn {
        padding: 0.65rem 1rem;
        font-size: 0.8rem;
    }
}

/* ============================================
   RESPONSIVE - MÓVILES ULTRA PEQUEÑOS (360px)
============================================ */
@media (max-width: 360px) {
    .fluxy-page {
        font-size: 12px;
    }

    .fluxy-nav-logo img {
        height: 35px;
    }

    .fluxy-hero {
        padding: 5rem 0.5rem 2rem;
    }

    .fluxy-hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    .fluxy-title-logo {
        height: 45px;
    }

    .fluxy-hero-subtitle {
        font-size: 1rem;
    }

    .fluxy-btn {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }

    /* Simplificar showcase - órbitas más pequeñas */
    .fluxy-app-showcase {
        width: 200px;
        height: 200px;
    }

    .showcase-orbit {
        display: block;
        transform: scale(0.55);
    }

    .orbit-item {
        width: 45px;
        height: 45px;
    }

    .orbit-item i {
        font-size: 1rem;
    }

    .orbit-item span {
        font-size: 0.55rem;
    }

    .showcase-main-logo {
        width: 80px;
        height: 80px;
    }

    .tiktok-badge {
        font-size: 0.6rem;
        padding: 0.35rem 0.6rem;
    }

    .fluxy-section {
        padding: 2.5rem 0.5rem;
    }

    .fluxy-section-header {
        margin-bottom: 2rem;
    }

    .fluxy-section-title {
        font-size: 1.2rem;
    }

    .fluxy-feature-icon,
    .fluxy-coming-icon {
        width: 50px;
        height: 50px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        border-radius: 12px;
    }

    .photo-frame {
        width: 130px;
    }

    .creator-name-row {
        flex-direction: column;
        gap: 0.25rem;
    }

    .creator-stats-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .creator-stat {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
}

/* ============================================
   FIX GENERAL - EVITAR SCROLL HORIZONTAL
============================================ */
@media (max-width: 768px) {

    .fluxy-page,
    .fluxy-page * {
        max-width: 100vw;
    }

    .fluxy-page {
        overflow-x: hidden;
    }

    .fluxy-hero,
    .fluxy-section,
    .fluxy-container {
        overflow-x: hidden;
    }

    /* Prevenir que glows causen overflow */
    .fluxy-glow {
        max-width: 100vw;
        overflow: hidden;
    }

    .fluxy-glow-1 {
        right: -200px;
    }

    .fluxy-glow-2 {
        left: -200px;
    }
}

/* ============================================
   FIX RESPONSIVE - GRIDS EN MOVIL/TABLET
============================================ */
@media (max-width: 1024px) {
    .fluxy-features-grid {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
    }

    .fluxy-coming-grid {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
    }

    .fluxy-install-steps {
        max-width: 100% !important;
    }

    .fluxy-creator-card {
        max-width: 100% !important;
    }

    .fluxy-page {
        zoom: 1 !important;
    }
}