/* ============================================================
   gap-jobseeker-overview-revamp-2026-05-06 — styles.css

   Body-only revamp of /jobseeker-dashboard/. Sidebar is the
   existing component; this stylesheet only adds the new widgets:
     1. ovw-greeting    — hero strip with name + day's headline
     2. ovw-widget--feed   — Feed / Saved Feed Summary (left)
     3. ovw-widget--profile — Profile Summary (right)
     4. ovw-widget--tracker — Application Tracker Summary (full width)
   ============================================================ */

/* ─── Layout grid ───────────────────────────────────────── */
.dashboard-main--overview { padding: 0 !important; }
main.dashboard-main { padding: 24px 28px 64px; }
@media (max-width: 720px) {
  main.dashboard-main { padding: 16px; }
}

.ovw-greeting {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(1, 56, 44, 0.08);
}
.ovw-greeting__copy { min-width: 0; }
.ovw-greeting__eyebrow {
  display: block;
  font: 600 11px/1 Figtree, Inter, system-ui, sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(1, 56, 44, 0.5);
  margin-bottom: 6px;
}
.ovw-greeting__title {
  margin: 0 0 6px;
  font: 700 28px/1.15 Figtree, Inter, system-ui, sans-serif;
  color: #01382C;
  letter-spacing: -0.01em;
}
.ovw-greeting__sub {
  margin: 0;
  font: 500 14px/1.45 inherit;
  color: rgba(1, 56, 44, 0.62);
  max-width: 64ch;
}
/* Greeting metrics use the canonical .metric-card markup from
   dashboard.css with a soft-green --green variant (ticket bt1778245999263).
   Same metric-strip rhythm as the feed page hero. */
.ovw-greeting__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 220px));
  gap: 12px;
  flex: 0 0 auto;
}
.metric-card--green {
  background: linear-gradient(180deg, rgba(5, 150, 105, 0.07) 0%, rgba(5, 150, 105, 0.02) 100%);
  border: 1px solid rgba(5, 150, 105, 0.22);
  border-radius: 14px;
  padding: 12px 14px;
  display: grid;
  gap: 4px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.metric-card--green:hover {
  border-color: rgba(5, 150, 105, 0.4);
  transform: translateY(-1px);
}
.metric-card--green .metric-card__label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(1, 56, 44, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}
.metric-card--green .metric-card__value {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #047857;
  margin: 0;
}
.metric-card--green .metric-card__delta {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(1, 56, 44, 0.6);
  margin: 0;
}
@media (max-width: 720px) {
  .ovw-greeting { flex-direction: column; align-items: stretch; gap: 16px; }
  .ovw-greeting__title { font-size: 22px; }
  .ovw-greeting__metrics { grid-template-columns: 1fr 1fr; }
  .metric-card--green { padding: 10px 12px; }
  .metric-card--green .metric-card__value { font-size: 1.25rem; }
}

/* ─── Top grid: Feed (60%) + Profile (40%) ───────────────── */
.ovw-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}
.ovw-grid--top { grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); }
@media (max-width: 1024px) {
  .ovw-grid--top { grid-template-columns: 1fr; }
}

/* ─── Widget shell — uses existing surface-card; only adds head ── */
.ovw-widget {
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(1, 56, 44, 0.08);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(1, 56, 44, 0.04);
  display: flex;
  flex-direction: column;
}
.ovw-widget__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px 0;
}
.ovw-widget__title {
  margin: 0;
  font: 700 16px/1.2 Figtree, Inter, system-ui, sans-serif;
  color: #01382C;
}
.ovw-widget__sub {
  margin: 4px 0 0;
  font: 500 12.5px/1.45 inherit;
  color: rgba(1, 56, 44, 0.55);
}
/* Widget header CTAs use the canonical .button.button--small.* classes
   from dashboard.css (so they match every other small button in the app).
   .ovw-cta-pill keeps the rounded-pill shape inside widget headers. */
.ovw-cta-pill {
  flex: 0 0 auto;
  border-radius: 999px;
  min-height: 30px;
  padding: 0 12px;
  font-size: 0.75rem;
  gap: 4px;
  white-space: nowrap;
}
.ovw-cta-pill svg { flex-shrink: 0; }
.ovw-widget__body { padding: 16px 20px 20px; }


