:root {
  --lpm-site-green: #06c755;
  --lpm-site-green-dark: #064022;
  --lpm-site-ink: #102417;
  --lpm-site-muted: #5d7367;
  --lpm-site-line: #d9eadf;
  --lpm-site-soft: #f0fff5;
  --lpm-site-cream: #fff9e6;
  --lpm-site-shadow: 0 24px 60px rgba(6, 64, 34, .1);
}

* {
  box-sizing: border-box;
}

body.lpm-site-body {
  margin: 0;
  background: #f7fcf8;
  color: var(--lpm-site-ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.lpm-site {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(6, 199, 85, .08), rgba(255, 255, 255, 0) 420px),
    #f7fcf8;
  color: var(--lpm-site-ink);
}

.lpm-site a {
  color: inherit;
}

.lpm-site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
}

.lpm-site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lpm-site-green-dark);
  text-decoration: none;
}

.lpm-site-brand span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--lpm-site-green);
  color: #fff;
  font-weight: 800;
}

.lpm-site-brand strong {
  font-size: 18px;
}

.lpm-site-header nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(6, 64, 34, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 12px 30px rgba(6, 64, 34, .06);
  backdrop-filter: blur(12px);
}

.lpm-site-header nav a {
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--lpm-site-muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.lpm-site-header nav a:hover {
  background: var(--lpm-site-soft);
  color: var(--lpm-site-green-dark);
}

.lpm-site-hero,
.lpm-site-band,
.lpm-site-page-head,
.lpm-site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.lpm-site-hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .84fr);
  align-items: center;
  gap: 58px;
  padding: 42px 0 72px;
}

.lpm-site-kicker {
  margin: 0 0 10px;
  color: #008a3f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lpm-site-hero h1,
.lpm-site-page-head h1 {
  margin: 0;
  color: var(--lpm-site-green-dark);
  font-size: clamp(48px, 8vw, 92px);
  line-height: .95;
}

.lpm-site-hero-copy > p:not(.lpm-site-kicker),
.lpm-site-page-head > p {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--lpm-site-muted);
  font-size: 19px;
  line-height: 1.9;
}

.lpm-site-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.lpm-site-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--lpm-site-green);
  border-radius: 8px;
  background: var(--lpm-site-green);
  color: #fff !important;
  font-weight: 800;
  text-decoration: none;
  padding: 0 18px;
}

.lpm-site-button.is-ghost {
  border-color: var(--lpm-site-line);
  background: #fff;
  color: var(--lpm-site-green-dark) !important;
}

.lpm-site-hero-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lpm-site-hero-visual figure {
  margin: 0;
  min-height: 170px;
  display: grid;
  place-items: center;
  gap: 10px;
  border: 1px solid var(--lpm-site-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--lpm-site-shadow);
  padding: 18px;
}

.lpm-site-hero-visual figure:first-child {
  grid-column: 1 / -1;
  min-height: 230px;
  background: linear-gradient(135deg, #fff, var(--lpm-site-soft));
}

.lpm-site-hero-visual img {
  width: 104px;
  height: 104px;
  object-fit: contain;
  border-radius: 8px;
}

.lpm-site-hero-visual figure:first-child img {
  width: 132px;
  height: 132px;
}

.lpm-site-hero-visual figcaption {
  color: var(--lpm-site-green-dark);
  font-weight: 900;
}

.lpm-site-band {
  padding: 72px 0;
}

.lpm-site-band.is-soft {
  width: 100%;
  margin: 0;
  padding-inline: max(16px, calc((100% - 1180px) / 2));
  background: #fff;
}

.lpm-site-band h2,
.lpm-site-page-head h1 {
  max-width: 760px;
}

.lpm-site-band h2 {
  margin: 0 0 24px;
  color: var(--lpm-site-green-dark);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.12;
}

.lpm-site-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.lpm-site-feature-grid article,
.lpm-site-product,
.lpm-site-step-list article {
  border: 1px solid var(--lpm-site-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(6, 64, 34, .06);
}

.lpm-site-feature-grid article {
  padding: 24px;
}

.lpm-site-feature-grid span {
  color: #008a3f;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lpm-site-feature-grid h3 {
  margin: 10px 0;
  font-size: 22px;
}

.lpm-site-feature-grid p,
.lpm-site-product p,
.lpm-site-product span,
.lpm-site-step-list p,
.lpm-site-footer span {
  color: var(--lpm-site-muted);
  line-height: 1.75;
}

.lpm-site-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.lpm-site-section-head h2 {
  margin-bottom: 0;
}

.lpm-site-section-head a {
  color: #008a3f;
  font-weight: 900;
  text-decoration: none;
}

.lpm-site-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.lpm-site-product-grid.is-compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.lpm-site-product {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.lpm-site-product img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border: 1px solid var(--lpm-site-line);
  border-radius: 8px;
  background: #fff;
}

.lpm-site-product h3 {
  margin: 4px 0 8px;
  font-size: 22px;
}

.lpm-site-product p:first-child {
  margin: 0;
  color: #008a3f;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lpm-site-product strong {
  display: block;
  color: var(--lpm-site-green-dark);
  font-size: 28px;
}

.lpm-site-product span {
  display: block;
  margin-top: 2px;
  font-size: 13px;
}

.lpm-site-product p:last-child {
  margin: 14px 0 0;
}

.lpm-site-page-head {
  padding: 70px 0 34px;
}

.lpm-site-step-list {
  display: grid;
  gap: 14px;
}

.lpm-site-step-list article {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
}

.lpm-site-step-list span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--lpm-site-green);
  color: #fff;
  font-weight: 900;
}

.lpm-site-step-list h2 {
  margin: 0 0 8px;
  color: var(--lpm-site-green-dark);
  font-size: 28px;
}

.lpm-site-step-list p {
  margin: 0;
}

.lpm-site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--lpm-site-line);
  padding: 28px 0 40px;
}

.lpm-site-footer strong {
  color: var(--lpm-site-green-dark);
}

@media (max-width: 980px) {
  .lpm-site-hero,
  .lpm-site-feature-grid,
  .lpm-site-product-grid,
  .lpm-site-product-grid.is-compact {
    grid-template-columns: 1fr;
  }

  .lpm-site-hero {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .lpm-site-header,
  .lpm-site-section-head,
  .lpm-site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .lpm-site-header nav {
    justify-content: space-between;
  }

  .lpm-site-hero h1,
  .lpm-site-page-head h1 {
    font-size: 52px;
  }

  .lpm-site-step-list article {
    grid-template-columns: 1fr;
  }
}
