/* Shared site chrome: navbar + footer. hm-typography.css loads before this on marketing pages. */

:root {
  --hm-chrome-h: clamp(5.25rem, 11.5vw, 6.35rem);
  --hm-nav-ink: #0a0a0a;
  --hm-nav-muted: #737373;
  --hm-nav-line: #ebebeb;
  --hm-nav-brand: #3b82f6;
  --hm-nav-max: 1360px;
}

/* ─── Navbar, transparent, overlays hero ─── */
header.hm-site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  font-family: "Outfit", "Poppins", system-ui, sans-serif;
  font-size: 1rem;
  letter-spacing: normal;
  word-spacing: normal;
  -webkit-font-smoothing: antialiased;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

header.hm-site-header nav,
header.hm-site-header .hm-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  max-width: var(--hm-nav-max);
  margin: 0 auto;
  padding: 1.35rem clamp(1.75rem, 5vw, 3rem);
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* First section sits under transparent navbar; copy clears the bar */
body:has(> header.hm-site-header) > :is(main, article) > section:first-of-type {
  padding-top: calc(var(--hm-chrome-h) + var(--hm-page-top-extra, 0px));
}

body:has(> header.hm-site-header) > main.ob-main-wrap > :first-child {
  padding-top: calc(var(--hm-chrome-h) + var(--hm-page-top-extra, 0px));
}

body:has(> header.hm-site-header) > article > :first-child {
  padding-top: calc(var(--hm-chrome-h) + var(--hm-page-top-extra, 0px));
}

/* Brand */
header.hm-site-header .hm-nav-brand,
header.hm-site-header .logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

header.hm-site-header .nav-logo {
  height: 3.35rem;
  width: auto;
  flex-shrink: 0;
}

header.hm-site-header .typo-tag-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

header.hm-site-header .typo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--hm-nav-ink);
}

header.hm-site-header .tag {
  margin-top: 0.22rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.4;
  color: #a3a3a3;
}

/* Desktop nav */
header.hm-site-header .hm-nav-dock,
header.hm-site-header .pc-nav {
  display: flex;
  align-items: center;
  gap: 2.75rem;
  margin-left: auto;
  flex-shrink: 0;
}

header.hm-site-header .hm-nav-primary,
header.hm-site-header .nav-list {
  display: flex;
  align-items: center;
  gap: 2.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

header.hm-site-header .nav-list-item {
  display: flex;
}

header.hm-site-header .hm-nav-primary .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.15rem;
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  word-spacing: 0.04em;
  color: var(--hm-nav-muted);
  text-decoration: none;
  border: none;
  border-radius: 0;
  line-height: 1.45;
  white-space: nowrap;
  transition: color 0.2s ease;
}

header.hm-site-header .hm-nav-primary .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--hm-nav-ink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

header.hm-site-header .hm-nav-primary .nav-link:hover {
  color: var(--hm-nav-ink);
}

header.hm-site-header .hm-nav-primary .nav-link.active {
  color: var(--hm-nav-ink);
  font-weight: 600;
}

header.hm-site-header .hm-nav-primary .nav-link.active::after,
header.hm-site-header .hm-nav-primary .nav-link:hover::after {
  transform: scaleX(1);
}

header.hm-site-header .hm-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-left: 0.25rem;
}

header.hm-site-header .hm-nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  word-spacing: normal;
  line-height: 1.35;
  text-decoration: none;
  border-radius: 999px;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

header.hm-site-header .hm-nav-actions .nav-link {
  padding: 0.65rem 1.35rem;
  line-height: 1.35;
}

header.hm-site-header .hm-nav-actions .nav-link::after {
  display: none;
}

header.hm-site-header .hm-nav-action--ghost,
header.hm-site-header .logout-btn {
  color: var(--hm-nav-muted) !important;
  background: transparent;
  border: 1px solid rgba(10, 10, 10, 0.1);
}

header.hm-site-header .hm-nav-action--ghost:hover,
header.hm-site-header .logout-btn:hover {
  color: var(--hm-nav-ink) !important;
  border-color: rgba(10, 10, 10, 0.18);
  background: rgba(255, 255, 255, 0.45);
}

