/* Guestify homepage callout — drop into styles.css on go-live.
   Sits in document flow immediately AFTER #cveAlertBar (or after
   #provider-ticker when the CVE bar is display:none).
   Not sticky. Do not change ticker/CVE offsets:
     ticker  position:sticky; top: var(--nav-h);            z-index: 998
     CVE     position:sticky; top: calc(var(--nav-h) + 26px); z-index: 997 */

.guestify-strip {
  position: relative;
  z-index: 1; /* below ticker 998 and CVE 997 — never covers them on scroll */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.4rem 1rem;
  background:
    linear-gradient(90deg, rgba(18, 38, 86, 0.98) 0%, rgba(13, 28, 64, 0.98) 50%, rgba(18, 38, 86, 0.98) 100%);
  border-bottom: 1px solid rgba(169, 226, 249, 0.38);
  box-shadow: inset 0 1px 0 rgba(91, 140, 255, 0.18);
}
.guestify-strip-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1rem;
  flex-wrap: wrap;
  max-width: 1100px;
  width: 100%;
  color: var(--txt-primary);
  text-decoration: none;
}
.guestify-strip-link:hover { color: #fff; }
.gfy-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  flex-shrink: 0;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--grad);
  color: #080e1c;
  padding: 0.22rem 0.62rem;
  border-radius: 999px;
}
.gfy-chip svg { width: 11px; height: 11px; }
.gfy-copy {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: center;
  color: #e7e9ef;
}
.gfy-copy em {
  font-style: normal;
  color: var(--accent-2);
}
.gfy-go {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  flex-shrink: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #080e1c;
  background: var(--accent-2);
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.guestify-strip-link:hover .gfy-go { background: #fff; }
.gfy-go svg { width: 13px; height: 13px; }

/* Extra nav item needs the phone gone earlier than the 900px site rule. */
@media (max-width: 1100px) { .nav-phone { display: none; } }

@media (max-width: 720px) {
  .guestify-strip { padding: 0.55rem 0.85rem; min-height: 0; }
  .guestify-strip-link { gap: 0.4rem; }
  .gfy-copy { font-size: 0.82rem; line-height: 1.4; width: 100%; }
}
