@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap');

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

body {
  min-height: 100vh;
  background-color: #0a0006;
  color: #f0e8ec;
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 680px;
}

.badge {
  display: inline-block;
  background: #5c001e;
  color: #f5b8cb;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid #7a0028;
  margin-bottom: 2.5rem;
}

.icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: block;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  text-align: center;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

h1 span {
  color: #c0003a;
}



p.desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  color: #c4a8b3;
  text-align: center;
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 3rem;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3.5rem;
  max-width: 600px;
}

.feature {
  background: #1a0010;
  border: 1px solid #3d0018;
  border-radius: 10px;
  padding: 0.75rem 1.2rem;
  font-size: 0.88rem;
  color: #e8c0cc;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: #c0003a;
}

.coming-soon {
  border: 1px solid #3d0018;
  border-radius: 14px;
  padding: 1.25rem 2.5rem;
  text-align: center;
  background: #120009;
  margin-bottom: 3rem;
}

.coming-soon p {
  font-size: 0.8rem;
  color: #7a4458;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.coming-soon strong {
  font-size: 1.3rem;
  color: #f5d0da;
  font-weight: 500;
}

.dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 1rem;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3d0018;
  animation: pulse 1.5s infinite ease-in-out;
}

.dot:nth-child(2) { animation-delay: 0.3s; }
.dot:nth-child(3) { animation-delay: 0.6s; }

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); background: #c0003a; }
}

.divider {
  width: 40px;
  height: 1px;
  background: #3d0018;
  margin: 0 auto 2.5rem;
}

footer {
  font-size: 0.82rem;
  text-align: center;
}

footer strong {
  color: #7a3348;
}
