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

:root {
    --purple: #bb88eb;
    --cyan:   #00ccff;
    --bg:     #03040b;
}

body {
    background: var(--bg);
    color: #fff;
    font-family: 'Inter', sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* ── Background effects ── */
.bg-glow {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 900px; height: 700px;
    background: radial-gradient(ellipse, rgba(187,136,235,0.18) 0%, rgba(3,4,11,0) 65%);
    pointer-events: none;
    z-index: 0;
}

.bg-glow-2 {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(0,204,255,0.07) 0%, rgba(3,4,11,0) 70%);
    pointer-events: none;
    z-index: 0;
}

.bg-lines {
    position: fixed; inset: 0;
    background: repeating-linear-gradient(
        90deg,
        rgba(255,255,255,0.015) 0px,
        rgba(255,255,255,0.015) 1px,
        transparent 1px,
        transparent 100px
    );
    pointer-events: none;
    z-index: 0;
}

/* ── Main content ── */
.landing {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem 2rem;
    gap: 0.6rem;
    width: 100%;
    height: 100vh;
    animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0);    }
}

/* ── Logo image ── */
.logo-img {
    width: clamp(180px, 28vw, 340px);
    margin-bottom: -1rem;
    animation: fadeUp 0.9s ease both, logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    from { filter: drop-shadow(0 0 30px rgba(187,136,235,0.4)); }
    to   { filter: drop-shadow(0 0 60px rgba(187,136,235,0.75)); }
}

/* ── Tagline ── */
.tagline {
    font-family: 'Space Mono', monospace;
    font-size: clamp(0.65rem, 1.5vw, 0.85rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--purple);
    opacity: 0;
    animation: fadeUp 0.9s 0.2s ease forwards;
}

/* ── Description ── */
.description {
    max-width: 520px;
    color: #8a90b0;
    font-size: clamp(0.85rem, 2vw, 1rem);
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp 0.9s 0.35s ease forwards;
}

.description strong {
    color: #c8cfea;
    font-weight: 500;
}

/* ── Feature pills ── */
.pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 0.9s 0.5s ease forwards;
}

.pill {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 5px 14px;
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: #606880;
    letter-spacing: 0.5px;
    transition: color 0.3s, border-color 0.3s;
}

.pill:hover {
    color: var(--cyan);
    border-color: rgba(0,204,255,0.3);
}

/* ── CTA button ── */
.btn-enter {
    opacity: 0;
    animation: fadeUp 0.9s 0.65s ease forwards;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--purple);
    color: #0a0212;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.75rem 2.2rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.5px;
    box-shadow: 0 0 30px rgba(187,136,235,0.35), 0 4px 20px rgba(0,0,0,0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-enter:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(187,136,235,0.55), 0 8px 30px rgba(0,0,0,0.5);
}

.btn-enter svg {
    transition: transform 0.2s ease;
}

.btn-enter:hover svg {
    transform: translateX(4px);
}

/* ── Footer credit ── */
.footer-credit {
    position: fixed;
    bottom: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    color: #6b7280;
    letter-spacing: 1px;
    z-index: 2;
    white-space: nowrap;
}