:root {
  color-scheme: light;
  --ink: #17241f;
  --muted: #5f6f67;
  --paper: #f7f4ec;
  --card: #fffdf8;
  --line: #dce1d9;
  --green: #176b4d;
  --lime: #d9f36a;
  --shadow: 0 18px 45px rgba(22, 49, 38, .09);
}
* { 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; line-height: 1.65; }
a { color: var(--green); text-underline-offset: 3px; }
.nav, main, footer { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.nav { min-height: 80px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; gap: 10px; align-items: center; color: var(--ink); font-weight: 800; text-decoration: none; letter-spacing: -.02em; }
.brand img { border-radius: 9px; }
nav, footer div { display: flex; gap: 24px; }
nav a, footer a { color: var(--ink); font-size: .92rem; font-weight: 650; text-decoration: none; }
.hero { padding: clamp(76px, 12vw, 150px) 0 82px; max-width: 880px; }
.eyebrow { color: var(--green); font-size: .76rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
h1 { margin: .2em 0 .36em; font-size: clamp(3rem, 8vw, 6.4rem); line-height: .96; letter-spacing: -.065em; }
.lede { max-width: 760px; color: var(--muted); font-size: clamp(1.08rem, 2.2vw, 1.35rem); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-block; padding: 12px 18px; border: 1px solid var(--ink); border-radius: 999px; color: var(--ink); font-weight: 750; text-decoration: none; }
.button.primary { background: var(--ink); color: white; }
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.features article { min-height: 255px; padding: 26px; background: var(--card); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
.features span { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 50%; background: var(--lime); color: var(--ink); font-size: 1.35rem; }
h2 { margin: 1.2em 0 .35em; font-size: 1.35rem; line-height: 1.25; letter-spacing: -.025em; }
.features p, .note > p { color: var(--muted); }
.note { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-block: 100px; padding: clamp(28px, 5vw, 64px); background: var(--green); color: white; border-radius: 26px; }
.note .eyebrow { color: var(--lime); }
.note h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -.05em; }
.note > p { color: #e3eee9; font-size: 1.05rem; }
.policy { max-width: 780px; padding: 80px 0 100px; }
.policy h1 { font-size: clamp(3rem, 7vw, 5rem); }
.policy h2 { margin-top: 2.2em; }
.policy p:not(.eyebrow):not(.lede) { color: #39473f; }
footer { display: flex; justify-content: space-between; align-items: center; padding: 28px 0 48px; border-top: 1px solid var(--line); color: var(--muted); font-size: .88rem; }
@media (max-width: 820px) { .features { grid-template-columns: repeat(2, 1fr); } .note { grid-template-columns: 1fr; gap: 12px; } }
@media (max-width: 560px) { .nav { align-items: flex-start; padding: 18px 0; gap: 18px; } .nav, footer { flex-direction: column; } nav { gap: 14px; flex-wrap: wrap; } .hero { padding-top: 70px; } .features { grid-template-columns: 1fr; } .features article { min-height: 0; } footer { align-items: flex-start; } }