header.hm-site-header .hm-nav-action--cta,
header.hm-site-header .nav-link[href="/login"] {
  color: #fff !important;
  background: var(--hm-nav-ink);
  border: 1px solid transparent;
  box-shadow: 0 8px 24px rgba(10, 10, 10, 0.15);
}

header.hm-site-header .hm-nav-action--cta:hover,
header.hm-site-header .nav-link[href="/login"]:hover {
  background: #171717;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(10, 10, 10, 0.2);
}

/* Hamburger */
header.hm-site-header .hamburger {
  display: none;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(10, 10, 10, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

header.hm-site-header .hamburger:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(10, 10, 10, 0.16);
}

.hamburger__bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 1.05rem;
}

.hamburger__bars span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--hm-nav-ink);
  transition: transform 0.28s ease, opacity 0.2s ease;
}

header.hm-site-header .hamburger.is-open .hamburger__bars span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

header.hm-site-header .hamburger.is-open .hamburger__bars span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Mobile drawer, minimal */
.hm-mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10100;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(10, 10, 10, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.hm-mobile-nav-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.hm-mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(300px, 88vw);
  height: 100%;
  height: 100dvh;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding:
    max(1rem, env(safe-area-inset-top))
    max(1.15rem, env(safe-area-inset-right))
    max(1.15rem, env(safe-area-inset-bottom))
    1.15rem;
  background: #fff;
  border-left: 1px solid var(--hm-nav-line);
  box-shadow: -12px 0 40px rgba(15, 23, 42, 0.08);
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 10110;
  overflow: hidden;
}

.hm-mobile-nav.active {
  transform: translateX(0);
}

body.hm-nav-open {
  overflow: hidden;
}

.hm-mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--hm-nav-line);
}

.hm-mobile-nav__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.hm-mobile-nav__brand .nav-logo {
  height: 2rem;
  flex-shrink: 0;
}

.hm-mobile-nav__brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.hm-mobile-nav__name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--hm-nav-ink);
}

.hm-mobile-nav__tag {
  margin-top: 0.12rem;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.3;
  color: #a3a3a3;
}

.hm-mobile-nav .close-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--hm-nav-muted);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.hm-mobile-nav .close-btn:hover,
.hm-mobile-nav .close-btn:focus-visible {
  color: var(--hm-nav-ink);
  background: #fafafa;
  outline: none;
}

.hm-mobile-nav .close-btn ion-icon {
  width: 1.4rem;
  height: 1.4rem;
}

.hm-mobile-nav__body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}

