/* ══════════════════════════════════════════════════════
   CAREERS PAGE  — careers.css
   Tone: Bold editorial luxury — dark immersive hero,
   asymmetric culture grid, floating job cards, elegant
   application drawer. Memorable & distinctly human.
══════════════════════════════════════════════════════ */

/* ── Hero ────────────────────────────────────────────── */
.career-hero {
  background: var(--dk);
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* Animated dot-grid background */
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(113,75,103,.35) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
/* Diagonal light sweep */
.hero-sweep {
  position: absolute;
  top: -200px; left: -200px;
  width: 900px; height: 900px;
  background: radial-gradient(ellipse at center,
    rgba(113,75,103,.22) 0%,
    rgba(0,160,157,.06) 40%,
    transparent 70%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(80px, 40px) scale(1.15); }
}
.hero-sweep2 {
  position: absolute;
  bottom: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(0,160,157,.1) 0%, transparent 65%);
  pointer-events: none;
}

/* Big display number */
.hero-bg-num {
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(140px, 20vw, 280px);
  font-weight: 700;
  color: rgba(255,255,255,.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -8px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 8rem 2.5rem 5rem;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}
.hero-eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #6ee7b7;
  animation: dotPulse 2s infinite;
}
.career-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6.5vw, 82px);
  font-weight: 700;
  color: #fff;
  line-height: 1.07;
  letter-spacing: -1.5px;
  margin-bottom: 1.75rem;
  max-width: 820px;
}
.career-hero h1 em { font-style: italic; color: #fcd34d; }
.career-hero h1 .stroke-text {
  -webkit-text-stroke: 1.5px rgba(255,255,255,.4);
  color: transparent;
}
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 2.5rem;
}
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 4rem; }
.btn-hero-primary {
  background: var(--p); color: #fff; border: none;
  padding: 14px 32px; border-radius: 8px;
  font-size: 14.5px; font-weight: 700; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background .15s, transform .1s, box-shadow .15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-primary:hover { background: var(--pd); box-shadow: 0 8px 28px rgba(113,75,103,.5); transform: translateY(-1px); }
.btn-hero-primary svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2; }
.btn-hero-ghost {
  background: transparent; color: rgba(255,255,255,.8);
  border: 1.5px solid rgba(255,255,255,.2);
  padding: 14px 32px; border-radius: 8px;
  font-size: 14.5px; font-weight: 600; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: border-color .15s, color .15s;
}
.btn-hero-ghost:hover { border-color: rgba(255,255,255,.5); color: #fff; }

/* Floating job preview chips */
.hero-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 2rem;
}
.hero-chip {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: 8px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background .18s, border-color .18s, transform .15s;
  text-decoration: none;
}
.hero-chip:hover { background: rgba(113,75,103,.3); border-color: var(--pm); transform: translateY(-2px); }
.hero-chip-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--pm); flex-shrink: 0; }
.hero-chip-dot.open { background: #6ee7b7; }
.hero-chip-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.75); }
.hero-chip-dept  { font-size: 11px; color: rgba(255,255,255,.4); font-family: 'DM Mono', monospace; }
.hero-chip-count { font-size: 10.5px; color: rgba(255,255,255,.4); margin-left: 4px; }

