:root {
  color-scheme: light;
  --ink: #152019;
  --muted: #667069;
  --line: rgba(21, 32, 25, 0.12);
  --cream: #f6f5ed;
  --sage: #dce8d7;
  --green: #285d3a;
  --white: #ffffff;
  --radius: 2rem;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  font-synthesis: none;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); -webkit-font-smoothing: antialiased; }
a { color: inherit; }
img { max-width: 100%; }
.site-header, main, footer { width: min(100% - 3rem, 1120px); margin-inline: auto; }
.site-header { min-height: 5rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: .75rem; color: inherit; text-decoration: none; font-weight: 720; letter-spacing: -.03em; }
.brand img { width: 2rem; height: 2rem; object-fit: contain; }
nav { display: flex; align-items: center; gap: 1.25rem; }
nav a, .footer-links a { color: var(--muted); text-decoration: none; font-size: .92rem; }
nav a:hover, .footer-links a:hover { color: var(--ink); }
.hero { min-height: min(760px, calc(100svh - 5rem)); display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 4rem; padding: 6rem 0; }
.eyebrow { margin: 0 0 1.25rem; color: var(--green); font-size: .8rem; font-weight: 720; letter-spacing: .13em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; letter-spacing: -.055em; text-wrap: balance; }
h1 { max-width: 760px; font-size: clamp(4rem, 8.5vw, 7.7rem); line-height: .92; font-weight: 680; }
.hero-copy { max-width: 590px; margin: 2rem 0 0; color: var(--muted); font-size: clamp(1.12rem, 2vw, 1.42rem); line-height: 1.5; letter-spacing: -.02em; }
.hero-art { min-height: 520px; display: grid; place-items: center; border-radius: var(--radius); background: var(--green); overflow: hidden; }
.hero-art img { width: 78%; max-height: 330px; object-fit: contain; }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; padding: 1rem 0 7rem; }
.feature { min-height: 260px; padding: 2rem; border: 1px solid var(--line); border-radius: 1.5rem; background: rgba(255,255,255,.48); }
.feature-number { display: block; margin-bottom: 4.5rem; color: var(--green); font-size: .78rem; font-weight: 720; letter-spacing: .1em; }
.feature h2 { margin-bottom: .75rem; font-size: 1.7rem; font-weight: 650; }
.feature p { margin: 0; color: var(--muted); line-height: 1.55; }
.trust { margin-bottom: 7rem; padding: clamp(2rem, 6vw, 5rem); border-radius: var(--radius); color: var(--white); background: var(--ink); }
.trust h2 { max-width: 780px; font-size: clamp(2.7rem, 6vw, 5.3rem); line-height: .98; font-weight: 650; }
.trust p { max-width: 650px; margin: 1.5rem 0 0; color: rgba(255,255,255,.68); font-size: 1.08rem; line-height: 1.6; }
.trust a { color: var(--white); }
.legal { width: min(100% - 3rem, 800px); margin-inline: auto; padding: 6rem 0 8rem; }
.legal-header { padding-bottom: 3.5rem; border-bottom: 1px solid var(--line); }
.legal h1 { max-width: 700px; font-size: clamp(3.5rem, 8vw, 6.4rem); }
.updated { margin: 1.5rem 0 0; color: var(--muted); }
.legal article { padding-top: 2.5rem; }
.legal section { margin: 0 0 2.5rem; }
.legal h2 { margin-bottom: .8rem; font-size: 1.65rem; font-weight: 650; }
.legal p, .legal li { color: #4f5952; font-size: 1rem; line-height: 1.7; }
.legal ul { padding-left: 1.25rem; }
.legal strong { color: var(--ink); }
.legal a { color: var(--green); text-underline-offset: 3px; }
footer { min-height: 190px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; border-top: 1px solid var(--line); }
footer p { color: var(--muted); font-size: .84rem; }
.footer-links { display: flex; gap: 1rem; }
:focus-visible { outline: 3px solid rgba(40,93,58,.35); outline-offset: 4px; }
@media (max-width: 760px) {
  .site-header, main, footer { width: min(100% - 2rem, 1120px); }
  nav a:first-child { display: none; }
  .hero { grid-template-columns: 1fr; gap: 2.5rem; padding: 4.5rem 0; }
  .hero-art { min-height: 360px; order: -1; }
  h1 { font-size: clamp(3.7rem, 17vw, 6rem); }
  .features { grid-template-columns: 1fr; padding-bottom: 5rem; }
  .feature { min-height: 220px; }
  .feature-number { margin-bottom: 3rem; }
  .trust { margin-bottom: 5rem; }
  .legal { width: min(100% - 2rem, 800px); padding-top: 4rem; }
  footer { padding: 2.5rem 0; align-items: flex-start; flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
