:root {
  --bg: #f4f7f4;
  --panel: rgba(255, 255, 255, 0.96);
  --ink: #143327;
  --muted: #567264;
  --line: rgba(20, 51, 39, 0.12);
  --brand: #00c26f;
  --brand-dark: #007f4a;
  --accent: #d9f9e9;
  --shadow: 0 24px 70px rgba(28, 74, 52, 0.1);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(0, 194, 111, 0.18), transparent 24%),
    radial-gradient(circle at 95% 5%, rgba(133, 239, 184, 0.22), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}
a { color: inherit; text-decoration: none; }
.topbar {
  text-align: center;
  padding: 10px 16px;
  background: #eefcf4;
  border-bottom: 1px solid rgba(0, 127, 74, 0.08);
  color: var(--brand-dark);
  font-size: 0.92rem;
}
.site-header, .page { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}
.brand {
  font-size: 1.35rem;
  font-weight: 800;
}
.nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}
.nav a {
  color: var(--muted);
}
.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: white !important;
}
.page { padding-bottom: 64px; }
.hero, .panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
}
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  padding: 52px;
  margin-top: 12px;
  overflow: hidden;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.hero-input {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 24px;
  background: #f7faf8;
  border: 1px solid var(--line);
}
.role-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.role-pills a {
  padding: 10px 14px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  color: var(--ink);
}
.hero-visual {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
}
.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
}
.orb-one {
  width: 280px;
  height: 280px;
  top: 0;
  right: 40px;
  background: radial-gradient(circle at 30% 30%, #c4ffd8, #00c26f);
}
.orb-two {
  width: 180px;
  height: 180px;
  bottom: 16px;
  left: 20px;
  background: radial-gradient(circle at 30% 30%, #ffffff, #98f5bf);
}
.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-dark);
}
h1, h2, h3 { margin-top: 0; }
h1 { font-size: clamp(2.8rem, 4.8vw, 5rem); line-height: 0.95; margin-bottom: 18px; letter-spacing: -0.04em; }
h2 { font-size: 2.25rem; margin-bottom: 18px; letter-spacing: -0.03em; }
p { color: var(--muted); line-height: 1.6; }
.actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 20px;
  border: 1px solid rgba(20, 51, 39, 0.14);
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}
.button.primary { background: var(--ink); color: #fff; border-color: var(--ink); }
.button.secondary { background: white; color: var(--ink); }
.button.small { padding: 8px 14px; font-size: 0.92rem; }
.stat-grid, .metric-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}
.stat-grid article, .metric-cards article {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
}
.stat-grid strong, .metric-cards strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 8px;
}
.feature-grid, .program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.feature-grid article, .program-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
}
.panel { padding: 34px; margin-top: 24px; }
.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}
.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 194, 111, 0.12);
  color: var(--brand-dark);
  font-size: 0.82rem;
  margin-bottom: 10px;
}
.trust-band {
  width: min(1120px, calc(100% - 32px));
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}
.trust-band span {
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 14px;
  text-align: center;
}
.impact .wide {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.metric-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}
.split { margin: 18px 0; }
.flash-stack { margin: 16px 0; display: grid; gap: 10px; }
.flash {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}
.flash.success { border-color: rgba(15, 118, 110, 0.3); }
.flash.error { border-color: rgba(143, 45, 28, 0.35); }
.form-shell { display: flex; justify-content: center; margin-top: 24px; }
.form-card { width: min(760px, 100%); }
form { display: grid; gap: 16px; }
label { display: grid; gap: 8px; font-weight: 600; }
input, select, textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  font: inherit;
  background: rgba(255, 255, 255, 0.92);
}
.two-col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 14px 10px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.decision-row { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-bar {
  display: grid;
  grid-template-columns: 1fr 220px auto;
  gap: 12px;
  margin-bottom: 20px;
}
.terms, .sub-panel {
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}
@media (max-width: 780px) {
  .hero, .two-col, .filter-bar, .trust-band {
    grid-template-columns: 1fr;
  }
  h1 { font-size: 2.4rem; }
  .hero {
    padding: 32px 22px;
  }
  .panel {
    padding: 24px;
  }
}
