.template-index {
  --rx-black: #050505;
  --rx-panel: #0d0d0d;
  --rx-gold: #ffb400;
  --rx-gold-2: #f8c437;
  --rx-white: #ffffff;
  --rx-muted: #c8c8c8;
  --rx-line: rgba(255, 180, 0, .32);
}

/* Header/menu styling moved to assets/knk_header.scss.liquid so it applies
   on every page, not just the homepage. See that file for the rules. */

.rixtar-home {
  overflow: hidden;
  background: #fff;
  color: #111;
  font-family: inherit;
}

.rx-container {
  width: min(100% - 48px, 1680px);
  margin: 0 auto;
}

.rx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: .25s ease;
}

.rx-btn:after {
  content: " →";
  margin-left: 6px;
}

.rx-btn--gold {
  background: var(--rx-gold);
  color: #050505;
}

.rx-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.55);
}

.rx-btn--black {
  background: #050505;
  color: #fff;
}

.rx-btn--gold-outline,
.rx-btn--outline-gold {
  background: transparent;
  color: #050505;
  border-color: #050505;
}

.rx-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: #000;
  color: #fff;
}

.rx-hero__media,
.rx-hero__media img,
.rx-hero__shade {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.rx-hero__media img {
  object-fit: cover;
  object-position: center;
}

.rx-hero__shade {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 48%, rgba(0,0,0,.72) 0%, rgba(0,0,0,.48) 34%, rgba(0,0,0,.24) 62%, rgba(0,0,0,.62) 100%),
    linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.42) 50%, rgba(0,0,0,.56) 100%);
}

.rx-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 136px 0 82px;
  text-align: center;
}

.rx-eyebrow {
  margin: 0 0 22px;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
}

.rx-hero h1 {
  width: min(100%, 940px);
  max-width: 940px;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 5.8vw, 104px);
  line-height: .96;
  font-weight: 950;
  text-transform: uppercase;
  text-align: center;
}

.rx-hero h1 strong,
.rx-hero h1 span {
  color: var(--rx-gold);
}

.rx-hero__desc {
  width: min(100%, 820px);
  max-width: 820px;
  margin-top: 30px;
  color: #fff;
  font-size: clamp(18px, 1.45vw, 26px);
  line-height: 1.45;
  font-weight: 500;
  text-align: center;
}

.rx-hero__desc strong,
.rx-hero__desc span {
  color: var(--rx-gold);
}

.rx-hero__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 44px;
}

.rx-benefit {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 12px;
  align-items: center;
  max-width: 220px;
}

.rx-benefit img {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.rx-benefit span {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.rx-benefit small {
  color: #fff;
  font-size: 12px;
  line-height: 1.25;
  text-transform: uppercase;
}

.rx-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 42px;
  width: min(100%, 940px);
}

.rx-stats {
  background: linear-gradient(180deg, #fff4d4 0%, #fff8e8 100%);
  padding: 34px 0 30px;
}

.rx-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 180, 0, .48);
  border-radius: 14px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 18px 45px rgba(255, 180, 0, .12);
  overflow: hidden;
}

.rx-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  padding: 18px 16px;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,.12);
}

.rx-stat:last-child {
  border-right: 0;
}

.rx-stat img {
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
  object-fit: contain;
}

.rx-stat strong {
  display: block;
  font-size: 32px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
}

.rx-stat span,
.rx-stat small {
  display: block;
  max-width: 110px;
  font-size: 11px;
  line-height: 1.18;
  font-weight: 800;
  text-transform: uppercase;
}

.rx-brands {
  padding: 48px 0 44px;
  background: #fff;
}

.rx-section-note {
  margin: 0 0 28px;
  text-align: center;
  color: #050505;
  text-shadow: none;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 950;
  text-transform: uppercase;
}

.rx-brandstrip {
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.rx-brandstrip__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 18px;
  animation: rx-brand-marquee 28s linear infinite;
}

.rx-brandstrip__group {
  display: flex;
  align-items: center;
  gap: 18px;
}

