:root {
  --green: #145c36;
  --green-2: #1f7a46;
  --deep: #0d2417;
  --ink: #142018;
  --muted: #647368;
  --line: #dfe8df;
  --paper: #ffffff;
  --soft: #f4f8f1;
  --gold: #f3c84b;
  --fb: #1877f2;
  --shadow: 0 22px 60px rgba(20, 32, 24, .14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: radial-gradient(circle at top left, #edf7e8 0, #f8faf5 32%, #ffffff 100%);
}
a { color: inherit; }
img { max-width: 100%; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px clamp(14px, 4vw, 46px);
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(223,232,223,.85);
  backdrop-filter: blur(14px);
}
.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-mark {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: contain;
  background: white;
  box-shadow: 0 8px 20px rgba(20,32,24,.1);
}
.brand span { min-width: 0; }
.brand strong,
.brand small { display: block; }
.brand strong { font-size: 17px; }
.brand small {
  max-width: 210px;
  color: var(--muted);
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}
.nav a {
  text-decoration: none;
  font-weight: 750;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.nav a:hover { background: var(--soft); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 390px);
  align-items: center;
  gap: clamp(22px, 5vw, 70px);
  padding: clamp(44px, 7vw, 96px) clamp(16px, 5vw, 70px);
  color: white;
  background: var(--deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 35, 21, .97) 0%, rgba(9, 35, 21, .85) 50%, rgba(9, 35, 21, .50) 100%),
    url("https://enggportal.com/binnadang/uploads/harvest/2026/07/hero.jpg") center/cover;
}
.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: -120px;
  border-radius: 50%;
  background: rgba(243, 200, 75, .22);
  filter: blur(8px);
}
.hero-content,
.hero-download-card { position: relative; z-index: 1; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--green-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero .eyebrow { color: #bde9c7; }
h1, h2, h3 { margin: 0; line-height: 1.05; }
h1 {
  max-width: 820px;
  font-size: clamp(48px, 8.4vw, 112px);
  letter-spacing: -0.055em;
}
h2 {
  max-width: 940px;
  font-size: clamp(28px, 4vw, 54px);
  letter-spacing: -0.035em;
}
h3 { font-size: clamp(20px, 2vw, 24px); letter-spacing: -0.02em; }
.tagline {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: clamp(22px, 3vw, 40px);
  line-height: 1.16;
  font-weight: 850;
  color: #fff4c7;
}
.lead {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.84);
  font-size: clamp(16px, 1.8vw, 21px);
  line-height: 1.55;
}
.hero-quote {
  max-width: 780px;
  margin: 22px 0 0;
  padding: 16px 18px;
  border-left: 6px solid var(--gold);
  border-radius: 20px;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.94);
  font-size: clamp(15px, 1.55vw, 20px);
  line-height: 1.55;
  font-weight: 720;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}
.hero-actions,
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 850;
  box-shadow: 0 14px 26px rgba(0,0,0,.12);
  text-align: center;
}
.btn.primary { background: var(--gold); color: #172215; }
.btn.secondary { background: rgba(255,255,255,.14); color: white; border-color: rgba(255,255,255,.34); }
.btn.dark { background: var(--deep); color: white; }
.btn.fb { background: var(--fb); color: white; }
.trust-line {
  margin: 18px 0 0;
  color: rgba(255,255,255,.68);
  font-weight: 700;
}
.hero-download-card {
  display: grid;
  gap: 14px;
  width: min(390px, 100%);
  justify-self: center;
  padding: clamp(16px, 2.2vw, 22px);
  border-radius: 34px;
  background: rgba(255,255,255,.97);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 34px 80px rgba(0,0,0,.36);
}
.qr-box {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}
.hero-qr {
  width: min(300px, 100%);
  aspect-ratio: 1;
  border-radius: 24px;
  background: white;
  padding: 10px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(20,32,24,.12);
}
.qr-box b {
  display: block;
  font-size: clamp(23px, 2.5vw, 28px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.qr-box span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 650;
}
.play-card,
.follow-card {
  display: grid;
  justify-content: center;
  align-content: center;
  min-height: 64px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 900;
  text-align: center;
}
.play-card { background: #111; color: white; }
.play-card span { font-size: 12px; opacity: .78; }
.play-card strong { font-size: 24px; line-height: 1; }
.follow-card { background: var(--fb); color: white; min-height: 54px; }

.section {
  margin: clamp(18px, 3vw, 34px) clamp(16px, 5vw, 70px) 0;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 16px 50px rgba(20,32,24,.06);
}
.section-copy p,
.problem-grid p,
.feature-card p,
.download-copy p,
.phone-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 16px;
}
.section-copy.center {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}

.phone-showcase-section { overflow: hidden; }
.phone-scroller {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 18px);
  align-items: start;
}
.phone-card {
  min-width: 0;
  padding: clamp(12px, 1.4vw, 16px);
  border: 1px solid rgba(31, 111, 67, 0.14);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f4f8f2);
  box-shadow: 0 18px 45px rgba(20, 53, 33, 0.10);
  text-align: center;
}
.phone-card:nth-child(even) { margin-top: 28px; }
.phone-card img {
  width: min(100%, 210px);
  aspect-ratio: 9 / 19;
  object-fit: cover;
  object-position: top center;
  display: block;
  margin: 0 auto 16px;
  border-radius: clamp(22px, 2.4vw, 30px);
  border: clamp(6px, .8vw, 9px) solid #111;
  background: #111;
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.22);
}
.phone-card h3 {
  margin: 0 0 8px;
  color: #173820;
}
.phone-card p { margin: 0; font-size: 14px; }

