:root {
  color-scheme: light;
  --ink: #14201d;
  --muted: #52615c;
  --paper: #f7faf8;
  --white: #ffffff;
  --green: #0d6b50;
  --green-dark: #084a39;
  --amber: #f2b544;
  --line: #d8e1dc;
  --shadow: 0 20px 60px rgba(13, 46, 36, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

a { color: inherit; }

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  color: var(--white);
}

.site-header.solid {
  position: static;
  background: var(--green-dark);
}

.nav {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  font-weight: 750;
  text-decoration: none;
}

.brand img { width: 34px; height: 34px; }

.brand small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
}

.nav-links { display: flex; align-items: center; gap: 24px; }

.nav-links a {
  color: inherit;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible { text-decoration: underline; text-underline-offset: 5px; }

.hero {
  position: relative;
  min-height: min(760px, 88vh);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #123b31 url("product-results.png") center/cover no-repeat;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 35, 27, 0.96) 0%, rgba(5, 35, 27, 0.84) 42%, rgba(5, 35, 27, 0.24) 76%, rgba(5, 35, 27, 0.08) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 40px));
  margin: 76px auto 0;
  padding: 72px 0 92px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #cbeade;
  font-size: 14px;
  font-weight: 750;
  text-transform: uppercase;
}
.eyebrow.green { color: var(--green); }

h1, h2, h3 { margin-top: 0; line-height: 1.14; letter-spacing: 0; }

h1 { max-width: 740px; margin-bottom: 22px; font-size: clamp(48px, 7vw, 84px); }

.hero-copy { max-width: 650px; margin: 0 0 30px; color: #e2f0eb; font-size: 20px; }

.actions { display: flex; flex-wrap: wrap; gap: 12px; }

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--amber);
  color: #2d240f;
  font-weight: 750;
  text-decoration: none;
}

.button.secondary { border-color: rgba(255,255,255,0.56); background: rgba(5, 35, 27, 0.34); color: var(--white); }

.button:hover,
.button:focus-visible { transform: translateY(-1px); box-shadow: 0 7px 22px rgba(0,0,0,0.2); }

.proof-band { background: var(--green-dark); color: var(--white); }

.proof-grid {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-item { padding: 25px 28px; border-left: 1px solid rgba(255,255,255,0.15); }
.proof-item:last-child { border-right: 1px solid rgba(255,255,255,0.15); }
.proof-item strong { display: block; font-size: 17px; }
.proof-item span { color: #bdd6cd; font-size: 14px; }

.section { padding: 84px 0; }
.section.white { background: var(--white); }

.wrap { width: min(1080px, calc(100% - 40px)); margin: 0 auto; }

.section-heading { max-width: 720px; margin-bottom: 42px; }
.section-heading h2 { margin-bottom: 14px; font-size: clamp(32px, 4vw, 50px); }
.section-heading p { margin: 0; color: var(--muted); font-size: 18px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.step { min-height: 220px; padding: 28px; background: var(--white); }
.step-number { color: var(--green); font-size: 14px; font-weight: 800; }
.step h3 { margin: 28px 0 10px; font-size: 23px; }
.step p { margin: 0; color: var(--muted); }

.product-shot { border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); overflow: hidden; }

.privacy-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.privacy-grid h2 { font-size: clamp(32px, 4vw, 48px); }
.checks { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.checks li { padding: 18px 0 18px 34px; border-bottom: 1px solid var(--line); position: relative; }
.checks li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }

.legal { max-width: 820px; }
.legal h1 { margin: 0 0 16px; font-size: clamp(38px, 5vw, 62px); }
.legal h2 { margin: 46px 0 10px; font-size: 25px; }
.legal h3 { margin: 28px 0 8px; font-size: 19px; }
.legal p, .legal li { color: #34443f; }
.legal .updated { color: var(--muted); }
.callout { margin: 30px 0; padding: 22px 24px; border-left: 4px solid var(--green); background: #e8f3ef; }

.support-options { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; }
.support-box { padding: 30px; border: 1px solid var(--line); background: var(--white); }
.support-box h2 { font-size: 25px; }
.support-box p { color: var(--muted); }
.support-box .button { background: var(--green); color: var(--white); }

.footer { padding: 34px 0; background: #102820; color: #d7e4df; }
.footer-inner { width: min(1080px, calc(100% - 40px)); margin: 0 auto; display: flex; justify-content: space-between; gap: 24px; }
.footer a { color: inherit; }

@media (max-width: 760px) {
  .nav { min-height: 68px; }
  .nav-links a:first-child { display: none; }
  .hero { min-height: 720px; background-position: 64% center; }
  .hero::before { background: rgba(5, 35, 27, 0.84); }
  .hero-inner { padding-top: 88px; }
  h1 { font-size: 48px; }
  .proof-grid, .steps, .privacy-grid, .support-options { grid-template-columns: 1fr; }
  .proof-item, .proof-item:last-child { border: 0; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .section { padding: 62px 0; }
  .footer-inner { flex-direction: column; }
}

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