@font-face {
  font-display: swap;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  src: url("/fonts/Manrope-VariableFont_wght.ttf") format("truetype");
}

:root {
  color-scheme: light;
  --ink: #17201b;
  --muted: #5f6b64;
  --line: #d8ded8;
  --paper: #f7f5ef;
  --field: #dfe9df;
  --accent: #245e45;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 14%, rgba(36, 94, 69, 0.16), transparent 30rem),
    linear-gradient(135deg, var(--paper), var(--field));
  color: var(--ink);
  font-family:
    "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.page {
  min-height: 100vh;
}

.hero {
  display: grid;
  min-height: 72vh;
  padding: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1.2rem;
  font-size: clamp(4rem, 10vw, 8.5rem);
  font-weight: 600;
  line-height: 0.9;
}

.lede {
  max-width: 640px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.45;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 0 1.25rem;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

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

.details > div {
  min-height: 220px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.46);
}

h2 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.details p {
  max-width: 28rem;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.feature {
  padding: clamp(1.5rem, 5vw, 5rem);
}

.feature-tile {
  display: grid;
  max-width: 920px;
  min-height: 260px;
  align-content: end;
  border: 1px solid rgba(23, 32, 27, 0.14);
  border-radius: 8px;
  padding: clamp(1.5rem, 4vw, 3rem);
  background:
    linear-gradient(135deg, rgba(36, 94, 69, 0.92), rgba(23, 32, 27, 0.96)),
    var(--accent);
  color: #fff;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.feature-tile:hover {
  box-shadow: 0 18px 48px rgba(23, 32, 27, 0.18);
  transform: translateY(-2px);
}

.feature-label {
  margin-bottom: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-title {
  margin-bottom: 0.7rem;
  font-size: clamp(2.3rem, 6vw, 4.8rem);
  font-weight: 600;
  line-height: 0.95;
}

.feature-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.55;
}

.feature-action {
  margin-top: 1.5rem;
  font-weight: 700;
}

@media (max-width: 760px) {
  .hero {
    min-height: 64vh;
  }

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

  .details > div {
    min-height: auto;
  }
}
