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

body {
  background: #f9f7f5;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  padding: 1.5rem;
  color: #1e1e1e;
  line-height: 1.5;
}

.container {
  max-width: 780px;
  width: 100%;
  background: #ffffff;
  border-radius: 36px;
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.06);
  padding: 3.5rem 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.02);
  text-align: center;
}

.brand {
  margin-bottom: 2rem;
}

.brand-name {
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0f0f0f;
}

.brand-name span {
  font-weight: 300;
  color: #8a8a8a;
}

.tagline {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6e6e6e;
  margin-top: 0.2rem;
  border-top: 1px solid #ececec;
  padding-top: 0.8rem;
  display: inline-block;
}

.main-content {
  padding: 0.8rem 0 0.2rem;
}

.badge {
  display: inline-block;
  background: #f0ede8;
  border-radius: 100px;
  padding: 0.25rem 1.2rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #3d3d3d;
  border: 1px solid #e3ddd5;
  margin-bottom: 1.8rem;
}

.main-title {
  font-size: clamp(2.8rem, 6.5vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.6rem;
  color: #0f0f0f;
}

.main-title .highlight {
  font-weight: 600;
  background: linear-gradient(145deg, #c0392b, #a62c1f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subhead {
  font-size: 1.05rem;
  font-weight: 400;
  color: #3f3f3f;
  max-width: 560px;
  margin: 0 auto 1.8rem;
  line-height: 1.6;
}

.subhead strong {
  font-weight: 500;
  color: #1e1e1e;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.8rem;
  margin: 2rem 0 2.2rem;
  padding: 1.2rem 1.5rem;
  background: #faf8f6;
  border-radius: 80px;
  border: 1px solid #edebe6;
}

.stat-item {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.stat-number {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0f0f0f;
  letter-spacing: -0.01em;
}

.stat-label {
  font-size: 0.85rem;
  color: #5a5a5a;
  font-weight: 400;
}

.coming-soon-ring {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin: 2rem 0 1.2rem;
  padding: 0.6rem 1.8rem;
  background: #fcfaf8;
  border-radius: 200px;
  border: 1px solid #e8e4de;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.ring-icon {
  font-size: 1.6rem;
  animation: pulse 2s infinite ease-in-out;
  display: inline-block;
}

@keyframes pulse {
  0% {
    opacity: 0.6;
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 0.6;
    transform: scale(0.95);
  }
}

.ring-text {
  font-weight: 450;
  color: #2d2d2d;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
}

.note {
  font-size: 0.85rem;
  color: #6a6a6a;
  margin-top: 1.8rem;
  letter-spacing: 0.01em;
}

.note span {
  display: inline-block;
  animation: pulse 2.4s infinite ease-in-out;
}

.footer {
  margin-top: 2.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid #edebe6;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  color: #5a5a5a;
}

.footer .copyright {
  opacity: 0.6;
}

@media (max-width: 640px) {
  .container {
    padding: 2rem 1.5rem;
    border-radius: 28px;
  }
  .brand-name {
    font-size: 2.2rem;
  }
  .stats {
    border-radius: 40px;
    gap: 1rem 1.8rem;
    padding: 1rem 0.8rem;
  }
  .stat-number {
    font-size: 1.2rem;
  }
  .coming-soon-ring {
    padding: 0.5rem 1.2rem;
    max-width: 100%;
  }
  .ring-icon {
    font-size: 1.3rem;
  }
  .ring-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 1.5rem 1rem;
  }
  .main-title {
    font-size: 2.2rem;
  }
  .subhead {
    font-size: 0.95rem;
  }
  .stats {
    gap: 0.8rem 1.2rem;
    padding: 0.8rem 0.5rem;
    border-radius: 30px;
  }
  .stat-number {
    font-size: 1rem;
  }
  .stat-label {
    font-size: 0.75rem;
  }
}
