/* ===================================================
   PLAYRO // NEXT-GEN GAMING NETWORK
   Stylesheet v1.0
   =================================================== */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-deep:     #05070A;
    --bg-darker:   #0A0E17;
    --bg-card:     rgba(18, 28, 46, 0.7);

    --neon-cyan:   #00F0FF;
    --neon-purple: #B026FF;
    --neon-pink:   #FF007A;
    --acid-lime:   #CCFF00;

    --glass-border: rgba(0, 240, 255, 0.2);
    --glow-cyan:    0 0 15px rgba(0, 240, 255, 0.5);
    --glow-purple:  0 0 20px rgba(176, 38, 255, 0.6);

    --font-primary: 'Inter', sans-serif;
    --font-display: 'Orbitron', sans-serif;
    --font-brand:   'Saira Stencil One', cursive;

    --transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-deep);
    background-image:
        radial-gradient(circle at 20% 30%, rgba(176, 38, 255, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(0, 240, 255, 0.08) 0%, transparent 30%),
        repeating-linear-gradient(
            45deg,
            rgba(255,255,255,0.01) 0px,
            rgba(255,255,255,0.01) 2px,
            transparent 2px,
            transparent 6px
        );
    color: #FFFFFF;
    font-family: var(--font-primary);
    line-height: 1.5;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFF 0%, var(--neon-cyan) 50%, var(--neon-purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), transparent);
    box-shadow: var(--glow-cyan);
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
}

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

.section-header p {
    color: #A0B0C9;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    background: rgba(5, 7, 10, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    transition: padding var(--transition);
}

.navbar.scrolled {
    padding: 0.75rem 0;
}

.nav-container {
    display: flex;
    justify-content: center;   /* nav-menu centrado por defecto */
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.brand-logo {
    position: absolute;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-20px) scale(0.88);
    transition:
        opacity 0.45s ease,
        transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.navbar.brand-visible .brand-logo {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) scale(1);
}

.brand-logo__img {
    height: 40px;
    filter: drop-shadow(0 0 8px var(--neon-cyan));
}

.brand-logo-compact {
    display: none;
    text-decoration: none;
}

.brand-logo-compact img {
    height: 44px;
    filter: drop-shadow(0 0 8px var(--neon-cyan));
}

.brand-logo__text {
    font-family: var(--font-brand);
    font-size: 1.8rem;
    letter-spacing: 6px;
}

