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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: #05060a;
  color: #f5f5f7;
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 24px;
}

.hero__glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(94, 96, 255, 0.35) 0%, rgba(94, 96, 255, 0) 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 560px;
}

.hero__badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #b9baff;
  margin-bottom: 24px;
}

.hero__test {
  font-size: 14px;
  color: rgba(245, 245, 247, 0.6);
  margin-bottom: 12px;
}

.hero__title {
  font-size: clamp(48px, 10vw, 88px);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 0%, #9ea1ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(245, 245, 247, 0.7);
  margin-bottom: 40px;
}

.hero__form {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: #f5f5f7;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease;
}

.hero__form input:focus {
  border-color: #7b7dff;
}

.hero__form button {
  padding: 14px 24px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #7b7dff 0%, #5e60ff 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hero__form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(94, 96, 255, 0.35);
}

.hero__footer {
  position: absolute;
  bottom: 24px;
  font-size: 13px;
  color: rgba(245, 245, 247, 0.4);
}