.problem-section,
.inspiration-section,
.audience-section {
  display: grid;
  grid-template-columns: minmax(250px, .78fr) minmax(0, 1.22fr);
  gap: 30px;
  align-items: start;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.problem-grid article,
.feature-card {
  padding: 22px;
  border-radius: 24px;
  background: var(--soft);
  border: 1px solid #e3ece1;
}
.problem-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-bottom: 18px;
  background: var(--green);
  color: white;
  font-weight: 900;
}
.inspiration-section {
  align-items: center;
  background: linear-gradient(135deg, #fffdf4, #f4f8f1);
  border-color: #eadc9a;
}
.inspiration-card {
  margin: 0;
  padding: clamp(20px, 3vw, 30px);
  border-radius: 28px;
  background: white;
  border: 1px solid #eadc9a;
  box-shadow: 0 18px 44px rgba(20,32,24,.08);
}
.inspiration-card strong {
  display: block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.inspiration-card span {
  display: block;
  color: #38463c;
  font-size: clamp(16px, 1.75vw, 20px);
  line-height: 1.55;
  font-weight: 650;
}
.inspiration-card span + span { margin-top: 12px; }
.banner-section {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  background: linear-gradient(135deg, #f7cf4a, #fff3bb);
  border-color: #efd179;
}
.banner-section .eyebrow { color: #6a4b00; }
.feature-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: white;
  font-size: 26px;
  box-shadow: 0 10px 24px rgba(20,32,24,.08);
}
.audience-list { display: grid; gap: 10px; }
.audience-list div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px;
  border-radius: 18px;
  background: var(--soft);
}
.audience-list span { color: var(--muted); line-height: 1.45; }
.download-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  gap: 28px;
  align-items: center;
  margin: clamp(18px, 3vw, 34px) clamp(16px, 5vw, 70px) 0;
  padding: clamp(26px, 5vw, 54px);
  border-radius: 34px;
  color: white;
  background: linear-gradient(135deg, #0d2417, #17613a 64%, #214d2c);
  box-shadow: var(--shadow);
}
.download-section .eyebrow { color: #bde9c7; }
.download-copy p { color: rgba(255,255,255,.78); max-width: 720px; }
.download-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.2);
}
.qr {
  width: min(260px, 100%);
  aspect-ratio: 1;
  border-radius: 20px;
  background: white;
  padding: 8px;
}
.download-card p { margin: 0; color: rgba(255,255,255,.82); font-weight: 800; }
.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 28px clamp(16px, 5vw, 70px) 42px;
  color: var(--muted);
}
.footer strong,
.footer span { display: block; }
.footer a { color: var(--green); font-weight: 850; }

@media (max-width: 1180px) {
  .phone-scroller { grid-template-columns: repeat(3, 1fr); }
  .phone-card:nth-child(even) { margin-top: 0; }
  .feature-section { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .topbar { align-items: flex-start; flex-direction: column; }
  .nav { justify-content: flex-start; width: 100%; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 2px; }
  .hero,
  .problem-section,
  .inspiration-section,
  .audience-section,
  .download-section { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-download-card { justify-self: start; }
  .problem-grid { grid-template-columns: 1fr; }
  .banner-section { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 760px) {
  .section,
  .download-section { margin-left: 14px; margin-right: 14px; border-radius: 24px; }
  .phone-scroller {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 6px 4px 18px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .phone-card {
    flex: 0 0 min(78vw, 290px);
    scroll-snap-align: start;
  }
  .phone-card img { max-width: 210px; }
  .feature-section { grid-template-columns: 1fr; }
  .audience-list div { grid-template-columns: 1fr; gap: 6px; }
}

@media (max-width: 560px) {
  .topbar { padding: 10px 12px; }
  .brand-mark { width: 38px; height: 38px; }
  .nav a { padding: 8px 9px; font-size: 13px; }
  .hero { padding: 36px 14px 28px; }
  h1 { font-size: clamp(42px, 15vw, 58px); }
  .tagline { font-size: 21px; }
  .lead { font-size: 15px; }
  .hero-quote { padding: 14px; font-size: 14px; border-radius: 16px; }
  .hero-actions, .download-actions { gap: 10px; }
  .btn { width: 100%; min-height: 50px; padding: 0 16px; }
  .hero-download-card { width: 100%; border-radius: 24px; }
  .hero-qr { width: min(220px, 100%); border-radius: 18px; }
  .play-card strong { font-size: 21px; }
  .section { padding: 20px 16px; }
  .download-section { padding: 24px 16px; }
  .inspiration-card { border-radius: 20px; }
}
