/* Global */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: 
    linear-gradient(rgba(128, 128, 128, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(128, 128, 128, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(128, 128, 128, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(128, 128, 128, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 70% 30%, #0f1a0f 0%, #050a05 100%);
  background-size: 25px 25px, 25px 25px, 75px 75px, 75px 75px, 100% 100%;
  color: #F8F8F8;
  min-height: 100vh;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  padding: 2rem;
  transform: translateY(-3rem);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.logo img {
  height: 46px;
}

/* Headline */
.headline {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  margin: 0 0 1.15rem 0;
}

/* Removed forced line breaks - now wraps naturally */

.headline em {
  font-style: italic;
}

/* Subcopy */
.subcopy {
  font-family: 'Inter', sans-serif;
  font-size: 1.27rem;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 2.3rem;
  max-width: 690px;
}

/* CTA Button */
.cta {
  display: inline-block;
  padding: 0.92rem 2.3rem;
  background: #F8F8F8;
  color: black;
  border-radius: 999px;
  font-family: 'Merriweather', serif;
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta:hover {
  background: #e8e8e8;
}

/* --- Responsive Layouts --- */

/* 📱 Phone (< 810px) */
@media (max-width: 809px) {
  .headline {
    font-size: 1.84rem;
    line-height: 1.3;
  }

  .subcopy {
    font-size: 1.035rem;
  }
}

/* 💻 Tablet (810px – 1199px) */
@media (min-width: 810px) and (max-width: 1199px) {
  .headline {
    font-size: 2.3rem;
    line-height: 1.3;
  }

  .subcopy {
    font-size: 1.15rem;
    max-width: 575px;
  }
}

/* 🖥 Desktop (≥ 1200px) */
@media (min-width: 1200px) {
  .headline {
    font-size: 2.875rem;
    line-height: 1.3;
  }

  .subcopy {
    font-size: 1.27rem;
  }
}
