nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(8,18,53,0.95); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 70px;
  border-bottom: 1px solid rgba(201,168,76,0.3);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, #1a2233, #3c4d66);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 0 0 2px rgba(201,168,76,0.5);
}
.logo-mark::before {
  content: ''; position: absolute; width: 150%; height: 150%; top: -25%; left: -25%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 60%);
}
.logo-stripes { display: flex; gap: 2px; align-items: flex-end; }
.logo-stripes span {
  display: block; background: linear-gradient(180deg, #d4af37, #a27a1a);
  border-radius: 1px;
  box-shadow: 0 0 5px rgba(212,175,55,0.7);
}
.logo-stripes span:nth-child(1) { height: 12px; width: 4px; }
.logo-stripes span:nth-child(2) { height: 25px; width: 6px; }
.logo-stripes span:nth-child(3) { height: 18px; width: 5px; }
.logo-stripes span:nth-child(4) { height: 22px; width: 4px; }
.logo-stripes span:nth-child(5) { height: 15px; width: 5px; }
.logo-text { line-height: 1.1; }
.logo-text .ntb { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 18px; color: var(--white); letter-spacing: 2px; }
.logo-text .tagline { font-size: 9px; color: rgba(201,168,76,0.9); letter-spacing: 1.5px; text-transform: uppercase; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.8); text-decoration: none; font-size: 13px;
  font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--green); color: white !important;
  padding: 8px 20px; border-radius: 4px; transition: background 0.3s !important;
}
.nav-cta:hover { background: var(--green-light) !important; color: white !important; }
.nav-cta::after { display: none !important; }