:root {
  --bg: #07161a;
  --text: #e9ffff;
  --muted: #b7c9cc;
  --brand: #b8ff1a;
}

* {
  box-sizing: border-box;
  margin: 0;
  font-family: system-ui, sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
}

.nav {
  position: sticky;
  top: 0;
  background: #07161a;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav__inner {
  max-width: 1100px;
  margin: auto;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 34px;
}

.nav__links {
  margin-left: auto;
  display: flex;
  gap: 18px;
}

.nav__links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}

.nav__links .muted {
  color: var(--muted);
}

.btn {
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.primary {
  background: var(--brand);
  color: #061014;
}

.outline {
  background: transparent;
  border: 1px solid var(--brand);
  color: var(--brand);
}

.hero {
  position: relative;
  padding: 80px 20px;
  overflow: hidden;
}

.map-bg {
  position: absolute;
  opacity: 0.08;
  width: 140%;
  top: -20%;
  left: -20%;
}

.hero__content {
  max-width: 700px;
  margin: auto;
  text-align: center;
  position: relative;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 12px;
}

.tagline {
  font-size: 20px;
  margin-bottom: 8px;
}

.sub {
  color: var(--muted);
  margin-bottom: 20px;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.section {
  padding: 60px 20px;
  text-align: center;
}

.section.dark {
  background: rgba(255,255,255,0.03);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
  gap: 16px;
  margin-top: 20px;
}

.card {
  background: rgba(255,255,255,0.06);
  padding: 20px;
  border-radius: 16px;
  font-weight: 700;
}

.app-badges span {
  display: inline-block;
  padding: 10px 14px;
  border: 1px dashed var(--muted);
  margin: 8px;
  border-radius: 12px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.modal.show {
  display: flex;
}

.modal-box {
  background: #081c20;
  padding: 20px;
  border-radius: 18px;
  width: 90%;
  max-width: 400px;
}

.modal-box form {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.modal-box select {
  padding: 12px;
  border-radius: 12px;
}

.close {
  margin-top: 12px;
  background: none;
  color: var(--muted);
  border: none;
  cursor: pointer;
}
