/* Reset and base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

@font-face {
  font-family: "Whyte Inktrap Black";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/Whyte Inktrap Black.otf") format("opentype");
}

@font-face {
  font-family: "Interstate-Bold";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Interstate-Bold.otf") format("opentype");
}

@font-face {
  font-family: "Interstate-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Interstate-Regular.otf") format("opentype");
}

@font-face {
  font-family: "Interstate Black";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/Interstate Black.otf") format("opentype");
}

:root {
  --section-padding-x: 1rem;
  --section-padding-y: clamp(5rem, 12vw, 9rem);
  --ease-out-soft: cubic-bezier(0.33, 1, 0.68, 1);
  --content-max-width: 1200px;
  --color-firefly: #0d2230;
  --color-sunglow: #fcc633;
  --color-white: #fff;
  --rgb-firefly: 13, 34, 48;
  --rgb-sunglow: 252, 198, 51;
  --rgb-white: 255, 255, 255;
  --font-display: "Whyte Inktrap Black", sans-serif;
  --font-body: "Interstate-Regular", Helvetica, sans-serif;
  --font-body-bold: "Interstate-Bold", Helvetica, sans-serif;
  --font-heading-black: "Interstate Black", Helvetica, sans-serif;
  --radius-lg: 12px;
}

/* Scroll reveal: opacity only — translate was shifting overflow bounds each reveal (scrollbar flicker) */
.scroll-reveal > .section__inner {
  opacity: 0;
  transition: opacity 0.85s var(--ease-out-soft);
  transition-delay: var(--reveal-delay, 0s);
}

.scroll-reveal.is-visible > .section__inner {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal > .section__inner {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .why-rezolve__img {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .faq__panel-outer {
    transition: none;
  }

  .faq__icons > .faq__icon {
    transition: none;
  }

  .faq__item--open .faq__answer {
    animation: none;
  }
}

html {
  overflow-x: hidden;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
}

.page {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Child transforms (scroll-reveal lift, iPad slide-in) extend layout width — hide x overflow */
.scroll-reveal {
  overflow-x: hidden;
}

.section {
  width: 100%;
  min-height: 60vh;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.section--hero {
  min-height: 80vh;
  background-image: url('../img/fhqmqk@1x.png');
  display: flex;
  align-items: center;
  justify-content: center;
}

.section--hero .section__inner {
  text-align: center;
  padding-top: clamp(2.5rem, 7vw, 4rem);
  padding-bottom: clamp(2.5rem, 7vw, 4rem);
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.hero__brand {
  display: inline-block;
  line-height: 0.88;
  margin-bottom: -0.1em;
}

.logo-wordmark {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(4rem, 16vw, 200px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: inherit;
  margin: 0;
  display: block;
}

.connecting-verified {
  color: var(--color-white);
  font-family: var(--font-body-bold);
  font-size: clamp(0.875rem, 2vw, 26px);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0;
  text-transform: uppercase;
}

.section--bg-yellow,
.section--bg-white {
  background-image: none;
  display: flex;
  align-items: center;
}

.section--bg-yellow {
  background-color: var(--color-sunglow);
}

.section--bg-white {
  background-color: var(--color-white);
}

.section--bg-dark {
  background-color: var(--color-firefly);
  background-image: none;
}

.section--bg-concierge {
  background-image: url('../img/franco-reda-a-stylish-female-concierge-mixed-heritage-in-a-ta-9b@1x.png');
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
}

.benefits-overlay {
  position: absolute;
  inset: 0;
  background-color: var(--color-firefly);
  opacity: 0.5;
  pointer-events: none;
}

.benefits {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  padding: var(--section-padding-y) 0;
}

.benefits__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 80px);
  font-weight: 900;
  color: var(--color-white);
  margin: 0 0 2rem;
  line-height: 1.1;
  text-align: center;
  width: 100%;
}

.benefits__cols {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  max-width: 100%;
  width: 100%;
}

.benefits__card {
  flex: 1 1 min(100%, 22rem);
  text-align: left;
}

.benefits__card-title {
  font-family: var(--font-heading-black);
  font-size: clamp(1rem, 2vw, 32px);
  font-weight: 900;
  color: var(--color-white);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.benefits__card-body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 32px);
  line-height: 1.5;
  color: var(--color-white);
  margin: 0;
  text-align: left;
}

.section__inner {
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: var(--section-padding-y) var(--section-padding-x);
  box-sizing: border-box;
}

.section__inner.benefits {
  padding: 0;
  width: 100%;
  max-width: var(--content-max-width);
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .section__inner.benefits {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    box-sizing: border-box;
  }
}

/* Why Rezolve */
.why-rezolve {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.why-rezolve__text {
  flex: 1 1 min(100%, 28rem);
}

.why-rezolve__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 80px);
  font-weight: 900;
  color: var(--color-firefly);
  margin: 0 0 1rem;
  line-height: 1.1;
}

.why-rezolve__body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 32px);
  line-height: 1.5;
  color: var(--color-firefly);
  margin: 0;
}

