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

body {
    font-family: 'Badeen Display', system-ui, -apple-system, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
    position: relative;
}

/* Background Pattern */
.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(30, 30, 30, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(40, 40, 40, 0.3) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
}

.logo {
    font-family: 'Badeen Display', system-ui, sans-serif;
    font-size: clamp(3rem, 12vw, 10rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    margin-bottom: 1rem;
    animation: fadeIn 1s ease-out;
}

.tagline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    color: #808080;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: fadeIn 1.5s ease-out;
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(0deg, rgba(10, 10, 10, 0.9) 0%, transparent 100%);
    z-index: 100;
}

.footer p {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #606060;
    font-weight: 400;
}

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

/* Responsive */
@media (max-width: 768px) {
    .logo {
        font-size: clamp(2rem, 10vw, 4rem);
    }

    .nav-container,
    .footer {
        padding: 1.5rem;
    }
}
