.career-page {
  background: #f5f9fc;
  color: #173548;
  min-height: 64vh;
}

.career-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(45, 209, 139, 0.2), transparent 28rem),
    linear-gradient(135deg, #071a43 0%, #0b2a60 100%);
  color: #fff;
  overflow: hidden;
  padding: clamp(5.5rem, 10vw, 9rem) 1.5rem;
}

.career-hero__inner {
  margin: 0 auto;
  max-width: 1040px;
}

.career-hero__eyebrow {
  color: #38d997;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 1.25rem;
  text-transform: uppercase;
}

.career-hero h1 {
  color: #fff;
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0;
  max-width: 850px;
}

.career-hero__lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.55;
  margin: 2rem 0 0;
  max-width: 790px;
}

.career-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.career-button {
  align-items: center;
  border: 2px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: 1.05rem;
  font-weight: 700;
  gap: 0.65rem;
  justify-content: center;
  min-height: 54px;
  padding: 0.85rem 1.5rem;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease;
}

.career-button:hover,
.career-button:focus-visible {
  color: #071a43;
  text-decoration: none;
  transform: translateY(-2px);
}

.career-button--primary {
  background: #38d997;
  color: #071a43;
}

.career-button--primary:hover,
.career-button--primary:focus-visible {
  background: #74e7b6;
}

.career-button--secondary {
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
}

.career-button--secondary:hover,
.career-button--secondary:focus-visible {
  background: #fff;
}

@media (max-width: 600px) {
  .career-hero {
    padding: 4.5rem 1rem 5rem;
  }

  .career-hero__actions,
  .career-button {
    width: 100%;
  }
}