.logo-play { color: var(--neon-cyan); text-shadow: var(--glow-cyan); }
.logo-ro   { color: #FF5500; text-shadow: 0 0 10px #FF5500; }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    align-items: center;
    /* transform managed by JS on scroll; only declare transition here */
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-menu a {
    color: #E0E0E0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: color var(--transition);
    position: relative;
    padding-bottom: 5px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    transition: width var(--transition);
}

.nav-menu a:hover         { color: #FFF; }
.nav-menu a:hover::before { width: 100%; }

/* Higher specificity than .nav-menu a — no !important needed */
.nav-menu a.nav-cta {
    background: transparent;
    border: 1.5px solid var(--neon-purple);
    padding: 0.6rem 1.8rem;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    color: #FFF;
    font-weight: 700;
    box-shadow: inset 0 0 10px rgba(176, 38, 255, 0.3);
    transition: background var(--transition), box-shadow var(--transition);
}

.nav-menu a.nav-cta:hover {
    background: var(--neon-purple);
    box-shadow: var(--glow-purple);
}

.nav-menu a.nav-cta::before { display: none; }

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    box-shadow: var(--glow-cyan);
}

.mobile-menu-toggle:hover {
    background: var(--neon-cyan);
    color: #05070A;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: rgba(5, 7, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    padding: 6rem 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    border-left: 2px solid var(--neon-purple);
    box-shadow: -10px 0 50px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: 1px solid var(--neon-pink);
    color: var(--neon-pink);
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.mobile-menu-close:hover {
    background: var(--neon-pink);
    color: #FFF;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-menu a {
    color: #FFF;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 2px;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: color var(--transition);
}

.mobile-menu a:hover {
    color: var(--neon-cyan);
}

/* (0,2,0) > .mobile-menu a (0,1,1) — no !important needed */
.mobile-menu .nav-cta-mobile {
    margin-top: 2rem;
    background: var(--neon-purple);
    text-align: center;
    padding: 1rem;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
    border: none;
    font-size: 1.4rem;
    color: #FFF;
    box-shadow: var(--glow-purple);
}

.mobile-menu__footer {
    margin-top: auto;
    padding-top: 3rem;
    color: var(--neon-cyan);
    font-family: var(--font-display);
    text-align: center;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.mobile-menu__tagline {
    opacity: 0.62;
}

.mobile-menu__powered {
    margin-top: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    letter-spacing: 0.5px;
    color: #A7BBD1;
    font-size: 0.72rem;
    opacity: 0.95;
}

.mobile-menu__powered a {
    display: inline-flex;
}

.mobile-menu__powered img {
    width: 125px;
    height: auto;
    object-fit: contain;
    opacity: 0.9;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== HERO ===== */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../assets/images/grid-pattern.svg');
    opacity: 0.5;
    pointer-events: none;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: minmax(700px, 1fr) 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 5;
}

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

.hero-brand__img {
    width: 80px;
    filter: drop-shadow(0 0 20px var(--neon-purple));
    animation: float 4s infinite ease-in-out;
}

.hero-brand__text {
    font-family: var(--font-brand);
    font-size: 4rem;
    letter-spacing: 8px;
}

.hero-eyebrow {
    font-family: var(--font-display);
    color: var(--acid-lime);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.78rem;
    margin-bottom: 0.75rem;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    text-transform: none;
    letter-spacing: 0;
    color: #FFF;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.hero-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    margin-top: 1rem;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
    box-shadow: var(--glow-cyan);
}

.headline-main {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.headline-part {
    background: linear-gradient(135deg, #FFF, #CCC);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Force DOMINATE + TOGETHER onto the second line */
.headline-break {
    flex-basis: 100%;
    height: 0;
}

/* nth-child counts ALL children including .headline-break */
.headline-part:nth-child(1) { color: var(--neon-cyan);  background: none; text-shadow: var(--glow-cyan); }
.headline-part:nth-child(4) { color: var(--acid-lime);  background: none; text-shadow: 0 0 10px var(--acid-lime); }

.subheadline {
    font-size: 1.2rem;
    color: #B0C4DE;
    max-width: 500px;
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--neon-pink);
    padding-left: 1.5rem;
}

.cta-container {
    display: flex;
    gap: 1.5rem;
}

.cta-primary {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
    border: 1px solid rgba(255,255,255,0.2);
    padding: 1rem 2.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFF;
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), letter-spacing var(--transition);
    box-shadow: 0 0 20px rgba(255, 0, 122, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.cta-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--neon-pink);
    letter-spacing: 3px;
}

.cta-secondary {
    background: transparent;
    border: 2px solid var(--neon-cyan);
    padding: 1rem 2.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--neon-cyan);
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    cursor: pointer;
    transition: background var(--transition), color var(--transition), box-shadow var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.cta-secondary:hover {
    background: var(--neon-cyan);
    color: #05070A;
    box-shadow: var(--glow-cyan);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.hero-trustline {
    margin-top: 1.4rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--glass-border);
    background: rgba(0, 240, 255, 0.06);
    border-radius: 999px;
    color: #9AD5E2;
    font-size: 0.84rem;
    padding: 0.45rem 0.8rem;
    letter-spacing: 0.2px;
}

.hero-trust-badge i {
    color: var(--acid-lime);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFF;
    text-shadow: 0 0 15px var(--neon-cyan);
}

.stat-label {
    display: block;
    color: #8899BB;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

/* ===== PHONE MOCKUP & CAROUSEL ===== */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-start;
}

.phone-mockup {
    position: relative;
    width: 100%;
    max-width: 300px;
    /* Aspect ratio matches mobile_frame.png (~9:19) */
    aspect-ratio: 9 / 19;
    transform: rotate(5deg);
    transition: transform var(--transition);
    filter: drop-shadow(0 0 40px rgba(176, 38, 255, 0.35));
}

.phone-mockup:hover {
    transform: rotate(3deg) scale(1.02);
    filter: drop-shadow(0 0 50px rgba(0, 240, 255, 0.4));
}

/* Static screen image behind the phone frame */
.phone-screen-img {
    position: absolute;
    top: 8%;
    left: 3.5%;
    right: 3.5%;
    bottom: 3%;
    width: 93%;
    height: 89%;
    object-fit: cover;
    border-radius: 8px;
    z-index: 1;
}

/* Real frame image sits on top, transparent screen area reveals the screen */
.phone-frame {
    position: absolute;
    inset: 0;
    width: 138%;
    height: 105%;
    left: -60px;
    object-fit: contain;
    z-index: 2;
    pointer-events: none;
}

/* Carousel is clipped to the screen area of the frame.
   Calibrated for Mobile-Frame-PNG-Pic.png (iPhone X style, thin bezels).
   Adjust insets here if the frame image changes. */
.screenshot-carousel {
    position: absolute;
    top: 8%;
    left: 3.5%;
    right: 3.5%;
    bottom: 3%;
    overflow: hidden;
    border-radius: 8px;
    background: #0A0E17;
    z-index: 1;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.carousel-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transition: background var(--transition), transform var(--transition);
    cursor: pointer;
    border: none;
    padding: 0;
}

.carousel-dot.active {
    background: var(--neon-cyan);
    transform: scale(1.4);
    box-shadow: var(--glow-cyan);
}

/* Floating elements */
.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(18, 28, 46, 0.8);
    backdrop-filter: blur(5px);
    border: 1px solid var(--neon-cyan);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    z-index: 10;
}

.el1 { top: 10%; right: -10px;  animation: float 5s infinite; }
.el2 { bottom: 20%; left: -20px; animation: float 6s infinite reverse; border-color: var(--neon-purple); color: var(--neon-purple); box-shadow: var(--glow-purple); }
.el3 { top: 40%; left: -30px;   animation: float 4s infinite; border-color: var(--acid-lime); color: var(--acid-lime); box-shadow: 0 0 15px rgba(204,255,0,0.5); }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-15px); }
}