/* ── Stats strip ─────────────────────────────────────── */
.career-stats {
  background: var(--p);
  padding: 0;
}
.career-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.12);
}
.cstat {
  background: var(--p);
  padding: 2.25rem 2rem;
  text-align: center;
  transition: background .2s;
  cursor: default;
}
.cstat:hover { background: var(--pd); }
.cstat-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: .4rem;
}
.cstat-num em { font-style: normal; color: #fcd34d; }
.cstat-label { font-size: 13px; color: rgba(255,255,255,.65); font-weight: 500; }
.cstat-sub   { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 3px; }

/* ── Why Join Us ─────────────────────────────────────── */
.why-join { padding: 7rem 0; background: var(--wh); }
.why-join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.wj-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--dk);
  line-height: 1.18;
  margin-bottom: 1rem;
  letter-spacing: -.3px;
}
.wj-left p {
  font-size: 15.5px;
  color: var(--bd);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.perks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.perk-card {
  background: var(--bg);
  border: 1px solid var(--br);
  border-radius: 14px;
  padding: 1.375rem;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  cursor: default;
}
.perk-card:hover { border-color: var(--pm); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(113,75,103,.1); }
.perk-ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--pl);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .875rem;
  transition: background .2s;
}
.perk-card:hover .perk-ico { background: var(--p); }
.perk-ico svg { width: 18px; height: 18px; stroke: var(--p); fill: none; stroke-width: 2; transition: stroke .2s; }
.perk-card:hover .perk-ico svg { stroke: #fff; }
.perk-card h4 { font-size: 13.5px; font-weight: 700; color: var(--dk); margin-bottom: 4px; }
.perk-card p  { font-size: 12.5px; color: var(--bd); line-height: 1.6; }

/* Right: culture photo grid mockup */
.wj-right { position: relative; }
.culture-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.culture-tile {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  min-height: 160px;
}
.culture-tile.tall { grid-row: span 2; min-height: 340px; }
.ct-bg {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
.ct-bg-1 { background: linear-gradient(135deg, #2e1a2b 0%, var(--p) 100%); }
.ct-bg-2 { background: linear-gradient(135deg, #0d1f1e 0%, var(--ac) 100%); }
.ct-bg-3 { background: linear-gradient(135deg, #1a1200 0%, #c9a84c 100%); }
.ct-bg-4 { background: linear-gradient(135deg, #101015 0%, #3b4a6b 100%); }
.ct-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 20px 20px;
}
.ct-label {
  position: relative;
  z-index: 1;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  padding: 8px 14px;
  border-radius: 20px;
}
.ct-label span { font-size: 12px; font-weight: 700; color: #fff; }
.culture-float-badge {
  position: absolute;
  top: -16px; right: -16px;
  background: #fff;
  border: 1px solid var(--br);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  z-index: 10;
  min-width: 150px;
}
.cfb-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--p);
  line-height: 1;
}
.cfb-label { font-size: 12px; color: var(--bd); margin-top: 3px; }

/* ── Open Positions ──────────────────────────────────── */
.open-positions { padding: 7rem 0; background: var(--bg); }
.op-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.op-header-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--dk);
  margin-bottom: .5rem;
  line-height: 1.2;
}
.op-header-left p { font-size: 15px; color: var(--bd); line-height: 1.7; }

/* Filter tabs */
.op-filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.filter-btn {
  background: var(--wh);
  border: 1.5px solid var(--br);
  color: var(--dk);
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .18s;
  font-family: 'DM Sans', sans-serif;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--p);
  border-color: var(--p);
  color: #fff;
}
.filter-btn .count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  font-size: 10px;
  font-weight: 800;
  margin-left: 5px;
}
.filter-btn:not(.active) .count { background: var(--pl); color: var(--p); }

/* Job cards grid */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1.25rem;
}
.job-card {
  background: var(--wh);
  border: 1px solid var(--br);
  border-radius: 18px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  cursor: pointer;
}
.job-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--p);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.22,.68,0,1.2);
}
.job-card:hover { border-color: var(--pm); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(113,75,103,.12); }
.job-card:hover::before { transform: scaleX(1); }
.job-card.featured {
  background: var(--dk);
  border-color: var(--p);
  grid-column: span 2;
}
.job-card.featured::before { background: #fcd34d; }

.job-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  gap: 1rem;
}
.job-dept-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pl);
  color: var(--p);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.job-card.featured .job-dept-badge { background: rgba(255,255,255,.12); color: rgba(255,255,255,.8); }
