:root {
  color-scheme: light;
  --green-900: #0b2418;
  --green-700: #16412c;
  --green-500: #2f7b4f;
  --green-200: #cde4d6;
  --earth-500: #b8844c;
  --earth-100: #f2e9df;
  --sand-50: #fbfaf7;
  --slate-900: #141b18;
  --slate-600: #4c5a5f;
  --white: #ffffff;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-soft: 0 20px 40px rgba(15, 35, 24, 0.12);
}

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

body {
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--slate-900);
  background: var(--sand-50);
  line-height: 1.6;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--earth-500);
  outline-offset: 2px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.site-header {
  background: radial-gradient(circle at top, #e9f3ec 0%, #f6f2ea 45%, #fbfaf7 100%);
  padding: 24px 0 56px;
  position: relative;
  overflow: hidden;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto -20% -55% -20%;
  height: 280px;
  background: linear-gradient(110deg, rgba(47, 123, 79, 0.12), rgba(184, 132, 76, 0.16));
  filter: blur(2px);
}

.nav {
  width: min(1200px, 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Fraunces", serif;
  font-weight: 700;
  color: var(--green-900);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 600;
  color: var(--slate-600);
}

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

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--green-700);
  color: var(--white);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--green-200);
  background: transparent;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
}

.hero {
  width: min(1200px, 92vw);
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 42px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: clamp(2.1rem, 2.8vw + 1.4rem, 3.6rem);
  color: var(--green-900);
}

.hero-subtitle {
  margin: 16px 0 24px;
  color: var(--slate-600);
  font-size: 1.05rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--earth-500);
  margin-bottom: 12px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--green-700);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn.primary:hover {
  transform: translateY(-2px);
}

.btn.ghost {
  background: transparent;
  border-color: var(--green-500);
  color: var(--green-700);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--green-900);
  font-weight: 600;
}

.hero-badges span {
  background: var(--white);
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.hero-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.hero-panel {
  background: var(--white);
  padding: 18px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 12px;
  border: 1px solid rgba(47, 123, 79, 0.08);
}

.hero-panel-info p {
  color: var(--slate-600);
}

.hero-panel-label {
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 4px;
}

.hero-panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.hero-panel-tags span {
  background: var(--earth-100);
  color: var(--green-700);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-card {
  background: linear-gradient(130deg, rgba(22, 65, 44, 0.92), rgba(11, 36, 24, 0.92));
  color: var(--white);
  padding: 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.hero-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.hero-metric-grid {
  display: grid;
  gap: 12px;
  background: var(--white);
  padding: 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.hero-metric-grid strong {
  display: block;
  color: var(--green-900);
}

.hero-metric-grid span {
  color: var(--slate-600);
  font-size: 0.95rem;
}

.section {
  width: min(1200px, 92vw);
  margin: 72px auto;
}

.section-header {
  max-width: 720px;
  margin-bottom: 32px;
}

.section-header h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.7rem, 1.2vw + 1.4rem, 2.5rem);
  color: var(--green-900);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--slate-600);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card,
.product-card,
.faq-item {
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.product-card {
  display: grid;
  gap: 10px;
}

.product-card span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--earth-500);
}

.product-card.coming {
  border: 1px dashed rgba(47, 123, 79, 0.35);
  background: #f6fbf8;
}

.link {
  font-weight: 700;
  color: var(--green-700);
}

.highlight {
  background: var(--earth-100);
  padding: 64px clamp(16px, 4vw, 52px);
  border-radius: var(--radius-lg);
}

.highlight-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.highlight-copy h3 {
  margin-bottom: 8px;
  color: var(--green-900);
}

.highlight-copy ul {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--slate-600);
}

.highlight-copy li::before {
  content: "•";
  color: var(--green-500);
  margin-right: 8px;
}

.modules .card h3,
.faq-item h3,
.product-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--green-900);
}

.stats.alt {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 42px clamp(16px, 4vw, 52px);
  box-shadow: var(--shadow-soft);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.seo-card {
  background: var(--white);
  padding: 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.seo-card h3 {
  color: var(--green-900);
  margin-bottom: 6px;
}

.stat strong {
  font-size: 2rem;
  color: var(--green-900);
  display: block;
}

.stat span {
  color: var(--slate-600);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.cta {
  margin-top: 80px;
}

.cta-card {
  background: linear-gradient(120deg, var(--green-700), var(--green-900));
  color: var(--white);
  padding: clamp(32px, 4vw, 52px);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-card p {
  opacity: 0.85;
  max-width: 520px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta .btn.ghost {
  border-color: var(--white);
  color: var(--white);
}

.site-footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.88);
  padding: 48px 0 24px;
}

.footer-top {
  width: min(1200px, 92vw);
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.site-footer .brand {
  color: var(--white);
  margin-bottom: 10px;
}

.site-footer ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-bottom {
  width: min(1200px, 92vw);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 960px) {
  .nav-menu {
    position: absolute;
    top: 70px;
    right: 4vw;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    display: none;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 720px) {
  .hero {
    margin-top: 32px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-card {
    align-items: flex-start;
  }
}
