:root {
  --bg: #f3efe6;
  --bg-accent: #e4f0d0;
  --surface: rgba(255, 252, 246, 0.74);
  --surface-strong: #fffaf1;
  --text: #132018;
  --muted: #51604f;
  --line: rgba(19, 32, 24, 0.12);
  --brand: #0f5a43;
  --brand-strong: #083829;
  --highlight: #b8e26f;
  --shadow: 0 28px 60px rgba(9, 30, 20, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(184, 226, 111, 0.45), transparent 34%),
    radial-gradient(circle at top right, rgba(15, 90, 67, 0.16), transparent 26%),
    linear-gradient(180deg, var(--bg) 0%, #f8f4ec 100%);
}

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

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto;
}

.topbar,
.panel,
.footer,
.hero-card,
.cta {
  backdrop-filter: blur(18px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
  position: sticky;
  top: 18px;
  z-index: 10;
}

.brand {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav,
.actions,
.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a,
.footer-links a {
  color: var(--muted);
}

.nav a:hover,
.footer-links a:hover,
.panel a:hover {
  color: var(--brand);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand);
  color: #f7fff9;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--brand-strong);
}

.button-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 44px;
  padding: 72px 0 36px;
  align-items: center;
}

.hero-compact {
  grid-template-columns: 1fr;
  padding-bottom: 12px;
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--brand);
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.8rem, 5.8vw, 5.1rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.lead,
.panel p,
.legal-copy p,
.footer,
.price-copy,
.microcopy {
  line-height: 1.7;
  color: var(--muted);
}

.lead {
  max-width: 62ch;
  font-size: 1.08rem;
  margin: 22px 0 0;
}

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

.microcopy {
  margin-top: 16px;
  font-size: 0.95rem;
}

.hero-card,
.panel,
.cta,
.footer {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-card {
  border-radius: 32px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(8, 56, 41, 0.94), rgba(15, 90, 67, 0.86)),
    var(--brand);
  color: #eff9ec;
}

.hero-card-header {
  margin-bottom: 20px;
}

.hero-card-eyebrow {
  color: rgba(239, 249, 236, 0.72);
}

.hero-card h2 {
  font-size: clamp(1.7rem, 2.2vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 13ch;
}

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

.stat-grid article {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-grid span {
  display: block;
  color: rgba(239, 249, 236, 0.72);
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.stat-grid strong {
  font-size: 1.3rem;
  line-height: 1.3;
}

.signal-panel {
  margin-top: 18px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.signal-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.signal-row:first-child {
  padding-top: 0;
}

.signal-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.signal-row span {
  color: rgba(239, 249, 236, 0.72);
  font-size: 0.92rem;
}

.signal-row strong {
  max-width: 15ch;
  text-align: right;
  font-size: 1rem;
  line-height: 1.45;
}

.section {
  padding: 36px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.feature-grid,
.two-column,
.pricing-layout {
  display: grid;
  gap: 20px;
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.two-column,
.pricing-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel,
.cta,
.footer {
  border-radius: 28px;
  padding: 28px;
}

.section-highlight .panel:first-child {
  background: linear-gradient(180deg, rgba(255, 250, 241, 0.92), rgba(228, 240, 208, 0.7));
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background:
    linear-gradient(135deg, rgba(184, 226, 111, 0.38), rgba(255, 255, 255, 0.76)),
    var(--surface-strong);
}

.price-card h2 {
  margin-top: 10px;
}

.price-card span {
  font-size: 1.4rem;
  color: var(--muted);
  margin-left: 8px;
}

.feature-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  columns: 2;
  column-gap: 28px;
}

.feature-list li {
  margin-bottom: 10px;
  break-inside: avoid;
}

.legal {
  padding-top: 12px;
}

.legal-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 26px 0 10px;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.footer {
  margin: 28px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 940px) {
  .topbar,
  .hero,
  .cta,
  .footer,
  .pricing-layout,
  .two-column,
  .feature-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar {
    position: static;
  }

  .hero {
    gap: 24px;
  }

  .nav,
  .actions {
    flex-wrap: wrap;
  }

  .feature-list {
    columns: 1;
  }
}

@media (max-width: 680px) {
  .site-shell {
    width: min(100% - 20px, 1180px);
    margin: 10px auto;
  }

  .topbar,
  .panel,
  .hero-card,
  .cta,
  .footer {
    padding: 20px;
    border-radius: 22px;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    max-width: 100%;
  }

  .hero-card h2 {
    max-width: 100%;
  }

  .hero-actions,
  .actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .signal-row {
    flex-direction: column;
  }

  .signal-row strong {
    max-width: 100%;
    text-align: left;
  }
}
