:root {
  --green-bright: #70c92e;
  --green-mid: #4f8638;
  --green-light: #8bd852;
  --green-deep: #3a6229;
  --green-dark: #253e1a;
  --white: #ffffff;
  --black: #000000;
  --ink: #1c2a17;
  --gray: #5b6a54;
  --gray-light: #eef4e8;
  --border: #dde7d3;
  --radius: 16px;
  --radius-sm: 10px;
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--green-dark);
  line-height: 1.2;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); font-weight: 600; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }

p { margin: 0 0 1em; color: var(--gray); }
p:last-child { margin-bottom: 0; }

a { color: var(--green-mid); text-decoration: none; }
a:hover { color: var(--green-dark); text-decoration: underline; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--green-dark);
}
.brand:hover { text-decoration: none; color: var(--green-dark); }
.brand img { width: 32px; height: 32px; }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.96rem;
}
.nav-links a:hover { color: var(--green-mid); text-decoration: none; }

.nav-cta {
  background: var(--green-bright);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--green-deep); text-decoration: none; }

.nav-right { display: flex; align-items: center; gap: 28px; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  margin: 5px 0;
  transition: 0.2s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 24px 20px;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.mobile-menu a {
  color: var(--ink);
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { text-decoration: none; color: var(--green-mid); }
.mobile-menu.open { display: flex; }

@media (max-width: 780px) {
  .nav-links, .nav-right .nav-cta.desktop-only { display: none; }
  .hamburger { display: block; }
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--gray-light) 0%, var(--white) 100%);
  padding: 72px 0 56px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-art { order: -1; max-width: 280px; margin: 0 auto; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero h1 { margin-bottom: 0.4em; }
.hero .subhead {
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 46ch;
  margin-bottom: 1.6em;
}
@media (max-width: 860px) { .hero .subhead { margin-left: auto; margin-right: auto; } }

.store-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 860px) { .store-badges { justify-content: center; } }

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-dark);
  color: var(--white) !important;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid var(--green-dark);
}
.store-badge:hover { background: var(--black); text-decoration: none; }
.store-badge .sub { display: block; font-weight: 400; font-size: 0.72rem; opacity: 0.85; }
.store-badge svg { flex-shrink: 0; }

.hero-art {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.hero-art img {
  max-width: 300px;
  width: 100%;
}

/* Trust strip */
.trust-strip {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 720px) { .trust-grid { grid-template-columns: 1fr; gap: 28px; } }

.trust-item { display: flex; gap: 14px; align-items: flex-start; }
.trust-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
}
.trust-item h3 { margin-bottom: 0.3em; font-size: 1.02rem; }
.trust-item p { font-size: 0.94rem; margin: 0; }

/* Section generic */
.section { padding: 72px 0; }
.section-alt { background: var(--gray-light); }
.section-header { text-align: center; max-width: 620px; margin: 0 auto 44px; }

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 780px) { .steps { grid-template-columns: 1fr; } }

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: left;
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--green-deep);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 16px;
}
.step-card:nth-child(2) .step-num { background: var(--green-mid); }
.step-card:nth-child(3) .step-num { background: var(--green-bright); }
.step-card h3 { margin-bottom: 6px; }
.step-card p { font-size: 0.94rem; }

/* CTA band */
.cta-band {
  background: var(--green-dark);
  color: var(--white);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  margin: 0 24px;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.4em; }
.cta-band p { color: rgba(255,255,255,0.82); margin-bottom: 1.6em; }
.btn {
  display: inline-block;
  background: var(--green-bright);
  color: var(--white) !important;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 0.98rem;
}
.btn:hover { background: var(--green-light); color: var(--green-dark) !important; text-decoration: none; }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white) !important;
  padding: 12px 27px;
  border-radius: 999px;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.5);
  font-size: 0.98rem;
}
.btn-outline:hover { border-color: var(--white); text-decoration: none; }

/* Content pages (about/methodology/legal) */
.page-hero {
  padding: 56px 0 32px;
  border-bottom: 1px solid var(--border);
}
.page-hero .eyebrow { margin-bottom: 14px; }
.prose { max-width: 760px; }
.prose h2 { margin-top: 1.8em; }
.prose h3 { margin-top: 1.4em; color: var(--green-deep); }
.prose ul, .prose ol { color: var(--gray); padding-left: 1.3em; }
.prose li { margin-bottom: 0.5em; }
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 0.92rem;
}
.prose th, .prose td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  color: var(--gray);
}
.prose th { background: var(--gray-light); color: var(--green-dark); font-family: 'Poppins', sans-serif; }
.prose strong { color: var(--ink); }
.prose hr { border: none; border-top: 1px solid var(--border); margin: 2.4em 0; }
.legal-updated { color: var(--gray); font-size: 0.9rem; margin-bottom: 0; }

.callout {
  background: var(--gray-light);
  border-left: 4px solid var(--green-bright);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin: 1.6em 0;
  font-size: 0.94rem;
}
.callout p { color: var(--ink); margin: 0; }

.no-do-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 1.6em;
}
@media (max-width: 700px) { .no-do-grid { grid-template-columns: 1fr; } }

/* Support page */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 780px) { .support-grid { grid-template-columns: 1fr; } }
.support-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}
.support-card h3 { margin-bottom: 8px; }
.support-card a { font-weight: 600; word-break: break-word; }
.support-card p { font-size: 0.92rem; }

/* Newsletter / footer */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.85);
  padding: 56px 0 28px;
  margin-top: 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand img { width: 28px; height: 28px; }
.footer-brand span { font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--white); font-size: 1.1rem; }
.footer p { color: rgba(255,255,255,0.7); font-size: 0.92rem; }

.footer h4 {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; }
.footer a { color: rgba(255,255,255,0.75); font-size: 0.92rem; }
.footer a:hover { color: var(--white); }

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 380px;
  margin-top: 8px;
}
@media (max-width: 480px) { .newsletter-form { flex-direction: column; } }
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.94rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { outline: 2px solid var(--green-bright); }
.newsletter-form button {
  background: var(--green-bright);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--green-light); color: var(--green-dark); }
.form-note { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 8px; }
.form-success { color: var(--green-light); font-weight: 600; font-size: 0.94rem; margin-top: 8px; display: none; }
.form-error { color: #ffb3b3; font-weight: 600; font-size: 0.88rem; margin-top: 8px; display: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-legal-links { display: flex; gap: 18px; }
