/* Marketing home — keeps IndianKhata green, not a generic SaaS purple look. */

.landing-body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", system-ui, sans-serif;
  color: #1c2a22;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 209, 102, 0.18), transparent 36%),
    radial-gradient(circle at 8% 70%, rgba(52, 168, 120, 0.14), transparent 42%),
    linear-gradient(165deg, #14261d 0%, #154d35 42%, #f3f1ec 42.1%, #f7f5f0 100%);
}

.landing-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.1rem 1.25rem 0.4rem;
}

.landing-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #e8f0ea;
  text-decoration: none;
}

.landing-brand img {
  border-radius: 0.7rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.landing-brand strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.1;
}

.landing-brand small {
  display: block;
  color: #9bb5a6;
  font-size: 0.72rem;
}

.landing-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.landing-nav a {
  color: #e8f0ea;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.landing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: #ffd166;
  color: #14261d !important;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.22);
}

.landing-cta-lg {
  padding: 0.85rem 1.35rem;
  font-size: 1.02rem;
}

.landing-hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 2.5rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 7rem);
}

.landing-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffd166;
}

.landing-hero-copy h1 {
  margin: 0 0 0.9rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.1rem, 4.4vw, 3.35rem);
  line-height: 1.08;
  color: #f4faf6;
  max-width: 14ch;
}

.landing-lede {
  margin: 0 0 1.4rem;
  max-width: 36rem;
  color: #c5d8cc;
  font-size: 1.05rem;
  line-height: 1.55;
}

.landing-points {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
  display: grid;
  gap: 0.7rem;
}

.landing-points li {
  position: relative;
  padding-left: 1.7rem;
  color: #e8f0ea;
  font-size: 0.98rem;
  line-height: 1.4;
}

.landing-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.landing-points li::after {
  content: "";
  position: absolute;
  left: 0.34rem;
  top: 0.42rem;
  width: 0.4rem;
  height: 0.2rem;
  border-left: 2px solid #ffd166;
  border-bottom: 2px solid #ffd166;
  transform: rotate(-45deg);
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.2rem;
}

.landing-link {
  color: #d5e4db;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(213, 228, 219, 0.35);
}

.landing-link:hover {
  color: #fff;
}

.landing-hero-stage {
  justify-self: center;
  width: min(100%, 320px);
}

.landing-phone {
  position: relative;
  border-radius: 1.7rem;
  padding: 0.55rem;
  background: linear-gradient(160deg, #1a2f24, #0d1712);
  box-shadow:
    0 30px 60px rgba(15, 27, 21, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  animation: landing-float 5.5s ease-in-out infinite;
}

.landing-phone-notch {
  position: absolute;
  top: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.landing-slides {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  background: #f3f1ec;
  aspect-ratio: 9 / 16;
}

.landing-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateX(8%) scale(0.98);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}

.landing-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
  z-index: 1;
}

.landing-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-caption {
  margin: 0.9rem 0 0.55rem;
  text-align: center;
  color: #3d4f45;
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 2.6em;
}

.landing-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.landing-dot {
  width: 0.55rem;
  height: 0.55rem;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: #b7c5bc;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.landing-dot.is-active {
  width: 1.35rem;
  background: #1f6b4a;
}

.landing-foot {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem 1.5rem;
  color: #5d6b63;
  font-size: 0.85rem;
}

@keyframes landing-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 900px) {
  .landing-body {
    background:
      radial-gradient(circle at 90% 0%, rgba(255, 209, 102, 0.16), transparent 32%),
      linear-gradient(180deg, #14261d 0%, #154d35 34%, #f3f1ec 34.1%, #f7f5f0 100%);
  }

  .landing-hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    min-height: auto;
    padding-top: 1rem;
  }

  .landing-hero-copy h1 {
    max-width: none;
  }

  .landing-hero-stage {
    order: -1;
    width: min(100%, 280px);
  }

  .landing-phone {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-phone,
  .landing-slide,
  .landing-cta {
    animation: none !important;
    transition: none !important;
  }
}
