:root{
  --nav-blue: #0b57d0;
  --nav-blue-dark: #0846ad;
  --nav-gray: #e6e8ee;
  --nav-gray-dark: #cfd4df;
}

/* RESET */
body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* =========================
   STICKY NAV BAR
========================= */

.top-nav{
  height: 96px;
  background: var(--nav-blue);
  width: 100%;
  left: 0;
	
  display: flex;
  align-items: center;
  justify-content: space-between;

  /* 1 inch padding on both sides */
  padding-left: 96px;
  padding-right: 96px;

  box-sizing: border-box;

  position: sticky;
  top: 0;
  z-index: 1000;

  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

/* Logo */
.nav-logo img{
  width: 72px;  /* 3/4 inch */
  height: 72px;
  object-fit: contain;
  display: block;
}

/* Center Links */
.nav-links{
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a{
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: 0.2s ease;
}

.nav-links a:hover{
  color: var(--nav-gray);
  text-decoration: underline;
}

/* =========================
   HIGH-CONVERSION CTA
========================= */

.cta-stack{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
}

.nav-cta .hcp-button{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: linear-gradient(135deg, #ffffff, var(--nav-gray));
  color: var(--nav-blue);
  border: none;

  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.3px;

  padding: 14px 24px;
  border-radius: 999px;
  cursor: pointer;

  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  transition: all 0.25s ease;
}

/* Hover Lift */
.nav-cta .hcp-button:hover{
  background: var(--nav-blue);
  color: white;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 26px rgba(0,0,0,0.28);
}

.cta-icon{
  font-size: 18px;
}

.cta-micro{
  margin-top: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* Remove default HCP margin */
.hcp-button{
  margin: 0 !important;
}

/* Glow Animation */
@keyframes pulseGlow {
  0%   { box-shadow: 0 4px 14px rgba(0,0,0,0.15), 0 0 0 0 rgba(11,87,208,0.45); }
  70%  { box-shadow: 0 4px 14px rgba(0,0,0,0.15), 0 0 0 12px rgba(11,87,208,0); }
  100% { box-shadow: 0 4px 14px rgba(0,0,0,0.15), 0 0 0 0 rgba(11,87,208,0); }
}

.glow-after-delay{
  animation: pulseGlow 2.8s infinite;
}

/* =========================
   MOBILE VERSION
========================= */

@media (max-width: 720px){

  .cta-micro{
    display: none;
  }

  .nav-cta{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;

    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);

    padding: 12px;
    z-index: 2000;

    border-top: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 -8px 18px rgba(0,0,0,0.12);

    display: flex;
    justify-content: center;
  }

  .nav-cta .hcp-button{
    width: 100%;
    max-width: 700px;
    justify-content: center;
    font-size: 18px;
    padding: 16px 20px;
  }

  body{
    padding-bottom: 80px;
  }
}