/* Careers Page */
.open-positions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: none;
  margin: 2.5rem 0;
  padding: 0 1rem;
  box-sizing: border-box;
}

.open-position-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 0.25rem 1.25rem 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: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  min-height: 17.5rem;
}

.open-position-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.08);
  border-color: var(--rich-black);
}

.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(255, 255, 255, 0.5);
  color: var(--rich-black);
  padding: 2.5rem;
  border-radius: 1.5rem;
  backdrop-filter: blur(0.625rem);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.apply-section h3 {
  font-size: 1.8rem;
  margin: 0 0 1rem 0;
}



/* Home Page */
.home-welcome-title {
  white-space: nowrap;
}

.home-page-feature {
  width: 100%;
  max-width: none;
  background-color: #ffffff;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(3.5rem, 10vw, 5.5rem) 1rem;
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  border-radius: 1rem;
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1
}

.home-page-feature:hover {
  transform: translateY(-0.0625rem);
  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.1)
}

.home-page-feature-link {
  background: linear-gradient(135deg, #688fce 0%, #174379 50%, #0d3261 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-decoration: none
}

/* Support & Demos */
.support-wrapper {
  width: 100%;
  max-width: none;
  margin: 0 0 0.75rem 0;
  padding: 1.25rem 1.75rem;
  box-sizing: border-box
}

.error-title {
  font-size: 5rem;
  margin: 0 0 1.25rem 0;
  color: #4b0082;
}

.error-subtitle {
  font-size: 1.5rem;
  margin: 0 0 1.875rem 0;
}

.error-text {
  color: #666;
  margin: 0 0 2.5rem 0;
}

.demo-tip {
  font-size: 0.9rem;
  color: #666;
  margin: 0.75rem 0 0 0;
}

.demo-empty {
  padding: 1.5rem;
  border: 1px dashed #ddd;
  border-radius: 0.5rem;
  text-align: center;
  color: #777
}

.demo-video {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 0.0625rem 0.375rem rgba(0, 0, 0, 0.06);
}

.demo-info {
  color: #555;
  font-size: 0.95rem;
  margin: 0 0 0.5rem 0;
}

.demo-warning {
  margin: 0.5rem 0;
  color: #b04;
}