.why-rezolve__tagline {
  font-family: var(--font-heading-black);
  font-weight: 900;
  font-size: inherit;
}

.why-rezolve__media {
  flex: 1 1 min(100%, 28rem);
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  overflow-x: hidden;
}

.why-rezolve__img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  transition:
    opacity 1s var(--ease-out-soft),
    transform 1.05s var(--ease-out-soft);
  transition-delay: 0.12s;
}

.why-rezolve__media:not(.why-rezolve__media--visible) .why-rezolve__img {
  opacity: 0;
  transform: translate3d(72px, 0, 0);
}

.why-rezolve__media.why-rezolve__media--visible .why-rezolve__img {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* How it works */
.how-it-works {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.how-it-works__header {
  margin-bottom: 2.5rem;
}

.how-it-works__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 80px);
  font-weight: 900;
  color: var(--color-firefly);
  margin: 0 0 0.75rem;
  line-height: 1.1;
}

.how-it-works__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 32px);
  line-height: 1.5;
  color: var(--color-firefly);
  margin: 0;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.how-it-works__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 900px;
  align-items: stretch;
}

@media (max-width: 700px) {
  .how-it-works__steps {
    grid-template-columns: 1fr;
  }
}

.how-it-works__step {
  display: grid;
  grid-template-rows: auto auto auto;
  text-align: center;
  padding: 1.75rem 1rem;
  border-radius: var(--radius-lg);
  min-height: 22rem;
  min-width: 0;
  align-items: start;
  justify-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

.how-it-works__step--ask {
  background-color: rgba(232, 81, 69, 1);
}

.how-it-works__step--connect {
  background-color: var(--color-sunglow);
}

.how-it-works__step--done {
  background-color: #4A90A4;
}

.how-it-works__icon {
  width: 100%;
  max-width: 120px;
  height: 100px;
  object-fit: contain;
  object-position: center top;
  margin-bottom: 0.75rem;
  display: block;
}

.how-it-works__step-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.6vw, 2rem);
  font-weight: 900;
  color: var(--color-firefly);
  margin: 0 0 0.5rem;
  line-height: 1.1;
}

.how-it-works__step-body {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1.85vw, 1.125rem);
  line-height: 1.45;
  color: var(--color-firefly);
  margin: 0;
  text-align: center;
  width: 100%;
  max-width: 100%;
  align-self: stretch;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  box-sizing: border-box;
  padding-inline: 0.125rem;
}

@media (max-width: 700px) {
  .how-it-works__step {
    min-height: 0;
  }

  .how-it-works__step-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .how-it-works__step-body {
    font-size: clamp(1.125rem, 4.5vw, 1.375rem);
    line-height: 1.55;
    padding-inline: 0.35rem;
  }
}

/* Who it's for */
.whos-it-for {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.whos-it-for__intro {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  width: 100%;
}

.whos-it-for__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 80px);
  font-weight: 900;
  color: var(--color-firefly);
  margin: 0 0 1rem;
  line-height: 1.1;
}

.whos-it-for__lead {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 32px);
  line-height: 1.5;
  color: var(--color-firefly);
  margin: 0;
}

.whos-it-for__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.whos-it-for__row:last-child {
  margin-bottom: 0;
}

.whos-it-for__media {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.whos-it-for__content {
  min-width: 0;
}

.whos-it-for__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 125px);
  font-weight: 900;
  line-height: 1;
  color: var(--color-firefly);
  margin-bottom: 0.25rem;
}

.whos-it-for__heading {
  font-family: var(--font-heading-black);
  font-size: clamp(1.25rem, 2.5vw, 55px);
  font-weight: 900;
  color: var(--color-firefly);
  margin: 0 0 1rem;
  line-height: 1.15;
}

.whos-it-for__list {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1.35vw, 30px);
  line-height: 1.45;
  color: var(--color-firefly);
  margin: 0;
  padding-left: 1.25rem;
}

.whos-it-for__list li {
  margin-bottom: 0.5rem;
}

.whos-it-for__list li:last-child {
  margin-bottom: 0;
}

@media (max-width: 800px) {
  .whos-it-for__row {
    grid-template-columns: 1fr;
  }

  .whos-it-for__media {
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
    order: -1;
  }

  .whos-it-for__content {
    order: 0;
  }
}

/* Ready section */
.ready-section {
  width: 100%;
  position: relative;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 50%;
  grid-template-rows: auto auto;
  gap: 2rem 3rem;
  align-items: start;
}

.ready-section__content {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.ready-section__title {
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 80px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--color-firefly);
  margin: 0 0 1.5rem;
  letter-spacing: 0;
}

