:root {
    --bg: #0b1220;
    --card: rgba(255, 255, 255, 0.08);
    --text: #e6eef8;
    --muted: rgba(230, 238, 248, 0.65);
    --accent: #6d28d9;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    background: radial-gradient(circle at top, #122040, var(--bg));
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.container {
    max-width: 980px;
    width: 100%;
    background: var(--card);
    border-radius: 22px;
    padding: 46px 42px;
    text-align: center;
    backdrop-filter: blur(14px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.logo-wrap {
    margin-bottom: 18px;
}

.logo {
    height: 90px;
    opacity: 0;
    transform: translateY(12px) scale(0.95);
    animation: logoEnter 1.2s ease-out forwards;
}

@keyframes logoEnter {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

h1 {
    font-size: 30px;
    margin-bottom: 12px;
}

.subtitle {
    color: var(--muted);
    max-width: 760px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 42px;
}

.card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.card h3 {
    margin-top: 0;
}

.notify h2 {
    margin-bottom: 6px;
}

.notify p {
    color: var(--muted);
    margin-bottom: 16px;
}

.notify form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.notify input {
    padding: 12px 14px;
    border-radius: 10px;
    border: none;
    width: 260px;
}

.notify button {
    padding: 12px 18px;
    border-radius: 10px;
    border: none;
    background: var(--accent);
    color: #fff;
    cursor: pointer;
}

.success {
    display: none;
    margin-top: 14px;
    color: #9cffc1;
}

.countdown {
    margin-top: 22px;
    color: #a9c6ff;
}

.section-title {
    margin-bottom: 20px;
}


footer {
    margin-top: 42px;
    font-size: 13px;
    color: rgba(230, 238, 248, 0.45);
}

.faq {
  margin-top: 48px;
  text-align: left;
}

.faq h2 {
  text-align: center;
  margin-bottom: 24px;
}

.faq-item {
  margin-bottom: 18px;
}

.faq-item h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.faq-item p {
  color: var(--muted);
  line-height: 1.6;
}

.logo {
  filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.35));
}

/* .logo {
  max-width: 110px;
} */

body {
  font-display: swap;
}

.logo {
  width: 96px;
  height: auto;
}

.footer-note {
  margin-top: 32px;
  font-size: 14px;
  color: var(--muted);
}

.footer-note a {
  color: var(--brand);
}


@media (max-width: 600px) {
    .logo {
        height: 70px;
    }

    h1 {
        font-size: 26px;
    }
}