/* GLOBAL STYLES */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #fafafa;
  color: #222;
  line-height: 1.6;
}

/* STICKY HEADER */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 1000;
  padding: 1rem 2rem;
  text-align: center;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-image {
  height: 32px;
  display: inline-block;
}

.logo-fallback {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #222;
  display: inline-block;
}

.header-nav {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: #222;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #555;
}

/* HERO SECTION */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 3rem 3rem;
  background: linear-gradient(to bottom, #ffffff, #f1f3f4);
}

.brand {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.subtext {
  font-size: 1rem;
  max-width: 500px;
  margin-bottom: 2rem;
  color: #555;
}

/* SCROLL ARROW BUTTON */
.scroll-down {
  font-size: 1.5rem;
  color: #888;
  margin-top: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  animation: bounce 1.5s infinite;
  outline: none;
  transition: color 0.2s;
}

.scroll-down:hover {
  color: #444;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* SECTIONS */
.section {
  padding: 5rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section p,
.section li {
  font-size: 1rem;
  color: #333;
}

/* SOLUTIONS SECTION */
.solutions {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.solutions div {
  background-color: #f4f4f4;
  padding: 1.5rem;
  border-radius: 8px;
}

/* BRAND PILLARS */
.pillars ul {
  list-style: none;
  padding: 0;
}

.pillars li {
  margin-bottom: 1rem;
}

/* MID-LINE */
.mid-message {
  text-align: center;
  font-size: 1.1rem;
  color: #444;
  margin: -2rem auto 4rem;
  max-width: 600px;
  font-style: italic;
}

/* WAITLIST FORM */
.waitlist {
  text-align: center;
  background-color: #f3f3f3;
  padding: 4rem 2rem;
  border-radius: 10px;
  margin-top: 4rem;
}

.waitlist-form {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.waitlist-form input {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 250px;
  max-width: 100%;
}

.waitlist-form button {
  padding: 0.75rem 1.5rem;
  border: none;
  background-color: #222;
  color: #fff;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.waitlist-form button:hover {
  background-color: #444;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.875rem;
  color: #777;
}

/* ANIMATIONS */
.animate-in {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.6s forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE STYLES */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    text-align: center;
  }

  .logo-image {
    height: 28px;
    margin-bottom: 0.5rem;
  }

  .header-nav {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-link {
    font-size: 1rem;
    padding: 0.25rem 0;
  }

  .brand {
    font-size: 2.5rem;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .subtext {
    font-size: 0.95rem;
  }

  .solutions {
    flex-direction: column;
  }

  .waitlist-form {
    flex-direction: column;
    align-items: center;
  }

  .waitlist-form input,
  .waitlist-form button {
    width: 100%;
    max-width: 300px;
  }
}
