:root {
  color-scheme: light;
  --ink: #17211c;
  --muted: #5b6961;
  --line: #d8e1dc;
  --paper: #f7faf7;
  --panel: #ffffff;
  --green: #2b7d57;
  --blue: #2f6f91;
  --gold: #b9893f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 5vw, 72px);
  background: rgba(247, 250, 247, 0.86);
  border-bottom: 1px solid rgba(216, 225, 220, 0.74);
  backdrop-filter: blur(18px);
}

.brand {
  font-size: 1.25rem;
  font-weight: 800;
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 32px);
  color: var(--muted);
  font-size: 0.95rem;
}

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  padding: 112px clamp(20px, 5vw, 72px) 52px;
  overflow: hidden;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(4.5rem, 16vw, 9rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 5vw, 4.25rem);
  line-height: 1;
  letter-spacing: 0;
}

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

.lede {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 18px;
  font-weight: 800;
}

.primary {
  color: #fff;
  background: var(--green);
}

.secondary {
  color: var(--green);
  background: #e5efe9;
}

.hero-image {
  width: 100%;
  min-height: 420px;
  max-height: 72vh;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 32px 80px rgba(23, 33, 28, 0.16);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.metrics div {
  min-height: 220px;
  padding: clamp(24px, 4vw, 46px);
  border-right: 1px solid var(--line);
}

.metrics div:last-child {
  border-right: 0;
}

.metrics span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-weight: 800;
}

.metrics strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.metrics p,
.feature-grid p,
.workflow span {
  color: var(--muted);
  line-height: 1.55;
}

.section {
  padding: clamp(70px, 10vw, 128px) clamp(20px, 5vw, 72px);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature-grid article {
  min-height: 190px;
  padding: 28px;
  background: var(--panel);
}

.workflow {
  background: #edf4f1;
}

.workflow ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 0;
  margin: 38px 0 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}

.workflow li {
  min-height: 180px;
  padding: 28px;
  background: var(--panel);
}

.workflow strong,
.workflow span {
  display: block;
}

.workflow strong {
  margin-bottom: 14px;
  font-size: 1.2rem;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 30px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 820px) {
  .site-header {
    position: static;
  }

  nav {
    gap: 14px;
    font-size: 0.88rem;
  }

  .hero,
  .two-column,
  .metrics,
  .workflow ol,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 42px;
  }

  .hero-image {
    min-height: 280px;
    max-height: none;
    aspect-ratio: 1.16;
  }

  .metrics div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics div:last-child {
    border-bottom: 0;
  }

  footer {
    gap: 14px;
    flex-direction: column;
  }
}
