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

body {
  font-family: "Inter", sans-serif;
}

/* Headline */
h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

/* Subtext */
p {
  font-size: 15px;
  color: #aaa;
  margin-bottom: 20px;
}

/* Optional: make "Better" pop more */
h1 span {
  font-weight: 700;
}
/* FORM WRAPPER */
.form {
  display: flex;
  gap: 20px;
  margin-top: 24px;
}

/* INPUT (futuristic glass + glow) */
.input {
  flex: 1;
  padding: 14px 16px;

  background: transparent;
  border: none;
  border-bottom: 4px solid white;

  color: #fff;
  font-size: 16px;

  backdrop-filter: blur(10px);
  outline: none;

  transition: all 0.25s ease;
}

.input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* BUTTON (premium gradient + glow) */
.button:active,
.button {
  padding: 14px 18px;
  border: 4px white solid;
  color: #ffffff;
  font-weight: 500;
  background: transparent;

  cursor: pointer;
  font-size: 16px;
  position: relative;

  transition: all 0.25s ease;
}

/* hover = lift + glow */
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(124, 92, 255, 0.35);
  background: white;
  color: black;
}

/* active = press */
.button:active {
  transform: scale(0.97);
}
