/* ═══════════ CONTACT / TALENTS / CAREERS ═══════════ */

/* ─── CONTACT ─── */
.ctc-hero {
  padding: 160px var(--pad) 80px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.ctc-hero__eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 32px;
  display: inline-flex;
  gap: 14px; align-items: center;
}
.ctc-hero__eyebrow::before { content:""; width:36px; height:1px; background:currentColor; }
.ctc-hero__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(56px, 12vw, 200px);
  line-height: .88;
  letter-spacing: -0.035em;
  color: var(--paper);
}
.ctc-hero__title .em { color: var(--orange); font-style: normal; }

/* Form + info split (light) */
.ctc-form-wrap {
  padding: 120px var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
}
.ctc-form__kicker {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.ctc-form__title {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: .95;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.ctc-form__title .em { color: var(--orange); font-style: normal; }
.ctc-form__sub {
  color: var(--subtle);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 48px;
}

.ctc-field {
  display: block;
  margin-bottom: 32px;
  position: relative;
}
.ctc-field__label {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 10px;
}
.ctc-field__label .num { color: var(--orange); }
.ctc-field input, .ctc-field textarea, .ctc-field select {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  padding: 12px 0;
  font-family: var(--f-body);
  font-size: 18px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s;
}
.ctc-field input:focus, .ctc-field textarea:focus, .ctc-field select:focus { border-color: var(--orange); }
.ctc-field textarea { min-height: 120px; resize: vertical; }

.ctc-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ctc-chip {
  padding: 8px 16px;
  border: 1px solid var(--ink);
  background: transparent;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s;
}
.ctc-chip:hover { color: var(--orange); border-color: var(--orange); }
.ctc-chip.is-on { background: var(--orange); border-color: var(--orange); color: var(--ink); }

.ctc-submit {
  margin-top: 24px;
  padding: 20px 28px;
  background: var(--ink);
  color: var(--paper);
  border: 0;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  transition: background .3s, gap .3s;
}
.ctc-submit:hover { background: var(--orange); gap: 28px; }
.ctc-submit svg { width: 18px; height: 18px; }

/* Right side info */
.ctc-info {
  align-self: start;
  position: sticky;
  top: 120px;
}
.ctc-info__block {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--rule-light);
}
.ctc-info__block:last-child { border-bottom: 0; }
.ctc-info__label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.ctc-info__primary {
  font-family: var(--f-display);
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 400;
  margin-bottom: 8px;
}
.ctc-info__primary a { color: inherit; text-decoration: none; }
.ctc-info__primary a:hover { color: var(--orange); }
.ctc-info__desc { color: var(--subtle); font-size: 14.5px; line-height: 1.55; }

@media (max-width: 900px) {
  .ctc-form-wrap { grid-template-columns: 1fr; gap: 60px; padding: 60px var(--pad); }
  .ctc-info { position: static; }
}

/* ─── TALENTS (registration form) ─── */
.talents-hero { padding: 160px var(--pad) 60px; }
.talents-hero__split {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 40px;
}
.talents-hero__title {
  font-family: var(--f-display);
  font-size: clamp(56px, 11vw, 180px);
  line-height: .88;
  font-weight: 300;
  letter-spacing: -0.035em;
  color: var(--paper);
}
.talents-hero__title .em { color: var(--orange); font-style: normal; }
.talents-hero__copy {
  max-width: 420px;
  color: #cfd8dc;
  font-size: 16px;
  line-height: 1.55;
}

/* Form wrapper */
.talent-form-wrap {
  padding: 100px var(--pad) 120px;
}
.talent-form {
  max-width: 860px;
  margin: 0 auto;
}
.talent-section {
  margin-bottom: 56px;
}
.talent-section__title {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 500;
  color: var(--subtle);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule-light);
  margin-bottom: 28px;
}
.talent-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* Upload zone */
.upload-zone {
  border: 2px dashed var(--rule-light);
  border-radius: 12px;
  padding: 44px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color .3s, background .3s;
}
.upload-zone:hover {
  border-color: var(--orange);
  background: color-mix(in srgb, var(--orange) 4%, transparent);
}
.upload-zone__icon {
  width: 40px; height: 40px;
  margin: 0 auto 14px;
  color: var(--subtle);
}
.upload-zone__label {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}
.upload-zone__hint {
  font-size: 13px;
  color: var(--subtle);
}

/* NDA block */
.nda-block {
  border: 1px solid var(--rule-light);
  border-radius: 12px;
  padding: 36px;
}
.nda-block__head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}
.nda-block__head svg {
  width: 24px; height: 24px;
  color: var(--orange);
  flex-shrink: 0;
}
.nda-block__head h3 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.nda-block__intro {
  font-size: 15px;
  color: var(--subtle);
  line-height: 1.55;
  margin-bottom: 20px;
}
.nda-text {
  max-height: 240px;
  overflow-y: auto;
  padding: 20px;
  background: color-mix(in srgb, var(--ink) 3%, transparent);
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--subtle);
}
.nda-text h4 {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  margin: 16px 0 6px;
}
.nda-text h4:first-child { margin-top: 0; }
.nda-text p { margin: 0 0 12px; }

