@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {

  --green: #0DB998;
  --green-dark: #1f6f57;
  --green-deep: #0f3a2e;
  --green-soft: #d8efe6;
  --green-mint: #e8f4ee;
  --green-lime: #C0E421;

  --green-forest: #1f6f4a;
  --green-medium: #2a8a5c;
  --green-bright: #3aa873;

  --teal: #17a98b;
  --teal-2: #1fc4a6;

  --lime: #c8e26a;

  --pink: #e0526b;
  --pink-dark: #c93a55;
  --pink-soft: #f7c9d2;
  --red: #ff3b3b;

  --text: #1f2937;
  --text-dark: #1a2a22;
  --muted: #9aa3ab;
  --ink: #0e1b16;
  --text-light: #7C7C7C;
  --text-white: #fff;
  --text-black: #000;

  --skel: #dfe5e3;
  --skel-2: #eef2f0;

  --bg-dark: #06100c;
  --bg-dark-2: #0a1612;

  --card: #ffffff;
  --card-2: #eef6f1;

  --font-main: 'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-open: 'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

html {
  font-family: var(--font-open);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

body.page-dark {

  display: flex;
  align-items: center;
  justify-content: center;

  background: #000;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .07) 1px, transparent 0);
  background-size: 14px 14px;
  color: var(--text);
}

body.page-scene {
  margin: 0;
  padding: 0;
  font-family: var(--font-open);
  background: #000;
}

.stage-full {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 60px 24px;
  background: radial-gradient(1200px 700px at 50% 50%, #0d1c17 0%, #06100c 60%, #030806 100%);
}

.ignyte1-scaler {
  width: 100%;
  max-width: 458px;
  aspect-ratio: 458 / 400;
  position: relative;
  overflow: hidden;
}

.ignyte1-scaler>.stage {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: top left;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

@keyframes fillBar {
  from {
    width: 0;
  }

  to {
    width: var(--w);
  }
}

@keyframes grow {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.012);
  }
}

@keyframes softFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes gentleFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(var(--float-y, -4px));
  }
}

.screen-ignyte-2 {
  position: relative;
  width: 458px;
  height: 400px;
  padding: 8px 14px;
  border-radius: 14px;
  background-image: url('images/bg-card.png');
  background-size: cover;
  overflow: hidden;
  font-family: var(--font-open);
  color: var(--text);
}

.screen-ignyte-2 .tag {
  display: inline-block;
  font-weight: 700;
  font-size: 5px;
  letter-spacing: .5px;
  padding: 3px 7px;
  border-radius: 3px;
  color: #1a1a1a;
}

.screen-ignyte-2 .tag::before {
  content: "• ";
}

.screen-ignyte-2 .tag.lime {
  background: var(--green-lime);
}

.screen-ignyte-2 .tag.pink {
  background: var(--pink);
  color: #fff;
}

.screen-ignyte-2 .grid {
  position: relative;
  margin-top: 5px;
  height: 364px;
}

.screen-ignyte-2 .card {
  position: absolute;
  background: linear-gradient(180deg, #ffffff, #e8f3ed);
  border: 1px solid #cfe6db;
  border-radius: 7px;
  padding: 9px 11px;
  box-shadow: 0 8px 20px -6px rgba(0, 0, 0, .22);
}

.screen-ignyte-2 .card-main {
  left: 0;
  top: 0;
  width: 264px;
  z-index: 1;
}

.screen-ignyte-2 .heading {
  color: #3a4a44;
  font-size: 6.5px;
  line-height: 1.4;
  margin-bottom: 6px;
}

.screen-ignyte-2 .inner {
  background: #fff;
  border: 1px solid #d8eadf;
  border-radius: 6px;
  padding: 7px 9px;
  margin-bottom: 5px;
}

.screen-ignyte-2 .inner.pink {
  border-color: #f1bcc6;
}

.screen-ignyte-2 .inner h4 {
  color: var(--green);
  font-size: 7px;
  font-weight: 700;
  margin-bottom: 5px;
}

.screen-ignyte-2 .inner.pink h4 {
  color: #3a4a44;
  font-weight: 600;
  font-size: 6.5px;
}

.screen-ignyte-2 .skel {
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--skel) 0%, var(--skel-2) 50%, var(--skel) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.6s linear infinite;
}

.screen-ignyte-2 .pill-row {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 5px;
}

.screen-ignyte-2 .pill {
  height: 7px;
  border-radius: 5px;
  flex: 1;
  min-width: 24px;
  background: linear-gradient(90deg, var(--skel) 0%, var(--skel-2) 50%, var(--skel) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.6s linear infinite;
}

.screen-ignyte-2 .reco li {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 4px 0;
}

.screen-ignyte-2 .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
  flex: none;
}

.screen-ignyte-2 .reco .skel {
  flex: 1;
}

.screen-ignyte-2 .spec-card {
  left: 0;
  top: 148px;
  width: 170px;
  z-index: 3;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.screen-ignyte-2 .spec-card h3 {
  color: #118461;
  font-size: 10.5px;
  font-weight: 500;
  margin-bottom: 7px;
}

.screen-ignyte-2 .spec-card .row {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 5px;
  padding: 5px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.7), 0 2px 4px rgba(0, 0, 0, 0.04);
}

.screen-ignyte-2 .spec-card .avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex: none;
  background-color: #cdd6d2;
  background-size: cover;
  background-position: center;
}

.screen-ignyte-2 .spec-card .row .body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.screen-ignyte-2 .spec-card .row .body .name {
  font-size: 9px;
  color: #797979;
  font-weight: 400;
  line-height: 1;
}

.screen-ignyte-2 .spec-card .skel {
  height: 6px;
  border-radius: 3px;
  background: #a9b5b0;
  animation: none;
}

.screen-ignyte-2 .spec-card .badge {
  font-size: 10px;
  padding: 5px 12px;
  border-radius: 3px;
  font-weight: 400;
  white-space: nowrap;
}

.screen-ignyte-2 .spec-card .badge.draft {
  background: #118461;
  color: #fff;
}

.screen-ignyte-2 .spec-card .badge.high {
  background: #118461;
  color: #fff;
}

