:root {
    --bg: #050508;
    --bg-soft: #0a0b0f;
    --text: #e8eaed;
    --muted: #9aa0ab;
    --accent-a: #145253;
    --accent-b: #7b61ff;
    --accent-c: #ff6b6b;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 18% 12%, rgba(123, 97, 255, 0.22), transparent 30%),
        radial-gradient(circle at 82% 22%, rgba(20, 82, 83, 0.34), transparent 34%),
        radial-gradient(circle at 50% 92%, rgba(255, 107, 107, 0.12), transparent 36%),
        linear-gradient(145deg, var(--bg) 0%, var(--bg-soft) 48%, #050508 100%);
    overflow: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at center, black, transparent 72%);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.025), transparent);
    background-size: 100% 7px;
    opacity: 0.35;
}

#particleCanvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.page-shell {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    min-height: 100svh;
    display: grid;
    place-items: center;
    padding: 32px;
}

.coming-soon {
    width: min(760px, 100%);
    text-align: center;
    padding: clamp(28px, 5vw, 56px);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(14, 16, 22, 0.72), rgba(5, 5, 8, 0.52));
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.48),
        0 0 70px rgba(123, 97, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.logo-wrap {
    position: relative;
    width: clamp(170px, 34vw, 320px);
    margin: 0 auto 22px;
}

.logo-wrap::before {
    content: "";
    position: absolute;
    inset: 18% 8%;
    border-radius: 50%;
    background: conic-gradient(from 90deg, var(--accent-a), var(--accent-b), var(--accent-c), var(--accent-a));
    filter: blur(34px);
    opacity: 0.36;
    animation: pulseGlow 4.5s ease-in-out infinite;
}

.logo {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 22px 32px rgba(0, 0, 0, 0.48));
    animation: floatLogo 5.5s ease-in-out infinite;
}

.status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    margin: 0 0 18px;
    padding: 7px 14px;
    border: 1px solid rgba(123, 97, 255, 0.42);
    border-radius: 999px;
    color: #d9d4ff;
    background: rgba(123, 97, 255, 0.12);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    font-size: clamp(34px, 6vw, 68px);
    line-height: 1.02;
    letter-spacing: 0;
    text-wrap: balance;
    background: linear-gradient(135deg, #ffffff 0%, #d5f8ff 42%, #c7bdff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lead {
    max-width: 600px;
    margin: 20px auto 0;
    color: var(--muted);
    font-size: clamp(16px, 2.4vw, 20px);
    line-height: 1.7;
    text-wrap: balance;
}

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

    50% {
        transform: translateY(-10px) scale(1.015);
    }
}

@keyframes pulseGlow {
    0%,
    100% {
        opacity: 0.26;
        transform: scale(0.94);
    }

    50% {
        opacity: 0.46;
        transform: scale(1.04);
    }
}

@media (max-width: 520px) {
    body {
        overflow-y: auto;
    }

    .page-shell {
        padding: 18px;
    }

    .coming-soon {
        border-radius: 18px;
    }

    .lead {
        line-height: 1.55;
    }
}

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