.nda-check {
  display: flex;
  gap: 12px;
  cursor: pointer;
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 28px;
  align-items: flex-start;
}
.nda-check input[type="checkbox"] {
  accent-color: var(--orange);
  width: 18px; height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.nda-sign-row {
  margin-top: 0;
}
.ctc-field--sig input {
  border-bottom-width: 2px;
  font-family: var(--f-display);
  font-size: 20px;
  font-style: italic;
}

/* Submit row */
.talent-submit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--rule-light);
}
.talent-note {
  max-width: 440px;
  font-size: 13px;
  color: var(--subtle);
  line-height: 1.5;
}

/* Success state */
.talent-success {
  display: none;
  padding: 80px 0;
  text-align: center;
}
.talent-success h3 {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.talent-success p {
  font-size: 16px;
  color: var(--subtle);
  line-height: 1.55;
  max-width: 480px;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .talents-hero__split { grid-template-columns: 1fr; }
  .talent-row { grid-template-columns: 1fr; gap: 0; }
  .talent-submit-row { flex-direction: column; align-items: flex-start; }
}

/* ─── CAREERS ─── */
.car-hero { padding: 160px var(--pad) 80px; }
.car-hero__eyebrow {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .24em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 32px;
  display: inline-flex; gap: 14px; align-items: center;
}
.car-hero__eyebrow::before { content:""; width: 36px; height: 1px; background: currentColor; }
.car-hero__title {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(56px, 12vw, 200px); line-height: .88;
  letter-spacing: -0.035em; color: var(--paper);
}
.car-hero__title .em { color: var(--orange); font-style: normal; }
.car-hero__lede {
  margin-top: 48px; max-width: 680px;
  color: #cfd8dc; font-size: 18px; line-height: 1.55;
}

/* Why Mash (light band) */
.why-mash {
  padding: 120px var(--pad);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.why-mash__title {
  font-family: var(--f-display);
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: .95;
  font-weight: 300;
  letter-spacing: -0.02em;
  position: sticky;
  top: 120px;
}
.why-mash__title .em { color: var(--orange); font-style: normal; }
.why-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.why-item {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rule-light);
}
.why-item:last-child { border-bottom: 0; }
.why-item__num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--orange);
  margin-bottom: 12px;
}
.why-item__name {
  font-family: var(--f-display);
  font-size: 26px;
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.why-item__desc { color: var(--subtle); font-size: 15px; line-height: 1.6; max-width: 560px; }
@media (max-width: 900px) {
  .why-mash { grid-template-columns: 1fr; gap: 40px; }
  .why-mash__title { position: static; }
}

/* Open roles (dark) */
.roles { padding: 120px var(--pad); }
.roles__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 24px;
}
.roles__title {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 88px);
  line-height: .95;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--paper);
}
.roles__title .em { color: var(--orange); font-style: normal; }
.roles__sub { font-family: var(--f-mono); font-size: 12px; letter-spacing: .22em; color: var(--grey-blue); text-transform: uppercase; }
.roles__sub strong { color: var(--orange); }

.role-row {
  display: grid;
  grid-template-columns: 60px 2fr 1fr 1fr 60px;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  color: var(--paper);
  text-decoration: none;
  align-items: center;
  transition: padding .3s var(--e-out);
  cursor: pointer;
}
.role-row:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.role-row:hover { padding-left: 12px; }
.role-row:hover .role-row__name { color: var(--orange); }
.role-row:hover .role-row__arrow { background: var(--orange); border-color: var(--orange); color: var(--ink); transform: rotate(-45deg); }

.role-row__num { font-family: var(--f-mono); font-size: 11px; letter-spacing: .22em; color: var(--orange); }
.role-row__name {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.01em;
  font-weight: 400;
  transition: color .3s;
}
.role-row__dept,
.role-row__loc { font-family: var(--f-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: #9fb0b5; }
.role-row__arrow {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .35s var(--e-out);
  justify-self: end;
}
.role-row__arrow svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
  .role-row { grid-template-columns: 50px 1fr 50px; }
  .role-row__dept, .role-row__loc { display: none; }
}

/* Intern / spec band */
.spec-band {
  padding: 120px var(--pad);
  text-align: left;
  max-width: 1400px;
  margin: 0 auto;
}
.spec-band__line {
  font-family: var(--f-display);
  font-size: clamp(32px, 5vw, 72px);
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.spec-band__line .em { color: var(--orange); font-style: normal; }
.spec-band__sub {
  max-width: 640px;
  font-size: 16px;
  color: var(--subtle);
  line-height: 1.6;
  margin-bottom: 36px;
}