/* ─── Feed widget ───────────────────────────────────────── */
.ovw-saved-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}
.ovw-saved-card {
  appearance: none;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  background: rgba(5, 150, 105, 0.04);
  border: 1px solid rgba(5, 150, 105, 0.18);
  border-radius: 12px;
  font: 500 13px/1.3 Figtree, Inter, system-ui, sans-serif;
  text-align: left;
  cursor: pointer;
  color: #01382C;
  transition: border-color 0.12s ease, background 0.12s ease, transform 0.12s ease;
}
.ovw-saved-card:hover {
  border-color: rgba(5, 150, 105, 0.4);
  background: rgba(5, 150, 105, 0.07);
  transform: translateY(-1px);
}
.ovw-saved-card__label {
  font-weight: 700;
  font-size: 13.5px;
  color: #01382C;
}
.ovw-saved-card__filters {
  font-size: 11px;
  color: rgba(1, 56, 44, 0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ovw-saved-card__counts {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(1, 56, 44, 0.7);
}
.ovw-saved-card__counts strong { color: #047857; font-weight: 700; }
.ovw-saved-card__counts-zero { color: rgba(1, 56, 44, 0.4); }
.ovw-saved-card--has-new::before {
  content: '';
  position: absolute;
  top: 10px; right: 10px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #DC2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.18);
  animation: ovw-pulse 1.6s ease-in-out infinite;
}
.ovw-saved-card__pulse { display: none; }
@keyframes ovw-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.92); }
}
.ovw-saved-card--add {
  background: #fff;
  border-style: dashed;
  border-color: rgba(1, 56, 44, 0.18);
  align-items: flex-start;
}
.ovw-saved-card--add:hover {
  border-color: #059669;
  background: rgba(5, 150, 105, 0.04);
}
.ovw-saved-card__add-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}
.ovw-saved-card--add .ovw-saved-card__label { font-weight: 600; }

/* "Top matches today" divider: heading now matches .ovw-widget__title
   styling (ticket bt1778246039257) and the right-side action is a real
   pill button matching Open Feed (ticket bt1778246057731). */
.ovw-feed-divider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 16px 0 10px;
  padding-top: 12px;
  border-top: 1px dashed rgba(1, 56, 44, 0.08);
}
.ovw-feed-divider__label {
  margin: 0;
  font: 700 14.5px/1.25 Figtree, Inter, system-ui, sans-serif;
  color: #01382C;
}
.ovw-feed-divider__link {
  text-decoration: none;
}

