@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #2c3330;
  background: #faf8f5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: #4a7c6f;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
  transition: color 0.2s ease;
}
a:hover {
  color: #3a6358;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.25;
  color: #2c3330;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

ul, ol {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

li + li {
  margin-top: 0.35rem;
}

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

.container {
  width: min(100% - 2rem, 72rem);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e4dfd6;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.5rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}
.site-logo:hover {
  color: inherit;
}

.site-logo__mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #d4e8df, #e8f0eb);
  border: 2px solid rgba(74, 124, 111, 0.2);
  position: relative;
}
.site-logo__mark::after {
  content: "";
  position: absolute;
  inset: 0.55rem;
  border-radius: 50% 50% 50% 0;
  background: #4a7c6f;
  transform: rotate(-45deg);
  opacity: 0.85;
}

.site-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.site-logo__text strong {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 1.125rem;
  font-weight: 600;
}
.site-logo__text small {
  font-size: 0.75rem;
  color: #5f6b66;
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid #e4dfd6;
  border-radius: 0.5rem;
  background: #ffffff;
  cursor: pointer;
}
@media (min-width: 48rem) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle__bar {
  display: block;
  width: 1.125rem;
  height: 2px;
  margin-inline: auto;
  background: #2c3330;
  border-radius: 1px;
}

@media (max-width: 47.9375rem) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e4dfd6;
    box-shadow: 0 4px 24px rgba(44, 51, 48, 0.06);
    display: none;
  }
  .site-nav.is-open {
    display: block;
  }
  .site-nav ul {
    list-style: none;
    margin: 0;
    padding: 1rem;
  }
  .site-nav li {
    margin: 0;
  }
  .site-nav li + li {
    margin-top: 0;
  }
  .site-nav a {
    display: block;
    padding: 1rem;
    text-decoration: none;
    border-radius: 0.5rem;
  }
  .site-nav a:hover, .site-nav a[aria-current=page] {
    background: #f2efe8;
  }
}
@media (min-width: 48rem) {
  .site-nav ul {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .site-nav li {
    margin: 0;
  }
  .site-nav li + li {
    margin-top: 0;
  }
  .site-nav a {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #5f6b66;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: background 0.2s ease, color 0.2s ease;
  }
  .site-nav a:hover, .site-nav a[aria-current=page] {
    color: #3a6358;
    background: #d4e8df;
  }
}

.site-footer {
  margin-top: auto;
  background: #f2efe8;
  border-top: 1px solid #e4dfd6;
}

.site-footer__grid {
  display: grid;
  gap: 2.5rem;
  padding-block: 4rem;
}
@media (min-width: 48rem) {
  .site-footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.site-footer__title {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.site-footer__label {
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #5f6b66;
  margin-bottom: 1rem;
}

.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer__links a {
  text-decoration: none;
  color: #2c3330;
}
.site-footer__links a:hover {
  color: #4a7c6f;
}
.site-footer__links li + li {
  margin-top: 0.5rem;
}

.site-footer__bottom {
  border-top: 1px solid #e4dfd6;
  padding-block: 1.5rem;
}
.site-footer__bottom p {
  margin: 0;
  font-size: 0.875rem;
  color: #8a9690;
}

.page-header {
  padding-block: 4rem 2.5rem;
  background: linear-gradient(180deg, #e8f0eb 0%, #faf8f5 100%);
}

.page-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4a7c6f;
  margin-bottom: 0.5rem;
}

.page-intro {
  font-size: 1.25rem;
  color: #5f6b66;
  max-width: 42rem;
  margin-top: 1rem;
  line-height: 1.6;
}

.page-content {
  padding-block: 2.5rem 4rem;
}
.page-content h2 {
  margin-top: 2.5rem;
}
.page-content h2:first-child {
  margin-top: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#main-content {
  flex: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: #4a7c6f;
  color: white;
}
.btn--primary:hover {
  color: white;
  background: #3a6358;
  box-shadow: 0 4px 24px rgba(44, 51, 48, 0.06);
}

.btn--secondary {
  background: #ffffff;
  color: #3a6358;
  border-color: #d4e8df;
}
.btn--secondary:hover {
  background: #d4e8df;
  color: #3a6358;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero {
  padding-block: 4rem 6rem;
  background: radial-gradient(ellipse 80% 60% at 70% 20%, rgba(212, 232, 223, 0.5), transparent), radial-gradient(ellipse 60% 50% at 10% 80%, rgba(243, 228, 220, 0.6), transparent), linear-gradient(180deg, #e8f0eb 0%, #faf8f5 100%);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 64rem) {
  .hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.hero__eyebrow {
  display: inline-block;
  padding: 0.35rem 0.875rem;
  background: #ffffff;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #4a7c6f;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  box-shadow: 0 4px 24px rgba(44, 51, 48, 0.06);
}

.hero__title {
  margin-bottom: 1rem;
}

.hero__lead {
  font-size: 1.2rem;
  color: #5f6b66;
  max-width: 34rem;
  line-height: 1.65;
}

.hero__mission-tagline {
  display: block;
  margin-top: 0.65rem;
  color: #3a6358;
  font-weight: 600;
}

.hero__visual {
  position: relative;
  border-radius: 1.5rem;
  background: #ffffff;
  box-shadow: 0 8px 32px rgba(44, 51, 48, 0.08);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero__visual-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8a9690;
}

.tool-slider {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tool-slider__viewport {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid #e4dfd6;
  background: #f2efe8;
}

.tool-slider__track {
  position: relative;
}

.tool-slider__slide {
  display: grid;
  gap: 1rem;
}
.tool-slider__slide[hidden] {
  display: none;
}

.tool-slider__media {
  overflow: hidden;
  border-bottom: 1px solid #e4dfd6;
}
.tool-slider__media img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.tool-slider__body {
  padding: 0 1rem 1rem;
}

.tool-slider__badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.tool-slider__badge--live {
  background: #d4e8df;
  color: #3a6358;
}

.tool-slider__badge--beta {
  background: #f3e4dc;
  color: #9a6b58;
}

.tool-slider__title {
  font-size: 1.125rem;
  margin: 0 0 0.35rem;
}

.tool-slider__summary {
  font-size: 0.875rem;
  color: #5f6b66;
  line-height: 1.5;
  margin: 0 0 0.5rem;
}

.tool-slider__link {
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  color: #4a7c6f;
}
.tool-slider__link:hover {
  color: #3a6358;
  text-decoration: underline;
}

.tool-slider__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.tool-slider__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 1px solid #e4dfd6;
  border-radius: 999px;
  background: #ffffff;
  color: #2c3330;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.tool-slider__arrow:hover {
  border-color: rgba(74, 124, 111, 0.4);
  background: #d4e8df;
  color: #3a6358;
}
.tool-slider__arrow:focus-visible {
  outline: 2px solid #4a7c6f;
  outline-offset: 2px;
}

.tool-slider__dots {
  display: flex;
  gap: 0.4rem;
}

.tool-slider__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: #e4dfd6;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.tool-slider__dot.is-active, .tool-slider__dot[aria-selected=true] {
  background: #4a7c6f;
  transform: scale(1.15);
}
.tool-slider__dot:focus-visible {
  outline: 2px solid #4a7c6f;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .tool-slider__dot {
    transition: none;
  }
}
.hero__pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  display: inline-block;
  padding: 0.4rem 0.875rem;
  background: #f2efe8;
  border-radius: 999px;
  font-size: 0.875rem;
  color: #5f6b66;
}

.pill--accent {
  background: #f3e4dc;
  color: rgb(150.5759615385, 85.8990384615, 59.6240384615);
}

.section {
  padding-block: 4rem;
}

.section--alt {
  background: #f2efe8;
}

.section__header {
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

.section__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c4846a;
  margin-bottom: 0.5rem;
}

.section__lead {
  color: #5f6b66;
  font-size: 1.0625rem;
}

.card-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 48rem) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 64rem) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: #ffffff;
  border: 1px solid #e4dfd6;
  border-radius: 1rem;
  padding: 2.5rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover {
  box-shadow: 0 4px 24px rgba(44, 51, 48, 0.06);
  transform: translateY(-2px);
}