.job-dept-badge svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2; }
.job-new-badge {
  background: #fcd34d;
  color: var(--dk);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .3px;
  flex-shrink: 0;
}
.job-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dk);
  margin-bottom: .625rem;
  line-height: 1.25;
  transition: color .2s;
}
.job-card:hover .job-title,
.job-card.featured .job-title { color: var(--p); }
.job-card.featured .job-title { color: #fff; }
.job-card.featured:hover .job-title { color: #fcd34d; }

.job-desc {
  font-size: 13.5px;
  color: var(--bd);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.job-card.featured .job-desc { color: rgba(255,255,255,.6); }

.job-meta {
  display: flex;
  gap: .875rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.job-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  color: var(--bd);
  font-weight: 500;
}
.job-card.featured .job-meta-item { color: rgba(255,255,255,.55); }
.job-meta-item svg { width: 13px; height: 13px; stroke: var(--pm); fill: none; stroke-width: 2; }

.job-skills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.job-skill {
  background: var(--bg);
  color: var(--dk);
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid var(--br);
}
.job-card.featured .job-skill { background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.1); }

.job-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--br);
  gap: 1rem;
}
.job-card.featured .job-card-footer { border-top-color: rgba(255,255,255,.1); }
.job-salary {
  font-size: 14px;
  font-weight: 700;
  color: var(--p);
}
.job-card.featured .job-salary { color: #fcd34d; }
.btn-apply {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--p);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background .15s, transform .1s;
}
.btn-apply:hover { background: var(--pd); transform: translateY(-1px); }
.btn-apply svg { width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 2.5; transition: transform .2s; }
.btn-apply:hover svg { transform: translateX(3px); }
.job-card.featured .btn-apply { background: #fcd34d; color: var(--dk); }
.job-card.featured .btn-apply:hover { background: #f6c430; }
.job-card.featured .btn-apply svg { stroke: var(--dk); }

/* ── Values / Culture ────────────────────────────────── */
.life-at-slc { padding: 7rem 0; background: var(--wh); overflow: hidden; }
.life-header { text-align: center; margin-bottom: 4rem; }
.life-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--dk);
  margin-bottom: .75rem;
}
.life-header p { font-size: 16px; color: var(--bd); max-width: 520px; margin: 0 auto; line-height: 1.75; }

.life-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.5rem;
}
.life-card {
  border-radius: 20px;
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.life-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,.15); }
.life-card.dark  { background: var(--dk); }
.life-card.purple { background: var(--p); }
.life-card.light { background: var(--bg); border: 1px solid var(--br); }
.life-card.teal  { background: #0d2422; }
.life-card.gold  { background: #1a1200; }

.life-card-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.life-card-glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
  pointer-events: none;
}
.life-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: rgba(255,255,255,.08);
  line-height: 1;
  margin-bottom: -.5rem;
  position: relative;
}
.life-card.light .life-card-num { color: rgba(113,75,103,.08); }
.life-card-ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
}
.life-card.light .life-card-ico { background: var(--pl); }
.life-card-ico svg { width: 22px; height: 22px; stroke: rgba(255,255,255,.8); fill: none; stroke-width: 1.8; }
.life-card.light .life-card-ico svg { stroke: var(--p); }
.life-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: .75rem;
  position: relative;
  line-height: 1.3;
}
.life-card.light h3 { color: var(--dk); }
.life-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  position: relative;
}
.life-card.light p { color: var(--bd); }

/* ── Hiring Process ──────────────────────────────────── */
.hiring-process { padding: 7rem 0; background: var(--bg); }
.hp-header { text-align: center; margin-bottom: 4rem; }
.hp-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--dk);
  margin-bottom: .75rem;
}
.hp-header p { font-size: 16px; color: var(--bd); max-width: 480px; margin: 0 auto; line-height: 1.75; }

