.scv-careers {
  --scv-primary: var(--e-global-color-primary, #902a7c);
  --scv-text: var(--e-global-color-text, #7a7a7a);
  --scv-muted: #6b7280;
  --scv-border: #d7d9de;
  --scv-surface: #fff;
  color: var(--scv-text);
  font-family: inherit;
  margin-inline: auto;
  max-width: 840px;
  padding-top: clamp(1.75rem, 3vw, 3rem);
  width: 100%;
}

.scv-careers *,
.scv-careers *::before,
.scv-careers *::after {
  box-sizing: border-box;
}

.scv-careers__intro {
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.scv-careers__intro h1 {
  color: var(--scv-text);
  font: inherit;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

.scv-careers__eyebrow {
  color: var(--scv-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  margin: 0 0 0.55rem;
  text-transform: uppercase;
}

.scv-form {
  background: var(--scv-surface);
  border: 1px solid rgba(84, 89, 95, 0.15);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(43, 25, 39, 0.08);
  padding: clamp(1.25rem, 4vw, 2.5rem);
}

.scv-form__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.scv-form__full {
  grid-column: 1 / -1;
}

.scv-field label {
  color: var(--scv-text);
  display: block;
  font-size: 0.94rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.scv-field input[type="text"],
.scv-field input[type="email"],
.scv-field input[type="tel"],
.scv-field input[type="file"],
.scv-field textarea {
  background: #fff;
  border: 1px solid var(--scv-border);
  border-radius: 8px;
  color: #292d32;
  font: inherit;
  min-height: 48px;
  padding: 0.75rem 0.9rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
  width: 100%;
}

.scv-field input[type="file"] {
  padding: 0.55rem;
}

.scv-field textarea {
  min-height: 130px;
  resize: vertical;
}

.scv-field input:focus-visible,
.scv-field textarea:focus-visible,
.scv-consent input:focus-visible,
.scv-button:focus-visible,
.scv-notice:focus-visible {
  box-shadow: 0 0 0 3px rgba(144, 42, 124, 0.25);
  outline: 2px solid var(--scv-primary);
  outline-offset: 2px;
}

.scv-field__help,
.scv-required {
  color: var(--scv-muted);
  font-size: 0.83rem;
  margin: 0.4rem 0 0;
}

.scv-consent {
  align-items: flex-start;
  display: flex;
  font-size: 0.9rem;
  gap: 0.7rem;
  line-height: 1.5;
  margin: 1.5rem 0;
}

.scv-privacy-summary {
  background: rgba(144, 42, 124, 0.04);
  border-left: 3px solid var(--scv-primary);
  color: var(--scv-muted);
  font-size: 0.83rem;
  line-height: 1.55;
  margin: 1.5rem 0 0;
  padding: 0.85rem 1rem;
}

.scv-privacy-summary a {
  color: var(--scv-primary);
  font-weight: 600;
}

.scv-consent input {
  flex: 0 0 auto;
  height: 18px;
  margin-top: 0.15rem;
  width: 18px;
}

.scv-consent a {
  color: var(--scv-primary);
  font-weight: 600;
  margin-left: 0.2rem;
  text-decoration: underline;
}

.scv-button {
  appearance: none;
  background: var(--scv-primary);
  border: 2px solid var(--scv-primary);
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  min-height: 48px;
  padding: 0.75rem 1.6rem;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.scv-button:hover {
  background: transparent;
  color: var(--scv-primary);
  transform: translateY(-1px);
}

.scv-notice {
  border-left: 4px solid;
  border-radius: 8px;
  margin: 0 0 1.5rem;
  padding: 1rem 1.15rem;
}

.scv-notice strong {
  display: block;
  margin-bottom: 0.2rem;
}

.scv-notice--success {
  background: #effaf3;
  border-color: #218c4f;
  color: #155f36;
}

.scv-notice--error {
  background: #fff3f2;
  border-color: #ba2f2f;
  color: #7e1f1f;
}

.scv-honeypot {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

@media (max-width: 640px) {
  .scv-form__grid {
    grid-template-columns: 1fr;
  }

  .scv-form__full {
    grid-column: auto;
  }

  .scv-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scv-careers * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
