/* ============================================================
   Careers page — shares styles.css tokens
   ============================================================ */

.chero { position: relative; padding: 176px 0 26px; overflow: hidden; }
.chero__inner { position: relative; z-index: 3; max-width: 760px; }
.chero__badge { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px; padding: 7px 15px; border-radius: 100px; font-size: 13px; color: var(--text-dim); background: var(--surface); border: 1px solid var(--line-2); }
.chero__badge .pulse { width: 7px; height: 7px; }
.chero h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem, 6vw, 4.2rem); letter-spacing: -0.035em; line-height: 1.02; margin-bottom: 20px; }
.chero h1 .grad { background: linear-gradient(120deg, var(--accent-3), var(--accent) 55%, var(--accent-2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.chero__deck { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--text-dim); max-width: 640px; line-height: 1.55; }

/* Search + filter toolbar */
.jobfilter { position: relative; z-index: 3; }
.jobfilter__row { display: flex; gap: 12px; flex-wrap: wrap; }
.jobfilter__search { flex: 1; min-width: 240px; position: relative; }
.jobfilter__search svg { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--text-mut); pointer-events: none; }
.jobfilter__search input { width: 100%; padding: 15px 18px 15px 48px; border-radius: 100px; background: var(--surface-2); border: 1px solid var(--line-2); color: var(--text); font-family: var(--font-body); font-size: 15px; }
.jobfilter__search input::placeholder { color: var(--text-mut); }
.jobfilter__search input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(34,235,7,0.14); }
.jobfilter__loc { position: relative; }
.jobfilter__loc select { appearance: none; -webkit-appearance: none; padding: 15px 44px 15px 20px; border-radius: 100px; background: var(--surface-2); border: 1px solid var(--line-2); color: var(--text); font-family: var(--font-body); font-size: 15px; cursor: pointer; min-width: 190px; }
.jobfilter__loc select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(34,235,7,0.14); }
.jobfilter__loc::after { content: ""; position: absolute; right: 20px; top: 50%; width: 8px; height: 8px; border-right: 2px solid var(--text-mut); border-bottom: 2px solid var(--text-mut); transform: translateY(-70%) rotate(45deg); pointer-events: none; }
.jobfilter__loc option { background: var(--bg-2); color: var(--text); }

.depts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.deptchip { padding: 9px 18px; border-radius: 100px; border: 1px solid var(--line-2); background: var(--surface); color: var(--text-dim); font-family: var(--font-display); font-size: 14px; cursor: pointer; transition: all .25s var(--ease); }
.deptchip:hover { border-color: var(--accent); color: var(--text); }
.deptchip.is-active { background: linear-gradient(180deg, var(--accent-3), var(--accent)); color: var(--accent-ink); border-color: transparent; font-weight: 600; }

/* Divider + results */
.jobs-wrap { border-top: 1px solid var(--line); margin-top: 34px; padding-top: 6px; }
.jobcount { padding: 20px 0 4px; font-family: var(--font-display); font-size: 13.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--text-mut); }
.jobcount b { color: var(--accent); }

/* Job row (for when roles are added later) */
.joblist { display: grid; }
.job { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: start; padding: 28px 0; border-top: 1px solid var(--line); }
.joblist .job:first-child { border-top: 0; }
.job__title { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; letter-spacing: -0.02em; }
.job__desc { color: var(--text-dim); font-size: 15px; margin-top: 8px; }
.job__tags { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.job__tag { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--text-dim); border: 1px solid var(--line-2); padding: 6px 12px; border-radius: 100px; }
.job__apply { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--text); white-space: nowrap; padding-top: 4px; }
.job__apply svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.job__apply:hover { color: var(--accent); }
.job__apply:hover svg { transform: translate(2px,-2px); }

/* Empty state */
.empty { text-align: center; padding: 62px 30px; border: 1px dashed var(--line-2); border-radius: var(--radius-lg); background: var(--surface); }
.empty__icon { width: 66px; height: 66px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 22px; background: rgba(34,235,7,0.06); border: 1px solid rgba(34,235,7,0.28); }
.empty__icon svg { width: 28px; height: 28px; color: var(--accent); }
.empty h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.4rem, 3vw, 1.8rem); letter-spacing: -0.02em; }
.empty p { color: var(--text-dim); max-width: 54ch; margin: 12px auto 26px; font-size: 1.05rem; line-height: 1.6; }
.empty__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Talent network */
.talent { position: relative; z-index: 3; }
.talent__card { border-radius: var(--radius-lg); border: 1px solid var(--line); background: linear-gradient(180deg, var(--surface-2), var(--surface)); padding: clamp(30px, 5vw, 56px); text-align: center; position: relative; overflow: hidden; }
.talent__card::before { content: ""; position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 640px; height: 360px; background: radial-gradient(circle, rgba(34,235,7,0.12), transparent 62%); pointer-events: none; }
.talent__inner { position: relative; z-index: 2; }
.talent h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: -0.03em; }
.talent p.sub { color: var(--text-dim); margin: 14px auto 30px; max-width: 520px; font-size: 1.05rem; }
.talent form { display: flex; gap: 10px; flex-wrap: wrap; max-width: 620px; margin: 0 auto; justify-content: center; }
.talent input, .talent select { flex: 1; min-width: 190px; padding: 15px 18px; border-radius: 100px; background: var(--surface-2); border: 1px solid var(--line-2); color: var(--text); font-family: var(--font-body); font-size: 15px; }
.talent select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.talent input::placeholder { color: var(--text-mut); }
.talent input:focus, .talent select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(34,235,7,0.14); }
.talent__note { margin-top: 16px; font-size: 12.5px; color: var(--text-mut); }
.talent__thanks { display: none; }
.talent__thanks.show { display: block; }
.talent__thanks .tick { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 18px; background: var(--accent); color: var(--accent-ink); font-size: 26px; font-weight: 700; box-shadow: 0 0 24px var(--glow); }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.value { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.value__num { font-family: var(--font-display); font-size: 13px; color: var(--accent); }
.value h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; letter-spacing: -0.015em; margin: 12px 0 8px; }
.value p { color: var(--text-dim); font-size: 14.5px; line-height: 1.55; }

@media (max-width: 820px) {
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .chero { padding-top: 150px; }
  .jobfilter__loc select { width: 100%; }
  .job { grid-template-columns: 1fr; gap: 14px; }
}
