* { box-sizing: border-box; }

:root {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 20%, rgba(99,102,241,.28), transparent 30%),
    radial-gradient(circle at 85% 80%, rgba(236,72,153,.24), transparent 30%),
    #09090f;
  color: #fff;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  width: min(720px, 100%);
  padding: clamp(32px, 7vw, 72px);
  text-align: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 32px;
  background: rgba(255,255,255,.07);
  box-shadow: 0 30px 100px rgba(0,0,0,.45);
  backdrop-filter: blur(18px);
}

.badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: #c7d2fe;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}

h1 {
  margin: 22px 0 14px;
  font-size: clamp(38px, 8vw, 72px);
  line-height: 1.02;
}

h1 span {
  background: linear-gradient(90deg, #a5b4fc, #f9a8d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  margin: 0 auto 36px;
  color: #c4c4d0;
  font-size: clamp(17px, 3vw, 21px);
}

.counter {
  padding: 24px;
  border-radius: 22px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.08);
}

.counter-label {
  color: #aaaabb;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
}

.count {
  margin: 8px 0 2px;
  font-size: clamp(42px, 10vw, 68px);
  font-weight: 900;
}

.counter-note, .footer {
  color: #9b9baa;
}

.footer {
  margin: 28px 0 0;
}
