/* ──────────────────────────────────────────────────────────────────
 * VannaQ shared navigation chrome.
 * Matches the production homepage nav while staying CSP-safe.
 * ────────────────────────────────────────────────────────────────── */

.top {
  position: sticky;
  top: 0;
  z-index: 100;
  zoom: var(--nav-zoom, 1);
  flex-shrink: 0;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: rgba(28,28,30,.72);
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
  box-shadow: 0 18px 48px rgba(0,0,0,.18);
}
.top .row {
  width: 100%;
  max-width: none;
  height: auto;
  position: static;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: 0 28px;
  color: inherit;
  cursor: default;
  border-bottom: 0;
  font-size: inherit;
}
.top .row:hover { background: transparent; }
.top .logo {
  display: flex;
  align-items: center;
  color: #ffb340;
  font-weight: 700;
  text-decoration: none;
}
.vannaq-wordmark {
  position: relative;
  display: flex;
  align-items: center;
  color: #ffb340;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: .82;
  letter-spacing: 0;
  padding-right: 18px;
}
.vannaq-wordmark .word { color: #ffb340; letter-spacing: 0; }
.vannaq-wordmark .q-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 28px;
  margin-left: 2px;
  background: #ffb340;
  color: #071018;
  font-family: inherit;
  font-size: 31px;
  font-weight: 600;
  line-height: 1;
}
.vannaq-wordmark .tm {
  position: absolute;
  top: -7px;
  right: 0;
  color: #ffb340;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1;
}
.nav-links {
  display: flex;
  justify-self: start;
  gap: 26px;
  min-width: 0;
  white-space: nowrap;
}
.nav-right {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 24px;
  white-space: nowrap;
}
.nav-links a,
.nav-right a {
  color: #c7c7cc;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: none;
}
.nav-links a:hover,
.nav-links a.active,
.nav-right a:hover { color: #ffb340; }
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 0 19px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.pill-primary {
  color: #1b0d00 !important;
  background: #ff9500;
  box-shadow: 0 0 24px rgba(255,149,0,.35);
}
.pill-primary:hover {
  transform: translateY(-1px);
  background: #ffad33;
  box-shadow: 0 0 32px rgba(255,149,0,.48);
}
.nav-cta {
  min-height: 31px;
  padding: 0 14px;
  font-size: 12px;
}
.nav-right .nav-cta,
.nav-right .nav-cta:hover { color: #fff !important; }

@media (max-width: 920px) {
  .top .row { padding: 0 18px; }
  .nav-links, .nav-secondary { display: none; }
  .nav-right { display: flex; gap: 0; }
  .vannaq-wordmark { font-size: 24px; }
  .vannaq-wordmark .q-box { width: 23px; height: 26px; font-size: 29px; }
}

footer {
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 64px 0 44px;
}
footer .container {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, .8fr);
  gap: 42px;
}
.footer-brand {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}
.footer-text,
.footer-links a,
.footer-signal {
  color: #c7c7cc;
  font-size: 13px;
  line-height: 1.7;
}
.footer-title {
  color: #ffb340;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-links {
  display: grid;
  gap: 8px;
}
.footer-links a {
  text-decoration: none;
}
.footer-links a:hover {
  color: #ffb340;
}
.footer-bottom {
  color: #8e8e93;
  font-size: 11px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.10);
}

@media (max-width: 920px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* (Phase 0, 2026-05-06) The in-page credential-collection notice
 * and its companion CSS rule block were removed together with the
 * matching util.js helpers. Production now runs strict Clerk auth
 * (CLERK_AUTH_ENFORCE=1); 401/403 surfaces to the page's existing
 * Clerk session gate (assets/auth.js) instead of an in-page modal. */
