:root {
  --bg: #f9fafb;
  --bg-soft: #f3f4f6;
  --bg-card: #ffffff;
  --border-subtle: #e5e7eb;
  --text-main: #111827;
  --text-muted: #6b7280;
  --accent: #10b981;
  --accent-soft: rgba(16, 185, 129, 0.12);
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.08);
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: --bg;
  background: var(--bg);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(249, 250, 251, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
}

/* Logo mark = journey / direction */
.logo-mark {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0, #6ee7b7, var(--accent));
  box-shadow: 0 6px 14px rgba(16, 185, 129, 0.35);
  overflow: hidden;
}

/* Diagonal “path” */
.logo-mark::before {
  content: "";
  position: absolute;
  left: 6px;
  bottom: 5px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: rgba(236, 253, 245, 0.9);
  transform: rotate(-18deg);
}

/* Destination dot */
.logo-mark::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ecfdf5;
}

.logo-text {
  font-weight: 600;
  letter-spacing: -0.03em;
  font-size: 1rem;
}

.logo-24 {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

/* HERO */
.hero {
  position: relative;
  padding: 56px 0 40px;
}

.hero::before {
  content: "";
  position: absolute;
  right: -80px;
  top: 40px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.22), transparent 60%);
  filter: blur(4px);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  font-weight: 700;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 30rem;
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 4px;
}

.hero-right {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  background: var(--bg-card);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 22px 22px 18px;
  border: 1px solid rgba(229, 231, 235, 0.9);
}

.hero-card-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 10px;
  margin-bottom: 8px;
}

.hero-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.hero-tags li {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--bg-soft);
  font-size: 0.8rem;
}

.hero-card-foot {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* BUTTONS */
.btn {
  border-radius: 999px;
  padding: 10px 18px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.18s ease;
}

.btn.primary {
  background: var(--accent);
  color: #022c22;
  box-shadow: 0 12px 25px rgba(16, 185, 129, 0.35);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(16, 185, 129, 0.45);
}

.btn.ghost {
  background: #ffffff;
  border-color: var(--border-subtle);
  color: var(--text-muted);
}

.btn.ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn.small {
  padding-inline: 16px;
  padding-block: 8px;
  font-size: 0.8rem;
}

/* Disabled-looking buttons */
.disabled-btn {
  opacity: 0.55;
  cursor: not-allowed;
}

/* PILLS */
.pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  background: var(--bg-soft);
  color: var(--text-muted);
}

.pill-city {
  background: var(--accent-soft);
  color: #065f46;
}

/* SECTIONS */
.section {
  padding: 52px 0;
}

.section.subtle {
  background: #f5f5f7;
}

.section-head {
  margin-bottom: 20px;
}

.section-head h2 {
  margin-bottom: 4px;
}

h1, h2, h3 {
  letter-spacing: -0.02em;
}

.muted {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* SEARCH BLOCK */
.search-block {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px 20px 22px;
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.search-form input {
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  padding: 9px 14px;
  font-size: 0.9rem;
  min-width: 190px;
}

/* CITY GRID */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.city-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.city-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.city-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

/* JOB GRID */
.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.job-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.job-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.job-points {
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.job-points li::before {
  content: "• ";
  color: var(--accent);
}

.text-link {
  border: none;
  background: transparent;
  padding: 0;
  margin-top: 4px;
  align-self: flex-start;
  color: #047857;
  font-size: 0.85rem;
  cursor: pointer;
}

/* PREP SECTION */
.prep-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 28px;
  align-items: flex-start;
}

.prep-list {
  list-style: none;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.prep-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: var(--shadow-soft);
}

.prep-topics {
  list-style: none;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.prep-topics li::before {
  content: "▹ ";
  color: var(--accent);
}

.prep-foot {
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* STEPS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.step-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(229, 231, 235, 0.9);
}

.step-number {
  display: inline-flex;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: #065f46;
  font-size: 0.8rem;
  margin-bottom: 8px;
}

/* JOIN / EMAIL */
.join-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.email-form input {
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  padding: 10px 14px;
  font-size: 0.9rem;
}

.tiny-text {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* FOOTER */
.footer {
  border-top: 1px solid rgba(229, 231, 235, 0.9);
  padding: 18px 0 24px;
  background: #f9fafb;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.footer p,
.footer span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== JOB DETAIL PAGE EXTRA STYLES ===== */

.job-hero {
  padding: 40px 0 16px;
  background: #f9fafb;
}

.crumb-link {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
}

.crumb-link:hover {
  color: var(--accent);
}

.job-hero-main {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.job-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.badge {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  color: var(--text-muted);
  background: #ffffff;
}

.job-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 28px;
  align-items: flex-start;
}

.job-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.job-card-detail {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  padding: 18px 18px 20px;
}

.job-detail-list {
  list-style: none;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.job-detail-list li::before {
  content: "• ";
  color: var(--accent);
}

.job-apply-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  padding: 18px 18px 20px;
}

.job-side {
  margin-top: 6px;
}

.job-side-heading {
  margin-top: 18px;
}

.helper-box {
  margin-top: 14px;
  padding: 12px 12px 14px;
  border-radius: 14px;
  background: #f5f5f7;
  border: 1px dashed rgba(148, 163, 184, 0.7);
}

.tiny-list {
  list-style: none;
  margin: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.full-width {
  width: 100%;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid,
  .prep-grid,
  .join-grid,
  .job-layout,
  .job-hero-main {
    grid-template-columns: minmax(0, 1fr);
    flex-direction: column;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-right {
    justify-content: flex-start;
  }

  .nav-links {
    display: none;
  }

  .job-badges {
    justify-content: flex-start;
  }
}

/* Simple page layout for About/Contact/Privacy/Disclaimer */
.page {
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 0.98rem;
}

/* Highlight current nav link */
.nav-links a.active {
  font-weight: 600;
  opacity: 1;
}

/* Make footer links sit nicely in a row on text pages too */
.footer-links a {
  margin-right: 1rem;
  text-decoration: none;
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* --- PAGE BRANDING CONSISTENCY --- */

.page-hero {
  background: #063b2f;
  color: white;
  padding: 70px 0;
}

.page-hero h1 {
  font-size: 2.2rem;
  margin: 0;
  font-weight: 700;
}

.page-content {
  max-width: 850px;
  margin: 50px auto;
  line-height: 1.8;
  font-size: 1rem;
}

.page-content p {
  margin-bottom: 18px;
  color: #3a3a3a;
}

.page-content strong {
  color: #063b2f;
}

.page-content h2 {
  margin-top: 25px;
  font-size: 1.3rem;
}

/* Keep city cards lively + premium */
.city-card h3 {
  font-size: 1.4rem;
  color: #063b2f;
  margin-bottom: 6px;
}

.city-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.city-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.06);
}

