html { background: #0B0C0E; }
body { background: #0B0C0E; }
::selection { background: rgba(212,175,55,.35); color: #fff; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0B0C0E; }
::-webkit-scrollbar-thumb { background: #2a2d34; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #3a3e47; }

.dot-grid {
  background-image: radial-gradient(rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 22px 22px;
}
.card-lift { transition: transform .35s cubic-bezier(.22,1,.36,1), border-color .35s, box-shadow .35s; }
.card-lift:hover {
  transform: translateY(-5px);
  border-color: rgba(212,175,55,.45);
  box-shadow: 0 18px 50px -18px rgba(212,175,55,.22);
}

/* Scroll reveal */
.rv { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; transition-delay: var(--d, 0s); }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Nav */
.nav-link { position: relative; }
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0%;
  background: #D4AF37; transition: width .3s ease;
}
.nav-link:hover::after { width: 100%; }

/* Desktop dropdowns */
.nav-drop { position: relative; }
.nav-drop .drop-panel {
  position: absolute; top: 100%; padding-top: 14px;
  opacity: 0; pointer-events: none;
  transform: translate(-50%, 6px);
  transition: opacity .2s ease, transform .2s ease;
}
.nav-drop:hover .drop-panel,
.nav-drop:focus-within .drop-panel { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }

/* Accordion (max-height — reliable collapse) */
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .45s cubic-bezier(.22,1,.36,1); }
.acc-item.open .acc-panel { max-height: 26rem; }
.acc-icon { transition: transform .3s ease; }
.acc-item.open .acc-icon { transform: rotate(45deg); }

/* Pulsing dispatch dot */
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,.55); }
  50% { box-shadow: 0 0 0 9px rgba(16,185,129,0); }
}
.pulse-dot { animation: pulse-dot 2s infinite; }

/* Gold seal slow rotation */
@keyframes spin-slow { to { transform: rotate(360deg); } }
.spin-slow { animation: spin-slow 28s linear infinite; }

/* Route dash */
@keyframes dash-move { to { stroke-dashoffset: -24; } }
.route-line { stroke-dasharray: 6 6; animation: dash-move 1.6s linear infinite; }

/* Pricing / data tables */
.gtable { width: 100%; border-collapse: collapse; }
.gtable th {
  text-align: left; font-size: 11px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: #94a3b8; padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.gtable td { padding: 14px 16px; font-size: 14px; color: #cbd5e1; border-bottom: 1px solid rgba(255,255,255,.06); }
.gtable tr:last-child td { border-bottom: 0; }
.gtable .price { color: #D4AF37; font-weight: 700; white-space: nowrap; }

/* Steps */
.step-num {
  display: flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: 9999px; flex-shrink: 0;
  border: 1px solid rgba(212,175,55,.4); background: rgba(212,175,55,.14);
  color: #D4AF37; font-weight: 700; font-family: Fraunces, Georgia, serif;
}

/* Price anchor chips */
.price-chip {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid rgba(212,175,55,.3); background: rgba(212,175,55,.14);
  border-radius: 9999px; padding: .5rem 1rem;
  font-size: .8rem; font-weight: 600; color: #e2e8f0;
}
.price-chip b { color: #D4AF37; }
