:root{
  --nx-900:#03102A;
  --nx-850:#071A3A;
  --nx-700:#0B2A66;

  --cx-500:#00E7D6;
  --bx-500:#2F80FF;

  --txt:#0B1220;
  --muted:rgba(255,255,255,.70);

  --card: rgba(255,255,255,.08);
  --card2: rgba(255,255,255,.06);
  --stroke: rgba(255,255,255,.14);
  --shadow: 0 28px 70px rgba(0,0,0,.30);
}

.careersX{
  position:relative;
  overflow:hidden;
}

.careersX__bg{
  position:absolute; inset:-2px;
  background:
    linear-gradient(115deg, rgba(255,255,255,.06), transparent 40%),
    linear-gradient(35deg, rgba(0,231,214,.10), transparent 35%),
    linear-gradient(225deg, rgba(47,128,255,.10), transparent 45%);
  pointer-events:none;
  filter: blur(0.2px);
}

/**** HEADING STYLE ****/
.page_head{
  position:relative;
  display:flex;
  justify-content:center;
  margin-bottom: 30px;
}

.page_mark{
  width:52px; height:52px;
  position:relative;
  margin-top: 6px;
  filter: drop-shadow(0 14px 18px rgba(0,0,0,.22));
}
.page_mark span{
  position:absolute;
  width:0; height:0;
  border-left:16px solid transparent;
  border-right:16px solid transparent;
  border-bottom:28px solid rgba(255,255,255,.14);
}
.page_mark span:nth-child(1){ left:0; top:12px; border-bottom-color: rgba(0,231,214,.55); }
.page_mark span:nth-child(2){ left:18px; top:0;  border-bottom-color: rgba(47,128,255,.60); }
.page_mark span:nth-child(3){ left:34px; top:12px; border-bottom-color: rgb(50 165 255 / 48%); }

.page_title{
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: .5px;
  margin:0;
}
.page_title span{
  background: linear-gradient(90deg, #00E7D6, #2F80FF);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.page_sub{
  margin:8px 0 0;
  max-width: 720px;
  line-height: 1.6;
}
/**** HEADING STYLE ****/

.careersX__tools{
  min-width: 320px;
  max-width: 520px;
  width: 42%;
}
.careersX__chipRow{
  display:flex;
  gap:10px;
  justify-content:flex-end;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.careersX__chip{
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  font-size: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  cursor:pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.careersX__chip:hover{
  transform: translateY(-2px);
  border-color: rgba(0,231,214,.45);
}
.careersX__chip.is-active{
  background: linear-gradient(90deg, rgba(0,231,214,.22), rgba(47,128,255,.18));
  border-color: rgba(0,231,214,.55);
}

.careersX__search{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
}

.careersX__search input{
  width:100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
}


.jobX{
  position:relative;
  border-radius: 22px;
  background: linear-gradient(180deg, var(--card), var(--card2));
  border: 1px solid var(--stroke);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  overflow:hidden;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.jobX:hover{
  transform: translateY(-4px);
  border-color: rgba(0,231,214,.35);
}

.jobX::before{
  content:"";
  position:absolute;
  inset:-120px -180px auto auto;
  width: 280px; height: 280px;
  background: radial-gradient(circle at 30% 30%, rgba(0,231,214,.22), transparent 55%),
              radial-gradient(circle at 70% 70%, rgba(47,128,255,.18), transparent 55%);
  transform: rotate(18deg);
  opacity: .9;
  pointer-events:none;
}

.jobX__corner{
  position:absolute;
  right:-56px;
  bottom:-56px;
  width:140px; height:140px;
  background: conic-gradient(from 215deg, rgba(0,231,214,.35), rgba(47,128,255,.20), transparent 60%);
  transform: rotate(15deg);
  border-radius: 28px;
  filter: blur(.2px);
  pointer-events:none;
}

.jobX__top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:18px;
  position:relative;
  z-index:1;
}

.jobX__titleRow{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.jobX__title{
  margin:0;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .2px;
}

.jobX__type{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgb(40 143 249 / 57%);
  color: #fff;
}

.jobX__type.t-full{ border-color: rgba(47,128,255,.45); background: rgba(47,128,255,.12); }
.jobX__type.t-intern{ border-color: rgba(0,231,214,.50); background: rgba(0,231,214,.12); }
.jobX__type.t-part{ border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.08); }
.jobX__type.t-remote{ border-color: rgba(0,231,214,.35); background: rgba(47,128,255,.10); }

.jobX__meta{
  margin-top: 10px;
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  font-size: 13px;
}
.jobX__meta i{
  color: rgba(0,231,214,.85);
  margin-right: 7px;
}

.jobX__mid{
  position:relative;
  z-index:1;
  margin-top: 12px;
}
.jobX__desc{
  margin:0;
  line-height: 1.7;
  font-size: 14px;
}

.jobX__more{
  position:relative;
  z-index:1;
  margin-top: 14px;
  border-top: 1px dashed rgba(255,255,255,.18);
  padding-top: 12px;
}
.jobX__more summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  font-weight: 700;
}
.jobX__more summary::-webkit-details-marker{ display:none; }
.jobX__chev{
  width: 34px; height: 34px;
  display:grid; place-items:center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  transition: transform .25s ease;
}
.jobX__more[open] .jobX__chev{
  transform: rotate(180deg);
}

.jobX__moreBody{
  padding-top: 12px;
}

.jobX__pillGrid{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.jobX__pill{
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
}
.jobX__pill i{
  color: rgba(0,231,214,.9);
  margin-right: 6px;
}

.jobX__ctaRow{
  display:flex;
  gap:10px;
  justify-content:flex-end;
  flex-wrap:wrap;
  margin-top: 14px;
}

.btnX{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 13px;
  text-decoration:none;
  transition: transform .22s ease, filter .22s ease, background .22s ease, border-color .22s ease;
  border: 1px solid transparent;
  white-space:nowrap;
}
.btnX i{ font-size: 13px; }

.btnX--primary{
  color: #03102A;
  background: linear-gradient(90deg, #00E7D6, #2F80FF);
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 12px 26px rgba(0,231,214,.14);
}
.btnX--primary:hover{
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.btnX--ghost{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
}
.btnX--ghost:hover{
  transform: translateY(-2px);
  border-color: rgba(0,231,214,.40);
}

.jobX--empty{
  text-align:center;
  padding: 34px 26px;
}
.jobX__emptyIcon{
  width: 62px; height: 62px;
  margin: 0 auto 12px;
  display:grid; place-items:center;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
}
.jobX--empty h3{
  font-weight: 900;
  margin: 4px 0 10px;
}
.jobX--empty p{
  max-width: 720px;
  margin: 0 auto 16px;
  line-height: 1.7;
}
.jobX--empty .jobX__actions{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}

@media (max-width: 992px){
  .careersX__tools{
    width:100%;
    max-width: 100%;
  }
  .careersX__chipRow{
    justify-content:flex-start;
  }
}

@media (max-width: 576px){
  .jobX{ padding: 18px; border-radius: 18px; }
  .jobX__title{ font-size: 18px; }
  .jobX__ctaRow{ justify-content:flex-start; }
  .btnX{ width:100%; justify-content:center; }
}
