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

body {
    font-family: 'Inter', sans-serif;
    background: #08080c;
    color: #e0e0e8;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: drift 10s ease-in-out infinite;
}

.glow-1 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #f97316, transparent 70%);
    top: -15%;
    right: 25%;
}

.glow-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #fb923c, transparent 70%);
    bottom: 0;
    left: 10%;
    animation-delay: -3s;
}

.glow-3 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, #fbbf24, transparent 70%);
    top: 30%;
    right: 5%;
    animation-delay: -6s;
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(15px, -20px) scale(1.03); }
    66% { transform: translate(-10px, 15px) scale(0.97); }
}

.content {
    text-align: center;
    z-index: 1;
}

.logo-text {
    font-size: clamp(3rem, 9vw, 7rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff, #fdba74, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: appear 0.8s ease-out;
}

.tagline {
    margin-top: 1rem;
    font-size: clamp(0.9rem, 2vw, 1.3rem);
    font-weight: 200;
    color: rgba(200, 200, 220, 0.55);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    animation: appear 0.8s ease-out 0.25s both;
}

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

footer {
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer a {
    color: rgba(180, 180, 200, 0.45);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}

footer a:hover {
    color: rgba(220, 180, 140, 0.8);
}