/* ===== PLATFORM STRIP ===== */
.platform-strip {
    --ticker-shift: 920px;
    --ticker-duration: 24s;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(4, 7, 12, 0.96), rgba(6, 10, 16, 0.96));
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 240, 255, 0.45);
    border-bottom: 1px solid rgba(204, 255, 0, 0.45);
    padding: 1rem 0;
    margin: 2rem 0;
}

.platform-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at center, rgba(204, 255, 0, 0.35) 1px, transparent 1.3px);
    background-size: 6px 6px;
    opacity: 0.2;
    pointer-events: none;
}

.platform-strip::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.06) 50%, transparent 100%);
    background-size: 100% 5px;
    opacity: 0.2;
    pointer-events: none;
}

.platform-strip__viewport {
    display: flex;
    align-items: center;
    width: max-content;
    animation: ledTicker var(--ticker-duration) linear infinite;
    position: relative;
    z-index: 1;
    will-change: transform;
}

.platform-strip__viewport:hover {
    animation-play-state: paused;
}

.platform-strip__inner {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0 0.45rem;
    flex-shrink: 0;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 0.9rem;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(204, 255, 0, 0.45);
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--acid-lime);
    text-shadow: 0 0 8px rgba(204, 255, 0, 0.55);
    box-shadow: inset 0 0 8px rgba(204, 255, 0, 0.2), 0 0 10px rgba(0, 240, 255, 0.1);
    transition: border-color var(--transition), box-shadow var(--transition), color var(--transition);
}

.platform-badge i {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
}

.platform-badge:hover {
    border-color: var(--neon-cyan);
    color: #E6FF8E;
    box-shadow: inset 0 0 12px rgba(0, 240, 255, 0.2), 0 0 16px rgba(0, 240, 255, 0.2);
}

@keyframes ledTicker {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-1 * var(--ticker-shift))); }
}

/* ===== PROBLEM / SOLUTION ===== */
.problem-solution {
    background: radial-gradient(circle at 20% 50%, rgba(176, 38, 255, 0.12) 0%, transparent 45%);
}

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

.problem-card {
    border: 1px solid var(--glass-border);
    background: rgba(10, 14, 23, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 22px;
    padding: 2rem;
}

.problem-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
}

.problem-card p {
    color: #BCD0E5;
    line-height: 1.7;
}

.problem-card--accent {
    border-color: rgba(255, 0, 122, 0.5);
    box-shadow: 0 0 30px rgba(255, 0, 122, 0.12);
}

.problem-card--accent h3 {
    color: var(--neon-pink);
}

