/* === Navigation === */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(12,10,6,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 0 32px;
}
.nav-inner {
  max-width: 1260px; margin: 0 auto;
  display: flex; align-items: center; gap: 6px; height: 150px;
}
.brand {
  display: flex; align-items: center; gap: 10px; margin-right: 24px;
  text-decoration: none; flex-shrink: 0;
}
.brand-text {
  font-family: var(--serif); font-size: 20px; font-weight: 600;
  color: var(--gold); letter-spacing: 0.5px;
}
.nav-links { display: flex; gap: 2px; align-items: center }
.nl {
  padding: 6px 14px; border-radius: var(--r);
  font-size: 13.5px; font-weight: 500; color: var(--text2);
  cursor: pointer; transition: .15s; border: 1px solid transparent;
  text-decoration: none; white-space: nowrap;
}
.nl:hover { color: var(--gold) }
.nl.active { color: var(--gold); border-color: rgba(201,168,76,.25); background: var(--gold-dim) }
.nav-right { margin-left: auto; display: flex; gap: 6px; align-items: center; flex-shrink: 0 }
.nav-divider { width: 1px; height: 24px; background: var(--line); margin: 0 6px; flex-shrink: 0 }

.mobile-menu-btn {
  display: none; background: none; border: 1px solid var(--line);
  color: var(--text); padding: 6px 10px; border-radius: var(--r);
  cursor: pointer; margin-left: auto;
}

/* Full-screen overlay menu */
.mobile-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(12,10,6,.97);
  backdrop-filter: blur(16px);
  display: flex; align-items: flex-start; justify-content: center;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding: 60px 20px 40px;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.mobile-overlay.open { opacity: 1; visibility: visible }
.mobile-overlay.open .mobile-overlay-content {
  transform: translateY(0); opacity: 1;
}
.mobile-overlay-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: 1px solid var(--line); color: var(--text);
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: .2s;
}
.mobile-overlay-close:hover { border-color: var(--gold); color: var(--gold) }
.mobile-overlay-content {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 0;
  width: 100%; max-width: 400px;
  margin: auto;
  transform: translateY(20px); opacity: 0;
  transition: transform .35s ease .1s, opacity .35s ease .1s;
}
.mobile-overlay-content a:not(.btn) {
  font-family: var(--serif); font-size: 20px; font-weight: 500;
  color: var(--text2); padding: 8px 0; text-decoration: none;
  transition: color .15s;
}
.mobile-overlay-content a:not(.btn):hover { color: var(--gold) }
.mobile-overlay-actions {
  margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}

/* Nav dropdowns */
.nav-dropdown { position: relative }
.nav-dropdown-toggle {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 6px 14px; border-radius: var(--r);
  font-size: 13.5px; font-weight: 500; color: var(--text2);
  cursor: pointer; transition: .15s; border: 1px solid transparent;
  background: none; white-space: nowrap; font-family: var(--sans);
}
.nav-dropdown-toggle:hover { color: var(--gold) }
.nav-dropdown-toggle.active { color: var(--gold); border-color: rgba(201,168,76,.25); background: var(--gold-dim) }
.nav-dropdown-toggle svg { width: 12px; height: 12px; transition: transform .2s }
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg) }
.nav-links .nav-dropdown-menu { right: auto; left: 0 }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 6px); right: 0; min-width: 160px;
  background: rgba(20,17,10,.96); backdrop-filter: blur(14px);
  border: 1px solid var(--line); border-radius: var(--r2);
  padding: 6px; opacity: 0; visibility: hidden;
  transform: translateY(-4px); transition: .15s; z-index: 210;
  box-shadow: 0 12px 32px rgba(0,0,0,.5);
}
.nav-dropdown.open .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0) }
.nav-dropdown-menu a, .nav-dropdown-menu button {
  display: block; width: 100%; padding: 8px 12px; border-radius: var(--r);
  font-size: 13px; font-weight: 500; color: var(--text2);
  text-decoration: none; transition: .15s; text-align: left;
  background: none; border: none; cursor: pointer; font-family: var(--sans);
}
.nav-dropdown-menu a:hover, .nav-dropdown-menu button:hover { color: var(--gold); background: var(--gold-dim) }
.nav-dropdown-menu .dd-divider { height: 1px; background: var(--line); margin: 4px 0 }

