/* === Global Reset & Base Styles === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background-color: #000;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  overflow-x: hidden;
}

/* === Header & Navigation === */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 16px;
  background-color: #000;
  position: sticky;
  top: 0;
  z-index: 1000;
  line-height: 1;
}
.site-logo img {
  height: 28px;
  width: auto;
  display: block;
  margin-left: 6px;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  margin: 0;
}
nav ul li {
  display: inline-block;
}
nav ul li a {
  color: #FCD37D;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.85rem;
  padding: 4px 8px;
  transition: color 0.3s ease;
  line-height: 1.2;
}
nav ul li a:hover {
  color: #ffa500;
}
nav ul li.menu-item-thank-you {
  display: none !important;
}

/* === Front Page Layout === */
.front-page {
  min-height: 100vh;
  padding: 0.5rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* === Hero Image === */
.hero-image-wrap {
  padding: 0;
  margin: 0.25rem auto;
}
.hero-image {
  width: 100%;
  max-width: 200px;
  max-height: 20vh;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  -webkit-user-drag: none;
  image-rendering: auto;
}

/* === Hero Content === */
.main-title {
  font-size: 1.8rem;
  margin: 0.5rem 0;
  color: #fff;
}
.hero-subtext,
.intro {
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0 auto 1rem;
  max-width: 600px;
  color: #ccc;
  text-align: center;
}

/* === CTA Button === */
.cta-button-wrapper {
  margin: 0.75rem 0;
  text-align: center;
}
.cta-button,
.waitlist-form button,
.waitlist-form input[type="submit"] {
  background-color: transparent;
  color: #FCD37D;
  border: 2px solid #FCD37D;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
.cta-button:hover,
.cta-button:focus,
.waitlist-form button:hover,
.waitlist-form input[type="submit"]:hover {
  background-color: #FCD37D;
  color: #000;
  transform: scale(1.05);
  border-color: #FCD37D;
  outline: none;
}

/* === Features Section === */
.features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.3s;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.feature-box {
  background-color: #111;
  padding: 1rem;
  border: 2px solid #444;
  border-radius: 16px;
  width: 200px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.05);
}
.feature-box:hover {
  transform: translateY(-6px);
  border-color: #FCD37D;
  box-shadow: 0 0 16px rgba(252, 211, 125, 0.25);
}
.feature-box .emoji {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  display: block;
  transition: transform 0.2s ease;
}
.feature-box:hover .emoji {
  transform: scale(1.2);
}
.feature-box h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #fff;
}
.feature-box p {
  font-size: 0.9rem;
  color: #ccc;
}

/* === Footer === */
footer {
  text-align: center;
  padding: 1rem;
  margin: 3rem 0 1rem;
  font-size: 0.9rem;
  color: #888;
}

/* === Waitlist Page === */
.waitlist-hero {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: left;
}
.waitlist-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: bold;
}
.waitlist-intro {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.waitlist-perks {
  margin-bottom: 1.5rem;
}
.perks-title {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.perks-list {
  list-style: none;
  padding-left: 0;
}
.perks-list li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.waitlist-form label {
  font-weight: bold;
  display: block;
}
.waitlist-form .form-label {
  display: block;
  margin-top: 20px;
  margin-bottom: 8px;
  font-weight: 600;
  color: #fff;
}
.waitlist-form input[type="text"],
.waitlist-form input[type="email"],
.waitlist-form select,
.waitlist-form textarea {
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #fff;
  border-radius: 6px;
  width: 100%;
  background-color: #111;
  color: #fff;
  font-family: inherit;
  box-sizing: border-box;
  appearance: none;
}
.waitlist-form select {
  background-image: url("data:image/svg+xml,%3Csvg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}
.waitlist-form textarea {
  resize: vertical;
  min-height: 100px;
}
.waitlist-form .hidden-honeypot {
  display: none;
}
.waitlist-count {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #ccc;
}
.waitlist-form .cta-button {
  margin-top: 30px;
  width: 100%;
  padding: 14px;
  font-size: 18px;
  font-weight: bold;
  background: transparent;
  color: #fff;
  border: 2px solid gold;
  border-radius: 999px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.waitlist-form .cta-button:hover {
  background: gold;
  color: #000;
}