/* ElectroShop VE - página en construcción */

:root {
    --blue-900: #0511f2;
    --blue-700: #1a5ad9;
    --blue-500: #2573d9;
    --blue-300: #4a8ee2;
    --gray-50: #f2f2f2;
    --gray-100: #cfcfcf;
    --gray-500: #909090;
    --gray-700: #2b2b2b;
    --gray-900: #0d0d0d;
    --max-width: 680px;
    --glow: 0 30px 120px rgba(5, 17, 242, 0.18);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-50);
    background-color: var(--gray-900);
    width: 100%;
    overflow-x: hidden;
}

body {
    --page-padding-block: clamp(2.8rem, 8vh, 5.5rem);
    --page-padding-inline: clamp(1.5rem, 4vw, 3.5rem);
    min-height: 100vh;
    min-height: 100svh;
    margin: 0;
    color: inherit;
    background: radial-gradient(circle at top left, rgba(37, 115, 217, 0.08), transparent 45%),
        radial-gradient(circle at bottom right, rgba(26, 90, 217, 0.08), transparent 50%),
        var(--gray-900);
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: var(--page-padding-block) 0;
    overflow-x: hidden;
    overflow-y: auto;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    max-width: 100vw;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.background {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.background__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(5, 17, 242, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(5, 17, 242, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: grid-shift 22s linear infinite;
    z-index: 0;
    opacity: 0.55;
}

.background__particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
    z-index: 1;
    opacity: 0.7;
    mix-blend-mode: screen;
}

.background__orbs {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.background__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.55;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    animation: float 18s ease-in-out infinite;
}

.background__orb--one {
    width: 360px;
    height: 360px;
    top: -120px;
    left: -120px;
    background: radial-gradient(circle, rgba(5, 17, 242, 0.9), transparent 75%);
}

.background__orb--two {
    width: 480px;
    height: 480px;
    bottom: -180px;
    right: -160px;
    background: radial-gradient(circle, rgba(26, 90, 217, 0.65), transparent 70%);
    animation-delay: 4s;
}

.background__orb--three {
    width: 320px;
    height: 320px;
    top: 45%;
    left: 60%;
    background: radial-gradient(circle, rgba(37, 115, 217, 0.75), transparent 65%);
    animation-delay: 8s;
}

.intro {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(13, 13, 13, 0.98);
    z-index: 9;
    animation: intro-fade-out 1s ease-in-out 2.6s forwards;
}

.intro__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    animation: intro-zoom 2.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.intro__logo {
    width: clamp(140px, 22vw, 220px);
    filter: drop-shadow(0 0 60px rgba(5, 17, 242, 0.7));
    display: none;
}

.intro__wordmark {
    font-size: clamp(2.25rem, 6vw, 3.25rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: linear-gradient(120deg, var(--blue-900), var(--blue-500));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.layout {
    width: min(100%, 980px);
    min-height: calc(100svh - (var(--page-padding-block) * 2));
    display: grid;
    place-items: center;
    text-align: center;
    padding-inline: var(--page-padding-inline);
    margin: 0 auto;
}

.layout__inner {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: clamp(2.5rem, 6vw, 4rem) clamp(1.6rem, 4vw, 3.2rem);
    backdrop-filter: blur(12px);
    background: linear-gradient(160deg, rgba(13, 13, 13, 0.72), rgba(13, 13, 13, 0.55));
    border: 1px solid rgba(37, 115, 217, 0.16);
    border-radius: 28px;
    box-shadow: var(--glow);
    display: grid;
    gap: 2.5rem;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.layout__inner::before,
.layout__inner::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(5, 17, 242, 0.4), rgba(74, 142, 226, 0));
    filter: blur(60px);
    opacity: 0.6;
    z-index: -1;
}

.layout__inner::before {
    top: -60px;
    right: -40px;
}

.layout__inner::after {
    bottom: -50px;
    left: -30px;
}

.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.brand__logo-container {
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand__logo {
    display: none;
    width: clamp(120px, 20vw, 190px);
    filter: drop-shadow(0 15px 45px rgba(5, 17, 242, 0.35));
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
    cursor: pointer;
}

.brand__logo--coin {
    display: block;
    border-radius: 50%;
    box-shadow: 
        0 0 0 3px rgba(5, 17, 242, 0.2),
        0 0 0 6px rgba(26, 90, 217, 0.1),
        inset 0 2px 4px rgba(0, 0, 0, 0.3),
        inset 0 -2px 4px rgba(255, 255, 255, 0.1);
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(0, 0, 0, 0.1), transparent 50%);
    transform: rotateY(0deg);
}

.brand__logo--coin:hover,
.brand__logo--coin:focus-visible {
    animation: coin-flip 1.2s ease-in-out;
}

.brand__logo--coin:active {
    animation: coin-spin 0.8s ease-in-out;
}

.brand__wordmark {
    font-size: clamp(2.1rem, 5vw, 2.8rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(120deg, var(--blue-900), var(--blue-500));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.status {
    justify-self: center;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 1.6rem;
    border-radius: 999px;
    background: rgba(37, 115, 217, 0.1);
    border: 1px solid rgba(37, 115, 217, 0.24);
    color: var(--gray-100);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
}

.status__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--blue-500);
    box-shadow: 0 0 0 rgba(37, 115, 217, 0.6);
    animation: pulse 2.4s ease-in-out infinite;
}

.hero {
    display: grid;
    gap: 1.25rem;
}

.hero__title {
    margin: 0;
    font-size: clamp(2.5rem, 6vw, 3.6rem);
    line-height: 1.1;
    font-weight: 900;
    color: var(--gray-50);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero__highlight {
    background: linear-gradient(120deg, var(--blue-900), var(--blue-500));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__subtitle {
    margin: 0 auto;
    max-width: 46ch;
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    line-height: 1.7;
    color: var(--gray-500);
    font-weight: 300;
}

.countdown {
    display: grid;
    gap: 1.1rem;
    padding: 1.6rem clamp(1.4rem, 4vw, 2rem);
    border-radius: 22px;
    border: 1px solid rgba(74, 142, 226, 0.18);
    background: rgba(13, 13, 13, 0.55);
    box-shadow: inset 0 0 24px rgba(37, 115, 217, 0.08);
}

.countdown__badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.26em;
    color: var(--gray-100);
    margin: 0;
}

.countdown__timer {
    display: grid;
    grid-template-columns: repeat(4, minmax(70px, 1fr));
    gap: clamp(0.85rem, 3vw, 1.1rem);
}

.countdown__slot {
    padding: clamp(0.8rem, 2.6vw, 1rem) 0.6rem;
    border-radius: 18px;
    border: 1px solid rgba(37, 115, 217, 0.25);
    background: linear-gradient(160deg, rgba(5, 17, 242, 0.16), rgba(37, 115, 217, 0.05));
    box-shadow: inset 0 0 18px rgba(5, 17, 242, 0.16);
    display: grid;
    gap: 0.35rem;
}

.countdown__value {
    font-size: clamp(1.65rem, 4.5vw, 2.15rem);
    font-weight: 700;
    color: var(--gray-50);
}

.countdown__label {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-100);
}

.progress {
    --progress-value: 0;
    display: grid;
    gap: 0.85rem;
    padding: 1.7rem clamp(1.2rem, 3vw, 1.8rem);
    border-radius: 20px;
    background: rgba(26, 90, 217, 0.08);
    border: 1px solid rgba(37, 115, 217, 0.22);
}

.progress__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.progress__value {
    font-weight: 700;
    color: var(--blue-500);
}

.progress__track {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: rgba(13, 13, 13, 0.65);
    overflow: hidden;
    position: relative;
}

.progress__meter {
    width: calc(var(--progress-value) * 1%);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--blue-900), var(--blue-700), var(--blue-500));
    position: relative;
    transition: width 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.progress__meter::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s linear infinite;
}

.actions {
    display: grid;
    gap: 1.4rem;
}

.button {
    justify-self: center;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.8rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.04em;
    font-size: 1rem;
    color: #fff;
    background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
    box-shadow: 0 20px 45px rgba(5, 17, 242, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.3s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 30px 60px rgba(5, 17, 242, 0.4);
    background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
    position: relative;
}

.button__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.button__icon svg {
    width: 1.2rem;
    height: 1.2rem;
    stroke-width: 1.8;
}

.actions__note {
    margin: 0;
    font-size: 0.95rem;
    color: var(--gray-500);
}

.actions__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gray-100);
}

