/* ===========================================================
   CANDIDATE PROFILE PAGE
   =========================================================== */

/* HERO with cover */
.cp-hero { position: relative; }
.cp-cover {
  height: 240px;
  position: relative;
  overflow: hidden;
  background: var(--asb-navy);
}
.cp-cover svg { display: block; width: 100%; height: 100%; }

.cp-hero-inner {
  position: relative;
  margin-top: -84px;
  z-index: 2;
  padding-bottom: 24px;
}

.cp-id {
  display: grid;
  grid-template-columns: 168px 1fr auto;
  gap: 28px;
  align-items: start;
}

.cp-avatar {
  position: relative;
  width: 168px; height: 168px;
  border-radius: var(--r-lg);
  border: 6px solid var(--paper);
  box-shadow: 0 12px 32px -8px rgba(0,0,0,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: var(--paper);
  letter-spacing: -0.04em;
}
.cp-avatar-status {
  position: absolute;
  bottom: 8px; right: 8px;
  width: 28px; height: 28px;
  background: var(--live);
  border: 4px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(82,162,46,0.5);
  animation: cp-avatar-pulse 1.6s ease-out infinite;
}
@keyframes cp-avatar-pulse { to { box-shadow: 0 0 0 12px rgba(82,162,46,0); } }

.cp-id-text { padding-top: 92px; min-width: 0; }
.cp-name-row {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-bottom: 6px;
}
.cp-name {
  font-family: var(--font-bn);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
}
body.lang-en .cp-name { font-family: var(--font-display); letter-spacing: -0.04em; }
.cp-pronoun { font-size: 13px; color: var(--ink-3); font-weight: 500; }
.cp-verified {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(82,162,46,0.12);
  border: 1px solid rgba(82,162,46,0.4);
  color: var(--live);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 100px;
}
.cp-verified svg { width: 11px; height: 11px; }
.cp-headline {
  font-size: 16.5px;
  color: var(--ink-2);
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.cp-meta-row {
  display: flex; flex-wrap: wrap; gap: 14px;
  font-size: 13px; color: var(--ink-3);
}
.cp-meta-item { display: inline-flex; align-items: center; gap: 5px; }
.cp-meta-item svg { width: 13px; height: 13px; }
.cp-open-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--live);
  color: white;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
}
.cp-open-dot {
  width: 7px; height: 7px;
  background: white;
  border-radius: 50%;
  animation: cp-blink 1.4s ease-in-out infinite;
}
@keyframes cp-blink { 50% { opacity: 0.4; } }

.cp-cta {
  display: flex; gap: 8px; padding-top: 92px;
}
.cp-cta-primary, .cp-cta-secondary, .cp-edit-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 18px;
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.cp-cta-primary {
  background: var(--asb-orange);
  color: white;
  box-shadow: 0 6px 18px -8px rgba(245,130,32,0.6);
}
.cp-cta-primary:hover { background: var(--asb-orange-bright); transform: translateY(-1px); }
.cp-cta-primary svg { width: 12px; height: 12px; }
.cp-cta-secondary {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
}
.cp-cta-secondary:hover { border-color: var(--asb-orange); color: var(--asb-orange); }
.cp-edit-btn {
  background: transparent;
  border-color: var(--line);
  color: var(--ink-3);
  font-size: 12.5px;
}
.cp-edit-btn:hover { border-color: var(--asb-orange); color: var(--asb-orange); }
.cp-edit-btn-on {
  background: var(--live);
  border-color: var(--live);
  color: white;
}
.cp-edit-btn-on svg { width: 12px; height: 12px; }

@media (max-width: 880px) {
  .cp-id { grid-template-columns: 1fr; }
  .cp-avatar { width: 120px; height: 120px; font-size: 44px; }
  .cp-hero-inner { margin-top: -60px; }
  .cp-name { font-size: 32px; }
  .cp-cta { padding-bottom: 0; }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.cp-stats { background: var(--paper); padding: 16px 0 8px; }
.cp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.cp-stat {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--asb-orange);
  border-radius: var(--r-md);
  padding: 14px 18px;
}
.cp-stat-orange { border-left-color: var(--asb-orange); }
.cp-stat-navy { border-left-color: var(--asb-navy); }
.cp-stat-gold { border-left-color: var(--gold-deep); }
.cp-stat-green { border-left-color: var(--live); }
.cp-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
body.lang-bn .cp-stat-num { font-family: var(--font-bn); font-weight: 700; }
.cp-stat-label { font-size: 12px; font-weight: 600; color: var(--ink-2); margin-top: 4px; }
.cp-stat-sub { font-size: 10.5px; color: var(--ink-muted); letter-spacing: 0.04em; margin-top: 2px; }