/* ===== FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    background: radial-gradient(circle at 80% 30%, rgba(0, 240, 255, 0.1) 0%, transparent 40%);
}

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

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(176, 38, 255, 0.12), transparent 60%);
    pointer-events: none;
}

.step-card__number {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--bg-deep);
    background: var(--acid-lime);
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.step-card p {
    color: #B4C8DF;
}

.feature-card {
    background: var(--bg-card);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(176,38,255,0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
    font-size: 2.5rem;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    text-shadow: var(--glow-cyan);
}

.feature-card h3 {
    color: #FFF;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-card p {
    color: #A0B0C9;
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-highlight {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

/* ===== GALLERY ===== */
.gallery-carousel {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-grid {
    display: flex;
    align-items: stretch;
    gap: 1.2rem;
    width: 100%;
    overflow-x: auto;
    padding: 0.5rem 0.25rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    cursor: grab;
    -ms-overflow-style: none;
    scrollbar-width: none;
    touch-action: auto;
}

.gallery-grid::-webkit-scrollbar {
    display: none;
}

.gallery-grid.is-dragging {
    cursor: grabbing;
}

.gallery-item {
    flex: 0 0 clamp(220px, 22vw, 300px);
    max-width: 300px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    position: relative;
    aspect-ratio: 9/19;
    scroll-snap-align: center;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.gallery-item:hover {
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.15);
}

.gallery-item__caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(transparent, var(--bg-deep));
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    border-top: 1px solid var(--neon-purple);
}

.gallery-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--neon-cyan);
    background: rgba(5, 7, 10, 0.85);
    color: var(--neon-cyan);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 0 16px rgba(0, 240, 255, 0.2);
    z-index: 3;
    transition: background var(--transition), color var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.gallery-control--prev {
    left: 1rem;
}

.gallery-control--next {
    right: 1rem;
}

.gallery-control:hover {
    background: var(--neon-cyan);
    color: #05070A;
    box-shadow: var(--glow-cyan);
}

.gallery-control:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    box-shadow: none;
}

/* ===== WHY CHOOSE ===== */
.why-choose {
    padding-top: 1rem;
}

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

.why-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(10, 14, 23, 0.7);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1rem 1.1rem;
    color: #D5E5F8;
}

.why-item i {
    color: var(--acid-lime);
}

/* ===== SAFETY ===== */
.safety-section {
    background: radial-gradient(circle at 20% 40%, rgba(176, 38, 255, 0.15) 0%, transparent 42%);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.trust-item {
    background: rgba(10, 14, 23, 0.75);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.8rem;
}

.trust-item__icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    box-shadow: var(--glow-cyan);
}

.trust-item h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.trust-item p {
    color: #B4C8DF;
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pricing-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 3rem 2rem;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.15);
}

.pricing-card--pro {
    border-color: var(--neon-purple);
    box-shadow: 0 0 40px rgba(176, 38, 255, 0.2);
    transform: scale(1.05);
}

.pricing-card--pro:hover {
    transform: scale(1.05) translateY(-6px);
    box-shadow: 0 0 60px rgba(176, 38, 255, 0.35);
}

.pricing-card__badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-pink);
    color: #FFF;
    padding: 8px 24px;
    border-radius: 40px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 3px;
    box-shadow: 0 0 20px var(--neon-pink);
    border: 1px solid #FFF;
    white-space: nowrap;
}

.pricing-card__tier {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: #8899BB;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.pricing-card__price {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFF;
    margin: 1rem 0;
}

.pricing-card__price span {
    font-size: 1rem;
    color: #8899BB;
}

.pricing-card__strike {
    color: #A5B8CE;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-decoration: line-through;
    opacity: 0.85;
}

.pricing-card__features {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.pricing-card__features li {
    padding: 0.6rem 0;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #C0D0E0;
}

.pricing-card__features i {
    color: var(--acid-lime);
    width: 20px;
    text-align: center;
}

.pricing-card__cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
    margin-top: 1rem;
    cursor: pointer;
}

.pricing-card__cta--pro {
    background: var(--neon-purple);
    border-color: var(--neon-purple);
    color: #FFF;
    box-shadow: var(--glow-purple);
}

