:root{
  --bg:#0b1020;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.09);
  --text:#e9eefc;
  --muted:rgba(233,238,252,.78);
  --brand:#ffcc00;
  --brand2:#ff7a00;
  --ok:#25D366;
  --danger:#ff3b30;
  --border:rgba(255,255,255,.14);
  --shadow: 0 16px 40px rgba(0,0,0,.35);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 600px at 15% 10%, rgba(255,204,0,.22), transparent 60%),
    radial-gradient(900px 600px at 85% 30%, rgba(37,211,102,.14), transparent 55%),
    radial-gradient(1200px 700px at 55% 95%, rgba(0,180,255,.12), transparent 60%),
    linear-gradient(180deg, #070a12 0%, #0b1020 40%, #070a12 100%);
}
a{color:inherit; text-decoration:none}
.container{max-width:1120px; margin:0 auto; padding:0 18px}
.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(7,10,18,.58);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
  gap:12px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:800; letter-spacing:.4px;
}
.brand img{width:40px; height:40px; border-radius:12px; object-fit:cover; box-shadow: var(--shadow)}
.brand .name{line-height:1.05}
.brand .name small{display:block; font-weight:600; color:var(--muted)}
.menu{display:flex; gap:14px; flex-wrap:wrap; align-items:center; justify-content:flex-end}
.menu a{
  padding:10px 10px;
  border-radius:12px;
  color:var(--muted);
  font-weight:650;
}
.menu a:hover{background:var(--card); color:var(--text)}

.hero{
  padding:34px 0 18px 0;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  align-items:stretch;
}
@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr}
}
.hero-card{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border:1px solid var(--border);
  border-radius:22px;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-media{
  position:relative;
  min-height:360px;
  background: #0d1326;
}
.hero-media img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
  filter: saturate(1.06) contrast(1.03);
}
.hero-media:after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(7,10,18,.82) 0%, rgba(7,10,18,.18) 65%, rgba(7,10,18,.0) 100%);
}
.hero-copy{
  position:absolute; inset:0;
  padding:26px;
  display:flex; flex-direction:column; justify-content:flex-end; gap:14px;
}
.kicker{
  display:inline-flex; align-items:center; gap:8px;
  font-weight:800;
  color: #0b1020;
  background: linear-gradient(90deg, var(--brand) 0%, #ffd86b 100%);
  padding:8px 12px;
  border-radius:999px;
  width:fit-content;
}
.h1{
  margin:0;
  font-size:42px;
  line-height:1.05;
  letter-spacing:-.6px;
}
@media (max-width: 520px){
  .h1{font-size:34px}
}
.sub{
  margin:0;
  color: rgba(233,238,252,.88);
  font-size:16.5px;
  max-width: 60ch;
}
.cta-row{
  display:flex; flex-wrap:wrap; gap:10px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background: var(--card);
  color: var(--text);
  font-weight:800;
  letter-spacing:.2px;
  min-width: 170px;
}
.btn:hover{transform: translateY(-1px); background: var(--card2)}
.btn.red{background: linear-gradient(180deg, rgba(255,59,48,.95), rgba(255,59,48,.65)); border-color: rgba(255,59,48,.55)}
.btn.yellow{background: linear-gradient(180deg, rgba(255,204,0,.95), rgba(255,122,0,.65)); color:#0b1020; border-color: rgba(255,204,0,.55)}
.btn.green{background: linear-gradient(180deg, rgba(37,211,102,.95), rgba(37,211,102,.62)); color:#07120b; border-color: rgba(37,211,102,.6)}
.btn.dark{background: rgba(7,10,18,.7)}
.hero-side{
  padding:18px;
  display:flex; flex-direction:column; gap:12px;
}
.pill{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.05);
}
.pill strong{font-size:14.5px}
.pill span{color:var(--muted); font-weight:650}
.grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
@media (max-width: 980px){ .grid{grid-template-columns: repeat(2, 1fr)}}
@media (max-width: 520px){ .grid{grid-template-columns: 1fr}}
.card{
  border:1px solid var(--border);
  background: rgba(255,255,255,.05);
  border-radius:20px;
  padding:16px;
  box-shadow: 0 10px 25px rgba(0,0,0,.22);
}
.card h3{margin:0 0 8px 0; font-size:16px}
.card p{margin:0; color:var(--muted); font-weight:600; line-height:1.45}
.section{padding:18px 0}
.section-title{
  display:flex; align-items:flex-end; justify-content:space-between; gap:12px;
  margin-bottom: 12px;
}
.section-title h2{margin:0; font-size:24px; letter-spacing:-.3px}
.badge{
  padding:8px 12px;
  background: rgba(255,204,0,.12);
  border:1px solid rgba(255,204,0,.35);
  color: rgba(255,234,173,.95);
  border-radius:999px;
  font-weight:800;
  font-size:13px;
}
.kv{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
@media (max-width: 980px){ .kv{grid-template-columns: 1fr}}
.mapbox{
  border:1px solid var(--border);
  border-radius:20px;
  overflow:hidden;
  min-height:360px;
  background: rgba(255,255,255,.03);
}
.footer{
  margin-top: 24px;
  padding: 22px 0 90px;
  border-top:1px solid var(--border);
  background: rgba(7,10,18,.5);
}
.footer p{margin:0; color:var(--muted); font-weight:650}
.sticky-actions{
  position:fixed;
  left:50%;
  transform:translateX(-50%);
  bottom:14px;
  z-index:60;
  width:min(1120px, calc(100% - 24px));
  display:flex;
  gap:10px;
}
.sticky-actions a{flex:1}
.small{font-size:12.5px; color:var(--muted); font-weight:650}