.screen-ignyte-2 .spec-card .badge.review {
  background: #c6df2b;
  color: #333;
}

.screen-ignyte-2 .stat-card {
  right: 0;
  top: 0;
  width: 136px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.screen-ignyte-2 .stat-num {
  font-size: 18px;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
}

.screen-ignyte-2 .stat-label {
  font-size: 5px;
  color: #3a4a44;
  line-height: 1.3;
}

.screen-ignyte-2 .review-card {
  right: 0;
  top: 60px;
  width: 128px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 10px;

  border: 1px solid #bce2cf;
  border-radius: 7px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.screen-ignyte-2 .review-card h4 {
  font-size: 11px;
  color: #797979;
  font-weight: 400;
  margin-bottom: 0;
}

.screen-ignyte-2 .reviewsearch {
  display: flex;
  align-items: center;
  gap: 8px;
}

.screen-ignyte-2 .reviewsearch .icon {
  width: 28px;
  height: 28px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.screen-ignyte-2 .reviewsearch .icon svg {
  width: 100%;
  height: 100%;
}

.screen-ignyte-2 .reviewsearch .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.screen-ignyte-2 .reviewsearch .skel {
  height: 5px;
  border-radius: 3px;
  background: #cfd5d2;
  animation: none;
}

.screen-ignyte-2 .op-tag {
  position: absolute;
  right: 0;
  top: 136px;
  z-index: 2;
}

.screen-ignyte-2 .operator-card {
  right: 0;
  top: 150px;
  width: 230px;
  z-index: 3;
  padding: 14px;
  background: linear-gradient(180deg, #f1f8f5, #d2ebde);
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border-radius: 7px;
}

.screen-ignyte-2 .op-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.screen-ignyte-2 .op-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #115c46;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex: none;
}

.screen-ignyte-2 .op-icon svg {
  width: 22px;
  height: 22px;
}

.screen-ignyte-2 .op-head p {
  font-size: 11px;
  color: #333;
  line-height: 1.3;
  font-weight: 400;
}

.screen-ignyte-2 .check-row {
  background: rgba(255, 255, 255, 0.4);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  padding: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.7), 0 2px 6px rgba(0, 0, 0, 0.03);
}

.screen-ignyte-2 .check {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: #23CEA7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex: none;
  font-size: 11px;
  font-weight: bold;
}

.screen-ignyte-2 .check-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.screen-ignyte-2 .check-row .label {
  font-size: 10px;
  color: #999;
  font-weight: 400;
  line-height: 1.3;
}

.screen-ignyte-2 .skel-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 3px;
}

.screen-ignyte-2 .skel-col .skel {
  height: 5px;
  border-radius: 3px;
  background: #becbcb;
  animation: none;
}

.screen-ignyte-2 .progress-bar {
  height: 4px;
  width: 70%;
  border-radius: 2px;
  background: linear-gradient(90deg, #ed3b6b 0%, rgba(237, 59, 107, 0) 100%);
}

.screen-ignyte-3,
.screen-v2-ignyte-3 {
  position: relative;
  border-radius: 14px;
  background-image: url('images/bg-card.png');
  background-size: cover;
  margin: 0 auto;
  font-family: var(--font-open);
  color: var(--text);
}

.screen-ignyte-3 {
  width: 460px;
  height: 400px;
  padding: 0;
  overflow: hidden;
}

.screen-v2-ignyte-3 {
  width: min(1180px, 100%);
  min-height: 780px;
  padding: 60px;
}

.screen-ignyte-3 .canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 680px;
  height: 560px;
  padding: 30px 40px;
  transform: scale(0.673);
  transform-origin: 0 0;
}

.screen-ignyte-3 .card,
.screen-v2-ignyte-3 .card {
  background: rgba(255, 255, 255, 0.6);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  box-shadow: inset 0 0 16px rgba(255, 255, 255, 0.7), 0 12px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
}

.screen-ignyte-3 .candidate,
.screen-v2-ignyte-3 .candidate {
  width: 520px;
  padding: 40px 40px 32px;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, #ffffff, #d2ebde);
  border: none;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);

}

.screen-ignyte-3 .photo,
.screen-v2-ignyte-3 .photo {
  width: 220px;
  height: 220px;
  border-radius: 36px;
  margin: 0 auto 22px;
  background-image: url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?w=600&q=80');
  background-size: cover;
  background-position: center;
}

.screen-ignyte-3 .name,
.screen-v2-ignyte-3 .name {
  font-size: 22.3px;

  color: #3a4a44;
  font-weight: 500;
  margin-bottom: 6px;
}

.screen-ignyte-3 .role,
.screen-v2-ignyte-3 .role {
  font-size: 13.4px;

  color: #1f362e;
  font-weight: 700;
  margin-bottom: 18px;
}

.screen-ignyte-3 .name-skel,
.screen-v2-ignyte-3 .name-skel {
  height: 6px;
  width: 55%;
  margin: 0 auto;
  border-radius: 6px;
  background: #cfd8d3;
}

.screen-ignyte-3 .shortlist,
.screen-v2-ignyte-3 .shortlist {
  position: absolute;
  left: -40px;
  top: 120px;
  width: 320px;
  padding: 22px 22px 26px;
}

.screen-ignyte-3 .shortlist h4 {
  color: #5a6b65;
  font-weight: 500;
  font-size: 13.4px;

  margin-bottom: 18px;
}

