:root {
  color-scheme: light;
  --ink: #10201a;
  --muted: #5f6d66;
  --line: #d9e4dd;
  --green: #006b54;
  --gold: #8a5a00;
  --blue: #1d5d8f;
  --bg: #fbfdf8;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--ink); background: var(--bg); }
a { color: var(--green); text-decoration: none; font-weight: 650; }
.site-header { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px clamp(18px, 5vw, 72px); border-bottom: 1px solid var(--line); }
.brand { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 800; }
.mark { width: 28px; height: 28px; border-radius: 50%; background: radial-gradient(circle at center, #f7fff8 0 18%, #74e3bc 19% 34%, #f6c557 35% 50%, #0b1511 51%); display: inline-block; }
nav { display: flex; gap: 18px; flex-wrap: wrap; }
.hero { min-height: 72vh; display: grid; grid-template-columns: minmax(0, 1fr) minmax(220px, 360px); align-items: center; gap: clamp(30px, 6vw, 80px); padding: clamp(34px, 7vw, 90px) clamp(18px, 5vw, 72px); }
.hero h1 { margin: 0; font-size: clamp(48px, 8vw, 96px); line-height: 1; letter-spacing: 0; }
.hero p { max-width: 650px; color: var(--muted); font-size: 18px; line-height: 1.6; }
.hero img { width: 100%; max-width: 360px; justify-self: center; border-radius: 32px; box-shadow: 0 22px 70px rgba(16, 32, 26, 0.16); }
.eyebrow { color: var(--gold) !important; font-weight: 800; text-transform: uppercase; letter-spacing: 0; }
.lede { font-size: 24px !important; color: var(--ink) !important; font-weight: 750; }
.features { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.features article { background: white; padding: 34px clamp(18px, 4vw, 42px); }
.features h2 { margin: 0 0 10px; }
.features p, .legal p { color: var(--muted); line-height: 1.65; }
.legal { max-width: 760px; padding: 56px 22px; margin: 0 auto; }
@media (max-width: 780px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero img { max-width: 220px; }
  .features { grid-template-columns: 1fr; }
}
