/* ============================================
   GLOBAL BASE STYLES
============================================ */

html,
body {
    margin: 0;
    min-height: 100vh;
    background: #f5f5f7; /* light grey background */
    color: #020617;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    position: relative;
}

/* Ensure all main content is transparent */
body, .header, .hero, .footer {
    background: transparent !important;
    position: relative;
    z-index: 10; /* content ABOVE particles */
}

/* Canvas behind everything */
#fx {
    position: fixed;
    inset: 0;
    z-index: 0;     /* canvas BELOW everything */
    pointer-events: none;
}


/* Center shell to hold content, no background */
.center-shell {
    position: relative;
    z-index: 1;          /* ABOVE the canvas */
}

/* Make sure this doesn't block the particles */
.glass-card {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Keep content above canvas */
.header,
.hero,
.footer {
    position: relative;
    z-index: 2;
}


/* Remove all glow/blob layers */
body::before,
body::after {
    content: none !important;
}
#fx {
    position: fixed;
    inset: 0;
    z-index: -1;         /* sits behind all content */
    pointer-events: none;
}


/* ============================================
   HEADER & LOGO
============================================ */

.header {
    margin-bottom: 16px;
}

.logo-img {
    width: 220px;
    display: block;
    margin: 0 auto 40px;
    filter: drop-shadow(0px 3px 8px rgba(0, 0, 0, 0.15));
}

@media (max-width: 600px) {
    .logo-img {
        width: 150px;
        margin-bottom: 28px;
    }
}

/* ============================================
   HERO SECTION
============================================ */

.hero {
    text-align: center;
}

.title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 36px;
    font-weight: 300;
    letter-spacing: -0.5px;
    margin: 8px 16px 18px;
    line-height: 1.2;
    color: #0f172a;
}

@media (max-width: 600px) {
    .title {
        font-size: 28px;
        margin: 8px 24px 16px;
    }
}

.badge {
    display: inline-block;
    margin-top: 4px;
    padding: 8px 20px;
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.15);
    border-radius: 999px;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #111827;

    backdrop-filter: blur(4px);
}

/* ============================================
   FOOTER
============================================ */

.footer {
    position: fixed;
    bottom: 16px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 12px;
    opacity: 0.6;
    color: #6b7280;
}
