:root {
    --bg: #05070a;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
    --primary: #3b82f6;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg);
    color: var(--text-main);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

.glow-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% -20%, #1e3a8a 0%, transparent 50%);
    z-index: -1;
}

.container { max-width: 1000px; padding: 40px 20px; text-align: center; }

.logo { font-size: 1.8rem; font-weight: 800; margin-bottom: 10px; }
.logo span { color: var(--primary); }

.badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 40px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.2; margin-bottom: 20px; }
h1 span { background: linear-gradient(to right, #60a5fa, #3b82f6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

p.subtitle { color: var(--text-muted); max-width: 600px; margin: 0 auto 50px; font-size: 1.1rem; }

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 160px);
    gap: 15px;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 25px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.tool { grid-column: span 2; }
.waitlist { grid-column: span 2; background: #fff; color: #000; }
.stat { text-align: center; }
.stat h3 { color: var(--primary); font-size: 2rem; }

.waitlist h3 { font-weight: 800; margin-bottom: 5px; }
.waitlist p { font-size: 0.85rem; margin-bottom: 15px; color: #555; }

.form { display: flex; gap: 8px; }
.form input { flex: 1; padding: 10px; border-radius: 10px; border: 1px solid #ddd; outline: none; }
.form button { background: #000; color: #fff; border: none; padding: 0 15px; border-radius: 10px; font-weight: 600; cursor: pointer; }

footer { margin-top: 50px; color: var(--text-muted); font-size: 0.8rem; }

@media (max-width: 768px) {
    .bento-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .tool, .waitlist { grid-column: span 2; }
}