header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  box-sizing: border-box;
  background-color: #010203;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10001;
  transform: translateZ(0) translateY(0);
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform 220ms cubic-bezier(.2, .9, .2, 1), box-shadow 220ms ease
}

header.header-hidden {
  transform: translateZ(0) translateY(calc(-1 * var(--header-height)));
  pointer-events: none;
  box-shadow: none
}

header.header-scrolled {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px)
}

header .site-header-heading {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 1.05;
  font-size: 2em;
  font-weight: 700
}

header nav {
  margin-top: 0
}

.header-left {
  display: flex;
  align-items: center
}

.header-nav ul {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

header nav a:last-child {
  margin-right: 5px
}

header nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  margin-right: 0.4rem;
  transition: color 0.3s ease
}

.header nav a:hover {
  color: var(--electric-blue)
}

a.card-link {
  text-decoration: none;
  outline: none
}

.contact-header {
  text-align: center
}

/* Careers Page Global Styles */
.open-positions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  max-width: none;
  margin: 40px auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.open-position-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.open-position-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--electric-blue);
}

.open-position-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.open-position-card h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--rich-black);
  line-height: 1.2;
}

.open-position-card .badge {
  background: rgba(41, 120, 240, 0.1);
  color: var(--electric-blue);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.badge-multiple {
  background: rgba(0, 0, 0, 0.05) !important;
  color: #666 !important;
  width: fit-content;
  margin-top: 10px;
}

.open-position-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.open-position-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.open-position-card .division {
  font-weight: 600;
  color: var(--rich-black);
}

.open-position-card .compensation {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}

.open-position-card .note {
  font-size: 0.8rem;
  color: #999;
  margin-top: 8px;
}

.apply-section {
  width: 100%;
  max-width: none;
  margin: 60px auto 80px;
  text-align: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.apply-section h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.apply-section a {
  color: var(--electric-blue);
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.apply-section a:hover {
  text-decoration: underline;
  opacity: 0.8;
}
