body.oe-landing {
  --oe-bg: #f6f8f4;
  --oe-surface: #ffffff;
  --oe-text: #111712;
  --oe-muted: #59665f;
  --oe-line: #dbe4dc;
  --oe-green: #13a10e;
  --oe-green-dark: #08723f;
  --oe-yellow: #f4e600;
  --oe-ink: #161b18;
  --oe-smoke: #edf2ee;
  --oe-bluegrey: #e8eef2;
  --oe-shadow: 0 18px 46px rgba(22, 31, 26, 0.1);
  margin: 0;
  background: var(--oe-bg);
  color: var(--oe-text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.oe-landing a {
  color: inherit;
}

.oe-landing__skip {
  position: absolute;
  top: -64px;
  left: 16px;
  z-index: 1050;
  padding: 10px 14px;
  background: #ffffff;
  border: 2px solid var(--oe-green);
  border-radius: 6px;
  color: var(--oe-text);
  font-weight: 800;
  text-decoration: none;
}

.oe-landing__skip:focus {
  top: 16px;
}

.oe-landing__hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 610px;
  padding: 82px 0 72px;
  overflow: hidden;
  background-color: #17211b;
  background-image:
    linear-gradient(90deg, rgba(14, 22, 17, 0.95) 0%, rgba(14, 22, 17, 0.82) 44%, rgba(14, 22, 17, 0.28) 72%, rgba(14, 22, 17, 0.12) 100%),
    var(--oe-hero-image);
  background-position: center, right center;
  background-size: auto, cover;
  background-repeat: no-repeat;
  color: #ffffff;
}

.oe-landing--product .oe-landing__hero {
  background-color: #eef2ef;
  background-image:
    linear-gradient(90deg, rgba(14, 22, 17, 0.95) 0%, rgba(14, 22, 17, 0.84) 50%, rgba(14, 22, 17, 0.1) 100%),
    var(--oe-hero-image);
  background-position: center, right 9% center;
  background-size: auto, 440px auto;
}

.oe-landing__hero-inner {
  position: relative;
  z-index: 1;
}

.oe-landing__eyebrow {
  margin: 0 0 12px;
  color: var(--oe-green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.oe-landing__hero .oe-landing__eyebrow,
.oe-landing__cta .oe-landing__eyebrow {
  color: var(--oe-yellow);
}

.oe-landing h1,
.oe-landing h2,
.oe-landing h3,
.oe-landing p {
  margin-top: 0;
}

.oe-landing h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 56px;
  font-weight: 900;
  line-height: 1.04;
}

.oe-landing__lead {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  line-height: 1.5;
}

.oe-landing__actions {
  margin-top: 32px;
}

.oe-landing__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.oe-landing__button:hover,
.oe-landing__button:focus-visible {
  transform: translateY(-1px);
}

.oe-landing__button--primary {
  background: var(--oe-yellow);
  color: var(--oe-text) !important;
  border: 1px solid var(--oe-yellow);
}

.oe-landing__button--primary:hover,
.oe-landing__button--primary:focus-visible {
  background: #fff15c;
  border-color: #fff15c;
}

.oe-landing__button--outline {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.44);
}

.oe-landing__button--outline:hover,
.oe-landing__button--outline:focus-visible {
  background: #ffffff;
  color: var(--oe-text) !important;
  border-color: #ffffff;
}

.oe-landing__button--dark {
  background: transparent;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.oe-landing__button--dark:hover,
.oe-landing__button--dark:focus-visible {
  background: #ffffff;
  color: var(--oe-text) !important;
  border-color: #ffffff;
}

.oe-landing__quickbar {
  position: relative;
  z-index: 3;
  margin-top: -26px;
  margin-bottom: 42px;
}

.oe-landing__quicknav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  overflow-x: auto;
  background: #ffffff;
  border: 1px solid var(--oe-line);
  border-radius: 8px;
  box-shadow: var(--oe-shadow);
}

.oe-landing__quicknav a {
  flex: 0 0 auto;
  padding: 9px 13px;
  color: var(--oe-muted);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.oe-landing__quicknav a:hover,
.oe-landing__quicknav a:focus-visible,
.oe-landing__quicknav a.is-active {
  background: var(--oe-smoke);
  color: var(--oe-text);
}

.oe-landing__quicknav a.is-active {
  box-shadow: inset 0 -2px 0 var(--oe-green);
}

.oe-landing__facts {
  margin-bottom: 28px;
}

.oe-landing__fact {
  min-height: 128px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--oe-line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(22, 31, 26, 0.06);
}

.oe-landing__fact strong,
.oe-landing__fact span {
  display: block;
}

.oe-landing__fact strong {
  margin-bottom: 7px;
  color: var(--oe-text);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.12;
}

.oe-landing__fact span {
  color: var(--oe-muted);
  font-size: 15px;
  line-height: 1.4;
}

.oe-landing__section {
  padding: 74px 0;
}

.oe-landing__section-title {
  max-width: 560px;
}

.oe-landing h2 {
  margin-bottom: 16px;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.1;
}

.oe-landing h3 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.22;
}

.oe-landing__copy {
  max-width: 820px;
}

.oe-landing__copy p,
.oe-landing__section-head p,
.oe-landing__card p,
.oe-landing__cta p,
.oe-landing .accordion-body {
  color: var(--oe-muted);
  font-size: 18px;
  line-height: 1.58;
}

.oe-landing__copy p:last-child,
.oe-landing__card p:last-child,
.oe-landing__cta p:last-child {
  margin-bottom: 0;
}

.oe-landing__list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.oe-landing__list li {
  position: relative;
  min-height: 24px;
  padding-left: 34px;
  color: var(--oe-muted);
  font-size: 17px;
  line-height: 1.48;
}

.oe-landing__list li::before {
  content: "";
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 18px;
  height: 18px;
  border: 5px solid #ffffff;
  border-radius: 50%;
  background: var(--oe-green);
  box-shadow: 0 0 0 1px var(--oe-line);
}

.oe-landing__section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.oe-landing__card {
  min-height: 245px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--oe-line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(22, 31, 26, 0.06);
}

.oe-landing__card span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 18px;
  padding: 4px 9px;
  background: var(--oe-bluegrey);
  color: var(--oe-green-dark);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.oe-landing__section--soft {
  background: #e9f0e8;
  border-top: 1px solid var(--oe-line);
  border-bottom: 1px solid var(--oe-line);
}

.oe-landing__spec {
  min-height: 118px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--oe-line);
  border-radius: 8px;
}