.screen-ignyte-3 .sl-row,
.screen-v2-ignyte-3 .sl-row {
  background: rgba(255, 255, 255, 0.4);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.screen-ignyte-3 .sl-row .skel,
.screen-v2-ignyte-3 .sl-row .skel {
  flex: 1;
  height: 8px;
  background: #c5d3cd;
}

.screen-ignyte-3 .score,
.screen-v2-ignyte-3 .score {
  background: #23CEA7;
  color: #0d382e;
  font-weight: 700;
  font-size: 13.4px;
  padding: 5px 10px;
  border-radius: 6px;
  min-width: 42px;
  text-align: center;
}

.screen-ignyte-3 .sl-row.alt .score,
.screen-v2-ignyte-3 .sl-row.alt .score {
  background: #d8efe6;
  color: #1a1a1a;
}

.screen-ignyte-3 .shortlisted,
.screen-v2-ignyte-3 .shortlisted {
  position: absolute;
  right: -30px;
  top: 180px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
}

.screen-ignyte-3 .shortlisted .num,
.screen-v2-ignyte-3 .shortlisted .num {
  font-size: 35.6px;
  font-weight: 800;
  color: #118461;
  line-height: 1;
}

.screen-ignyte-3 .shortlisted .lbl,
.screen-v2-ignyte-3 .shortlisted .lbl {
  font-size: 13.4px;

  color: #fff;
  line-height: 1.2;
}

.screen-ignyte-3 .recruiter-card,
.screen-v2-ignyte-3 .recruiter-card {
  margin-top: -8px;
  width: 560px;
  margin-left: auto;
  margin-right: auto;
  padding: 24px 28px 32px;
  position: relative;
}

.screen-ignyte-3 .tag,
.screen-v2-ignyte-3 .tag {
  display: inline-block;
  background: #104233;
  color: #fff;
  font-size: 10.4px;

  font-weight: 700;
  letter-spacing: .5px;
  padding: 5px 10px;
  border-radius: 6px;
}

.screen-ignyte-3 .tag::before,
.screen-v2-ignyte-3 .tag::before {
  content: "• ";
  color: #23CEA7;
}

.screen-ignyte-3 .divider,
.screen-v2-ignyte-3 .divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  margin: 14px 0 18px;
}

.screen-ignyte-3 .rec-title,
.screen-v2-ignyte-3 .rec-title {
  font-size: 13.4px;

  color: #222;
  line-height: 1.4;
  margin-bottom: 18px;
}

.screen-ignyte-3 .input-grid,
.screen-v2-ignyte-3 .input-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.screen-ignyte-3 .ghost,
.screen-v2-ignyte-3 .ghost {
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.4);
}

.screen-ignyte-3 .ghost.full,
.screen-v2-ignyte-3 .ghost.full {
  grid-column: 1/-1;
}

.screen-ignyte-3 .message,
.screen-v2-ignyte-3 .message {
  position: absolute;
  right: -50px;
  bottom: -40px;
  width: 320px;
  padding: 22px 24px 26px;
}

.screen-ignyte-3 .message h3,
.screen-v2-ignyte-3 .message h3 {
  color: #118461;
  font-size: 16.3px;

  font-weight: 700;
  margin-bottom: 14px;
}

.screen-ignyte-3 .to,
.screen-v2-ignyte-3 .to {
  background: transparent;
  border: none;
  padding: 0;
  font-size: 11.9px;

  color: #3a4a44;
  margin-bottom: 10px;
}

.screen-ignyte-3 .subject,
.screen-v2-ignyte-3 .subject {
  background: #c5e3d2;
  border: 1px solid #c5e3d2;
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 14px;
}

.screen-ignyte-3 .subject .s-title,
.screen-v2-ignyte-3 .subject .s-title {
  font-size: 11.9px;

  color: #3a4a44;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.35;
}

.screen-ignyte-3 .subject .s-body,
.screen-v2-ignyte-3 .subject .s-body {
  font-size: 11px;
  color: #3a4a44;
  line-height: 1.5;
}

.screen-ignyte-3 .msg-skel,
.screen-v2-ignyte-3 .msg-skel {
  height: 8px;
  border-radius: 6px;
  margin-top: 8px;
  background: linear-gradient(90deg, var(--skel) 0%, var(--skel-2) 50%, var(--skel) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.6s linear infinite;
}

.screen-v2-ignyte-1 {
  position: relative;
  padding: 10px 0px 0 21px;
  border-radius: 10px;

  width: 458px;
  height: 400px;
  background-image: url('images/bg-card.png');
  background-size: cover;
}

.screen-v2-ignyte-1 .panel {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 38%, #d6ecdf 100%);
  border-radius: 6px;
  padding: 13px 20px;
  overflow: visible;
  width: 343px;
  height: 366px;
}

.screen-v2-ignyte-1 .topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.screen-v2-ignyte-1 .logo {
  font-family: var(--font-open);
  font-size: 38px;
  font-weight: 700;
  background: linear-gradient(90deg, #7fd3a8, var(--green-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 1px;
}

.screen-v2-ignyte-1 .prompt-bubble {
  --float-y: -3px;
  border: 1px solid #cfe6db;
  background: #fff;
  border-radius: 4px;
  padding: 11px 11px;
  color: var(--text-light);
  font-size: 8px;
  line-height: 1.3;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .02);
  background: linear-gradient(277deg, rgba(255, 255, 255, 0.95) 0%, rgb(163 208 198 / 18%) 54%, rgb(202 233 226 / 34%) 78%);
  opacity: 0;
  will-change: opacity, transform;
}

.screen-v2-ignyte-1.animate-loop .prompt-bubble {
  animation: softFadeIn .55s ease-out forwards, gentleFloat 3.8s ease-in-out .55s infinite;
}

.screen-v2-ignyte-1 .tag {
  display: inline-block;
  background: var(--green-lime);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 6px;
  letter-spacing: .5px;
  padding: 4px 8px;
  border-radius: 2px;
  margin: 36px 0 6px;
}

.screen-v2-ignyte-1 .tag::before {
  content: "• ";
}

.screen-v2-ignyte-1 .grid {
  position: relative;
}

.screen-v2-ignyte-1 .question-card {
  --float-y: -4px;
  background: rgba(255, 255, 255, .55);
  backdrop-filter: blur(6px);
  border: 1px solid #d5e7de;
  border-radius: 6px;
  padding: 5px;
  width: 212px;
  height: 154px;
  opacity: 0;
  will-change: opacity, transform;
}

.screen-v2-ignyte-1.animate-loop .question-card {
  animation: softFadeIn .55s ease-out .45s forwards, gentleFloat 4.2s ease-in-out 1s infinite;
}

.screen-v2-ignyte-1 .q-title {
  color: var(--text-light);
  font-size: 8px;
  margin-bottom: 5px;
}

.screen-v2-ignyte-1 .opt {
  background: #fff;
  border: 1px solid #e3ece8;
  border-radius: 5px;
  padding: 5px;
  margin-bottom: 5px;
  font-size: 8px;
  color: #3a4a44;
  min-height: 23px;
}

.screen-v2-ignyte-1 .opt.selected {
  border: 1.5px solid var(--green);
  color: var(--green);
  font-weight: 700;
}

.screen-v2-ignyte-1 .opt.skeleton {
  display: flex;
  align-items: center;
  gap: 8px;
}

.screen-v2-ignyte-1 .skel-line {
  height: 4px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--skel) 0%, var(--skel-2) 50%, var(--skel) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.6s linear infinite;
}

