:root{
  --bg:#07060b;
  --panel:#0f0d16;
  --panel2:#141226;
  --text:#ffffff;
  --muted:#b6b2c9;

  /* Mission City Rides-inspired neon accents */
  --teal:#00e5ff;
  --pink:#ff2d8d;
  --gold:#ffb000;
  --orange:#ff5a1f;
  --lime:#8cff00;

  --border: rgba(255,255,255,.12);
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; background:radial-gradient(1200px 800px at 20% 10%, rgba(0,229,255,.12), transparent 60%),
                                     radial-gradient(900px 700px at 80% 0%, rgba(255,45,141,.12), transparent 55%),
                                     radial-gradient(900px 700px at 50% 100%, rgba(255,176,0,.10), transparent 60%),
                                     var(--bg);
  color:var(--text); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

a{ color:inherit; text-decoration:none; }

.topbar{
  position:sticky; top:0; z-index:50;
  padding:14px 16px;
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  background: rgba(10,8,16,.82);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}

.brand{ display:flex; align-items:center; gap:12px; }
.logo{ width:54px; height:54px; object-fit:contain; border-radius:14px; border:1px solid var(--border); background:#000; }
.brandName{
  font-weight:900; letter-spacing:.4px; font-size:16px;
  background: linear-gradient(90deg, var(--teal), var(--pink), var(--gold));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.brandTag{ font-size:12px; color:var(--muted); margin-top:2px; }

.nav{ display:flex; gap:14px; font-weight:700; font-size:13px; }
.nav a{ padding:8px 10px; border-radius:12px; border:1px solid transparent; }
.nav a:hover{ border-color:var(--border); background:rgba(255,255,255,.04); }

.container{ max-width:1100px; margin:0 auto; padding:24px 16px 64px; }

.hero{
  display:grid; gap:16px;
  grid-template-columns: 1.25fr .75fr;
  align-items:stretch;
}
@media (max-width: 900px){ .hero{ grid-template-columns: 1fr; } }

.heroCard{
  border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(20,18,38,.86), rgba(10,8,16,.86));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:22px;
  position:relative;
  overflow:hidden;
}
.heroCard:before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(500px 200px at 20% 0%, rgba(0,229,255,.18), transparent 60%),
              radial-gradient(500px 200px at 80% 20%, rgba(255,45,141,.16), transparent 55%),
              radial-gradient(500px 200px at 50% 100%, rgba(255,176,0,.12), transparent 60%);
  pointer-events:none;
}

.heroCard h1{ margin:0 0 8px; font-size:34px; letter-spacing:.2px; }
.heroCard p{ margin:0 0 16px; color:var(--muted); line-height:1.5; }

.ctaRow{ display:flex; gap:10px; margin:14px 0 18px; flex-wrap:wrap; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px; border-radius:14px;
  font-weight:900; letter-spacing:.3px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
}
.btn.primary{
  border: none;
  background: linear-gradient(90deg, var(--teal), var(--pink), var(--gold));
  color:#05050a;
}
.btn.ghost:hover{ background: rgba(255,255,255,.07); }

.badges{ display:flex; flex-wrap:wrap; gap:8px; position:relative; z-index:2; }
.pill{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  font-weight:800; font-size:12px;
}

.heroVisual .glowFrame{
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(15,13,22,.86), rgba(10,8,16,.86));
  padding:18px;
  box-shadow: var(--shadow);
}
.heroVisual h2{ margin:0 0 6px; font-size:16px; }
.heroVisual p{ margin:0 0 12px; color:var(--muted); font-size:13px; line-height:1.45; }

.mapMock{
  height:220px;
  border-radius:16px;
  border:1px dashed rgba(255,255,255,.25);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.55);
  font-weight:900;
  background: radial-gradient(400px 180px at 30% 30%, rgba(0,229,255,.12), transparent 60%),
              radial-gradient(400px 180px at 70% 30%, rgba(255,45,141,.12), transparent 55%),
              rgba(255,255,255,.03);
}

.section{ margin-top:26px; }
.section h2{
  margin:0 0 10px;
  font-size:22px;
  background: linear-gradient(90deg, #fff, rgba(255,255,255,.55));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.muted{ color:var(--muted); }
.tiny{ font-size:12px; }

.grid2{ display:grid; grid-template-columns: 1fr 1fr; gap:14px; }
@media (max-width: 900px){ .grid2{ grid-template-columns:1fr; } }

.card{
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

label{ display:block; font-size:12px; font-weight:900; margin:10px 0 6px; }
input,select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color: var(--text);
  outline:none;
}
input:focus, select:focus{ border-color: rgba(0,229,255,.55); box-shadow: 0 0 0 3px rgba(0,229,255,.12); }

.checks{ margin:12px 0; display:flex; flex-direction:column; gap:8px; }
.checks label{ margin:0; font-weight:700; color:rgba(255,255,255,.85); }
.checks input{ width:auto; margin-right:8px; }

.totalBox{
  margin-top:12px;
  padding:14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(0,229,255,.08), rgba(255,45,141,.06), rgba(255,176,0,.06));
}
.totalLabel{ font-weight:900; font-size:12px; color:rgba(255,255,255,.80); }
.totalValue{ font-weight:1000; font-size:30px; margin-top:4px; }

.list{ margin:10px 0 0; padding-left:18px; color:rgba(255,255,255,.86); }
.list li{ margin:8px 0; }

.footer{
  border-top:1px solid var(--border);
  padding:16px;
  text-align:center;
  color:rgba(255,255,255,.65);
  background: rgba(10,8,16,.75);
}
