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

body {
    background-color: #000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    overflow: hidden;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    animation: fadeIn 1.2s ease-out;
}

/* ── Logo wrapper + glow ── */
.logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-glow {
    position: absolute;
    width: 140%;
    height: 140%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.55) 0%, rgba(255, 122, 0, 0.25) 35%, rgba(255, 122, 0, 0.08) 60%, transparent 80%);
    filter: blur(70px);
    animation: pulse-glow 3s ease-in-out infinite;
}

.logo {
    position: relative;
    width: min(420px, 85vw);
    height: auto;
    border-radius: 28px;
    filter: drop-shadow(0 0 60px rgba(255, 122, 0, 0.2));
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* ── Tagline ── */
.tagline {
    color: #fff;
    font-size: clamp(1rem, 3.5vw, 1.35rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    text-align: center;
    opacity: 0.9;
}

/* ── Animated dots ── */
.dots span {
    display: inline-block;
    animation: bounce 1.4s ease-in-out infinite;
    font-weight: 700;
}

.dots span:nth-child(1) { animation-delay: 0s; }
.dots span:nth-child(2) { animation-delay: 0.2s; }
.dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.3;
    }
    30% {
        transform: translateY(-6px);
        opacity: 1;
    }
}

/* ── Entrance ── */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
