/* =====================[CAREERS PAGE STYLES]===================== */
:root {
  /* --primary: #0a0a0a;
  --primary-dark: #0a1e36;
  --primary-light: #1e3a5f;
  --accent: #c7a254;
  --accent-light: #d9b771;
  --accent-dark: #b38b3f;
  --text: #1e293b;
  --text-light: #475569;
  --text-lighter: #64748b;
  --background: #ffffff;
  --background-alt: #f8fafc;
  --background-dark: #0f172a;
  --border: #e9eef2;
  --border-dark: #cbd5e1;
  --success: #2e7d32; */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.02);
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 20px 35px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 30px 50px rgba(15, 43, 75, 0.08);
  --transition: all 0.3s ease;
  --border-radius: 1rem;
  --border-radius-lg: 2rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* 
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
} */

/* =====================[CAREERS HERO]===================== */
.careers-hero {
  background: linear-gradient(
    145deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  padding: 8rem 0 6rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.careers-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(199, 162, 84, 0.12) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(199, 162, 84, 0.12) 0%,
      transparent 40%
    );
  z-index: -1;
  animation: ambientPulse 10s ease-in-out infinite;
}

.careers-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

@keyframes ambientPulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}

.careers-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(199, 162, 84, 0.15);
  border: 1px solid rgba(199, 162, 84, 0.3);
  border-radius: 100px;
  color: var(--accent-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.careers-hero-content h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.careers-hero-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

/* =====================[SECTION HEADERS]===================== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(199, 162, 84, 0.1);
  border-radius: 100px;
  color: var(--accent-dark);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.125rem;
}

/* =====================[WHY JOIN US]===================== */
.why-join-section {
  padding: 6rem 0;
  background: white;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.value-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.value-card:nth-child(1) {
  animation-delay: 0.1s;
}
.value-card:nth-child(2) {
  animation-delay: 0.2s;
}
.value-card:nth-child(3) {
  animation-delay: 0.3s;
}
.value-card:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-light);
}

.value-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(
    135deg,
    rgba(199, 162, 84, 0.1),
    rgba(15, 43, 75, 0.05)
  );
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--accent);
  font-size: 1.5rem;
  transition: var(--transition);
}

.value-card:hover .value-icon {
  background: var(--accent);
  color: white;
  transform: rotate(360deg);
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* =====================[LIFE AT PSHUB]===================== */
.life-section {
  padding: 6rem 0;
  background: var(--background-alt);
}

.life-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.life-content h2 {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--primary-dark);
  margin: 1rem 0 1rem;
  letter-spacing: -0.02em;
}

.life-content > p {
  color: var(--text-light);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.culture-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.culture-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.culture-point i {
  color: var(--accent);
  font-size: 1.25rem;
  margin-top: 0.2rem;
}

.culture-point h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.culture-point p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.life-stats {
  position: relative;
}

.stats-card {
  background: linear-gradient(
    145deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  box-shadow: var(--shadow-lg);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* =====================[OPEN POSITIONS]===================== */
.positions-section {
  padding: 6rem 0;
  background: white;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.filter-tab {
  padding: 0.75rem 1.5rem;
  background: var(--background-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-tab:hover {
  background: rgba(199, 162, 84, 0.1);
  border-color: var(--accent-light);
}

.filter-tab.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.positions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.position-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
}

.position-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-light);
}

.position-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.position-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.position-badge.technology {
  background: rgba(37, 99, 235, 0.1);
  color: #1e40af;
}

.position-badge.policy {
  background: rgba(199, 162, 84, 0.1);
  color: var(--accent-dark);
}

.position-badge.operations {
  background: rgba(6, 182, 212, 0.1);
  color: #0891b2;
}

.position-badge.finance {
  background: rgba(16, 185, 129, 0.1);
  color: #047857;
}

.position-badge.regional {
  background: rgba(139, 92, 246, 0.1);
  color: #7c3aed;
}

.position-location {
  color: var(--text-light);
  font-size: 0.9rem;
}

.position-location i {
  margin-right: 0.35rem;
}

.position-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.position-summary {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.position-details {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.position-details span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.position-details i {
  margin-right: 0.35rem;
  color: var(--accent);
}

.position-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.position-link:hover {
  color: var(--accent);
  gap: 0.75rem;
}

.no-results {
  text-align: center;
  padding: 4rem;
  background: var(--background-alt);
  border-radius: var(--border-radius);
}

.no-results i {
  font-size: 3rem;
  color: var(--text-lighter);
  margin-bottom: 1rem;
}

.no-results h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* =====================[BENEFITS SECTION]===================== */
.benefits-section {
  padding: 6rem 0;
  background: var(--background-alt);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.benefit-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--accent-light);
}

.benefit-card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.benefit-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.benefit-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* =====================[HIRING PROCESS]===================== */
.process-section {
  padding: 6rem 0;
  background: white;
}

.process-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}

.process-content h2 {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--primary-dark);
  margin: 1rem 0 1rem;
  letter-spacing: -0.02em;
}

.process-content > p {
  color: var(--text-light);
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--background-alt);
  border-radius: var(--border-radius);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.process-step:hover {
  transform: translateX(10px);
  background: white;
  border-color: var(--accent-light);
  box-shadow: var(--shadow);
}

.step-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  min-width: 3rem;
}

.step-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.step-content p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.process-cta {
  position: relative;
}

.cta-card {
  background: linear-gradient(
    145deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  color: white;
  box-shadow: var(--shadow-lg);
}

.cta-card h3 {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
/* 
.btn-primary {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--accent);
  color: var(--primary);
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
}

.btn-primary:hover {
  background: white;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  background: transparent;
  color: white;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
} */

/* =====================[DIVERSITY STATEMENT]===================== */
.diversity-section {
  padding: 4rem 0;
  background: var(--background-alt);
}

.diversity-box {
  background: white;
  border-left: 4px solid var(--accent);
  padding: 3rem;
  border-radius: var(--border-radius);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.diversity-box i {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
  opacity: 0.5;
}

.diversity-box h2 {
  font-size: 2rem;
  font-weight: 500;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.diversity-box p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.diversity-footer {
  font-weight: 600;
  color: var(--accent-dark);
}

/* =====================[RESPONSIVE DESIGN]===================== */
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .life-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .positions-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .careers-hero {
    padding: 6rem 0 4rem;
  }

  .careers-hero-content h1 {
    font-size: 2.5rem;
  }

  .why-join-section,
  .life-section,
  .positions-section,
  .benefits-section,
  .process-section {
    padding: 4rem 0;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .filter-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-tab {
    text-align: center;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    flex-direction: column;
    text-align: center;
  }

  .step-number {
    margin: 0 auto;
  }

  .stats-card {
    padding: 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .diversity-box {
    padding: 2rem;
  }

  .diversity-box h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .careers-hero-content h1 {
    font-size: 2rem;
  }

  .hero-badge {
    font-size: 0.75rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .position-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .position-details {
    flex-direction: column;
    gap: 0.5rem;
  }

  .culture-point {
    flex-direction: column;
    text-align: center;
  }

  .cta-links {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

/* Animation classes */
.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