.hp-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 0;
  position: relative;
}
.hp-steps::before {
  content: '';
  position: absolute;
  top: 34px;
  left: calc(100%/10);
  right: calc(100%/10);
  height: 2px;
  background: linear-gradient(90deg, var(--p), var(--ac));
  z-index: 0;
}
.hp-step {
  text-align: center;
  padding: 0 1rem 2rem;
  position: relative;
  z-index: 1;
}
.hp-num {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--wh);
  border: 2.5px solid var(--br);
  color: var(--p);
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all .3s;
  cursor: default;
}
.hp-step:hover .hp-num {
  background: var(--p);
  border-color: var(--p);
  color: #fff;
  box-shadow: 0 8px 28px rgba(113,75,103,.35);
  transform: translateY(-4px) scale(1.08);
}
.hp-step-icon {
  display: flex;
  justify-content: center;
  margin-bottom: .875rem;
}
.hp-step-icon svg { width: 20px; height: 20px; stroke: var(--pm); fill: none; stroke-width: 2; }
.hp-step h4 { font-size: 14px; font-weight: 700; color: var(--dk); margin-bottom: 6px; }
.hp-step p  { font-size: 12px; color: var(--bd); line-height: 1.6; }
.hp-duration {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--p);
  font-weight: 500;
  margin-top: .5rem;
  background: var(--pl);
  padding: 2px 10px;
  border-radius: 20px;
}

/* ── Testimonials from team ──────────────────────────── */
.team-voices { padding: 7rem 0; background: var(--dk); position: relative; overflow: hidden; }
.team-voices::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(113,75,103,.2) 0%, transparent 70%);
  pointer-events: none;
}
.tv-header { text-align: center; margin-bottom: 3.5rem; position: relative; z-index: 1; }
.tv-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  margin-bottom: .75rem;
}
.tv-header p { font-size: 16px; color: rgba(255,255,255,.55); max-width: 480px; margin: 0 auto; line-height: 1.75; }

