/* Скоро открытие — минимализм + киберпанк */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body.soon-page {
    margin: 0;
    min-height: 100vh;
    min-width: 320px;
    overflow-x: hidden;
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 400;
    color: rgba(232, 236, 242, 0.92);
    background-color: #0b0b0f;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(1.25rem, 4vw, 2.5rem);
    position: relative;
}

.soon-page__scanlines {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 1;
    opacity: 0.06;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 200, 0.12) 2px,
        rgba(0, 255, 200, 0.12) 3px
    );
}

.soon-page__vignette {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 0;
    background: radial-gradient(
        ellipse 80% 70% at 50% 45%,
        rgba(0, 255, 200, 0.04) 0%,
        transparent 55%
    );
}

.soon {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 28rem;
    text-align: center;
}

.soon__logo-wrap {
    margin-bottom: 1.75rem;
}

.soon__logo {
    width: clamp(72px, 18vw, 96px);
    height: auto;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
    box-shadow:
        0 0 0 1px rgba(0, 255, 200, 0.35),
        0 0 28px rgba(0, 255, 200, 0.22);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.soon__logo:hover {
    box-shadow:
        0 0 0 1px rgba(0, 255, 200, 0.55),
        0 0 40px rgba(0, 255, 200, 0.35);
    transform: translateY(-2px);
}

.eq {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: clamp(4px, 1.5vw, 8px);
    height: clamp(40px, 10vw, 52px);
    margin: 0 auto 1.75rem;
}

.eq__bar {
    width: clamp(3px, 1vw, 5px);
    flex: 0 0 auto;
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(
        to top,
        rgba(0, 255, 200, 0.15),
        #00ffc8 40%,
        rgba(0, 255, 200, 0.85)
    );
    transform-origin: bottom center;
    animation: soon-eq-pulse 0.85s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0, 255, 200, 0.35);
}

.eq__bar:nth-child(1) {
    animation-delay: 0s;
    animation-duration: 0.48s;
}
.eq__bar:nth-child(2) {
    animation-delay: 0.08s;
    animation-duration: 0.62s;
}
.eq__bar:nth-child(3) {
    animation-delay: 0.16s;
    animation-duration: 0.55s;
}
.eq__bar:nth-child(4) {
    animation-delay: 0.04s;
    animation-duration: 0.72s;
}
.eq__bar:nth-child(5) {
    animation-delay: 0.12s;
    animation-duration: 0.5s;
}
.eq__bar:nth-child(6) {
    animation-delay: 0.2s;
    animation-duration: 0.68s;
}
.eq__bar:nth-child(7) {
    animation-delay: 0.06s;
    animation-duration: 0.58s;
}
.eq__bar:nth-child(8) {
    animation-delay: 0.14s;
    animation-duration: 0.75s;
}
.eq__bar:nth-child(9) {
    animation-delay: 0.1s;
    animation-duration: 0.52s;
}
.eq__bar:nth-child(10) {
    animation-delay: 0.18s;
    animation-duration: 0.65s;
}
.eq__bar:nth-child(11) {
    animation-delay: 0.02s;
    animation-duration: 0.56s;
}

@keyframes soon-eq-pulse {
    0%,
    100% {
        transform: scaleY(0.22);
        opacity: 0.65;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .eq__bar {
        animation: none;
        transform: scaleY(0.55);
        opacity: 0.85;
    }

    .soon__logo:hover {
        transform: none;
    }
}

.soon__title {
    font-family: "Orbitron", sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 5vw, 2rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 0.75rem;
    line-height: 1.25;
    color: #e8ecf2;
    text-shadow:
        0 0 20px rgba(0, 255, 200, 0.45),
        0 0 42px rgba(0, 255, 200, 0.2);
}

.soon__lead {
    margin: 0 0 1.75rem;
    font-size: clamp(0.9rem, 2.8vw, 1rem);
    line-height: 1.55;
    color: rgba(200, 210, 220, 0.78);
}

.soon__form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
}

.soon__label {
    display: block;
    width: 100%;
    text-align: left;
}

.soon__label-text {
    display: block;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(0, 255, 200, 0.75);
    margin-bottom: 0.45rem;
}

.soon__input {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    color: #e8ecf2;
    background: rgba(12, 14, 20, 0.85);
    border: 1px solid rgba(0, 255, 200, 0.28);
    border-radius: 8px;
    outline: none;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.soon__input::placeholder {
    color: rgba(180, 190, 200, 0.45);
}

.soon__input:hover {
    border-color: rgba(0, 255, 200, 0.45);
}

.soon__input:focus {
    border-color: #00ffc8;
    box-shadow: 0 0 0 3px rgba(0, 255, 200, 0.18);
}

.soon__btn {
    font-family: "JetBrains Mono", monospace;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0.95rem 1.25rem;
    color: #0b0b0f;
    background: #00ffc8;
    border: none;
    border-radius: 8px;
    box-shadow:
        0 0 18px rgba(0, 255, 200, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition:
        transform 0.2s ease,
        box-shadow 0.25s ease,
        filter 0.2s ease;
}

.soon__btn:hover {
    filter: brightness(1.08);
    box-shadow:
        0 0 28px rgba(0, 255, 200, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.soon__btn:active {
    transform: translateY(0);
    filter: brightness(0.97);
}

.soon__domain {
    margin-top: 2rem;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(0, 255, 200, 0.35);
}

@media (min-width: 480px) {
    .soon__form {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-end;
    }

    .soon__label {
        flex: 1 1 12rem;
        min-width: 0;
    }

    .soon__btn {
        flex: 0 0 auto;
        min-width: 10rem;
    }
}
