.jobs-orbit {
  background:
    radial-gradient(circle at 72% 28%, rgba(161, 250, 255, 0.14), transparent 28%),
    radial-gradient(circle at 88% 68%, rgba(255, 81, 250, 0.11), transparent 32%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: auto, auto, 64px 64px, 64px 64px;
}

.job-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(161, 250, 255, 0.12);
  background: linear-gradient(145deg, rgba(28, 32, 40, 0.92), rgba(16, 20, 27, 0.94));
}

.job-card-layout,
.role-layout {
  display: grid;
  gap: 2rem;
}

.job-card::after {
  position: absolute;
  right: -4rem;
  bottom: -6rem;
  width: 16rem;
  height: 16rem;
  border-radius: 999px;
  background: rgba(195, 244, 0, 0.07);
  filter: blur(30px);
  content: "";
  pointer-events: none;
}

.job-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(161, 250, 255, 0.16);
  border-radius: 999px;
  background: rgba(16, 20, 27, 0.72);
  padding: 0.55rem 0.85rem;
  color: #cbd5e1;
  font-size: 0.82rem;
  line-height: 1;
}

.job-section-copy h2 {
  margin-bottom: 1rem;
  color: #f4f6ff;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.job-section-copy p {
  color: #c5c6cc;
  line-height: 1.75;
}

.job-section-copy ul {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.job-section-copy li {
  position: relative;
  padding-left: 1.7rem;
  color: #c5c6cc;
  line-height: 1.65;
}

.job-section-copy li::before {
  position: absolute;
  top: 0.6rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #c3f400;
  box-shadow: 0 0 14px rgba(195, 244, 0, 0.45);
  content: "";
}

.application-panel {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(18, 22, 30, 0.88);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.resume-drop {
  position: relative;
  display: flex;
  min-height: 8.5rem;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px dashed rgba(161, 250, 255, 0.35);
  border-radius: 1rem;
  background: rgba(34, 38, 47, 0.64);
  padding: 1.2rem;
  text-align: center;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.resume-drop:hover,
.resume-drop:focus-within {
  border-color: #a1faff;
  background: rgba(34, 38, 47, 0.92);
  transform: translateY(-1px);
}

.resume-drop input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

[data-application-status] {
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
}

[data-application-status][hidden] {
  display: none;
}

[data-application-status][data-state="success"] {
  background: rgba(195, 244, 0, 0.12);
  color: #efffbc;
}

[data-application-status][data-state="error"] {
  background: rgba(255, 110, 132, 0.12);
  color: #ffb2be;
}

.sticky-apply {
  position: sticky;
  top: 6.5rem;
}

@media (max-width: 767px) {
  .jobs-orbit {
    background-size: auto, auto, 42px 42px, 42px 42px;
  }

  .sticky-apply {
    position: static;
  }
}

@media (min-width: 1024px) {
  .job-card-layout {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .role-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 3rem;
  }
}