.tv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.tv-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  padding: 2rem;
  transition: background .25s, transform .25s;
}
.tv-card:hover { background: rgba(255,255,255,.08); transform: translateY(-3px); }
.tv-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  color: var(--p);
  line-height: .8;
  margin-bottom: .5rem;
  opacity: .7;
}
.tv-card blockquote {
  font-size: 14.5px;
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.tv-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.25rem; }
.tv-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--p);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.tv-name { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.tv-role { font-size: 12px; color: rgba(255,255,255,.45); }
.tv-tenure {
  margin-left: auto;
  font-family: 'DM Mono', monospace;
  font-size: 10.5px;
  color: rgba(255,255,255,.35);
  white-space: nowrap;
}

/* ── Open Application CTA ────────────────────────────── */
.open-app-cta { padding: 7rem 0; background: var(--wh); }
.oac-box {
  background: var(--dk);
  border-radius: 24px;
  padding: 5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.oac-box::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(113,75,103,.25) 0%, transparent 65%);
}
.oac-left { position: relative; z-index: 1; }
.oac-left .eyebrow { color: var(--pm); }
.oac-left .eyebrow::before { background: var(--pm); }
.oac-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.oac-left h2 em { font-style: italic; color: #fcd34d; }
.oac-left p { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.8; margin-bottom: 2rem; }
.oac-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-oac-primary {
  background: var(--p); color: #fff; border: none;
  padding: 14px 30px; border-radius: 8px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background .15s, transform .1s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-oac-primary:hover { background: #5a3a56; transform: translateY(-1px); }
.btn-oac-primary svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2; }
.btn-oac-ghost {
  background: transparent; color: rgba(255,255,255,.7);
  border: 1.5px solid rgba(255,255,255,.2);
  padding: 14px 30px; border-radius: 8px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: border-color .15s, color .15s;
}
.btn-oac-ghost:hover { border-color: rgba(255,255,255,.5); color: #fff; }

.oac-right { position: relative; z-index: 1; }
.oac-checklist { display: flex; flex-direction: column; gap: .875rem; }
.oac-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  transition: background .2s;
}
.oac-check-item:hover { background: rgba(255,255,255,.09); }
.oac-check-ico {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(113,75,103,.5);
  border: 1.5px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.oac-check-ico svg { width: 14px; height: 14px; stroke: var(--pm); fill: none; stroke-width: 2.5; }
.oac-check-text { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.75); }

/* ── Application Modal / Drawer ──────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,17,26,.75);
  backdrop-filter: blur(8px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal-overlay.open { display: flex; animation: fadeIn .25s ease forwards; }
.modal-box {
  background: var(--wh);
  border-radius: 24px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,.3);
  animation: scaleIn .3s cubic-bezier(.22,.68,0,1.2) forwards;
  scrollbar-width: thin;
}
.modal-header {
  background: var(--dk);
  padding: 2rem 2.5rem;
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.modal-header-left h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.modal-header-left p { font-size: 13px; color: rgba(255,255,255,.55); }
.modal-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .15s;
}
.modal-close:hover { background: rgba(255,255,255,.2); }
.modal-close svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2.5; }
.modal-body { padding: 2rem 2.5rem; }

.app-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.app-form-group { margin-bottom: 0; }
.app-form-group.full { grid-column: span 2; }
.app-form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--dk);
  margin-bottom: 7px;
  letter-spacing: .1px;
}
.app-form-group label .req { color: var(--p); }
.app-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--br);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--dk);
  background: var(--wh);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  appearance: none;
}
.app-control:focus { border-color: var(--p); box-shadow: 0 0 0 3px rgba(113,75,103,.1); }
.app-control::placeholder { color: #b4adb0; }
textarea.app-control { resize: vertical; min-height: 100px; line-height: 1.6; }

/* File upload */
.file-upload-area {
  border: 2px dashed var(--br);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.file-upload-area:hover { border-color: var(--p); background: var(--pl); }
.file-upload-area input { display: none; }
.file-upload-ico { width: 44px; height: 44px; background: var(--pl); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin: 0 auto .75rem; }
.file-upload-ico svg { width: 22px; height: 22px; stroke: var(--p); fill: none; stroke-width: 1.8; }
.file-upload-text { font-size: 14px; font-weight: 600; color: var(--dk); margin-bottom: 4px; }
.file-upload-sub  { font-size: 12px; color: var(--bd); }
.file-name-display { font-size: 12.5px; color: var(--p); font-weight: 600; margin-top: 8px; display: none; }

.modal-footer {
  padding: 1.5rem 2.5rem;
  border-top: 1px solid var(--br);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.modal-privacy { font-size: 12px; color: var(--bd); max-width: 300px; line-height: 1.5; }
.modal-privacy a { color: var(--p); text-decoration: none; }
.btn-submit-app {
  background: var(--p); color: #fff; border: none;
  padding: 13px 28px; border-radius: 8px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background .15s, transform .1s;
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.btn-submit-app:hover { background: var(--pd); transform: translateY(-1px); }
.btn-submit-app svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2; }

/* Success state */
.modal-success {
  display: none;
  padding: 4rem 2.5rem;
  text-align: center;
}
.modal-success.show { display: block; animation: scaleIn .4s ease forwards; }
.success-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--pl);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.success-circle svg { width: 36px; height: 36px; stroke: var(--p); fill: none; stroke-width: 2; }
.modal-success h3 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--dk); margin-bottom: .75rem; }
.modal-success p  { font-size: 15px; color: var(--bd); line-height: 1.7; max-width: 380px; margin: 0 auto; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .why-join-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .wj-right       { display: none; }
  .jobs-grid      { grid-template-columns: 1fr; }
  .job-card.featured { grid-column: span 1; }
  .life-grid      { grid-template-columns: 1fr 1fr; }
  .tv-grid        { grid-template-columns: 1fr; gap: 1rem; }
  .hp-steps       { grid-template-columns: repeat(3,1fr); }
  .hp-steps::before { display: none; }
  .oac-box        { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 2rem; }
  .career-stats-inner { grid-template-columns: 1fr 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .app-form-grid  { grid-template-columns: 1fr; }
  .app-form-group.full { grid-column: span 1; }
}
@media (max-width: 640px) {
  .career-hero h1     { font-size: 36px; letter-spacing: -.5px; }
  .life-grid          { grid-template-columns: 1fr; }
  .perks-grid         { grid-template-columns: 1fr; }
  .hp-steps           { grid-template-columns: 1fr 1fr; }
  .career-stats-inner { grid-template-columns: 1fr 1fr; }
  .modal-footer       { flex-direction: column; align-items: stretch; }
  .modal-footer .btn-submit-app { width: 100%; justify-content: center; }
}
