/* Sprout's own palette, taken from lib/core/theme/app_colors.dart so the site
   and the app are recognisably the same product. */
:root {
  --bg: #F2F9F4;
  --surface: #FFFFFF;
  --surface-2: #E6F7EC;
  --text: #0F2C1D;
  --muted: #5C7B6A;
  --accent: #17984E;
  --accent-2: #34C36B;
  --border: #DCEBE2;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0C1711;
    --surface: #14231A;
    --surface-2: #1A2E22;
    --text: #EAF5EE;
    --muted: #9BB3A6;
    --accent: #34C36B;
    --accent-2: #3FD07A;
    --border: #223A2B;
  }
}
* { box-sizing: border-box; }
html, body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 22px 80px;
}
header.top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 26px;
}
header.top .brand {
  font-weight: 800;
  letter-spacing: -0.3px;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
header.top .brand a {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.logo {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent) 100%);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 15px; font-weight: 800;
  box-shadow: 0 4px 14px rgba(52, 195, 107, 0.35);
}
.hero {
  margin: 8px 0 28px;
  padding: 28px 24px;
  background: linear-gradient(135deg, rgba(52,195,107,0.14) 0%, rgba(52,195,107,0.02) 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
}
h1 { font-size: 34px; letter-spacing: -0.7px; margin: 0 0 6px; line-height: 1.14; }
.updated { color: var(--muted); font-size: 14px; margin: 0; }
h2 { font-size: 20px; margin: 32px 0 10px; letter-spacing: -0.2px; }
h3 { font-size: 16px; margin: 22px 0 6px; }
p, li { font-size: 15.5px; color: var(--text); }
a { color: var(--accent); }
ul { padding-left: 22px; }
.contact {
  margin-top: 36px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.callout {
  margin: 20px 0;
  padding: 18px 20px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent-2);
  border-radius: 12px;
}
.callout p:first-child { margin-top: 0; }
.callout p:last-child { margin-bottom: 0; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 16px 0 8px;
}
.feature {
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 14.5px;
}
.feature .ic { color: var(--accent); margin-right: 6px; }
table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 14.5px; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
th { color: var(--muted); font-weight: 700; }
@media (max-width: 540px) {
  .feature-grid { grid-template-columns: 1fr; }
  h1 { font-size: 28px; }
  table, thead, tbody, th, td, tr { display: block; }
  th { display: none; }
  td { border: none; padding: 2px 0; }
  tr { padding: 12px 0; border-bottom: 1px solid var(--border); }
}
footer {
  margin-top: 48px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--accent); }