.hm-mobile-nav__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hm-mobile-nav__body .sidebar-link {
  display: block;
  padding: 0.9rem 0;
  text-decoration: none;
  color: var(--hm-nav-muted);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.35;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.hm-mobile-nav__links .sidebar-item:last-child .sidebar-link {
  border-bottom: none;
}

.hm-mobile-nav__body .sidebar-link:hover {
  color: var(--hm-nav-ink);
}

.hm-mobile-nav__body .sidebar-link.active {
  color: var(--hm-nav-ink);
  font-weight: 600;
}

.hm-mobile-nav__foot {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1.15rem;
}

.hm-mobile-nav__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hm-mobile-nav__cta--ghost,
.hm-mobile-nav .logout-btn {
  color: var(--hm-nav-muted) !important;
  background: transparent;
  border: 1px solid var(--hm-nav-line);
}

.hm-mobile-nav__cta--ghost:hover,
.hm-mobile-nav .logout-btn:hover {
  color: var(--hm-nav-ink) !important;
  border-color: #d4d4d4;
}

.hm-mobile-nav__cta--primary,
.hm-mobile-nav .nav-link[href="/login"] {
  color: #fff !important;
  background: var(--hm-nav-ink);
  border: 1px solid transparent;
}

.hm-mobile-nav__cta--primary:hover,
.hm-mobile-nav .nav-link[href="/login"]:hover {
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .hm-mobile-nav,
  .hm-mobile-nav-backdrop,
  header.hm-site-header,
  header.hm-site-header .nav-link,
  header.hm-site-header .hm-nav-action,
  .hamburger__bars span {
    transition: none;
  }

  header.hm-site-header .hm-nav-action--cta:hover,
  header.hm-site-header .nav-link[href="/login"]:hover {
    transform: none;
  }
}

@media (min-width: 769px) {
  .hm-mobile-nav,
  .hm-mobile-nav-backdrop {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  header.hm-site-header .hm-nav-primary,
  header.hm-site-header .nav-list {
    gap: 1.65rem;
  }

  header.hm-site-header .hm-nav-dock,
  header.hm-site-header .pc-nav {
    gap: 1.75rem;
  }

  header.hm-site-header .hm-nav-primary .nav-link {
    font-size: 0.88rem;
    letter-spacing: 0.025em;
  }

  header.hm-site-header .typo {
    font-size: 1.35rem;
  }

  header.hm-site-header .nav-logo {
    height: 3rem;
  }
}

@media (min-width: 769px) and (max-width: 900px) {
  header.hm-site-header .tag {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --hm-chrome-h: clamp(4.35rem, 12vw, 5rem);
  }

  header.hm-site-header nav,
  header.hm-site-header .hm-nav {
    padding: 1rem clamp(1.15rem, 4vw, 1.5rem);
    gap: 1rem;
  }

  header.hm-site-header .hm-nav-brand,
  header.hm-site-header .logo {
    flex: 1;
    min-width: 0;
  }

  header.hm-site-header .typo {
    font-size: 1.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  header.hm-site-header .tag {
    display: block;
    font-size: 0.56rem;
    letter-spacing: 0.1em;
  }

  header.hm-site-header .nav-logo {
    height: 2.65rem;
  }

  header.hm-site-header .hm-nav-dock,
  header.hm-site-header .pc-nav {
    display: none !important;
  }

  header.hm-site-header .hamburger {
    display: inline-flex;
  }
}

/* ─── Footer ─── */
footer.hm-footer {
  margin-top: 0 !important;
  padding: 0 !important;
  background: #0a0a0a !important;
  color: #d4d4d4;
  border: none !important;
  border-radius: 0 !important;
  line-height: 1.5;
}

.hm-footer__body {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hm-footer__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding-left: clamp(1.25rem, 4vw, 2rem);
  padding-right: clamp(1.25rem, 4vw, 2rem);
}

.hm-footer__body .hm-footer__inner {
  padding-top: clamp(3.25rem, 5vw, 4rem);
  padding-bottom: clamp(2.75rem, 4vw, 3.25rem);
}

footer.hm-footer .hm-footer__grid.footer-containers {
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  gap: clamp(2.5rem, 5vw, 4.5rem) !important;
  width: 100%;
}

footer.hm-footer .hm-footer__brand.footer-left-container {
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem;
  flex: 1.2 1 300px;
  max-width: 22rem !important;
  min-width: 0;
}

footer.hm-footer .hm-footer__col--products.footer-mid-container {
  flex: 1 1 240px;
  max-width: 19rem;
  min-width: 0;
}

footer.hm-footer .hm-footer__aside.company-and-resources {
  display: flex !important;
  flex: 1.1 1 260px;
  justify-content: flex-start !important;
  gap: clamp(2rem, 4vw, 3.5rem) !important;
  width: auto !important;
  min-width: 0;
  margin-left: auto;
}

footer.hm-footer .hm-footer__aside .footer-mid-container {
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
}

footer.hm-footer .hm-footer__logo.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

footer.hm-footer .typo-tag-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

footer.hm-footer .hm-footer__logo .nav-logo {
  height: 2.35rem;
}

footer.hm-footer .typo {
  font-size: 1rem;
  color: #fafafa;
}

footer.hm-footer .tag {
  font-size: 0.58rem;
  color: #737373;
}

footer.hm-footer .hm-footer__blurb.footer-para {
  margin: 0;
  max-width: none;
  font-size: 0.84rem;
  line-height: 1.75;
  color: #737373;
}

.hm-footer__contact {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.hm-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.8rem;
  line-height: 1.6;
  color: #a3a3a3;
}

.hm-footer__contact-item ion-icon {
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 0.9rem;
  color: #525252;
}

.hm-footer__contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.hm-footer__contact-item a:hover {
  color: #d4d4d4;
}

footer.hm-footer .hm-footer__col.footer-mid-container {
  display: flex !important;
  flex-direction: column !important;
  min-width: 0;
}

footer.hm-footer .hm-footer__heading.footer-heading {
  margin: 0 0 1.15rem !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em;
  text-transform: none;
  color: #fafafa !important;
  line-height: 1.35;
}

footer.hm-footer .hm-footer__links.footer-links {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0.7rem !important;
  width: 100%;
}

footer.hm-footer .hm-footer__link.footer-link {
  display: block;
  width: 100%;
  font-size: 0.84rem !important;
  font-weight: 400;
  line-height: 1.6;
  color: #a3a3a3 !important;
  text-decoration: none !important;
  transition: color 0.2s;
}

footer.hm-footer .hm-footer__link.footer-link:hover {
  color: #fafafa !important;
}

footer.hm-footer .footer-para {
  color: #a3a3a3 !important;
  font-size: 0.84rem !important;
  line-height: 1.65 !important;
}

.hm-footer__bar {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hm-footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.15rem;
  padding-bottom: 1.15rem;
}

.hm-footer__copy {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 400;
  color: #525252;
}

.hm-footer__bar-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hm-footer__bar-link {
  font-size: 0.72rem;
  font-weight: 500;
  color: #525252;
  text-decoration: none;
  transition: color 0.2s;
}

.hm-footer__bar-link:hover {
  color: #a3a3a3;
}

@media (max-width: 900px) {
  footer.hm-footer .hm-footer__grid.footer-containers {
    flex-direction: column !important;
    gap: 2.5rem !important;
  }

  footer.hm-footer .hm-footer__brand.footer-left-container,
  footer.hm-footer .hm-footer__col--products.footer-mid-container {
    flex: none;
    max-width: 100% !important;
  }

  footer.hm-footer .hm-footer__aside.company-and-resources {
    flex: none;
    width: 100% !important;
    margin-left: 0;
    gap: 2.5rem !important;
  }

  footer.hm-footer .hm-footer__blurb.footer-para {
    max-width: none;
  }
}

@media (max-width: 560px) {
  footer.hm-footer .hm-footer__aside.company-and-resources {
    flex-direction: column !important;
    gap: 1.75rem !important;
  }

  .hm-footer__bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ─── Scroll to top (marketing pages via hm-footer) ─── */
.hm-scroll-top {
  position: fixed;
  right: clamp(1.15rem, 3vw, 1.65rem);
  bottom: clamp(1.15rem, 3vw, 1.65rem);
  z-index: 9990;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: linear-gradient(165deg, #141414 0%, #0a0a0a 100%);
  color: #fafafa;
  cursor: pointer;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.04),
    0 12px 32px rgba(0, 0, 0, 0.22),
    0 0 24px rgba(59, 130, 246, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.92);
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.28s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.hm-scroll-top::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(165deg, rgba(59, 130, 246, 0.5) 0%, rgba(59, 130, 246, 0.08) 45%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.hm-scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.hm-scroll-top:hover {
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.12),
    0 16px 40px rgba(0, 0, 0, 0.28),
    0 0 32px rgba(59, 130, 246, 0.2);
  transform: translateY(-2px) scale(1);
}

.hm-scroll-top.is-visible:hover {
  transform: translateY(-2px) scale(1);
}

.hm-scroll-top:hover::before {
  opacity: 1;
}

.hm-scroll-top:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 3px;
}

.hm-scroll-top__icon {
  display: block;
  transition: transform 0.2s ease;
}

.hm-scroll-top:hover .hm-scroll-top__icon {
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .hm-scroll-top {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 12px;
  }

  .hm-scroll-top__icon {
    width: 18px;
    height: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hm-scroll-top,
  .hm-scroll-top.is-visible,
  .hm-scroll-top:hover,
  .hm-scroll-top.is-visible:hover,
  .hm-scroll-top__icon,
  .hm-scroll-top:hover .hm-scroll-top__icon {
    transition: none;
    transform: none;
  }
}