@media (max-width: 880px) {
  .cp-stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   BODY GRID
   ============================================================ */
.cp-body { background: var(--paper); padding: 24px 0 56px; }
.cp-body-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
}
.cp-main { display: flex; flex-direction: column; gap: 20px; }
.cp-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 1020px) {
  .cp-body-grid { grid-template-columns: 1fr; }
  .cp-two-col { grid-template-columns: 1fr; }
}

.cp-sec {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 26px 28px;
  position: relative;
}
.cp-sec-title {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line-soft);
}
.cp-sec-no {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--asb-orange);
  background: var(--gold-mist);
  padding: 4px 8px;
  border-radius: 4px;
}
.cp-sec-title h2 {
  font-family: var(--font-bn);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
}
body.lang-en .cp-sec-title h2 { font-family: var(--font-display); }

/* About + prefs */
.cp-bio {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 18px;
  text-wrap: pretty;
  font-family: var(--font-bn-display);
}
body.lang-en .cp-bio { font-family: var(--font-display); font-style: italic; font-weight: 500; }
.cp-pref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.cp-pref {
  background: var(--paper);
  border-radius: var(--r-md);
  padding: 12px 14px;
}
.cp-pref-label { font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); display: block; margin-bottom: 4px; }
.cp-pref-val {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}
body.lang-bn .cp-pref-val { font-family: var(--font-bn); font-weight: 700; }
.cp-pref-val small { font-size: 11px; font-weight: 500; color: var(--ink-3); margin-left: 2px; }

@media (max-width: 720px) {
  .cp-pref-grid { grid-template-columns: 1fr; }
}

/* SKILLS */
.cp-skills-grouped { display: flex; flex-direction: column; gap: 18px; }
.cp-skills-group-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.cp-skills-list { display: flex; flex-direction: column; gap: 8px; }
.cp-skill {
  display: grid;
  grid-template-columns: 160px 1fr 36px;
  gap: 12px;
  align-items: center;
}
.cp-skill-name { font-size: 13.5px; font-weight: 600; color: var(--ink-2); }
.cp-skill-bar {
  height: 6px;
  background: var(--paper);
  border-radius: 100px;
  overflow: hidden;
}
.cp-skill-fill {
  display: block;
  height: 100%;
  border-radius: 100px;
  background: var(--asb-orange);
}
.cp-skill[data-tier="expert"] .cp-skill-fill { background: linear-gradient(90deg, var(--asb-orange) 0%, var(--asb-orange-bright) 100%); }
.cp-skill[data-tier="advanced"] .cp-skill-fill { background: var(--asb-navy); }
.cp-skill[data-tier="intermediate"] .cp-skill-fill { background: var(--gold-deep); }
.cp-skill-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  color: var(--ink-2);
  text-align: right;
}

/* EXPERIENCE TIMELINE */
.cp-timeline { display: flex; flex-direction: column; }
.cp-tl-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding-bottom: 28px;
}
.cp-tl-item:last-child { padding-bottom: 0; }
.cp-tl-marker { position: relative; }
.cp-tl-logo {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  color: white;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  z-index: 2;
}
.cp-tl-line {
  position: absolute;
  left: 27px; top: 56px; bottom: -28px;
  width: 2px;
  background: linear-gradient(to bottom, var(--line) 0%, var(--line) 60%, transparent);
}
.cp-tl-body { padding-top: 4px; min-width: 0; }
.cp-tl-role {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 2px;
}
.cp-tl-co {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 4px;
}
.cp-tl-current {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(82,162,46,0.12);
  color: var(--live);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 100px;
  text-transform: uppercase;
}
.cp-tl-current-dot {
  width: 6px; height: 6px;
  background: var(--live);
  border-radius: 50%;
  animation: cp-blink 1.4s ease-in-out infinite;
}
.cp-tl-meta {
  display: inline-flex; flex-wrap: wrap; gap: 6px;
  font-size: 12px;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.cp-tl-notes { list-style: none; padding: 0; margin: 0 0 12px; display: flex; flex-direction: column; gap: 6px; }
.cp-tl-notes li {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-2);
  padding-left: 16px;
  position: relative;
}
.cp-tl-notes li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--asb-orange);
  font-weight: 700;
}
.cp-tl-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.cp-tl-tag {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  color: var(--ink-2);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 100px;
}

