@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=DM+Serif+Display:ital@0;1&display=swap');

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

:root {
  --green-dark:   #085041;
  --green-mid:    #0F6E56;
  --green-light:  #1D9E75;
  --green-pale:   #E1F5EE;
  --green-soft:   #9FE1CB;
  --text-primary: #1a1a1a;
  --text-muted:   #5a6370;
  --border:       rgba(0,0,0,0.10);
  --bg:           #f5f6f4;
  --surface:      #ffffff;
  --radius-md:    8px;
  --radius-lg:    12px;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-primary);
  background: var(--bg);
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.7;
}

/* NAV */
nav {
  background: var(--surface);
  border-bottom: 0.5px solid var(--border);
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--green-dark);
  letter-spacing: -0.5px;
  text-decoration: none;
}
.logo span { color: var(--green-light); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
  transition: color 0.15s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--green-mid); }

.nav-login {
  background: var(--green-mid);
  color: white;
  padding: 8px 20px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-login:hover { background: var(--green-dark); }

/* LAYOUT */
.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* HERO */
.hero {
  padding: 5rem 2.5rem 4rem;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green-light);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 52px;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  font-weight: 400;
}
.hero h1 em { color: var(--green-mid); font-style: italic; }

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 2.5rem;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-mid);
  color: white;
  padding: 14px 30px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }

/* QUOTE BAND */
.quote-band {
  background: var(--green-mid);
  color: white;
  padding: 3.5rem 2.5rem;
  text-align: center;
  margin: 3rem 0;
}
.quote-band blockquote {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  font-style: italic;
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.4;
  font-weight: 400;
}
.quote-source {
  margin-top: 1.25rem;
  font-size: 13px;
  opacity: 0.7;
  letter-spacing: 0.5px;
}

/* STATS */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0 2.5rem 3rem;
  max-width: 860px;
  margin: 0 auto;
}
.stat {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
}
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 40px;
  color: var(--green-mid);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* SECTION LABEL */
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--green-light);
  font-weight: 500;
  margin-bottom: 2rem;
  text-align: center;
}

/* FEATURE CARDS */
.features {
  padding: 3rem 2.5rem;
  max-width: 860px;
  margin: 0 auto;
}
.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 22px;
  color: var(--green-mid);
}
.card h3 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* PAGE HEADER */
.page-header {
  padding: 4rem 2.5rem 0;
  max-width: 860px;
  margin: 0 auto;
}
.page-title {
  font-family: 'DM Serif Display', serif;
  font-size: 44px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.page-title em { color: var(--green-mid); font-style: italic; }
.page-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 580px;
}

/* VIDEO */
.video-wrap {
  padding: 2rem 2.5rem;
  max-width: 860px;
  margin: 0 auto;
}
.video-frame {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
  position: relative;
}
.video-thumb {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: white;
  position: absolute;
  inset: 0;
  transition: opacity 0.3s;
}
.play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transition: background 0.2s, transform 0.15s;
}
.video-frame:hover .play-btn { background: rgba(255,255,255,0.3); transform: scale(1.06); }
.video-label { font-size: 16px; font-weight: 500; opacity: 0.9; }
.video-dur   { font-size: 13px; opacity: 0.6; }
.video-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: none;
  position: absolute;
  inset: 0;
}

/* CONTACT */
.contact-wrap {
  padding: 4rem 2.5rem;
  max-width: 860px;
  margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 2rem;
}
.contact-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.contact-card.highlight {
  background: var(--green-pale);
  border-color: var(--green-soft);
}
.contact-card h3 {
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.contact-card.highlight h3 { color: var(--green-dark); }
.contact-name { font-size: 16px; font-weight: 500; margin-bottom: 0.25rem; }
.contact-card.highlight .contact-name { color: var(--green-dark); }
.contact-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 1rem; }
.contact-card.highlight .contact-sub { color: var(--green-mid); }
.contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.contact-row a { color: var(--green-mid); text-decoration: none; }
.contact-row a:hover { text-decoration: underline; }

/* ABOUT */
.about-wrap {
  padding: 4rem 2.5rem;
  max-width: 860px;
  margin: 0 auto;
}
.about-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 600px;
}
.founder-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 480px;
}
.founder-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--green-mid);
  flex-shrink: 0;
}
.founder-name  { font-size: 16px; font-weight: 500; margin-bottom: 3px; }
.founder-title { font-size: 13px; color: var(--text-muted); margin-bottom: 5px; }
.founder-contact a { font-size: 13px; color: var(--green-mid); text-decoration: none; }
.founder-contact a:hover { text-decoration: underline; }

/* CTA CENTER */
.cta-center {
  text-align: center;
  padding: 2rem 2.5rem 3rem;
}
.cta-center p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* FOOTER */
footer {
  border-top: 0.5px solid var(--border);
  padding: 2rem 2.5rem;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 3rem;
}