.rx-brandstrip:hover .rx-brandstrip__track {
  animation-play-state: paused;
}

@keyframes rx-brand-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.rx-brand {
  flex: 0 0 190px;
  min-height: 48px;
  display: grid;
  place-items: center;
  color: #747474;
  font-size: 21px;
  font-weight: 900;
  text-transform: uppercase;
}

.rx-brand img {
  max-width: 140px;
  max-height: 42px;
  object-fit: contain;
  opacity: 1;
}

.rx-brand span {
  display: none;
}

.rx-services {
  background-color: var(--rx-services-bg-color, #eef7f8);
  background-position: center;
  background-size: cover;
  padding: 58px 0 62px;
}

.rx-services--image-bg {
  background-image: linear-gradient(180deg, rgba(255,255,255,.14) 0%, rgba(255,255,255,.72) 100%), var(--rx-services-bg-image);
}

.rx-services--color-bg {
  background-image: linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.52) 100%);
}

.rx-services__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  max-width: 1680px;
  margin-left: auto;
  margin-right: auto;
}

.rx-service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(24,112,128,.12);
  box-shadow: 0 18px 38px rgba(18, 88, 104, .09);
  text-align: center;
  border-radius: 6px;
  overflow: hidden;
}

.rx-service-card__icon {
  width: 46px;
  height: 46px;
  margin: 24px auto 24px;
  object-fit: contain;
}

.rx-service-card h3 {
  margin: 0;
  padding: 0 22px;
  text-align: center;
  color: #050505;
  font-size: 16px;
  line-height: 1.16;
  font-weight: 950;
  text-transform: uppercase;
}

.rx-service-card p {
  margin: 18px auto 28px;
  padding: 0 22px;
  max-width: 220px;
  color: #111;
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
}

.rx-service-card__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-top: auto;
}

.rx-process {
  background: #fff;
  color: #050505;
  padding: 92px 0 118px;
}

.rx-process h2,
.rx-bonding h2,
.rx-instagram h2,
.rx-launch h2 {
  margin: 0;
  letter-spacing: 0;
  text-transform: uppercase;
}

.rx-process h2 {
  margin-bottom: 64px;
  text-align: center;
  color: #050505;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.05;
  font-weight: 950;
}

.rx-process__subtitle,
.rx-process__btn,
.rx-process__trust {
  display: none;
}

.rx-process__steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 34px;
  position: relative;
}

.rx-process-step {
  position: relative;
  text-align: center;
}

.rx-process-step:not(:last-child):after {
  content: "";
  position: absolute;
  top: 56px;
  left: calc(50% + 72px);
  width: calc(100% - 112px);
  height: 1px;
  border-top: 1px dashed rgba(5, 5, 5, .36);
}

.rx-process-step:not(:last-child):before {
  content: "";
  position: absolute;
  top: 51px;
  right: -8px;
  width: 12px;
  height: 12px;
  border-top: 1px solid rgba(5, 5, 5, .55);
  border-right: 1px solid rgba(5, 5, 5, .55);
  transform: rotate(45deg);
}

.rx-process-step__icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 116px;
  height: 116px;
  margin-bottom: 22px;
  border: 3px solid var(--rx-gold);
  border-radius: 50%;
  background: #fff;
}

.rx-process-step__icon img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.rx-process-step small,
.rx-process-step strong,
.rx-process-step p {
  display: block;
}

.rx-process-step small {
  color: #050505;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 6px;
}

.rx-process-step strong {
  color: #050505;
  font-size: 20px;
  line-height: 1.08;
  font-weight: 900;
  text-transform: uppercase;
}

.rx-process-step p {
  max-width: 190px;
  margin: 12px auto 0;
  color: #444;
  font-size: 17px;
  line-height: 1.38;
}

.rx-bonding {
  position: relative;
  overflow: hidden;
  background-color: var(--rx-bonding-bg-color, #050505);
  background-image: linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.88)), var(--rx-bonding-bg);
  background-position: center;
  background-size: cover;
  color: #fff;
  padding: 92px 0 74px;
}

