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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Urbanist", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: #212427;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.h1,
.h2 {
  font-family: "Lexend", "Urbanist", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.h1 {
  font-size: clamp(38px, 4.8vw, 56px);
  line-height: 1.06;
}

.h2 {
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.12;
}

.lead {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  color: #6b7280;
}

.muted {
  color: #6b7280;
}

.pill {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  font-weight: 600;
  font-size: 14px;
  color: #497749;
}

.container {
  width: min(100% - 32px, 1120px);
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section__header {
  margin-bottom: 28px;
  max-width: 780px;
}

.page {
  min-height: 50vh;
}

@media (max-width: 720px) {
  .section {
    padding: 56px 0;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: #497749;
  color: #fff;
}

.btn--secondary {
  background: #fff;
  border-color: #e5e7eb;
  color: #212427;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand svg {
  height: 32px;
  width: auto;
  color: #497749; /* change this to control the logo colour */
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #212427;
  margin: 5px 0;
}

.site-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.site-nav__link {
  font-weight: 600;
  color: #374151;
  padding: 10px 10px;
  border-radius: 999px;
}

.site-nav__link:hover {
  background: #f6f7f9;
}

.site-footer {
  border-top: 1px solid #e5e7eb;
  background: #f6f7f9;
  padding: 56px 0 26px;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.site-footer__title {
  font-family: "Lexend", "Urbanist", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: #111827;
}

.site-footer__link {
  display: block;
  padding: 6px 0;
  color: #374151;
}

.site-footer__bottom {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding-top: 18px;
  flex-wrap: wrap;
}

.accordion__item {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 12px 14px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.02);
}

.accordion__item + .accordion__item {
  margin-top: 10px;
}

.accordion__summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.accordion__summary::-webkit-details-marker {
  display: none;
}

.accordion__content {
  padding-top: 10px;
  color: #6b7280;
  line-height: 1.6;
}

.post-card {
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 18px;
  background: #fff;
}

.post-card + .post-card {
  margin-top: 14px;
}

.post-card__title {
  font-family: "Lexend", "Urbanist", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  margin: 0 0 6px;
}

.post-card__meta {
  margin: 0 0 10px;
  color: #6b7280;
  font-size: 14px;
}

.prose {
  line-height: 1.8;
  font-size: 18px;
}

.prose p {
  margin: 0 0 16px;
}

@media (max-width: 920px) {
  .site-footer__top {
    grid-template-columns: 1fr;
  }
  .site-footer__cols {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
  }
  .site-nav.is-open {
    display: block;
  }
  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    padding: 14px 16px 20px;
  }
  .site-nav__item--cta {
    padding-top: 6px;
  }
}
.hero {
  padding: 72px 0 36px;
  background: radial-gradient(1200px 500px at 10% 0%, rgba(0, 181, 100, 0.12), transparent 60%), radial-gradient(900px 420px at 90% 10%, rgba(17, 24, 39, 0.06), transparent 60%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.hero__copy {
  max-width: 620px;
}

.hero__sub {
  margin-top: 10px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.hero__media {
  height: 520px;
  border-radius: 28px;
  background: url("../img/pronto/hero.webp") center/cover no-repeat;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
  border: 1px solid rgba(17, 24, 39, 0.06);
}

.hero--partner .hero__media--partner {
  background-image: url("../img/pronto/partner-hero.webp");
}

.stats {
  padding: 22px 0 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stat {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.04);
}

.stat__num {
  font-family: "Lexend", "Urbanist", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 28px;
  margin: 0 0 6px;
}

.stat__label {
  margin: 0;
  color: #6b7280;
}

.chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: #f6f7f9;
  border: 1px solid #e5e7eb;
  font-weight: 600;
  color: #374151;
}

.chip--muted {
  color: #6b7280;
  font-weight: 600;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.step {
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 18px;
  background: #fff;
}

.step__kicker {
  margin: 0 0 10px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #497749;
}

.step__title {
  margin: 0;
  font-weight: 700;
  line-height: 1.35;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card {
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 18px;
  background: #fff;
}

.card__quote {
  margin: 0 0 12px;
  color: #374151;
  line-height: 1.6;
}

.card__meta {
  margin: 0;
  color: #6b7280;
}

.cta {
  background: linear-gradient(145deg, rgba(0, 181, 100, 0.12), rgba(255, 255, 255, 0));
}

.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  border: 1px solid #e5e7eb;
  border-radius: 26px;
  padding: 26px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.05);
}

.stats-inline {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.stat-inline {
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 12px 14px;
  background: #fff;
}

.stat-inline__num {
  margin: 0 0 2px;
  font-family: "Lexend", "Urbanist", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.stat-inline__label {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
}

@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__media {
    height: 420px;
  }
  .steps,
  .cards {
    grid-template-columns: 1fr;
  }
  .stats__grid {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=main.css.map */