@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --bg-1: #0b1022;
  --bg-2: #141a33;
  --bg-3: #0c122a;
  --pill: #7d5cff;
  --pill-dark: #4a36aa;
  --accent-1: #12d0d7;
  --accent-2: #46c2a6;
  --accent-3: #7c6bff;
  --text: #f5f7ff;
  --muted: #b9c0d9;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(83, 77, 160, 0.25), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(60, 132, 202, 0.2), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg-1) 45%, var(--bg-3));
  display: grid;
  place-items: center;
  padding: 60px 24px;
}

.hero {
  max-width: 960px;
  text-align: center;
  display: grid;
  gap: 22px;
}

.logo {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 6px;
  box-shadow:
    0 18px 28px rgba(0, 0, 0, 0.4),
    0 0 0 2px rgba(255, 221, 120, 0.35),
    0 0 18px rgba(255, 195, 0, 0.45);
  filter: blur(0.2px);
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(125, 92, 255, 0.6);
  background: rgba(18, 12, 40, 0.6);
  color: #cbbcff;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin: 0 auto;
  box-shadow: 0 12px 28px rgba(23, 15, 56, 0.6);
}

.lemon {
  font-size: 16px;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(255, 195, 0, 0.6));
}

h1 {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05;
  font-weight: 700;
}

.accent {
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2), var(--accent-3));
  -webkit-background-clip: text;
  color: transparent;
}

.lead {
  margin: 0 auto;
  max-width: 760px;
  font-size: clamp(16px, 2.1vw, 22px);
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 700px) {
  .pill {
    font-size: 11px;
  }

  .logo {
    width: 80px;
    height: 80px;
  }
}