.rx-bonding__heading {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.rx-bonding__eyebrow {
  margin: 0 0 22px;
  color: rgba(255,255,255,.82);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.rx-bonding h2 {
  color: #fff;
  font-size: clamp(54px, 6vw, 108px);
  line-height: .92;
  font-weight: 950;
}

.rx-bonding h2 span,
.rx-bonding h2 strong {
  color: var(--rx-gold);
}

.rx-bonding__subtitle {
  margin: 28px 0 0;
  color: #fff;
  font-size: clamp(18px, 2vw, 32px);
  line-height: 1.2;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.rx-bonding__subtitle:after {
  content: "";
  display: block;
  width: 78px;
  height: 2px;
  margin: 20px auto 0;
  background: linear-gradient(90deg, transparent, var(--rx-gold), transparent);
}

.rx-bonding__desc {
  max-width: 680px;
  margin: 22px auto 0;
  color: rgba(255,255,255,.86);
  font-size: 17px;
  line-height: 1.55;
}

.rx-bonding__cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
}

.rx-bonding-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
}

.rx-bonding-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 46%, rgba(0,0,0,.78) 100%);
}

.rx-bonding-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rx-bonding-card strong {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 52px;
  padding: 16px 14px 8px;
  color: #fff;
  background: rgba(0,0,0,.72);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.rx-bonding-card__link {
  position: relative;
  z-index: 1;
  display: block;
  padding: 0 14px 18px;
  color: var(--rx-gold);
  background: rgba(0,0,0,.72);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.rx-bonding-card__link:after {
  content: " →";
}

.rx-bonding-card__link:hover {
  color: #fff;
}

.rx-bonding-brand {
  margin-top: 58px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.rx-bonding-brand h3 {
  margin: 0 0 30px;
  color: #fff;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0;
}

.rx-bonding-brand__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.rx-bonding-brand-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
}

.rx-bonding-brand-item span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,180,0,.68);
  border-radius: 50%;
}

.rx-bonding-brand-item img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.rx-bonding-brand-item strong {
  display: block;
  color: #fff;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 900;
  text-transform: uppercase;
}

.rx-bonding-brand-item p {
  margin: 6px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 12px;
  line-height: 1.35;
}

.rx-instagram {
  background: #fff;
  color: #050505;
  padding: 48px 0 54px;
  text-align: center;
}

.rx-instagram h2 {
  color: #050505;
  font-size: 34px;
  font-weight: 950;
}

.rx-instagram p {
  margin: 6px 0 28px;
  color: #222;
  font-size: 14px;
}

.rx-instagram__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.rx-instagram__grid a {
  display: block;
  overflow: hidden;
  border-radius: 8px;
}

.rx-instagram__grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.rx-launch {
  background: var(--rx-gold);
  color: #050505;
  padding: 52px 0;
}

.rx-launch__inner {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, .72fr);
  gap: 42px;
  align-items: stretch;
}

.rx-launch h2 {
  color: #050505;
  font-size: 34px;
  line-height: 1.05;
  font-weight: 950;
  text-transform: uppercase;
}

.rx-launch p {
  margin: 8px 0 0;
  color: #111;
  font-size: 16px;
}

.rx-launch__media {
  min-height: 440px;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255,255,255,.18);
}

.rx-launch__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rx-launch__form-card {
  align-self: center;
  padding: 32px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.rx-launch__copy {
  margin-bottom: 22px;
}

.rx-launch-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}

.rx-launch-field {
  display: grid;
  gap: 7px;
  margin: 0;
}

.rx-launch-field--full {
  grid-column: 1 / -1;
}

.rx-launch-field span {
  color: #151515;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 850;
}

.rx-launch-field input,
.rx-launch-field select,
.rx-launch-field textarea {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  color: #151515;
  background: #fff;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 4px;
  font: inherit;
  font-size: 14px;
  outline: 0;
}

