/* ============================================================
   HASHTOCOLON SYSTEMS — Careers Page Styles
   Pairs with style.css (shares the same design tokens/colors).
   Load order in HTML: style.css  ->  careers.css

   NOTE: this file previously contained leftover ".svc-*" rules
   copied from services/service-detail.css. None of those classes
   are used by careers.html (which uses ".car-*" classes), so the
   stats row, benefit cards, value cards, job cards, process steps
   and CTA were rendering completely unstyled. This file defines
   every ".car-*" class actually used in careers.html.
   ============================================================ */

/* ── LOCAL ACCENT TOKENS (themed sections on this page) ──── */
:root {
  --rose:       #fb7185;
  --rose-glow:  rgba(251,113,133,.16);
  --indigo:     #818cf8;
  --indigo-glow: rgba(129,140,248,.16);
  --sky:        #38bdf8;
  --sky-glow:   rgba(56,189,248,.16);
  --gold:       #f0a93c;
  --gold-glow:  rgba(240,169,60,.16);
}

/* ── SHARED WRAP ─────────────────────────── */
.car-wrap { max-width: 1200px; margin: 0 auto; padding: 90px 24px; position: relative; z-index: 1; }
.car-wrap-first { padding-top: 44px; }

/* ── STATS ROW ──────────────────────────── */
.car-stats {
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse 90% 100% at 50% 50%, rgba(20,83,45,.45) 0%, rgba(13,58,32,.22) 40%, transparent 75%), #0e131a;
  border-bottom: 1px solid var(--border);
}
.car-stats::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(rgba(160,255,190,.13) 1px, transparent 1px);
  background-size: 28px 28px;
}
.car-stats-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.car-stats-inner > div {
  padding: 40px 24px; text-align: center;
  border-right: 1px solid var(--border);
}
.car-stats-inner > div:last-child { border-right: none; }
.car-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.6rem; font-weight: 800; color: var(--white); line-height: 1;
}
.car-stat-lbl { font-size: 12px; color: var(--muted); margin-top: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: .7px; }

/* ── SECTION SHELL + COLOR VARIANTS ─────── */
.car-sec { position: relative; overflow: hidden; }
.car-sec::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-size: 28px 28px;
}
.car-sec-rose   { background: radial-gradient(ellipse 90% 70% at 50% 0%, var(--rose-glow) 0%, transparent 70%), var(--bg); }
.car-sec-rose::before   { background-image: radial-gradient(rgba(251,113,133,.13) 1px, transparent 1px); }
.car-sec-indigo { background: radial-gradient(ellipse 90% 70% at 50% 0%, var(--indigo-glow) 0%, transparent 70%), var(--bg2); }
.car-sec-indigo::before { background-image: radial-gradient(rgba(129,140,248,.13) 1px, transparent 1px); }
.car-sec-sky    { background: radial-gradient(ellipse 90% 70% at 50% 0%, var(--sky-glow) 0%, transparent 70%), var(--bg); }
.car-sec-sky::before    { background-image: radial-gradient(rgba(56,189,248,.13) 1px, transparent 1px); }
.car-sec-gold   { background: radial-gradient(ellipse 90% 70% at 50% 0%, var(--gold-glow) 0%, transparent 70%), var(--bg2); }
.car-sec-gold::before   { background-image: radial-gradient(rgba(240,169,60,.13) 1px, transparent 1px); }

/* Soft corner glow orbs, one per themed section — mirrors .car-glow1 in the hero */
.car-sec-glow {
  position: absolute; width: 620px; height: 420px; border-radius: 50%;
  pointer-events: none; z-index: 0;
}
.car-sec-rose .car-sec-glow   { background: radial-gradient(circle, rgba(251,113,133,.22) 0%, rgba(251,113,133,.06) 50%, transparent 75%); top: -120px; left: -100px; }
.car-sec-indigo .car-sec-glow { background: radial-gradient(circle, rgba(129,140,248,.22) 0%, rgba(129,140,248,.06) 50%, transparent 75%); top: -100px; right: -110px; }
.car-sec-sky .car-sec-glow    { background: radial-gradient(circle, rgba(56,189,248,.22) 0%, rgba(56,189,248,.06) 50%, transparent 75%); top: -110px; left: -100px; }
.car-sec-gold .car-sec-glow   { background: radial-gradient(circle, rgba(240,169,60,.22) 0%, rgba(240,169,60,.06) 50%, transparent 75%); top: -100px; right: -110px; }

.car-sh { max-width: 640px; margin-bottom: 48px; position: relative; z-index: 1; }
.car-hiring-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--sky-glow); border: 1px solid rgba(56,189,248,.32); color: var(--sky);
  font-size: 12px; font-weight: 700; letter-spacing: .3px;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 14px;
}
.car-hiring-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--sky); flex-shrink: 0;
  animation: carHiringPulse 1.8s ease-in-out infinite;
}
@keyframes carHiringPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(56,189,248,.5); }
  50% { opacity: .6; box-shadow: 0 0 0 4px rgba(56,189,248,0); }
}
.car-h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 700;
  line-height: 1.16; color: var(--white); margin-bottom: 12px; letter-spacing: -.5px;
}
.car-h2 em { font-style: normal; color: var(--green); }
.car-sd { font-size: 15.5px; color: var(--text2); line-height: 1.75; max-width: 580px; }

