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

body {
  min-height: 100vh;
  background: #050510;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow: hidden;
  position: relative;
}

canvas#particles {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

.container {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 3rem 2rem;
  max-width: 600px;
  width: 100%;
}

.badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7f6af5;
  border: 1px solid #3a2f8a;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 2rem;
  animation: fadeUp 1s ease both;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  animation: fadeUp 1s 0.2s ease both;
  margin-bottom: 1.5rem;
}

h1 span {
  background: linear-gradient(135deg, #7f6af5 0%, #c084fc 50%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 420px;
  margin: 0 auto 3rem;
  line-height: 1.7;
  animation: fadeUp 1s 0.4s ease both;
}

.counter-wrapper {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 3rem;
  animation: fadeUp 1s 0.5s ease both;
}

.counter-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px 18px;
  min-width: 70px;
}

.counter-num {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  display: block;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.counter-label {
  font-size: 10px;
  color: #4b5563;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
  display: block;
}

.email-form {
  display: flex;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto 3rem;
  animation: fadeUp 1s 0.6s ease both;
}

.email-form input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.email-form input::placeholder { color: #4b5563; }
.email-form input:focus { border-color: #7f6af5; }

.email-form button {
  background: linear-gradient(135deg, #7f6af5, #c084fc);
  border: none;
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
  white-space: nowrap;
}

.email-form button:hover { opacity: 0.85; }
.email-form button:active { transform: scale(0.97); }

.stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  animation: fadeUp 1s 0.8s ease both;
}

.stat-item { text-align: center; }

.stat-num {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: #4b5563;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.orb-1 {
  width: 400px; height: 400px;
  background: rgba(127,106,245,0.15);
  top: -100px; left: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-2 {
  width: 300px; height: 300px;
  background: rgba(192,132,252,0.1);
  bottom: -80px; right: -80px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(127,106,245,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127,106,245,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(30px, 20px); }
}

@media (max-width: 480px) {
  .counter-wrapper { gap: 8px; }
  .counter-box { padding: 10px 12px; min-width: 58px; }
  .counter-num { font-size: 1.5rem; }
  .stats { gap: 1.5rem; }
}

.personal-link {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 20;
  font-size: 13px;
  font-weight: 500;
  color: #9ca3af;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 18px;
  border-radius: 100px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  animation: fadeUp 1s 1s ease both;
}

.personal-link:hover {
  color: #fff;
  border-color: #7f6af5;
  background: rgba(127,106,245,0.1);
}
