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

body {
  font-family: Inter, Arial, sans-serif;
  background: #0f172a;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.container {
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.logo {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.logo span {
  color: #38bdf8;
}

.badge {
  display: inline-block;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #7dd3fc;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 30px;
}

h1 {
  font-size: 54px;
  line-height: 1.1;
  margin-bottom: 24px;
}

p {
  font-size: 20px;
  line-height: 1.7;
  color: #cbd5e1;
  max-width: 760px;
  margin: 0 auto 40px auto;
}

.cta {
  display: inline-block;
  text-decoration: none;
  background: #38bdf8;
  color: #0f172a;
  padding: 16px 28px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.footer {
  margin-top: 60px;
  color: #64748b;
  font-size: 14px;
}

@media (max-width: 768px) {
  .logo {
    font-size: 46px;
  }

  h1 {
    font-size: 36px;
  }

  p {
    font-size: 18px;
  }
}