.screen-v2-ignyte-1 .skel-line-big {
  height: 4px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--skel) 0%, var(--skel-2) 50%, var(--skel) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.6s linear infinite;
}

.screen-v2-ignyte-1 .jd-card {
  --float-y: -5px;
  position: absolute;
  right: -96px;
  top: -60px;
  width: 167px;
  background: linear-gradient(180deg, #ffffff, #d8fff6);
  border: 1px solid #cfe6db;
  border-radius: 8px;
  padding: 14px;
  box-shadow: 0 18px 40px -20px rgba(0, 0, 0, .18);
  opacity: 0;
  will-change: opacity, transform;
}

.screen-v2-ignyte-1.animate-loop .jd-card {
  animation: softFadeIn .55s ease-out .9s forwards, gentleFloat 4.6s ease-in-out 1.45s infinite;
}

.screen-v2-ignyte-1 .jd-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
}

.screen-v2-ignyte-1 .jd-logo-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
}

.screen-v2-ignyte-1 .jd-brand {
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text);
}

.screen-v2-ignyte-1 .jd-title {
  font-size: 12px;
  font-weight: 700;
  background: linear-gradient(90deg, #3fb98e, #1c6e57);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 2px 0 3px;
}

.screen-v2-ignyte-1 .divider {
  height: 1px;
  background: #cfe0d6;
  margin: 5px 0;
}

.screen-v2-ignyte-1 .jd-section {
  margin-bottom: 5px;
}

.screen-v2-ignyte-1 .jd-section h4 {
  color: var(--text-light);
  font-weight: 400;
  font-size: 10px;
  margin-bottom: 5px;
  margin-top: 0;
}

.screen-v2-ignyte-1 .edit-btn {
  margin-top: 10px;
  background: var(--green);
  color: var(--text-black);
  border: none;
  padding: 6px 13px;
  border-radius: 5px;
  font-weight: 400;
  cursor: pointer;
  font-size: 8px;
}

.screen-v2-ignyte-1 .ask {
  margin-top: 13px;
  background: rgba(255, 255, 255, .7);
  border-radius: 6px;
  padding: 2px 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #d6e7df;
  z-index: 999999;
  width: 100%;
  position: relative;

}

.screen-v2-ignyte-1 .attach {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #7d8884;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.screen-v2-ignyte-1 .ask input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 8px;
  color: #3a4a44;
}

.screen-v2-ignyte-1 .ask .mic {
  color: #3a4a44;
  cursor: pointer;
}

.screen-v2-ignyte-1 .send {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #1FBC98;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.screen-v2-ignyte-1 .actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.screen-v2-ignyte-1 .chip {
  background: linear-gradient(90deg, #1FBC98 0%, #169376 100%);
  color: #fff;
  border: none;
  padding: 3px 5px;
  border-radius: 999px;
  font-size: 5px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  box-shadow: 0 4px 12px -6px rgba(39, 195, 154, .6);
}

.send svg {
  right: 0;
  margin-right: -3px;
}

.screen-v2-ignyte-1 .chip svg {
  width: 8px;
  height: 8px;
}

.screen-v2-ignyte {
  position: relative;
  width: 458px;
  height: 400px;
  border-radius: 6px;
  background-image: url('images/bg-card.png');
  background-size: cover;
  overflow: hidden;
  font-family: var(--font-open);
  color: #fff;
}

.screen-v2-ignyte .canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 1180px;
  height: 980px;
  transform: scale(0.388);
  transform-origin: 0 0;
}

.screen-v2-ignyte .card {
  position: absolute;
  background: linear-gradient(180deg, #ffffff 0%, #eaf3ec 100%);
  border-radius: 14px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .9), inset 0 -1px 0 rgba(0, 0, 0, .04);
  color: var(--ink);
}

.screen-v2-ignyte .main {
  left: 34px;
  top: 34px;
  width: 67%;
  height: calc(100% - 68px);
  padding: 100px 38px 34px;
}

.screen-v2-ignyte .brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.screen-v2-ignyte .logo {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(159.59deg, #23CEA7 42.42%, #C0E421 89.93%);
  display: grid;
}

.screen-v2-ignyte .logo svg {
  width: 22px;
  height: 22px;
}

.screen-v2-ignyte .brand h1 {
  font-size: 22px;
  font-weight: 100;
  letter-spacing: 0;
  margin: 0;
  color: #111;
  font-style: italic;
}

.screen-v2-ignyte .panel {
  width: 78%;
  background: linear-gradient(180deg, #fbfdfb, #e7f1ea);
  border-radius: 14px;
  padding: 40px 40px 40px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), inset 0 0 0 1px rgba(255, 255, 255, .6), 0 18px 40px -18px rgba(20, 60, 40, .35);
}

.screen-v2-ignyte .panel h2 {
  font-size: 30px;
  font-weight: 400;
  color: #139A7B;
  margin: 0 0 28px;
}

.screen-v2-ignyte .row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 0;
}

.screen-v2-ignyte .row+.row {
  border-top: 1px solid rgba(0, 0, 0, .08);
}

.screen-v2-ignyte .avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .18), inset 0 0 0 2px #fff;
  flex-shrink: 0;
}