.ready-section__cta-row {
  grid-column: 1 / -1;
  grid-row: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ready-section__cta {
  flex-shrink: 0;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-sunglow);
  color: var(--color-firefly);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 56px);
  font-weight: 900;
  text-decoration: none;
  padding: 0.72em 1.25em 0.34em;
  border-radius: var(--radius-lg);
  line-height: 1.05;
  transition: opacity 0.2s;
}

.ready-section__cta:hover {
  opacity: 0.9;
}

.ready-section__img {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  justify-self: stretch;
}

.ready-section__body {
  align-self: stretch;
  text-align: left;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 32px);
  line-height: 1.5;
  color: var(--color-firefly);
  max-width: none;
}

.ready-section__body p {
  margin: 0 0 1rem;
}

.ready-section__body p:last-child {
  margin-bottom: 0;
}

.ready-section__subhead {
  font-family: var(--font-heading-black);
  font-weight: 900;
  font-size: clamp(1.25rem, 2vw, 55px);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
  .ready-section {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .ready-section__content {
    grid-column: 1;
    grid-row: auto;
  }

  .ready-section__img {
    grid-column: 1;
    grid-row: auto;
    width: 55%;
    max-width: 260px;
    justify-self: center;
  }

  .ready-section__cta-row {
    grid-column: 1;
    grid-row: auto;
  }
}

/* FAQ */
.faq {
  width: 100%;
  margin: 0 auto;
}

.faq__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 80px);
  font-weight: 900;
  color: var(--color-white);
  margin: 0 0 2rem;
  line-height: 1.1;
}

.faq__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(var(--rgb-white), 0.2);
}

.faq__item {
  border-bottom: 1px solid rgba(var(--rgb-white), 0.2);
}

.faq__trigger {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  color: var(--color-white);
  transition: color 0.25s ease, background-color 0.25s ease;
}

.faq__trigger:focus-visible {
  outline: 2px solid var(--color-sunglow);
  outline-offset: 3px;
}

.faq__question {
  font-family: var(--font-heading-black);
  font-size: clamp(1.125rem, 2.5vw, 40px);
  font-weight: 900;
  line-height: 1.25;
  flex: 1;
  min-width: 0;
}

.faq__icons {
  flex-shrink: 0;
  width: clamp(2.75rem, 9vw, 4rem);
  height: clamp(2.75rem, 9vw, 4rem);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 60px);
  font-weight: 900;
  color: var(--color-sunglow);
  line-height: 0;
  margin-top: 0.18rem;
  transform: translateY(0.12rem);
}

.faq__icons > .faq__icon {
  grid-area: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
  transition: opacity 0.4s var(--ease-out-soft);
}

.faq__item:not(.faq__item--open) .faq__icon--close {
  opacity: 0;
}

.faq__item.faq__item--open .faq__icon--plus {
  opacity: 0;
}

.faq__panel {
  padding: 0;
}

.faq__panel-outer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease-out-soft);
}

.faq__item--open .faq__panel-outer {
  grid-template-rows: 1fr;
}

.faq__panel-inner {
  overflow: hidden;
  min-height: 0;
}

.faq__answer {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 30px);
  line-height: 1.5;
  color: rgba(var(--rgb-white), 0.92);
  margin: 0;
  padding-bottom: 1.35rem;
  width: 100%;
  box-sizing: border-box;
}

.faq__item--open .faq__answer {
  animation: faq-answer-in 0.45s var(--ease-out-soft) both;
}

