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

body {
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at top, #1b1f24, #0d0f12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrap {
  text-align: center;
  padding: 24px;
}

.card {
  position: relative;
  max-width: 520px;
  padding: 64px 48px;
  border-radius: 24px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.badge {
  display: inline-block;
  margin-bottom: 24px;
  padding: 6px 14px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #aaa;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
}

h1 {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

p {
  font-size: 16px;
  line-height: 1.6;
  color: #bbb;
}

.pulse {
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.08);
  animation: pulse 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse {
  0%   { opacity: .4; }
  50%  { opacity: .8; }
  100% { opacity: .4; }
}

