:root {
  --kg: #2D7A3A;
  --kg-light: #EAF5EC;
  --kg-dark: #1a4d22;
  --navy: #2C3E6B;
  --navy-light: #F0F3F9;
  --text-primary: #1a1a1a;
  --text-secondary: #5a5a5a;
  --border: #e5e5e5;
  --bg: #ffffff;
  --bg-secondary: #f7f7f5;
  --radius-md: 8px;
  --radius-lg: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: var(--text-primary);
  background: var(--bg);
  line-height: 1.6;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  border-bottom: 0.5px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.nav-logo-mark {
  display: block;
  height: 42px;
  width: auto;
}
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-size: 14px; color: var(--text-secondary); text-decoration: none; }
.nav-links a:hover { color: var(--text-primary); }
.nav-cta { color: var(--kg) !important; font-weight: 500 !important; }

/* HERO */
.hero { padding: 5rem 2rem 4rem; max-width: 860px; margin: 0 auto; }
.hero h1 { font-size: 48px; font-weight: 500; line-height: 1.15; color: var(--text-primary); margin-bottom: 1.25rem; letter-spacing: -1px; }
.hero h1 span { color: var(--kg); }
.hero p { font-size: 18px; color: var(--text-secondary); line-height: 1.7; max-width: 560px; margin-bottom: 2rem; }
.cta-btn { display: inline-block; background: var(--navy); color: white; padding: 0.75rem 1.75rem; border-radius: var(--radius-md); font-size: 15px; text-decoration: none; font-weight: 500; }
.cta-btn:hover { background: #1e2d54; }

/* SHARED */
.section { padding: 4rem 2rem; max-width: 860px; margin: 0 auto; }
.divider { border: none; border-top: 0.5px solid var(--border); margin: 0 2rem; }
.section-label { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 1.5px; color: var(--kg); margin-bottom: 1rem; }
.section h2 { font-size: 32px; font-weight: 500; color: var(--text-primary); margin-bottom: 1rem; letter-spacing: -0.5px; line-height: 1.2; }
.section p.lead { font-size: 17px; color: var(--text-secondary); line-height: 1.7; max-width: 600px; margin-bottom: 2.5rem; }

/* PROBLEMS */
.problems-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.problem-card { background: var(--bg); border: 0.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem; }
.problem-card .icon { font-size: 20px; color: var(--kg); margin-bottom: 0.75rem; }
.problem-card h3 { font-size: 15px; font-weight: 500; color: var(--text-primary); margin-bottom: 0.4rem; }
.problem-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* AREAS */
.areas-list { display: flex; flex-direction: column; gap: 1.25rem; }
.area-item {
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.area-item:hover { border-color: rgba(45, 122, 58, 0.25); box-shadow: 0 4px 18px rgba(45, 122, 58, 0.06); }
.area-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--kg-light);
  color: var(--kg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}
.area-content h3 {
  font-size: 21px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  letter-spacing: -0.3px;
  line-height: 1.25;
}
.area-content > p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.area-signals-label {
  font-size: 11px !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--kg) !important;
  margin-bottom: 0.75rem !important;
  padding-top: 1rem;
  border-top: 0.5px solid var(--border);
}
.area-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.area-content li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.area-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--kg);
}
@media (max-width: 640px) {
  .area-item { grid-template-columns: 1fr; gap: 1rem; padding: 1.5rem; }
  .area-badge { width: 44px; height: 44px; font-size: 22px; border-radius: 12px; }
}

/* WORK */
.work-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.work-card { background: var(--bg); border: 0.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.work-tag { display: inline-block; font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; padding: 0.25rem 0.6rem; border-radius: var(--radius-md); }
.tag-action { background: var(--navy-light); color: var(--navy); }
.tag-community { background: var(--kg-light); color: var(--kg-dark); }
.tag-placeholder { background: var(--bg-secondary); color: var(--text-secondary); }
.work-card h3 { font-size: 15px; font-weight: 500; color: var(--text-primary); line-height: 1.4; }
.work-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; flex: 1; }
.placeholder { background: var(--bg-secondary); border-radius: var(--radius-md); padding: 0.5rem 0.75rem; font-size: 12px; color: var(--text-secondary); font-style: italic; }