@media (max-width: 1080px) {
  .nav-links, .nav-right { display: none }
  .mobile-menu-btn { display: block }
  .nav-inner { justify-content: center; position: relative; height: 170px }
  .mobile-menu-btn { position: absolute; right: 0 }
  .brand { margin-right: 0 }
  .brand img { height: 150px !important }
}
@media (max-width: 1080px) {
  .main-content { padding-top: 186px }
}

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px; border-radius: var(--r);
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  cursor: pointer; transition: .15s; border: 1px solid;
  text-decoration: none;
}
.btn-ghost { border-color: var(--line); color: var(--text2); background: transparent }
.btn-ghost:hover { border-color: rgba(201,168,76,.4); color: var(--gold) }
.btn-gold {
  border-color: var(--gold);
  background: linear-gradient(135deg, #7a4a10, #c9a84c 120%);
  color: #0c0a06; font-weight: 600;
  box-shadow: 0 4px 20px rgba(201,168,76,.25);
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 6px 28px rgba(201,168,76,.35) }
.btn-outline { border-color: var(--gold); color: var(--gold); background: var(--gold-dim) }
.btn-outline:hover { background: rgba(201,168,76,.28) }
.btn-sm { padding: 6px 12px; font-size: 12px }
.btn-lg { padding: 13px 28px; font-size: 15px; border-radius: var(--r2) }

/* === Alert boxes === */
.alert-box {
  padding: 14px 16px; border-radius: var(--r); margin-bottom: 16px;
  font-size: 13px; line-height: 1.55;
}
.alert-warn, .alert-warning { background: rgba(212,135,58,.08); border: 1px solid rgba(212,135,58,.3); color: rgba(220,155,80,.95) }
.alert-info { background: var(--gold-dim); border: 1px dashed rgba(201,168,76,.35); color: var(--text2) }
.alert-good, .alert-success { background: rgba(90,170,122,.08); border: 1px solid rgba(90,170,122,.3); color: rgba(100,190,140,.9) }
.alert-error { background: rgba(194,80,80,.08); border: 1px solid rgba(194,80,80,.3); color: rgba(220,120,120,.9) }

/* === Toast === */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  max-width: 340px;
  background: linear-gradient(160deg, #2a2316, #1a1812);
  border: 1px solid rgba(201,168,76,.35); border-radius: 10px;
  padding: 14px 18px; box-shadow: 0 16px 40px rgba(0,0,0,.6);
  transform: translateY(100px); opacity: 0; transition: .3s ease; pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; pointer-events: auto }
.toast-title { font-weight: 600; font-size: 14px; color: var(--gold); margin-bottom: 4px }
.toast-msg { font-size: 13px; color: var(--text2) }

/* === Footer === */
footer {
  background: var(--dark2); border-top: 1px solid var(--line);
  padding: 32px 24px 20px; margin-top: 80px;
}
.footer-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px;
}
@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr; text-align: center }
  .footer-inner img { margin-left: auto; margin-right: auto; height: 150px !important }
}
.footer-brand { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--gold); margin-bottom: 8px }
.footer-tagline { font-size: 13px; color: var(--text2); line-height: 1.5 }
footer h4 { font-size: 12px; font-weight: 600; color: var(--text3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px }
.footer-link { display: block; font-size: 13px; color: var(--text2); padding: 4px 0; cursor: pointer; transition: .15s; text-decoration: none }
.footer-link:hover { color: var(--gold) }
.footer-bottom {
  max-width: 1140px; margin: 24px auto 0; padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 12px; color: var(--text3) }
.disclaimer {
  font-size: 11px; color: var(--text3); line-height: 1.5;
  padding: 12px; border: 1px dashed rgba(100,90,70,.35); border-radius: var(--r);
}

/* === Status pills === */
.status-pill {
  font-size: 10px; padding: 3px 8px; border-radius: 999px; font-weight: 600;
  letter-spacing: .5px; text-transform: uppercase; flex-shrink: 0;
}
.sp-verified { background: rgba(90,170,122,.15); border: 1px solid rgba(90,170,122,.4); color: var(--good) }
.sp-pending { background: rgba(212,135,58,.12); border: 1px solid rgba(212,135,58,.4); color: var(--warn) }
.sp-sold { background: rgba(120,110,90,.1); border: 1px solid rgba(120,110,90,.35); color: var(--text3) }
.sp-draft { background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.35); color: var(--gold) }
.sp-rejected { background: rgba(194,80,80,.12); border: 1px solid rgba(194,80,80,.4); color: var(--bad) }

/* === Transparency grid === */
.trans-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
}
@media (max-width: 700px) { .trans-grid { grid-template-columns: 1fr 1fr } }
.trans-cell { background: var(--dark2); padding: 20px 18px }
.trans-icon { margin-bottom: 10px; color: var(--gold) }
.trans-icon svg { width: 22px; height: 22px }
.trans-title { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 4px }
.trans-desc { font-size: 12px; color: var(--text2); line-height: 1.5 }

/* Why matters cards */
.why-card {
  border-radius: 10px; padding: 20px;
}
.why-card--problem { background: rgba(194,80,80,.05); border: 1px solid rgba(194,80,80,.15) }
.why-card--approach { background: rgba(201,168,76,.05); border: 1px solid rgba(201,168,76,.15) }
.why-card--result { background: rgba(90,170,122,.05); border: 1px solid rgba(90,170,122,.15) }
.why-card__title { font-weight: 600; font-size: 14px; margin-bottom: 6px }
.why-card__desc { font-size: 13px; color: var(--text2); line-height: 1.6 }
@media (max-width: 700px) {
  .why-card + .why-card { margin-top: 0 }
  div:has(> .why-card) { grid-template-columns: 1fr !important }
}

/* === Lucide Icon Utilities === */
.icon-inline {
  width: 20px; height: 20px;
  vertical-align: -4px;
  display: inline-block;
  color: var(--gold);
  stroke-width: 1.5;
}
.hc-icon svg { width: 20px; height: 20px; color: var(--gold); stroke-width: 1.5 }
.jd-path-icon svg { width: 24px; height: 24px; stroke-width: 1.5 }
.jd-destination-icon svg { stroke-width: 1.5 }
.js-icon svg { width: 22px; height: 22px; stroke-width: 1.5 }
.js-rp-icon svg { width: 14px; height: 14px; stroke-width: 1.5 }
.js-rcard-icon svg { width: 22px; height: 22px; color: var(--gold); stroke-width: 1.5 }
.empty-icon svg { stroke-width: 1.5 }
