:root {
  --bg: #F7F5F0;
  --bg-alt: #FFFFFF;
  --bg-tint: #EEF3EC;
  --text: #1C1B18;
  --text-secondary: #58564D;
  --accent-green: #2F5D3A;
  --accent-green-tint: #E4ECE1;
  --accent-slate: #35506B;
  --accent-slate-tint: #E7EDF2;
  --border: #E1DDD0;
  --border-alt: #DDE3DC;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
}

h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; margin: 0; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; }

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-green);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--accent-green);
  color: #FFFFFF;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--text);
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
}

.nav-link { font-size: 15px; font-weight: 500; color: var(--text-secondary); }
.nav-link:hover { color: var(--text); }

.card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
}

.pulse-dot { position: relative; }
.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 999px;
  background: var(--accent-green);
  opacity: 0.55;
  animation: pulse-ring 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.7); opacity: 0.55; }
  70%, 100% { transform: scale(2.6); opacity: 0; }
}

.site-header {
  width: 100%;
  border-bottom: 1px solid var(--border);
  background: rgba(247,245,240,0.9);
}

.site-header__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-header__nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-cta {
  padding: 10px 20px;
  background: var(--accent-green);
  color: #FFFFFF;
  border-radius: 7px;
}

.hero {
  width: 100%;
  padding: 96px 32px 88px;
}

.hero__inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
  align-items: center;
}

.hero h1 {
  font-size: 52px;
  line-height: 1.12;
  font-weight: 600;
  color: var(--text);
}

.hero__subhead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 620px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--accent-green-tint);
  border-radius: 999px;
  margin-top: 4px;
}

.status-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent-green);
}

.status-badge__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-green);
}

.hero__ctas { display: flex; gap: 16px; margin-top: 12px; }

.section {
  width: 100%;
  padding: 80px 32px;
}

.section--bordered {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section--tint {
  padding: 88px 32px;
  background: var(--accent-slate-tint);
  border-top: 1px solid var(--border-alt);
  border-bottom: 1px solid var(--border-alt);
}

.section--bg-tint {
  padding: 88px 32px;
  background: var(--bg-tint);
  border-top: 1px solid var(--border-alt);
  border-bottom: 1px solid var(--border-alt);
}

.section--plain { padding: 88px 32px; }

.about__inner {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 56px;
}

.about__logo {
  width: 220px;
  height: 220px;
  flex-shrink: 0;
  object-fit: contain;
}

.about__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about__copy h2 { font-size: 34px; font-weight: 600; line-height: 1.25; }
.about__copy p { font-size: 17px; line-height: 1.7; color: var(--text-secondary); margin: 0; }

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 640px;
}

.section-heading--wide { max-width: 680px; }

.section-heading h2 { font-size: 32px; font-weight: 600; line-height: 1.25; }
.section-heading p { font-size: 16px; line-height: 1.6; color: var(--text-secondary); margin: 0; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-card__bar {
  width: 40px;
  height: 4px;
  background: var(--accent-green);
  border-radius: 999px;
}

.feature-card h3 { font-size: 19px; font-weight: 600; }
.feature-card p { font-size: 15px; line-height: 1.6; color: var(--text-secondary); margin: 0; }

.expertise-card {
  background: var(--bg-alt);
  border: 1px solid var(--border-alt);
  border-radius: 12px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.expertise-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent-slate);
}

.expertise-card__label { font-size: 14.5px; font-weight: 600; line-height: 1.35; }

.roadmap-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 3px solid var(--accent-green);
}

.roadmap-step--muted { border-top-color: var(--border); }

.roadmap-step__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-green);
}

.roadmap-step--muted .roadmap-step__eyebrow { color: var(--text-secondary); }

.roadmap-step h3 { font-size: 19px; font-weight: 600; }
.roadmap-step p { font-size: 15px; line-height: 1.6; color: var(--text-secondary); margin: 0; }

.bench-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
}

.bench-card img { border-radius: 8px; display: block; width: 100%; }
.bench-card__title { font-size: 14.5px; font-weight: 600; }
.bench-card__desc { font-size: 13.5px; line-height: 1.5; color: var(--text-secondary); }

.contact {
  width: 100%;
  padding: 88px 32px;
  background: var(--accent-green);
  color: #FFFFFF;
}

.contact__inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  align-items: center;
}

.contact .eyebrow { color: #D7E4D2; }
.contact h2 { font-size: 32px; font-weight: 600; line-height: 1.3; color: #FFFFFF; }
.contact p { font-size: 16px; line-height: 1.6; color: #E4EDE1; margin: 0; }

.contact__email {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: #FFFFFF;
  color: var(--accent-green);
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  margin-top: 8px;
}

.site-footer { width: 100%; padding: 32px; background: var(--bg); }

.site-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.site-footer p { font-size: 13px; color: var(--text-secondary); margin: 0; }

@media (max-width: 860px) {
  .hero h1 { font-size: 38px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about__inner { flex-direction: column; text-align: center; gap: 28px; }
  .site-header__nav { gap: 16px; flex-wrap: wrap; justify-content: flex-end; }
}