.actions__social-link {
    color: var(--gray-50);
    text-decoration: none;
    position: relative;
    padding-bottom: 0.2rem;
    word-break: break-word;
    line-break: anywhere;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.actions__social-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue-500), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.actions__social-link:hover::after,
.actions__social-link:focus-visible::after {
    transform: scaleX(1);
}

.actions__divider {
    color: rgba(207, 207, 207, 0.4);
}

.actions__social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.actions__social-icon svg {
    width: 1rem;
    height: 1rem;
    stroke-width: 1.5;
}

.experience {
    display: grid;
    gap: 1.6rem;
}

.experience__badge {
    font-size: 0.78rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gray-100);
}

.experience__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
}

.experience__card {
    padding: 1.4rem 1.2rem;
    border-radius: 20px;
    background: rgba(13, 13, 13, 0.55);
    border: 1px solid rgba(37, 115, 217, 0.18);
    box-shadow: inset 0 0 24px rgba(37, 115, 217, 0.06);
    display: grid;
    gap: 0.75rem;
    text-align: left;
}

.experience__icon {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    filter: drop-shadow(0 0 12px rgba(74, 142, 226, 0.4));
}

.experience__icon svg {
    width: 1.35rem;
    height: 1.35rem;
    stroke-width: 1.8;
}

