@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700;900&display=swap');

:root {
    --primary: #3b82f6;
    --bg: #05070a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg);
    color: #fff;
    font-family: 'Inter', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Background Effect */
.overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, #1e3a8a33 0%, #05070a 100%);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 20px;
}

/* Header */
.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 50px;
}
.logo span { color: var(--primary); }

/* Hero */
.status-badge {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 5px 15px;
    display: inline-block;
    border-radius: 20px;
    margin-bottom: 20px;
}

h1 {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 50px;
}

/* Coming Soon Card */
.launch-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 60px;
}

.launch-card h2 {
    font-size: 2.5rem;
    letter-spacing: 10px;
    margin-bottom: 15px;
}

.divider {
    height: 2px;
    width: 50px;
    background: var(--primary);
    margin: 0 auto 20px;
}

/* Pillars */
.pillars {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 60px;
}

.pillar {
    flex: 1;
    padding: 10px;
}

.pillar i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.pillar h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.pillar p {
    font-size: 0.8rem;
    color: #64748b;
}

/* Footer */
footer {
    opacity: 0.5;
}

.contact-line a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.copyright {
    font-size: 10px;
    letter-spacing: 2px;
    margin-top: 20px;
}