/* landing.css (landing page only) */

/* HERO */
.heroCover {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 520px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.heroBg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.heroOverlay {
  position: relative;
  z-index: 1;
  padding: 18px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #fff;
  background: linear-gradient(to top, rgba(17, 24, 39, .72), rgba(17, 24, 39, .08));
}

/* OPTION A: put content in the MIDDLE */
.heroOverlay {
  justify-content: center;
}

/* OPTION B: put content near the TOP (uncomment this instead of middle) */
/*
.heroOverlay{
  justify-content:flex-start;
  padding-top:48px;
}
*/
.heroOverlay h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.4px;
  font-weight: bold;
}

.heroOverlay .muted {
  margin: 0;
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
}

.heroActions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 430px) {

  .heroCover,
  .heroOverlay {
    min-height: 560px;
  }

  .heroOverlay {
    transform: translateY(-18px);
  }

  .heroOverlay h2 {
    font-size: 28px;
    font-weight: 800;
  }
}

/* FEATURES — make them blend with body (less “big cards”) */
.features {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.feature {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 16px;
  padding: 14px 14px;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
}

.feature h3 {
  margin: 0 0 6px;
  font-size: 16px;
  letter-spacing: -0.2px;
}

.feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

/* FOOTER */
.footer {
  margin-top: 18px;
  padding: 16px 0 10px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}