.screen-v2-ignyte .lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.screen-v2-ignyte .sk {
  height: 14px;
  border-radius: 8px;
  background: linear-gradient(90deg, #e3e7e4 0%, #f4f7f5 50%, #e3e7e4 100%);
  background-size: 200% 100%;
  animation: shimmer 2.2s ease-in-out infinite;
}

.screen-v2-ignyte .sk.w90 {
  width: 92%;
}

.screen-v2-ignyte .sk.w80 {
  width: 80%;
}

.screen-v2-ignyte .sk.w70 {
  width: 70%;
}

.screen-v2-ignyte .rate {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-width: 120px;
}

.screen-v2-ignyte .stars {
  display: flex;
  gap: 4px;
}

.screen-v2-ignyte .star {
  width: 18px;
  height: 18px;
  display: inline-block;
}

.screen-v2-ignyte .rate small {
  font-size: 13px;
  color: #1b1b1b;
  font-weight: 600;
}

.screen-v2-ignyte .notes {
  right: 38px;
  top: 160px;
  width: 40%;
  padding: 26px 28px 28px;
}

.screen-v2-ignyte .notes h3 {
  color: #2f8f6a;
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 18px;
}

.screen-v2-ignyte .note {
  background: linear-gradient(180deg, #fbfdfb, #eaf2ec);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .7), 0 6px 14px -8px rgba(0, 0, 0, .18);
  margin-bottom: 12px;
  position: relative;
}

.screen-v2-ignyte .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #bcbfbc;
  flex-shrink: 0;
}

.screen-v2-ignyte .nlines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.screen-v2-ignyte .nlines .sk {
  height: 10px;
  border-radius: 6px;
}

.screen-v2-ignyte .copy {
  background: #1a1a1a;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 14px;
}

.screen-v2-ignyte .process {
  left: 24%;
  bottom: 0;
  width: 70%;
  padding: 22px 26px 24px;
}

.screen-v2-ignyte .process h3 {
  color: #2f8f6a;
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 16px;
}

.screen-v2-ignyte .topRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.screen-v2-ignyte .topRow .sk {
  width: 90px;
  height: 10px;
}

.screen-v2-ignyte .track {
  position: relative;
  height: 70px;
  border-radius: 8px;
  background: linear-gradient(90deg, #f1f5f2, #e3ece5);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .7);
  overflow: hidden;
}

.screen-v2-ignyte .fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(168, 230, 196, .2), #2f8f6a 70%, #256b50);
  border-radius: 0;
  --w: 72%;
  width: 0;
  animation: fillBar 2.6s ease-out forwards;
}

.screen-v2-ignyte .nodes {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -18px;
  padding: 0 6px;
}

.screen-v2-ignyte .node {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #2f8f6a;
  box-shadow: 0 0 0 4px #ffffff, 0 4px 10px rgba(0, 0, 0, .18);
}

.screen-v2-ignyte .node.last {
  width: 34px;
  height: 34px;
  background: radial-gradient(circle at 30% 30%, #74f58b 0%, #2bb568 50%, #0b7b4f 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .25);
}

.screen-v2-ignyte .node.last svg {
  width: 16px;
  height: 16px;
}

.screen-researcher {
  position: relative;
  width: 458px;
  height: 400px;
  border-radius: 16px;
  background-image: url('images/bg-card.png');
  background-size: cover;
  overflow: hidden;
  isolation: isolate;
  margin: 0 auto;
  font-family: var(--font-open);
}

.screen-researcher .canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 1180px;
  height: 720px;
  transform: scale(0.388);
  transform-origin: 0 0;
}

.screen-researcher .glass {
  background: linear-gradient(160deg, rgba(255, 255, 255, .97) 0%, rgba(218, 232, 222, .93) 100%);
  border: 1px solid rgba(255, 255, 255, .70);
  border-radius: 16px;
  box-shadow: 0 32px 72px -18px rgba(0, 0, 0, .62), 0 8px 24px rgba(0, 0, 0, .20), inset 0 1px 0 rgba(255, 255, 255, .90);
}

.screen-researcher .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: #fff;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .32);
}

.screen-researcher .tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .85);
}

.screen-researcher .tag.green {
  background: linear-gradient(180deg, #2f8a5d, #1a6040);
}

.screen-researcher .tag.pink {
  background: linear-gradient(180deg, var(--pink), var(--pink-dark));
}

.screen-researcher .sk {
  border-radius: 6px;
  background: linear-gradient(90deg, #cfd6d2 0%, #e2e7e3 50%, #cfd6d2 100%);
  background-size: 200% 100%;
  animation: shimmer 1.6s linear infinite;
}

.screen-researcher .tag-researcher {
  position: absolute;
  top: 70px;
  left: 60px;
  z-index: 10;
}

.screen-researcher .researcher {
  position: absolute;
  top: 55px;
  left: 20px;
  width: 640px;
  padding: 28px 32px 32px;
  z-index: 2;
}

.screen-researcher .researcher h2 {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 500;
  color: #6a7a72;
  line-height: 1.35;
}

.screen-researcher .input-box {
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(0, 0, 0, .05);
  border-radius: 10px;
  padding: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
  max-width: 85%;
  min-height: 101px;
}

.screen-researcher .input-box .sk {
  height: 10px;
  width: 88%;
}

.screen-researcher .input-box .sk+.sk {
  margin-top: 10px;
  width: 62%;
}

.screen-researcher .section-title {
  margin: 24px 0 14px;
  color: var(--green-medium);
  font-size: 17px;
  font-weight: 700;
}

.screen-researcher .row {
  display: grid;
  grid-template-columns: 74px 1fr 1fr;
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, .50);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
  min-height: 150px;
  max-width: 85%;

}

.screen-researcher .row:last-child {
  margin-bottom: 0;
}

.screen-researcher .avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #cfd6d2 center/cover no-repeat;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .18);
}

.screen-researcher .cell {
  background: rgba(255, 255, 255, .90);
  border: 1px solid rgba(0, 0, 0, .04);
  border-radius: 10px;
  padding: 11px 13px;
  display: flex;
  gap: 10px;
  min-height: 62px;
  position: relative;
}

.screen-researcher .check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-bright);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .18);
}

.screen-researcher .check svg {
  width: 14px;
  height: 14px;
}

.screen-researcher .flag {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-medium);
  flex: 0 0 22px;
}