.rx-launch-field textarea {
  min-height: 76px;
  padding-top: 10px;
  resize: vertical;
}

.rx-launch-field input:focus,
.rx-launch-field select:focus,
.rx-launch-field textarea:focus {
  border-color: #050505;
  box-shadow: 0 0 0 2px rgba(255,180,0,.22);
}

.rx-launch-submit {
  grid-column: 1 / -1;
  justify-self: start;
  min-height: 46px;
  padding: 0 30px;
  color: #fff;
  background: #050505;
  border: 0;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.rx-launch-submit:after {
  content: " →";
}

.rx-launch__message {
  margin-bottom: 14px;
  padding: 10px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
}

.rx-launch__message--success {
  color: #0b5f2a;
  background: #e7f7ec;
}

.rx-launch__message--error {
  color: #8a1f11;
  background: #fee8e2;
}

.template-index .mainFooter {
  background: #070707 !important;
  color: #fff;
}

.template-index .mainFooter a,
.template-index .mainFooter p,
.template-index .mainFooter li,
.template-index .mainFooter span {
  color: rgba(255,255,255,.82);
}

.template-index .mainFooter h4,
.template-index .mainFooter .footer-title,
.template-index .mainFooter strong {
  color: #fff;
}

@media (max-width: 1199px) {
  .rx-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rx-services__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 980px;
    gap: 16px;
  }

  .rx-instagram__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .rx-launch__inner {
    grid-template-columns: 1fr;
  }

  .rx-launch__form-card {
    text-align: left;
  }
}

@media (max-width: 991px) {
  .rx-container {
    width: min(100% - 36px, 1680px);
  }

  .rx-hero__inner {
    padding-top: 128px;
  }

  .rx-bonding__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .rx-process__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rx-process-step:before,
  .rx-process-step:after {
    display: none;
  }
}