.pricing-card__cta:hover {
    background: #FFF;
    color: #05070A;
    border-color: #FFF;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.pricing-founder-note {
    color: #C9D7E8;
    font-size: 0.88rem;
    line-height: 1.55;
}

.pricing-footnote {
    margin-top: 1.5rem;
    text-align: center;
    color: #90A7BF;
    font-size: 0.85rem;
}

/* ===== FAQ ===== */
.faq-section {
    background: radial-gradient(circle at 82% 30%, rgba(0, 240, 255, 0.08) 0%, transparent 40%);
}

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

.faq-item {
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    background: rgba(10, 14, 23, 0.7);
    padding: 1.4rem;
}

.faq-item h3 {
    font-size: 0.95rem;
    margin-bottom: 0.65rem;
    color: var(--neon-cyan);
}

.faq-item p {
    color: #BDCEE0;
    font-size: 0.94rem;
    line-height: 1.55;
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 6rem 0;
    background: radial-gradient(circle at 30% 50%, rgba(176,38,255,0.15) 0%, transparent 50%);
}

.cta-card {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(10, 14, 23, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid var(--neon-cyan);
    border-radius: 48px;
    padding: 4rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    box-shadow: 0 0 80px rgba(0, 240, 255, 0.15);
}

.cta-card__text h2 {
    font-size: 2.5rem;
}

.cta-card__text p {
    margin: 1.5rem 0;
    color: #B0C4DE;
    font-size: 1.1rem;
}

.store-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.store-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.9rem 1.8rem;
    background: #000;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: #FFF;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    font-size: 0.95rem;
}

.store-badge i {
    font-size: 1.4rem;
}

.store-badge:hover {
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.cta-card__icon {
    font-size: 8rem;
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 30px var(--neon-cyan));
    animation: float 5s infinite ease-in-out;
    flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
    background: #03050A;
    border-top: 2px solid var(--neon-purple);
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.footer__brand-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer__brand {
    font-family: var(--font-display);
    letter-spacing: 4px;
    color: #FFF;
}

.footer__tagline {
    color: var(--neon-cyan);
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.footer__legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer__legal a {
    color: #C2D4EA;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color var(--transition), border-color var(--transition);
}

.footer__legal a:hover {
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
}

.footer__developer {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #9DB3CA;
    font-size: 0.85rem;
    letter-spacing: 0.6px;
}

.footer__developer img {
    width: 140px;
    height: auto;
    object-fit: contain;
}

.footer__developer span {
    white-space: nowrap;
}

/* ===== BACK TO TOP (MOBILE) ===== */
.back-to-top {
    position: fixed;
    right: 16px;
    bottom: 20px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--neon-cyan);
    border-radius: 50%;
    background: rgba(5, 7, 10, 0.9);
    color: var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 18px rgba(0, 240, 255, 0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
    z-index: 1400;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--neon-cyan);
    color: #05070A;
    box-shadow: var(--glow-cyan);
}

/* ===== TOAST NOTIFICATION ===== */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--bg-darker);
    border: 2px solid var(--neon-cyan);
    padding: 1rem 2rem;
    color: #FFF;
    font-family: var(--font-display);
    font-size: 0.85rem;
    z-index: 9999;
    box-shadow: 0 0 30px var(--neon-cyan);
    border-radius: 4px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s ease;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 1;
    transform: none;
    transition: none;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .features-grid  { grid-template-columns: repeat(2, 1fr); }
    .steps-grid     { grid-template-columns: 1fr; }
    .trust-grid     { grid-template-columns: 1fr; }
    .why-grid       { grid-template-columns: 1fr; }
    .faq-grid       { grid-template-columns: 1fr; }
    .problem-grid   { grid-template-columns: 1fr; }
}

/* Hero collapses when viewport can't comfortably fit 800px content + phone side by side */
@media (max-width: 1200px) {
    .hero-container         { grid-template-columns: 1fr; text-align: center; }
    .hero-brand             { justify-content: center; }
    .hero-brand__text       { font-size: 2.5rem; }
    .hero-title             { font-size: 2.8rem; }
    .hero-title::after      { margin-left: auto; margin-right: auto; }
    .headline-main          { font-size: 2.5rem; justify-content: center; }

    .subheadline {
        margin-left: auto;
        margin-right: auto;
        border-left: none;
        border-top: 4px solid var(--neon-pink);
        padding-left: 0;
        padding-top: 1.5rem;
    }

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

    .phone-mockup           { transform: rotate(0deg); margin: 0 auto; }
    .floating-element       { display: none; }
}