.screen-researcher .sk-stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.screen-researcher .sk-stack .sk {
  height: 8px;
}

.screen-researcher .sk-stack .sk:nth-child(1) {
  width: 88%;
}

.screen-researcher .sk-stack .sk:nth-child(2) {
  width: 55%;
}

.screen-researcher .badge {
  position: static;
  right: 10px;
  top: 32%;
  transform: none;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 6px;
  color: #fff;
  background: var(--green-bright);
  letter-spacing: .03em;
  white-space: nowrap;
}

.screen-researcher .badge.pink {
  background: var(--pink);
}

.screen-researcher .scores {
  position: absolute;
  top: 18px;
  left: 492px;
  width: 516px;
  padding: 22px 24px 20px;
  z-index: 5;
}

.screen-researcher .scores h3 {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 600;
  color: #253028;
}

.screen-researcher .score-row {
  display: grid;
  grid-template-columns: 68px 1fr 28px;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.screen-researcher .score-row:last-child {
  margin-bottom: 0;
}

.screen-researcher .s-avatar {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  background: #cfd6d2 center/cover no-repeat;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .18);
}

.screen-researcher .score-mid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.screen-researcher .pills {
  display: flex;
  gap: 6px;
}

.screen-researcher .pill {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 5px;
  color: #fff;
  letter-spacing: .03em;
}

.screen-researcher .pill.high {
  background: var(--green-bright);
}

.screen-researcher .pill.mid {
  background: #a9c84a;
  color: #3a4a14;
}

.screen-researcher .pill.review {
  background: var(--pink);
}

.screen-researcher .bar {
  height: 52px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(0, 0, 0, .05);
  position: relative;
  overflow: hidden;
}

.screen-researcher .bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(90deg, var(--teal), var(--teal-2));
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #fff;
  font-weight: 500;
  font-size: 32px;
  padding-right: 14px;
  border-radius: 8px 0 0 8px;
  width: 0;
  animation: fillBar 1.4s cubic-bezier(.4, 0, .2, 1) forwards;
}

.screen-researcher .fi {
  color: var(--green-medium);
  display: flex;
  align-items: center;
  justify-content: center;
}

.screen-researcher .operator {
  position: absolute;
  top: 584px;
  left: 691px;
  width: 474px;
  height: 116px;
  padding: 22px 22px 22px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 4;
}

.screen-researcher .op-tag {
    position: absolute;
    top: -47px;
    left: 4px;
    z-index: 6;
}

.screen-researcher .op-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(160deg, #226644, #0f4228);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 62px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .38);
}

.screen-researcher .operator p {
  margin: 0;
  color: #4a5a50;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 500;
}

.screen-researcher .reasoning {
  position: absolute;
  top: 760px;
  left: 665px;
  width: 474px;
  height: 168px;
  padding: 20px 24px;
  z-index: 4;
}

.screen-researcher .reasoning h3 {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 600;
  color: #253028;
}

.screen-researcher .reasoning .bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.screen-researcher .reasoning .dot {
  margin-top: 4px;
}

.screen-researcher .reasoning .sk-stack {
  flex: 1;
  min-width: 0;
}

.screen-researcher .reasoning .sk-stack .sk {
  flex: none;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #dfe5e3 0%, #eef2f0 50%, #dfe5e3 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
}

.screen-researcher .reasoning .sk-stack .sk:nth-child(2) {
  width: 70%;
}

.screen-researcher .bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.screen-researcher .bullet:last-child {
  margin-bottom: 0;
}

.screen-researcher .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-bright);
  flex: 0 0 10px;
  box-shadow: 0 0 0 3px rgba(58, 168, 115, .20);
}

.screen-researcher .bullet .sk {
  flex: 1;
  height: 8px;
}

.screen-v2-researcher {
  position: relative;
  width: min(1180px, 100%);
  aspect-ratio: 1180/980;
  border-radius: 14px;
  padding: 46px;
  background-image: url('images/bg-card.png');
  background-size: cover;
  overflow: visible;
  isolation: isolate;
  font-family: var(--font-open);
}

.screen-v2-researcher .grid {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
}

.screen-v2-researcher .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: #fff;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .35);
}

.screen-v2-researcher .tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

.screen-v2-researcher .tag.green {
  background: linear-gradient(180deg, #2f8a5d, var(--green-forest));
}

.screen-v2-researcher .tag.pink {
  background: linear-gradient(180deg, var(--pink), var(--pink-dark));
}

.screen-v2-researcher .tag-researcher {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  align-self: start;
  margin: 6px 0 0 6px;
  z-index: 5;
  position: relative;
}

.screen-v2-researcher .tag-operator {
  position: absolute;
  right: 38%;
  top: 54%;
  z-index: 5;
}

.screen-v2-researcher .glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(220, 232, 224, .86));
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 14px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .55), inset 0 1px 0 rgba(255, 255, 255, .8);
  backdrop-filter: blur(8px);
}

.screen-v2-researcher .researcher {
  grid-column: 1;
  grid-row: 1 / span 3;
  margin-top: 38px;
  padding: 30px 32px 36px;
  position: relative;
}

.screen-v2-researcher .researcher h2 {
  margin: 6px 0 18px;
  font-size: 22px;
  font-weight: 600;
  color: #2a3a32;
  line-height: 1.3;
}

.screen-v2-researcher .input-box {
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(0, 0, 0, .05);
  border-radius: 10px;
  padding: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 1px 0 rgba(0, 0, 0, .03);
}

.screen-v2-researcher .skeleton-line {
  height: 10px;
  border-radius: 6px;
  background: linear-gradient(90deg, #cfd6d2 0%, #e2e7e3 50%, #cfd6d2 100%);
  background-size: 200% 100%;
  animation: shimmer 1.6s linear infinite;
}

.screen-v2-researcher .input-box .skeleton-line+.skeleton-line {
  margin-top: 10px;
  width: 60%;
}

.screen-v2-researcher .input-box .skeleton-line:first-child {
  width: 92%;
}

.screen-v2-researcher .section-title {
  margin: 26px 0 14px;
  color: var(--green-medium);
  font-size: 18px;
  font-weight: 700;
}

.screen-v2-researcher .row {
  display: grid;
  grid-template-columns: 84px 1fr 1fr;
  gap: 14px;
  align-items: center;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .05);
}