@media (max-width: 767px) {
  .template-index .mainHeader .header-wrap-menu {
    display: none !important;
  }

  .rx-brands {
    padding: 38px 0 34px;
  }

  .rx-hero h1 {
    font-size: 42px;
  }

  .rx-hero__desc {
    font-size: 16px;
  }

  .rx-hero__benefits,
  .rx-actions {
    gap: 14px;
  }

  .rx-stats__grid {
    grid-template-columns: 1fr 1fr;
  }

  .rx-instagram__grid {
    display: flex;
    gap: 14px;
    margin-left: calc((100vw - 100%) / -2);
    margin-right: calc((100vw - 100%) / -2);
    padding: 0 18px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .rx-brandstrip::-webkit-scrollbar,
  .rx-instagram__grid::-webkit-scrollbar {
    display: none;
  }

  .rx-brand {
    flex: 0 0 150px;
    min-height: 54px;
    padding: 8px 12px;
    scroll-snap-align: start;
    font-size: 18px;
  }

  .rx-brandstrip__track {
    gap: 14px;
    animation-duration: 22s;
  }

  .rx-brandstrip__group {
    gap: 14px;
  }

  .rx-brand img {
    max-width: 120px;
  }

  .rx-services__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .rx-process {
    padding: 32px 0 40px;
    background: #f5f3f0;
  }

  .rx-process > .rx-container {
    width: min(100% - 36px, 520px);
    padding: 40px 26px 28px;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.96)),
      var(--rx-process-mobile-bg) center / cover no-repeat,
      #fff;
    box-shadow: 0 16px 42px rgba(0,0,0,.08);
  }

  .rx-process h2 {
    max-width: 360px;
    margin: 0 auto 14px;
    font-size: 42px;
    line-height: 1.03;
    text-align: center;
  }

  .rx-process h2:after {
    content: "";
    display: block;
    width: 74px;
    height: 4px;
    margin: 22px auto 0;
    border-radius: 999px;
    background: var(--rx-gold);
  }

  .rx-process__subtitle {
    display: block;
    max-width: 300px;
    margin: 0 auto 32px;
    color: #191919;
    font-size: 20px;
    line-height: 1.38;
    text-align: center;
  }

  .rx-process__steps {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 420px;
    margin: 0 auto;
  }

  .rx-process-step {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 16px;
    align-items: center;
    text-align: left;
    padding: 0 0 24px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .rx-process-step:not(:last-child):after {
    display: block;
    top: 72px;
    left: 36px;
    width: 1px;
    height: calc(100% - 66px);
    border-top: 0;
    border-left: 1px dashed rgba(5,5,5,.28);
  }

  .rx-process-step:not(:last-child):before {
    display: none;
  }

  .rx-process-step__icon {
    grid-row: span 3;
    width: 74px;
    height: 74px;
    margin: 0;
    border-width: 2px;
  }

  .rx-process-step__icon img {
    width: 38px;
    height: 38px;
  }

  .rx-process-step small {
    color: var(--rx-gold);
    font-size: 19px;
    line-height: 1;
    font-weight: 950;
  }

  .rx-process-step strong {
    font-size: 22px;
    line-height: 1.05;
  }

  .rx-process-step p {
    max-width: none;
    margin: 2px 0 0;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,.1);
    font-size: 16px;
    line-height: 1.35;
  }

  .rx-process-step:last-child {
    padding-bottom: 0;
  }

  .rx-process-step:last-child p {
    border-bottom: 0;
  }

  .rx-process__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    margin: 28px 0 20px;
    padding: 0 22px;
    color: #050505;
    background: var(--rx-gold);
    border-radius: 8px;
    box-shadow: 0 10px 22px rgba(255, 178, 0, .28);
    font-size: 17px;
    font-weight: 950;
    text-transform: uppercase;
  }

  .rx-process__btn:after {
    content: "→";
    margin-left: 14px;
    font-size: 25px;
    line-height: 1;
  }

  .rx-process__trust {
    display: block;
    margin: 0;
    color: #333;
    font-size: 14px;
    line-height: 1.35;
    text-align: center;
  }

  .rx-bonding {
    padding: 58px 0 54px;
  }

  .rx-bonding__eyebrow {
    font-size: 12px;
    letter-spacing: .2em;
  }

  .rx-bonding h2 {
    font-size: 44px;
  }

  .rx-bonding__subtitle {
    font-size: 17px;
    letter-spacing: .12em;
  }

  .rx-bonding__desc {
    font-size: 14px;
  }

  .rx-bonding__cards {
    display: flex;
    gap: 14px;
    margin-left: calc((100vw - 100%) / -2);
    margin-right: calc((100vw - 100%) / -2);
    padding: 0 18px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .rx-bonding__cards::-webkit-scrollbar {
    display: none;
  }

  .rx-bonding-card {
    flex: 0 0 74%;
    min-height: 260px;
    scroll-snap-align: center;
  }

  .rx-bonding-brand {
    margin-top: 42px;
    padding-top: 32px;
  }

  .rx-bonding-brand h3 {
    font-size: 24px;
  }

  .rx-bonding-brand__grid {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 420px;
    margin: 0 auto;
  }

  .rx-bonding-brand-item {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }

  .rx-bonding-brand-item span {
    width: 38px;
    height: 38px;
  }

  .rx-stat {
    min-height: 104px;
    padding: 14px;
  }

  .rx-stat strong {
    font-size: 26px;
  }

  .rx-service-card {
    max-width: 420px;
    margin: 0 auto;
  }

  .rx-service-card__image {
    aspect-ratio: 1 / 1;
  }

  .rx-section-note,
  .rx-instagram h2,
  .rx-launch h2 {
    font-size: 28px;
  }

  .rx-instagram__grid a {
    flex: 0 0 62%;
    scroll-snap-align: center;
  }

  .rx-launch__inner {
    grid-template-columns: 1fr;
  }

  .rx-launch__media {
    min-height: 320px;
  }

  .rx-launch__form-card {
    padding: 22px;
  }

  .rx-launch-form {
    grid-template-columns: 1fr;
  }

  .rx-launch-submit {
    width: 100%;
    justify-self: stretch;
  }
}
