@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ── VARIABLES ── */
:root {
  --green: #006838;
  --green-light: #3D9A65;
  --green-pale: #E8F5EE;
  --green-mid: #C5E8D4;
  --off-white: #F7F9F8;
  --text-primary: #0F1A14;
  --text-secondary: #4A6355;
  --text-muted: #7A9889;
  --border: #D4E8DC;
  --surface: #FFFFFF;
  --surface-alt: #F0F7F3;
  --nav-bg: #006838;
}


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

html {
  background: var(--off-white);
  color: var(--text-primary);
  font-family: 'Poppins', sans-serif;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── LOGO ── */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: auto;
  height: 44px;
  flex-shrink: 0;
  object-fit: contain;
}

/* ── NAV LINKS ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--green); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-ghost {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.45rem 1rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.btn-ghost:hover { background: var(--green-pale); color: var(--green); }

.btn-primary {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: var(--green);
  border: none;
  cursor: pointer;
  padding: 0.45rem 1.25rem;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}

.btn-primary:hover { background: var(--green-light); transform: translateY(-1px); }


/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--off-white);
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -8%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green-pale) 0%, transparent 50%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green-mid) 0%, transparent 70%);
  opacity: 0.35;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.25;
}


.coming-soon-banner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding-top: 3rem;
}

.coming-soon-banner span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-pale);
  border: 1px solid var(--green-mid);
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
}

.coming-soon-banner span::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-pale);
  border: 1px solid var(--green-mid);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

h1 .accent { color: var(--green); }
h1 .nowrap { white-space: nowrap; }

.hero-description {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 460px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-large {
  font-size: 0.9rem;
  padding: 0.8rem 2rem;
  border-radius: 8px;
}

.btn-outline {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  background: none;
  border: 1.5px solid var(--border);
  cursor: pointer;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline:hover { border-color: var(--green); color: var(--green); background: var(--green-pale); }

/* ── FEATURE CARDS ── */
.hero-visual { display: flex; flex-direction: column; gap: 0.85rem; }

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: slideIn 0.5s ease both;
}

.feature-card:hover {
  transform: translateX(-4px);
  box-shadow: 4px 4px 0 var(--green-mid);
  border-color: var(--green);
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.feature-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  font-size: 1.1rem;
  line-height: 1;
}

.feature-text h3 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.feature-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 300;
}

/* ── STATS ── */
.stats-bar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 2rem 2.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green);
  display: block;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ── FOOTER ── */
footer {
  background: var(--green-pale);
  border-top: 1px solid var(--border);
  padding: 3rem 2.5rem 1.5rem;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-shrink: 0;
}


.footer-logo {
  display: block;
  width: auto;
  height: 64px;
  min-height: 64px;
  object-fit: contain;
  object-position: left center;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.footer-links li {
  list-style: none;
}

.footer-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--green); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 400;
}

@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-content { flex-direction: column; align-items: center; text-align: center; }
  .footer-brand { align-items: center; }
  .nav-links { display: none; }
}
