/* ─────────────────────────────────────────────────────────
   Founding Clients 2026 — site-wide promo styles
   (red top-nav pill + floating fly banner on other pages)
   ───────────────────────────────────────────────────────── */

/* ── NAV RED PILL ── */
.nav-links li a.nav-hot,
a.nav-hot {
  background: #c0392b !important;
  color: #fff !important;
  padding: .52rem 1rem !important;
  border-radius: 3px !important;
  font-size: .78rem !important;
  font-weight: 800 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  display: inline-flex !important;
  align-items: center;
  gap: .55rem;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
  position: relative;
  line-height: 1;
}
.nav-links li a.nav-hot::before,
a.nav-hot::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  animation: nav-hot-dot 2s ease-in-out infinite;
}
.nav-links li a.nav-hot:hover,
a.nav-hot:hover {
  background: #a12b1f !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(192, 57, 43, .35);
}

@keyframes nav-hot-dot {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%      { opacity: .55; transform: scale(.85); }
}

/* Mobile hamburger menu variant — keep red pill look, full width */
@media (max-width: 960px) {
  nav.menu-open .nav-links li a.nav-hot,
  nav.menu-open a.nav-hot {
    justify-content: center;
    margin: .5rem 0 !important;
    padding: 1rem !important;
    font-size: .95rem !important;
    border-bottom: none !important;
  }
}

/* ── FLOATING FLY BANNER ── */
.fly-founding {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 90;
  background: #1a2025;
  border: 1px solid rgba(192, 57, 43, .45);
  border-left: 4px solid #c0392b;
  border-radius: 6px;
  padding: 14px 42px 14px 16px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .35);
  text-decoration: none;
  color: #fff;
  display: inline-flex; align-items: center; gap: 12px;
  max-width: 340px;
  font-family: 'Montserrat', sans-serif;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  animation: fly-entry .55s cubic-bezier(.2, .8, .2, 1) .8s both;
}
.fly-founding:hover {
  transform: translateY(-3px);
  border-color: rgba(192, 57, 43, .85);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .45);
  color: #fff;
}
.fly-founding .fly-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #c0392b;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(192, 57, 43, .55);
  animation: fly-pulse 2.2s ease-in-out infinite;
}
.fly-founding .fly-body { line-height: 1.3; }
.fly-founding .fly-sub {
  font-size: .64rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase;
  color: #e06758;
  margin-bottom: .25rem;
}
.fly-founding .fly-text {
  font-size: .86rem; font-weight: 700;
  letter-spacing: .02em; line-height: 1.3;
}
.fly-founding .fly-close {
  position: absolute;
  top: 4px; right: 6px;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, .4);
  background: transparent; border: none;
  font-size: 18px; line-height: 1; cursor: pointer;
  font-family: inherit;
  transition: color .2s;
}
.fly-founding .fly-close:hover { color: #fff; }
.fly-founding.hidden { display: none !important; }

@keyframes fly-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(192, 57, 43, .55); }
  70%  { box-shadow: 0 0 0 10px rgba(192, 57, 43, 0); }
  100% { box-shadow: 0 0 0 0 rgba(192, 57, 43, 0); }
}
@keyframes fly-entry {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 560px) {
  .fly-founding {
    left: 12px; right: 12px; bottom: 12px;
    max-width: none;
  }
}