.oe-landing__spec span,
.oe-landing__spec strong {
  display: block;
}

.oe-landing__spec span {
  margin-bottom: 7px;
  color: var(--oe-muted);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.28;
  text-transform: uppercase;
}

.oe-landing__spec strong {
  color: var(--oe-text);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.18;
}

.oe-landing__faq {
  border: 1px solid var(--oe-line);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(22, 31, 26, 0.06);
}

.oe-landing__faq .accordion-item {
  border: 0;
  border-bottom: 1px solid var(--oe-line);
}

.oe-landing__faq .accordion-item:last-child {
  border-bottom: 0;
}

.oe-landing__faq .accordion-button {
  min-height: 66px;
  padding: 19px 22px;
  color: var(--oe-text);
  background: #ffffff;
  box-shadow: none;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.oe-landing__faq .accordion-button:not(.collapsed) {
  color: var(--oe-text);
  background: var(--oe-smoke);
}

.oe-landing__faq .accordion-button:focus {
  border-color: transparent;
  box-shadow: inset 0 0 0 2px rgba(19, 161, 14, 0.22);
}

.oe-landing__faq .accordion-body {
  padding: 0 22px 22px;
  background: #ffffff;
}

.oe-landing__cta {
  padding: 62px 0;
  background: var(--oe-ink);
  color: #ffffff;
}

.oe-landing__cta h2 {
  max-width: 860px;
  margin-bottom: 12px;
  color: #ffffff;
}

.oe-landing__cta p {
  max-width: 820px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.oe-landing__cta-actions {
  align-items: stretch;
}

.oe-landing__cta-actions .oe-landing__button {
  width: 100%;
}

@media (max-width: 1199px) {
  .oe-landing h1 {
    font-size: 48px;
  }

  .oe-landing h2 {
    font-size: 36px;
  }

  .oe-landing--product .oe-landing__hero {
    background-position: center, right -90px center;
  }
}

@media (max-width: 991px) {
  .oe-landing__hero {
    min-height: 560px;
    padding: 70px 0 62px;
    background-image:
      linear-gradient(90deg, rgba(14, 22, 17, 0.95) 0%, rgba(14, 22, 17, 0.86) 62%, rgba(14, 22, 17, 0.46) 100%),
      var(--oe-hero-image);
  }

  .oe-landing--product .oe-landing__hero {
    background-position: center, right -180px center;
    background-size: auto, 390px auto;
  }

  .oe-landing h1 {
    font-size: 42px;
  }

  .oe-landing__lead {
    font-size: 18px;
  }

  .oe-landing__section {
    padding: 58px 0;
  }
}

@media (max-width: 767px) {
  .oe-landing__hero {
    min-height: 610px;
    padding: 56px 0 58px;
  }

  .oe-landing--product .oe-landing__hero {
    background-position: center, right -210px center;
    background-size: auto, 350px auto;
  }

  .oe-landing h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .oe-landing h2 {
    font-size: 30px;
  }

  .oe-landing h3 {
    font-size: 20px;
  }

  .oe-landing__lead,
  .oe-landing__copy p,
  .oe-landing__section-head p,
  .oe-landing__card p,
  .oe-landing__cta p,
  .oe-landing .accordion-body {
    font-size: 16px;
  }

  .oe-landing__quickbar {
    margin-top: -20px;
    margin-bottom: 28px;
  }

  .oe-landing__quicknav {
    padding: 8px;
  }

  .oe-landing__fact,
  .oe-landing__card,
  .oe-landing__spec {
    min-height: auto;
    padding: 20px;
  }

  .oe-landing__button {
    width: 100%;
  }

  .oe-landing__faq .accordion-button {
    min-height: 60px;
    padding: 17px 18px;
    font-size: 16px;
  }

  .oe-landing__faq .accordion-body {
    padding: 0 18px 18px;
  }

  .oe-landing__cta {
    padding: 48px 0;
  }
}

@media (max-width: 430px) {
  .oe-landing__hero {
    min-height: 650px;
  }

  .oe-landing h1 {
    font-size: 31px;
  }
}
