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

body {
    background: #08080c;
    color: #fff;
    font-family: 'Segoe UI', system-ui, -apple-system, Helvetica, Arial, sans-serif;
    min-height: 100vh;
    overflow: hidden;
}

/* ── Aurora canvas ── */
#aurora {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.45;
}

/* ── Layout ── */
main {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 32px;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
}

/* ── Logo ── */
.logo {
    width: 120px;
    height: auto;
    opacity: 0;
    animation: rise 1.2s cubic-bezier(.16,1,.3,1) 0.1s forwards;
    filter: drop-shadow(0 0 40px rgba(160, 50, 255, 0.3));
    margin-bottom: 28px;
}

/* ── Title ── */
.title {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 200;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    opacity: 0;
    animation: rise 1.2s cubic-bezier(.16,1,.3,1) 0.3s forwards;
    background: linear-gradient(135deg, #c44dff 0%, #00c8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Divider ── */
.line {
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
    margin: 28px 0;
    opacity: 0;
    animation: rise 1.2s cubic-bezier(.16,1,.3,1) 0.5s forwards;
}

/* ── Tagline ── */
.tagline {
    font-size: clamp(0.82rem, 1.4vw, 1.05rem);
    font-weight: 300;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    line-height: 1.9;
    opacity: 0;
    animation: rise 1.2s cubic-bezier(.16,1,.3,1) 0.7s forwards;
}

/* ── Email ── */
.email {
    margin-top: 40px;
    font-size: clamp(0.72rem, 1vw, 0.85rem);
    font-weight: 400;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    transition: all 0.5s cubic-bezier(.16,1,.3,1);
    opacity: 0;
    animation: rise 1.2s cubic-bezier(.16,1,.3,1) 0.9s forwards;
}

.email:hover {
    color: #fff;
    border-color: rgba(196, 77, 255, 0.4);
    background: rgba(196, 77, 255, 0.06);
    box-shadow: 0 0 30px rgba(196, 77, 255, 0.1);
}

/* ── Animation ── */
@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* ── Mobile ── */
@media (max-width: 600px) {
    .logo { width: 80px; margin-bottom: 20px; }
    .title { letter-spacing: 0.2em; }
    .tagline { letter-spacing: 0.15em; }
    .line { margin: 20px 0; }
    .email { margin-top: 28px; }
}
