html.fl #page {
  display: none;
}

html:not(.fl) #fl-skeleton {
  display: none;
}

#fl-skeleton {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg);
  overflow: hidden;
}

.fl-bone {
  border-radius: var(--radius-xs);
  background: linear-gradient(90deg, var(--bg-shimmer) 25%, var(--bg-shimmer-light) 50%, var(--bg-shimmer) 75%);
  background-size: 400% 100%;
  animation: fl-shimmer 1.4s ease infinite;
}

@keyframes fl-shimmer {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: -100% 0;
  }
}

.fl-nav {
  height: 64px;
  padding: 0 clamp(24px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--bg-2);
}

.fl-nav-logo {
  width: 96px;
  height: 20px;
}

.fl-nav-links {
  display: flex;
  gap: 24px;
}

.fl-nav-link {
  width: 72px;
  height: 14px;
}

.fl-hero {
  padding: clamp(56px, 8vw, 100px) clamp(24px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 680px;
}

.fl-hero-eyebrow {
  width: 120px;
  height: 12px;
}

.fl-hero-title-1 {
  width: 85%;
  height: 40px;
  border-radius: var(--radius-sm);
}

.fl-hero-title-2 {
  width: 65%;
  height: 40px;
  border-radius: var(--radius-sm);
}

.fl-hero-body-1 {
  width: 75%;
  height: 14px;
  margin-top: 8px;
}

.fl-hero-body-2 {
  width: 55%;
  height: 14px;
}

.fl-hero-cta {
  width: 148px;
  height: 48px;
  border-radius: var(--radius-pill);
  margin-top: 8px;
}

.fl-section {
  padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fl-section-title {
  width: 45%;
  height: 20px;
}

.fl-cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.fl-card {
  flex: 1;
  min-width: 140px;
  height: 100px;
  border-radius: var(--radius);
}

#fl-skeleton .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 35px;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  --_g: no-repeat radial-gradient(circle closest-side, #000 90%, #0000);
  background: var(--_g) 0 0, var(--_g) 0 100%, var(--_g) 100% 100%;
  background-size: 40% 40%;
  animation: l11 1s infinite linear;
}

@keyframes l11 {
  25% {
    background-position: 100% 0, 0 100%, 100% 100%;
  }

  50% {
    background-position: 100% 0, 0 0, 100% 100%;
  }

  75% {
    background-position: 100% 0, 0 0, 0 100%;
  }

  100% {
    background-position: 100% 100%, 0 0, 0 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fl-bone,
  #fl-skeleton .loader {
    animation: none;
  }
}
