@font-face {
  font-family: "Manrope"; font-style: normal; font-weight: 400; font-display: swap;
  src: url("/assets/fonts/manrope-400.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope"; font-style: normal; font-weight: 500; font-display: swap;
  src: url("/assets/fonts/manrope-500.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope"; font-style: normal; font-weight: 600; font-display: swap;
  src: url("/assets/fonts/manrope-600.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope"; font-style: normal; font-weight: 700; font-display: swap;
  src: url("/assets/fonts/manrope-700.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat"; font-style: normal; font-weight: 600; font-display: swap;
  src: url("/assets/fonts/montserrat-600.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat"; font-style: normal; font-weight: 700; font-display: swap;
  src: url("/assets/fonts/montserrat-700.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat"; font-style: normal; font-weight: 800; font-display: swap;
  src: url("/assets/fonts/montserrat-800.woff2") format("woff2");
}

:root {
  --dark: #080d04;        /* brand near-black green */
  --dark-2: #0d1407;
  --cream: #eef3e2;       /* brand light */
  --lime: #aee80c;        /* brand accent */
  --ink: #161c0d;         /* body text on light */
  --muted: #5d6753;       /* muted green-grey */
  --muted-light: #8f9a82;
  --link: #3c6a00;        /* readable green link on white */
  --border: #e2e7d6;
  --border-dark: #223016;
  --bg: #ffffff;
  --max: 760px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex; flex-direction: column;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 48px 24px 100px; }
main.wrap { flex: 1; width: 100%; }

/* Header */
header.site { background: var(--dark); }
header.site .wrap {
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand {
  font-family: "Montserrat", sans-serif;
  font-weight: 800; letter-spacing: -0.02em;
  text-decoration: none; color: #fff; font-size: 20px;
  display: inline-flex; align-items: center;
}
.brand img { width: 26px; height: 26px; border-radius: 7px; display: block; margin-right: 10px; }
.brand .dot { color: var(--lime); }
.brand .sub { color: var(--muted-light); font-weight: 600; font-size: 13px; margin-left: 6px; letter-spacing: 0; }

nav.lang { display: flex; gap: 4px; background: rgba(255,255,255,.06); padding: 4px; border-radius: 100px; }
nav.lang a {
  text-decoration: none; color: var(--muted-light); font-size: 13px; font-weight: 600;
  padding: 5px 12px; border-radius: 100px; line-height: 1;
}
nav.lang a[aria-current="true"] { color: var(--dark); background: var(--lime); }

/* Typography */
h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 34px; font-weight: 800; line-height: 1.15; letter-spacing: -0.02em;
  margin: 8px 0 6px;
}
.updated { color: var(--muted); font-size: 14px; margin: 0 0 40px; font-weight: 500; }

h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 21px; font-weight: 700; letter-spacing: -0.01em;
  margin: 44px 0 12px; padding-left: 16px; position: relative;
}
h2::before {
  content: ""; position: absolute; left: 0; top: calc(.85em - 3px);
  width: 6px; height: 6px; border-radius: 2px; background: var(--lime);
  transform: rotate(45deg);
}
h3 { font-family: "Montserrat", sans-serif; font-size: 16px; font-weight: 700; margin: 28px 0 8px; }

p, li { color: #2b3122; }
a { color: var(--link); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: #2c4f00; }

/* chrome links must not inherit the prose-link hover color */
.brand, .brand:hover { color: #fff; text-decoration: none; }
nav.lang a:hover { color: #fff; }
nav.lang a[aria-current="true"], nav.lang a[aria-current="true"]:hover { color: var(--dark); }
.home-links a, .home-links a:hover { color: var(--ink); text-decoration: none; }

ul { padding-left: 22px; }
li { margin: 7px 0; }
.lead { font-size: 19px; color: var(--ink); line-height: 1.6; }

/* Cards & tables */
.card {
  border: 1px solid var(--border); border-radius: 14px;
  padding: 20px 22px; margin: 20px 0; background: var(--cream);
}
table.data { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 15px; }
table.data th, table.data td {
  text-align: left; vertical-align: top; padding: 11px 13px; border: 1px solid var(--border);
}
table.data th { background: var(--cream); font-weight: 700; font-family: "Montserrat", sans-serif; }

/* Home landing links */
.home-links { list-style: none; padding: 0; }
.home-links li { margin: 14px 0; }
.home-links a {
  display: block; border: 1px solid var(--border); border-radius: 14px;
  padding: 18px 20px; text-decoration: none; color: var(--ink);
  transition: border-color .15s, transform .15s;
}
.home-links a:hover { border-color: var(--lime); transform: translateY(-1px); }
.home-links a strong { font-family: "Montserrat", sans-serif; font-weight: 700; }
.home-links .desc { color: var(--muted); font-size: 14px; display: block; margin-top: 3px; }

/* Footer */
footer.site { background: var(--dark); color: #aab59a; font-size: 14px; }
footer.site .wrap {
  padding: 30px 24px 40px; display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between;
}
footer.site a { color: #aab59a; text-decoration: none; }
footer.site a:hover { color: var(--lime); }
