/* Homepage "jobs catalog" band — prominent public-catalog CTA below the hero.
   Self-contained white-on-gradient panel; works in both themes. */
.jband { padding: 8px 0 56px; }
.jband__panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 40px 44px;
  background: linear-gradient(105deg, #4f46e5 0%, #6366f1 42%, #a855f7 100%);
  box-shadow: 0 40px 90px -40px rgba(99, 102, 241, 0.75);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.jband__panel::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 90% -10%, rgba(255, 255, 255, 0.22), transparent 60%),
    radial-gradient(500px 260px at 0% 120%, rgba(56, 189, 248, 0.28), transparent 60%);
  pointer-events: none;
}
.jband__left { position: relative; z-index: 1; }
.jband__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 6px 14px; border-radius: 999px;
}
.jband__eyebrow span.dot {
  width: 7px; height: 7px; border-radius: 50%; background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.8);
  animation: jb-pulse 1.8s infinite;
}
@keyframes jb-pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
.jband__title {
  margin: 18px 0 10px;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1.1;
  color: #fff;
}
.jband__sub {
  font-size: 16px; line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  max-width: 46ch;
}
.jband__chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 26px; }
.jband__chip {
  font-size: 13px; font-weight: 600; color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 6px 13px; border-radius: 999px;
}
.jband__actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.jband__cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: #4f46e5;
  font-size: 17px; font-weight: 800; letter-spacing: -0.01em;
  padding: 16px 30px; border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 16px 34px -12px rgba(0, 0, 0, 0.4);
  transition: transform .18s ease, box-shadow .18s ease;
}
.jband__cta svg { width: 20px; height: 20px; transition: transform .18s ease; }
.jband__cta:hover { transform: translateY(-2px); box-shadow: 0 22px 44px -12px rgba(0, 0, 0, 0.45); }
.jband__cta:hover svg { transform: translateX(4px); }
.jband__note { font-size: 13.5px; color: rgba(255, 255, 255, 0.85); }

/* Right column — stacked glassy job previews (company gated, like the real catalog) */
.jband__cards { position: relative; z-index: 1; display: grid; gap: 12px; }
.jbcard {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 15px 17px;
  color: #fff;
}
.jbcard__top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.jbcard__role { font-size: 15.5px; font-weight: 700; letter-spacing: -0.01em; }
.jbcard__pay { font-size: 14px; font-weight: 700; color: #e9d5ff; white-space: nowrap; }
.jbcard__meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.jbcard__tag {
  font-size: 11.5px; font-weight: 600;
  background: rgba(255, 255, 255, 0.16);
  padding: 3px 9px; border-radius: 6px;
}
.jbcard__tag--remote { background: rgba(74, 222, 128, 0.25); }
.jbcard__foot {
  display: flex; align-items: center; gap: 7px; margin-top: 11px;
  font-size: 12px; color: rgba(255, 255, 255, 0.82);
}
.jbcard__lock { width: 13px; height: 13px; opacity: 0.8; }
.jbcard__fresh { margin-left: auto; color: #bbf7d0; font-weight: 600; }

@media (max-width: 860px) {
  .jband__panel { grid-template-columns: 1fr; gap: 28px; padding: 32px 26px; }
  .jband__cards { order: 2; }
}
@media (max-width: 520px) {
  .jband__cta { width: 100%; justify-content: center; }
}
