:root{
  --bg: #0b0c10;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.08);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.65);
  --muted2: rgba(255,255,255,.50);
  --border: rgba(255,255,255,.12);

  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 20px;

  --accent1: #6d5efc;
  --accent2: #22d3ee;
  --accent3: #a855f7;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 25% -10%, rgba(109,94,252,.18), transparent 60%),
    radial-gradient(1000px 500px at 75% 10%, rgba(34,211,238,.14), transparent 55%),
    radial-gradient(900px 500px at 50% 110%, rgba(168,85,247,.12), transparent 55%),
    var(--bg);
}

a{ color: inherit; text-decoration: none; }
.container{ width: min(1100px, 92vw); margin: 0 auto; }

.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10,10,14,.55);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav{
  width: min(1100px, 92vw);
  margin: 0 auto;
  height: 64px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight: 800;
  letter-spacing: .2px;
}

.brand-dot{
  width: 12px; height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  box-shadow: 0 0 0 6px rgba(109,94,252,.15);
}

.nav-right{ display:flex; align-items:center; gap:14px; }

.nav-link{
  color: var(--muted);
  font-weight: 650;
  padding: 8px 10px;
  border-radius: 12px;
}

.nav-link:hover{ color: var(--text); background: rgba(255,255,255,.06); }

.nav-cta{
  font-weight: 750;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}

.nav-cta:hover{ background: rgba(255,255,255,.10); }

.hero{
  padding: 64px 0 22px;
}

.hero-inner{
  width: min(1100px, 92vw);
  margin: 0 auto;
  text-align: center;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--muted);
  font-weight: 650;
  margin-bottom: 18px;
}

.hero-title{
  margin: 0;
  font-size: clamp(32px, 4.3vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.6px;
  text-transform: uppercase;
}

.hero-subtitle{
  margin: 14px auto 22px;
  max-width: 760px;
  color: var(--muted);
  font-size: 16px;
}

.hero-controls{
  width: min(820px, 92vw);
  margin: 0 auto;
  display:flex;
  gap: 12px;
  align-items: end;
  justify-content:center;
  flex-wrap: wrap;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow);
}

.control{
  display:flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
  min-width: 220px;
}

.control-grow{ flex: 1 1 320px; }

.control-label{
  font-size: 12px;
  color: var(--muted2);
  font-weight: 700;
}

.select, .input{
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  color: var(--text);
  padding: 0 12px;
  outline: none;
}

.select:focus, .input:focus{
  border-color: rgba(109,94,252,.55);
  box-shadow: 0 0 0 5px rgba(109,94,252,.18);
}

.btn{
  height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight: 750;
  cursor:pointer;
}

.btn:hover{ background: rgba(255,255,255,.10); }

.hero-hint{
  margin-top: 14px;
  color: var(--muted2);
  font-size: 13px;
}

.listing{
  padding: 26px 0 60px;
}

.section-head{
  margin: 34px 0 14px;
}

.section-title{
  margin: 0;
  font-size: 20px;
  letter-spacing: .2px;
}

.section-subtitle{
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 900px){
  .grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px){
  .grid{ grid-template-columns: 1fr; }
}

.job-card{
  position: relative;
  display:block;
  padding: 18px 18px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  overflow:hidden;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
  min-height: 148px;
}

.job-card:hover{
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.07);
}

.job-card h3{
  margin: 10px 0 6px;
  font-size: 18px;
  letter-spacing: .2px;
}

.pill{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
}

.meta{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.desc{
  margin: 10px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.35;
  max-width: 52ch;
}

.arrow{
  position:absolute;
  right: 16px;
  bottom: 14px;
  color: rgba(255,255,255,.55);
  font-weight: 900;
}

.job-card.featured{
  background: linear-gradient(135deg, rgba(109,94,252,.45), rgba(34,211,238,.16));
  border-color: rgba(109,94,252,.35);
}

.job-card.featured::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(600px 220px at 20% 10%, rgba(255,255,255,.18), transparent 60%);
  pointer-events:none;
}

.job-card.featured:hover{
  border-color: rgba(109,94,252,.55);
}

.is-hidden{ display:none !important; }

.empty-state{
  margin: 30px auto 0;
  width: min(700px, 92vw);
  padding: 22px;
  border-radius: 22px;
  border: 1px dashed rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
  text-align:center;
  color: var(--muted);
}

.empty-state h3{ margin: 0 0 6px; color: var(--text); }

.footer{
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(10,10,14,.35);
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 18px 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-link{
  color: rgba(255,255,255,.72);
  font-weight: 750;
}

.footer-link:hover{ color: var(--text); }

.reveal{
  opacity: 0;
  transform: translateY(14px);
  filter: blur(4px);
  transition: opacity .6s ease, transform .6s ease, filter .6s ease;
  will-change: transform, opacity, filter;
}

.reveal.reveal-in{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.job-card{
  transform: translateY(0) scale(1);
}

.job-card:hover{
  transform: translateY(-4px) scale(1.01);
}

.job-card .arrow{
  transition: transform .18s ease, opacity .18s ease;
  opacity: .65;
}

.job-card:hover .arrow{
  transform: translateX(3px);
  opacity: .95;
}

.job-card::after{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: inherit;
  background: radial-gradient(500px 180px at 15% 10%, rgba(109,94,252,.16), transparent 60%);
  opacity: 0;
  transition: opacity .18s ease;
  pointer-events:none;
}

.job-card:hover::after{ opacity: 1; }

.btn-bump{
  animation: bump .28s ease;
}

@keyframes bump{
  0%{ transform: scale(1); }
  45%{ transform: scale(1.03); }
  100%{ transform: scale(1); }
}

.section-head, .grid, .empty-state{
  transition: opacity .2s ease, transform .2s ease;
}

@media (prefers-reduced-motion: reduce){
  .reveal{ transition:none; transform:none; filter:none; opacity:1; }
  .job-card, .job-card:hover{ transition:none; transform:none; }
  .btn-bump{ animation:none; }
}
