:root {
  --bg: #111113;
  --text: #f5f6f8;
  --muted: #9aa0ad;
  --accent: #b84dff;
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  display: grid;
  place-items: center;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.32'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.12;
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 0;
}

.hero {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 880px;
  width: min(94vw, 880px);
}

.icon-wrap {
  position: relative;
  width: 92px;
  height: 92px;
  margin: 0 auto 36px;
  display: grid;
  place-items: center;
}

.icon-glow {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(circle, rgba(184, 77, 255, 0.35), rgba(184, 77, 255, 0));
  filter: blur(18px);
  transform: scale(1.4);
  animation: pulse 3.2s ease-in-out infinite;
}

.icon {
  width: 86px;
  height: 86px;
  color: var(--accent);
  filter: drop-shadow(0 8px 18px rgba(184, 77, 255, 0.35));
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(56px, 9vw, 92px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.accent-dot {
  color: var(--accent);
}

p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 2.6vw, 18px);
  line-height: 1.6;
  font-weight: 300;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

@keyframes pulse {
  0% {
    opacity: 0.5;
    transform: scale(1.35);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.5);
  }
  100% {
    opacity: 0.5;
    transform: scale(1.35);
  }
}

@media (max-width: 640px) {
  body {
    padding: 24px;
  }

  .icon-wrap {
    margin-bottom: 28px;
  }
}
