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

body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0f;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.container {
  width: 100%;
  max-width: 560px;
}

.card {
  text-align: center;
  padding: 3rem 2rem;
}

.icon-wrap {
  width: 68px;
  height: 68px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrap svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #818cf8;
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 100px;
  padding: 5px 16px;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 2.4rem;
  font-weight: 600;
  color: #f1f5f9;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.divider {
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}

.subtitle {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1e293b;
  display: inline-block;
}

.dot.active {
  background: #6366f1;
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  .card { padding: 2rem 1rem; }
}
