.lh-hero,
.lh-facts {
  --lh-heading-font: "akzidenz-grotesk", sans-serif;
  --lh-body-font: "brandon-grotesque", sans-serif;
}

.lh-hero,
.lh-hero *,
.lh-hero *::before,
.lh-hero *::after,
.lh-facts,
.lh-facts *,
.lh-facts *::before,
.lh-facts *::after {
  box-sizing: border-box;
}


.lh-hero,
.lh-facts {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  overflow-x: hidden;
}

.lh-hero {
  position: relative;
  font-family: var(--lh-body-font);
  background-color: var(--lh-bg);
  margin-top: var(--lh-mt);
  margin-bottom: var(--lh-mb);
  padding: var(--lh-pt) var(--lh-pr) var(--lh-pb) var(--lh-pl);
}

.lh-inner {
  max-width: 1152px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.lh-content {
  max-width: min(var(--lh-max-w), 100%);
  margin: 0 auto;
  text-align: center;
}


.lh-rt > * {
  display: inline;
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
}

.lh-rt > * + *::before {
  content: ' ';
}

.lh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  padding: 6px 16px;
  margin-bottom: var(--lh-eyebrow-gap);
  font-family: var(--lh-body-font);
  font-size: var(--lh-eyebrow-size);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--lh-eyebrow-brdr);
  background: var(--lh-eyebrow-bg);
  color: var(--lh-eyebrow-color);
}


.lh-eyebrow__flag {
  height: 1.15em;
  width: auto;
  flex-shrink: 0;
  display: block;
  border-radius: 2px;
}

.lh-heading {
  font-family: var(--lh-heading-font);

  font-weight: 700;
  font-size: var(--lh-h-size);
  color: var(--lh-h-color);
  line-height: 1.1;
  margin: 0 0 var(--lh-h-gap);
  padding: 0;
  text-wrap: balance;
}


.lh-heading__line {
  display: block;
}


.lh-heading-accent {
  display: inline;
  color: var(--lh-h-color);
}

@supports ((background-clip: text) or (-webkit-background-clip: text)) {
  .lh-heading-accent {
    background: var(--lh-accent-grad);
    -webkit-background-clip: text;
    background-clip: text;


    -webkit-text-fill-color: transparent;
  }
}

@media (forced-colors: active) {
  .lh-heading-accent {
    background: none;
    color: CanvasText;
    -webkit-text-fill-color: CanvasText;
  }
}

.lh-subtext {
  font-family: var(--lh-body-font);
  font-weight: 400;
  font-size: var(--lh-sub-size);
  color: var(--lh-sub-color);
  line-height: 1.7;
  max-width: min(var(--lh-sub-max), 100%);
  margin: 0 auto var(--lh-sub-gap);
}

.lh-subtext a {
  color: var(--lh-sub-link);
  text-decoration: underline;
}

.lh-subtext a:focus-visible {
  outline: 2px solid var(--lh-sub-link);
  outline-offset: 2px;
}

.lh-rt-block > * {
  margin: 0 0 1em;
  font: inherit;
  color: inherit;
}

.lh-rt-block > *:first-child { margin-top: 0; }
.lh-rt-block > *:last-child  { margin-bottom: 0; }

.lh-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}


.lh-btn-primary,
.lh-btn-primary:hover,
.lh-btn-primary:focus,
.lh-btn-primary:focus-visible,
.lh-btn-primary:active,
.lh-btn-primary:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  scroll-margin-top: 96px;
  padding: var(--lh-btn-py) var(--lh-btn-px);
  border: 1px solid transparent;
  border-radius: var(--lh-btn-radius);
  background-color: var(--lh-btn-bg);
  color: var(--lh-btn-color);
  font-family: var(--lh-body-font);
  font-size: var(--lh-btn-size);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lh-btn-primary:hover {
  opacity: 0.9;
  transform: scale(1.03);
}

.lh-btn-secondary,
.lh-btn-secondary:hover,
.lh-btn-secondary:focus,
.lh-btn-secondary:focus-visible,
.lh-btn-secondary:active,
.lh-btn-secondary:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  scroll-margin-top: 96px;
  padding: var(--lh-btn-py) var(--lh-btn-px);
  border: 1px solid var(--lh-btn2-brdr);
  border-radius: var(--lh-btn-radius);
  background: transparent;
  color: var(--lh-btn2-color);
  font-family: var(--lh-body-font);
  font-size: var(--lh-btn-size);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lh-btn-secondary:hover {
  background: rgba(0, 0, 0, 0.04);
  transform: scale(1.03);
}


.lh-btn-primary:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: -4px;
  box-shadow: 0 0 0 3px var(--lh-btn-bg);
}

.lh-btn-secondary:focus-visible {
  outline: 3px solid var(--lh-btn-bg);
  outline-offset: 2px;
}

.lh-btn-primary .lh-rt > *,
.lh-btn-secondary .lh-rt > * {
  color: inherit;
  text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
  .lh-btn-primary,
  .lh-btn-secondary {
    transition: none;
  }

  .lh-btn-primary:hover,
  .lh-btn-secondary:hover {
    transform: none;
  }
}

.lh-facts {
  border-top: 1px solid var(--lh-fact-brdr);
  border-bottom: 1px solid var(--lh-fact-brdr);


  background-color: var(--lh-facts-bg);
  font-family: var(--lh-body-font);
  margin-top: var(--lh-facts-mt);
  margin-bottom: var(--lh-facts-mb);
  padding: var(--lh-facts-pt) var(--lh-facts-pr) var(--lh-facts-pb) var(--lh-facts-pl);
}

.lh-facts-inner {
  max-width: 1152px;
  margin: 0 auto;
}

.lh-facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
  max-width: 896px;
  margin: 0 auto;
  padding: 0;
}

@media (min-width: 768px) {
  .lh-facts-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}


.lh-fact {
  text-align: center;
  display: flex;
  flex-direction: column-reverse;
}

.lh-fact-value {
  font-family: var(--lh-heading-font);
  font-weight: 700;
  font-size: var(--lh-fact-value-size);
  color: var(--lh-fact-value-color);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.lh-fact-label {
  font-family: var(--lh-body-font);
  font-weight: 400;
  font-size: var(--lh-fact-label-size);
  color: var(--lh-fact-label-color);
  line-height: 1.4;
  text-align: center;
  margin: 8px 0 0;
}

@media (max-width: 480px) {
  .lh-buttons {
    flex-direction: column;
    align-items: center;
  }

  .lh-btn-primary,
  .lh-btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}