/* HOW IT WORKS */
.how-section { background: var(--navy-light); border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); }
.how-inner { max-width: 860px; margin: 0 auto; padding: 4rem 2rem; }
.how-inner h2 { font-size: 32px; font-weight: 500; color: var(--navy); margin-bottom: 1rem; letter-spacing: -0.5px; }
.how-inner p.lead { font-size: 17px; color: var(--text-secondary); line-height: 1.7; max-width: 600px; margin-bottom: 2.5rem; }
.how-steps { display: flex; flex-direction: column; gap: 1.5rem; }
.step { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-num { width: 32px; height: 32px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 500; color: white; flex-shrink: 0; margin-top: 2px; }
.step-content h3 { font-size: 16px; font-weight: 500; color: var(--navy); margin-bottom: 0.3rem; }
.step-content p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.engagement { margin-top: 2.5rem; }
.engagement-label { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 1.2px; color: var(--navy); margin-bottom: 0.75rem; }
.engagement-pills { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.pill { background: white; color: var(--navy); font-size: 13px; font-weight: 500; padding: 0.4rem 1rem; border-radius: 100px; border: 0.5px solid var(--navy); }
.how-cta { margin-top: 1.75rem; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.about-text h2 { font-size: 32px; font-weight: 500; color: var(--text-primary); margin-bottom: 1rem; letter-spacing: -0.5px; }
.about-text p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 1rem; }
.about-headshot {
  display: block;
  width: 168px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 1.25rem;
  border: 0.5px solid var(--border);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
}
.about-role {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--kg);
  background: var(--kg-light);
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.creds { display: flex; flex-direction: column; gap: 0.75rem; }
.cred { display: flex; gap: 0.75rem; align-items: flex-start; }
.cred-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--kg); margin-top: 7px; flex-shrink: 0; }
.cred p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.cred-section-title { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 1.2px; color: var(--navy); margin: 1.25rem 0 0.75rem; }

/* CONTACT */
.contact-section { background: var(--kg-light); }
.contact-inner { max-width: 860px; margin: 0 auto; padding: 4rem 2rem; }
.contact-inner h2 { font-size: 32px; font-weight: 500; color: var(--kg-dark); margin-bottom: 0.75rem; letter-spacing: -0.5px; }
.contact-inner p { font-size: 17px; color: var(--kg); line-height: 1.7; margin-bottom: 2rem; max-width: 520px; }
.contact-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--kg-dark); font-size: 16px; font-weight: 500; text-decoration: none; border-bottom: 1.5px solid var(--kg); padding-bottom: 2px; }
.contact-link:hover { color: var(--kg); }

/* FOOTER */
.footer { padding: 1.5rem 2rem; border-top: 0.5px solid var(--border); display: flex; justify-content: space-between; align-items: center; max-width: 860px; margin: 0 auto; }
.footer p { font-size: 13px; color: var(--text-secondary); }
.footer-links { display: flex; gap: 1.5rem; align-items: center; }
.footer-note { color: var(--kg); font-weight: 500; }
.footer-link { font-size: 13px; color: var(--text-secondary); text-decoration: none; }
.footer-link:hover { color: var(--text-primary); }
.footer-link.is-current { color: var(--kg); }

.text-link { color: var(--kg); font-weight: 500; text-decoration: none; }
.text-link:hover { color: var(--kg-dark); }

/* PRIVACY PAGE */
.content {
  max-width: 680px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.last-updated {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section h2 {
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.policy-section p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.policy-section ul {
  margin: 0.5rem 0 0.75rem 1.25rem;
}

.policy-section ul li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0.25rem;
}

.contact-box {
  background: var(--kg-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 3rem;
}

.contact-box h2 {
  font-size: 18px;
  font-weight: 500;
  color: var(--kg-dark);
  margin-bottom: 0.5rem;
}

.contact-box p {
  font-size: 15px;
  color: var(--kg);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.contact-box a {
  color: var(--kg-dark);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1.5px solid var(--kg);
  padding-bottom: 1px;
}

/* FAQ */
.faq-section { padding-top: 1rem; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--kg);
  font-weight: 500;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item p {
  margin-top: 0.9rem;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-logo-mark { height: 34px; }
  .hero h1 { font-size: 34px; }
  .about-grid { grid-template-columns: 1fr; }
  .section h2 { font-size: 26px; }
  h1 { font-size: 28px; }
}
