:root {
    --bg: #000000;
    --purple: #7c3aed;
    --purple-2: #8b5cf6;
    --purple-deep: #6d28d9;
    --purple-soft: rgba(124, 58, 237, 0.14);
    --purple-glow: rgba(124, 58, 237, 0.4);
    --text: #ffffff;
    --muted: #a1a1aa;
    --border: rgba(255, 255, 255, 0.08);
    --font: "Inter", system-ui, -apple-system, sans-serif;
}

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

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    position: relative;
    overflow: hidden;
}

.glow {
    position: fixed;
    inset: 18% 20% 28% 20%;
    background: radial-gradient(circle, var(--purple-glow), transparent 68%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

img {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
p {
    margin: 0;
}

.soon-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.logo img {
    width: 34px;
    height: 34px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--purple-2);
    background: var(--purple-soft);
    border: 1px solid rgba(124, 58, 237, 0.28);
    border-radius: 999px;
    padding: 6px 12px 6px 10px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--purple-2);
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.55);
    animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.55); }
    70% { box-shadow: 0 0 0 8px rgba(139, 92, 246, 0); }
    100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0); }
}

main {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px 80px;
}

.eyebrow {
    color: var(--purple-2);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

h1 {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
    font-weight: 800;
    margin-bottom: 20px;
}

.accent {
    color: var(--purple-2);
}

.lead {
    color: var(--muted);
    font-size: 1.08rem;
    max-width: 520px;
    margin-bottom: 36px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 10px;
    padding: 13px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 0;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn svg {
    width: 16px;
    height: 16px;
}

.btn-primary {
    background: var(--purple);
    color: #fff;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.28);
}

.btn-primary:hover {
    background: var(--purple-deep);
    transform: translateY(-1px);
}

footer {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 20px 40px 28px;
    color: var(--muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--border);
}

footer a:hover {
    color: #fff;
}

@media (max-width: 640px) {
    .soon-header,
    footer {
        padding-inline: 20px;
    }

    .logo span {
        display: none;
    }

    footer {
        justify-content: center;
        text-align: center;
    }
}