/* ── WHY JOIN — BENEFIT GRID ────────────── */
.car-benefit-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px;
}
.car-benefit-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r2);
  padding: 28px 26px; transition: border-color .25s, transform .25s, box-shadow .25s;
}
.car-benefit-card:hover { border-color: rgba(251,113,133,.35); transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,.32); }
.car-benefit-card .bi {
  width: 46px; height: 46px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
  background: var(--rose-glow);
}
/* One signature color per benefit, echoing what each one means */
.bc-1 .bi { background: linear-gradient(135deg,#7f1d1d,#dc2626); } /* Health Insurance — red/care */
.bc-2 .bi { background: linear-gradient(135deg,#0c2d4a,#0e7490); } /* Flexible Hours — blue/time */
.bc-3 .bi { background: linear-gradient(135deg,#064e2e,#16a34a); } /* Learning Budget — green/growth */
.bc-4 .bi { background: linear-gradient(135deg,#3f2d02,#ca8a04); } /* Performance Bonuses — gold/money */
.bc-5 .bi { background: linear-gradient(135deg,#4a044e,#be185d); } /* Team Outings — pink/celebration */
.bc-6 .bi { background: linear-gradient(135deg,#1e1b4b,#4338ca); } /* Real Growth Paths — indigo/progress */
.bc-1:hover { border-color: rgba(220,38,38,.35); }
.bc-2:hover { border-color: rgba(14,116,144,.35); }
.bc-3:hover { border-color: rgba(22,163,74,.35); }
.bc-4:hover { border-color: rgba(202,138,4,.35); }
.bc-5:hover { border-color: rgba(190,24,93,.35); }
.bc-6:hover { border-color: rgba(67,56,202,.35); }
.car-benefit-card h4 { font-size: 16.5px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.car-benefit-card p { font-size: 14px; color: var(--text2); line-height: 1.65; }

/* ── VALUES GRID ─────────────────────────── */
.car-values-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px;
}
.car-value-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r2);
  padding: 30px 24px; text-align: center;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.car-value-card:hover { border-color: rgba(129,140,248,.35); transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,.32); }
.car-value-card .vi {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  font-size: 24px; margin-bottom: 14px;
  background: var(--indigo-glow);
}
/* One signature color per value, echoing what each one means */
.vc-1 .vi { background: linear-gradient(135deg,#7c2d05,#ea580c); } /* Ownership — orange/drive */
.vc-2 .vi { background: linear-gradient(135deg,#0c2d4a,#0e7490); } /* Curiosity — blue/explore */
.vc-3 .vi { background: linear-gradient(135deg,#3f2d02,#ca8a04); } /* Collaboration — gold/warmth */
.vc-4 .vi { background: linear-gradient(135deg,#3b0764,#a21caf); } /* Impact — violet/energy */
.vc-1:hover { border-color: rgba(234,88,12,.35); }
.vc-2:hover { border-color: rgba(14,116,144,.35); }
.vc-3:hover { border-color: rgba(202,138,4,.35); }
.vc-4:hover { border-color: rgba(162,28,175,.35); }
.car-value-card h4 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.car-value-card p { font-size: 13.5px; color: var(--text2); line-height: 1.6; }

/* ── OPEN POSITIONS — FILTER ─────────────── */
.car-filter-row {
  position: relative; z-index: 1;
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px;
}
.car-filter-chip {
  font-size: 13.5px; font-weight: 600; color: var(--text2);
  background: var(--bg3); border: 1px solid var(--border2);
  padding: 9px 18px; border-radius: 100px; cursor: pointer;
  transition: all .2s;
}
.car-filter-chip:hover { border-color: rgba(56,189,248,.4); color: var(--white); }
.car-filter-chip.active { background: var(--sky); border-color: var(--sky); color: #06131f; }

/* ── JOB LIST ────────────────────────────── */
.car-job-list { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 14px; }
.car-job-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r2);
  padding: 26px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.car-job-card:hover { border-color: rgba(56,189,248,.35); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0,0,0,.28); }
.car-job-main h4 { font-size: 17px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.car-job-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.car-job-tag {
  font-size: 12.5px; font-weight: 600; color: var(--text2);
  background: var(--bg3); border: 1px solid var(--border2);
  padding: 4px 12px; border-radius: 100px;
}
.car-job-tag.dept { color: var(--sky); background: var(--sky-glow); border-color: rgba(56,189,248,.3); }
.car-job-desc { font-size: 14px; color: var(--text2); line-height: 1.6; max-width: 620px; }
.car-job-apply {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #06210f; font-weight: 700; font-size: 14px;
  padding: 12px 22px; border-radius: 9px; white-space: nowrap;
  transition: all .22s;
}
.car-job-apply:hover { background: var(--green3); transform: translateY(-2px); box-shadow: 0 6px 24px var(--green-glow); }

/* ── HIRING PROCESS ──────────────────────── */
.car-process-steps {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px;
}
.car-ps {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r2);
  padding: 26px 24px; position: relative;
  transition: border-color .25s, transform .25s;
}
.car-ps:hover { border-color: rgba(240,169,60,.35); transform: translateY(-4px); }
.car-ps-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem; font-weight: 800; color: var(--gold);
  opacity: .7; margin-bottom: 14px;
}
.car-ps h4 { font-size: 15.5px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.car-ps p { font-size: 13.5px; color: var(--text2); line-height: 1.6; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 900px) {
  .car-stats-inner { grid-template-columns: repeat(2,1fr); }
  .car-stats-inner > div:nth-child(2) { border-right: none; }
  .car-stats-inner > div:nth-child(3) { border-top: 1px solid var(--border); }
  .car-job-card { flex-direction: column; align-items: stretch; }
  .car-job-apply { justify-content: center; }
}
@media (max-width: 640px) {
  .car-wrap { padding: 64px 18px; }
  .car-wrap-first { padding-top: 32px; }
  .car-stats-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .car-stats-inner { grid-template-columns: 1fr; }
  .car-stats-inner > div { border-right: none; border-bottom: 1px solid var(--border); }
  .car-stats-inner > div:last-child { border-bottom: none; }
}