.landing-page {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
}

.landing-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  isolation: isolate;
  background-image:
    linear-gradient(90deg, rgba(8, 24, 20, 0.9) 0%, rgba(8, 24, 20, 0.76) 44%, rgba(8, 24, 20, 0.34) 100%),
    linear-gradient(180deg, rgba(8, 24, 20, 0.22) 0%, rgba(8, 24, 20, 0.76) 100%),
    url("../img/landing-kelurahan.jpg");
  background-size: cover;
  background-position: center;
}

.landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 25%, rgba(159, 211, 176, 0.22), transparent 28rem),
    linear-gradient(135deg, transparent 0 64%, rgba(181, 72, 31, 0.14) 64% 100%);
}

.landing-shell {
  width: min(1120px, calc(100% - 2rem));
  min-height: 100svh;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 2rem;
  padding: 2rem 0;
}

.landing-top,
.landing-status {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.landing-top {
  color: #fff;
}

.landing-mark {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: #bce5c7;
  border: 1px solid rgba(188, 229, 199, 0.42);
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
}

.landing-brand {
  font-family: var(--font-display);
  font-weight: 700;
}

.landing-copy {
  align-self: center;
  max-width: 760px;
}

.landing-kicker {
  display: inline-flex;
  margin-bottom: 1rem;
  color: #d9f2df;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.landing-copy h1 {
  margin-bottom: 1.1rem;
  color: #fff;
  font-size: clamp(2.35rem, 6vw, 5.25rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.landing-copy p {
  max-width: 680px;
  margin-bottom: 2rem;
  color: rgba(248, 245, 236, 0.86);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 700;
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease;
}

.landing-btn:hover {
  transform: translateY(-2px);
}

.landing-btn-primary {
  background: #f8f5ec;
  color: var(--ink);
  border: 1px solid #f8f5ec;
}

.landing-btn-secondary {
  color: #fff;
  border: 1px solid rgba(248, 245, 236, 0.52);
  background: rgba(248, 245, 236, 0.08);
  backdrop-filter: blur(10px);
}

.landing-btn-secondary:hover {
  border-color: rgba(248, 245, 236, 0.82);
  background: rgba(248, 245, 236, 0.14);
}

.landing-status {
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid rgba(248, 245, 236, 0.18);
}

.landing-status span {
  color: rgba(248, 245, 236, 0.78);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .landing-hero {
    background-image:
      linear-gradient(180deg, rgba(8, 24, 20, 0.9) 0%, rgba(8, 24, 20, 0.76) 55%, rgba(8, 24, 20, 0.84) 100%),
      url("../img/landing-kelurahan.jpg");
    background-position: 58% center;
  }

  .landing-shell {
    width: min(100% - 1.5rem, 1120px);
    padding: 1rem 0 1.25rem;
  }

  .landing-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }

  .landing-copy {
    padding: 1rem 0;
  }

  .landing-actions,
  .landing-btn {
    width: 100%;
  }
}
