:root {
  --font-bahnschrift: 'Bahnschrift', 'Segoe UI', sans-serif;
  --bg-color: #000000;
  --text-color: #ffffff;
}

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

/* Core Layout */
body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-bahnschrift);
  height: auto;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  padding: 4rem 1rem;
  position: relative;
}

.minimal-container {
  text-align: center;
  animation: fadeIn 1.5s ease-out;
  max-width: 800px;
  width: 100%;
}

.brand-name {
  font-size: clamp(3rem, 15vw, 8rem);
  font-weight: 600;
  letter-spacing: 0.05em; /* Reduced from 0.1em */
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  line-height: normal;
}

.tagline {
  font-size: clamp(0.7rem, 1.5vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.3em; /* Reduced from 0.6em */
  text-transform: uppercase;
  margin-bottom: 3rem;
  opacity: 0.8;
  color: #fff;
}

.launch-text {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 4vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.1em; /* Reduced from 0.2rem */
  text-transform: uppercase;
  opacity: 1; /* Was 0.8 */
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Waitlist Section Styles */
.waitlist-section {
  margin-top: 1.5rem; /* Reduced gap from 4rem */
  padding: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 2s ease-out 1s both;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.waitlist-title {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em; /* Reduced from 0.1em */
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  opacity: 0.7; /* Was 1.0 */
}

.waitlist-subtitle {
  font-size: 0.9rem;
  font-weight: 300;
  opacity: 0.6;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.waitlist-input {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 1.2rem;
  color: #fff;
  font-family: var(--font-bahnschrift);
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
  text-align: center;
}

.waitlist-input:focus {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.05);
}

.waitlist-btn {
  background: #fff;
  color: #000;
  border: none;
  padding: 1rem;
  font-family: var(--font-bahnschrift);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.waitlist-btn:hover {
  background: #ccc;
  letter-spacing: 0.3em;
}

.form-response {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  height: 1rem;
  transition: opacity 0.3s ease;
}