.card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.5rem;
  background: #d4e8df;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.card__title {
  margin-bottom: 0.5rem;
}

.card__text {
  color: #5f6b66;
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.card__link {
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
}
.card__link::after {
  content: " →";
}

.team-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 48rem) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.team-card {
  background: #ffffff;
  border: 1px solid #e4dfd6;
  border-radius: 1rem;
  padding: 2.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.team-card__avatar {
  flex-shrink: 0;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #d4e8df, #f3e4dc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #3a6358;
}

.team-card__photo {
  flex-shrink: 0;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #d4e8df;
  box-shadow: 0 4px 24px rgba(44, 51, 48, 0.06);
}

.team-card--profile {
  align-items: flex-start;
}
@media (min-width: 48rem) {
  .team-card--profile {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

.team-card--profile .team-card__photo {
  width: 7rem;
  height: 7rem;
}

.team-card__tagline {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 1rem;
  color: #3a6358;
  margin: 0 0 1rem;
  font-style: italic;
}

.team-together {
  margin-top: 4rem;
  padding: 4rem;
  background: linear-gradient(145deg, #e8f0eb, #f3e4dc);
  border-radius: 1.5rem;
  border: 1px solid #e4dfd6;
}

.team-together h2 {
  margin-bottom: 1rem;
}

.team-together p {
  color: #5f6b66;
  max-width: 40rem;
}

.team-together p + p {
  margin-top: 1rem;
}

.unique-position {
  margin-block: 2.5rem;
}

.unique-position__intro,
.unique-position__lead {
  color: #5f6b66;
  max-width: 40rem;
  margin: 0 0 1.5rem;
}

.unique-position__lead {
  font-size: 1.0625rem;
}

.unique-position__conclusion {
  color: #2c3330;
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 40rem;
  margin: 1.5rem 0 0;
}

.expertise-pair {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 48rem) {
  .expertise-pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.expertise-card {
  background: #ffffff;
  border: 1px solid #e4dfd6;
  border-radius: 1rem;
  padding: 1.5rem;
}

.expertise-card__name {
  font-size: 1.125rem;
  margin: 0 0 1rem;
  color: #3a6358;
}

.expertise-card__tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.expertise-card__tags li {
  margin: 0;
  padding: 0.3rem 0.65rem;
  background: #f2efe8;
  border-radius: 999px;
  font-size: 0.8125rem;
  color: #5f6b66;
}
.expertise-card__tags li + li {
  margin-top: 0;
}

.unique-position--visie {
  padding: 2.5rem;
  background: linear-gradient(145deg, #e8f0eb, #ffffff);
  border: 1px solid #e4dfd6;
  border-radius: 1.5rem;
}

.team-card__role {
  font-size: 0.875rem;
  color: #4a7c6f;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.team-card__bio {
  color: #5f6b66;
  font-size: 0.9375rem;
  margin: 0;
}

.values-list {
  display: grid;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 48rem) {
  .values-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.value-item {
  background: #ffffff;
  border: 1px solid #e4dfd6;
  border-radius: 1rem;
  padding: 2.5rem;
}

.value-item__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #d4e8df;
  color: #3a6358;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.value-item h3 {
  color: #3a6358;
}

.value-item p {
  color: #5f6b66;
  font-size: 0.9375rem;
  margin: 0;
}

.tool-list {
  display: grid;
  gap: 1.5rem;
}

.tool-item {
  display: grid;
  gap: 1rem;
  background: #ffffff;
  border: 1px solid #e4dfd6;
  border-radius: 1rem;
  padding: 2.5rem;
}
@media (min-width: 48rem) {
  .tool-item {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
  }
}

.tool-item__status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tool-item__status--live {
  background: #d4e8df;
  color: #3a6358;
}

.tool-item__status--soon {
  background: #f3e4dc;
  color: rgb(161.5360576923, 92.1514423077, 63.9639423077);
}

.tool-item__desc {
  color: #5f6b66;
  font-size: 0.9375rem;
  margin: 0;
}

.tool-showcases {
  display: grid;
  gap: 2.5rem;
  margin-top: 1.5rem;
}

.tool-showcase {
  background: #ffffff;
  border: 1px solid #e4dfd6;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(44, 51, 48, 0.06);
}

.tool-showcase__header {
  padding: 1.5rem 1.5rem 0;
}

.tool-showcase__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
}

.tool-showcase__badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.tool-showcase__badge--live {
  background: #d4e8df;
  color: #3a6358;
}

.tool-showcase__badge--beta {
  background: #f3e4dc;
  color: #9a6b58;
}

.tool-showcase__title {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin: 0;
}

.tool-showcase__intro {
  display: grid;
  gap: 1.5rem;
  padding: 1.5rem;
  align-items: start;
}
@media (min-width: 48rem) {
  .tool-showcase__intro {
    grid-template-columns: min(16rem, 38%) 1fr;
    gap: 1.5rem 2.5rem;
  }
}

.tool-showcase__preview {
  margin: 0;
}

.tool-showcase__thumb {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid #e4dfd6;
  border-radius: 1rem;
  background: #f2efe8;
  cursor: zoom-in;
  overflow: hidden;
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.tool-showcase__thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.tool-showcase__thumb:hover, .tool-showcase__thumb:focus-visible {
  border-color: rgba(74, 124, 111, 0.45);
  box-shadow: 0 8px 32px rgba(44, 51, 48, 0.08);
  outline: none;
}

.tool-showcase__expand {
  position: absolute;
  inset: auto 0.5rem 0.5rem auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(44, 51, 48, 0.78);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.88;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

@media (hover: hover) {
  .tool-showcase__expand {
    opacity: 0;
  }
  .tool-showcase__thumb:hover .tool-showcase__expand,
  .tool-showcase__thumb:focus-visible .tool-showcase__expand {
    opacity: 1;
  }
}
.tool-showcase__preview figcaption {
  margin-top: 0.4rem;
  font-size: 0.8125rem;
  color: #8a9690;
  line-height: 1.4;
}

.tool-showcase__summary {
  min-width: 0;
}

.tool-showcase__lead {
  color: #2c3330;
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 0 1rem;
}

.tool-showcase__details {
  display: grid;
  gap: 1.5rem;
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid #e4dfd6;
}
@media (min-width: 48rem) {
  .tool-showcase__details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 2.5rem;
    padding-top: 1.5rem;
  }
}

.tool-showcase__section h3 {
  color: #3a6358;
  font-size: 0.9375rem;
  margin: 0 0 0.5rem;
}
.tool-showcase__section p {
  color: #5f6b66;
  font-size: 0.875rem;
  line-height: 1.55;
  margin: 0 0 0.65rem;
}
.tool-showcase__section p:last-child {
  margin-bottom: 0;
}
.tool-showcase__section ul:not(.tool-showcase__features) {
  margin: 0;
  padding-left: 1.1rem;
  color: #5f6b66;
  font-size: 0.875rem;
  line-height: 1.5;
}
.tool-showcase__section ul:not(.tool-showcase__features) li + li {
  margin-top: 0.35rem;
}

.tool-showcase__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.tool-showcase__features li {
  padding: 0.45rem 0.65rem;
  background: #f2efe8;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #5f6b66;
}
.tool-showcase__features li strong {
  color: #2c3330;
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.1rem;
}

.tool-showcase__note {
  grid-column: 1/-1;
  padding: 1rem 1.5rem;
  background: #d4e8df;
  border-radius: 1rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #3a6358;
  margin: 0;
}

.image-lightbox {
  width: min(92vw, 72rem);
  max-height: 92vh;
  padding: 0;
  border: none;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 8px 32px rgba(44, 51, 48, 0.08);
  overflow: hidden;
  position: relative;
}
.image-lightbox::backdrop {
  background: rgba(44, 51, 48, 0.72);
}

.image-lightbox__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 1;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 999px;
  background: rgba(44, 51, 48, 0.82);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}
.image-lightbox__close:hover {
  background: #2c3330;
}

.image-lightbox__figure {
  margin: 0;
}

.image-lightbox__img {
  display: block;
  width: 100%;
  max-height: calc(92vh - 3rem);
  object-fit: contain;
  background: #f2efe8;
}

.image-lightbox__caption {
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  color: #5f6b66;
  text-align: center;
}

.ideas-cta {
  margin-top: 4rem;
  padding: 4rem;
  background: linear-gradient(145deg, #f3e4dc, #e8f0eb);
  border: 1px solid #e4dfd6;
  border-radius: 1.5rem;
  text-align: center;
}
.ideas-cta h2 {
  margin-bottom: 1rem;
  color: #3a6358;
}
.ideas-cta p {
  color: #5f6b66;
  font-size: 1.0625rem;
  max-width: 32rem;
  margin-inline: auto;
  margin-bottom: 0;
}
.ideas-cta p + p {
  margin-top: 1rem;
}
.ideas-cta a {
  font-weight: 600;
  white-space: nowrap;
}

.pricing-status {
  padding: 2.5rem;
  background: #d4e8df;
  border: 1px solid rgba(74, 124, 111, 0.2);
  border-radius: 1.5rem;
  margin-bottom: 2.5rem;
}
.pricing-status p {
  margin: 0;
  color: #5f6b66;
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 40rem;
}

.pricing-status__badge {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.25rem 0.75rem;
  background: #ffffff;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #3a6358;
}

.pricing-cta {
  margin: 1.5rem 0 4rem;
}

.contact-form-block {
  margin-block: 2.5rem;
  padding: 2.5rem;
  background: #ffffff;
  border: 1px solid #e4dfd6;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(44, 51, 48, 0.06);
}

.contact-form__heading {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

.contact-form__intro,
.contact-form__fallback {
  color: #5f6b66;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
  max-width: 40rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  max-width: 32rem;
}

.contact-form__field {
  display: grid;
  gap: 0.35rem;
}

.contact-form__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2c3330;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid #e4dfd6;
  border-radius: 0.5rem;
  background: #faf8f5;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  color: #2c3330;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: rgba(74, 124, 111, 0.5);
  box-shadow: 0 0 0 3px rgba(74, 124, 111, 0.12);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 7rem;
}

.contact-form__gotcha {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-form__submit {
  justify-self: start;
  margin-top: 0.25rem;
}

.cta-band {
  padding-block: 4rem;
  background: linear-gradient(135deg, #4a7c6f 0%, #3a6358 100%);
  color: white;
  text-align: center;
}

.cta-band h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 32rem;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}

.cta-band .btn--secondary {
  background: white;
  border-color: white;
  color: #3a6358;
}
.cta-band .btn--secondary:hover {
  background: #d4e8df;
}

.mission-statement {
  margin-block: 2.5rem;
  padding: 2.5rem;
  background: linear-gradient(145deg, #e8f0eb, #ffffff);
  border: 1px solid #e4dfd6;
  border-radius: 1.5rem;
}

.mission-statement--page {
  margin-top: 0;
}

.mission-statement--compact {
  margin-block: 1.5rem 2.5rem;
  padding: 1.5rem 2.5rem;
}

.mission-statement__text {
  margin: 0;
  color: #5f6b66;
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 42rem;
}

.mission-statement__tagline {
  margin: 1rem 0 0;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #3a6358;
}

.highlight-box {
  background: #d4e8df;
  border-radius: 1rem;
  padding: 2.5rem;
  border-left: 4px solid #4a7c6f;
}
.highlight-box p {
  margin: 0;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #3a6358;
}

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