/* PROJECTS */
.cp-proj-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.cp-proj {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}
.cp-proj:hover { transform: translateY(-3px); border-color: var(--asb-orange); box-shadow: 0 12px 28px -10px rgba(0,0,0,0.18); }
.cp-proj-art {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--c);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.cp-proj-art-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), transparent 60%);
}
.cp-proj-art-mark {
  width: 70%; max-width: 200px;
  position: relative;
  z-index: 1;
}
.cp-proj-year {
  position: absolute;
  top: 12px; right: 12px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.25);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.06em;
}
.cp-proj-text { padding: 14px 16px; }
.cp-proj-kind {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--asb-orange);
  margin-bottom: 4px;
}
.cp-proj-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 4px;
}
.cp-proj-blurb { font-size: 12.5px; color: var(--ink-3); }

@media (max-width: 720px) {
  .cp-proj-grid { grid-template-columns: 1fr; }
}

/* EDUCATION + CERTS + LANGS */
.cp-edu-list, .cp-cert-list, .cp-lang-list {
  display: flex; flex-direction: column; gap: 10px;
}
.cp-edu {
  background: var(--paper);
  border-radius: var(--r-md);
  padding: 12px 14px;
  border-left: 3px solid var(--asb-navy);
}
.cp-edu-school {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}
body.lang-bn .cp-edu-school { font-family: var(--font-bn); font-weight: 700; }
.cp-edu-deg { font-size: 13px; color: var(--ink-2); font-weight: 600; margin-top: 2px; }
.cp-edu-meta { font-size: 11.5px; color: var(--ink-3); margin-top: 4px; display: flex; gap: 6px; }

.cp-cert {
  display: flex; gap: 10px; align-items: center;
  background: var(--paper);
  border-radius: var(--r-md);
  padding: 10px 14px;
}
.cp-cert-icon { font-size: 22px; }
.cp-cert-name { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.cp-cert-meta { font-size: 11.5px; color: var(--ink-3); margin-top: 2px; }

.cp-lang {
  display: grid;
  grid-template-columns: 100px auto 1fr;
  gap: 14px;
  align-items: center;
}
.cp-lang-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.cp-lang-stars { display: inline-flex; gap: 3px; }
.cp-lang-star { color: var(--line); font-size: 11px; }
.cp-lang-star.is-on { color: var(--asb-orange); }
.cp-lang-level { font-size: 12px; color: var(--ink-3); }

/* ACHIEVEMENTS */
.cp-ach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}
.cp-ach {
  display: flex; gap: 10px; align-items: start;
  background: var(--paper);
  border-radius: var(--r-md);
  padding: 12px 14px;
}
.cp-ach-ic { font-size: 24px; flex-shrink: 0; }
.cp-ach-text { font-size: 13.5px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.cp-ach-meta { font-size: 11.5px; color: var(--ink-3); margin-top: 4px; }

/* ENDORSEMENTS */
.cp-endo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.cp-endo {
  background: var(--paper);
  border-radius: var(--r-md);
  padding: 18px 20px;
  position: relative;
  border-top: 3px solid var(--gold-deep);
}
.cp-endo-quote {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 800;
  color: var(--gold-soft);
  line-height: 0.6;
  margin-bottom: 8px;
}
.cp-endo-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  font-style: italic;
  margin-bottom: 14px;
  text-wrap: pretty;
}
.cp-endo-by {
  display: flex; gap: 10px; align-items: center;
  padding-top: 12px;
  border-top: 1px dashed var(--line-soft);
}
.cp-endo-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.cp-endo-who { font-size: 13px; font-weight: 700; color: var(--ink); }
.cp-endo-role { font-size: 11.5px; color: var(--ink-3); margin-top: 1px; }

@media (max-width: 880px) {
  .cp-endo-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.cp-side {
  display: flex; flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 16px;
}
.cp-side-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 18px 20px;
}
.cp-side-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 12px;
}

