* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Assistant', sans-serif;
  background: linear-gradient(180deg, #f4f8ff 0%, #eaf2fb 100%);
  color: #0b1a33;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -1;
}

.orb1 {
  width: 300px;
  height: 300px;
  background: rgba(31,140,255,0.2);
  top: -80px;
  left: -60px;
}

.orb2 {
  width: 280px;
  height: 280px;
  background: rgba(0,80,200,0.15);
  bottom: -80px;
  right: -60px;
}

.coming-wrapper {
  text-align: center;
  max-width: 640px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.badge-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: rgba(31,140,255,0.12);
  border-radius: 999px;
  color: #1f8cff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #1f8cff, #005dff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.logo-text {
  font-size: 30px;
  font-weight: 800;
}

.logo-text span {
  color: #1f8cff;
}

h1 {
  font-size: 48px;
  margin: 0 0 10px;
  font-weight: 800;
  line-height: 1.1;
}

.subtitle {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.description {
  font-size: 16px;
  color: #5c6f8c;
  margin-bottom: 30px;
  line-height: 1.6;
}

.email-box {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
  width: 100%;
}

.email-box input {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #dbe6f5;
  font-size: 14px;
  width: 240px;
  outline: none;
}

.email-box button {
  padding: 14px 18px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #1f8cff, #005dff);
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}

.email-box button:hover {
  opacity: 0.9;
}

.features {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.feature {
  background: rgba(255,255,255,0.7);
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid #e2ecf9;
  min-width: 160px;
}

.feature strong {
  display: block;
  font-size: 16px;
}

.feature span {
  font-size: 13px;
  color: #6b7f9b;
}

.footer-text {
  font-size: 12px;
  color: #8fa3bd;
}

@media (max-width: 600px) {
  h1 {
    font-size: 34px;
  }

  .email-box {
    flex-direction: column;
    align-items: center;
  }

  .email-box input, .email-box button {
    width: 100%;
    max-width: 300px;
  }
}