/*
 * Mobile navigation enhancement — paired with mobilenav.js.
 *
 * Framer's SSR (captured with JS off) renders the real mobile bar natively below
 * 810px (nav "Phone - Collasped": teal bar + hamburger + logo) — we do NOT style
 * the bar, Framer's own CSS does. We only add the OPEN menu, built by mobilenav.js
 * from the real nav links, since Framer's menu-open runtime is stripped. The
 * native hamburger triggers it; the overlay carries its own close button.
 */
[data-framer-name='Closed'] {
  cursor: pointer;
}

.ht-mnav-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  background: rgba(10, 30, 35, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.ht-mnav-overlay.ht-mnav-show {
  opacity: 1;
  pointer-events: auto;
}
.ht-mnav-panel {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
  transform: translateY(14px);
  transition: transform 0.28s ease;
  max-height: 78vh;
  overflow-y: auto;
}
.ht-mnav-overlay.ht-mnav-show .ht-mnav-panel {
  transform: none;
}
.ht-mnav-close {
  display: block;
  margin: 0 0 4px auto;
  width: 38px;
  height: 38px;
  border: 0;
  background: #eaf8fa;
  color: #0e1e23;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.ht-mnav-panel a {
  display: block;
  padding: 13px 16px;
  border-radius: 10px;
  font-family: Inter, 'Inter Placeholder', sans-serif;
  font-size: 17px;
  line-height: 1.3;
  color: #0e1e23;
  text-decoration: none;
  font-weight: 500;
}
.ht-mnav-panel a:hover,
.ht-mnav-panel a:active {
  background: #eaf8fa;
}
.ht-mnav-panel a.ht-mnav-cta {
  background: #30b4cf;
  color: #fff;
  text-align: center;
  margin-top: 6px;
  font-weight: 600;
}
