:root {
  --green: #1EBE5B;
  --navy: #0D1B2A;
  --muted: #64748B;
  --bg: #F8FAFC;
  --card: #FFFFFF;
  --border: #E2E8F0;
  --yellow: #FACC15;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--navy);
  line-height: 1.5;
  padding-bottom: 80px;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Nav */
nav {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}
.logo {
  font-weight: 800;
  font-size: 22px;
  cursor: pointer;
}
.logo span { color: var(--green); }

/* Buttons */
.btn {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-size: 15px;
}
.btn:hover { opacity: 0.9; }
.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.job-grid {
  display: grid;
  gap: 12px;
}

/* Filters */
.filter-bar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 0;
  margin-top: 8px;
}
.filter-chip {
  padding: 6px 14px;
  border-radius: 999px;
  background: #EEF2F6;
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
  cursor: pointer;
}
.filter-chip.active {
  background: var(--green);
  color: #fff;
}

/* Badges */
.badge {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #EEF2F6;
  color: var(--muted);
  white-space: nowrap;
}
.badge-yellow {
  background: #FEF9C3;
  color: #854D0E;
}

/* Forms */
input[type="text"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #CBD5E1;
  border-radius: 10px;
  font-size: 15px;
  margin: 8px 0;
  font-family: inherit;
  background: #fff;
}
textarea { resize: vertical; }
input:focus, textarea:focus {
  outline: none;
  border-color: var(--green);
}

/* Bottom nav */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-around;
  padding: 10px 0 14px;
  z-index: 200;
}
.bottom-nav-item {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
  min-width: 64px;
}
.bottom-nav-item.active { color: var(--green); font-weight: 600; }

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 300;
  align-items: center;
  justify-content: center;
}
.modal.active { display: flex; }
.modal-content {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  width: 90%;
  max-width: 360px;
}

/* Hustle Score */
.hustle-score {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hustle-score-inner {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
}

/* Utilities */
.desktop-only { display: none; }
@media (min-width: 768px) {
  .desktop-only { display: block; }
  .bottom-nav { display: none; }
  body { padding-bottom: 0; }
}

h1, h2, h3 { line-height: 1.3; }
h2 { font-size: 22px; margin-bottom: 8px; }
h3 { font-size: 18px; }
a { color: var(--green); }
