:root {
  color-scheme: light;
  --ink: #142219;
  --muted: #637169;
  --line: #dce6df;
  --paper: #ffffff;
  --soft: #f3f7f4;
  --brand: #176b45;
  --brand-dark: #0e5133;
  --brand-soft: #e7f5ed;
  --shadow: 0 24px 70px rgba(20, 57, 36, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fbfcfb;
  font: 16px/1.65 Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--brand); }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); text-decoration: none; font-weight: 800; letter-spacing: -.02em; }
.brand-mark { width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center; color: white; background: var(--brand); box-shadow: 0 8px 20px rgba(23,107,69,.22); }
.links { display: flex; align-items: center; gap: 24px; }
.links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 650; }
.links a:hover { color: var(--ink); }
.hero { padding: 90px 0 104px; background: radial-gradient(circle at 78% 12%, #def1e7 0, rgba(222,241,231,0) 31%), linear-gradient(180deg,#f8fbf9 0%,#fff 100%); border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 72px; align-items: center; }
.eyebrow { color: var(--brand); font-size: 12px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
h1 { max-width: 700px; margin: 14px 0 20px; font-size: clamp(44px, 6.3vw, 76px); line-height: .98; letter-spacing: -.062em; }
.lede { max-width: 620px; margin: 0; color: var(--muted); font-size: 19px; }
.actions { display: flex; align-items: center; gap: 13px; margin-top: 32px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 0 20px; border-radius: 12px; text-decoration: none; font-size: 14px; font-weight: 800; }
.button.primary { color: white; background: var(--brand); box-shadow: 0 10px 22px rgba(23,107,69,.20); }
.button.primary:hover { background: var(--brand-dark); }
.button.secondary { color: var(--ink); background: white; border: 1px solid var(--line); }
.product-card { padding: 18px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.84); box-shadow: var(--shadow); backdrop-filter: blur(12px); transform: rotate(1.2deg); }
.product-top { display: flex; align-items: center; justify-content: space-between; padding: 6px 4px 18px; }
.product-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.pill { padding: 5px 10px; border: 1px solid #b7ddc8; border-radius: 999px; color: var(--brand); background: var(--brand-soft); font-size: 12px; font-weight: 800; }
.mini-card { margin-top: 10px; padding: 16px; border: 1px solid var(--line); border-radius: 15px; background: white; }
.mini-card small { color: var(--brand); font-weight: 800; }
.mini-card strong { display: block; margin-top: 4px; }
.mini-row { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 12px; color: var(--muted); font-size: 13px; }
.mini-row b { color: var(--ink); }
.section { padding: 92px 0; }
.section.soft { background: var(--soft); border-block: 1px solid var(--line); }
.section-head { max-width: 680px; margin-bottom: 42px; }
h2 { margin: 8px 0 12px; font-size: clamp(30px, 4vw, 46px); line-height: 1.08; letter-spacing: -.045em; }
.section-head p, .copy p, .copy li { color: var(--muted); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature { padding: 26px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.feature-number { color: var(--brand); font-size: 12px; font-weight: 850; }
.feature h3 { margin: 18px 0 8px; font-size: 19px; letter-spacing: -.02em; }
.feature p { margin: 0; color: var(--muted); font-size: 14px; }
.trust { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.trust-list { display: grid; gap: 12px; }
.trust-item { display: flex; gap: 12px; padding: 15px 17px; border-radius: 14px; background: white; border: 1px solid var(--line); }
.trust-item span { color: var(--brand); font-weight: 900; }
.trust-item p { margin: 0; color: var(--muted); font-size: 14px; }
.page-head { padding: 72px 0 46px; border-bottom: 1px solid var(--line); background: var(--soft); }
.page-head h1 { margin-bottom: 10px; font-size: clamp(40px, 6vw, 62px); }
.page-head p { max-width: 680px; color: var(--muted); }
.copy { max-width: 780px; padding: 64px 0 90px; }
.copy h2 { margin-top: 40px; font-size: 25px; letter-spacing: -.025em; }
.copy h3 { margin-top: 28px; font-size: 18px; }
.copy ul, .copy ol { padding-left: 22px; }
.notice { padding: 18px 20px; border: 1px solid #bddfca; border-radius: 14px; color: #315b44; background: var(--brand-soft); }
.footer { padding: 32px 0; border-top: 1px solid var(--line); background: white; }
.footer-row { display: flex; justify-content: space-between; gap: 28px; color: var(--muted); font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer a { color: var(--muted); text-decoration: none; }

@media (max-width: 800px) {
  .hero { padding: 62px 0 76px; }
  .hero-grid, .trust { grid-template-columns: 1fr; gap: 44px; }
  .product-card { transform: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .links a:not(:last-child) { display: none; }
}
@media (max-width: 520px) {
  .wrap { width: min(100% - 26px, 1120px); }
  .actions, .footer-row { align-items: stretch; flex-direction: column; }
  h1 { font-size: 45px; }
}
