/* ── Reset & base ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background-color: #0c1610;
  color: #d8eddf;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Layout ──────────────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 800px; }

/* ── Nav ─────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12,22,16,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #1f3024;
}
.nav-inner {
  display: flex; align-items: center; gap: 32px;
  height: 64px;
}
.nav-logo { flex-shrink: 0; display: block; }
.nav-links { display: flex; gap: 28px; flex: 1; }
.nav-link { color: #7fa88a; font-size: 13px; font-weight: 500; }
.nav-link:hover { color: #d8eddf; }
.nav-actions { display: flex; gap: 8px; align-items: center; }
.nav-login { color: #7fa88a; font-size: 13px; font-weight: 500; padding: 7px 14px; border-radius: 8px; }
.nav-login:hover { color: #d8eddf; }
.nav-cta-btn {
  background: #1a7a64; color: #f0f7f2; font-size: 13px; font-weight: 600;
  padding: 8px 18px; border-radius: 8px; white-space: nowrap;
}
.nav-cta-btn:hover { background: #22a080; }

/* ── Hero ─────────────────────────────────────────────────────────────── */
.hero { position: relative; padding: 96px 0 80px; overflow: hidden; }
.hero-glow {
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,122,100,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,122,100,0.15); border: 1px solid rgba(26,122,100,0.3);
  color: #22a080; font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: 999px; letter-spacing: 0.5px; margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(40px, 6vw, 72px); font-weight: 800;
  line-height: 1.1; letter-spacing: -1px; margin-bottom: 24px; color: #f0f7f2;
}
.accent { color: #1a7a64; }
.hero-sub {
  font-size: 18px; line-height: 1.65; color: #7fa88a;
  max-width: 580px; margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block; background: #1a7a64; color: #f0f7f2;
  font-weight: 700; font-size: 15px; padding: 14px 28px; border-radius: 10px;
}
.btn-primary:hover { background: #22a080; }
.btn-primary--lg { font-size: 17px; padding: 16px 36px; border-radius: 12px; }
.btn-secondary {
  display: inline-block; background: transparent; color: #7fa88a;
  font-weight: 500; font-size: 15px; padding: 14px 24px; border-radius: 10px;
  border: 1px solid #1f3024;
}
.btn-secondary:hover { border-color: #2a4030; color: #d8eddf; }

/* ── Pitch ────────────────────────────────────────────────────────────── */
.pitch-section {
  padding: 32px 0 40px;
  border-top: 1px solid #1f3024; border-bottom: 1px solid #1f3024;
}
.pitch-text { font-size: 15px; line-height: 1.75; color: #7fa88a; text-align: center; }

/* ── Sections ─────────────────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section--alt { background-color: #101e14; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-title {
  font-size: clamp(26px, 3.5vw, 38px); font-weight: 700;
  color: #f0f7f2; margin-bottom: 12px; letter-spacing: -0.5px;
}
.section-sub { font-size: 16px; color: #7fa88a; }

/* ── Features grid ────────────────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: #162218; border: 1px solid #1f3024;
  border-radius: 16px; padding: 28px 24px;
}
.feature-icon { font-size: 28px; margin-bottom: 16px; }
.feature-title { font-size: 16px; font-weight: 700; color: #f0f7f2; margin-bottom: 10px; }
.feature-desc { font-size: 14px; line-height: 1.65; color: #7fa88a; }

/* ── Steps ────────────────────────────────────────────────────────────── */
.steps-row { display: flex; gap: 20px; }
.step-card {
  flex: 1; background: #162218; border: 1px solid #1f3024;
  border-radius: 16px; padding: 32px 28px;
}
.step-num {
  width: 36px; height: 36px; border-radius: 999px;
  background: rgba(26,122,100,0.15); border: 1px solid rgba(26,122,100,0.35);
  color: #1a7a64; font-weight: 800; font-size: 16px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.step-title { font-size: 17px; font-weight: 700; color: #f0f7f2; margin-bottom: 10px; }
.step-desc { font-size: 14px; line-height: 1.65; color: #7fa88a; }

/* ── For whom ─────────────────────────────────────────────────────────── */
.for-whom-list { display: flex; flex-direction: column; gap: 14px; }
.for-whom-item {
  display: flex; align-items: flex-start;
  font-size: 15px; line-height: 1.6; color: #7fa88a;
  background: #162218; border: 1px solid #1f3024;
  border-radius: 10px; padding: 14px 18px;
}
.check { color: #1a7a64; margin-right: 10px; flex-shrink: 0; }

/* ── Coming soon ──────────────────────────────────────────────────────── */
.coming-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.coming-card {
  display: flex; gap: 14px; align-items: flex-start;
  background: #162218; border: 1px solid #1f3024;
  border-radius: 12px; padding: 20px 18px;
}
.coming-icon { font-size: 22px; flex-shrink: 0; margin-top: 1px; }
.coming-title { font-size: 14px; font-weight: 600; color: #d8eddf; margin-bottom: 4px; }
.coming-desc { font-size: 13px; line-height: 1.55; color: #7fa88a; }

/* ── FAQ ──────────────────────────────────────────────────────────────── */
.faq-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.faq-item {
  background: #162218; border: 1px solid #1f3024;
  border-radius: 14px; padding: 24px 22px;
}
.faq-q { font-size: 15px; font-weight: 700; color: #f0f7f2; margin-bottom: 10px; line-height: 1.4; }
.faq-a { font-size: 14px; line-height: 1.65; color: #7fa88a; }

/* ── CTA ─────────────────────────────────────────────────────────────── */
.cta-section {
  padding: 96px 0;
  background: linear-gradient(180deg, #0c1610 0%, #101e14 100%);
  border-top: 1px solid #1f3024;
}
.cta-title {
  font-size: clamp(30px, 4vw, 48px); font-weight: 800;
  color: #f0f7f2; margin-bottom: 16px; letter-spacing: -0.5px;
}
.cta-sub { font-size: 16px; line-height: 1.7; color: #7fa88a; margin-bottom: 36px; }
.cta-login { margin-top: 16px; color: #4d6655; font-size: 13px; }
.cta-login-link { color: #7fa88a; text-decoration: underline; }

/* ── Footer ──────────────────────────────────────────────────────────── */
.footer { border-top: 1px solid #1f3024; padding: 32px 0; }
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 32px;
}
.footer-tagline { color: #4d6655; font-size: 12px; margin-top: 8px; max-width: 260px; }
.footer-right { color: #4d6655; font-size: 12px; text-align: right; }
.footer-right p + p { margin-top: 4px; }
.footer-copy { margin-top: 8px !important; }

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .steps-row { flex-direction: column; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .nav-links { display: none; }
  .nav-cta-btn { display: none; }
  .coming-grid { grid-template-columns: 1fr; }
  .faq-cols { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-right { text-align: left; }
}