@keyframes faq-answer-in {
  from {
    opacity: 0;
    transform: translate3d(0, -10px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* In-page link target for “Pre-register your interest” */
#contact {
  scroll-margin-top: 2rem;
}

/* Contact form */
.contact {
  width: 100%;
  max-width: min(48rem, 100%);
  margin: 0 auto;
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 80px);
  font-weight: 900;
  color: var(--color-firefly);
  margin: 0 0 2rem;
  line-height: 1.1;
}

.contact__fields {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact__label {
  font-family: var(--font-body-bold);
  font-size: clamp(0.875rem, 1.5vw, 18px);
  font-weight: 700;
  color: var(--color-firefly);
}

.contact__input,
.contact__textarea {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 18px);
  color: var(--color-firefly);
  padding: 0.65rem 0.85rem;
  border: 2px solid rgba(var(--rgb-firefly), 0.2);
  border-radius: 10px;
  background: var(--color-white);
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact__textarea {
  resize: vertical;
  min-height: 8rem;
  line-height: 1.45;
}

.contact__input:focus-visible,
.contact__textarea:focus-visible {
  outline: none;
  border-color: var(--color-firefly);
  box-shadow: 0 0 0 3px rgba(var(--rgb-sunglow), 0.45);
}

.contact__hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.contact__form {
  position: relative;
}

.contact__submit {
  margin-top: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0.68em 1.35em 0.38em;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  background-color: var(--color-sunglow);
  color: var(--color-firefly);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 32px);
  font-weight: 900;
  line-height: 1;
  transition: opacity 0.2s ease;
}

.contact__submit:hover {
  opacity: 0.92;
}

.contact__submit:focus-visible {
  outline: 2px solid var(--color-firefly);
  outline-offset: 3px;
}

/* Footer */
.site-footer {
  width: 100%;
}

.site-footer__contain {
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding-left: var(--section-padding-x);
  padding-right: var(--section-padding-x);
  box-sizing: border-box;
}

.site-footer__contain--strip {
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-footer__strip {
  background-color: var(--color-sunglow);
  padding-top: clamp(2rem, 6vw, 4.5rem);
  padding-bottom: clamp(2rem, 6vw, 4.5rem);
}

.site-footer__logo {
  width: auto;
  max-width: min(22rem, 92%);
  height: auto;
  display: block;
  margin: 0 auto;
  opacity: 0.98;
}

.site-footer__body {
  background-color: var(--color-white);
  padding-top: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

/* Decorative marks hidden until link strip is wired */
.site-footer__graphics {
  display: none;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.site-footer__mark-scroll {
  display: flex;
  justify-content: center;
  overflow-x: hidden;
  padding: 0.5rem 0 1rem;
}

.site-footer__mark-cluster {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.site-footer__slice {
  position: absolute;
  object-fit: cover;
}

.site-footer__badge {
  position: relative;
  flex-shrink: 0;
  width: 63px;
  height: 63px;
  background-color: var(--color-sunglow);
  border-radius: 31.64px;
}

.site-footer__stage {
  position: relative;
  flex-shrink: 0;
  width: 201px;
  height: 81px;
}

.site-footer__orbit {
  position: absolute;
  left: 60px;
  top: 0;
  width: 81px;
  height: 81px;
}

.site-footer__ellipse {
  position: absolute;
  left: 9px;
  top: 9px;
  width: calc(100% - 17px);
  height: calc(100% - 17px);
  background-color: var(--color-sunglow);
  border-radius: 31.64px;
  transform: rotate(-70.67deg);
}

.site-footer__orbit-inner {
  display: flex;
  position: absolute;
  right: calc(50% - 19px);
  top: calc(50% - 19px);
  width: 37px;
  height: 37px;
}

.site-footer__orbit-stack {
  position: relative;
  flex: 1;
  width: 37.1px;
}

.site-footer__slice--10908 {
  height: 4px;
  right: calc(20.01% - 1px);
  top: calc(20.23% - 1px);
  width: 4px;
}

.site-footer__slice--10909 {
  height: 18px;
  right: calc(49.19% - 9px);
  top: calc(50% - 9px);
  width: 18px;
}

.site-footer__slice--10910 {
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.site-footer__column {
  display: flex;
  position: absolute;
  left: 0;
  top: 9px;
  width: 63px;
  height: 63px;
}

.site-footer__column-face {
  position: relative;
  flex: 1;
  width: 63.28px;
  background-image: url("../img/path-10911@1x.png");
  background-position: 50% 50%;
  background-size: cover;
}

.site-footer__slice--10912 {
  bottom: 0;
  height: 51px;
  right: calc(48.47% - 13px);
  width: 27px;
}

.site-footer__badge--mid {
  position: absolute;
  left: 137px;
  top: 9px;
}

.site-footer__slice--10915 {
  height: calc(100% - 24px);
  left: calc(48.26% - 16px);
  top: 12px;
  width: 34px;
}

.site-footer__slice--10913 {
  height: 29px;
  left: calc(31.83% - 2px);
  top: calc(47.22% - 14px);
  width: 7px;
}

.site-footer__slice--10914 {
  bottom: calc(41.4% - 8px);
  height: 20px;
  right: calc(35.88% - 7px);
  width: 19px;
}

.site-footer__slice--10907 {
  height: 24px;
  left: 14px;
  top: calc(49.79% - 12px);
  width: calc(100% - 29px);
}

.site-footer__legal {
  margin: 0 auto;
  max-width: min(34rem, 100%);
  font-family: var(--font-body);
  font-size: clamp(0.6875rem, 1.25vw, 0.8125rem);
  line-height: 1.45;
  color: rgba(var(--rgb-firefly), 0.72);
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0.2rem 0.35rem;
}

.site-footer__legal-slash {
  opacity: 0.55;
  user-select: none;
}

.site-footer__legal-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer__legal-link:hover {
  opacity: 0.88;
}

.site-footer__legal-link:focus-visible {
  outline: 2px solid rgba(var(--rgb-firefly), 0.45);
  outline-offset: 2px;
}
