/* =========================
   RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   BASE LAYOUT
========================= */

body {
  background: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

/* =========================
   MAIN CONTAINER
========================= */

.container {
  width: 100%;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* =========================
   LOGO
========================= */

.logo {
  width: 240px;
  max-width: 70vw;
  height: auto;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.08));
}

/* =========================
   HEADLINE
========================= */

h1 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 28px;
}

/* =========================
   COUNTER
========================= */

.counter-wrapper {
  margin-bottom: 28px;
  font-size: 1rem;
  opacity: 0.9;
}

#spots-left {
  font-weight: 700;
  font-size: 1.2rem;
}

/* =========================
   FORM
========================= */

.waitlist-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.row {
  display: flex;
  gap: 14px;
}

/* =========================
   INPUTS
========================= */

input {
  width: 100%;
  background: #111;
  border: 1px solid #222;
  color: #fff;
  padding: 16px;
  border-radius: 14px;
  font-size: 1rem;
  transition: all 0.2s ease;
}

input:focus {
  outline: none;
  border-color: #fff;
}

input::placeholder {
  color: #888;
}

/* =========================
   BUTTON
========================= */

button {
  margin-top: 6px;
  padding: 16px;
  border: none;
  border-radius: 14px;
  background: #fff;
  color: #000;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

button:hover {
  transform: translateY(-1px);
}

/* =========================
   SUCCESS MESSAGE
========================= */

#success-message {
  margin-top: 18px;
  font-size: 0.95rem;
  color: #8cff95;
}

/* =========================
   SOCIAL ICONS
========================= */

.socials {
  margin-top: 42px;
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

.socials a {
  color: #fff;
  font-size: 1.4rem;
  transition: 0.2s ease;
}

.socials a:hover {
  opacity: 0.7;
}

/* =========================
   MOBILE
========================= */


}