.screen-v2-researcher .avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #cfd6d2 center/cover no-repeat;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
}

.screen-v2-researcher .cell {
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(0, 0, 0, .04);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  position: relative;
}

.screen-v2-researcher .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-bright);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex: 0 0 22px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .15);
}

.screen-v2-researcher .flag {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-bright);
  flex: 0 0 22px;
}

.screen-v2-researcher .cell .skeleton-stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.screen-v2-researcher .cell .skeleton-stack .skeleton-line {
  height: 8px;
}

.screen-v2-researcher .cell .skeleton-stack .skeleton-line:nth-child(1) {
  width: 90%;
}

.screen-v2-researcher .cell .skeleton-stack .skeleton-line:nth-child(2) {
  width: 55%;
}

.screen-v2-researcher .badge {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  color: #fff;
  background: var(--green-bright);
  letter-spacing: .02em;
}

.screen-v2-researcher .badge.pink {
  background: var(--pink);
}

.screen-v2-researcher .scores {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  padding: 22px 22px 18px;
  z-index: 4;
}

.screen-v2-researcher .scores h3 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 600;
  color: #2a3a32;
}

.screen-v2-researcher .score-row {
  display: grid;
  grid-template-columns: 70px 1fr 22px;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.screen-v2-researcher .score-row:last-child {
  margin-bottom: 0;
}

.screen-v2-researcher .score-avatar {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  background: #cfd6d2 center/cover no-repeat;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
}

.screen-v2-researcher .score-mid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.screen-v2-researcher .pills {
  display: flex;
  gap: 6px;
}

.screen-v2-researcher .pill {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  color: #fff;
  letter-spacing: .02em;
}

.screen-v2-researcher .pill.high {
  background: var(--green-bright);
}

.screen-v2-researcher .pill.mid {
  background: #a9c84a;
  color: #3a4a14;
}

.screen-v2-researcher .pill.review {
  background: var(--pink);
}

.screen-v2-researcher .bar {
  position: relative;
  height: 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .85);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .04);
}

.screen-v2-researcher .bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(90deg, var(--green-bright), #5fc395);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding-right: 12px;
  border-radius: 8px 0 0 8px;
  animation: fillBar 1.6s ease-out forwards;
  width: 0;
}

.screen-v2-researcher .filter-icon {
  color: var(--green-medium);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.screen-v2-researcher .operator {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 60px;
  position: relative;
}

.screen-v2-researcher .op-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--green-forest), #0f4a30);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .3);
}

.screen-v2-researcher .operator p {
  margin: 0;
  color: #3a4a42;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
}

.screen-v2-researcher .reasoning {
  grid-column: 2;
  grid-row: 3;
  padding: 22px;
}

.screen-v2-researcher .reasoning h3 {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 600;
  color: #2a3a32;
}

.screen-v2-researcher .bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.screen-v2-researcher .bullet:last-child {
  margin-bottom: 0;
}

.screen-v2-researcher .bullet .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-bright);
  flex: 0 0 10px;
  box-shadow: 0 0 0 3px rgba(58, 168, 115, .18);
}

.screen-v2-researcher .bullet .skeleton-line {
  flex: 1;
  height: 8px;
}

.screen-v2-ignyte-6 {
  position: relative;
  width: 458px;
  height: 400px;
  border-radius: 14px;
  background-image: url('images/bg-card.png');
  background-size: cover;
  overflow: hidden;
  font-family: var(--font-open);
  color: var(--ink);
}

.screen-v2-ignyte-6 .canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 1180px;
  height: 1030px;
  transform: scale(0.388);
  transform-origin: 0 0;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.screen-v2-ignyte-6 .tag-asst {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--teal);
  color: #fff;
  box-shadow: 0 4px 16px rgba(23, 169, 139, .4);
  width: fit-content;
  margin-bottom: 20px;
  flex: none;
}

.screen-v2-ignyte-6 .tag-asst::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  flex: none;
}

.screen-v2-ignyte-6 .main-grid {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 700px 1fr;
  gap: 30px;
}

.screen-v2-ignyte-6 .col-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}

.screen-v2-ignyte-6 .col-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  height: 100%;
}

.screen-v2-ignyte-6 .card {
  background: linear-gradient(175deg, #ffffff 0%, #e6f2ec 100%);
  border: 1px solid rgba(176, 214, 192, .52);
  border-radius: 16px;
  box-shadow: 0 24px 56px -18px rgba(0, 0, 0, .44),
    inset 0 1px 0 rgba(255, 255, 255, .9),
    inset 0 -1px 0 rgba(0, 0, 0, .03);
}

.screen-v2-ignyte-6 .sk {
  border-radius: 6px;
  background: linear-gradient(90deg, #dce3df 0%, #edf1ed 50%, #dce3df 100%);
  background-size: 200% 100%;
  animation: shimmer 2s linear infinite;
}

.screen-v2-ignyte-6 .card-intro {
  flex: none;
  padding: 22px 30px 24px;
}

.screen-v2-ignyte-6 .intro-text {
  font-size: 22px;
  font-weight: 400;
  color: #5a6c62;
  line-height: 1.35;
  margin-bottom: 18px;
}

.screen-v2-ignyte-6 .sk-bar {
  height: 12px;
  width: 82%;
}

.screen-v2-ignyte-6 .card-search {
  flex: 1;
  min-height: 0;
  padding: 24px 30px 26px;
}

.screen-v2-ignyte-6 .sec-h {
  font-size: 26px;
  font-weight: 700;
  color: #2a3a32;
  margin: 0 0 16px;
}

.screen-v2-ignyte-6 .sec-h .t {
  color: var(--teal);
}

.screen-v2-ignyte-6 .req-grid {
  display: flex;
  flex-direction: column;
}

.screen-v2-ignyte-6 .req-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  padding: 9px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .07);
  font-size: 15px;
  line-height: 1.45;
}

