:root {
  --bg: #fafaf7;
  --surface: #ffffff;
  --surface-2: #f1efe8;
  --text: #1f1f1d;
  --muted: #6b6b66;
  --border: rgba(0,0,0,0.12);
  --green-bg: #e1f5ee;
  --green-tx: #0f6e56;
  --info-bg: #e6f1fb;
  --info-tx: #185fa5;
  --amber-bg: #faeeda;
  --amber-tx: #854f0b;
  --radius: 12px;
  --radius-sm: 8px;
  --maxw: 920px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.hidden { display: none; }
.muted { color: var(--muted); }
h1 { font-size: 32px; font-weight: 600; line-height: 1.2; margin: 0 0 12px; }
h2 { font-size: 22px; font-weight: 600; margin: 0; }
h3 { font-size: 16px; font-weight: 600; margin: 0 0 6px; }

/* nav */
.nav { position: sticky; top: 0; background: rgba(250,250,247,0.9); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); z-index: 10; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 60px; }
.brand { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 18px; color: var(--text); text-decoration: none; }
.brand-mark { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 7px; background: var(--green-bg); color: var(--green-tx); font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 18px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; }
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); font-weight: 500; }
.nav-links a.btn-primary, .nav-links a.btn-primary:hover { color: #fff; }
.lang-switch { display: inline-flex; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.lang-switch button { border: 0; background: var(--surface); color: var(--muted); font-size: 12px; font-weight: 500; padding: 5px 9px; cursor: pointer; }
.lang-switch button:hover { background: var(--surface-2); }
.lang-switch button.active { background: var(--green-tx); color: #fff; }

/* sections */
.view { padding: 40px 0 60px; }
.hero { text-align: left; }
.lead { font-size: 18px; color: var(--muted); max-width: 600px; margin: 0 0 24px; }
.lead-sm { font-size: 15px; margin: 0 0 20px; }
.row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 16px; }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 9px 16px; border-radius: var(--radius-sm); border: 1px solid var(--border); background: var(--surface); color: var(--text); font-size: 14px; cursor: pointer; text-decoration: none; transition: .12s; }
.btn:hover { background: var(--surface-2); }
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--green-tx); color: #fff; border-color: var(--green-tx); }
.btn-primary:hover { background: #0c5b47; }
.btn-sm { padding: 6px 12px; font-size: 13px; }
.btn-block { width: 100%; margin-top: 14px; }

/* cards & grid */
.grid { display: grid; gap: 14px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; }
.card p { color: var(--muted); font-size: 14px; margin: 0 0 8px; }
.pillars { margin-top: 8px; }
.ic { display: inline-block; width: 22px; height: 22px; margin-bottom: 6px; }

/* pills */
.pill { display: inline-block; font-size: 11px; padding: 2px 9px; border-radius: 6px; }
.pill-green { background: var(--green-bg); color: var(--green-tx); }
.pill-info { background: var(--info-bg); color: var(--info-tx); }
.pill-amber { background: var(--amber-bg); color: var(--amber-tx); }

/* controls */
.controls { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.controls input, .controls select { padding: 9px 12px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; background: var(--surface); color: var(--text); }
.controls input { flex: 1; min-width: 200px; }

/* funding list */
.list { display: flex; flex-direction: column; gap: 10px; }
.fund-item { display: flex; align-items: center; justify-content: space-between; gap: 14px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 18px; }
.fund-item h4 { margin: 0 0 4px; font-size: 15px; font-weight: 500; }
.fund-meta { font-size: 13px; color: var(--muted); }

/* founder cards */
.founder { position: relative; }
.founder .top { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--green-bg); color: var(--green-tx); display: flex; align-items: center; justify-content: center; font-weight: 600; flex-shrink: 0; }
.founder .stats { display: flex; gap: 18px; margin: 10px 0; }
.founder .stat .k { font-size: 12px; color: var(--muted); }
.founder .stat .v { font-size: 15px; font-weight: 500; }
.verified { color: var(--info-tx); font-size: 13px; }

/* pricing */
.price { display: flex; flex-direction: column; }
.price ul { margin: 8px 0 0; padding-left: 18px; color: var(--muted); font-size: 14px; }
.price li { margin-bottom: 4px; }
.price .amount { font-size: 26px; font-weight: 600; color: var(--text); margin: 4px 0 8px; }
.price .amount span { font-size: 14px; font-weight: 400; color: var(--muted); }
.price .btn-block { margin-top: auto; }
.featured { border: 2px solid var(--info-tx); position: relative; }
.ribbon { position: absolute; top: -11px; left: 16px; font-size: 11px; background: var(--info-bg); color: var(--info-tx); padding: 3px 10px; border-radius: 6px; }

/* mission / vision */
.mission { background: var(--green-bg); border-radius: var(--radius); padding: 28px 28px 24px; margin-top: 32px; }
.mission h2 { margin: 12px 0 10px; color: var(--green-tx); }
.mission p { font-size: 16px; color: #114e3f; margin: 0 0 12px; max-width: 640px; }
.mission em { font-style: normal; background: rgba(15,110,86,0.12); padding: 0 4px; border-radius: 3px; }
.mvg { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-top: 18px; }
.mvg > div { background: var(--surface); border-radius: var(--radius-sm); padding: 14px 16px; }
.mvg .k { font-size: 12px; font-weight: 500; color: var(--green-tx); text-transform: uppercase; letter-spacing: .04em; }
.mvg p { font-size: 14px; color: var(--text); margin: 4px 0 0; }

/* capture / lead forms */
.capture { margin-top: 28px; }
.capture h3 { margin-bottom: 4px; }
.lead-form { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.lead-form input, .lead-form select { padding: 9px 12px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; background: var(--surface); color: var(--text); }
.lead-form input[type="email"], .lead-form input[type="text"] { flex: 1; min-width: 180px; }
.lead-form .btn { white-space: nowrap; }
.form-msg { font-size: 13px; margin: 10px 0 0; min-height: 18px; }
.form-msg.ok { color: var(--green-tx); }
.fund-meta a { color: var(--info-tx); text-decoration: none; }
.fund-meta a:hover { text-decoration: underline; }
.fund-note { font-size: 12px; color: var(--muted); margin-top: 4px; }
.fund-left { min-width: 0; flex: 1; }

/* footer */
.foot { border-top: 1px solid var(--border); padding: 24px 0; margin-top: 20px; font-size: 13px; }
.foot .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

@media (max-width: 560px) {
  h1 { font-size: 26px; }
  .nav-links a:not(.btn) { display: none; }
}
