*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', sans-serif;
  background: #f8fafc;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  padding: 48px 40px;
  width: 100%;
  max-width: 460px;
  text-align: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}
.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
}
.icon {
  font-size: 52px;
  margin-bottom: 20px;
}
h1 {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}
p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
}
.badge {
  display: inline-block;
  margin-top: 28px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
}