.experience__title {
    margin: 0;
    font-size: 1.05rem;
    color: var(--gray-50);
}

.experience__copy {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-500);
}

.footer {
    display: grid;
    gap: 0.5rem;
    border-top: 1px solid rgba(37, 115, 217, 0.12);
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.footer__link {
    color: var(--blue-500);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s ease;
}

.footer__link:hover,
.footer__link:focus-visible {
    color: var(--blue-700);
}

@keyframes grid-shift {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(60px, 60px, 0);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(18px, -22px, 0);
    }
}

@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 115, 217, 0.55);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(37, 115, 217, 0);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes intro-zoom {
    0% {
        transform: scale(0.85);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes intro-fade-out {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes coin-flip {
    0% {
        transform: rotateY(0deg) scale(1);
    }
    25% {
        transform: rotateY(90deg) scale(1.05);
    }
    50% {
        transform: rotateY(180deg) scale(1.1);
    }
    75% {
        transform: rotateY(270deg) scale(1.05);
    }
    100% {
        transform: rotateY(360deg) scale(1);
    }
}

@keyframes coin-spin {
    0% {
        transform: rotateY(0deg) rotateZ(0deg);
    }
    50% {
        transform: rotateY(180deg) rotateZ(180deg);
    }
    100% {
        transform: rotateY(360deg) rotateZ(360deg);
    }
}

@keyframes coin-flip-mobile {
    0% {
        transform: rotateY(0deg) scale(1);
    }
    50% {
        transform: rotateY(180deg) scale(1.05);
    }
    100% {
        transform: rotateY(360deg) scale(1);
    }
}

@keyframes coin-spin-mobile {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

/* Optimizaciones para tablets */
@media (max-width: 1024px) {
    body {
        --page-padding-block: clamp(2.2rem, 7vh, 4rem);
        --page-padding-inline: clamp(1.2rem, 5vw, 3rem);
    }

    .layout__inner {
        padding: clamp(2.2rem, 6vw, 3.5rem) clamp(1.4rem, 5vw, 2.8rem);
        gap: 2.2rem;
    }

    .hero__title {
        font-size: clamp(2.3rem, 5.5vw, 3.2rem);
    }

    .countdown__timer {
        grid-template-columns: repeat(4, minmax(90px, 1fr));
        gap: 1rem;
    }
}

/* Optimizaciones para móviles grandes */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    body {
        --page-padding-block: clamp(1.5rem, 6vh, 2.8rem);
        --page-padding-inline: clamp(1rem, 5vw, 2rem);
        display: block;
        overflow-x: hidden;
    }

    .layout {
        min-height: auto;
        padding-inline: var(--page-padding-inline);
        width: 100%;
    }

    .layout__inner {
        margin: 0;
        padding: clamp(1.8rem, 7vw, 2.5rem) clamp(1rem, 5vw, 1.8rem);
        gap: 1.8rem;
        border-radius: 20px;
        max-width: 100%;
    }

    .brand {
        gap: 0.8rem;
    }

    .brand__wordmark {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }

    .brand__logo--coin {
        box-shadow: 
            0 0 0 2px rgba(5, 17, 242, 0.2),
            0 0 0 4px rgba(26, 90, 217, 0.1),
            inset 0 1px 3px rgba(0, 0, 0, 0.3),
            inset 0 -1px 3px rgba(255, 255, 255, 0.1);
    }

    .status {
        font-size: 0.75rem;
        letter-spacing: 0.1em;
        padding: 0.5rem 1.2rem;
    }

    .hero {
        gap: 1rem;
    }

    .hero__title {
        font-size: clamp(2rem, 7vw, 2.8rem);
        line-height: 1.15;
    }

    .hero__subtitle {
        font-size: clamp(0.95rem, 3.5vw, 1.1rem);
        max-width: 100%;
    }

    .countdown {
        gap: 1rem;
        padding: 1.4rem 1.2rem;
        border-radius: 18px;
    }

    .countdown__timer {
        grid-template-columns: repeat(2, minmax(110px, 1fr));
        gap: 0.9rem;
    }

    .countdown__slot {
        padding: clamp(0.7rem, 3vw, 0.9rem) 0.5rem;
        border-radius: 16px;
    }

    .countdown__value {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }

    .progress {
        gap: 0.7rem;
        padding: 1.4rem 1rem;
        border-radius: 16px;
    }

    .progress__header {
        font-size: 0.85rem;
    }

    .progress__track {
        height: 6px;
    }

    .experience {
        gap: 1.2rem;
    }

    .experience__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .experience__card {
        padding: 1.2rem 1rem;
        border-radius: 16px;
        gap: 0.6rem;
    }

    .experience__title {
        font-size: 1rem;
    }

    .experience__copy {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .actions {
        gap: 1.2rem;
    }

    .button {
        padding: 0.9rem 2.2rem;
        font-size: 0.95rem;
        border-radius: 999px;
    }

    .actions__note {
        font-size: 0.9rem;
    }

    .actions__social {
        font-size: 0.8rem;
        gap: 0.6rem;
    }

    .actions__social-icon svg {
        width: 0.9rem;
        height: 0.9rem;
    }

    .footer {
        gap: 0.4rem;
        padding-top: 1.2rem;
        font-size: 0.8rem;
    }

    /* Optimizar elementos decorativos para móviles */
    .background__orb--one {
        width: 280px;
        height: 280px;
        top: -100px;
        left: -100px;
    }

    .background__orb--two {
        width: 360px;
        height: 360px;
        bottom: -140px;
        right: -120px;
    }

    .background__orb--three {
        width: 240px;
        height: 240px;
    }

    .layout__inner::before,
    .layout__inner::after {
        width: 120px;
        height: 120px;
    }
}

/* Optimizaciones para móviles medianos */
@media (max-width: 520px) {
    html {
        font-size: 13px;
    }

    body {
        --page-padding-block: clamp(1.2rem, 8vh, 2rem);
        --page-padding-inline: clamp(0.8rem, 6vw, 1.2rem);
    }

    .layout {
        padding-inline: var(--page-padding-inline);
    }

    .layout__inner {
        padding: clamp(1.5rem, 8vw, 2rem) clamp(0.9rem, 6vw, 1.3rem);
        gap: 1.5rem;
        border-radius: 16px;
    }

    .brand {
        gap: 0.6rem;
    }

    .brand__wordmark {
        font-size: clamp(1.6rem, 8vw, 1.9rem);
    }

    .brand__logo--coin {
        box-shadow: 
            0 0 0 1px rgba(5, 17, 242, 0.2),
            0 0 0 3px rgba(26, 90, 217, 0.1),
            inset 0 1px 2px rgba(0, 0, 0, 0.3),
            inset 0 -1px 2px rgba(255, 255, 255, 0.1);
    }

    .status {
        font-size: 0.7rem;
        padding: 0.45rem 1rem;
        letter-spacing: 0.08em;
    }

    .hero {
        gap: 0.8rem;
    }

    .hero__title {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
        line-height: 1.2;
        letter-spacing: 0.03em;
    }

    .hero__subtitle {
        font-size: clamp(0.9rem, 4vw, 1.05rem);
        line-height: 1.6;
    }

    .countdown {
        gap: 0.8rem;
        padding: 1.2rem 1rem;
        border-radius: 14px;
    }

    .countdown__timer {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .countdown__slot {
        padding: 0.8rem 1rem;
        border-radius: 12px;
        text-align: center;
    }

    .countdown__value {
        font-size: clamp(1.2rem, 6vw, 1.6rem);
    }

    .countdown__label {
        font-size: 0.7rem;
    }

    .progress {
        gap: 0.6rem;
        padding: 1.2rem 0.9rem;
        border-radius: 14px;
    }

    .progress__header {
        font-size: 0.8rem;
    }

    .progress__track {
        height: 5px;
    }

    .experience {
        gap: 1rem;
    }

    .experience__grid {
        gap: 0.8rem;
    }

    .experience__card {
        padding: 1rem 0.9rem;
        border-radius: 14px;
        gap: 0.5rem;
    }

    .experience__title {
        font-size: 0.95rem;
    }

    .experience__copy {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .actions {
        gap: 1rem;
    }

    .button {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 2rem;
        font-size: 0.9rem;
    }

    .actions__note {
        font-size: 0.85rem;
        text-align: center;
    }

    .actions__social {
        flex-wrap: wrap;
        gap: 0.4rem;
        letter-spacing: 0.1em;
        justify-content: center;
        font-size: 0.75rem;
    }

    .actions__social-icon svg {
        width: 0.85rem;
        height: 0.85rem;
    }

    .footer {
        gap: 0.3rem;
        padding-top: 1rem;
        font-size: 0.75rem;
        text-align: center;
    }

    /* Optimizar elementos decorativos para móviles medianos */
    .background__orb--one {
        width: 220px;
        height: 220px;
        top: -80px;
        left: -80px;
    }

    .background__orb--two {
        width: 280px;
        height: 280px;
        bottom: -110px;
        right: -100px;
    }

    .background__orb--three {
        width: 180px;
        height: 180px;
    }

    .layout__inner::before,
    .layout__inner::after {
        width: 100px;
        height: 100px;
    }
}

/* Optimizaciones para móviles pequeños */
@media (max-width: 400px) {
    html {
        font-size: 12px;
    }

    body {
        --page-padding-block: clamp(1rem, 10vh, 1.6rem);
        --page-padding-inline: clamp(0.6rem, 8vw, 1rem);
    }

    .layout__inner {
        padding: clamp(1.2rem, 10vw, 1.6rem) clamp(0.7rem, 8vw, 1rem);
        gap: 1.2rem;
        border-radius: 14px;
    }

    .brand {
        gap: 0.5rem;
    }

    .brand__wordmark {
        font-size: clamp(1.4rem, 10vw, 1.7rem);
    }

    .status {
        font-size: 0.65rem;
        padding: 0.4rem 0.9rem;
        letter-spacing: 0.06em;
    }

    .hero {
        gap: 0.6rem;
    }

    .hero__title {
        font-size: clamp(1.6rem, 10vw, 2.2rem);
        line-height: 1.25;
        letter-spacing: 0.02em;
    }

    .hero__subtitle {
        font-size: clamp(0.85rem, 5vw, 1rem);
        line-height: 1.5;
    }

    .countdown {
        gap: 0.6rem;
        padding: 1rem 0.8rem;
        border-radius: 12px;
    }

    .countdown__slot {
        padding: 0.7rem 0.9rem;
        border-radius: 10px;
    }

    .countdown__value {
        font-size: clamp(1.1rem, 7vw, 1.4rem);
    }

    .countdown__label {
        font-size: 0.65rem;
    }

    .progress {
        gap: 0.5rem;
        padding: 1rem 0.8rem;
        border-radius: 12px;
    }

    .progress__header {
        font-size: 0.75rem;
    }

    .progress__track {
        height: 4px;
    }

    .experience {
        gap: 0.8rem;
    }

    .experience__grid {
        gap: 0.6rem;
    }

    .experience__card {
        padding: 0.9rem 0.8rem;
        border-radius: 12px;
        gap: 0.4rem;
    }

    .experience__title {
        font-size: 0.9rem;
    }

    .experience__copy {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .actions {
        gap: 0.8rem;
    }

    .button {
        padding: 0.8rem 1.8rem;
        font-size: 0.85rem;
    }

    .actions__note {
        font-size: 0.8rem;
    }

    .actions__social {
        gap: 0.3rem;
        letter-spacing: 0.08em;
        font-size: 0.7rem;
    }

    .actions__social-icon svg {
        width: 0.8rem;
        height: 0.8rem;
    }

    .footer {
        gap: 0.2rem;
        padding-top: 0.8rem;
        font-size: 0.7rem;
    }

    /* Optimizar elementos decorativos para móviles pequeños */
    .background__orb--one {
        width: 180px;
        height: 180px;
        top: -60px;
        left: -60px;
    }

    .background__orb--two {
        width: 220px;
        height: 220px;
        bottom: -80px;
        right: -80px;
    }

    .background__orb--three {
        width: 140px;
        height: 140px;
    }

    .layout__inner::before,
    .layout__inner::after {
        width: 80px;
        height: 80px;
    }
}

/* Optimizaciones para móviles muy pequeños */
@media (max-width: 340px) {
    html {
        font-size: 11px;
    }

    body {
        --page-padding-block: clamp(0.8rem, 12vh, 1.4rem);
        --page-padding-inline: clamp(0.5rem, 10vw, 0.8rem);
    }

    .layout__inner {
        padding: clamp(1rem, 12vw, 1.4rem) clamp(0.6rem, 10vw, 0.8rem);
        gap: 1rem;
        border-radius: 12px;
    }

    .brand {
        gap: 0.4rem;
    }

    .brand__wordmark {
        font-size: clamp(1.2rem, 12vw, 1.5rem);
    }

    .status {
        font-size: 0.6rem;
        padding: 0.35rem 0.8rem;
        letter-spacing: 0.04em;
    }

    .hero {
        gap: 0.5rem;
    }

    .hero__title {
        font-size: clamp(1.4rem, 12vw, 1.9rem);
        line-height: 1.3;
        letter-spacing: 0.01em;
    }

    .hero__subtitle {
        font-size: clamp(0.8rem, 6vw, 0.95rem);
        line-height: 1.4;
    }

    .countdown {
        gap: 0.5rem;
        padding: 0.8rem 0.7rem;
        border-radius: 10px;
    }

    .countdown__slot {
        padding: 0.6rem 0.8rem;
        border-radius: 8px;
    }

    .countdown__value {
        font-size: clamp(1rem, 8vw, 1.3rem);
    }

    .countdown__label {
        font-size: 0.6rem;
    }

    .progress {
        gap: 0.4rem;
        padding: 0.8rem 0.7rem;
        border-radius: 10px;
    }

    .progress__header {
        font-size: 0.7rem;
    }

    .progress__track {
        height: 3px;
    }

    .experience {
        gap: 0.6rem;
    }

    .experience__grid {
        gap: 0.5rem;
    }

    .experience__card {
        padding: 0.8rem 0.7rem;
        border-radius: 10px;
        gap: 0.3rem;
    }

    .experience__title {
        font-size: 0.85rem;
    }

    .experience__copy {
        font-size: 0.75rem;
        line-height: 1.2;
    }

    .actions {
        gap: 0.6rem;
    }

    .button {
        padding: 0.75rem 1.6rem;
        font-size: 0.8rem;
    }

    .actions__note {
        font-size: 0.75rem;
    }

    .actions__social {
        gap: 0.25rem;
        letter-spacing: 0.06em;
        font-size: 0.65rem;
    }

    .actions__social-icon svg {
        width: 0.75rem;
        height: 0.75rem;
    }

    .footer {
        gap: 0.15rem;
        padding-top: 0.6rem;
        font-size: 0.65rem;
    }

    /* Optimizar elementos decorativos para móviles muy pequeños */
    .background__orb--one {
        width: 140px;
        height: 140px;
        top: -50px;
        left: -50px;
    }

    .background__orb--two {
        width: 180px;
        height: 180px;
        bottom: -70px;
        right: -70px;
    }

    .background__orb--three {
        width: 120px;
        height: 120px;
    }

    .layout__inner::before,
    .layout__inner::after {
        width: 60px;
        height: 60px;
    }
}

/* Optimizaciones para pantallas de altura reducida */
@media (max-height: 720px) {
    body {
        --page-padding-block: clamp(1.2rem, 4vh, 2rem);
    }

    .layout__inner {
        gap: clamp(1.5rem, 4vh, 2rem);
    }

    .hero {
        gap: 0.8rem;
    }

    .countdown {
        padding: 1.2rem 1rem;
    }

    .progress {
        padding: 1.2rem 1rem;
    }

    .experience {
        gap: 1rem;
    }

    .actions {
        gap: 1rem;
    }
}

/* Optimizaciones para orientación landscape en móviles */
@media (max-height: 500px) and (orientation: landscape) {
    body {
        --page-padding-block: clamp(0.8rem, 3vh, 1.2rem);
        overflow-y: auto;
    }

    .layout__inner {
        padding: clamp(1rem, 4vh, 1.5rem) clamp(1rem, 5vw, 2rem);
        gap: 1rem;
        max-height: 90vh;
        overflow-y: auto;
    }

    .brand {
        gap: 0.4rem;
    }

    .brand__wordmark {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
    }

    .status {
        padding: 0.3rem 0.8rem;
        font-size: 0.7rem;
    }

    .hero {
        gap: 0.5rem;
    }

    .hero__title {
        font-size: clamp(1.4rem, 5vw, 2rem);
        line-height: 1.1;
    }

    .hero__subtitle {
        font-size: clamp(0.8rem, 3vw, 1rem);
        line-height: 1.3;
    }

    .countdown {
        padding: 0.8rem 0.7rem;
        gap: 0.6rem;
    }

    .countdown__timer {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }

    .countdown__slot {
        padding: 0.5rem 0.4rem;
    }

    .countdown__value {
        font-size: clamp(0.9rem, 3vw, 1.2rem);
    }

    .countdown__label {
        font-size: 0.6rem;
    }

    .progress {
        padding: 0.8rem 0.7rem;
        gap: 0.5rem;
    }

    .progress__track {
        height: 4px;
    }

    .experience__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
    }

    .experience__card {
        padding: 0.7rem 0.6rem;
        gap: 0.3rem;
    }

    .experience__title {
        font-size: 0.8rem;
    }

    .experience__copy {
        font-size: 0.7rem;
        line-height: 1.2;
    }

    .actions {
        gap: 0.6rem;
    }

    .button {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
    }

    .actions__note {
        font-size: 0.75rem;
    }

    .actions__social {
        font-size: 0.7rem;
        gap: 0.4rem;
    }

    .actions__social-icon svg {
        width: 0.8rem;
        height: 0.8rem;
    }

    .footer {
        padding-top: 0.5rem;
        font-size: 0.7rem;
    }
}

/* Optimizaciones de performance para dispositivos móviles */
@media (max-width: 768px) {
    /* Reducir animaciones en dispositivos móviles para mejor performance */
    .background__grid {
        animation-duration: 30s;
    }

    .background__orb {
        animation-duration: 25s;
    }

    .background__particles {
        opacity: 0.4;
    }

    /* Optimizar transformaciones 3D para mejor performance */
    .layout__inner {
        transform: translateZ(0);
        will-change: auto;
    }

    .button {
        transform: translateZ(0);
    }

    /* Optimizar animaciones de moneda para móviles */
    .brand__logo--coin {
        will-change: transform;
        backface-visibility: hidden;
    }

    .brand__logo--coin:hover,
    .brand__logo--coin:focus-visible {
        animation: coin-flip-mobile 1s ease-in-out;
    }

    .brand__logo--coin:active {
        animation: coin-spin-mobile 0.6s ease-in-out;
    }

    /* Mejorar el rendering de texto en móviles */
    body {
        text-rendering: optimizeSpeed;
        -webkit-font-smoothing: subpixel-antialiased;
    }
}

/* Optimizaciones específicas para dispositivos de baja resolución */
@media (max-width: 480px) and (max-resolution: 1.5dppx) {
    .layout__inner {
        border: 1px solid rgba(37, 115, 217, 0.2);
        box-shadow: 0 20px 60px rgba(5, 17, 242, 0.15);
    }

    .countdown {
        border: 1px solid rgba(74, 142, 226, 0.25);
    }

    .progress {
        border: 1px solid rgba(37, 115, 217, 0.3);
    }

    .experience__card {
        border: 1px solid rgba(37, 115, 217, 0.25);
    }
}

/* Mejoras de accesibilidad para móviles */
@media (max-width: 768px) {
    /* Aumentar el tamaño mínimo de los elementos interactivos */
    .button {
        min-height: 44px;
        min-width: 44px;
    }

    .actions__social-link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        padding: 0.5rem;
    }

    /* Mejorar el contraste en pantallas pequeñas */
    .hero__subtitle {
        color: var(--gray-400);
    }

    .actions__note {
        color: var(--gray-400);
    }

    .footer {
        color: var(--gray-400);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .background__grid,
    .background__orb {
        animation: none !important;
    }

    body {
        overflow: auto;
    }
}
