:root {
  --ink: #183e35;
  --green: #0d6654;
  --green-dark: #073e35;
  --mint: #d9eee2;
  --cream: #f6f1e8;
  --paper: #fffdf8;
  --coral: #ef705d;
  --yellow: #f7c85b;
  --muted: #62756f;
  --line: rgba(24, 62, 53, 0.14);
  --shadow: 0 24px 60px rgba(31, 68, 58, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.site-header {
  width: min(100% - 48px, 1240px);
  height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 44px;
  position: relative;
  z-index: 20;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 800 22px "Manrope", sans-serif;
  letter-spacing: -1px;
}
.brand-mark {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 50% 50% 48% 52%;
}
.brand-mark svg { width: 28px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2.3; }
.main-nav { display: flex; gap: 32px; margin: 0 auto; }
.main-nav a, .text-link { font-size: 14px; font-weight: 600; }
.main-nav a:hover, .text-link:hover { color: var(--coral); }
.header-actions { display: flex; align-items: center; gap: 24px; }
.button {
  min-height: 54px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: 0;
  border-radius: 9px;
  color: white;
  background: var(--green);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(13, 102, 84, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(13, 102, 84, 0.24); background: #0a5949; }
.button svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 2; }
.button-small { min-height: 42px; padding: 0 18px; font-size: 13px; border-radius: 7px; }
.menu-toggle { display: none; }

.hero {
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 0.92fr);
  align-items: center;
  max-width: 1440px;
  margin: -84px auto 0;
  padding: 124px max(48px, calc((100vw - 1240px) / 2)) 50px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: "";
  width: 66%;
  height: 100%;
  position: absolute;
  right: -11%;
  top: 0;
  background: #dcecdf;
  border-radius: 0 0 0 52%;
  z-index: -1;
}
.hero-copy { max-width: 620px; padding-top: 20px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 19px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.eyebrow span { width: 24px; height: 2px; background: var(--coral); }
h1, h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  letter-spacing: -3.4px;
  line-height: 1.08;
}
h1 { max-width: 650px; font-size: clamp(52px, 5.4vw, 77px); }
h1 em, h2 em { color: var(--coral); font-family: Georgia, serif; font-weight: 400; }
.hero-intro {
  max-width: 540px;
  margin: 25px 0 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.hero-actions { display: flex; align-items: center; gap: 30px; }
.play-link { display: inline-flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 700; }
.play-link span { width: 37px; height: 37px; display: grid; place-items: center; padding-left: 2px; border: 1px solid var(--line); border-radius: 50%; font-size: 10px; }
.hero-proof { display: flex; align-items: center; gap: 13px; margin-top: 44px; }
.avatars { display: flex; padding-left: 7px; }
.avatars span {
  width: 32px;
  height: 32px;
  margin-left: -7px;
  display: grid;
  place-items: center;
  border: 2px solid var(--cream);
  border-radius: 50%;
  color: white;
  background: #9e6553;
  font-size: 11px;
  font-weight: 700;
}
.avatars span:nth-child(2) { background: #617b86; }
.avatars span:nth-child(3) { background: #d99c50; }
.avatars span:nth-child(4) { color: var(--green); background: var(--mint); }
.hero-proof p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.hero-proof strong { color: var(--ink); font-size: 12px; }

.hero-visual { min-height: 560px; display: grid; place-items: center; position: relative; }
.sun-shape {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: var(--yellow);
}
.phone {
  width: 265px;
  height: 540px;
  padding: 9px;
  position: relative;
  z-index: 3;
  overflow: hidden;
  border: 6px solid #173e35;
  border-radius: 38px;
  background: #fff;
  box-shadow: 0 35px 65px rgba(13, 67, 55, 0.28);
  transform: rotate(2deg);
}
.phone-top { height: 25px; padding: 2px 8px; display: flex; justify-content: space-between; align-items: center; font-size: 9px; font-weight: 700; }
.phone-top i { width: 58px; height: 17px; position: absolute; top: 5px; left: 50%; transform: translateX(-50%); border-radius: 12px; background: #173e35; }
.phone-content { padding: 16px 12px; }
.phone-welcome { margin: 0 0 5px; color: var(--muted); font-size: 9px; }
.phone h2 { letter-spacing: -1px; font-size: 21px; }
.search-pill { margin: 15px 0; padding: 10px; color: #82928d; background: #f4f5f1; border-radius: 6px; font-size: 8px; }
.mini-heading { display: flex; justify-content: space-between; font-size: 8px; }
.mini-heading span { color: var(--green); }
.offer-card { margin-top: 8px; overflow: hidden; border-radius: 11px; background: white; box-shadow: 0 8px 22px rgba(25, 56, 47, 0.14); }
.food-illustration { height: 150px; position: relative; overflow: hidden; background: linear-gradient(145deg, #d9a863, #9d633d); }
.food-illustration::before { content: ""; width: 175px; height: 74px; position: absolute; left: 36px; bottom: -15px; border-radius: 50%; background: #f0e1c5; box-shadow: inset 0 0 0 12px #c97840; transform: rotate(-8deg); }
.bread { width: 43px; height: 95px; position: absolute; left: 102px; bottom: 24px; border-radius: 50% 50% 40% 40%; background: linear-gradient(90deg, #c87a38, #efbb64, #a85f2c); transform: rotate(15deg); }
.bread::after { content: ""; position: absolute; inset: 21px 10px auto; height: 4px; border-radius: 4px; background: #f5cf8d; box-shadow: 0 16px #f5cf8d, 0 32px #f5cf8d; transform: rotate(-10deg); }
.bread-two { left: 55px; bottom: 11px; transform: scale(.77) rotate(-24deg); }
.bread-three { left: 145px; bottom: 1px; transform: scale(.66) rotate(43deg); }
.offer-details { padding: 10px 12px; display: flex; flex-direction: column; }
.offer-details small { color: var(--coral); font-size: 6px; font-weight: 800; text-transform: uppercase; }
.offer-details strong { margin: 3px 0; font-size: 11px; }
.offer-details > span { color: var(--muted); font-size: 7px; }
.offer-details div { margin-top: 8px; display: flex; align-items: center; gap: 5px; }
.offer-details b { font-size: 12px; }
.offer-details del { color: #9ba7a3; font-size: 7px; }
.offer-details mark { margin-left: auto; padding: 2px 4px; color: var(--green); background: var(--mint); border-radius: 3px; font-size: 6px; font-weight: 700; }
.phone-nav { height: 47px; padding: 11px 20px; display: flex; justify-content: space-between; position: absolute; inset: auto 0 0; color: #9eaaa7; background: #fff; border-top: 1px solid #edf0ec; font-size: 13px; }
.phone-nav b { color: var(--green); }
.floating-card {
  position: absolute;
  z-index: 5;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(255,255,255,.95);
  box-shadow: var(--shadow);
}
.floating-price { top: 110px; right: 2%; display: flex; flex-direction: column; transform: rotate(3deg); }
.floating-price span { color: var(--muted); font-size: 9px; }
.floating-price strong { margin-top: 2px; color: var(--coral); font-size: 19px; }
.floating-impact { left: 3%; bottom: 78px; display: flex; align-items: center; gap: 10px; transform: rotate(-3deg); }
.floating-impact > span { width: 29px; height: 29px; display: grid; place-items: center; color: white; background: var(--green); border-radius: 50%; }
.floating-impact div { display: flex; flex-direction: column; font-size: 10px; }
.floating-impact small { margin-top: 2px; color: var(--muted); font-size: 7px; }
.leaf { width: 36px; height: 80px; position: absolute; z-index: 2; border-radius: 100% 0 100% 0; background: var(--green); }
.leaf-one { left: 7%; top: 85px; transform: rotate(-40deg); }
.leaf-two { right: 2%; bottom: 62px; transform: rotate(35deg) scale(.7); background: var(--coral); }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 25px max(48px, calc((100vw - 1240px) / 2));
  color: white;
  background: var(--green);
}
.trust-strip div { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 5px 18px; border-right: 1px solid rgba(255,255,255,.18); }
.trust-strip div:last-child { border: 0; }
.trust-strip span { font-size: 24px; }
.trust-strip p { margin: 0; font-size: 11px; line-height: 1.45; }
.trust-strip strong { display: block; font-size: 12px; }

.section { width: min(100% - 48px, 1240px); margin: 0 auto; padding: 100px 0; }
.section-heading { text-align: center; }
.section-heading .eyebrow { justify-content: center; }
.section-heading h2, .partner-intro h2 { font-size: clamp(38px, 4vw, 55px); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 70px; margin-top: 64px; }
.steps article { position: relative; text-align: center; }
.steps article:not(:last-child)::after { content: ""; width: 100px; position: absolute; top: 52px; right: -85px; border-top: 1px dashed rgba(13,102,84,.35); }
.step-number { position: absolute; top: 0; right: 27%; color: rgba(13,102,84,.16); font: 800 41px "Manrope", sans-serif; }
.step-icon { width: 78px; height: 78px; margin: 0 auto 21px; display: grid; place-items: center; border-radius: 45% 55% 45% 55%; color: var(--green); background: var(--mint); font-size: 29px; transform: rotate(-5deg); }
.steps article:nth-child(2) .step-icon { color: #9a6d04; background: #f8e6b2; transform: rotate(4deg); }
.steps article:nth-child(3) .step-icon { color: #a23f32; background: #f9d8d0; }
.steps h3 { margin: 0 0 10px; font: 800 20px "Manrope", sans-serif; }
.steps p { max-width: 270px; margin: auto; color: var(--muted); font-size: 14px; line-height: 1.6; }

.pro-section {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(360px, .75fr) minmax(500px, 1.25fr);
  gap: 80px;
  align-items: center;
  padding: 90px max(48px, calc((100vw - 1240px) / 2));
  overflow: hidden;
  color: white;
  background: var(--green-dark);
}
.eyebrow-light { color: #b9d8ce; }
.pro-copy h2 { font-size: clamp(40px, 4.4vw, 58px); }
.pro-copy p:not(.eyebrow) { margin: 24px 0; color: #b9d0ca; line-height: 1.65; }
.pro-copy ul { padding: 0; margin: 25px 0 32px; list-style: none; }
.pro-copy li { margin: 14px 0; font-size: 14px; }
.pro-copy li span { width: 23px; height: 23px; margin-right: 10px; display: inline-grid; place-items: center; color: var(--green); background: var(--mint); border-radius: 50%; font-size: 11px; }
.button-light { color: var(--green-dark); background: #fff; box-shadow: none; }
.button-light:hover { color: white; }
.dashboard-preview { min-width: 670px; overflow: hidden; border: 8px solid rgba(255,255,255,.14); border-radius: 14px; background: #f6f6f0; box-shadow: 0 35px 80px rgba(0,0,0,.3); transform: rotate(2deg); }
.dashboard-top { height: 50px; padding: 0 22px; display: flex; align-items: center; justify-content: space-between; color: var(--ink); background: white; font-size: 9px; }
.brand-mini { color: var(--green); font: 800 14px "Manrope"; }
.brand-mini small { padding: 2px 5px; color: var(--coral); background: #fce4de; border-radius: 3px; }
.dashboard-body { min-height: 390px; display: flex; color: var(--ink); }
.dashboard-body aside { width: 57px; padding: 28px 0; display: flex; align-items: center; flex-direction: column; gap: 34px; color: #8b9c97; background: white; }
.dashboard-body aside b { color: var(--green); }
.dashboard-main { flex: 1; padding: 33px 35px; }
.dashboard-main p { margin: 0 0 5px; color: var(--muted); font-size: 10px; }
.dashboard-main h3 { margin: 0 0 25px; font: 800 22px "Manrope"; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.metric-row div, .chart-card { padding: 16px; display: flex; flex-direction: column; border-radius: 8px; background: white; }
.metric-row small { color: var(--muted); font-size: 8px; }
.metric-row strong { margin: 7px 0; font-size: 20px; }
.metric-row span { color: var(--green); font-size: 7px; }
.chart-card { margin-top: 15px; font-size: 9px; }
.bars { height: 93px; display: flex; align-items: end; gap: 15px; padding: 17px 10px 0; border-bottom: 1px solid #d9e0dc; }
.bars i { flex: 1; height: 40%; border-radius: 3px 3px 0 0; background: #86b7a8; }
.bars i:nth-child(2) { height: 65%; }.bars i:nth-child(3) { height: 55%; }.bars i:nth-child(4) { height: 86%; background: var(--coral); }.bars i:nth-child(5) { height: 70%; }.bars i:nth-child(6) { height: 95%; }.bars i:nth-child(7) { height: 80%; }

.impact { display: flex; justify-content: space-between; align-items: center; gap: 50px; }
.impact h2 { font-size: 45px; }
.impact-metrics { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.impact-metrics p { margin: 0; padding-left: 25px; display: flex; flex-direction: column; border-left: 1px solid var(--line); }
.impact-metrics strong { color: var(--coral); font: 800 28px "Manrope"; }
.impact-metrics span { margin-top: 6px; color: var(--muted); font-size: 11px; line-height: 1.4; }

.download-intro { max-width: 620px; margin: 18px auto 0; color: var(--muted); line-height: 1.7; }
.store-buttons { margin: 40px auto 0; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.store-button {
  min-width: 250px;
  padding: 15px 26px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border-radius: 12px;
  color: white;
  background: var(--green);
  box-shadow: 0 10px 26px rgba(13, 102, 84, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.store-button:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(13, 102, 84, 0.24); background: #0a5949; }
.store-icon { width: 40px; height: 40px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 11px; background: rgba(255, 255, 255, 0.16); }
.store-icon svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.store-label { display: flex; flex-direction: column; text-align: left; }
.store-label small { font-size: 11px; opacity: .8; }
.store-label strong { font: 800 19px "Manrope"; letter-spacing: -.4px; }
.store-button.is-disabled { color: var(--muted); background: #e6e2d8; box-shadow: none; cursor: not-allowed; pointer-events: none; }
.store-button.is-disabled .store-icon { background: rgba(24, 62, 53, 0.08); }
.download-meta { min-height: 18px; margin: 22px 0 0; color: var(--muted); text-align: center; font-size: 12px; }
.download-help { margin-top: 55px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.download-help article { padding: 28px 30px; border-radius: 16px; background: var(--paper); box-shadow: var(--shadow); }
.download-help h3 { margin: 0; font: 800 18px "Manrope"; }
.download-help ol { margin: 16px 0 0; padding-left: 20px; color: var(--muted); font-size: 13px; line-height: 1.75; }
.download-help code { padding: 1px 5px; border-radius: 4px; background: var(--mint); color: var(--green-dark); font-size: 12px; }
.download-help article > p { margin: 16px 0 0; color: var(--muted); font-size: 11px; line-height: 1.6; }

.partner-section {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 80px;
  padding: 100px max(48px, calc((100vw - 1240px) / 2));
  background: #dfecdf;
}
.partner-intro > p:not(.eyebrow) { color: var(--muted); line-height: 1.7; }
.partner-intro ol { margin: 35px 0 0; padding: 0; list-style: none; }
.partner-intro li { margin: 22px 0; display: flex; align-items: center; gap: 15px; }
.partner-intro li > span { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; color: white; background: var(--green); border-radius: 50%; font-weight: 700; }
.partner-intro li div { display: flex; flex-direction: column; }
.partner-intro li small { margin-top: 3px; color: var(--muted); }
.partner-form { padding: 34px; border-radius: 16px; background: var(--paper); box-shadow: var(--shadow); }
.form-heading { margin-bottom: 25px; }
.form-heading p { margin: 0 0 4px; font: 800 21px "Manrope"; }
.form-heading span { color: var(--muted); font-size: 12px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-grid label { display: flex; flex-direction: column; gap: 7px; font-size: 12px; font-weight: 700; }
.form-grid label.full { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid #d9dfda;
  border-radius: 7px;
  outline: none;
  background: white;
  font-size: 13px;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(13,102,84,.1); }
.consent { margin: 21px 0; display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 11px; line-height: 1.45; cursor: pointer; }
.consent input { width: 16px; height: 16px; flex: 0 0 auto; accent-color: var(--green); }
.submit-button { width: 100%; }
.submit-button:disabled { opacity: .65; cursor: wait; transform: none; }
.form-status { display: none; margin: 15px 0 0; padding: 12px; border-radius: 7px; font-size: 12px; line-height: 1.5; }
.form-status.success { display: block; color: #07523f; background: #d9eee2; }
.form-status.error { display: block; color: #8b2f25; background: #fbe0da; }

footer {
  padding: 40px max(48px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  color: #bad1cb;
  background: #052f29;
  font-size: 12px;
}
.brand-footer { color: white; }
.brand-footer .brand-mark { font-size: 23px; }
footer p { text-align: center; }
footer div { display: flex; gap: 20px; }
footer a:hover { color: white; }
footer small { grid-column: 1 / -1; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); text-align: center; }

@media (max-width: 1050px) {
  .main-nav { display: none; }
  .header-actions { margin-left: auto; }
  .hero { grid-template-columns: 1fr 440px; }
  .hero-visual { transform: scale(.88); }
  .steps { gap: 30px; }
  .steps article:not(:last-child)::after { display: none; }
  .pro-section { grid-template-columns: 1fr; }
  .dashboard-preview { width: 720px; margin: auto; }
  .impact { align-items: flex-start; flex-direction: column; }
  .impact-metrics { width: 100%; }
  .partner-section { gap: 40px; }
  .download-help { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .site-header { width: min(100% - 32px, 1240px); height: 72px; }
  .header-actions { display: none; }
  .menu-toggle { width: 42px; height: 42px; margin-left: auto; display: grid; place-content: center; gap: 6px; border: 0; border-radius: 8px; background: rgba(255,255,255,.7); }
  .menu-toggle span { width: 20px; height: 2px; background: var(--ink); }
  .site-header.menu-open .main-nav { padding: 20px; display: flex; flex-direction: column; position: absolute; top: 63px; right: 0; left: 0; background: var(--paper); border-radius: 12px; box-shadow: var(--shadow); }
  .hero { min-height: 0; margin-top: -72px; padding: 115px 24px 50px; grid-template-columns: 1fr; }
  .hero::before { width: 100%; height: 48%; right: -38%; top: 52%; border-radius: 50% 0 0; }
  h1 { font-size: clamp(43px, 13vw, 64px); }
  .hero-intro { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-visual { min-height: 570px; transform: scale(.9); }
  .trust-strip { padding: 25px 20px; grid-template-columns: repeat(2, 1fr); }
  .trust-strip div { justify-content: flex-start; border: 0; }
  .section { width: min(100% - 36px, 1240px); padding: 75px 0; }
  .section-heading h2, .partner-intro h2 { font-size: 38px; }
  .steps { grid-template-columns: 1fr; gap: 48px; }
  .step-number { right: 34%; }
  .pro-section { padding: 75px 24px; gap: 50px; }
  .dashboard-preview { min-width: 680px; margin-left: 20px; transform: scale(.72) rotate(2deg); transform-origin: left top; margin-bottom: -120px; }
  .impact-metrics { grid-template-columns: 1fr; }
  .store-buttons { flex-direction: column; align-items: stretch; gap: 14px; }
  .store-button { min-width: 0; }
  .download-help article { padding: 24px 20px; }
  .partner-section { padding: 75px 20px; grid-template-columns: 1fr; }
  .partner-form { padding: 25px 19px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid label.full { grid-column: auto; }
  footer { padding: 45px 25px; grid-template-columns: 1fr; text-align: center; }
  footer .brand { justify-self: center; }
  footer div { justify-content: center; }
  footer small { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
