/* =============================================================
   Sky & Me V1 — Home page (index.html)
   ============================================================= */

/* ── Hero section ────────────────────────────────────────────── */
.hero-section {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100svh;
  padding: 0 1.5rem 6rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  margin-bottom: 1.25rem;
}

.hero-tagline {
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 48rem;
  margin-bottom: 2rem;
}

.hero-tagline .word-beautiful {
  display: inline-block;
  background: linear-gradient(90deg, #B76E79, #d86030);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-hint {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1rem;
  max-width: 22rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  font-weight: 300;
  font-style: italic;
}

@media (min-width: 768px) {
  .hero-hint { font-size: 1.125rem; }
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #B76E79;
  color: white;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}

.hero-cta:hover  { opacity: 0.85; }
.hero-cta:active { transform: scale(0.98); }

/* ── Scroll indicator ────────────────────────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.2);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0);    opacity: 0.5; }
  50%       { transform: translateX(-50%) translateY(8px);  opacity: 1; }
}

/* ── Waitlist section ────────────────────────────────────────── */
.waitlist-section {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.5rem 8rem;
}

.waitlist-card { width: 100%; max-width: 28rem; }

.waitlist-card-header {
  text-align: center;
  margin-bottom: 2rem;
}

.waitlist-cloud-icon {
  font-size: 1.875rem;
  display: block;
  margin-bottom: 1rem;
}

.waitlist-card-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.waitlist-card-header p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  line-height: 1.6;
}

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

/* ── Form inputs ─────────────────────────────────────────────── */
.sky-input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  color: white;
  width: 100%;
  padding: 14px 24px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  font-family: 'Inter', sans-serif;
  appearance: none;
}

.sky-input::placeholder { color: rgba(255, 255, 255, 0.3); }

.sky-input:focus {
  border-color: rgba(183, 110, 121, 0.6);
  background: rgba(255, 255, 255, 0.09);
}

.submit-btn {
  width: 100%;
  background-color: #B76E79;
  color: white;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: opacity 0.2s, transform 0.15s;
  font-family: 'Inter', sans-serif;
}

.submit-btn:hover  { opacity: 0.85; }
.submit-btn:active { transform: scale(0.98); }

.form-disclaimer {
  text-align: center;
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  margin-top: 1.5rem;
  line-height: 1.6;
}
