.reh-section {
  --reh-heading-font: 'akzidenz-grotesk', 'Akzidenz-Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --reh-body-font:    'brandon-grotesque', 'Brandon Grotesque', 'Helvetica Neue', Arial, sans-serif;

  --reh-bg:                #f7f7f7;
  --reh-max-w:             800px;
  --reh-pt:                120px;
  --reh-pr:                20px;
  --reh-pb:                56px;
  --reh-pl:                20px;
  --reh-mt:                -65px;
  --reh-mb:                0;
  --reh-badge-color:       #3a2e7b;
  --reh-badge-bg:          rgba(255, 255, 255, 0.7);
  --reh-badge-border:      #c4c0e0;
  --reh-badge-gap:         28px;
  --reh-badge-size:        11px;
  --reh-h-color:           #111111;
  --reh-h-accent:          #3a2e7b;
  --reh-h-grad:            linear-gradient(to bottom right, #211f2e 0%, #5a3aaa 50%, #8957cf 100%);
  --reh-h-gap:             24px;
  --reh-h-size:            72px;
  --reh-sub-color:         #5f6672;
  --reh-sub-max-w:         560px;
  --reh-sub-gap:           44px;
  --reh-sub-size:          16px;
  --reh-pbtn-bg:           #3a2e7b;
  --reh-pbtn-color:        #ffffff;
  --reh-pbtn-hover-bg:     #2d2360;
  --reh-pbtn-size:         15px;
  --reh-pbtn-py:           14px;
  --reh-pbtn-px:           30px;
  --reh-sbtn-bg:           #ffffff;
  --reh-sbtn-border:       #7d76ad;
  --reh-sbtn-color:        #111111;
  --reh-sbtn-hover-border: #5a3aaa;
  --reh-sbtn-size:         15px;
  --reh-sbtn-py:           14px;
  --reh-sbtn-px:           30px;
}

.reh-section {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-top: var(--reh-mt);
  margin-bottom: var(--reh-mb);
  padding: var(--reh-pt) var(--reh-pr) var(--reh-pb) var(--reh-pl);
  overflow-x: hidden;
  text-align: center;
  background-color: var(--reh-bg);
  font-family: var(--reh-body-font);
}

.reh-section,
.reh-section *,
.reh-section *::before,
.reh-section *::after {
  box-sizing: border-box;
}

.reh-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 75% at 82% 50%, rgba(139, 92, 246, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 12% 45%, rgba(255, 255, 255, 0.45) 0%, transparent 65%);
}

.reh-inner {
  max-width: min(var(--reh-max-w), 100%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}


.reh-rt > * {
  display: inline;
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.reh-rt > * + *::before {
  content: ' ';
}

.reh-badge-wrap {
  margin-bottom: var(--reh-badge-gap);
  animation: reh-fadein 0.6s ease both;
}

.reh-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 9999px;
  border: 1.5px solid var(--reh-badge-border);
  background-color: var(--reh-badge-bg);
  font-family: var(--reh-body-font);
  font-weight: 700;
  font-size: var(--reh-badge-size);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--reh-badge-color);
  line-height: 1.4;
}

.reh-heading {
  font-family: var(--reh-heading-font);

  font-weight: 700;
  font-size: var(--reh-h-size);
  color: var(--reh-h-color);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 var(--reh-h-gap);
  padding: 0;
  text-wrap: balance;
}

.reh-heading__plain {
  display: inline;
}


.reh-heading__accent {
  display: block;
  color: var(--reh-h-accent);
}