/* completion */
.cp-comp-bar {
  height: 6px;
  background: var(--paper);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 8px;
}
.cp-comp-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--asb-orange), var(--asb-orange-bright));
  border-radius: 100px;
}
.cp-comp-row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 12px;
}
.cp-comp-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
body.lang-bn .cp-comp-num { font-family: var(--font-bn); font-weight: 700; }
.cp-comp-tier { font-size: 11.5px; color: var(--asb-orange); font-weight: 700; }
.cp-comp-todo { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; font-size: 12px; }
.cp-comp-todo li { display: flex; gap: 6px; align-items: center; }
.cp-comp-todo .is-done { color: var(--ink-3); }
.cp-comp-todo .is-done::first-letter { color: var(--live); font-weight: 700; }
.cp-comp-todo .is-todo { color: var(--asb-orange); font-weight: 600; }

/* contact */
.cp-contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.cp-contact-list li { display: flex; gap: 10px; align-items: center; font-size: 12.5px; color: var(--ink-2); }
.cp-contact-list a { color: var(--ink-2); text-decoration: none; }
.cp-contact-list a:hover { color: var(--asb-orange); }
.cp-contact-ic {
  width: 24px; height: 24px;
  background: var(--paper);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  color: var(--ink-3);
  font-weight: 700;
}

/* availability */
.cp-avail {
  background: linear-gradient(135deg, var(--asb-navy) 0%, #1A2240 100%);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.cp-avail::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, var(--asb-orange) 0%, transparent 70%);
  opacity: 0.4;
}
.cp-avail-pulse {
  width: 10px; height: 10px;
  background: var(--live);
  border-radius: 50%;
  margin-bottom: 8px;
  box-shadow: 0 0 0 0 rgba(82,162,46,0.7);
  animation: cp-pulse-key 1.6s ease-out infinite;
  position: relative; z-index: 1;
}
@keyframes cp-pulse-key { to { box-shadow: 0 0 0 8px rgba(82,162,46,0); } }
.cp-avail-title {
  font-family: var(--font-bn);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  position: relative; z-index: 1;
}
body.lang-en .cp-avail-title { font-family: var(--font-display); }
.cp-avail-detail { display: flex; flex-direction: column; gap: 8px; position: relative; z-index: 1; }
.cp-avail-detail > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 8px;
  font-size: 11.5px;
  color: rgba(247,244,237,0.6);
  letter-spacing: 0.04em;
  align-items: center;
}
.cp-avail-detail b {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--paper);
  font-weight: 700;
  letter-spacing: -0.01em;
}
body.lang-bn .cp-avail-detail b { font-family: var(--font-bn); font-weight: 600; }

/* AI suggested jobs */
.cp-ai-mini {
  width: 18px; height: 18px;
  background: var(--asb-orange);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: white;
}
.cp-ai-mini svg { width: 11px; height: 11px; }

.cp-ai-job {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: var(--paper);
  border-radius: var(--r-md);
  text-decoration: none;
  color: inherit;
  margin-bottom: 6px;
  transition: all 0.15s;
}
.cp-ai-job:hover { transform: translateX(3px); }
.cp-ai-job-logo {
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  color: white;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cp-ai-job-text { flex: 1; min-width: 0; }
.cp-ai-job-co { font-size: 11px; color: var(--ink-3); font-weight: 600; }
.cp-ai-job-title {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-top: 1px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cp-ai-job-match {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--asb-orange);
  letter-spacing: -0.02em;
}
.cp-ai-job-match small { font-size: 9px; }
.cp-ai-jobs-all {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--asb-orange);
  text-decoration: none;
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px dashed var(--line-soft);
}

/* ============================================================
   EDIT MODE BAR
   ============================================================ */
.cp-edit-bar {
  position: fixed;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--paper);
  padding: 12px 20px;
  border-radius: 100px;
  display: flex; align-items: center; gap: 12px;
  font-size: 13px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  z-index: 100;
  animation: cp-edit-up 0.4s cubic-bezier(0.2, 1.2, 0.4, 1);
}
@keyframes cp-edit-up {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
.cp-edit-bar-pulse {
  width: 8px; height: 8px;
  background: var(--asb-orange);
  border-radius: 50%;
  animation: cp-blink 1.2s ease-in-out infinite;
}
.cp-edit-bar-done {
  background: var(--asb-orange);
  color: white;
  border: none;
  border-radius: 100px;
  padding: 6px 14px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
