:root {
  --bone: #fdfcf8;
  --moss: #f2f4ef;
  --moss-strong: #e6eadf;
  --forest: #1b4332;
  --forest-deep: #012d1d;
  --leaf: #74a12e;
  --leaf-soft: #dff0c8;
  --rave: #f38d2c;
  --rave-deep: #b65309;
  --ink: #14231b;
  --muted: #5f6c63;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(27, 67, 50, 0.12);
  --soft-shadow: 0 16px 38px rgba(27, 67, 50, 0.08);
  font-family: "Be Vietnam Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bone);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
}

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

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

#technology,
#products,
#about,
#contact {
  scroll-margin-top: 104px;
}

button,
input {
  font: inherit;
}

.site-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section-kicker {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 13px;
  color: var(--forest-deep);
  background: var(--leaf-soft);
  border-radius: 999px;
  font: 800 12px/1 "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: 800 14px/1 "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: 0;
}

.btn-primary {
  color: var(--white);
  background: var(--rave);
  box-shadow: 0 14px 28px rgba(243, 141, 44, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #ff9a3d;
  box-shadow: 0 18px 36px rgba(243, 141, 44, 0.34);
}

.btn-secondary {
  color: var(--forest);
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(27, 67, 50, 0.28);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--white);
  border-color: var(--forest);
}

.section {
  padding: 96px 0;
}

.section-light {
  background: var(--bone);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  align-items: center;
  gap: 72px;
}

.section-copy h2,
.section-heading h2,
.story-copy h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.03;
}

.section-copy p:not(.section-kicker),
.section-heading p:not(.section-kicker),
.story-copy p:not(.section-kicker) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.inline-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.inline-metrics span {
  padding: 11px 14px;
  color: var(--forest);
  background: var(--moss);
  border: 1px solid rgba(27, 67, 50, 0.08);
  border-radius: 999px;
  font: 700 13px/1 "Plus Jakarta Sans", sans-serif;
}

.tech-panel {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(27, 67, 50, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 18%, rgba(116, 161, 46, 0.16), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(242, 244, 239, 0.92));
  box-shadow: var(--shadow);
}

.tech-visual {
  overflow: hidden;
  border-radius: 26px;
  background: var(--white);
}

.tech-visual img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
}

.tech-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.tech-stats div {
  padding: 18px;
  border-radius: 22px;
  background: var(--forest);
}

.tech-stats strong {
  display: block;
  color: var(--rave);
  font: 800 34px/1 "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.04em;
}

.tech-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

.benefits-section {
  padding-top: 0;
}

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

.benefit-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
  border: 1px solid rgba(27, 67, 50, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.benefit-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 999px;
}

.benefit-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.leaf-icon {
  color: var(--forest);
  background: #c9f67d;
}

.orange-icon {
  color: var(--forest-deep);
  background: #ffd2ad;
}

.mint-icon {
  color: var(--forest);
  background: #c7f1dc;
}

.benefit-card h3,
.product-card h3,
.site-footer h3 {
  margin: 0;
  color: var(--forest-deep);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
}

.benefit-card h3 {
  font-size: 22px;
}

.benefit-card p {
  max-width: 270px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.products-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(243, 141, 44, 0.09), transparent 28%),
    var(--moss);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading .section-kicker {
  margin-inline: auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  overflow: hidden;
  border: 1px solid rgba(27, 67, 50, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(27, 67, 50, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(116, 161, 46, 0.32);
  box-shadow: var(--shadow);
}

.product-card img {
  width: calc(100% - 24px);
  aspect-ratio: 1.12;
  margin: 12px;
  object-fit: cover;
  border-radius: 18px;
  background: var(--bone);
}

.product-card-body {
  padding: 0 20px 22px;
}

.product-card h3 {
  font-size: 20px;
  line-height: 1.25;
}

.product-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.story-section {
  padding: 104px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 22% 18%, rgba(116, 161, 46, 0.22), transparent 32%),
    linear-gradient(135deg, #123626 0%, var(--forest) 58%, #0f2d20 100%);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 72px;
}

.story-image {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.story-image img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.story-copy .section-kicker {
  color: #eaffca;
  background: rgba(116, 161, 46, 0.22);
}

.story-copy h2 {
  color: var(--white);
}

.story-copy p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.82);
}

.story-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 34px;
}

.story-stats strong {
  display: block;
  color: var(--rave);
  font: 800 46px/1 "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.05em;
}

.story-stats span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font: 800 12px/1.3 "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  padding: 70px 0 26px;
  color: rgba(255, 255, 255, 0.78);
  background: #123626;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.8fr 1.1fr;
  gap: 54px;
}

.footer-brand img {
  width: 160px;
  margin-bottom: 18px;
}

.footer-brand p,
.footer-form p {
  margin: 0;
  max-width: 280px;
  line-height: 1.65;
}

.site-footer h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 17px;
}

.site-footer a {
  display: block;
  margin-top: 11px;
  transition: color 180ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--rave);
  outline: 0;
}

.footer-form {
  display: grid;
  gap: 12px;
}

.footer-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.footer-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.footer-form input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.footer-form input:focus {
  border-color: var(--rave);
  outline: 0;
}

.footer-form .btn {
  width: 100%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

@media (max-width: 1024px) {
  .two-column,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  #technology,
  #products,
  #about,
  #contact {
    scroll-margin-top: 150px;
  }

  .site-shell {
    width: min(100% - 32px, 1180px);
  }

  .section-copy,
  .section-heading,
  .story-copy,
  .benefit-card,
  .product-card-body,
  .footer-brand,
  .site-footer > div > div {
    text-align: center;
  }

  .section-kicker {
    margin-inline: auto;
  }

  .story-stats {
    justify-content: center;
  }

  .footer-brand img {
    margin-inline: auto;
  }

  .footer-brand p {
    margin-inline: auto;
  }

  .site-footer a {
    text-align: center;
  }

  .section {
    padding: 72px 0;
  }

  .two-column,
  .story-grid {
    gap: 38px;
  }

  .benefits-section {
    padding-top: 0;
  }

  .benefit-grid,
  .product-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 230px;
  }

  .story-section {
    padding: 76px 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .story-stats {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .tech-stats {
    grid-template-columns: 1fr;
  }

  .hero-card {
    border-radius: 24px;
  }
}