@supports ((background-clip: text) or (-webkit-background-clip: text)) {
  .reh-heading__accent--grad {
    background-image: var(--reh-h-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

@media (forced-colors: active) {
  .reh-heading__accent--grad {
    background-image: none;
    color: CanvasText;
    -webkit-text-fill-color: CanvasText;
  }
}

.reh-subtitle {
  font-family: var(--reh-body-font);
  font-weight: 400;
  font-size: var(--reh-sub-size);
  color: var(--reh-sub-color);
  line-height: 1.65;
  max-width: var(--reh-sub-max-w);
  margin: 0 auto var(--reh-sub-gap);
  padding: 0;
  animation: reh-fadein 0.65s ease 0.2s both;
}

.reh-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: reh-fadein 0.65s ease 0.3s both;
}

.reh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border-radius: 9999px;
  font-family: var(--reh-body-font);
  font-weight: 600;
  text-decoration: none !important;

  white-space: normal;
  line-height: 1.3;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reh-btn:hover,
.reh-btn:focus-visible {
  transform: translateY(-2px);
}

.reh-btn:active {
  transform: translateY(0);
}

.reh-btn--primary {
  background-color: var(--reh-pbtn-bg);
  color: var(--reh-pbtn-color);
  font-size: var(--reh-pbtn-size);
  border: 2px solid transparent;
  padding: var(--reh-pbtn-py) var(--reh-pbtn-px);
}


.reh-btn--primary:hover,
.reh-btn--primary:focus,
.reh-btn--primary:focus-visible,
.reh-btn--primary:active,
.reh-btn--primary:visited {
  font-family: var(--reh-body-font);
  font-weight: 600;
  font-size: var(--reh-pbtn-size);
  color: var(--reh-pbtn-color);
}

.reh-btn--primary:hover,
.reh-btn--primary:focus-visible {
  background-color: var(--reh-pbtn-hover-bg);
  box-shadow: 0 8px 28px rgba(58, 46, 123, 0.38);
}

.reh-btn__arrow {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reh-btn--primary:hover .reh-btn__arrow,
.reh-btn--primary:focus-visible .reh-btn__arrow {
  transform: translateX(4px);
}

.reh-btn--secondary {
  background-color: var(--reh-sbtn-bg);
  color: var(--reh-sbtn-color);
  font-size: var(--reh-sbtn-size);
  border: 1.5px solid var(--reh-sbtn-border);
  padding: var(--reh-sbtn-py) var(--reh-sbtn-px);
}

.reh-btn--secondary:hover,
.reh-btn--secondary:focus,
.reh-btn--secondary:focus-visible,
.reh-btn--secondary:active,
.reh-btn--secondary:visited {
  font-family: var(--reh-body-font);
  font-weight: 600;
  font-size: var(--reh-sbtn-size);
  color: var(--reh-sbtn-color);
}

.reh-btn--secondary:hover,
.reh-btn--secondary:focus-visible {
  border-color: var(--reh-sbtn-hover-border);
  box-shadow: 0 4px 18px rgba(58, 46, 123, 0.13);
}


.reh-section :where(a, button, [tabindex]):focus-visible {
  outline: 3px solid var(--reh-h-accent);
  outline-offset: 3px;
}


.reh-section a {
  scroll-margin-top: 96px;
}

@keyframes reh-fadein {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (min-width: 1025px) and (max-width: 1280px) {
  .reh-inner {
    max-width: min(var(--reh-max-w), 700px);
  }
}


@media (min-width: 768px) and (max-width: 1024px) {
  .reh-section {
    padding-top: min(var(--reh-pt), 88px);
    padding-bottom: min(var(--reh-pb), 80px);
    --reh-pl: 32px;
    --reh-pr: 32px;
  }

  .reh-inner {
    max-width: min(var(--reh-max-w), 620px);
  }

  .reh-heading {
    letter-spacing: -0.02em;
  }

  .reh-subtitle {
    max-width: min(var(--reh-sub-max-w), 480px);
  }
}


@media (min-width: 641px) and (max-width: 767px) {
  .reh-section {
    padding-top: min(var(--reh-pt), 72px);
    padding-bottom: min(var(--reh-pb), 64px);
    --reh-pl: 24px;
    --reh-pr: 24px;
  }

  .reh-inner {
    max-width: 100%;
  }

  .reh-heading {
    letter-spacing: -0.015em;
  }

  .reh-subtitle {
    max-width: min(var(--reh-sub-max-w), 440px);
  }
}


@media (max-width: 640px) {
  .reh-section {
    padding-top: min(var(--reh-pt), 64px);
    padding-bottom: min(var(--reh-pb), 56px);
    --reh-pl: 20px;
    --reh-pr: 20px;
  }

  .reh-inner {
    max-width: 100%;
  }


  .reh-heading {
    font-size: var(--reh-h-size-m);
    letter-spacing: -0.015em;
  }

  .reh-badge {
    font-size: var(--reh-badge-size-m);
  }

  .reh-subtitle {
    font-size: var(--reh-sub-size-m);
    line-height: 1.6;
    max-width: 100%;
  }

  .reh-btn--primary {
    font-size: var(--reh-pbtn-size-m);
  }

  .reh-btn--secondary {
    font-size: var(--reh-sbtn-size-m);
  }


  .reh-ctas {
    gap: 10px;
  }

  .reh-btn {
    flex: 1 1 auto;
    min-height: 50px;

    padding: min(var(--reh-pbtn-py), 16px) min(var(--reh-pbtn-px), 20px);
  }
}


@media (max-width: 390px) {
  .reh-section {
    padding-top: min(var(--reh-pt), 52px);
    padding-bottom: min(var(--reh-pb), 48px);
    --reh-pl: 16px;
    --reh-pr: 16px;
  }

  .reh-btn {
    min-height: 44px;
    padding: min(var(--reh-pbtn-py), 12px) min(var(--reh-pbtn-px), 14px);
  }
}


@media (prefers-reduced-motion: reduce) {
  .reh-badge-wrap,
  .reh-heading,
  .reh-subtitle,
  .reh-ctas {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .reh-btn,
  .reh-btn__arrow {
    transition: none;
  }

  .reh-btn:hover,
  .reh-btn:focus-visible {
    transform: none;
  }

  .reh-btn--primary:hover .reh-btn__arrow,
  .reh-btn--primary:focus-visible .reh-btn__arrow {
    transform: none;
  }
}

@media (max-width: 767px) {
  /* The wrap holds nothing but the badge, so centring its inline content
     centres the pill without affecting the copy below. */
  .reh-badge-wrap {
    text-align: center;
  }
}
