:root {
  --cream: #f5f5f5;
  --brown-dark: #2f1e1e;
  --brown-medium: #3d2b2b;
  --orange-main: #d97b5f;
  --orange-hover: #c05a3d;
  --secondary: #f1a95c;
  --grey-dark: #1c1a18;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

body {
  background: linear-gradient(135deg, var(--grey-dark), var(--brown-dark));
  color: var(--cream);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}


.container {
  max-width: 1000px; /* allow larger side-by-side layout */
  text-align: center;
  padding: 2.5rem 2rem;
  margin-top: 20vh;
}

.flashy-title {
  font-size: 2.6rem;
  background: linear-gradient(
    90deg,
    var(--orange-main) 0%,
    var(--secondary) 50%,
    var(--orange-main) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(217, 123, 95, 0.4);
  letter-spacing: 1px;
  animation: shimmer 2s ease-in-out infinite, fadeUp 1.2s ease-out forwards;
  opacity: 0;
}

.subtitle {
  font-size: 1.05rem;
  color: var(--orange-main);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  opacity: 0.9;
}

.features {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
  flex-wrap: nowrap; /* 🚫 no wrapping — stay in one line */
  margin-bottom: 2.5rem;
}

.feature {
  flex: 1 1 0;
  text-align: center;
  min-width: 0;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: scale(1.05);
}

.icon-box {
  width: clamp(45px, 8vw, 70px); /* 📱 scales down on smaller screens */
  height: clamp(45px, 8vw, 70px);
  background-color: rgba(61, 43, 43, 0.85);
  border: 1px solid rgba(241, 169, 92, 0.3);
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.icon-box:hover {
  background-color: rgba(217, 123, 95, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 0 12px rgba(217, 123, 95, 0.4);
}

.icon {
  font-size: clamp(1.2rem, 3vw, 2rem); /* 🧭 scales with screen size */
  color: var(--secondary);
}

.feature h3 {
  margin-top: 0.75rem;
  color: var(--orange-main);
  font-size: 0.95rem;
}

.feature p {
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: var(--cream);
  opacity: 0.85;
}

/* Waitlist */
.waitlist-card {
  background-color: rgba(61, 43, 43, 0.9);
  border: 1px solid rgba(241, 169, 92, 0.3);
  border-radius: 1rem;
  padding: 2rem;
  max-width: 480px;
  margin: 6rem auto 2rem; /* added top margin to create space above the card */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Avatar removed: single mockup/hero image is used instead */

.signup-form label {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--cream);
  display: block;
  margin-bottom: 1rem;
}

.input-group {
  display: flex;
  gap: 0.5rem;
}

.signup-form input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 1.5px solid rgba(241, 169, 92, 0.3);
  border-radius: 0.75rem;
  background-color: rgba(61, 43, 43, 0.6);
  color: var(--cream);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
}

.signup-form input:focus {
  border-color: var(--secondary);
  background-color: rgba(217, 123, 95, 0.65);
  box-shadow: 0 0 10px rgba(241, 169, 92, 0.4);
}

.signup-form button {
  background-color: var(--orange-main);
  color: var(--cream);
  border: none;
  border-radius: 0.75rem;
  padding: 0.8rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.signup-form button:hover {
  background-color: var(--orange-hover);
  color: var(--brown-dark);
  box-shadow: 0 0 10px rgba(192, 90, 61, 0.4);
}

footer {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* Hero image styles */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center; /* center heading, image and list */
  justify-content: center;
  margin: 1.5rem 0;
  background: transparent; /* ensure no container background */
  padding: 0;
}
.hero-image {
  display: block;
  width: 100%;
  max-width: 520px; /* larger mockup image */
  height: auto;
  border-radius: 0; /* show raw image without rounding */
  object-fit: contain;
  box-shadow: none; /* remove surrounding shadow */
  background: transparent;
  margin: 0 auto; /* ensure image centers inside its column */
}

/* Heading above the mockup image */
.hero-heading {
  width: 100%;
  text-align: center;
  margin-top: 3rem; /* space between waitlist card and heading */
  margin-bottom: 3rem;
  color: var(--orange-main);
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0 4px 18px rgba(0,0,0,0.45);
}

.feature-strip {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin: 2.5rem auto 0;
  padding: 0 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1.1rem 1.4rem;
  border-radius: 16px;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 18px rgba(0,0,0,0.3);
  transform: translateY(0);
  transition: 0.3s ease;
}

.feature-item:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.45);
}

.feature-item .icon {
  font-size: 1.6rem;
  color: var(--secondary);
}

.feature-item p {
  margin: 0;
  font-size: 1.15rem;
  color: rgba(245,245,245,0.96);
  line-height: 1.35;
}

.back-to-top-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.back-to-top-btn {
  display: inline-block;
  padding: 0.75rem 1.4rem;
  background: var(--secondary);
  color: #1a1a1a;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.25s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.back-to-top-btn:hover {
  background: #ffb06a;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.35);
}

.glow {
  animation: glowFlash 0.9s ease-out;
}

@keyframes glowFlash {
  0% {
    box-shadow: 0 0 0px rgba(255, 170, 80, 0);   /* softer warm gold */
    border-color: rgba(255, 170, 80, 0.35);
  }
  40% {
    box-shadow: 0 0 12px rgba(255, 170, 80, 0.55);
    border-color: rgba(255, 170, 80, 0.85);
  }
  100% {
    box-shadow: 0 0 0px rgba(255, 170, 80, 0);
    border-color: rgba(255, 170, 80, 0.35);
  }
}


@keyframes shimmer {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

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

@media (max-width: 500px) {
  .feature h3 {
    font-size: 0.85rem;
  }
  .feature p, .subtitle p {
    font-size: 0.7rem;
  }
  .hero-image { max-width: 100%; }
  .container { padding: 1rem; }
}

@media (max-width: 900px) {
  /* Stack vertically on narrower screens */
  .hero-row {
    flex-direction: column;
    gap: 1.25rem;
  }
  .hero-row .waitlist-card {
    max-width: 100%;
    width: 100%;
  }
}