.screen-v2-ignyte-6 .req-row:last-child {
  border-bottom: none;
}

.screen-v2-ignyte-6 .r-lbl {
  color: #8a9890;
}

.screen-v2-ignyte-6 .r-val {
  color: #3a4840;
}

.screen-v2-ignyte-6 .r-val.hl {
  color: var(--teal);
  font-weight: 600;
}

.screen-v2-ignyte-6 .div {
  height: 1px;
  background: #cedad4;
  margin: 20px 0;
}

.screen-v2-ignyte-6 .strat-p {
  font-size: 14px;
  color: #4a5a52;
  margin-bottom: 9px;
  line-height: 1.5;
}

.screen-v2-ignyte-6 .bars {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  width: 70%;
}

.screen-v2-ignyte-6 .bar-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.screen-v2-ignyte-6 .bar-lbl {
  font-size: 14px;
  color: #4a5a52;
  width: 80px;
  flex: none;
}

.screen-v2-ignyte-6 .bar-track {
  flex: 1;
  height: 12px;
  border-radius: 7px;
  background: #e4eae6;
  overflow: hidden;
  position: relative;
}

.screen-v2-ignyte-6 .bf {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 7px;
}

.screen-v2-ignyte-6 .bf.s {
  background: linear-gradient(90deg, #17a98b 0%, #17a98b 52%, #2a3830 52%, #2a3830 76%);
  width: 76%;
}

.screen-v2-ignyte-6 .bf.m {
  background: linear-gradient(90deg, #17a98b 0%, #17a98b 44%, #2a3830 44%, #2a3830 66%);
  width: 66%;
}

.screen-v2-ignyte-6 .bf.i {
  background: linear-gradient(90deg, #17a98b 0%, #17a98b 24%, #2a3830 24%, #2a3830 46%);
  width: 46%;
}

.screen-v2-ignyte-6 .card-report {
  flex: none;
  padding: 24px 28px 26px;
}

.screen-v2-ignyte-6 .report-lbl {
  font-size: 24px;
  font-weight: 400;
  color: #5a6c62;
  margin-bottom: 20px;
}

.screen-v2-ignyte-6 .circles-wrap {
  width: 100%;
  line-height: 0;
}

.screen-v2-ignyte-6 .final-lbl {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--teal);
  text-transform: uppercase;
  flex: none;
}

.screen-v2-ignyte-6 .card-stats {
  flex: none;
  padding: 20px 22px 22px;
}

.screen-v2-ignyte-6 .st-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.55fr;
  gap: 0;
}

.screen-v2-ignyte-6 .st {
  padding: 0 14px;
  text-align: center;
}

.screen-v2-ignyte-6 .st:first-child {
  padding-left: 2px;
}

.screen-v2-ignyte-6 .st-k {
  font-size: 11px;
  font-weight: 700;
  color: #9aaa9e;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.screen-v2-ignyte-6 .st-n {
  font-size: 36px;
  font-weight: 800;
  color: #1a2822;
  line-height: 1;
}

.screen-v2-ignyte-6 .st-nm {
  font-size: 17px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1.35;
}

.screen-v2-ignyte-6 .st-foot {
  margin-top: 15px;
  padding-top: 14px;
  border-top: 1px solid #0E6652;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.screen-v2-ignyte-6 .ready-t {
  font-size: 12px;
  color: #9aaa9e;
}

.screen-v2-ignyte-6 .view-t {
  font-size: 12px;
  color: var(--teal);
  font-weight: 600;
}

.screen-v2-ignyte-6 .card-cands {
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 22px 22px 20px;
}

.screen-v2-ignyte-6 .card-cands h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2a3a32;
  margin: 0 0 18px;
  flex: none;
}

.screen-v2-ignyte-6 .cands-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.screen-v2-ignyte-6 .c-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, .68);
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 12px;
  padding: 0 18px;
  box-shadow: 0 4px 14px -6px rgba(0, 0, 0, .1);
}

.screen-v2-ignyte-6 .c-av {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex: none;
  background: radial-gradient(circle at 38% 32%, #a6d8bc, #3a9a6a);
  box-shadow: 0 3px 8px rgba(0, 0, 0, .1);
}

.screen-v2-ignyte-6 .c-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.screen-v2-ignyte-6 .sk-90 {
  height: 11px;
  width: 91%;
}

.screen-v2-ignyte-6 .sk-65 {
  height: 11px;
  width: 65%;
}

.screen-ignyte-3 .candidate,
.screen-v2-ignyte-3 .candidate {
  width: 458px;
  height: 497px;
  padding: 40px 40px 32px;
  text-align: center;
  position: relative;
}

.screen-ignyte-3 .shortlist,
.screen-v2-ignyte-3 .shortlist {
  position: absolute;
  left: -40px;
  top: 120px;
  width: 181px;
  height: 190px;
  padding: 22px 22px 26px;
}

.screen-ignyte-3 .recruiter-card,
.screen-v2-ignyte-3 .recruiter-card {
  margin-top: -129px;
  width: 330px;
  height: 174px;
  margin-left: auto;
  margin-right: auto;
  padding: 24px 28px 32px;
  position: absolute;
  left: 100px;
}

.screen-ignyte-3 .message,
.screen-v2-ignyte-3 .message {
  position: absolute;
  right: -50px;
  bottom: -40px;
  width: 251px;
  height: 210px;
  padding: 22px 24px 26px;
}

.screen-researcher .researcher {
  position: absolute;
  top: 125px;
  left: 60px;
  width: 714px;
  height: 856px;
  padding: 28px 32px 32px;
  z-index: 2;
}

.screen-researcher .scores {
  position: absolute;
  top: 48px;
  left: 691px;
  width: 433px;
  height: 425px;
  padding: 22px 24px 20px;
  z-index: 5;
}

.screen-researcher .operator {
  position: absolute;
  top: 584px;
  left: 691px;
  width: 474px;
  height: 116px;
  padding: 22px 22px 22px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 4;
}

.screen-researcher .reasoning {
  position: absolute;
  top: 760px;
  left: 665px;
  width: 474px;
  height: 168px;
  padding: 20px 24px;
  z-index: 4;
}
