:root {
  --sz-nav-bg: rgba(13, 10, 30, 0.96);
  --sz-nav-bg-strong: #100b24;
  --sz-accent: #a78bfa;
  --sz-accent-2: #c4b5fd;
  --sz-accent-soft: rgba(167, 139, 250, 0.14);
  --sz-text: #f8fafc;
  --sz-muted: #a7adc4;
  --sz-border: rgba(196, 181, 253, 0.22);
}

.score-util-bar,
.score-nav,
.score-mobile-overlay,
.score-nav * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.score-util-bar {
  min-height: 32px;
  background: #090717;
  color: var(--sz-muted);
  font-family: Inter, Outfit, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  position: relative;
  z-index: 9001;
  border-bottom: 1px solid rgba(196, 181, 253, 0.12);
}

.score-util-bar .wrap,
.score-nav .wrap {
  width: min(1190px, calc(100% - 32px));
  margin: 0 auto;
}

.score-util-bar .wrap {
  min-height: 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}

.score-util-bar strong { color: var(--sz-text); }
.score-util-bar .util-center { text-align: center; color: var(--sz-accent-2); font-weight: 850; }
.score-util-bar .util-right { text-align: right; }
.score-util-bar .util-email { color: #dbe3f1; font-weight: 800; }
.score-util-bar .sep { color: rgba(167, 173, 196, 0.45); margin: 0 7px; }

nav.score-nav.scorezenith-nav { display: block !important; }

.score-nav {
  position: sticky;
  top: 0;
  z-index: 9000;
  min-height: 90px;
  background:
    radial-gradient(circle at 20% 0%, rgba(167,139,250,.18), transparent 34%),
    var(--sz-nav-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--sz-border);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.32);
  font-family: Inter, Outfit, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.score-nav .wrap {
  min-height: 90px;
  display: flex !important;
  align-items: center;
  gap: 22px;
}

.score-nav .brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--sz-text);
  text-decoration: none;
  flex: 0 0 auto;
}

.score-nav .brand-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: var(--sz-accent-soft);
  border: 1px solid rgba(196, 181, 253, 0.34);
}

.score-nav .brand-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: var(--sz-accent-2);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.score-nav .brand-text { display: grid; gap: 4px; }
.score-nav .brand-name { font-size: clamp(1.18rem, 2vw, 1.48rem); font-weight: 950; line-height: 1; white-space: nowrap; }
.score-nav .brand-name span { color: var(--sz-accent-2); }
.score-nav .brand-tag { font-size: 0.72rem; color: var(--sz-muted); font-weight: 800; }

.score-nav .links {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-left: auto;
}

.score-nav .links > a,
.score-nav .dropdown > button {
  height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #eef2ff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 0 13px;
  font-size: 0.91rem;
  line-height: 1;
  font-weight: 880;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
  font-family: inherit;
}

.score-nav .links > a:hover,
.score-nav .dropdown:hover > button,
.score-nav .dropdown.open > button {
  transform: translateY(-1px);
  background: rgba(167, 139, 250, 0.15);
  border-color: rgba(196, 181, 253, 0.42);
  box-shadow: 0 16px 38px rgba(167, 139, 250, 0.14);
}

.score-nav .links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--sz-accent-2);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.score-nav .caret {
  width: 7px;
  height: 7px;
  border-right: 1.8px solid #a7adc4;
  border-bottom: 1.8px solid #a7adc4;
  transform: rotate(45deg) translateY(-2px);
}

.score-nav .dropdown { position: relative; }
.score-nav .dropdown::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 18px; }

.score-nav .dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: min(650px, calc(100vw - 32px));
  padding: 18px;
  background: #111025;
  border: 1px solid rgba(196, 181, 253, 0.25);
  border-radius: 20px;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.46);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .16s ease, visibility .16s ease, transform .16s ease;
}

.score-nav .dropdown-panel.right { left: auto; right: 0; }
.score-nav .dropdown:hover .dropdown-panel,
.score-nav .dropdown.open .dropdown-panel { opacity: 1; visibility: visible; transform: translateY(0); }

.score-nav .dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.score-nav .dropdown-grid a,
.score-mobile-overlay a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #f8fafc;
  text-decoration: none;
}

.score-nav .dropdown-grid a {
  padding: 13px;
  border-radius: 14px;
  border: 1px solid transparent;
}

.score-nav .dropdown-grid a:hover { background: rgba(167, 139, 250, 0.10); border-color: rgba(196, 181, 253, 0.20); }

.score-nav .mini-icon,
.score-mobile-overlay .mini-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(167, 139, 250, 0.13);
  border: 1px solid rgba(196, 181, 253, 0.24);
  color: var(--sz-accent-2);
  font-size: 0.72rem;
  font-weight: 950;
  flex: 0 0 auto;
}

.score-nav strong { display: block; font-size: .92rem; line-height: 1.2; }
.score-nav small { display: block; margin-top: 4px; color: var(--sz-muted); font-size: .78rem; line-height: 1.35; font-weight: 650; }

.score-nav .cta-main,
.score-mobile-overlay .cta-main {
  background: linear-gradient(135deg, #a78bfa, #c4b5fd);
  color: #111025 !important;
  border-color: rgba(255,255,255,.2) !important;
  box-shadow: 0 16px 40px rgba(167, 139, 250, 0.18);
}

.score-nav .hamburger {
  display: none;
  width: 46px;
  height: 44px;
  border: 1px solid rgba(196, 181, 253, 0.24);
  background: rgba(255,255,255,.05);
  border-radius: 14px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.score-nav .hamburger span { width: 19px; height: 2px; border-radius: 99px; background: #f8fafc; }

.score-mobile-overlay {
  display: none;
  position: fixed;
  inset: 116px 16px auto 16px;
  z-index: 8999;
  max-height: calc(100vh - 132px);
  overflow: auto;
  padding: 18px;
  border-radius: 22px;
  background: rgba(17, 16, 37, 0.98);
  border: 1px solid rgba(196, 181, 253, 0.25);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.5);
  font-family: Inter, Outfit, system-ui, sans-serif;
}

.score-mobile-overlay.open { display: grid; gap: 10px; }
.score-mobile-overlay a { padding: 13px; border-radius: 14px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.08); }
.score-mobile-overlay .mobile-section-title { margin: 8px 4px 2px; color: var(--sz-accent-2); font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 950; }

@media (max-width: 1120px) {
  .score-nav .links { display: none; }
  .score-nav .hamburger { display: inline-flex; }
}

@media (max-width: 760px) {
  .score-util-bar .wrap { grid-template-columns: 1fr; gap: 3px; padding: 7px 0; text-align: center; }
  .score-util-bar .util-right { text-align: center; }
  .score-nav, .score-nav .wrap { min-height: 82px; }
  .score-nav .brand-tag { display: none; }
  .score-nav .brand-icon { width: 38px; height: 38px; }
  .score-mobile-overlay { inset-top: 124px; }
}
