:root {
  --green: #82c72e;
  --green-deep: #054f34;
  --green-ink: #143018;
  --green-soft: #eef8dc;
  --blue: #5eb6e6;
  --blue-deep: #0a6fa8;
  --blue-ink: #0c2d3d;
  --blue-soft: #e7f5fc;
  --text: #1a1f1c;
  --muted: #4a5560;
  --bg: #fff;
  --line: #e4eadc;
  --max: 70rem;
  --radius: 1.35rem;
  --shadow: 0 12px 40px rgb(5 79 52 / 0.08);
}

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

html {
  scroll-behavior: smooth;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--green-deep);
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--blue-deep);
}

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

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green-deep);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 10;
}

.skip:focus {
  left: 0.75rem;
  top: 0.75rem;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 2.25rem 0 3.5rem;
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

.hero::before {
  width: min(55vw, 28rem);
  height: min(55vw, 28rem);
  left: -8rem;
  bottom: -12rem;
  background: var(--green);
  opacity: 0.9;
}

.hero::after {
  width: min(48vw, 24rem);
  height: min(48vw, 24rem);
  right: -8rem;
  top: -10rem;
  background: var(--blue);
  opacity: 0.85;
}

@media (max-width: 700px) {
  .hero::before {
    width: 11rem;
    height: 11rem;
    left: -4.5rem;
    bottom: auto;
    top: -3.5rem;
    opacity: 0.4;
  }

  .hero::after {
    width: 9rem;
    height: 9rem;
    right: -4rem;
    top: -3.5rem;
    opacity: 0.35;
  }
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
}

.brand img,
.brand svg {
  width: 4.25rem;
  height: 4.25rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: clamp(1.6rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--green-deep);
}

.brand-legal {
  margin-top: 0.2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-deep);
}

.hero h1 {
  margin: 1.75rem 0 0;
  text-align: center;
  font-size: clamp(1.7rem, 5vw, 2.75rem);
  line-height: 1.2;
  color: var(--green-deep);
}

.hero h1 .why {
  display: block;
  font-size: 0.48em;
  font-weight: 600;
  color: var(--blue-deep);
  letter-spacing: 0.02em;
  margin-bottom: 0.15em;
}

.lede {
  max-width: 40rem;
  margin: 1rem auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
}

.split {
  display: grid;
  gap: 1.25rem;
  margin: 0.5rem 0 2.5rem;
}

@media (min-width: 860px) {
  .split {
    grid-template-columns: 1.12fr 0.88fr;
    gap: 1.5rem;
    align-items: stretch;
  }
}

.panel {
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem 1.65rem;
  box-shadow: var(--shadow);
}

.panel h2 {
  margin: 0 0 1rem;
  font-size: 1.65rem;
}

.panel p,
.panel li {
  margin: 0 0 0.9rem;
}

.panel p:last-child,
.panel li:last-child {
  margin-bottom: 0;
}

.idea {
  background: linear-gradient(165deg, #3f8f16 0%, #2c6810 100%);
  color: #fff;
}

.idea h2,
.benefits h2 {
  color: #fff;
}

.idea p,
.idea li {
  color: #f7ffe9;
}

.benefits {
  background: linear-gradient(165deg, var(--blue) 0%, #4aa4d8 100%);
  color: var(--blue-ink);
}

.benefits h2 {
  color: var(--green-deep);
}

.benefits p,
.benefits li {
  color: #0b2430;
}

.benefits ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefits li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.85rem;
}

.benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--green-deep);
}

.steps {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.steps > li {
  margin-bottom: 0.85rem;
}

.quality {
  background: var(--green-soft);
  color: var(--green-ink);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  margin: 0 0 2.75rem;
}

.quality p {
  margin: 0;
}

.actions-intro {
  text-align: center;
  margin: 0 auto 2rem;
  max-width: 46rem;
}

.actions-intro h2 {
  margin: 0 0 0.75rem;
  color: var(--blue-deep);
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
}

.actions-intro p {
  margin: 0;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 1.35rem;
  margin: 0 0 3rem;
  padding: 0;
  list-style: none;
}

.card {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

@media (min-width: 720px) {
  .card {
    grid-template-columns: minmax(0, 1fr) minmax(11rem, 16rem);
    align-items: center;
  }

  .card.reverse {
    grid-template-columns: minmax(11rem, 16rem) minmax(0, 1fr);
  }

  .card.reverse .card-copy {
    order: 2;
  }
}

.num {
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-right: 0.55rem;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
  vertical-align: middle;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.card p {
  margin: 0;
}

.card p .num {
  float: left;
  margin: 0.15rem 0.7rem 0.4rem 0;
}

.card figure {
  margin: 0;
}

.card img {
  width: 100%;
  border-radius: 0.85rem;
  object-fit: cover;
  background: #f4f7f0;
}

.pair {
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 420px) {
  .pair {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.logo-card {
  display: grid;
  place-items: center;
  min-height: 6.5rem;
  padding: 0.75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
}

.logo-card img {
  width: auto;
  max-height: 4.5rem;
  object-fit: contain;
}

.contact {
  background: var(--green-deep);
  color: #e9f6ee;
  padding: 2.4rem 0 1.5rem;
}

.contact h2 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 1.35rem;
}

.contact dl {
  margin: 0;
}

.contact-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact a {
  color: #fff;
}

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

.contact dt {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9fd0b6;
}

.contact dd {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
}

.tiny {
  margin: 1.5rem 0 0;
  font-size: 0.85rem;
  color: #9fd0b6;
}

.error {
  padding: 4rem 0;
  text-align: center;
}

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