.ovw-match-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.ovw-match {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.12s ease;
}
.ovw-match:hover { background: rgba(5, 150, 105, 0.05); }
.ovw-match__avatar {
  flex: 0 0 auto;
  width: 36px; height: 36px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font: 700 11px/1 Figtree, Inter, system-ui, sans-serif;
  color: #fff;
  letter-spacing: 0.04em;
}
.ovw-match__main { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
/* Title + meta now mirror the canonical .job-title / .job-meta in
   dashboard.css (font-size: 0.9375rem / 0.75rem, exact colors).  */
.ovw-match__title {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.35;
  color: #01382C;
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ovw-match__meta {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(1, 56, 44, 0.45);
  line-height: 1.4;
}
/* .ovw-match__score removed — match score badges aren't part of the design now (ticket bt1778243275257). */


/* ─── Profile widget ─────────────────────────────────────── */
.ovw-profile-identity {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(1, 56, 44, 0.08);
  margin-bottom: 14px;
}
.ovw-profile-identity__avatar {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #059669 0%, #064E3B 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font: 800 14px/1 inherit;
  letter-spacing: 0.04em;
}
.ovw-profile-identity__copy { min-width: 0; }
.ovw-profile-identity__copy strong {
  display: block;
  font: 700 14px/1.2 Figtree, Inter, system-ui, sans-serif;
  color: #01382C;
  margin-bottom: 2px;
}
.ovw-profile-identity__copy span {
  font: 500 11.5px/1.3 inherit;
  color: rgba(1, 56, 44, 0.55);
}

.ovw-profile-progress { margin-bottom: 16px; }
.ovw-profile-progress__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 6px;
  font: 600 12px/1 Figtree, Inter, system-ui, sans-serif;
  color: rgba(1, 56, 44, 0.7);
}
.ovw-profile-progress__head strong { color: #047857; font-size: 14px; font-weight: 800; }
.ovw-profile-progress__track {
  height: 6px;
  background: rgba(1, 56, 44, 0.08);
  border-radius: 999px;
  overflow: hidden;
}
.ovw-profile-progress__bar {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #059669 0%, #064E3B 100%);
  border-radius: 999px;
  transition: width 0.4s ease;
}
.ovw-profile-progress__missing {
  margin: 8px 0 0;
  font: 500 11.5px/1.4 inherit;
  color: rgba(1, 56, 44, 0.55);
}
.ovw-profile-progress__missing a { color: #047857; font-weight: 600; text-decoration: none; }
.ovw-profile-progress__missing a:hover { text-decoration: underline; }

.ovw-profile-section {
  margin-bottom: 14px;
}
.ovw-profile-section__label {
  display: block;
  font: 600 11px/1 Figtree, Inter, system-ui, sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(1, 56, 44, 0.5);
  margin-bottom: 10px;
}
/* Profile checklist replaces the old "What recruiters see" chip strip
   (ticket bt1778246109362). Same widget slot, but the content is
   actionable: 3 done items + 2 remaining items with deep links. */
.ovw-profile-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ovw-profile-checklist__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(1, 56, 44, 0.025);
  border: 1px solid rgba(1, 56, 44, 0.05);
  transition: background 0.12s ease, border-color 0.12s ease;
}
.ovw-profile-checklist__item.is-done {
  background: rgba(5, 150, 105, 0.05);
  border-color: rgba(5, 150, 105, 0.16);
}
.ovw-profile-checklist__item:not(.is-done):hover {
  background: rgba(5, 150, 105, 0.04);
  border-color: rgba(5, 150, 105, 0.22);
}
.ovw-profile-checklist__icon {
  flex: 0 0 auto;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(1, 56, 44, 0.08);
  color: rgba(1, 56, 44, 0.4);
  font-weight: 800;
  font-size: 11px;
  line-height: 1;
}
.ovw-profile-checklist__item.is-done .ovw-profile-checklist__icon {
  background: #059669;
  color: #fff;
}
.ovw-profile-checklist__copy {
  font: 500 12.5px/1.3 Figtree, Inter, system-ui, sans-serif;
  color: #01382C;
}
.ovw-profile-checklist__item.is-done .ovw-profile-checklist__copy {
  color: rgba(1, 56, 44, 0.55);
  text-decoration: line-through;
  text-decoration-color: rgba(1, 56, 44, 0.18);
}
.ovw-profile-checklist__link {
  color: #047857;
  font-weight: 600;
  text-decoration: none;
}
.ovw-profile-checklist__link:hover { text-decoration: underline; }

.ovw-profile-section--metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding: 12px 14px;
  background: rgba(5, 150, 105, 0.04);
  border-radius: 10px;
}
.ovw-profile-views { display: flex; flex-direction: column; gap: 0; }
.ovw-profile-views strong {
  font: 800 24px/1 Figtree, Inter, system-ui, sans-serif;
  color: #064E3B;
}
.ovw-profile-views span {
  font: 600 11.5px/1.2 inherit;
  color: rgba(1, 56, 44, 0.7);
  margin-top: 2px;
}
.ovw-profile-views em {
  font-style: normal;
  font-size: 10.5px;
  color: rgba(1, 56, 44, 0.5);
  margin-top: 2px;
}
.ovw-profile-section__link {
  font: 700 12px/1 inherit;
  color: #047857;
  text-decoration: none;
  white-space: nowrap;
}
.ovw-profile-section__link:hover { text-decoration: underline; }


/* ─── Tracker widget ─────────────────────────────────────── */
.ovw-pipeline {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
/* Pipeline cards: count → label → delta, all center-aligned. The icon row
   from the previous iteration was making the card too tall (ticket
   bt1778249495301). Same gradient bg + radius + hover lift, just shorter. */
.ovw-pipeline__step {
  position: relative;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, rgba(5, 150, 105, 0.025) 100%);
  border: 1px solid rgba(1, 56, 44, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
  cursor: pointer;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.ovw-pipeline__step:hover {
  border-color: rgba(5, 150, 105, 0.4);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(1, 56, 44, 0.05);
}
.ovw-pipeline__count {
  display: block;
  font: 800 22px/1 Figtree, Inter, system-ui, sans-serif;
  color: #064E3B;
  letter-spacing: -0.015em;
  margin: 0;
}
.ovw-pipeline__label {
  display: block;
  font: 600 12px/1.2 Figtree, Inter, system-ui, sans-serif;
  color: rgba(1, 56, 44, 0.7);
  margin: 2px 0 0;
}
.ovw-pipeline__delta {
  display: block;
  font: 500 10.5px/1.3 Figtree, Inter, system-ui, sans-serif;
  color: rgba(1, 56, 44, 0.5);
  margin: 0;
}
.ovw-pipeline__step--highlight {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.14) 0%, rgba(5, 150, 105, 0.04) 70%, #fff 100%);
  border-color: rgba(5, 150, 105, 0.5);
  box-shadow: 0 6px 18px rgba(5, 150, 105, 0.08);
}
.ovw-pipeline__step--highlight .ovw-pipeline__count { color: #047857; }
.ovw-pipeline__step--highlight .ovw-pipeline__delta {
  color: #B45309;
  font-weight: 700;
}
@media (max-width: 720px) {
  .ovw-pipeline { grid-template-columns: repeat(2, 1fr); }
  .ovw-pipeline__step:not(:last-child)::after { display: none; }
}

.ovw-activity {
  padding-top: 16px;
  border-top: 1px dashed rgba(1, 56, 44, 0.08);
}
.ovw-activity__label {
  display: block;
  font: 600 11px/1 Figtree, Inter, system-ui, sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(1, 56, 44, 0.5);
  margin-bottom: 10px;
}
.ovw-activity__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
/* Activity items tightened ~5% (ticket bt1778247212166): smaller padding,
   trimmed dot, smaller text in main + when. */
.ovw-activity__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.12s ease;
}
.ovw-activity__item:hover { background: rgba(5, 150, 105, 0.04); }
.ovw-activity__dot {
  flex: 0 0 auto;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(1, 56, 44, 0.3);
}
.ovw-activity__item--offer .ovw-activity__dot { background: #059669; box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.16); }
.ovw-activity__item--interview .ovw-activity__dot { background: #6366F1; }
.ovw-activity__item--applied .ovw-activity__dot { background: rgba(1, 56, 44, 0.4); }
.ovw-activity__main { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
/* Activity item typography bumped to mirror the .ovw-match cards in the
   "See all 8" feed area (strong: 0.9375rem, sub: 0.75rem). Padding +
   subtle accent treatments per state finish the previously
   "unfinished"-feeling rows. (Ticket: t1778254218331) */
.ovw-activity__item {
  padding: 10px 12px;
  gap: 12px;
}
.ovw-activity__main strong {
  font: 600 0.9375rem/1.35 inherit;
  color: #01382C;
}
.ovw-activity__main span {
  font: 500 0.75rem/1.4 inherit;
  color: rgba(1, 56, 44, 0.55);
}
.ovw-activity__when {
  flex: 0 0 auto;
  font: 500 0.7rem/1 inherit;
  color: rgba(1, 56, 44, 0.45);
  white-space: nowrap;
  letter-spacing: 0.005em;
}
.ovw-activity__dot { width: 8px; height: 8px; }
.ovw-activity__item--interview {
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.06), rgba(99, 102, 241, 0));
  border: 1px solid rgba(99, 102, 241, 0.16);
}
.ovw-activity__item--offer {
  background: linear-gradient(180deg, rgba(5, 150, 105, 0.07), rgba(5, 150, 105, 0));
  border: 1px solid rgba(5, 150, 105, 0.18);
}
.ovw-activity__item--applied {
  background: rgba(1, 56, 44, 0.025);
  border: 1px solid rgba(1, 56, 44, 0.08);
}
.ovw-activity__item--interview .ovw-activity__dot {
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.18);
}

/* Profile-card CTA cluster — pairs the new "View Profile" black pill
   with the existing ghost Edit pill. (Ticket: t1778254261917) */
.ovw-profile-cta-cluster {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
  margin-left: auto;
  text-align: right;
}

/* ════════════════════════════════════════════════════════════════
   Dashboard prototype state strip + state-driven variants.
   New user (empty), Free (default), Pro. Pinned bottom-right.
   (Ticket: t1778261324266)
   ──────────────────────────────────────────────────────────────── */
.dashboard-state-strip {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 1500;
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(1, 56, 44, 0.10);
  border-radius: 99px;
  box-shadow: 0 12px 28px rgba(1, 56, 44, 0.18), 0 2px 6px rgba(1, 56, 44, 0.08);
  font-family: 'Figtree', system-ui, sans-serif;
}
.dashboard-state-strip__label {
  font: 600 0.7rem/1 inherit;
  color: rgba(1, 56, 44, 0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.dashboard-state-strip__chips { display: inline-flex; align-items: center; gap: 4px; }
.dashboard-state-strip__chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border: 1px solid transparent;
  border-radius: 99px;
  background: transparent;
  color: rgba(1, 56, 44, 0.65);
  font: 600 0.78rem/1 inherit;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.dashboard-state-strip__chip:hover { background: rgba(1, 56, 44, 0.04); color: #01382C; }
.dashboard-state-strip__chip.is-active {
  background: color-mix(in srgb, var(--chip-accent, #475569) 10%, transparent);
  border-color: var(--chip-accent, #475569);
  color: var(--chip-accent, #475569);
}
.dashboard-state-strip__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--chip-accent, #475569);
}

@media (max-width: 720px) {
  .dashboard-state-strip { bottom: auto; top: 8px; right: 8px; padding: 6px 10px; }
  .dashboard-state-strip__label { display: none; }
  .dashboard-state-strip__chip { padding: 5px 9px; font-size: 0.72rem; }
}

/* ── New-user state: empty pipeline, empty activity, dimmed match list ── */
body[data-state="new"] .ovw-pipeline,
body[data-state="new"] .ovw-activity { position: relative; }
body[data-state="new"] .ovw-pipeline::after {
  content: "Apply to your first role to fill this in.";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.86));
  border-radius: 14px;
  font: 600 0.85rem/1.4 inherit;
  color: rgba(1, 56, 44, 0.6);
  text-align: center;
  padding: 16px;
  z-index: 2;
}
body[data-state="new"] .ovw-activity__list { opacity: 0.35; pointer-events: none; }
body[data-state="new"] .ovw-activity::after {
  content: "Recent activity will show up here once you start applying.";
  display: block;
  margin-top: 8px;
  padding: 10px 12px;
  background: rgba(99, 102, 241, 0.06);
  border: 1px dashed rgba(99, 102, 241, 0.32);
  border-radius: 10px;
  font: 500 0.8rem/1.4 inherit;
  color: rgba(1, 56, 44, 0.65);
  text-align: center;
}
body[data-state="new"] .ovw-feed-divider .ovw-feed-divider__link { display: none; }
body[data-state="new"] .ovw-match-list { opacity: 0.55; }

/* ── Pro state: stronger plan chip, hide Upgrade pill, accent the
   highlighted pipeline step. ── */
body[data-state="pro"] .plan-chip {
  background: linear-gradient(135deg, #7c3aed, #4f46e5) !important;
  color: #fff !important;
  border-color: transparent !important;
}
body[data-state="pro"] .plan-chip > span:first-child {
  position: relative;
  color: transparent;
}
body[data-state="pro"] .plan-chip > span:first-child::after {
  content: "Pro";
  position: absolute; inset: 0;
  display: flex; align-items: center;
  color: #fff;
  font-weight: 700;
}
body[data-state="pro"] .dashboard-upgrade-pill { display: none !important; }
body[data-state="pro"] .ovw-pipeline__step--highlight {
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.32);
  border-color: rgba(124, 58, 237, 0.4);
}
