:root {
    --purple: #9b31ff;
    --purple-bright: #bc5dff;
    --green: #7ee800;
    --green-bright: #a6ff19;
    --cyan: #1fc7ff;
    --ink: #090b0d;
    --panel: rgba(8, 11, 14, 0.86);
    --text: #f1f2f3;
    --muted: #c6c9ce;
    --border: rgba(255, 255, 255, 0.22);
    --shadow: 0 22px 60px rgba(0, 0, 0, 0.48);
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    background: var(--ink);
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--ink);
}

button,
input {
    font: inherit;
}

.page-shell {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(180deg, rgba(5, 8, 11, 0.08), rgba(5, 7, 9, 0.2)),
        url("../img/bg.png") center center / cover no-repeat;
}

.page-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 50% 36%, rgba(3, 8, 12, 0.02) 0 20%, rgba(3, 8, 12, 0.28) 62%, rgba(3, 8, 12, 0.58) 100%),
        linear-gradient(180deg, rgba(2, 4, 6, 0.05), rgba(2, 4, 6, 0.36));
}

.atmosphere {
    position: absolute;
    width: 34rem;
    height: 34rem;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.17;
    z-index: -1;
    pointer-events: none;
}

.atmosphere-purple {
    left: -14rem;
    bottom: -12rem;
    background: var(--purple);
}

.atmosphere-green {
    right: -14rem;
    bottom: -12rem;
    background: var(--green);
}

.coming-soon {
    width: min(100%, 1180px);
    min-height: 100svh;
    margin: 0 auto;
    padding: clamp(1.25rem, 2.5vw, 2.5rem) 1.25rem 2rem;
    display: grid;
    align-content: center;
    justify-items: center;
    text-align: center;
}

.brand-logo {
    display: block;
    width: clamp(240px, 29vw, 430px);
    height: auto;
    margin: 0 auto clamp(-1.25rem, -1vw, -0.5rem);
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.55));
}

.content-panel {
    width: min(100%, 940px);
    padding: clamp(1.3rem, 2.5vw, 2.1rem) clamp(1rem, 3vw, 2.5rem) clamp(1.4rem, 2.5vw, 2rem);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(8, 11, 14, 0.73), rgba(5, 7, 9, 0.88));
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
}

h1 {
    margin: 0;
    color: #f2f2f0;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: clamp(2.15rem, 4.75vw, 4.75rem);
    line-height: 0.96;
    white-space: nowrap;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    text-shadow: 0 5px 18px rgba(0, 0, 0, 0.68);
}

h1 span {
    color: var(--green);
    text-shadow: 0 0 24px rgba(126, 232, 0, 0.28);
}

.intro {
    margin: 1rem auto 0;
    color: var(--muted);
    font-size: clamp(0.98rem, 1.5vw, 1.2rem);
    line-height: 1.55;
}

.launch-label {
    margin: 1.25rem 0 0.4rem;
    color: var(--green-bright);
    font-size: clamp(0.8rem, 1.3vw, 1rem);
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: clamp(0.35rem, 1.5vw, 1rem);
    margin: 0.35rem auto 1.25rem;
}

.countdown-unit {
    min-width: clamp(55px, 9vw, 108px);
}

.countdown-unit strong,
.countdown-separator {
    color: var(--purple-bright);
    font-family: "Courier New", monospace;
    font-size: clamp(2.4rem, 6vw, 5.1rem);
    font-weight: 500;
    line-height: 1;
    text-shadow: 0 0 12px rgba(155, 49, 255, 0.55), 0 0 30px rgba(155, 49, 255, 0.25);
}

.countdown-unit span {
    display: block;
    margin-top: 0.35rem;
    color: #dddfe2;
    font-size: clamp(0.62rem, 1vw, 0.82rem);
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.countdown-separator {
    transform: translateY(-0.06em);
}

.notify-section h2 {
    margin: 0 0 0.75rem;
    color: #f0f1f2;
    font-size: clamp(0.78rem, 1.25vw, 1rem);
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.notify-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    width: min(100%, 720px);
    margin: 0 auto;
}

.email-field {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    min-height: 62px;
    padding: 0 1rem;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 13px;
    background: rgba(5, 8, 11, 0.92);
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.email-field:focus-within {
    border-color: var(--purple-bright);
    box-shadow: 0 0 0 3px rgba(155, 49, 255, 0.17);
}

.email-field svg {
    flex: 0 0 auto;
    fill: #d7d9dc;
}

.email-field input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    color: white;
    background: transparent;
    font-size: 1rem;
}

.email-field input::placeholder {
    color: #8d9299;
}

.notify-form button {
    min-width: 190px;
    min-height: 62px;
    padding: 0 1.8rem;
    border: 1px solid #b7ff44;
    border-radius: 13px;
    color: #0a1005;
    background: linear-gradient(180deg, #a6ff19, #73d900);
    box-shadow: 0 0 22px rgba(126, 232, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.58);
    cursor: pointer;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.notify-form button:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(126, 232, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.notify-form button:disabled {
    cursor: wait;
    filter: saturate(0.35);
    transform: none;
}

.form-message {
    min-height: 1.45rem;
    margin: 0.65rem 0 0;
    color: #dfe2e5;
    font-size: 0.92rem;
}

.form-message.success {
    color: var(--green-bright);
}

.form-message.error {
    color: #ff9a9a;
}

.social-links {
    margin-top: 0.4rem;
}

.social-links > span {
    display: block;
    margin-bottom: 0.65rem;
    color: #dddfe2;
    font-size: 0.82rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.social-links > div {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    border: 1px solid rgba(188, 93, 255, 0.55);
    border-radius: 12px;
    background: rgba(7, 8, 11, 0.72);
    box-shadow: 0 0 16px rgba(155, 49, 255, 0.18);
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.social-links a:hover {
    transform: translateY(-2px);
    border-color: var(--purple-bright);
    box-shadow: 0 0 22px rgba(155, 49, 255, 0.34);
}

.social-links svg {
    width: 22px;
    height: 22px;
    fill: var(--purple-bright);
}

.honeypot,
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (max-width: 720px) {
    .coming-soon {
        align-content: start;
        padding-top: 0.75rem;
    }

    .brand-logo {
        width: min(76vw, 350px);
        margin-bottom: -0.75rem;
    }

    .content-panel {
        border-radius: 18px;
    }

    h1 {
        white-space: normal;
    }

    .desktop-only {
        display: none;
    }

    .notify-form {
        grid-template-columns: 1fr;
    }

    .notify-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .coming-soon {
        padding-inline: 0.75rem;
    }

    .content-panel {
        padding-inline: 0.8rem;
    }

    .countdown {
        gap: 0.2rem;
    }

    .countdown-unit {
        min-width: 49px;
    }

    .countdown-unit strong,
    .countdown-separator {
        font-size: clamp(2rem, 12vw, 3.3rem);
    }

    .countdown-unit span {
        letter-spacing: 0.08em;
    }
}

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