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

body {
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
    background: #0a0a0a;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

#stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

body::before {
    content: '';
    position: fixed;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    /* background:
        radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02) 40%, transparent 65%),
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.03), transparent 45%),
        radial-gradient(circle at 75% 20%, rgba(255, 255, 255, 0.025), transparent 40%); */
    filter: blur(90px);
    z-index: 0;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    /* background: radial-gradient(circle at 50% 42%, transparent 30%, rgba(0, 0, 0, 0.35) 80%, rgba(0, 0, 0, 0.65) 100%); */
    z-index: 0;
    pointer-events: none;
}

.page {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ── Top bar ── */
.topbar {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.6rem 2rem;
    flex-shrink: 0;
}

.topbar-logo {
    width: 24px;
    height: 24px;
    opacity: 0.9;
}

.status-pill {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 0.72rem;
    color: #aaa;
    letter-spacing: 0.02em;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
}

/* ── Hero ── */
.hero {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1.5rem;
}

.globe-wrap {
    pointer-events: none;
    margin-bottom: 0.5rem;
}

#globe {
    display: block;
    width: 900px;
    height: 900px;
    max-width: 90vw;
    max-height: 90vw;
    transform: rotate(-19deg);
}

h1 {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 0.75rem;
}

.subtitle {
    font-size: 0.95rem;
    color: #888;
    max-width: 380px;
    line-height: 1.6;
}

/* ── Footer ── */
.footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.4rem 1rem;
    color: #555;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.footer-dot {
    color: #444;
}

.footer a {
    color: #555;
    text-decoration: none;
}

.footer a:hover {
    color: #888;
}

/* ── Responsive ── */
@media (max-width: 600px) {
    h1 {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 0.85rem;
    }

    #globe {
        width: 460px;
        height: 460px;
    }
}
