/* ── ClassedWallet Nav ───────────────────────────────────────────────────────── */
.cw-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  gap: 40px;
  background: rgba(10,15,26,.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.cw-nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.cw-nav-logo {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -.5px;
  flex-shrink: 0;
}
.cw-nav-logo em { color: var(--g); font-style: normal; }

.cw-nav-links {
  display: flex;
  gap: 24px;
  flex: 1;
}
.cw-nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  transition: color .15s;
}
.cw-nav-links a:hover,
.cw-nav-links a.current-menu-item { color: #fff; font-weight: 700; }

.cw-nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

/* ── Mobile nav ─────────────────────────────────────────────────────────────── */
.cw-mob-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 8px 0 16px;
  z-index: 300;
}

.cw-mn-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  color: inherit;
}
.cw-mn-icon { font-size: 19px; }
.cw-mn-lbl  { font-size: 9px; font-weight: 600; color: var(--faint); }
.cw-mn-item.on .cw-mn-lbl { color: var(--g); }

.cw-mn-cta {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.cw-mn-pill {
  padding: 8px 16px;
  background: var(--g);
  color: #fff;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(5,150,105,.3);
}

@media (max-width: 768px) {
  .cw-nav           { padding: 0 18px; height: 52px; }
  .cw-nav-links     { display: none; }
  .cw-mob-nav       { display: flex; }
  body.cw-page      { padding-bottom: 70px; }
}
