/* Klickie nav "Partner with us" dropdown — matches the existing .nav-cta pill.
   CSS-only (hover + :focus-within for touch/keyboard), no JS dependency. */

.nav-menu { position: relative; display: inline-block; }

button.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  border: none; cursor: pointer; line-height: 1;
  font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
}

.nav-caret {
  width: 11px; height: 11px; flex-shrink: 0;
  transition: transform .25s cubic-bezier(.32,.72,0,1);
}
.nav-menu:hover .nav-caret,
.nav-menu:focus-within .nav-caret { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute; top: calc(100% + 12px); right: 0; min-width: 250px;
  background: #fff; border-radius: 16px; padding: 8px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.16);
  border: 1px solid rgba(10,10,10,0.06);
  opacity: 0; visibility: hidden;
  transform: translateY(-8px) scale(0.98); transform-origin: top right;
  transition: opacity .22s cubic-bezier(.32,.72,0,1),
              transform .22s cubic-bezier(.32,.72,0,1),
              visibility .22s;
  z-index: 300;
}
/* invisible bridge so the gap between trigger and panel doesn't drop hover */
.nav-dropdown::before { content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }

.nav-menu:hover .nav-dropdown,
.nav-menu:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0) scale(1);
}

.nav-dropdown a {
  display: flex; flex-direction: column; gap: 3px;
  padding: 12px 14px; border-radius: 11px;
  text-decoration: none; transition: background .16s;
}
.nav-dropdown a:hover { background: #F0EDE7; }
.nav-dropdown .nm-t { font-size: 14px; font-weight: 700; color: #0A0A0A; }
.nav-dropdown .nm-s { font-size: 12px; color: #6B7068; font-weight: 500; }

@media (max-width: 768px) {
  .nav-dropdown { min-width: 220px; }
}