@media (max-width: 992px) {
    /* Restaurar layout normal del navbar: logo compacto en mobile */
    .nav-container {
        justify-content: space-between;
    }
    .brand-logo {
        display: none;
    }
    .brand-logo-compact     { display: block; }
    .nav-menu               { display: none; transform: none !important; transition: none !important; }
    .mobile-menu-toggle     { display: flex; }

    .cta-card               { flex-direction: column; text-align: center; }
    .store-badges           { justify-content: center; }
    .gallery-carousel       { padding: 0 1.4rem; }
    .gallery-grid           { gap: 1rem; }
    .gallery-item           { flex: 0 0 min(78vw, 320px); max-width: 320px; }
    .pricing-grid           { grid-template-columns: 1fr; max-width: 520px; padding: 0; }
    .pricing-card--pro      { transform: scale(1); }
    .footer__inner          { justify-content: center; }
    .footer__brand-wrap     { align-items: center; }
    .footer__developer      { justify-content: center; }
}

@media (min-width: 993px) {
    .back-to-top {
        display: none;
    }
}

@media (max-width: 640px) {
    h2                      { font-size: 2rem; }
    h2::after               { width: 100%; }

    .navbar                 { padding: 0.8rem 0; }
    .nav-container          { padding: 0 1.2rem; }
    .brand-logo__img        { height: 32px; }
    .brand-logo__text       { font-size: 1.4rem; letter-spacing: 3px; }

    .hero                   { padding: 120px 0 60px; }
    .hero-brand__img        { width: 60px; }
    .hero-brand__text       { font-size: 2rem; }
    .hero-title             { font-size: 2.2rem; }
    .headline-main          { font-size: 2rem; }
    .subheadline            { font-size: 1rem; }

    .cta-primary,
    .cta-secondary          { padding: 0.8rem 1.5rem; font-size: 0.9rem; width: 100%; justify-content: center; }

    .stat-number            { font-size: 2rem; }
    .hero-stats             { gap: 1.5rem; }

    .platform-strip         { padding: 0.8rem 0; }
    .platform-strip__viewport { animation-duration: 18s; }
    .platform-badge         { font-size: 0.72rem; padding: 0.4rem 0.65rem; }

    .features-grid          { grid-template-columns: 1fr; padding: 0 1rem; }
    .feature-card {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        column-gap: 0.9rem;
        row-gap: 0.45rem;
        align-items: center;
        padding: 1.4rem 1.2rem;
    }
    .feature-card h3        { margin-bottom: 0.25rem; }
    .feature-card p         { grid-column: 1; }
    .feature-icon {
        grid-column: 2;
        grid-row: 1 / span 2;
        margin-bottom: 0;
        font-size: 2rem;
        align-self: center;
    }

    .trust-item {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        column-gap: 0.9rem;
        row-gap: 0.45rem;
        align-items: center;
        padding: 1.4rem 1.2rem;
    }
    .trust-item__icon {
        grid-column: 1;
        grid-row: 1 / span 2;
        margin-bottom: 0;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        align-self: center;
    }
    .trust-item h3          { grid-column: 2; margin-bottom: 0.2rem; }
    .trust-item p           { grid-column: 2; }

    .gallery-carousel       { max-width: 520px; padding: 0 1.1rem; }
    .gallery-grid           { max-width: 520px; padding: 0; gap: 0.9rem; }
    .gallery-item           { flex: 0 0 100%; max-width: none; width: 100%; }
    .gallery-control        { width: 40px; height: 40px; }
    .gallery-control--prev  { left: 0.2rem; }
    .gallery-control--next  { right: 0.2rem; }

    .pricing-card           { padding: 2rem 1.5rem; }
    .pricing-card__price    { font-size: 2.5rem; }

    .cta-card               { padding: 2rem; border-radius: 24px; }
    .cta-card__icon         { font-size: 5rem; }

    .footer                 { text-align: center; }
    .footer__inner          { flex-direction: column; }
    .footer__legal          { flex-direction: column; }
    .footer__developer img  { width: 110px; }
}

@media (prefers-reduced-motion: reduce) {
    .platform-strip__viewport {
        animation: none;
    }
}
