* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: #0f1115;
  color: #ffffff;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: rgba(29, 161, 242, 0.12);
  filter: blur(120px);
  border-radius: 50%;
  top: 15%;
  right: 18%;
}

.badge {
  position: absolute;
  top: 32px;
  left: 32px;
  color: #a7b0c0;
  font-size: 14px;
  font-style: italic;
}

.content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 980px;
}

h1 {
  font-size: clamp(42px, 7vw, 86px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.05;
  margin-bottom: 28px;
}

p {
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 700;
  color: #a7b0c0;
  line-height: 1.45;
  max-width: 900px;
  margin: 0 auto;
}

.links {
  margin-top: 42px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.links a {
  text-decoration: none;
  color: #ffffff;
  background: #1a1d24;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.2s ease;
}

.links a:hover {
  background: #1da1f2;
  border-color: #1da1f2;
}

footer {
  position: absolute;
  bottom: 28px;
  color: #5f6878;
  font-size: 13px;
}

@media (max-width: 640px) {
  .hero {
    padding: 24px;
  }

  .badge {
    top: 24px;
    left: 24px;
  }

  h1 {
    font-size: 42px;
  }

  p {
    font-size: 18px;
  }
}
.floating-waitlist {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 320px;
  padding: 16px;
  background: rgba(26, 29, 36, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  z-index: 10;
}

.floating-waitlist span {
  display: block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.floating-waitlist div {
  display: flex;
  gap: 8px;
}

.floating-waitlist input {
  flex: 1;
  min-width: 0;
  padding: 11px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0f1115;
  color: #ffffff;
  outline: none;
  font-size: 13px;
}

.floating-waitlist button {
  padding: 11px 14px;
  border-radius: 999px;
  border: none;
  background: #1da1f2;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 640px) {
  .floating-waitlist {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }
}