* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.landing-page {
  font-family: 'Nunito', system-ui, -apple-system, sans-serif;
  color: #222;
  background: #fff;
  overflow-x: hidden;
}

/* ── Nav ── */

#landing-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

#nav-logo {
  height: 34px;
}

#nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

#nav-links a {
  font-size: 0.85rem;
  font-weight: 700;
  color: #333;
  text-decoration: none;
}

.nav-enter-btn {
  background: #d946a8;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 50px;
}

/* ── Hero ── */

#hero {
  position: relative;
  min-height: 64vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: 0;
}

#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 40%, rgba(255,255,255,0.85) 100%);
  z-index: 0;
}

#hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
  max-width: 480px;
}

#hero-logo {
  width: 200px;
  margin: 0 auto 12px;
  display: block;
}

#hero-tagline {
  font-size: 1.6rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}

#hero-subtext {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 22px;
}

#hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.btn-primary {
  display: inline-block;
  background: #d946a8;
  color: #fff;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background 0.15s;
}

.btn-primary:hover {
  background: #c0389a;
}

.btn-secondary {
  display: inline-block;
  background: #fff;
  color: #4a0080;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid #4a0080;
  transition: background 0.15s;
}

.btn-secondary:hover {
  background: #f5edff;
}

/* ── Sections ── */

.landing-section {
  padding: 52px 20px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.landing-section.alt-bg {
  background: #f0faff;
  max-width: 100%;
}

.landing-section h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}

.section-intro {
  font-size: 0.95rem;
  font-weight: 500;
  color: #555;
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.5;
}

/* ── Feature grid ── */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 20px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.feature-item strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: #111;
}

.feature-item span {
  font-size: 0.72rem;
  color: #777;
  font-weight: 500;
}

/* ── Map preview ── */

.map-preview {
  border-radius: 20px;
  overflow: hidden;
  height: 220px;
  max-width: 480px;
  margin: 0 auto 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  background: #d9f0ff;
}

.map-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Homie cards ── */

.homie-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.homie-card {
  background: #fff;
  border-radius: 18px;
  padding: 18px 14px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.homie-card-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.homie-card-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.homie-card strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: #111;
}

.homie-card span {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.4;
}

/* ── Final CTA ── */

#final-cta {
  background: #6ec8e8;
  padding: 56px 20px;
  text-align: center;
}

#final-cta h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}

#final-cta p {
  font-size: 0.95rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 20px;
}

@media (max-width: 480px) {
  #nav-links a:not(.nav-enter-btn) {
    display: none;
  }
}
