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

html, body {
    height: 100%;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #05070a;
    color: #e8f4fc;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "liga" 1, "calt" 1;
}

.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: radial-gradient(circle at 50% 30%, rgba(0, 180, 255, 0.06), transparent 60%);
}

.content {
    max-width: 760px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    animation: fadeInUp 1s ease-out;
}

.logo {
    width: 100%;
    max-width: 520px;
    height: auto;
    filter: drop-shadow(0 0 24px rgba(0, 180, 255, 0.18));
}

.tagline {
    font-family: "Sora", "Inter", sans-serif;
    font-size: clamp(1.25rem, 2.6vw, 1.9rem);
    font-weight: 500;
    line-height: 1.45;
    color: #c9e4f2;
    max-width: 680px;
    letter-spacing: -0.03em;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "JetBrains Mono", "SF Mono", Consolas, monospace;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #00b4ff;
    background: rgba(0, 180, 255, 0.08);
    border: 1px solid rgba(0, 180, 255, 0.2);
    padding: 0.6rem 1.3rem;
    border-radius: 9999px;
    backdrop-filter: blur(4px);
}

.footer {
    padding: 2rem;
    border-top: 1px solid rgba(0, 180, 255, 0.08);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer {
    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #e8f4fc;
}

.footer .footer-meta {
    font-size: 0.85rem;
    color: #6b8ca3;
}

.footer a {
    color: #8bcfff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer a:hover {
    color: #00b4ff;
    text-decoration: underline;
}

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

@media (max-width: 600px) {
    .hero {
        padding: 1.5rem;
    }

    .content {
        gap: 1.5rem;
    }

    .footer {
        padding: 1.5rem;
    }

    .footer-content {
        gap: 0.4rem;
    }
}
