:root {
  color-scheme: light;
  --ink: #123b2d;
  --muted: #52655c;
  --green: #103e2e;
  --green-deep: #092f22;
  --lime: #d1f66f;
  --paper: #fff;
  --soft: #f3f6f2;
  --line: #dce5dc;
  --container: 1200px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body { margin: 0; color: var(--ink); background: var(--paper); font: 16px/1.6 Inter, system-ui, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4, p { margin: 0; }
h1, h2, h3, h4 { line-height: 1.15; }
h2 { font-size: clamp(2rem, 3.6vw, 3.2rem); letter-spacing: -.05em; font-weight: 600; }
h3 { font-size: 1.35rem; letter-spacing: -.035em; }
.container { width: min(var(--container), calc(100% - 96px)); margin-inline: auto; }
.section { padding-block: 80px; }
.kicker, .eyebrow { font-size: .75rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; margin-bottom: 18px; }
.kicker { color: var(--muted); }
:focus-visible { outline: 3px solid #176744; outline-offset: 5px; }
.hero :focus-visible, .final-cta :focus-visible { outline-color: var(--lime); }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 100; padding: 12px 20px; background: var(--lime); color: var(--ink); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
.topbar { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--line); }
.topbar-inner { width: min(var(--container), calc(100% - 96px)); min-height: 80px; margin-inline: auto; display: flex; gap: 32px; align-items: center; }
.brand { font-size: 32px; font-weight: 800; letter-spacing: -.07em; line-height: 1; white-space: nowrap; }
.brand > span { color: #26764a; }
.brand small { font-size: 22px; font-weight: 500; letter-spacing: -.04em; }
.nav-links { display: flex; align-items: center; gap: 30px; margin-left: auto; font-size: .84rem; font-weight: 600; }
.nav-links > a:not(.button):hover, .footer a:hover { text-decoration: underline; text-underline-offset: 5px; }
.nav-actions { order: 2; display: flex; align-items: center; gap: 16px; }
.lang-switch { display: inline-flex; border: 1px solid var(--line); border-radius: 30px; padding: 3px; }
.lang-switch button { border: 0; border-radius: 22px; background: transparent; color: var(--muted); min-width: 40px; min-height: 36px; font-size: .72rem; font-weight: 700; }
.lang-switch button[aria-pressed="true"] { color: white; background: var(--green); }
.menu-toggle { display: none; min-height: 44px; padding: 8px 14px; border: 1px solid var(--line); border-radius: 8px; background: white; color: var(--ink); font-size: .85rem; font-weight: 600; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 20px; min-height: 50px; padding: 12px 22px; border-radius: 8px; font-size: .875rem; font-weight: 600; line-height: 1.5; }
.button-primary { color: var(--green-deep); background: var(--lime); border: 1px solid var(--lime); }
.button-primary::after, .text-link::after { content: '↗'; font-size: 1.2em; }
.button-primary:hover { background: #dffc9a; border-color: #dffc9a; }
.button-line { border: 1px solid #749484; color: white; }
.button-line:hover { background: #22513d; }
.text-link { display: inline-flex; gap: 20px; align-items: center; font-size: .9rem; font-weight: 600; padding-block: 12px; border-bottom: 1px solid var(--ink); }
.footer { padding-block: 44px; display: flex; justify-content: space-between; align-items: center; gap: 32px; font-size: .8rem; color: var(--muted); }
.footer .brand { display: inline-block; color: var(--ink); margin-bottom: 14px; }
.footer nav { display: flex; flex-wrap: wrap; gap: 24px; }
.footer p { margin-bottom: 4px; }
.footer > div > a:not(.brand) { text-decoration: underline; text-underline-offset: 3px; }
