@charset "UTF-8";
:root {
  --brand-primary: #ff66c4;
  --brand-primary-dark: #ee4c77;
  --brand-accent: #FE3C72;
  --surface-page: #ffffff;
  --surface-card: #fdf2f8;
  --text-primary: #1e293b;
  --text-muted: #475569;
  --border-subtle: #f3d1e8;
  --focus-ring: rgba(254, 60, 211, 0.22);
  --ats-primary: #ff66c4;
  --ats-accent: #FE3C72;
  --ats-primary-strong: #ee4c77;
  --ats-primary-soft: rgba(254, 60, 211, 0.08);
  --ats-panel: #ffffff;
  --ats-panel-soft: #f8fafc;
  --ats-border: #e2e8f0;
  --ats-border-strong: #cbd5e1;
  --ats-text: #0f172a;
  --ats-muted: #64748b;
  --ats-muted-soft: #94a3b8;
  --ats-success: #22c55e;
  --ats-warning: #f59e0b;
  --ats-danger: #ef4444;
  --ats-danger-soft: rgba(239, 68, 68, 0.1);
  --ats-focus: #ff66c4;
  --ats-focus-ring: rgba(254, 60, 211, 0.22);
  --ats-shadow-soft: rgba(15, 23, 42, 0.08);
  --ats-shadow-strong: rgba(15, 23, 42, 0.14);
  --ats-gradient: linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%);
  --ats-gradient-hover: linear-gradient(135deg, #FF6BE8 0%, #ff66c4 100%);
  --ats-code-bg: #0f172a;
  --ats-code-border: #334155;
  --ats-code-text: #f8fafc;
  color-scheme: light;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Nunito", sans-serif;
}

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

img,
picture,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

button,
[type=button],
[type=submit],
[type=reset] {
  cursor: pointer;
}

a {
  color: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

::selection {
  background: rgba(255, 102, 196, 0.18);
  color: #1e293b;
}

body {
  font-family: "Nunito", sans-serif;
  color: #1e293b;
  background: #ffffff;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito", sans-serif;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  padding: 2rem 2rem;
  gap: 3rem;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #170017 0%, #2D0A2D 50%, #3D1A3D 100%);
}
@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    padding: 4rem 8rem;
    min-height: 85vh;
    align-items: center;
  }
}
.hero .hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}
.hero .hero-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 102, 196, 0.1);
  color: #FF6BE8;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(255, 102, 196, 0.2);
  backdrop-filter: blur(5px);
}
.hero .hero-content .hero-badge .badge-icon {
  width: 16px;
  height: 16px;
  animation: pulse-glow 2s infinite;
}
.hero .hero-content h1 {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .hero .hero-content h1 {
    font-size: 4rem;
  }
}
.hero .hero-content h1 span {
  background: linear-gradient(to right, #FE3C72, #FE3CD3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  /* &::after {
      content: '';
      position: absolute;
      bottom: 5px;
      left: 0;
      width: 100%;
      height: 10px;
      background-color: rgba($color-primary, 0.3);
      z-index: -1;
      border-radius: 4px;
  } */
}
.hero .hero-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
  font-weight: 300;
}
.hero .hero-content .hero-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.hero .hero-content .hero-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}
.hero .hero-content .hero-features li .icon {
  width: 20px;
  height: 20px;
  color: #22c55e;
  flex-shrink: 0;
}
.hero .hero-content .cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero .hero-content .cta-group .btn {
  padding: 8px 16px;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600 !important;
  transition: background-color 0.3s ease;
  cursor: pointer;
  font-size: 14px;
  border: none;
  font-family: inherit;
  display: inline-block;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 50px;
}
.hero .hero-content .cta-group .btn.btn-primary {
  background: linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%);
  color: #fff;
  box-shadow: 0 10px 25px rgba(255, 102, 196, 0.4);
}
.hero .hero-content .cta-group .btn.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 35px rgba(255, 102, 196, 0.5);
}
.hero .hero-content .cta-group .btn.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero .hero-content .cta-group .btn.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}
.hero .hero-three-canvas {
  position: absolute;
  inset: 0;
  left: clamp(42%, 450px, 54%);
  z-index: 1;
  pointer-events: none;
  opacity: 0.62;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.9) 20%, #000 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.9) 20%, #000 100%);
}
@media (max-width: 768px) {
  .hero .hero-three-canvas {
    left: 0;
    top: 48%;
    opacity: 0.42;
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.88) 18%, #000 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.88) 18%, #000 100%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero .hero-three-canvas {
    display: none;
  }
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 48px;
  height: 64px;
  /*  background-color: rgba(250, 250, 250, 0.95); // Off-white
   box-shadow: 0 2px 4px $shadow-color;   */
  background-color: white;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid rgb(226, 232, 240);
}
.site-header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media (min-width: 768px) {
  .site-header .header-content {
    width: auto;
  }
}
.site-header .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: #1e293b;
  text-decoration: none;
  padding: 0;
  margin: 0;
  line-height: 0;
}
.site-header .logo img {
  display: block;
  width: auto;
  height: 30px;
  object-fit: contain;
}
.site-header #menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.site-header #menu-toggle .icon-menu {
  display: block;
}
.site-header #menu-toggle .icon-close {
  display: none;
}
@media (min-width: 768px) {
  .site-header #menu-toggle {
    display: none;
  }
}
.site-header.menu-open #menu-toggle .icon-menu {
  display: none;
}
.site-header.menu-open #menu-toggle .icon-close {
  display: block;
}
.site-header nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
  z-index: -1;
}
.site-header nav.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.site-header nav ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.site-header nav ul li a {
  text-decoration: none;
  color: #888;
  font-weight: 500;
  font-size: 13px;
  transition: color 0.3s ease;
}
.site-header nav ul li a:hover {
  color: #000;
}
@media (min-width: 768px) {
  .site-header nav {
    position: static;
    width: auto;
    padding: 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: all;
    background-color: transparent;
  }
  .site-header nav ul {
    flex-direction: row;
    gap: 1.5rem;
  }
  .site-header nav ul li a {
    font-size: 13px;
  }
}
.site-header .actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.site-header .actions.mobile-only {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 2rem;
  width: 100%;
}
@media (min-width: 768px) {
  .site-header .actions.mobile-only {
    display: none;
  }
}
.site-header .actions.mobile-only .mobile-user-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
.site-header .actions.mobile-only .mobile-user-actions .user-greeting {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.25rem;
}
.site-header .actions.mobile-only .mobile-user-actions .btn {
  width: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.site-header .actions.desktop-only {
  display: none;
}
@media (min-width: 768px) {
  .site-header .actions.desktop-only {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}
.site-header .actions .header-notifications {
  position: relative;
}
.site-header .actions .header-notifications .notifications-trigger {
  position: relative;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.95);
  color: #334155;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.site-header .actions .header-notifications .notifications-trigger:hover {
  background: #f8fafc;
  border-color: rgba(15, 23, 42, 0.25);
  color: #0f172a;
}
.site-header .actions .header-notifications .notifications-badge {
  position: absolute;
  top: -0.35rem;
  right: -0.25rem;
  min-width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  padding: 0 0.22rem;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.1rem;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #FE3C72 0%, #FE3CD3 100%);
  border: 1px solid #fff;
  box-shadow: 0 8px 20px rgba(254, 60, 114, 0.34);
}
.site-header .actions .header-notifications .notifications-badge.is-hidden {
  display: none;
}
.site-header .actions .header-notifications .notifications-dropdown {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  width: min(24rem, 92vw);
  max-height: 28rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
  overflow: hidden;
  display: none;
  flex-direction: column;
  z-index: 1100;
}
.site-header .actions .header-notifications.open .notifications-dropdown {
  display: flex;
}
.site-header .actions .header-notifications .notifications-dropdown__head {
  padding: 0.78rem 0.9rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.24);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}
.site-header .actions .header-notifications .notifications-dropdown__head strong {
  color: #0f172a;
  font-size: 0.9rem;
}
.site-header .actions .header-notifications .notifications-mark-all {
  border: none;
  background: transparent;
  color: #2563eb;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}
.site-header .actions .header-notifications .notifications-mark-all:hover {
  color: #1d4ed8;
  text-decoration: underline;
}
.site-header .actions .header-notifications .notifications-list {
  display: grid;
  gap: 0.6rem;
  max-height: 22rem;
  overflow: auto;
  padding: 0.72rem 0.8rem 0.9rem;
  background: #fff;
}
.site-header .actions .header-notifications .notifications-empty {
  margin: 0;
  border-radius: 10px;
  border: 1px dashed rgba(148, 163, 184, 0.35);
  background: #f8fafc;
  color: #64748b;
  padding: 0.7rem 0.72rem;
  text-align: center;
  font-size: 0.84rem;
}
.site-header .actions .header-notifications .notification-item {
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: #f8fafc;
  padding: 0.62rem 0.68rem;
  display: grid;
  gap: 0.42rem;
}
.site-header .actions .header-notifications .notification-item.is-unread {
  border-color: rgba(254, 60, 114, 0.38);
  background: rgba(254, 60, 114, 0.07);
}
.site-header .actions .header-notifications .notification-item__title {
  margin: 0;
  color: #0f172a;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
}
.site-header .actions .header-notifications .notification-item__message {
  margin: 0;
  color: #475569;
  font-size: 0.81rem;
  line-height: 1.45;
}
.site-header .actions .header-notifications .notification-item__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.62rem;
}
.site-header .actions .header-notifications .notification-item__time {
  color: #64748b;
  font-size: 0.75rem;
  white-space: nowrap;
}
.site-header .actions .header-notifications .notification-item__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-header .actions .header-notifications .notification-item__link,
.site-header .actions .header-notifications .notification-item__mark {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(255, 255, 255, 0.92);
  color: #1e293b;
  font-size: 0.73rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.32rem 0.54rem;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.site-header .actions .header-notifications .notification-item__link:hover,
.site-header .actions .header-notifications .notification-item__mark:hover {
  background: #fff;
  border-color: rgba(59, 130, 246, 0.55);
}
.site-header .actions #user-info {
  position: relative;
}
.site-header .actions #user-info .user-dropdown {
  display: none;
}
.site-header .actions #user-info.open .user-dropdown {
  display: flex;
}
.site-header .actions #user-info .user-trigger {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
  transition: background-color 0.2s;
  font-family: inherit;
  letter-spacing: inherit;
  font-size: inherit;
}
.site-header .actions #user-info .user-trigger:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.site-header .actions #user-info .user-trigger #user-name {
  font-weight: 500;
  color: #888;
  font-size: 13px;
}
.site-header .actions #user-info .user-trigger .avatar-placeholder {
  width: 32px;
  height: 32px;
  background-color: #ee4c77;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
}
.site-header .actions #user-info .user-trigger .avatar-image {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(15, 23, 42, 0.12);
  display: block;
}
.site-header .actions #user-info .user-dropdown {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 180px;
  padding: 0.25rem 0;
  display: none;
  flex-direction: column;
  z-index: 1000;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.site-header .actions #user-info .user-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #1e293b;
  font-size: 0.9rem;
  transition: background-color 0.2s;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}
.site-header .actions #user-info .user-dropdown .dropdown-item:hover {
  background-color: rgba(0, 0, 0, 0.03);
  color: #ee4c77;
}
.site-header .actions #user-info .user-dropdown .dropdown-item.text-red-500 {
  color: #ef4444;
}
.site-header .actions #user-info .user-dropdown .dropdown-item.text-red-500:hover {
  background-color: rgba(239, 68, 68, 0.05);
}
.site-header .actions .lang-switch {
  position: relative;
  display: inline-block;
}
.site-header .actions .lang-switch.open .lang-switch__trigger {
  background-color: transparent;
}
.site-header .actions .lang-switch.open .lang-switch__chevron {
  transform: rotate(180deg);
}
.site-header .actions .lang-switch.open .lang-switch__menu {
  display: flex;
}
.site-header .actions .lang-switch .lang-switch__trigger {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.55rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  background-color: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  box-shadow: none;
}
.site-header .actions .lang-switch .lang-switch__current,
.site-header .actions .lang-switch .lang-switch__option {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.site-header .actions .lang-switch .lang-switch__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #475569;
}
.site-header .actions .lang-switch .lang-switch__name {
  color: #334155;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1;
}
.site-header .actions .lang-switch .lang-switch__flag {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.06);
  flex-shrink: 0;
}
.site-header .actions .lang-switch .lang-switch__chevron {
  color: #334155;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.site-header .actions .lang-switch .lang-switch__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  min-width: 112px;
  padding: 0.3rem;
  background-color: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 12px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
  z-index: 1000;
}
.site-header .actions .lang-switch .lang-switch__menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  border-left: 1px solid rgba(226, 232, 240, 0.9);
  transform: translateX(-50%) rotate(45deg);
}
.site-header .actions .lang-switch .lang-switch__option {
  width: 100%;
  padding: 0.45rem 0.55rem;
  border: none;
  border-radius: 8px;
  background: none;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  font-family: inherit;
}
.site-header .actions .lang-switch .lang-switch__option:hover, .site-header .actions .lang-switch .lang-switch__option.is-active {
  background-color: #f3f4f6;
}
.site-header .actions .lang-switch select {
  padding: 0.5rem;
  border: 1px solid #f3d1e8;
  border-radius: 4px;
  background-color: #ffffff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: #888;
  cursor: pointer;
}
.site-header .actions .lang-switch select:focus {
  outline: none;
  border-color: #ee4c77;
  box-shadow: 0 0 0 3px rgba(238, 76, 119, 0.16);
}
.site-header .actions .mobile-only .lang-switch .lang-switch__menu {
  left: 0;
  right: auto;
  transform: none;
}
.site-header .actions .btn {
  padding: 8px 16px;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600 !important;
  transition: background-color 0.3s ease;
  cursor: pointer;
  font-size: 14px;
  border: none;
  font-family: inherit;
  display: inline-block;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.site-header .actions .btn.btn-primary {
  background: linear-gradient(to right, #ee4c77, #ff66c4);
  color: #fff;
}
.site-header .actions .btn.btn-primary:hover {
  background-color: #ff66c4;
}
.site-header .actions .btn.btn-secondary {
  background-color: #fff;
  color: #1e293b;
  border: 1px solid #f3d1e8;
}
.site-header .actions .btn.btn-secondary:hover {
  background-color: #f3d1e8;
}

:where(.btn, .recruiter-btn, .job-btn) {
  padding: 8px 16px;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600 !important;
  transition: background-color 0.3s ease;
  cursor: pointer;
  font-size: 14px;
  border: none;
  font-family: inherit;
  display: inline-block;
  --btn-bg: #ffffff;
  --btn-fg: #0f172a;
  --btn-border: #dbe3ef;
  --btn-shadow: none;
  --btn-bg-hover: #f8fafc;
  --btn-fg-hover: #0f172a;
  --btn-border-hover: #cbd5e1;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.5rem;
  padding: 0.55rem 0.95rem;
  border-radius: 10px;
  border: 1px solid var(--btn-border);
  background: var(--btn-bg);
  color: var(--btn-fg);
  box-shadow: var(--btn-shadow);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

:where(.btn, .recruiter-btn, .job-btn):hover {
  background: var(--btn-bg-hover);
  color: var(--btn-fg-hover);
  border-color: var(--btn-border-hover);
}

:where(.btn, .recruiter-btn, .job-btn):disabled,
:where(.btn, .recruiter-btn, .job-btn).is-disabled {
  opacity: 0.6;
  pointer-events: none;
}

:where(.btn, .recruiter-btn, .job-btn).btn-primary,
:where(.btn, .recruiter-btn, .job-btn).recruiter-btn--primary,
:where(.btn, .recruiter-btn, .job-btn).recruiter-btn--candidate-primary,
:where(.btn, .recruiter-btn, .job-btn).job-btn--primary {
  --btn-bg: var(--ats-gradient, linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%));
  --btn-fg: #ffffff;
  --btn-border: transparent;
  --btn-bg-hover: var(--ats-gradient-hover, linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%));
  --btn-fg-hover: #ffffff;
  --btn-border-hover: transparent;
}

:where(.btn, .recruiter-btn, .job-btn).btn-secondary,
:where(.btn, .recruiter-btn, .job-btn).recruiter-btn--ghost,
:where(.btn, .recruiter-btn, .job-btn).recruiter-btn--candidate-ghost,
:where(.btn, .recruiter-btn, .job-btn).job-btn--ghost {
  --btn-bg: #ffffff;
  --btn-fg: #334155;
  --btn-border: #dbe3ef;
  --btn-bg-hover: #f8fafc;
  --btn-fg-hover: #0f172a;
  --btn-border-hover: #cbd5e1;
}

:where(.btn, .recruiter-btn, .job-btn).btn-danger {
  --btn-bg: #ef4444;
  --btn-fg: #ffffff;
  --btn-border: #ef4444;
  --btn-bg-hover: #dc2626;
  --btn-fg-hover: #ffffff;
  --btn-border-hover: #dc2626;
}

:where(.recruiter-shell, .admin-shell, .form-theme) :where(input, select, textarea),
:where(input.form-control, select.form-control, textarea.form-control),
:where(input.recruiter-form-control, select.recruiter-form-control, textarea.recruiter-form-control) {
  border: 1px solid #dbe3ef;
  border-radius: 10px;
  background: #ffffff;
  color: #0f172a;
  font: inherit;
  min-height: 2rem;
  padding: 0.55rem 0.8rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

:where(.recruiter-shell, .admin-shell, .form-theme) :where(input, select, textarea)::placeholder,
:where(input.form-control, select.form-control, textarea.form-control)::placeholder,
:where(input.recruiter-form-control, select.recruiter-form-control, textarea.recruiter-form-control)::placeholder {
  color: #94a3b8;
}

:where(.recruiter-shell, .admin-shell, .form-theme) :where(input, select, textarea):focus,
:where(input.form-control, select.form-control, textarea.form-control):focus,
:where(input.recruiter-form-control, select.recruiter-form-control, textarea.recruiter-form-control):focus {
  outline: none;
  border-color: var(--ats-focus, #ff66c4);
  box-shadow: 0 0 0 3px var(--ats-focus-ring, rgba(254, 60, 211, 0.22));
}

:where(.recruiter-shell, .admin-shell, .form-theme) :where(input, select, textarea):disabled,
:where(input.form-control, select.form-control, textarea.form-control):disabled,
:where(input.recruiter-form-control, select.recruiter-form-control, textarea.recruiter-form-control):disabled {
  background: #f8fafc;
  color: #94a3b8;
}

:where(.recruiter-shell, .admin-shell, .form-theme) :where(label),
:where(label.form-label, .recruiter-form-label) {
  color: #475569;
}

.form-control,
.recruiter-form-control {
  width: 100%;
}

.form-field,
.recruiter-form-field {
  display: grid;
  gap: 0.4rem;
}

.form-grid,
.recruiter-form-grid {
  display: grid;
  gap: 0.85rem;
}

.card,
.ui-card {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  padding: 1rem;
}

.card-title,
.ui-card__title {
  margin: 0 0 0.55rem;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 700;
}

.card-subtitle,
.ui-card__subtitle {
  margin: 0;
  color: #64748b;
  font-size: 0.88rem;
}

:where(.recruiter-shell, .admin-shell) :where(.recruiter-panel, .admin-card, .admin-panel) {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
}

.spinner,
.app-spinner {
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  border: 2px solid rgba(148, 163, 184, 0.35);
  border-top-color: #4f46e5;
  animation: app-spin 0.75s linear infinite;
}

.spinner--lg,
.app-spinner--lg {
  width: 1.4rem;
  height: 1.4rem;
}

:where(.btn, .recruiter-btn, .job-btn).is-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

:where(.btn, .recruiter-btn, .job-btn).is-loading::after {
  content: "";
  position: absolute;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-top-color: #ffffff;
  animation: app-spin 0.75s linear infinite;
}

@keyframes app-spin {
  to {
    transform: rotate(360deg);
  }
}
.app-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 3000;
  width: min(360px, 100vw - 2rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 0.8rem 0.9rem;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.14);
}

.app-toast.is-hidden {
  display: none !important;
}

.app-toast__title {
  margin: 0;
  color: #0f172a;
  font-size: 0.88rem;
  font-weight: 700;
}

.app-toast__message {
  margin: 0.3rem 0 0;
  color: #475569;
  font-size: 0.82rem;
  line-height: 1.5;
}

.app-toast.is-success {
  border-color: #bbf7d0;
  background: #f0fdf4;
}

.app-toast.is-error {
  border-color: #fecaca;
  background: #fef2f2;
}

.app-toast.is-info {
  border-color: #bfdbfe;
  background: #eff6ff;
}

.app-flash-stack {
  position: fixed;
  top: 5.4rem;
  right: 1rem;
  z-index: 3200;
  width: min(560px, 100vw - 2rem);
  display: grid;
  gap: 0.6rem;
  pointer-events: none;
}

.app-flash {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 0.78rem 0.95rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
  pointer-events: auto;
}

.app-flash__message {
  flex: 1 1 auto;
  min-width: 0;
}

.app-flash__close {
  appearance: none;
  border: 0;
  background: transparent;
  color: currentColor;
  opacity: 0.75;
  width: 1.4rem;
  height: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  cursor: pointer;
  flex: 0 0 auto;
}

.app-flash__close:hover {
  opacity: 1;
  background: rgba(15, 23, 42, 0.08);
}

.app-flash__close svg {
  width: 0.95rem;
  height: 0.95rem;
}

.app-flash--success {
  border-color: #86efac;
  background: #dcfce7;
  color: #166534;
}

.app-flash--error {
  border-color: #fca5a5;
  background: #fee2e2;
  color: #991b1b;
}

@media (max-width: 760px) {
  .app-flash-stack {
    top: 4.7rem;
    right: 0.75rem;
    left: 0.75rem;
    width: auto;
  }
}
.tabContainer {
  display: flex;
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto 2rem auto;
  border-bottom: 1px solid rgba(71, 85, 105, 0.18);
}

.tab {
  flex: 1;
  padding: 1rem 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: #475569;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
  font-family: inherit;
  text-decoration: none;
}
.tab:hover {
  color: #1e293b;
}
.tab:focus-visible {
  outline: none;
  color: #1e293b;
  box-shadow: inset 0 0 0 2px rgba(255, 102, 196, 0.22);
  border-radius: 0.75rem 0.75rem 0 0;
}
.tab.active {
  color: #1e293b;
}

.indicator {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  background-color: #ee4c77;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-page {
  padding: 120px 0 80px;
  background-color: #f8fafc;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.pricing-page::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 102, 196, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.pricing-page .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}
.pricing-page .section-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 1rem;
}
.pricing-page .section-header h1 {
  font-family: "Nunito", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #170017;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ff66c4, #8B5CF6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pricing-page .section-header p {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}
.pricing-page .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
}
@media (max-width: 768px) {
  .pricing-page .pricing-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.pricing-page .pricing-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.pricing-page .pricing-card.recommended {
  background: linear-gradient(to bottom, #ffffff, rgba(255, 102, 196, 0.04));
  border: 2px solid #ff66c4;
  box-shadow: 0 20px 40px rgba(255, 102, 196, 0.15);
  transform: scale(1.05);
  z-index: 2;
}
.pricing-page .pricing-card.recommended .badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(255, 102, 196, 0.4);
}
@media (max-width: 768px) {
  .pricing-page .pricing-card.recommended {
    transform: scale(1);
  }
}
.pricing-page .pricing-card:hover:not(.recommended) {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 102, 196, 0.08);
  border-color: rgba(255, 102, 196, 0.2);
}
.pricing-page .pricing-card h3 {
  font-size: 1.5rem;
  color: #170017;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.pricing-page .pricing-card .price-desc {
  color: #ff66c4;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  display: block;
}
.pricing-page .pricing-card .features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
}
.pricing-page .pricing-card .features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.4;
}
.pricing-page .pricing-card .features li.highlight-feature {
  background: rgba(255, 102, 196, 0.05);
  border: 1px solid rgba(255, 102, 196, 0.2);
  padding: 0.75rem;
  border-radius: 8px;
  color: #170017;
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.pricing-page .pricing-card .features li.highlight-feature .icon {
  color: #ff66c4;
}
.pricing-page .pricing-card .features li .icon {
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 3px;
}
.pricing-page .pricing-card .features li strong {
  color: #170017;
  font-weight: 600;
}
.pricing-page .pricing-card .btn-pricing {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.pricing-page .pricing-card .btn-pricing.btn-outline {
  border: 2px solid #ff66c4;
  color: #ff66c4;
  background: transparent;
}
.pricing-page .pricing-card .btn-pricing.btn-outline:hover {
  background: #ff66c4;
  color: white;
}
.pricing-page .pricing-card .btn-pricing.btn-primary {
  background: linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%);
  color: white;
  box-shadow: 0 5px 20px -5px rgba(255, 102, 196, 0.4);
}
.pricing-page .pricing-card .btn-pricing.btn-primary:hover {
  box-shadow: 0 10px 25px -5px rgba(255, 102, 196, 0.6);
  filter: brightness(1.05);
}

.footer {
  background: #170017;
  padding: 3rem 0 1.75rem;
  color: #ffffff;
}

.footer .container {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 3rem;
}

.footer .footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer .brand-col .logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 0.75rem;
}

.footer .brand-col .logo img {
  width: auto;
  height: 2.375rem;
  opacity: 0.6;
}

.footer .brand-col p {
  max-width: 15rem;
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8125rem;
  line-height: 1.7;
}

.footer .footer-col h3 {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.footer .footer-col a {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.8125rem;
  text-decoration: none;
  transition: color 0.12s ease;
}

.footer .footer-col a:hover {
  color: #ffffff;
}

.footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 1.25rem;
}

.footer .footer-bottom span {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
}

.footer .social-icons {
  display: flex;
  gap: 0.5rem;
}

.footer .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.12s ease, color 0.12s ease;
}

.footer .social-icons a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

@media (max-width: 900px) {
  .footer .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer .brand-col p {
    max-width: none;
  }
}
@media (max-width: 640px) {
  .footer {
    padding: 2.5rem 0 1.5rem;
  }
  .footer .container {
    padding: 0 1.5rem;
  }
  .footer .brand-col .logo img {
    height: 2.75rem;
  }
  .footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
.login-page {
  min-height: 100vh;
  padding: 2rem;
  background: #F4F2F8;
  font-family: "DM Sans", "Nunito", sans-serif;
}

.login-page__layout {
  min-height: calc(100vh - 4rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 1.5rem;
  align-items: stretch;
}

.login-page__brand {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 3.25rem;
  border-radius: 1.25rem;
  background: linear-gradient(145deg, #6B00C9, #170017);
}
.login-page__brand::before {
  content: "";
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 17.5rem;
  height: 17.5rem;
  border-radius: 999px;
  background: rgba(254, 60, 114, 0.18);
}
.login-page__brand::after {
  content: "";
  position: absolute;
  bottom: -3.75rem;
  left: -2.5rem;
  width: 12.5rem;
  height: 12.5rem;
  border-radius: 999px;
  background: rgba(254, 60, 211, 0.13);
}

.login-page__logo,
.login-page__brand-copy,
.login-page__brand-points {
  position: relative;
  z-index: 1;
}

.login-page__logo {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 2.5rem;
}

.login-page__logo img {
  width: auto;
  height: 7.25rem;
}

.login-page__brand-eyebrow {
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.login-page__brand-title {
  margin: 0 0 0.9rem;
  font-family: "Nunito", sans-serif;
  font-size: 2.25rem;
  line-height: 1.14;
  font-weight: 900;
  color: #ffffff;
}
.login-page__brand-title span {
  color: #FE3CD3;
}

.login-page__brand-text {
  max-width: 21rem;
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.95rem;
  line-height: 1.75;
}

.login-page__brand-points {
  display: grid;
  gap: 0.7rem;
}

.login-page__brand-point {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
}

.login-page__brand-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #FE3C72;
  flex-shrink: 0;
}

.login-page__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem;
  border: 1px solid #EDE8F5;
  border-radius: 1.25rem;
  background: #ffffff;
}

.login-page__panel-eyebrow {
  margin: 0 0 0.35rem;
  color: #6B00C9;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.login-page__panel-title {
  margin: 0 0 0.35rem;
  font-family: "Nunito", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #170017;
}

.login-page__panel-subtitle {
  margin: 0 0 1.5rem;
  color: #9a93a8;
  font-size: 0.84rem;
  line-height: 1.6;
}

.login-page__tabs {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  padding: 0.2rem;
  border-radius: 0.75rem;
  background: #F4F2F8;
}

.login-page__tab {
  flex: 1 1 50%;
  padding: 0.7rem 0.85rem;
  border-radius: 0.6rem;
  color: #9a93a8;
  font-size: 0.84rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.14s ease;
}
.login-page__tab:hover {
  color: #170017;
}
.login-page__tab.is-active {
  background: #ffffff;
  color: #170017;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.login-page__form {
  display: grid;
  gap: 0.9rem;
}

.login-page__field {
  display: grid;
  gap: 0.38rem;
}

.login-page__label {
  color: #8f889c;
  font-size: 0.77rem;
  font-weight: 600;
}

.login-page__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.login-page__input {
  width: 100%;
  border: 1px solid #EDE8F5;
  border-radius: 0.65rem;
  background: #F8F6FC;
  padding: 0.88rem 0.95rem;
  color: #170017;
  font: inherit;
  font-size: 0.84rem;
  outline: none;
  transition: border-color 0.12s ease, background 0.12s ease;
}
.login-page__input:focus {
  border-color: #6B00C9;
  background: #ffffff;
}

.login-page__input-wrap--password .toggle-icon {
  position: absolute;
  right: 0.9rem;
  color: #a8a1b4;
  font-size: 1rem;
  cursor: pointer;
  pointer-events: auto;
}

.login-page__submit {
  margin-top: 0.25rem;
  border: 0;
  border-radius: 0.7rem;
  background: linear-gradient(135deg, #FE3C72, #FE3CD3);
  color: #ffffff;
  padding: 0.95rem 1rem;
  font-family: "Nunito", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  transition: opacity 0.12s ease, transform 0.12s ease;
}
.login-page__submit:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.login-page__divider {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 1rem 0 0.95rem;
  color: #c1bccb;
  font-size: 0.74rem;
}
.login-page__divider::before, .login-page__divider::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: #EDE8F5;
}

.login-page__socials {
  display: grid;
  gap: 0.65rem;
}

.login-page__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.86rem 0.95rem;
  border: 1px solid #EDE8F5;
  border-radius: 0.65rem;
  background: #ffffff;
  color: #595364;
  font: inherit;
  font-size: 0.84rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease;
}
.login-page__social:hover {
  background: #F8F6FC;
  border-color: #ddd5eb;
}

.login-page__social-icon {
  font-size: 1rem;
}

.login-page__footnote {
  margin: 1rem 0 0;
  color: #8f889c;
  font-size: 0.82rem;
  text-align: center;
}
.login-page__footnote a {
  color: #6B00C9;
  font-weight: 700;
  text-decoration: none;
}

.verify-email-page {
  align-items: center;
}

.verify-email-page__layout {
  min-height: calc(100vh - 4rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.verify-email-page__card {
  width: min(560px, 100%);
  margin: auto;
  padding: 2rem;
  border-radius: 1.1rem;
  border: 1px solid #ede8f5;
  background: #ffffff;
  text-align: center;
}

.verify-email-page__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.36rem 0.72rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.verify-email-page__badge.is-success {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
}
.verify-email-page__badge.is-error {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}
.verify-email-page__badge.is-loading {
  background: rgba(59, 130, 246, 0.12);
  color: #1d4ed8;
}

.verify-email-page__title {
  margin: 0;
  color: #170017;
  font-size: 1.65rem;
  font-weight: 800;
}

.verify-email-page__text {
  margin: 0.75rem 0 0;
  color: #716b7d;
  line-height: 1.6;
}

.verify-email-page__actions {
  margin-top: 1.25rem;
}

.verify-email-page__action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-width: 180px;
}

.verify-email-page__link {
  color: #6b00c9;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .login-page__layout {
    grid-template-columns: 1fr;
  }
  .login-page__brand {
    min-height: 23rem;
  }
  .login-page__panel {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .login-page {
    padding: 1rem;
  }
  .login-page__layout {
    min-height: calc(100vh - 2rem);
    gap: 1rem;
  }
  .login-page__brand,
  .login-page__panel {
    padding: 1.5rem;
    border-radius: 1rem;
  }
  .login-page__logo img {
    height: 5.4rem;
  }
  .login-page__brand-title {
    font-size: 1.8rem;
  }
  .verify-email-page__card {
    padding: 1.4rem;
  }
}
.signup-section {
  min-height: 100vh;
  background: rgba(148, 163, 184, 0.1);
}

.signup-grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
  align-items: stretch;
  padding: 2rem;
}
@media (max-width: 992px) {
  .signup-grid {
    grid-template-columns: 1fr;
  }
}

.form-side {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
}
.form-side .form-container {
  padding: 2rem;
  background: #fff;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  border-radius: 0.6rem;
}
.form-side .form-container h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.7rem;
  color: #333;
  /*  background: $gradient-primary;
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text; */
}
.form-side .form-container .subtitle {
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 2.5rem;
}
.form-side .form-container form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-side .form-container .input-group {
  display: flex;
  flex-direction: column;
}
.form-side .form-container .input-group select {
  padding: 1rem 1rem 1rem 3rem;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 1rem;
  background: white;
}
.form-side .form-container .input-wrapper {
  position: relative;
}
.form-side .form-container .input-wrapper.password .toggle-icon {
  cursor: pointer;
}
.form-side .form-container .input-wrapper .input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: #94a3b8;
}
.form-side .form-container .input-wrapper .toggle-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: #170017;
}
.form-side .form-container .input-wrapper input {
  width: 100%;
  padding: 0.7rem 0.7rem 0.7rem 1rem;
  border-radius: 0.25rem;
  border: 1px solid #ddd;
  font-size: 0.9rem;
  transition: border 0.3s ease;
  font-family: inherit;
}
.form-side .form-container .input-wrapper input:focus {
  outline: none;
  border-color: #ff66c4;
  box-shadow: 0 0 0 3px rgba(255, 102, 196, 0.15);
}
.form-side .form-container .error {
  color: #ef4444;
  font-size: 0.9rem;
  margin-top: 0.4rem;
}
.form-side .form-container .btn-signup {
  margin-top: 1rem;
  padding: 1.1rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%);
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 102, 196, 0.3);
}
.form-side .form-container .btn-signup:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 102, 196, 0.4);
}
.form-side .form-container .login-link {
  text-align: center;
  margin-top: 2rem;
  color: #475569;
}
.form-side .form-container .login-link a {
  color: #ff66c4;
  font-weight: 600;
  text-decoration: none;
}
.form-side .form-container .signup-legal {
  text-align: center;
  margin-top: 0.9rem;
  color: #475569;
  font-size: 0.84rem;
  line-height: 1.45;
}
.form-side .form-container .signup-legal a {
  color: #ff66c4;
  font-weight: 600;
  text-decoration: none;
}
.form-side .form-container .social-login {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
  flex-direction: column;
}
@media (max-width: 768px) {
  .form-side .form-container .social-login {
    flex-direction: column;
    gap: 0.85rem;
  }
}
.form-side .form-container .social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  color: #1e293b;
  font-family: inherit;
  padding: 0.9rem 1rem;
  letter-spacing: 0px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 0.25rem;
  font-weight: 500;
  line-height: 15px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  width: 100%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}
.form-side .form-container .social-btn.linkedin {
  background-color: #0a66c2;
  border-color: #0e76a8;
  color: white;
}
.form-side .form-container .social-btn.linkedin:hover {
  background-color: #0a66c2;
  border-color: #0e76a8;
  color: white;
}
.form-side .form-container .social-btn:hover {
  background: #f8f9fa;
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}
.form-side .form-container .social-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.form-side .form-container .social-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 102, 196, 0.2), 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #ff66c4;
}
.form-side .form-container .social-btn .social-icon {
  font-size: 1rem;
  background-color: #fff;
}
.form-side .form-container .divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1.5rem 0;
  color: #475569;
  font-size: 0.95rem;
}
.form-side .form-container .divider::before, .form-side .form-container .divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #e0e0e0;
}
.form-side .form-container .divider span {
  padding: 0 1.5rem;
}

/* ── Smooth scroll ─────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
}

/* ── Animation keyframes ───────────────────────────────────── */
@keyframes landing-pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(254, 60, 114, 0.4);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(254, 60, 114, 0);
  }
}
@keyframes landing-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
/* ── Scroll-triggered reveal handled by AOS library ────────── */
/* ── Respect reduced motion ────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .landing-home__genome-card {
    animation: none !important;
  }
  .landing-home__hero-badge-dot {
    animation: none !important;
  }
}
.landing-home {
  font-family: "DM Sans", sans-serif;
  color: #170017;
  background: #ffffff;
  overflow-x: hidden;
}

.landing-home strong,
.landing-home h1,
.landing-home h2,
.landing-home h3 {
  font-family: "Nunito", sans-serif;
}

.landing-home__shell {
  width: calc(100% - 6rem);
  max-width: 1344px;
  margin: 0 auto;
}

.landing-home__hero {
  background: #f4f2f8;
  padding: 5rem 0 4.5rem;
}

.landing-home__hero .landing-home__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 360px);
  gap: 3.5rem;
  align-items: center;
}

.landing-home__hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.45rem 0.95rem;
  border: 1px solid rgba(107, 0, 201, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(107, 0, 201, 0.07), rgba(254, 60, 114, 0.07));
  color: #6b00c9;
  font-size: 0.78rem;
  font-weight: 700;
}

.landing-home__hero-badge-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #fe3c72, #fe3cd3);
  animation: landing-pulseGlow 2s ease-in-out infinite;
}

.landing-home__hero-title {
  margin: 0 0 0.65rem;
  color: #170017;
  font-size: 46px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.landing-home__hero-title-pink,
.landing-home__title span {
  background: linear-gradient(135deg, #fe3c72, #fe3cd3);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.landing-home__hero-title-purple,
.landing-home__title--purple span {
  background: linear-gradient(135deg, #6b00c9, #9b59f5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.landing-home__hero-tagline {
  margin: 0 0 1.25rem;
  color: rgba(107, 0, 201, 0.82);
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.landing-home__hero-tagline span {
  color: #fe3c72;
}

.landing-home__hero-text,
.landing-home__body {
  margin: 0;
  color: #555168;
  font-size: 0.9375rem;
  line-height: 1.78;
}

.landing-home__hero-text {
  max-width: 32rem;
  margin-bottom: 2rem;
}

.landing-home__hero-actions,
.landing-home__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.landing-home__hero-actions {
  margin-bottom: 2.2rem;
}

.landing-home__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  padding: 0.9rem 1.35rem;
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.landing-home__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(107, 0, 201, 0.12);
}

.landing-home__button--primary {
  background: linear-gradient(135deg, #fe3c72, #fe3cd3);
  background-size: 200% auto;
  box-shadow: 0 10px 24px rgba(254, 60, 114, 0.22);
  color: #ffffff;
  font-family: "Nunito", sans-serif;
  font-size: 0.9375rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-position 0.4s ease;
}

.landing-home__button--primary:hover {
  background-position: right center;
  box-shadow: 0 14px 32px rgba(254, 60, 114, 0.32);
  transform: translateY(-2px);
}

.landing-home__button--secondary {
  border: 1.5px solid #d8ccef;
  background: #ffffff;
  color: #6b00c9;
  font-family: "Nunito", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
}

.landing-home__button--white {
  background: #ffffff;
  color: #170017;
  font-family: "Nunito", sans-serif;
  font-size: 0.875rem;
  font-weight: 800;
}

.landing-home__button--ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
  font-family: "Nunito", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
}

.landing-home__hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  align-items: center;
}

.landing-home__hero-stat strong {
  display: block;
  color: #170017;
  font-family: "Nunito", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
}

.landing-home__hero-stat span {
  color: #8d88a0;
  font-size: 0.78rem;
}

.landing-home__hero-divider {
  width: 1px;
  align-self: stretch;
  background: #ddd6ee;
}

.landing-home__genome-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #ede8f5;
  border-radius: 1.35rem;
  background: #ffffff;
  padding: 1.6rem 1.4rem;
  box-shadow: 0 8px 48px rgba(107, 0, 201, 0.09);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
  animation: landing-float 8s ease-in-out infinite;
}

.landing-home__genome-card:hover {
  box-shadow: 0 16px 48px rgba(107, 0, 201, 0.14);
}

.landing-home__genome-card::before {
  content: "";
  position: absolute;
  top: -3rem;
  right: -3rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 0, 201, 0.06), transparent 70%);
}

.landing-home__genome-head,
.landing-home__candidate-row,
.landing-home__genome-footer {
  position: relative;
  z-index: 1;
}

.landing-home__genome-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.landing-home__genome-title {
  margin: 0;
  color: #170017;
  font-family: "Nunito", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
}

.landing-home__genome-subtitle {
  margin: 0.15rem 0 0;
  color: #aaa3b7;
  font-size: 0.72rem;
}

.landing-home__genome-pill {
  align-self: flex-start;
  border-radius: 999px;
  background: linear-gradient(135deg, #6b00c9, #fe3c72);
  padding: 0.24rem 0.55rem;
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.landing-home__candidate-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  border-radius: 0.95rem;
  background: #f8f6fc;
  padding: 0.8rem;
}

.landing-home__candidate-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #fe3c72, #fe3cd3);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
}

.landing-home__candidate-meta strong,
.landing-home__candidate-score strong {
  display: block;
}

.landing-home__candidate-meta strong {
  color: #170017;
  font-size: 0.86rem;
  font-weight: 800;
}

.landing-home__candidate-meta span {
  color: #9c96aa;
  font-size: 0.72rem;
}

.landing-home__candidate-score {
  margin-left: auto;
  text-align: right;
}

.landing-home__candidate-score strong {
  background: linear-gradient(135deg, #fe3c72, #fe3cd3);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Nunito", sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
}

.landing-home__candidate-score span,
.landing-home__genome-footer span {
  color: #b8b2c1;
  font-size: 0.68rem;
}

.landing-home__bars {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.65rem;
}

.landing-home__bar {
  display: grid;
  grid-template-columns: minmax(0, 6.8rem) minmax(0, 1fr) 1.8rem;
  align-items: center;
  gap: 0.55rem;
}

.landing-home__bar span {
  color: #666172;
  font-size: 0.72rem;
  font-weight: 500;
}

.landing-home__bar-track {
  overflow: hidden;
  border-radius: 999px;
  background: #f0ebfb;
  height: 0.34rem;
}

.landing-home__bar-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.landing-home__bar strong {
  font-size: 0.72rem;
  text-align: right;
}

.landing-home__bar strong.is-pink {
  color: #fe3c72;
}

.landing-home__bar strong.is-purple {
  color: #6b00c9;
}

.landing-home__bar strong.is-rose {
  color: #fe3cd3;
}

.landing-home__genome-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  border-top: 1px solid #f4f2f8;
  padding-top: 0.95rem;
}

.landing-home__genome-footer a {
  color: #fe3c72;
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
}

.landing-home__section {
  padding: 5rem 0;
}

.landing-home__section--light {
  background: #ffffff;
}

.landing-home__section--tinted {
  background: #f4f2f8;
}

.landing-home__section-heading {
  max-width: 34rem;
}

.landing-home__eyebrow,
.landing-home__cta-eyebrow,
.landing-home__step-index {
  margin: 0 0 0.75rem;
  color: rgba(107, 0, 201, 0.76);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.landing-home__title {
  margin: 0 0 0.9rem;
  color: #170017;
  font-size: clamp(2rem, 3.2vw, 2.85rem);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.landing-home__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.landing-home__step,
.landing-home__feature-card {
  border: 1px solid #ede8f5;
  border-radius: 1rem;
}

.landing-home__step {
  background: #f4f2f8;
  padding: 1.7rem 1.5rem;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease, border-color 0.4s ease;
}

.landing-home__step:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(107, 0, 201, 0.08);
  border-color: rgba(107, 0, 201, 0.18);
}

.landing-home__step-icon,
.landing-home__feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  margin-bottom: 0.9rem;
}

.landing-home__step-icon svg,
.landing-home__feature-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.landing-home__step-icon.is-pink,
.landing-home__feature-icon.is-pink {
  background: #fff0f4;
  color: #fe3c72;
}

.landing-home__step-icon.is-purple,
.landing-home__feature-icon.is-purple {
  background: #f0ebfb;
  color: #6b00c9;
}

.landing-home__step-icon.is-rose,
.landing-home__feature-icon.is-rose {
  background: #fdf0fb;
  color: #fe3cd3;
}

.landing-home__step h3,
.landing-home__feature-card h3 {
  margin: 0 0 0.5rem;
  color: #170017;
  font-size: 1.08rem;
  font-weight: 800;
}

.landing-home__step p,
.landing-home__feature-card p {
  color: #676276;
  font-size: 0.88rem;
  line-height: 1.65;
}

.landing-home__features-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 390px);
  gap: 4rem;
  align-items: start;
}

.landing-home__feature-cards {
  display: grid;
  gap: 0.9rem;
}

.landing-home__feature-card {
  display: flex;
  gap: 0.9rem;
  background: #ffffff;
  padding: 1.3rem 1.35rem;
  transition: box-shadow 0.4s ease, border-color 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.landing-home__feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(107, 0, 201, 0.1);
  border-color: rgba(107, 0, 201, 0.18);
}

.landing-home__feature-card.is-active {
  border-width: 1.5px;
  border-color: #6b00c9;
}

.landing-home__cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #6b00c9, #170017);
  padding: 4.5rem 0;
}

.landing-home__cta-band::before,
.landing-home__cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.landing-home__cta-band::before {
  top: -6rem;
  right: 12rem;
  width: 18rem;
  height: 18rem;
  background: rgba(254, 60, 114, 0.15);
}

.landing-home__cta-band::after {
  bottom: -5rem;
  left: 6rem;
  width: 12rem;
  height: 12rem;
  background: rgba(254, 60, 211, 0.12);
}

.landing-home__cta-layout {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.landing-home__cta-copy {
  max-width: 34rem;
}

.landing-home__cta-copy h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 900;
}

.landing-home__cta-copy h2 span {
  color: #fe3cd3;
}

.landing-home__cta-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.97rem;
  line-height: 1.72;
}

.landing-home__cta-copy strong {
  color: rgba(255, 255, 255, 0.92);
}

.landing-home__cta-eyebrow {
  color: rgba(254, 60, 211, 0.76);
}

.landing-home__genome-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .landing-home__hero .landing-home__shell,
  .landing-home__features-layout,
  .landing-home__cta-layout {
    grid-template-columns: 1fr;
  }
  .landing-home__cta-layout {
    display: grid;
  }
  .landing-home__hero-panel {
    max-width: 26rem;
  }
}
@media (max-width: 768px) {
  .landing-home__shell {
    width: calc(100% - 3rem);
    max-width: 1344px;
  }
  .landing-home__hero {
    padding: 3.5rem 0 3rem;
  }
  .landing-home__hero-title {
    font-size: 2.7rem;
  }
  .landing-home__title {
    font-size: 2.1rem;
  }
  .landing-home__hero-actions,
  .landing-home__cta-actions,
  .landing-home__hero-stats,
  .landing-home__genome-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .landing-home__hero-divider {
    width: 100%;
    height: 1px;
  }
  .landing-home__steps {
    grid-template-columns: 1fr;
  }
  .landing-home__bar {
    grid-template-columns: 1fr;
  }
  .landing-home__bar strong {
    text-align: left;
  }
}
.features-page {
  background: radial-gradient(circle at top left, rgba(254, 60, 211, 0.11), transparent 26%), radial-gradient(circle at top right, rgba(139, 92, 246, 0.11), transparent 28%), linear-gradient(180deg, #fffafc 0%, #f6f2fb 42%, #ffffff 100%);
  color: #1e293b;
  overflow-x: hidden;
}

.features-page__hero {
  padding: 5.5rem 3rem 2.25rem;
}

.features-page__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.92fr);
  gap: 2rem;
  align-items: stretch;
}

.features-page__hero-copy {
  display: grid;
  gap: 1.4rem;
}
.features-page__hero-copy h1 {
  margin: 0;
  max-width: 15ch; /* slightly wider to prevent extreme wrapping */
  font-family: "Nunito", sans-serif;
  font-size: clamp(1.5rem, 6vw, 3rem);
  line-height: 1.2;
  color: #170017;
  background: linear-gradient(135deg, #ff66c4, #8B5CF6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features-page__eyebrow,
.features-page__group-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(254, 60, 114, 0.12);
  color: #b61f60;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.features-page__lede {
  margin: 0;
  max-width: 60ch;
  color: #475569;
  font-size: 1.08rem;
  line-height: 1.75;
}

.features-page__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.features-page__stat {
  padding: 1rem 1.05rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(254, 60, 114, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 32px rgba(23, 0, 23, 0.06);
  backdrop-filter: blur(10px);
}
.features-page__stat strong {
  display: block;
  margin-bottom: 0.3rem;
  color: #170017;
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
}
.features-page__stat span {
  display: block;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.5;
}

.features-page__hero-panel {
  padding: 1.1rem;
  display: grid;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.92);
}

.features-page__panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.features-page__hero-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  min-height: 320px;
}
.features-page__hero-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.features-page__hero-shot figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(23, 0, 23, 0.2), rgba(23, 0, 23, 0.82));
  backdrop-filter: blur(8px);
}
.features-page__hero-shot figcaption strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.features-page__panel-card {
  padding: 1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}
.features-page__panel-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.65;
}

.features-page__panel-label,
.features-page__panel-kicker {
  display: inline-flex;
  margin-bottom: 0.7rem;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.features-page__pillars {
  padding: 0 1rem 2.2rem;
}

.features-page__pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.features-page__pillar {
  padding: 1.35rem;
  border-radius: 1.45rem;
  border: 1px solid rgba(23, 0, 23, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 36px rgba(23, 0, 23, 0.06);
}
.features-page__pillar h2 {
  margin: 0 0 0.55rem;
  color: #170017;
  font-size: 1.18rem;
  line-height: 1.2;
  font-weight: 900;
}
.features-page__pillar p {
  margin: 0;
  color: #475569;
  line-height: 1.65;
}

.features-page__pillar-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.features-page__pillar--rose .features-page__pillar-icon {
  background: rgba(254, 60, 114, 0.12);
  color: #d61d64;
}

.features-page__pillar--purple .features-page__pillar-icon {
  background: rgba(139, 92, 246, 0.13);
  color: #6d3df0;
}

.features-page__pillar--amber .features-page__pillar-icon {
  background: rgba(245, 158, 11, 0.14);
  color: #d97706;
}

.features-page__catalog {
  padding: 0 1rem 5.5rem;
}

.features-page__catalog-list {
  display: grid;
  gap: 1.25rem;
}

.features-page__group {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 1.15rem;
  padding: 1.2rem;
  border-radius: 1.8rem;
  border: 1px solid rgba(23, 0, 23, 0.06);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 40px rgba(23, 0, 23, 0.06);
}

.features-page__group-head {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  padding: 0.35rem;
}
.features-page__group-head h2 {
  margin: 0;
  color: #170017;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.features-page__group-head p {
  margin: 0;
  color: #475569;
  line-height: 1.8;
}

.features-page__group--purple .features-page__group-eyebrow {
  background: rgba(139, 92, 246, 0.12);
  color: #6d3df0;
}

.features-page__group--rose .features-page__group-eyebrow {
  background: rgba(254, 60, 114, 0.12);
  color: #d61d64;
}

.features-page__group--amber .features-page__group-eyebrow {
  background: rgba(245, 158, 11, 0.14);
  color: #c77a09;
}

.features-page__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.features-page__card {
  min-height: 100%;
  padding: 1.15rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(23, 0, 23, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(252, 247, 253, 0.95)), #fff;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.features-page__card:hover {
  transform: translateY(-4px);
  border-color: rgba(254, 60, 114, 0.18);
  box-shadow: 0 18px 34px rgba(23, 0, 23, 0.08);
}
.features-page__card h3 {
  margin: 0 0 0.55rem;
  color: #170017;
  font-size: 1.04rem;
  line-height: 1.25;
  font-weight: 800;
}
.features-page__card p {
  margin: 0;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.65;
}

.features-page__card-icon {
  width: 2.9rem;
  height: 2.9rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(254, 60, 211, 0.12), rgba(254, 60, 114, 0.16));
  color: #d61d64;
  font-size: 1.2rem;
}

@media (max-width: 1024px) {
  .features-page__hero-grid,
  .features-page__group {
    grid-template-columns: 1fr;
  }
  .features-page__hero-copy h1 {
    max-width: 100%;
  }
  .features-page__pillars-grid,
  .features-page__stats {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .features-page__hero {
    padding-top: 4.5rem;
  }
  .features-page__panel-grid,
  .features-page__cards {
    grid-template-columns: 1fr;
  }
  .features-page__hero-shot {
    min-height: 260px;
  }
  .features-page__pillar,
  .features-page__group,
  .features-page__hero-panel {
    border-radius: 1.3rem;
  }
}
.team-page {
  padding: 120px 0 80px;
  background-color: #f8fafc;
  min-height: 100vh;
}
.team-page .section-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 1rem;
}
.team-page .section-header h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #170017;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ff66c4, #8B5CF6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.team-page .section-header p {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: row;
}
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 102, 196, 0.15);
}
.team-card .card-image {
  position: relative;
}
.team-card .card-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 4px solid white;
}
.team-card .card-image .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 208, 235, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.team-card .card-image .overlay span {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}
.team-card:hover .card-image img {
  transform: scale(1.05);
}
.team-card:hover .card-image .overlay {
  opacity: 1;
}
.team-card .card-content {
  padding: 1.5rem;
  text-align: center;
}
.team-card .card-content h3 {
  font-size: 1.5rem;
  color: #170017;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.team-card .card-content .role {
  display: block;
  color: #ff66c4;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.team-card .card-content .tagline {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.team-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.team-modal-content {
  background: white;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  border-radius: 24px;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: grid;
  grid-template-columns: 350px 1fr;
}
@media (max-width: 1024px) {
  .team-modal-content {
    grid-template-columns: 1fr;
  }
}
.team-modal-content .close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
}
.team-modal-content .close-btn:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: rotate(90deg);
}
.team-modal-content .modal-sidebar {
  background: #f8fafc;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid #e2e8f0;
}
.team-modal-content .modal-sidebar img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 4px solid white;
}
.team-modal-content .modal-sidebar h2 {
  font-size: 2rem;
  color: #170017;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.team-modal-content .modal-sidebar .role {
  color: #ff66c4;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.team-modal-content .modal-sidebar .social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: white;
  color: #0077b5;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}
.team-modal-content .modal-sidebar .social-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.team-modal-content .modal-body {
  padding: 3rem 2.5rem;
}
.team-modal-content .modal-body h3 {
  font-size: 1.4rem;
  color: #170017;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.team-modal-content .modal-body h3 svg {
  color: #ff66c4;
}
.team-modal-content .modal-body p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.team-modal-content .modal-body .tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.team-modal-content .modal-body .tags-container span {
  padding: 0.5rem 1rem;
  background: rgba(255, 102, 196, 0.08);
  color: rgb(255, 51, 176.3333333333);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}
.team-modal-content .modal-body .achievements-list {
  list-style: none;
  padding: 0;
}
.team-modal-content .modal-body .achievements-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: #475569;
  line-height: 1.6;
}
.team-modal-content .modal-body .achievements-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
}

.legal-page {
  background: linear-gradient(180deg, #f5f7ff 0%, #ffffff 42%);
}

.legal-page__hero {
  padding: 3.2rem 1rem 1.6rem;
}
.legal-page__hero .container {
  max-width: 980px;
  margin: 0 auto;
}

.legal-page__kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #5f6d86;
}

.legal-page__hero h1 {
  margin: 0.6rem 0 0;
  color: #101f40;
  font-size: clamp(1.4rem, 2.5vw, 2.3rem);
  line-height: 1.2;
}

.legal-page__version {
  margin: 0.6rem 0 0;
  color: #4f607a;
  font-size: 0.92rem;
  font-weight: 600;
}

.legal-page__body {
  padding: 0 1rem 3.6rem;
}
.legal-page__body .container {
  max-width: 980px;
  margin: 0 auto;
}

.legal-card {
  background: #ffffff;
  border: 1px solid #dae1ef;
  border-radius: 16px;
  padding: clamp(1.15rem, 2.3vw, 2rem);
  box-shadow: 0 12px 30px rgba(16, 31, 64, 0.08);
}
.legal-card p {
  margin: 0;
  color: #273750;
  line-height: 1.72;
  font-size: 0.95rem;
}

.legal-article {
  margin-top: 1.35rem;
  padding-top: 1.35rem;
  border-top: 1px solid #e8edf6;
}
.legal-article h2 {
  margin: 0 0 0.65rem;
  color: #0f2552;
  font-size: 1.14rem;
  line-height: 1.3;
}
.legal-article h3 {
  margin: 0.9rem 0 0.45rem;
  color: #162f62;
  font-size: 1rem;
  line-height: 1.3;
}
.legal-article p + p {
  margin-top: 0.65rem;
}
.legal-article ul {
  margin: 0.7rem 0 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.45rem;
  color: #273750;
  line-height: 1.65;
  font-size: 0.95rem;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.8rem;
  border: 1px solid #e1e8f5;
  border-radius: 10px;
  overflow: hidden;
  font-size: 0.9rem;
}
.legal-table th,
.legal-table td {
  text-align: left;
  padding: 0.65rem 0.75rem;
  vertical-align: top;
  border-bottom: 1px solid #e9eef8;
  color: #273750;
  line-height: 1.5;
}
.legal-table th {
  background: #f3f6fd;
  color: #132a5a;
  font-weight: 700;
}
.legal-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 680px) {
  .legal-page__hero {
    padding-top: 2.4rem;
  }
  .legal-card {
    border-radius: 12px;
  }
  .legal-table {
    font-size: 0.84rem;
  }
  .legal-table th,
  .legal-table td {
    padding: 0.55rem 0.6rem;
  }
}
.profilium-demo-page {
  padding-top: calc(80px + 1.8rem);
  min-height: 100vh;
  background: radial-gradient(900px 280px at 10% 4%, rgba(255, 102, 196, 0.16), transparent 66%), radial-gradient(900px 240px at 90% 6%, rgba(238, 76, 119, 0.14), transparent 62%), linear-gradient(180deg, #fff9fe 0%, #fdf2f8 100%);
}

.profilium-demo {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1rem 4rem;
}

.profilium-demo__intro {
  text-align: center;
  margin-bottom: 2rem;
}
.profilium-demo__intro h1 {
  margin: 0;
  color: #1e293b;
  font-family: "Nunito", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 800;
}
.profilium-demo__intro p {
  max-width: 700px;
  margin: 1rem auto 0;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.7;
}
.profilium-demo__intro::after {
  content: "";
  width: 78px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%);
  display: block;
  margin: 0.9rem auto 0;
}

.profilium-demo__alert {
  max-width: 660px;
  margin: 0 auto 0.9rem;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 0.75rem 0.9rem;
  font-size: 0.9rem;
  text-align: center;
  font-weight: 600;
}
.profilium-demo__alert.is-success {
  color: #22c55e;
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.1);
}
.profilium-demo__alert.is-error {
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.1);
}

.profilium-demo__card {
  max-width: 660px;
  margin: 0 auto;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(255, 102, 196, 0.2);
  box-shadow: 0 18px 45px rgba(238, 76, 119, 0.16);
  padding: 1.75rem 1.55rem 1.35rem;
}

.profilium-demo__form {
  display: grid;
  gap: 1.1rem;
}

.profilium-demo__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.profilium-demo__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.profilium-demo__field--full {
  grid-column: 1/-1;
}

.profilium-demo__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.profilium-demo__field input,
.profilium-demo__field select {
  min-height: 54px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid #f3d1e8;
  background: #ffffff;
  padding: 0.82rem 0.9rem;
  color: #1e293b;
  font: inherit;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.profilium-demo__field input::placeholder {
  color: #475569;
}

.profilium-demo__field select {
  appearance: none;
  padding-right: 2.3rem;
  background-image: linear-gradient(45deg, transparent 50%, #475569 50%), linear-gradient(135deg, #475569 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% - 3px), calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.profilium-demo__field input:focus,
.profilium-demo__field select:focus {
  outline: none;
  border-color: #ff66c4;
  box-shadow: 0 0 0 4px rgba(255, 102, 196, 0.18);
}

.profilium-demo__error {
  color: #ef4444;
  font-size: 0.79rem;
  line-height: 1.3;
}

.profilium-demo__submit {
  padding: 8px 16px;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600 !important;
  transition: background-color 0.3s ease;
  cursor: pointer;
  font-size: 14px;
  border: none;
  font-family: inherit;
  display: inline-block;
  width: 100%;
  min-height: 52px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%);
  color: #fff;
  font-size: 1.02rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(238, 76, 119, 0.25);
}
.profilium-demo__submit:hover {
  background: linear-gradient(135deg, #ee4c77 0%, #ff66c4 100%);
  transform: translateY(-1px);
}

.profilium-demo__legal {
  margin: 0;
  text-align: center;
  color: #475569;
  font-size: 0.91rem;
  line-height: 1.55;
}
.profilium-demo__legal a {
  color: #ee4c77;
  text-decoration: none;
  font-weight: 600;
}
.profilium-demo__legal a:hover {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .profilium-demo-page {
    padding-top: calc(80px + 1.3rem);
  }
  .profilium-demo__card {
    padding: 1.1rem 1rem;
  }
  .profilium-demo__grid {
    grid-template-columns: 1fr;
  }
}
.public-jobs-page {
  padding: 30px 0 60px;
  background-color: #f8fafc;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.public-jobs-page .container {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
}
.public-jobs-page .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.public-jobs-page .section-header h1 {
  font-family: "Nunito", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #170017;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ff66c4, #8B5CF6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.public-jobs-page .section-header p {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}
.public-jobs-page .jobs-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  color: #ff66c4;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.public-jobs-page .jobs-back-link:hover {
  color: color-mix(in srgb, #ff66c4 80%, black);
}
.public-jobs-page .public-jobs-empty {
  text-align: center;
  padding: 4rem 1rem;
  background: white;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.public-jobs-page .public-jobs-empty .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(255, 102, 196, 0.1);
  color: #ff66c4;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.public-jobs-page .public-jobs-empty h2 {
  font-size: 1.5rem;
  color: #170017;
  margin-bottom: 1rem;
}
.public-jobs-page .public-jobs-empty p {
  color: #64748b;
}
.public-jobs-page .public-job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.public-jobs-page .public-job-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}
.public-jobs-page .public-job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 102, 196, 0.08);
  border-color: rgba(255, 102, 196, 0.2);
}
.public-jobs-page .public-job-card .job-title {
  font-size: 1.4rem;
  color: #170017;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.public-jobs-page .public-job-card .job-company {
  color: #ff66c4;
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
}
.public-jobs-page .public-job-card .job-company-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.public-jobs-page .public-job-card .job-company-logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}
.public-jobs-page .public-job-card .job-company-logo-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff66c4, #8B5CF6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.public-jobs-page .public-job-card .job-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #475569;
  font-size: 0.95rem;
}
.public-jobs-page .public-job-card .job-meta p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.public-jobs-page .public-job-card .job-meta p svg, .public-jobs-page .public-job-card .job-meta p i {
  color: #ff66c4;
  flex-shrink: 0;
}
.public-jobs-page .public-job-card .job-desc {
  color: #475569;
  line-height: 1.6;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
.public-jobs-page .public-job-card .job-actions {
  margin-top: auto;
  display: grid;
  gap: 0.75rem;
}
.public-jobs-page .public-job-card .job-actions .job-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.public-jobs-page .public-job-card .job-actions .job-btn.job-btn--primary {
  background: linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%);
  color: white;
  box-shadow: 0 5px 20px -5px rgba(255, 102, 196, 0.4);
}
.public-jobs-page .public-job-card .job-actions .job-btn.job-btn--primary:hover {
  box-shadow: 0 10px 25px -5px rgba(255, 102, 196, 0.6);
  filter: brightness(1.05);
}
.public-jobs-page .public-job-card .job-actions .job-btn.job-btn--ghost {
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.15);
  color: #170017;
}
.public-jobs-page .public-job-card .job-actions .job-btn.job-btn--ghost:hover {
  background: rgba(15, 23, 42, 0.05);
}
.public-jobs-page .job-detail-layout {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 0.5rem;
  max-width: 1600px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .public-jobs-page .job-detail-layout {
    grid-template-columns: 1fr;
  }
}
.public-jobs-page .public-job-detail-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  max-width: none;
}
@media (max-width: 768px) {
  .public-jobs-page .public-job-detail-card {
    padding: 2rem;
  }
}
.public-jobs-page .public-job-detail-card .job-company {
  color: #ff66c4;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.public-jobs-page .public-job-detail-card .job-company-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.public-jobs-page .public-job-detail-card .job-company-logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}
.public-jobs-page .public-job-detail-card .job-company-logo-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff66c4, #8B5CF6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.public-jobs-page .public-job-detail-card .job-meta-lines {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2rem;
  color: #475569;
  font-size: 1rem;
}
.public-jobs-page .public-job-detail-card .job-meta-lines .job-meta-line {
  margin: 0;
}
.public-jobs-page .public-job-detail-card .job-meta-lines .job-meta-line strong {
  color: #170017;
  margin-right: 0.25rem;
}
.public-jobs-page .public-job-detail-card h2 {
  font-size: 1.5rem;
  color: #170017;
  margin-bottom: 1rem;
  margin-top: 2.5rem;
}
.public-jobs-page .public-job-detail-card .job-desc {
  color: #475569;
  line-height: 1.7;
}
.public-jobs-page .public-job-detail-card .job-desc ul {
  margin-top: 0.5rem;
  padding-left: 1.25rem;
}
.public-jobs-page .public-job-detail-card .job-desc ul li {
  margin-bottom: 0.5rem;
}
.public-jobs-page .public-job-detail-card .job-desc p {
  margin-bottom: 1rem;
}
.public-jobs-page .public-job-detail-card .job-list {
  margin: 0;
  padding-left: 1.25rem;
  color: #475569;
  line-height: 1.7;
}
.public-jobs-page .public-job-detail-card .job-list li {
  margin-bottom: 0.5rem;
}
.public-jobs-page .public-job-apply-aside {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  align-self: start;
  position: sticky;
  top: 120px;
}
@media (max-width: 768px) {
  .public-jobs-page .public-job-apply-aside {
    padding: 2rem;
    border-radius: 20px;
  }
}
.public-jobs-page .public-job-apply-aside h2 {
  font-size: 1.5rem;
  color: #170017;
  margin-bottom: 1.5rem;
}
.public-jobs-page .public-job-apply-aside .apply-text {
  margin: 0 0 1.5rem;
  color: #475569;
  line-height: 1.6;
}
.public-jobs-page .public-job-apply-aside .apply-actions .job-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%);
  color: white;
  box-shadow: 0 5px 20px -5px rgba(255, 102, 196, 0.4);
  border: none;
  cursor: pointer;
  width: 100%;
}
.public-jobs-page .public-job-apply-aside .apply-actions .job-btn:hover {
  box-shadow: 0 10px 25px -5px rgba(255, 102, 196, 0.6);
  filter: brightness(1.05);
}
.public-jobs-page .public-job-apply-aside .apply-actions .job-btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  filter: grayscale(100%);
}
.public-jobs-page .public-job-apply-aside .recruiter-form {
  display: grid;
  gap: 1rem;
}
.public-jobs-page .public-job-apply-aside .recruiter-form label {
  font-size: 0.95rem;
  font-weight: 500;
}

.dashboard-jobs-page {
  padding: 30px 0 60px;
  background-color: #f8fafc;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.dashboard-jobs-page .container {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
}
.dashboard-jobs-page .dashboard-jobs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e2e8f0;
}
@media (max-width: 768px) {
  .dashboard-jobs-page .dashboard-jobs-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
.dashboard-jobs-page .dashboard-jobs-heading {
  flex: 1;
}
.dashboard-jobs-page .dashboard-jobs-heading h1 {
  font-family: "Nunito", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #170017;
  margin: 0 0 0.75rem 0;
  background: linear-gradient(135deg, #ff66c4, #8B5CF6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .dashboard-jobs-page .dashboard-jobs-heading h1 {
    font-size: 2rem;
  }
}
.dashboard-jobs-page .dashboard-jobs-heading p {
  margin: 0;
  color: #64748b;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .dashboard-jobs-page .dashboard-jobs-heading p {
    font-size: 1rem;
  }
}
.dashboard-jobs-page .dashboard-jobs-actions {
  display: flex;
  gap: 1rem;
}
@media (max-width: 768px) {
  .dashboard-jobs-page .dashboard-jobs-actions {
    width: 100%;
  }
}
.dashboard-jobs-page .dashboard-job-profile-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%);
  border-radius: 12px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px -5px rgba(255, 102, 196, 0.4);
}
.dashboard-jobs-page .dashboard-job-profile-link:hover {
  box-shadow: 0 10px 25px -5px rgba(255, 102, 196, 0.6);
  filter: brightness(1.05);
}
@media (max-width: 768px) {
  .dashboard-jobs-page .dashboard-job-profile-link {
    width: 100%;
    justify-content: center;
  }
}
.dashboard-jobs-page .dashboard-jobs-empty {
  text-align: center;
  padding: 4rem 1rem;
  background: white;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.dashboard-jobs-page .dashboard-jobs-empty .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(255, 102, 196, 0.1);
  color: #ff66c4;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.dashboard-jobs-page .dashboard-jobs-empty h2 {
  font-size: 1.5rem;
  color: #170017;
  margin-bottom: 1rem;
}
.dashboard-jobs-page .dashboard-jobs-empty p {
  color: #64748b;
}
.dashboard-jobs-page .dashboard-job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.dashboard-jobs-page .dashboard-job-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}
.dashboard-jobs-page .dashboard-job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 102, 196, 0.08);
  border-color: rgba(255, 102, 196, 0.2);
}
.dashboard-jobs-page .dashboard-job-card .job-header-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.dashboard-jobs-page .dashboard-job-card .job-title {
  font-size: 1.4rem;
  color: #170017;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  flex: 1;
}
.dashboard-jobs-page .dashboard-job-card .job-applied-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  background-color: #d4edda;
  color: #155724;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.dashboard-jobs-page .dashboard-job-card .job-applied-badge svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 480px) {
  .dashboard-jobs-page .dashboard-job-card .job-applied-badge {
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
  }
}
.dashboard-jobs-page .dashboard-job-card .job-company-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.dashboard-jobs-page .dashboard-job-card .job-company-logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}
.dashboard-jobs-page .dashboard-job-card .job-company-logo-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff66c4, #8B5CF6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.dashboard-jobs-page .dashboard-job-card .job-company {
  color: #ff66c4;
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
}
.dashboard-jobs-page .dashboard-job-card .job-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #475569;
  font-size: 0.95rem;
}
.dashboard-jobs-page .dashboard-job-card .job-meta p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.dashboard-jobs-page .dashboard-job-card .job-meta p svg, .dashboard-jobs-page .dashboard-job-card .job-meta p i {
  color: #ff66c4;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.dashboard-jobs-page .dashboard-job-card .job-desc {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dashboard-jobs-page .dashboard-job-card .job-actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (max-width: 480px) {
  .dashboard-jobs-page .dashboard-job-card .job-actions {
    grid-template-columns: 1fr;
  }
}
.dashboard-jobs-page .dashboard-job-card .job-actions button {
  width: 100%;
  padding: 0.75rem;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.dashboard-jobs-page .dashboard-job-card .job-actions .dashboard-job-apply-form {
  width: 100%;
  margin: 0;
  display: flex;
}
.dashboard-jobs-page .dashboard-job-card .job-actions .dashboard-job-apply-form .job-btn {
  width: 100%;
  padding: 0.75rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
}
.dashboard-jobs-page .dashboard-job-card .job-actions .dashboard-job-apply-form .job-btn.job-btn--primary {
  background: linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%);
  color: white;
  box-shadow: 0 5px 20px -5px rgba(255, 102, 196, 0.4);
}
.dashboard-jobs-page .dashboard-job-card .job-actions .dashboard-job-apply-form .job-btn.job-btn--primary:hover:not(:disabled) {
  box-shadow: 0 10px 25px -5px rgba(255, 102, 196, 0.6);
  filter: brightness(1.05);
}
.dashboard-jobs-page .dashboard-job-card .job-actions .dashboard-job-apply-form .job-btn.job-btn--primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.dashboard-jobs-page .dashboard-job-card .job-actions .job-btn--ghost {
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.15);
  color: #170017;
}
.dashboard-jobs-page .dashboard-job-card .job-actions .job-btn--ghost:hover {
  background: rgba(15, 23, 42, 0.05);
  border-color: #ff66c4;
}
.dashboard-jobs-page .dashboard-job-card .job-actions .job-btn--ghost:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.dashboard-jobs-page .dashboard-job-card .job-actions .job-btn--ghost:disabled:hover {
  background: white;
  border-color: rgba(15, 23, 42, 0.15);
}
.dashboard-jobs-page .dashboard-job-card .job-actions .job-btn--disabled {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  cursor: not-allowed;
  opacity: 1;
}
.dashboard-jobs-page .dashboard-job-card .job-actions .job-btn--disabled:hover {
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.dashboard-jobs-page .dashboard-jobs-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0;
  flex-wrap: wrap;
}
.dashboard-jobs-page .dashboard-jobs-pagination .job-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.dashboard-jobs-page .dashboard-jobs-pagination .job-btn.job-btn--primary {
  background: linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%);
  color: white;
  box-shadow: 0 5px 20px -5px rgba(255, 102, 196, 0.4);
}
.dashboard-jobs-page .dashboard-jobs-pagination .job-btn.job-btn--primary:hover:not(:disabled) {
  box-shadow: 0 10px 25px -5px rgba(255, 102, 196, 0.6);
  filter: brightness(1.05);
}
.dashboard-jobs-page .dashboard-jobs-pagination .job-btn.job-btn--ghost {
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.15);
  color: #170017;
}
.dashboard-jobs-page .dashboard-jobs-pagination .job-btn.job-btn--ghost:hover:not([aria-disabled=true]) {
  background: rgba(15, 23, 42, 0.05);
  border-color: #ff66c4;
}
.dashboard-jobs-page .dashboard-jobs-pagination .job-btn.job-btn--ghost[aria-disabled=true] {
  opacity: 0.5;
  cursor: not-allowed;
}
.dashboard-jobs-page .dashboard-jobs-pagination .dash-pagecount {
  font-weight: 500;
  color: #64748b;
  font-size: 0.95rem;
  min-width: 150px;
  text-align: center;
}
.dashboard-jobs-page .job-detail-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.dashboard-jobs-page .job-detail-modal.is-open {
  display: flex;
  opacity: 1;
}
.dashboard-jobs-page .job-detail-modal-content {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  position: relative;
  animation: slideUp 0.3s ease;
}
@media (max-width: 768px) {
  .dashboard-jobs-page .job-detail-modal-content {
    padding: 1.5rem;
    border-radius: 20px;
  }
}
@media (max-width: 480px) {
  .dashboard-jobs-page .job-detail-modal-content {
    padding: 1.25rem;
    border-radius: 16px;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.dashboard-jobs-page .job-detail-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: none;
  background: rgba(15, 23, 42, 0.08);
  color: #0f172a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 1.5rem;
}
.dashboard-jobs-page .job-detail-modal-close:hover {
  background: rgba(15, 23, 42, 0.15);
}
@media (max-width: 480px) {
  .dashboard-jobs-page .job-detail-modal-close {
    width: 2rem;
    height: 2rem;
    top: 0.75rem;
    right: 0.75rem;
  }
}
.dashboard-jobs-page .job-detail-modal-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #e2e8f0;
}
.dashboard-jobs-page .job-detail-modal-header h2 {
  margin: 0 0 0.5rem 0;
  font-size: 2rem;
  font-weight: 800;
  color: #170017;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .dashboard-jobs-page .job-detail-modal-header h2 {
    font-size: 1.5rem;
  }
}
.dashboard-jobs-page .modal-company-name {
  margin: 0;
  color: #ff66c4;
  font-weight: 600;
  font-size: 1.1rem;
}
.dashboard-jobs-page .job-detail-modal-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 12px;
}
@media (max-width: 480px) {
  .dashboard-jobs-page .job-detail-modal-meta {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}
.dashboard-jobs-page .meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #475569;
}
.dashboard-jobs-page .meta-item .meta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff66c4;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.dashboard-jobs-page .job-detail-modal-body {
  margin: 2rem 0;
}
.dashboard-jobs-page .job-detail-description {
  color: #475569;
  line-height: 1.8;
  font-size: 1rem;
}
.dashboard-jobs-page .job-detail-description p {
  margin: 0 0 1rem 0;
}
.dashboard-jobs-page .job-detail-description p:last-child {
  margin-bottom: 0;
}
.dashboard-jobs-page .job-detail-modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid #e2e8f0;
}
@media (max-width: 480px) {
  .dashboard-jobs-page .job-detail-modal-actions {
    grid-template-columns: 1fr;
  }
}
.dashboard-jobs-page .job-detail-modal-actions .job-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}
.dashboard-jobs-page .job-detail-modal-actions .job-btn.job-btn--primary {
  background: linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%);
  color: white;
  box-shadow: 0 5px 20px -5px rgba(255, 102, 196, 0.4);
}
.dashboard-jobs-page .job-detail-modal-actions .job-btn.job-btn--primary:hover {
  box-shadow: 0 10px 25px -5px rgba(255, 102, 196, 0.6);
  filter: brightness(1.05);
}
.dashboard-jobs-page .job-detail-modal-actions .job-btn.job-btn--ghost {
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.15);
  color: #170017;
}
.dashboard-jobs-page .job-detail-modal-actions .job-btn.job-btn--ghost:hover {
  background: rgba(15, 23, 42, 0.05);
  border-color: #ff66c4;
}

.dashboard-applications-page {
  padding: 30px 0 60px;
  background-color: #f8fafc;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.dashboard-applications-page .container {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
}
.dashboard-applications-page .applications-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e2e8f0;
}
@media (max-width: 768px) {
  .dashboard-applications-page .applications-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
.dashboard-applications-page .applications-heading {
  flex: 1;
}
.dashboard-applications-page .applications-heading h1 {
  font-family: "Nunito", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #170017;
  margin: 0 0 0.75rem 0;
  background: linear-gradient(135deg, #ff66c4, #8B5CF6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .dashboard-applications-page .applications-heading h1 {
    font-size: 2rem;
  }
}
.dashboard-applications-page .applications-heading p {
  margin: 0;
  color: #64748b;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .dashboard-applications-page .applications-heading p {
    font-size: 1rem;
  }
}
.dashboard-applications-page .applications-actions {
  display: flex;
  gap: 1rem;
}
@media (max-width: 768px) {
  .dashboard-applications-page .applications-actions {
    width: 100%;
  }
}
.dashboard-applications-page .applications-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%);
  border-radius: 12px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px -5px rgba(255, 102, 196, 0.4);
}
.dashboard-applications-page .applications-back-link:hover {
  box-shadow: 0 10px 25px -5px rgba(255, 102, 196, 0.6);
  filter: brightness(1.05);
}
@media (max-width: 768px) {
  .dashboard-applications-page .applications-back-link {
    width: 100%;
    justify-content: center;
  }
}
.dashboard-applications-page .applications-empty {
  text-align: center;
  padding: 4rem 1rem;
  background: white;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.dashboard-applications-page .applications-empty .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(255, 102, 196, 0.1);
  color: #ff66c4;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.dashboard-applications-page .applications-empty h2 {
  font-size: 1.5rem;
  color: #170017;
  margin-bottom: 1rem;
}
.dashboard-applications-page .applications-empty p {
  color: #64748b;
}
.dashboard-applications-page .applications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.dashboard-applications-page .application-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}
.dashboard-applications-page .application-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 102, 196, 0.08);
  border-color: rgba(255, 102, 196, 0.2);
}
.dashboard-applications-page .application-card .application-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.dashboard-applications-page .application-card .application-title {
  font-size: 1.4rem;
  color: #170017;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  flex: 1;
}
.dashboard-applications-page .application-card .application-status {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.dashboard-applications-page .application-card .application-status.application-status--pending {
  background: rgba(251, 146, 60, 0.1);
  color: #ea580c;
}
.dashboard-applications-page .application-card .application-status.application-status--progress {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
}
.dashboard-applications-page .application-card .application-status.application-status--success {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}
.dashboard-applications-page .application-card .application-status.application-status--danger {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}
.dashboard-applications-page .application-card .application-status.application-status--neutral {
  background: rgba(100, 116, 139, 0.1);
  color: #475569;
}
.dashboard-applications-page .application-card .application-company {
  color: #ff66c4;
  font-weight: 600;
  font-size: 1rem;
  margin: 0 0 1rem 0;
}
.dashboard-applications-page .application-card .application-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: #475569;
  font-size: 0.95rem;
}
.dashboard-applications-page .application-card .application-meta p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.dashboard-applications-page .application-card .application-meta p svg, .dashboard-applications-page .application-card .application-meta p i {
  color: #ff66c4;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.dashboard-applications-page .application-card .application-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.dashboard-applications-page .application-card .application-date {
  display: block;
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 500;
}

.candidate-welcome-page {
  padding-top: 96px;
  min-height: 100vh;
  background: #f4f2f8;
}

.completeprofilecontainer {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  width: min(1280px, 100% - 2.5rem);
  margin: 1.8rem auto 2.5rem;
  gap: 1.25rem;
  align-items: flex-start;
}

.form-column {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-header-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.form-header h1 {
  margin: 0 0 0.3rem;
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #170017;
  background: none;
  -webkit-text-fill-color: currentcolor;
}
.form-header p {
  margin: 0;
  color: #aaa;
  line-height: 1.65;
  font-size: 0.86rem;
  max-width: 72ch;
}

.progress-sidebar {
  width: 220px;
  flex: 0 0 220px;
  background: #fff;
  border: 1px solid #ede8f5;
  border-radius: 18px;
  padding: 1.2rem 0.85rem;
  box-shadow: none;
  position: sticky;
  top: calc(80px + 1rem);
}
.progress-sidebar p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  font-weight: 800;
  color: #170017;
}

.progress-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.progress-list .progress-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 44px;
  padding: 0.55rem 0.6rem;
  border-radius: 0.65rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.progress-list .progress-item:hover {
  background: #f4f2f8;
  border-color: transparent;
}
.progress-list .progress-item:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(254, 60, 211, 0.2);
}
.progress-list .progress-item.active {
  background: #f0ebfb;
  border-color: transparent;
}
.progress-list .progress-item.completed .progress-icon {
  background: #f0ebfb;
  color: #6b00c9;
  border-color: #6b00c9;
}
.progress-list .progress-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1.5px solid #ede8f5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 0.78rem;
  background: #fff;
  flex-shrink: 0;
}
.progress-list .progress-icon.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%);
}
.progress-list .progress-content {
  min-width: 0;
  flex: 1;
}
.progress-list .progress-label {
  display: block;
  color: #777;
  font-size: 0.82rem;
  line-height: 1.25;
  font-weight: 600;
}
.progress-list .progress-label.active {
  color: #6b00c9;
}
.progress-list .progress-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.main-form {
  background: #fff;
  border: 1px solid #ede8f5;
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 2px 16px rgba(107, 0, 201, 0.05);
}

.form {
  display: block;
}

.step-panel {
  margin-bottom: 0.5rem;
}

.form-stack {
  display: grid;
  gap: 1rem;
}

.section-block {
  border: 1px solid #ede8f5;
  border-radius: 16px;
  padding: 1rem;
  background: #fff;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.section-title .section-icon {
  font-size: 1.2rem;
  color: #6b00c9;
}
.section-title p {
  margin: 0;
  font-size: 0.96rem;
  color: #170017;
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  margin: 0;
  font-weight: 600;
  color: #555;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.72rem 0.82rem;
  border: 1.5px solid #ede8f5;
  border-radius: 0.62rem;
  font-size: 0.92rem;
  line-height: 1.35;
  color: #170017;
  font-family: inherit;
  background: #f8f6fc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #6b00c9;
  box-shadow: 0 0 0 3px rgba(107, 0, 201, 0.08);
  background: #fff;
}
.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.error-message {
  display: inline-block;
  margin-top: 0.2rem;
  color: #b91c1c;
  font-size: 0.75rem;
  line-height: 1.35;
}

[data-profile-message] {
  min-height: 1.3rem;
  font-weight: 500;
  font-size: 0.88rem;
}

.dropzone {
  display: block;
  width: 100%;
  border: 2px dashed #d8ccef;
  border-radius: 0.9rem;
  padding: 1rem;
  text-align: center;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  position: relative;
  overflow: hidden;
}
.dropzone:hover, .dropzone.active {
  border-color: #6b00c9;
  background: #f0ebfb;
  box-shadow: none;
  transform: none;
}
.dropzone.has-file {
  border-style: solid;
  background: #fff;
}
.dropzone p {
  margin: 0 0 0.6rem;
  color: #777;
  font-size: 0.86rem;
  line-height: 1.55;
}
.dropzone .btn {
  background: linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%);
  color: #fff;
  padding: 0.55rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 10px;
  display: inline-block;
  pointer-events: none;
}
.dropzone small {
  display: block;
  margin-top: 0.5rem;
  color: #94a3b8;
  font-size: 0.76rem;
}
.dropzone .file-preview {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-radius: 0.65rem;
  padding: 0.75rem;
  background: #fdf2f8;
  text-align: left;
}
.dropzone .file-preview .icon {
  width: 42px;
  height: 42px;
  border-radius: 0.6rem;
  background: rgba(254, 60, 211, 0.14);
  color: #ff66c4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.dropzone .file-preview .file-info {
  flex: 1;
  min-width: 0;
}
.dropzone .file-preview .file-name {
  margin: 0 0 0.15rem;
  font-weight: 600;
  color: #1e293b;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dropzone .file-preview .file-size {
  margin: 0;
  color: #475569;
  font-size: 0.78rem;
}
.dropzone .file-preview .remove-file {
  border: 1px solid #f3d1e8;
  background: #fff;
  color: #475569;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.dropzone .file-preview .remove-file:hover {
  color: #b91c1c;
  border-color: #fecaca;
  background: #fff1f2;
}
.dropzone .uploading-state .upload-spinner {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 4px solid #f1f5f9;
  border-top-color: #ff66c4;
  margin: 0 auto 0.7rem;
  animation: cv-spin 0.9s linear infinite;
}
.dropzone .uploading-state p {
  margin-bottom: 0;
  color: #ff66c4;
  font-weight: 600;
}

@keyframes cv-spin {
  to {
    transform: rotate(360deg);
  }
}
.submit-btn,
.secondary-btn {
  border-radius: 0.7rem;
  padding: 0.72rem 1.12rem;
  font-size: 0.86rem;
  font-weight: 600;
  font-family: inherit;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.submit-btn:disabled,
.secondary-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.submit-btn {
  background: linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(254, 60, 114, 0.22);
}
.submit-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(254, 60, 114, 0.28);
}

.secondary-btn {
  background: #fff;
  color: #1e293b;
  border-color: #f3d1e8;
}
.secondary-btn:hover:not(:disabled) {
  border-color: rgba(254, 60, 211, 0.45);
  color: #ff66c4;
}

.form-actions--pager {
  margin-top: 1rem;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.form-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.form-actions .save-btn,
.form-actions .cancel-btn {
  border-radius: 0.62rem;
  padding: 0.6rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
}
.form-actions .save-btn {
  color: #fff;
  background: linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%);
}
.form-actions .save-btn:hover {
  filter: brightness(0.98);
}
.form-actions .cancel-btn {
  background: #fff;
  border-color: #f3d1e8;
  color: #475569;
}
.form-actions .cancel-btn:hover {
  border-color: rgba(254, 60, 211, 0.35);
  color: #ff66c4;
}

.phone-input-container {
  width: 100%;
}

@media (max-width: 1024px) {
  .completeprofilecontainer {
    width: min(100%, 100% - 1.2rem);
    margin: 1.3rem auto 2rem;
    gap: 1rem;
    grid-template-columns: 1fr;
  }
  .progress-sidebar {
    width: 100%;
    position: static;
    padding: 1rem;
  }
  .progress-list {
    gap: 0.45rem;
  }
  .progress-list .progress-item {
    min-height: 44px;
  }
}
@media (max-width: 768px) {
  .main-form {
    padding: 1rem;
  }
  .section-block {
    padding: 0.8rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .dropzone {
    padding: 0.85rem;
  }
  .dropzone .file-preview {
    padding: 0.65rem;
  }
  .form-actions--pager .secondary-btn,
  .form-actions--pager .submit-btn {
    width: 100%;
  }
}
.working-experience-container {
  margin-top: 16px;
}
.working-experience-container .experience-list {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}
.working-experience-container .experience-card {
  background: white;
  border: 1px solid #ede8f5;
  border-radius: 13px;
  padding: 16px 18px;
  position: relative;
  transition: box-shadow 0.15s ease;
  overflow: hidden;
}
.working-experience-container .experience-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #6b00c9, #fe3c72);
}
.working-experience-container .experience-card:hover {
  box-shadow: 0 4px 18px rgba(107, 0, 201, 0.08);
}
.working-experience-container .experience-card .card-actions {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
}
.working-experience-container .experience-card .card-actions button {
  background: #f4f2f8;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #475569;
  transition: all 0.2s;
}
.working-experience-container .experience-card .card-actions .remove-btn:hover {
  background: #ffe8ee;
  color: #d32f2f;
}
.working-experience-container .experience-card .card-actions .edit-btn:hover {
  background: rgba(255, 102, 196, 0.1);
  color: #ff66c4;
}
.working-experience-container .experience-card p {
  margin: 0 0 4px;
  font-size: 0.95rem;
  font-weight: 800;
  color: #170017;
}
.working-experience-container .experience-card .company {
  color: #fe3c72;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
  font-size: 0.78rem;
}
.working-experience-container .experience-card .duration {
  font-size: 0.72rem;
  color: #aaa;
  margin-bottom: 12px;
  display: block;
}
.working-experience-container .experience-card .duration .current-badge {
  background: rgba(34, 197, 94, 0.1);
  color: rgb(26.4935064935, 153.5064935065, 73.2467532468);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  margin-left: 8px;
  font-weight: 600;
}
.working-experience-container .experience-card .description {
  color: #666;
  font-size: 0.78rem;
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
  white-space: pre-wrap;
}
.working-experience-container .add-experience-btn {
  width: 100%;
  max-width: none;
  padding: 16px;
  background: transparent;
  border: 2px dashed #d8ccef;
  border-radius: 12px;
  color: #6b00c9;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-family: inherit;
}
.working-experience-container .add-experience-btn:hover {
  background: #f0ebfb;
  border-color: #6b00c9;
}

.experience-form {
  padding: 14px;
  border: 1px solid #ede8f5;
  border-radius: 14px;
  background: #fff;
}
.experience-form.is-inline-edit {
  margin-top: -6px;
  border-color: rgba(255, 102, 196, 0.2);
  box-shadow: 0 10px 28px rgba(107, 0, 201, 0.08);
}
.experience-form h3 {
  margin: 0 0 20px;
  color: #1e293b;
}
.experience-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .experience-form .form-row {
    grid-template-columns: 1fr;
  }
}
.experience-form .date-row {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}
.experience-form .date-row .year-select,
.experience-form .date-row .month-select {
  flex: 1;
}
.experience-form .checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
}
.experience-form .checkbox-group input[type=checkbox] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  border-color: #f3d1e8;
}
.experience-form .checkbox-group input[type=checkbox]:checked {
  accent-color: #ff66c4;
}
.experience-form .checkbox-group label {
  margin: 0 !important;
  cursor: pointer;
  font-weight: normal !important;
}
.experience-form .form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}
.experience-form .form-actions button {
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.experience-form .form-actions .cancel-btn {
  background: white;
  border: 1px solid #f3d1e8;
  color: #475569;
}
.experience-form .form-actions .cancel-btn:hover {
  background: #f5f5f5;
}
.experience-form .form-actions .save-btn {
  background: #ff66c4;
  border: none;
  color: white;
}
.experience-form .form-actions .save-btn:hover {
  background: rgb(255, 76.5, 186.1666666667);
}
.experience-form .form-actions .save-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.education-container {
  margin-top: 0;
}
.education-container .education-list {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}
.education-container .education-card {
  background: #fff;
  border: 1px solid #ede8f5;
  border-radius: 13px;
  padding: 16px 18px;
  position: relative;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
  overflow: hidden;
}
.education-container .education-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #6b00c9, #fe3c72);
}
.education-container .education-card:hover {
  box-shadow: 0 4px 18px rgba(107, 0, 201, 0.08);
  border-color: #ede8f5;
}
.education-container .education-card .card-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
}
.education-container .education-card .card-actions button {
  background: #f4f2f8;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #475569;
  transition: all 0.2s ease;
}
.education-container .education-card .card-actions .remove-btn:hover {
  background: #ffe8ee;
  color: #d32f2f;
}
.education-container .education-card .card-actions .edit-btn:hover {
  background: rgba(255, 102, 196, 0.12);
  color: #ff66c4;
}
.education-container .education-card h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  color: #170017;
  font-weight: 800;
  max-width: calc(100% - 92px);
  line-height: 1.35;
}
.education-container .education-card .details {
  font-size: 0.76rem;
  color: #666;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.education-container .education-card .details span::before {
  content: "•";
  margin-right: 8px;
  color: rgba(148, 163, 184, 0.85);
}
.education-container .education-card .duration {
  font-size: 0.72rem;
  color: #aaa;
  display: block;
}
.education-container .education-card .duration .current-badge {
  background: rgba(34, 197, 94, 0.1);
  color: rgb(26.4935064935, 153.5064935065, 73.2467532468);
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  margin-left: 6px;
  font-weight: 600;
}
.education-container .add-education-btn {
  width: 100%;
  max-width: none;
  padding: 14px 16px;
  background: transparent;
  border: 2px dashed #d8ccef;
  border-radius: 12px;
  color: #6b00c9;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: inherit;
}
.education-container .add-education-btn:hover {
  background: #f0ebfb;
  border-color: #6b00c9;
}

.education-form {
  padding: 14px;
  border: 1px solid #ede8f5;
  border-radius: 14px;
  background: #fff;
}
.education-form.is-inline-edit {
  margin-top: -2px;
  border-color: rgba(255, 102, 196, 0.2);
  box-shadow: 0 10px 28px rgba(107, 0, 201, 0.08);
}
.education-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
@media (max-width: 600px) {
  .education-form .form-row {
    grid-template-columns: 1fr;
  }
}
.education-form .date-row {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}
.education-form .date-row .year-select,
.education-form .date-row .month-select {
  flex: 1;
}
.education-form .checkbox-group {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.education-form .checkbox-group input[type=checkbox] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  border-color: #f3d1e8;
}
.education-form .checkbox-group input[type=checkbox]:checked {
  accent-color: #ff66c4;
}
.education-form .checkbox-group label {
  margin: 0 !important;
  cursor: pointer;
  font-weight: normal !important;
}
.education-form .form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
}
.education-form .form-actions button {
  padding: 9px 14px;
  border-radius: 0.62rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.education-form .form-actions .cancel-btn {
  background: #fff;
  border: 1px solid #f3d1e8;
  color: #475569;
}
.education-form .form-actions .cancel-btn:hover {
  background: #f8fafc;
}
.education-form .form-actions .save-btn {
  background: linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%);
  border: none;
  color: #fff;
}
.education-form .form-actions .save-btn:hover {
  filter: brightness(0.98);
}
.education-form .form-actions .save-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.languages-container {
  margin-top: 0;
}
.languages-container .selected-languages-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}
.languages-container .language-card {
  background: #fff;
  border: 1px solid #ede8f5;
  border-radius: 0.8rem;
  padding: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
@media (max-width: 600px) {
  .languages-container .language-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
.languages-container .language-card:hover {
  box-shadow: 0 8px 18px rgba(107, 0, 201, 0.06);
  border-color: #ede8f5;
}
.languages-container .language-card .lang-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.languages-container .language-card .lang-info strong {
  font-size: 0.95rem;
  color: #170017;
  line-height: 1.3;
}
.languages-container .language-card .lang-info .native-name {
  color: #aaa;
  font-size: 0.78rem;
}
.languages-container .language-card .proficiency-select {
  min-width: 180px;
}
.languages-container .language-card .proficiency-select label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 4px;
}
.languages-container .language-card .proficiency-select select {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border: 1.5px solid #ede8f5;
  border-radius: 0.6rem;
  font-size: 0.86rem;
  color: #170017;
  background: #f8f6fc;
  font-family: inherit;
}
.languages-container .language-card .proficiency-select select:focus {
  outline: none;
  border-color: #6b00c9;
  box-shadow: 0 0 0 3px rgba(107, 0, 201, 0.08);
}
.languages-container .language-card .remove-btn {
  border: 1px solid #f3d1e8;
  background: #fff;
  color: #475569;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: all 0.2s ease;
  font-size: 1rem;
  line-height: 1;
}
.languages-container .language-card .remove-btn:hover {
  background: #ffe8ee;
  border-color: #fecaca;
  color: #d32f2f;
}

.progress-stepper-container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.89);
  position: sticky;
  top: 0;
  z-index: 50;
}

.progress-stepper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 78px;
}
.progress-stepper::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 37%;
  height: 3px;
  background: #e0e0e0;
  transform: translateY(-50%);
  z-index: 1;
}
.progress-stepper::after {
  content: "";
  position: absolute;
  left: 0;
  width: var(--progress-width);
  top: 50%;
  height: 3px;
  background: linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%);
  transform: translateY(-50%);
  z-index: 1;
  transition: width 0.6s ease;
}

.step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.step-item.completed .step-label, .step-item.active .step-label {
  color: #1e293b;
  font-weight: 600;
}
.step-item.completed .step-circle, .step-item.active .step-circle {
  background: #ff66c4;
  border-color: #ff66c4;
  color: white;
}
.step-item.active .step-circle {
  box-shadow: 0 0 0 8px rgba(255, 102, 196, 0.2);
  transform: scale(1.1);
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 3px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #475569;
  z-index: 2;
  transition: all 0.4s ease;
}
.step-circle .check-icon {
  font-size: 24px;
  color: white;
}

.step-label {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #475569;
  text-align: center;
  max-width: 120px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.4s ease;
}

@media (max-width: 768px) {
  .progress-stepper-container {
    padding: 0.5rem;
  }
  .progress-stepper {
    height: 64px;
  }
  .step-circle {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .step-circle .check-icon {
    font-size: 22px;
  }
  .step-label {
    font-size: 0.8rem;
    max-width: 90px;
  }
}
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 240px;
  background-color: #ffffff;
  border-right: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  transition: width 0.3s ease;
  z-index: 30;
}
.sidebar.collapsed {
  width: 72px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1rem;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1.25rem;
  color: #111827;
}

.logoText {
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.collapsed .logoText {
  opacity: 0;
  width: 0;
  overflow: hidden;
}

.collapsed .header {
  justify-content: center;
}

.toggleButton {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s ease;
}
.toggleButton:hover {
  background-color: #f3f4f6;
  color: #111827;
}

.collapsed .toggleButton {
  position: absolute;
  right: 0.5rem;
}

.nav {
  flex: 1;
  overflow-y: auto;
}

.menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menuItem {
  width: 100%;
}

.navLink {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  color: #4b5563;
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 0.375rem;
  margin: 0.25rem 0.5rem;
}
.navLink:hover {
  background-color: #f3f4f6;
  color: #111827;
}
.navLink svg {
  flex-shrink: 0;
  color: #6b7280;
}

.label {
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.collapsed .navLink {
  justify-content: center;
  padding: 0.85rem;
  margin: 0.25rem;
}

.collapsed .label {
  opacity: 0;
  width: 0;
  overflow: hidden;
}

/* Optional: add active state styling (you can handle active class via usePathname if needed) */
/* .navLink.active {
  background-color: #eff6ff;
  color: #2563eb;

  svg {
    color: #2563eb;
  }
} */
.psycho-test-container {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: #170017;
  overflow: hidden;
  position: relative;
  padding-top: 5rem;
}
.psycho-test-container.results-container {
  background: #170017;
}
.psycho-test-container .timer-badge {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: #1e293b;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  font-feature-settings: "tnum";
  z-index: 10;
}
.psycho-test-container .timer-badge svg {
  color: #ee4c77;
  font-size: 1.2rem;
}
.psycho-test-container .start-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  padding: 3rem;
  border-radius: 24px;
  text-align: center;
  max-width: 600px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.psycho-test-container .start-card .illustration {
  color: #ee4c77;
  margin-bottom: 2rem;
  background: rgba(238, 76, 119, 0.1);
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-inline: auto;
}
.psycho-test-container .start-card h1 {
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 1rem;
  font-weight: 700;
}
.psycho-test-container .start-card p {
  color: #475569;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.psycho-test-container .start-card .instructions {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.psycho-test-container .start-card .instructions li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: #1e293b;
}
.psycho-test-container .start-card .instructions li svg {
  color: #ee4c77;
}
.psycho-test-container .btn-start {
  background: #ee4c77;
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(238, 76, 119, 0.3);
}
.psycho-test-container .btn-start:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(238, 76, 119, 0.4);
}
.psycho-test-container .btn-start:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 4px 15px rgba(238, 76, 119, 0.18);
}
.psycho-test-container .progress-header {
  width: 100%;
  max-width: 700px;
  margin-bottom: 3rem;
}
.psycho-test-container .progress-header .progress-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: #475569;
}
.psycho-test-container .progress-header .progress-bar-bg {
  height: 12px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  overflow: hidden;
}
.psycho-test-container .progress-header .progress-bar-bg .progress-bar-fill {
  height: 100%;
  background: #ee4c77;
  border-radius: 6px;
  transition: width 0.3s ease;
}
.psycho-test-container .card-area {
  width: 100%;
  max-width: 600px;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  margin-bottom: 2rem;
}
.psycho-test-container .question-card {
  background: white;
  width: 100%;
  height: 100%;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
}
.psycho-test-container .question-card .sjt-badge {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: #eff6ff;
  color: #ee4c77;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.psycho-test-container .question-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.psycho-test-container .question-card.logic-card, .psycho-test-container .question-card.sjt-card {
  justify-content: flex-start;
  padding-top: 4rem;
}
.psycho-test-container .question-card .logic-sequence {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.psycho-test-container .question-card .logic-sequence .sequence-item {
  width: 80px;
  height: 80px;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e293b;
}
.psycho-test-container .question-card .logic-sequence .sequence-item.missing {
  border-style: dashed;
  background: #eff6ff;
  color: #ee4c77;
}
.psycho-test-container .controls-area {
  display: flex;
  gap: 2rem;
  width: 100%;
  justify-content: center;
}
.psycho-test-container .controls-area .likert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  width: 100%;
  max-width: 700px;
}
@media (max-width: 768px) {
  .psycho-test-container .controls-area .likert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.psycho-test-container .controls-area .likert-grid .likert-btn {
  padding: 1rem;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: none;
  color: #1e293b;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  font-size: 0.95rem;
}
.psycho-test-container .controls-area .likert-grid .likert-btn.btn-0 {
  border-bottom: 3px solid #ef4444;
}
.psycho-test-container .controls-area .likert-grid .likert-btn.btn-1 {
  border-bottom: 3px solid #f97316;
}
.psycho-test-container .controls-area .likert-grid .likert-btn.btn-2 {
  border-bottom: 3px solid #84cc16;
}
.psycho-test-container .controls-area .likert-grid .likert-btn.btn-3 {
  border-bottom: 3px solid #22c55e;
}
.psycho-test-container .controls-area .likert-grid .likert-btn:active {
  transform: scale(0.95);
}
.psycho-test-container .controls-area .likert-grid .likert-btn.is-selected {
  outline: 3px solid rgba(238, 76, 119, 0.25);
  border-bottom-color: #ee4c77;
}
.psycho-test-container .controls-area .sjt-options-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 600px;
}
.psycho-test-container .controls-area .sjt-options-list .sjt-option-btn {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.2rem;
  cursor: pointer;
  transition: none;
  display: flex;
  align-items: center;
  text-align: left;
  gap: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}
.psycho-test-container .controls-area .sjt-options-list .sjt-option-btn .option-letter {
  background: #ee4c77;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}
.psycho-test-container .controls-area .sjt-options-list .sjt-option-btn .option-text {
  font-size: 1rem;
  color: #1e293b;
  line-height: 1.4;
}
.psycho-test-container .controls-area .sjt-options-list .sjt-option-btn.is-selected {
  border-color: #ee4c77;
  background: #fff;
}
.psycho-test-container .controls-area .logic-options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 600px;
}
@media (max-width: 768px) {
  .psycho-test-container .controls-area .logic-options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.psycho-test-container .controls-area .logic-options-grid .logic-option-btn {
  background: white;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  color: #1e293b;
}
.psycho-test-container .controls-area .logic-options-grid .logic-option-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-color: #ee4c77;
}
.psycho-test-container .controls-area .logic-options-grid .logic-option-btn:active {
  transform: translateY(0);
}
.psycho-test-container .keyboard-hint {
  margin-top: 2rem;
  color: #9ca3af;
  font-size: 0.9rem;
  height: 1.5rem;
}
.psycho-test-container .results-card {
  background: white;
  padding: 3rem;
  border-radius: 24px;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.psycho-test-container .results-card .results-header {
  text-align: center;
  margin-bottom: 3rem;
}
.psycho-test-container .results-card .results-header .icon-wrapper {
  background: #fff;
  color: #ee4c77;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(238, 76, 119, 0.2);
}
.psycho-test-container .results-card .results-header .icon-wrapper svg {
  font-size: 3rem;
}
.psycho-test-container .results-card .results-header .archetype-badge {
  margin-bottom: 2rem;
}
.psycho-test-container .results-card .results-header .archetype-badge .label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: #475569;
  font-weight: 600;
}
.psycho-test-container .results-card .results-header .archetype-badge h3 {
  font-size: 2.5rem;
  color: #1e293b;
  margin: 0.5rem 0;
  /*   background:  #3b82f6; */
}
.psycho-test-container .results-card .results-header .archetype-badge p {
  font-size: 1.1rem;
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.psycho-test-container .results-card .results-header .metrics-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.psycho-test-container .results-card .results-header .metrics-row .metric {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f8fafc;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: #475569;
}
.psycho-test-container .results-card .results-header .metrics-row .metric strong {
  color: #1e293b;
}
.psycho-test-container .results-card .results-header .metrics-row .metric svg {
  font-size: 1.2rem;
}
.psycho-test-container .results-card .results-header .metrics-row .metric.precision svg {
  color: #3b82f6;
}
.psycho-test-container .results-card .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .psycho-test-container .results-card .stats-grid {
    grid-template-columns: 1fr;
  }
}
.psycho-test-container .results-card .stat-item .stat-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.psycho-test-container .results-card .stat-item .stat-header .stat-label {
  color: #1e293b;
  font-size: 1.1rem;
}
.psycho-test-container .results-card .stat-item .stat-header .stat-value {
  color: #ee4c77;
}
.psycho-test-container .results-card .stat-item .stat-bar-bg {
  height: 10px;
  background: #f3f4f6;
  border-radius: 5px;
  overflow: hidden;
}
.psycho-test-container .results-card .stat-item .stat-bar-bg .stat-bar-fill {
  height: 100%;
  border-radius: 5px;
}
.psycho-test-container .results-card .stat-item .stat-bar-bg .stat-bar-fill.determination {
  background: #ef4444;
}
.psycho-test-container .results-card .stat-item .stat-bar-bg .stat-bar-fill.structure {
  background: #f97316;
}
.psycho-test-container .results-card .stat-item .stat-bar-bg .stat-bar-fill.interaction {
  background: #eab308;
}
.psycho-test-container .results-card .stat-item .stat-bar-bg .stat-bar-fill.adaptabilite {
  background: #22c55e;
}
.psycho-test-container .results-card .stat-item .stat-bar-bg .stat-bar-fill.creativite {
  background: #3b82f6;
}
.psycho-test-container .results-card .stat-item .stat-bar-bg .stat-bar-fill.analyse {
  background: #a855f7;
}
.psycho-test-container .results-card .stat-item .stat-bar-bg .stat-bar-fill.logique {
  background: #d946ef;
}
.psycho-test-container .results-card .stat-item .stat-bar-bg .stat-bar-fill.intelligence_emotionnelle {
  background: #ec4899;
}
.psycho-test-container .results-card .results-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.psycho-test-container .results-card .results-actions button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.psycho-test-container .results-card .results-actions button.btn-primary {
  background: white;
  border: 1px solid #d1d5db;
  color: #1e293b;
}
.psycho-test-container .results-card .results-actions button.btn-primary:hover {
  background: #f9fafb;
}
.psycho-test-container .results-card .results-actions button.btn-secondary {
  background: #ee4c77;
  color: white;
}
.psycho-test-container .results-card .results-actions button.btn-secondary:hover {
  background: rgb(233.5765306122, 29.4234693878, 83.612244898);
}

.psycho-test-container.psycho-start-container {
  min-height: calc(100vh - 80px);
  display: grid;
  place-items: start center;
  justify-content: unset;
  padding: clamp(18px, 3vw, 42px);
  background: linear-gradient(180deg, #ffffff 0%, #fdf2f8 100%);
  isolation: isolate;
}
.psycho-test-container.psycho-start-container .psycho-start-content {
  width: 100%;
  max-width: 1080px;
  z-index: 2;
}
.psycho-test-container.psycho-start-container .psycho-start-hero {
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(18px, 3vw, 32px);
  align-items: start;
}
@media (max-width: 920px) {
  .psycho-test-container.psycho-start-container .psycho-start-hero {
    grid-template-columns: 1fr;
  }
}
.psycho-test-container.psycho-start-container .psycho-start-hero-top {
  padding: clamp(8px, 1vw, 14px);
}
.psycho-test-container.psycho-start-container .psycho-start-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 102, 196, 0.2);
  color: #1e293b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 26px rgba(2, 6, 23, 0.07);
  backdrop-filter: blur(10px);
}
.psycho-test-container.psycho-start-container .psycho-start-badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ff66c4;
  box-shadow: 0 0 0 6px rgba(255, 102, 196, 0.18);
}
.psycho-test-container.psycho-start-container .psycho-start-title {
  margin-top: 16px;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.07;
  letter-spacing: -0.035em;
  font-weight: 900;
  color: #1e293b;
}
.psycho-test-container.psycho-start-container .psycho-start-title-accent {
  background: linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.psycho-test-container.psycho-start-container .psycho-start-subtitle {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(30, 41, 59, 0.74);
  max-width: 62ch;
}
.psycho-test-container.psycho-start-container .psycho-start-kpis {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 560px) {
  .psycho-test-container.psycho-start-container .psycho-start-kpis {
    grid-template-columns: 1fr;
  }
}
.psycho-test-container.psycho-start-container .psycho-start-kpi {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(243, 209, 232, 0.45);
  box-shadow: 0 10px 18px rgba(2, 6, 23, 0.06);
  backdrop-filter: blur(12px);
}
.psycho-test-container.psycho-start-container .psycho-start-kpi-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%);
  box-shadow: 0 10px 22px rgba(255, 102, 196, 0.22);
  flex-shrink: 0;
}
.psycho-test-container.psycho-start-container .psycho-start-kpi-label {
  font-size: 12px;
  color: rgba(71, 85, 105, 0.78);
}
.psycho-test-container.psycho-start-container .psycho-start-kpi-value {
  margin-top: 2px;
  font-size: 14px;
  font-weight: 800;
  color: rgba(30, 41, 59, 0.92);
}
.psycho-test-container.psycho-start-container .psycho-start-features {
  margin-top: 18px;
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}
.psycho-test-container.psycho-start-container .psycho-start-feature {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(243, 209, 232, 0.45);
}
.psycho-test-container.psycho-start-container .psycho-start-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 102, 196, 0.12);
  border: 1px solid rgba(255, 102, 196, 0.2);
  color: rgba(30, 41, 59, 0.92);
}
.psycho-test-container.psycho-start-container .psycho-start-feature-title {
  font-size: 14px;
  font-weight: 900;
  color: rgba(30, 41, 59, 0.95);
}
.psycho-test-container.psycho-start-container .psycho-start-feature-text {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(71, 85, 105, 0.82);
}
.psycho-test-container.psycho-start-container .psycho-start-card {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(243, 209, 232, 0.55);
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.14);
  backdrop-filter: blur(16px);
  padding: clamp(18px, 2.5vw, 26px);
}
.psycho-test-container.psycho-start-container .psycho-start-image-swap {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 5/3;
  margin: 0 auto 14px;
  border-radius: 16px;
  overflow: hidden;
  background: radial-gradient(circle at 30% 30%, rgba(255, 102, 196, 0.1), transparent 60%), radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.12), transparent 55%), rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(243, 209, 232, 0.55);
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.1);
}
.psycho-test-container.psycho-start-container .psycho-start-image-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  animation: psychoStartImageFadeSwap 8s infinite;
  transform: scale(1.01);
  pointer-events: none;
}
.psycho-test-container.psycho-start-container .psycho-start-image-frame-alt {
  animation-delay: 4s;
}
.psycho-test-container.psycho-start-container .psycho-start-card-meta {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(243, 209, 232, 0.55);
}
.psycho-test-container.psycho-start-container .psycho-start-card-meta-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%);
  box-shadow: 0 10px 22px rgba(255, 102, 196, 0.18);
  flex-shrink: 0;
}
.psycho-test-container.psycho-start-container .psycho-start-card-meta-text {
  font-size: 13px;
  color: rgba(71, 85, 105, 0.86);
}
.psycho-test-container.psycho-start-container .psycho-start-card-meta-text strong {
  color: rgba(30, 41, 59, 0.96);
  font-weight: 900;
}
.psycho-test-container.psycho-start-container .psycho-start-card-header {
  margin-top: 12px;
}
.psycho-test-container.psycho-start-container .psycho-start-card-header h2 {
  font-size: 18px;
  font-weight: 900;
  color: rgba(30, 41, 59, 0.96);
  letter-spacing: -0.01em;
}
.psycho-test-container.psycho-start-container .psycho-start-card-header p {
  margin-top: 6px;
  font-size: 14px;
  color: rgba(71, 85, 105, 0.82);
  line-height: 1.55;
}
.psycho-test-container.psycho-start-container .psycho-start-cta-row {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}
.psycho-test-container.psycho-start-container .psycho-start-btn {
  height: 54px;
  width: 100%;
  border-radius: 14px;
  background: linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%);
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.01em;
  box-shadow: 0 16px 34px rgba(255, 102, 196, 0.26);
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}
.psycho-test-container.psycho-start-container .psycho-start-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 18px 46px rgba(255, 102, 196, 0.32);
}
.psycho-test-container.psycho-start-container .psycho-start-btn:active:not(:disabled) {
  transform: translateY(0);
}
.psycho-test-container.psycho-start-container .psycho-start-btn:focus-visible {
  outline: 3px solid rgba(255, 102, 196, 0.3);
  outline-offset: 3px;
}
.psycho-test-container.psycho-start-container .psycho-start-btn-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.psycho-test-container.psycho-start-container .psycho-start-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.95;
}
.psycho-test-container.psycho-start-container .psycho-start-cta-hint {
  font-size: 12px;
  line-height: 1.45;
  color: rgba(71, 85, 105, 0.74);
}
.psycho-test-container.psycho-start-container .psycho-start-error {
  margin-top: 0;
  min-height: 1.4rem;
  height: auto;
  color: #ef4444;
  font-size: 13px;
}
.psycho-test-container.psycho-start-container .psycho-start-grid {
  position: absolute;
  inset: -35% -25%;
  background-image: linear-gradient(to right, rgba(15, 23, 42, 0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(15, 23, 42, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  transform: rotate(-8deg);
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}
.psycho-test-container.psycho-start-container .psycho-start-blob-a,
.psycho-test-container.psycho-start-container .psycho-start-blob-b {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
}
.psycho-test-container.psycho-start-container .psycho-start-blob-a {
  top: -210px;
  left: -210px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 102, 196, 0.38), transparent 60%), radial-gradient(circle at 70% 60%, rgba(139, 92, 246, 0.28), transparent 62%);
}
.psycho-test-container.psycho-start-container .psycho-start-blob-b {
  bottom: -240px;
  right: -240px;
  background: radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.32), transparent 62%), radial-gradient(circle at 70% 60%, rgba(59, 130, 246, 0.18), transparent 60%);
}
@media (prefers-reduced-motion: reduce) {
  .psycho-test-container.psycho-start-container .psycho-start-image-frame {
    animation: none;
    opacity: 1;
  }
  .psycho-test-container.psycho-start-container .psycho-start-image-frame-alt {
    display: none;
  }
}

.psycho-test-container.psycho-report-shell {
  min-height: calc(100vh - 80px);
  justify-content: center;
  padding: clamp(24px, 4vw, 46px);
  background: radial-gradient(circle at top left, rgba(254, 60, 114, 0.12), transparent 30%), radial-gradient(circle at top right, rgba(124, 58, 237, 0.12), transparent 34%), linear-gradient(180deg, #fffafc 0%, #f7f4ff 100%);
}
.psycho-test-container.psycho-report-shell .psycho-report-card {
  width: 100%;
  max-width: 780px;
  padding: clamp(20px, 3vw, 30px);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.62);
}
.psycho-test-container.psycho-report-shell .psycho-report-copy {
  margin-bottom: 1.25rem;
}
.psycho-test-container.psycho-report-shell .psycho-report-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  .psycho-test-container.psycho-report-shell .psycho-report-heading {
    flex-direction: column;
    align-items: flex-start;
  }
}
.psycho-test-container.psycho-report-shell .psycho-report-headline h1 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1.05;
  color: #170017;
  font-weight: 900;
}
.psycho-test-container.psycho-report-shell .psycho-report-headline p {
  margin: 0.55rem 0 0;
  max-width: 480px;
  color: #6b7280;
  font-size: 0.96rem;
  line-height: 1.65;
}
.psycho-test-container.psycho-report-shell .psycho-report-visual {
  margin: 1.9rem 0 0;
}
.psycho-test-container.psycho-report-shell .psycho-report-chart-frame {
  padding: clamp(14px, 2vw, 20px);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(252, 250, 255, 0.96), rgba(247, 244, 255, 0.96));
  border: 1px solid rgba(216, 180, 254, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}
.psycho-test-container.psycho-report-shell .psycho-report-chart-wrap {
  max-width: 420px;
  margin: 0 auto;
  padding: 4px;
}
.psycho-test-container.psycho-report-shell .psycho-report-actions {
  margin-top: 1.35rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
@media (max-width: 768px) {
  .psycho-test-container.psycho-report-shell .psycho-report-actions {
    flex-direction: column-reverse;
  }
}
.psycho-test-container.psycho-report-shell .psycho-report-actions button {
  min-height: 50px;
  border-radius: 16px;
  border: none;
  padding: 0.9rem 1.25rem;
  font-weight: 800;
  font-size: 0.96rem;
  cursor: pointer;
}
.psycho-test-container.psycho-report-shell .psycho-report-actions .btn-primary {
  background: #f3f4f6;
  color: #170017;
  border: 1px solid rgba(209, 213, 219, 0.9);
}
.psycho-test-container.psycho-report-shell .psycho-report-actions .btn-secondary {
  background: linear-gradient(135deg, #fe3c72 0%, #7c3aed 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(124, 58, 237, 0.24);
}

.psycho-test-container.psycho-runner-shell {
  min-height: calc(100vh - 80px);
  justify-content: flex-start;
  padding: 0;
  background: #ffffff;
  overflow: hidden;
}
.psycho-test-container.psycho-runner-shell .psycho-runner-layout {
  width: 100%;
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
}
.psycho-test-container.psycho-runner-shell .psycho-runner-sidebar {
  background: #ffffff;
  border-right: 1px solid #e2e8f0;
  padding: 1.5rem 1.25rem;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.psycho-test-container.psycho-runner-shell .psycho-runner-sidebar__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}
.psycho-test-container.psycho-runner-shell .psycho-runner-sidebar__desc {
  margin: 0;
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.5;
}
.psycho-test-container.psycho-runner-shell .psycho-runner-sidebar__divider {
  height: 1px;
  background: #e2e8f0;
  border: none;
  margin: 0;
}
.psycho-test-container.psycho-runner-shell .psycho-runner-sidebar__info {
  display: grid;
  gap: 0.6rem;
}
.psycho-test-container.psycho-runner-shell .psycho-runner-sidebar__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.psycho-test-container.psycho-runner-shell .psycho-runner-sidebar__label {
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.psycho-test-container.psycho-runner-shell .psycho-runner-sidebar__value {
  font-size: 0.88rem;
  color: #1e293b;
  font-weight: 600;
  text-align: right;
}
.psycho-test-container.psycho-runner-shell .progress-header {
  width: 100%;
  margin: 0;
  padding: 0;
}
.psycho-test-container.psycho-runner-shell .progress-header .progress-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 600;
}
.psycho-test-container.psycho-runner-shell .progress-header .progress-bar-bg {
  height: 6px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
}
.psycho-test-container.psycho-runner-shell .progress-header .progress-bar-bg .progress-bar-fill {
  background: #6366f1;
  border-radius: 999px;
}
.psycho-test-container.psycho-runner-shell .psycho-runner-stage {
  padding: 1.5rem 2rem 3rem;
  display: grid;
  gap: 1rem;
  align-content: start;
  background: #ffffff;
}
.psycho-test-container.psycho-runner-shell .card-area {
  width: 100%;
  max-width: none;
  min-height: 0;
  margin: 0;
}
.psycho-test-container.psycho-runner-shell .question-card {
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 0.75rem;
  padding: 1.4rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  text-align: left;
}
.psycho-test-container.psycho-runner-shell .question-card h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  color: #0f172a;
}
.psycho-test-container.psycho-runner-shell .controls-area {
  width: 100%;
  max-width: none;
  gap: 0.8rem;
}
.psycho-test-container.psycho-runner-shell .likert-grid {
  max-width: none;
  gap: 0.6rem;
}
.psycho-test-container.psycho-runner-shell .likert-grid .likert-btn {
  min-height: 58px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
  box-shadow: none;
  font-size: 0.9rem;
  line-height: 1.35;
}
.psycho-test-container.psycho-runner-shell .likert-grid .likert-btn.is-selected {
  border-color: #6366f1;
  outline: none;
  background: #eef2ff;
  color: #4338ca;
}
.psycho-test-container.psycho-runner-shell .sjt-options-list {
  max-width: none;
  gap: 0.6rem;
}
.psycho-test-container.psycho-runner-shell .sjt-options-list .sjt-option-btn {
  align-items: flex-start;
  padding: 0.9rem;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: none;
  gap: 0.75rem;
}
.psycho-test-container.psycho-runner-shell .sjt-options-list .sjt-option-btn .option-letter {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #6366f1;
  font-size: 0.85rem;
}
.psycho-test-container.psycho-runner-shell .sjt-options-list .sjt-option-btn .option-text {
  font-size: 0.96rem;
  line-height: 1.5;
}
.psycho-test-container.psycho-runner-shell .sjt-options-list .sjt-option-btn.is-selected {
  border-color: #6366f1;
  outline: none;
  background: #eef2ff;
}
.psycho-test-container.psycho-runner-shell .sjt-options-list .sjt-option-btn.is-selected .option-text {
  color: #1e293b;
  font-weight: 600;
}
.psycho-test-container.psycho-runner-shell .keyboard-hint {
  width: 100%;
  min-height: 1.25rem;
  margin-top: 0;
  color: #b91c1c;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: left;
}
.psycho-test-container.psycho-runner-shell .psycho-runner-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0;
}
.psycho-test-container.psycho-runner-shell .psycho-runner-footer-note {
  display: none;
}
.psycho-test-container.psycho-runner-shell .btn-start {
  min-width: 180px;
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  background: #6366f1;
  box-shadow: none;
  font-size: 0.95rem;
  font-weight: 700;
}
.psycho-test-container.psycho-runner-shell .btn-start:hover {
  transform: none;
  box-shadow: none;
  background: #4f46e5;
}
.psycho-test-container.psycho-runner-shell .psycho-runner-grid,
.psycho-test-container.psycho-runner-shell .psycho-runner-blob,
.psycho-test-container.psycho-runner-shell .psycho-runner-trust {
  display: none;
}
@media (max-width: 1024px) {
  .psycho-test-container.psycho-runner-shell .psycho-runner-layout {
    grid-template-columns: 1fr;
  }
  .psycho-test-container.psycho-runner-shell .psycho-runner-sidebar {
    position: static;
    height: auto;
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
  }
  .psycho-test-container.psycho-runner-shell .psycho-runner-stage {
    padding: 1.1rem;
  }
}
@media (max-width: 768px) {
  .psycho-test-container.psycho-runner-shell .likert-grid {
    grid-template-columns: 1fr;
  }
  .psycho-test-container.psycho-runner-shell .psycho-runner-footer {
    justify-content: stretch;
  }
  .psycho-test-container.psycho-runner-shell .btn-start {
    width: 100%;
  }
}

.dashboard-container.recruiter-shell.psycho-report-shell {
  background: #f4f2f8;
  min-height: calc(100vh - 80px);
}
.dashboard-container.recruiter-shell.psycho-report-shell .dashboard-page {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 46px) clamp(14px, 2.4vw, 24px);
}
.dashboard-container.recruiter-shell.psycho-report-shell .psycho-report-card {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.62);
}
.dashboard-container.recruiter-shell.psycho-report-shell .psycho-report-copy {
  margin-bottom: 1.35rem;
}
.dashboard-container.recruiter-shell.psycho-report-shell .psycho-report-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  .dashboard-container.recruiter-shell.psycho-report-shell .psycho-report-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}
.dashboard-container.recruiter-shell.psycho-report-shell .psycho-report-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0d9488;
  background: #ecfdf5;
  border: 1px solid #ccfbf1;
  flex-shrink: 0;
}
.dashboard-container.recruiter-shell.psycho-report-shell .psycho-report-headline h1 {
  margin: 0;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.2;
  color: #170017;
  font-weight: 900;
}
.dashboard-container.recruiter-shell.psycho-report-shell .psycho-report-headline p {
  margin: 0.55rem 0 0;
  max-width: 56ch;
  color: #6b7280;
  font-size: 0.98rem;
  line-height: 1.65;
}
.dashboard-container.recruiter-shell.psycho-report-shell .psycho-report-actions {
  margin-top: 1.25rem;
  display: flex;
  justify-content: flex-start;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.dashboard-container.recruiter-shell.psycho-report-shell .psycho-report-actions .recruiter-btn {
  min-height: 2.8rem;
  border-radius: 10px;
  padding: 0.68rem 1.1rem;
}

@keyframes psychoStartImageFadeSwap {
  0% {
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  46% {
    opacity: 1;
  }
  56% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.skills-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.skills-input-group {
  display: flex;
  gap: 0.5rem;
}

.skill-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1.5px solid #ede8f5;
  background: #f8f6fc;
  border-radius: 10px;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  font-family: inherit;
}
.skill-input:focus {
  outline: none;
  border-color: #6b00c9;
  box-shadow: 0 0 0 3px rgba(107, 0, 201, 0.08);
  background: #fff;
}

.add-skill-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  background: #f0ebfb;
  color: #6b00c9;
  border: 1px solid rgba(107, 0, 201, 0.2);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}
.add-skill-btn:hover {
  background: #6b00c9;
  color: white;
}
.add-skill-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 102, 196, 0.16);
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #f0ebfb;
  color: #6b00c9;
  border: 1px solid rgba(107, 0, 201, 0.24);
  padding: 0.4rem 0.8rem;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 500;
}

.remove-skill-btn {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
  font-size: 1rem;
  opacity: 0.6;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.remove-skill-btn:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.05);
}
.remove-skill-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 102, 196, 0.14);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.2s ease-out;
  padding: 1rem;
}
@media (max-width: 768px) {
  .modal-overlay {
    padding: 0.5rem;
    align-items: flex-end;
  }
}

.modal-container {
  background: white;
  border-radius: 1rem;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05);
  animation: slideIn 0.3s ease-out;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .modal-container {
    max-height: 95vh;
    border-radius: 1rem 1rem 0 0;
    animation: slideUp 0.3s ease-out;
  }
}
.modal-container.modal-sm {
  max-width: 480px;
}
.modal-container.modal-md {
  max-width: 640px;
}
.modal-container.modal-lg {
  max-width: 900px;
}
.modal-container.modal-xl {
  max-width: 1100px;
}
.modal-container.modal-full {
  max-width: calc(100vw - 2rem);
  max-height: calc(100vh - 2rem);
}
@media (max-width: 768px) {
  .modal-container.modal-full {
    max-width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }
}

.modal-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(243, 209, 232, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: white;
  z-index: 10;
  flex-shrink: 0;
}
.modal-header h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #1e293b;
  letter-spacing: -0.01em;
}
.modal-header .close-btn {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  margin: -0.5rem -0.5rem -0.5rem 0;
}
.modal-header .close-btn:hover {
  background-color: #f3f4f6;
  color: #1e293b;
  transform: rotate(90deg);
}

.modal-content {
  padding: 1.5rem;
  flex: 1;
  overflow-y: auto;
}
@media (max-width: 768px) {
  .modal-content {
    padding: 1rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    transform: translateY(-20px) scale(0.98);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.candidate-profile-page.profile-container {
  min-height: 100vh;
  padding: 30px 16px 40px;
  background: radial-gradient(circle at top right, rgba(254, 60, 211, 0.14), transparent 30%), radial-gradient(circle at top left, rgba(107, 0, 201, 0.08), transparent 26%), #f4f2f8;
  color: #1e293b;
}
.candidate-profile-page.profile-container .profile-content {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
}
@media (max-width: 960px) {
  .candidate-profile-page.profile-container .profile-content {
    grid-template-columns: 1fr;
  }
}
.candidate-profile-page.profile-container .profile-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.candidate-profile-page.profile-container .profile-card {
  position: sticky;
  top: calc(80px + 18px);
  overflow: hidden;
  border: 1px solid #ede8f5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(23, 0, 23, 0.08);
  padding: 88px 22px 22px;
  text-align: center;
}
@media (max-width: 960px) {
  .candidate-profile-page.profile-container .profile-card {
    position: static;
  }
}
.candidate-profile-page.profile-container .profile-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 116px;
  background: radial-gradient(circle at 18% 32%, rgba(255, 255, 255, 0.28), transparent 22%), linear-gradient(135deg, #170017 0%, #43114a 48%, #fe3c72 100%);
}
.candidate-profile-page.profile-container .profile-card .profile-avatar {
  position: absolute;
  top: 34px;
  left: 50%;
  width: 92px;
  height: 92px;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.94);
  background: linear-gradient(135deg, #fe3c72, #fe3cd3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(254, 60, 114, 0.22);
}
.candidate-profile-page.profile-container .profile-card .profile-avatar img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}
.candidate-profile-page.profile-container .profile-card .profile-name {
  margin-bottom: 4px;
  color: #170017;
  font-family: "Nunito", sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.2;
}
.candidate-profile-page.profile-container .profile-card .profile-role {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fdf0fb;
  color: #a40086;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.candidate-profile-page.profile-container .profile-card .profile-meta-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}
.candidate-profile-page.profile-container .profile-card .profile-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid #ede8f5;
  background: #f8f6fc;
  padding: 8px 12px;
  color: #555;
  font-size: 0.78rem;
  line-height: 1.2;
}
.candidate-profile-page.profile-container .profile-card .profile-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #f0ebfb;
}
.candidate-profile-page.profile-container .profile-card .profile-stats .stat-item {
  border: 1px solid #ede8f5;
  border-radius: 16px;
  background: #fcfbfe;
  padding: 14px 10px;
}
.candidate-profile-page.profile-container .profile-card .profile-stats .stat-value {
  display: block;
  color: #170017;
  font-family: "Nunito", sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
}
.candidate-profile-page.profile-container .profile-card .profile-stats .stat-label {
  display: block;
  margin-top: 4px;
  color: #888;
  font-size: 0.75rem;
  line-height: 1.35;
}
.candidate-profile-page.profile-container .profile-invitations {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #f0ebfb;
  text-align: left;
}
.candidate-profile-page.profile-container .profile-invitations__title {
  margin: 0 0 12px;
  color: #170017;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.candidate-profile-page.profile-container .profile-invitations__list {
  display: grid;
  gap: 10px;
  max-height: 320px;
  overflow: auto;
  padding-right: 4px;
}
.candidate-profile-page.profile-container .profile-invitation-item {
  display: grid;
  gap: 8px;
  border: 1px solid #ede8f5;
  border-radius: 14px;
  background: #fcfbfe;
  padding: 12px 13px;
  color: inherit;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.candidate-profile-page.profile-container .profile-invitation-item:hover {
  transform: translateY(-1px);
  border-color: #dfd2f5;
  box-shadow: 0 10px 24px rgba(107, 0, 201, 0.08);
}
.candidate-profile-page.profile-container .profile-invitation-item__title {
  margin: 0;
  color: #170017;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}
.candidate-profile-page.profile-container .profile-invitation-item__meta {
  margin: 0;
  color: #7a7a93;
  font-size: 0.76rem;
  line-height: 1.45;
}
.candidate-profile-page.profile-container .profile-invitation-item__status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid #d8ccef;
  background: #f4f2f8;
  color: #5b5870;
  font-size: 0.72rem;
  font-weight: 700;
}
.candidate-profile-page.profile-container .profile-invitation-item__status.is-pending, .candidate-profile-page.profile-container .profile-invitation-item__status.is-in_progress {
  background: #f4f2f8;
  color: #5b5870;
  border-color: #e6dff2;
}
.candidate-profile-page.profile-container .profile-invitation-item__status.is-submitted {
  background: #ecfdf3;
  color: #0f8f54;
  border-color: rgba(34, 197, 94, 0.24);
}
.candidate-profile-page.profile-container .profile-invitation-item__status.is-expired, .candidate-profile-page.profile-container .profile-invitation-item__status.is-cancelled {
  background: #fff1f4;
  color: #d5335d;
  border-color: rgba(254, 60, 114, 0.22);
}
.candidate-profile-page.profile-container .profile-invitations-empty {
  margin: 0;
  color: #7a7a93;
  font-size: 0.86rem;
  line-height: 1.5;
}
.candidate-profile-page.profile-container .profile-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.candidate-profile-page.profile-container .profile-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  border-radius: 2px;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 32%), linear-gradient(135deg, #170017 0%, #35113c 52%, #5c1d67 100%);
  padding: 24px 24px 22px;
  color: #fff;
  box-shadow: 0 16px 40px rgba(23, 0, 23, 0.16);
}
@media (max-width: 720px) {
  .candidate-profile-page.profile-container .profile-hero {
    flex-direction: column;
    align-items: flex-start;
  }
}
.candidate-profile-page.profile-container .profile-hero__content {
  max-width: 640px;
}
.candidate-profile-page.profile-container .profile-hero__content h1 {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.35rem);
  font-weight: 900;
  line-height: 1.08;
}
.candidate-profile-page.profile-container .profile-hero__content p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
  line-height: 1.65;
}
.candidate-profile-page.profile-container .profile-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.candidate-profile-page.profile-container .info-section {
  border: 1px solid #ede8f5;
  border-radius: 20px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 10px 28px rgba(23, 0, 23, 0.05);
}
.candidate-profile-page.profile-container .info-section h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #170017;
  font-family: "Nunito", sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.2;
}
.candidate-profile-page.profile-container .info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 640px) {
  .candidate-profile-page.profile-container .info-grid {
    grid-template-columns: 1fr;
  }
}
.candidate-profile-page.profile-container .info-item {
  padding: 14px 15px;
}
.candidate-profile-page.profile-container .info-item label {
  display: block;
  margin-bottom: 6px;
  color: #8a88a3;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.candidate-profile-page.profile-container .info-item span {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
  word-break: break-word;
}
.candidate-profile-page.profile-container .edit-profile-btn {
  padding: 8px 16px;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600 !important;
  transition: background-color 0.3s ease;
  cursor: pointer;
  font-size: 14px;
  border: none;
  font-family: inherit;
  display: inline-block;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(254, 60, 114, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.candidate-profile-page.profile-container .edit-profile-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(254, 60, 114, 0.28);
  filter: brightness(0.99);
}
.candidate-profile-page.profile-container .cv-file {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #ede8f5;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(107, 0, 201, 0.04), rgba(254, 60, 114, 0.04));
  padding: 16px;
}
@media (max-width: 640px) {
  .candidate-profile-page.profile-container .cv-file {
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
.candidate-profile-page.profile-container .cv-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fe3c72;
  box-shadow: 0 8px 22px rgba(107, 0, 201, 0.08);
  font-size: 1.5rem;
}
.candidate-profile-page.profile-container .cv-info {
  flex: 1;
  min-width: 0;
}
.candidate-profile-page.profile-container .cv-name {
  display: block;
  color: #170017;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.4;
  word-break: break-word;
}
.candidate-profile-page.profile-container .cv-meta {
  display: block;
  margin-top: 4px;
  color: #7a7a93;
  font-size: 0.83rem;
  line-height: 1.45;
}
.candidate-profile-page.profile-container .btn-download {
  padding: 8px 16px;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600 !important;
  transition: background-color 0.3s ease;
  cursor: pointer;
  font-size: 14px;
  border: none;
  font-family: inherit;
  display: inline-block;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 11px;
  border: 1px solid #d8ccef;
  background: #fff;
  color: #6b00c9;
  white-space: nowrap;
}
.candidate-profile-page.profile-container .btn-download:hover:not(:disabled) {
  background: #f0ebfb;
}
.candidate-profile-page.profile-container .btn-download:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.candidate-profile-page.profile-container .candidate-cv-preview {
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid #ede8f5;
  border-radius: 8px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.candidate-profile-page.profile-container .candidate-cv-preview iframe {
  width: 100%;
  height: 520px;
  border: 0;
  display: block;
  background: #fff;
}
@media (max-width: 640px) {
  .candidate-profile-page.profile-container .candidate-cv-preview iframe {
    height: 440px;
  }
}
.candidate-profile-page.profile-container .candidate-cv-preview-hint {
  margin: 14px 0 0;
  color: #7a7a93;
  font-size: 0.86rem;
  line-height: 1.55;
}
.candidate-profile-page.profile-container .candidate-tests-group {
  margin: 0;
}
.candidate-profile-page.profile-container .candidate-tests-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}
@media (max-width: 720px) {
  .candidate-profile-page.profile-container .candidate-tests-list {
    grid-template-columns: 1fr;
  }
}
.candidate-profile-page.profile-container .candidate-test-card {
  position: relative;
  display: grid;
  gap: 12px;
  overflow: hidden;
  border: 1px solid #ede8f5;
  border-radius: 16px;
  background: #fcfbfe;
  padding: 16px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.candidate-profile-page.profile-container .candidate-test-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #6b00c9, #fe3c72);
}
.candidate-profile-page.profile-container .candidate-test-card:hover {
  transform: translateY(-2px);
  border-color: #dfd2f5;
  box-shadow: 0 12px 28px rgba(107, 0, 201, 0.08);
}
.candidate-profile-page.profile-container .candidate-test-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.candidate-profile-page.profile-container .candidate-test-card__title {
  margin: 0;
  color: #170017;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.35;
}
.candidate-profile-page.profile-container .candidate-test-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.candidate-profile-page.profile-container .candidate-meta-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid #ede8f5;
  background: #fff;
  color: #6c6980;
  font-size: 0.75rem;
  line-height: 1.25;
}
@media (max-width: 720px) {
  .candidate-profile-page.profile-container .candidate-meta-pill {
    white-space: normal;
  }
}
.candidate-profile-page.profile-container .candidate-test-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}
.candidate-profile-page.profile-container .candidate-test-kpi {
  border: 1px solid #ede8f5;
  border-radius: 13px;
  background: #fff;
  padding: 12px;
}
.candidate-profile-page.profile-container .candidate-test-kpi small {
  display: block;
  color: #8a88a3;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.candidate-profile-page.profile-container .candidate-test-kpi strong {
  display: block;
  margin-top: 5px;
  color: #170017;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  font-weight: 900;
}
.candidate-profile-page.profile-container .candidate-test-dimensions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.candidate-profile-page.profile-container .candidate-test-dimension {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #f0ebfb;
  color: #6b00c9;
  padding: 6px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.25;
}
.candidate-profile-page.profile-container .candidate-tests-empty {
  margin: 0;
  color: #7a7a93;
  font-size: 0.92rem;
  line-height: 1.6;
}
.candidate-profile-page.profile-container .candidate-tests-subtitle {
  margin: 0 0 12px;
  color: #170017;
  font-size: 0.96rem;
  font-weight: 800;
}

.users-table-container {
  padding: 1rem;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.users-table-container .table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.users-table-container .table-header .search-container {
  position: relative;
  width: 100%;
  max-width: 300px;
}
.users-table-container .table-header .search-container input {
  width: 100%;
  padding: 0.5rem 1rem;
  padding-left: 2.5rem;
  border: 1px solid #f3d1e8;
  border-radius: 0.5rem;
  outline: none;
  font-family: "Nunito", sans-serif;
}
.users-table-container .table-header .search-container input:focus {
  border-color: #ff66c4;
  box-shadow: 0 0 0 2px rgba(255, 102, 196, 0.2);
}
.users-table-container .table-header .search-container .search-icon {
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
}
.users-table-container .users-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.users-table-container .users-table th {
  text-align: left;
  padding: 1rem;
  background-color: #fdf2f8;
  color: #475569;
  font-weight: 600;
  border-bottom: 2px solid #f3d1e8;
}
.users-table-container .users-table td {
  padding: 1rem;
  border-bottom: 1px solid #f3d1e8;
  vertical-align: top;
  color: #1e293b;
}
.users-table-container .users-table .cell-company {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.users-table-container .users-table .cell-company .company-logo {
  width: 50px;
  height: 40px;
  border-radius: 0.5rem;
  background-color: #f0f0f0;
  object-fit: contain;
}
.users-table-container .users-table .cell-company .company-info {
  display: flex;
  flex-direction: column;
}
.users-table-container .users-table .cell-company .company-info .company-name {
  font-weight: 600;
  color: #1e293b;
}
.users-table-container .users-table .cell-company .company-info .company-meta {
  font-size: 0.8rem;
  color: #475569;
  display: flex;
  flex-direction: column;
}
.users-table-container .users-table .cell-contact {
  display: flex;
  flex-direction: column;
}
.users-table-container .users-table .cell-contact .contact-name {
  font-weight: 600;
}
.users-table-container .users-table .cell-contact .contact-email,
.users-table-container .users-table .cell-contact .contact-phone {
  font-size: 0.8rem;
  color: #475569;
}
.users-table-container .users-table .cell-subscription .plan-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.users-table-container .users-table .cell-subscription .plan-badge.premium {
  background-color: rgba(255, 102, 196, 0.1);
  color: #ff66c4;
}
.users-table-container .users-table .cell-subscription .plan-badge.standard {
  background-color: rgba(139, 92, 246, 0.1);
  color: #8B5CF6;
}
.users-table-container .users-table .cell-subscription .plan-badge.enterprise {
  background-color: rgba(23, 0, 23, 0.1);
  color: #170017;
}
.users-table-container .users-table .cell-subscription .sub-details {
  font-size: 0.85rem;
  color: #475569;
}
.users-table-container .users-table .cell-usage .progress-bar {
  width: 100%;
  height: 6px;
  background-color: #f3d1e8;
  border-radius: 3px;
  margin-bottom: 4px;
  overflow: hidden;
}
.users-table-container .users-table .cell-usage .progress-bar .progress-fill {
  height: 100%;
  background: linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%);
  border-radius: 3px;
}
.users-table-container .users-table .cell-usage .usage-text {
  font-size: 0.8rem;
  color: #475569;
}
.users-table-container .users-table .cell-performance {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  font-size: 0.8rem;
}
.users-table-container .users-table .cell-performance div {
  white-space: nowrap;
}
.users-table-container .users-table .cell-status .status-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.users-table-container .users-table .cell-status .status-badge.actif {
  background-color: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}
.users-table-container .users-table .cell-status .status-badge.inactif {
  background-color: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}
.users-table-container .users-table .cell-status .status-badge.en-attente {
  background-color: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}
.users-table-container .pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f3d1e8;
}
.users-table-container .pagination .page-info {
  font-size: 0.9rem;
  color: #475569;
}
.users-table-container .pagination .page-controls {
  display: flex;
  gap: 0.25rem;
}
.users-table-container .pagination .page-controls button {
  padding: 8px 16px;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600 !important;
  transition: background-color 0.3s ease;
  cursor: pointer;
  font-size: 14px;
  border: none;
  font-family: inherit;
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border: 1px solid #f3d1e8;
  background: white;
}
.users-table-container .pagination .page-controls button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.users-table-container .pagination .page-controls button:not(:disabled):hover {
  background-color: #fdf2f8;
  border-color: #f3d1e8;
}

@media (max-width: 768px) {
  .users-table-container .table-header {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  .users-table-container .table-header .search-container {
    max-width: 100%;
  }
  .users-table-container .users-table {
    display: block;
  }
  .users-table-container .users-table thead {
    display: none;
  }
  .users-table-container .users-table tbody,
  .users-table-container .users-table tr,
  .users-table-container .users-table td {
    display: block;
    width: 100%;
  }
  .users-table-container .users-table tr {
    margin-bottom: 1rem;
    border: 1px solid #f3d1e8;
    border-radius: 0.5rem;
    padding: 1rem;
    background: white;
  }
  .users-table-container .users-table td {
    padding: 0.25rem 0;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: right;
  }
  .users-table-container .users-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #94a3b8;
    margin-right: 1rem;
    text-align: left;
  }
  .users-table-container .users-table td.cell-performance {
    display: block;
    text-align: left;
    margin-top: 0.5rem;
  }
  .users-table-container .users-table td.cell-performance::before {
    display: block;
    margin-bottom: 0.25rem;
  }
}
.admin-shell {
  --admin-bg: #f4f2f8;
  --admin-panel: #fff;
  --admin-panel-soft: #f8f6fc;
  --admin-border: #ede8f5;
  --admin-border-strong: #d8ccef;
  --admin-text: #170017;
  --admin-muted: #777;
  --admin-subtle: #aaa;
  --admin-primary: #6b00c9;
  --admin-primary-light: #9b59f5;
  --admin-accent: #fe3c72;
  --admin-rose: #fe3cd3;
  --admin-gradient: linear-gradient(135deg, #fe3c72, #fe3cd3);
  min-height: 100vh;
  background: var(--admin-bg);
  color: var(--admin-text);
}

.admin-shell .dashboard-page {
  width: 100%;
  max-width: none;
  padding: 0;
}

.admin-shell.recruiter-shell .dashboard-page {
  display: block;
  max-width: none;
}

.admin-shell.recruiter-shell .dashboard-page > *:not(.recruiter-sidebar):not(.recruiter-sidebar__drawer-toggle):not(.recruiter-sidebar__mobile-toggle):not(.recruiter-sidebar__overlay) {
  grid-column: auto;
  padding-inline: 0;
}

.admin-app {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  grid-template-areas: "sidebar main";
}

.admin-sidebar-toggle {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.admin-sidebar__brand-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  background: var(--admin-gradient);
}

.admin-sidebar-mobile-toggle {
  display: none;
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--admin-gradient);
  box-shadow: 0 4px 14px rgba(254, 60, 114, 0.25);
  cursor: pointer;
}

.admin-sidebar {
  grid-area: sidebar;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 20px 12px;
  background: #fff;
  border-right: 1px solid var(--admin-border);
}

.admin-sidebar__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid #f0ebfb;
}

.admin-sidebar__brand {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.admin-sidebar__brand-badge {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  flex: none;
  font-size: 11px;
}

.admin-sidebar__kicker {
  display: block;
  color: var(--admin-primary);
  font-size: 11px;
  font-weight: 700;
}

.admin-sidebar__title {
  display: block;
  margin-top: 1px;
  color: var(--admin-text);
  font-size: 13px;
  font-weight: 700;
}

.admin-sidebar__email {
  display: block;
  margin-top: 2px;
  color: var(--admin-subtle);
  font-size: 11px;
}

.admin-sidebar__close {
  display: none;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--admin-bg);
  color: var(--admin-text);
  cursor: pointer;
}

.admin-sidebar__section {
  display: grid;
  gap: 4px;
}

.admin-sidebar__section-title {
  padding: 10px 10px 4px;
  color: #bbb;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.admin-sidebar__list {
  display: grid;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.admin-sidebar__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  border-radius: 9px;
  color: #777;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.12s ease;
}

.admin-sidebar__link:hover {
  background: var(--admin-bg);
  color: var(--admin-text);
}

.admin-sidebar__link.is-active,
.admin-sidebar__link[aria-current=page] {
  color: var(--admin-primary);
  background: #f0ebfb;
  font-weight: 600;
}

.admin-sidebar__link-icon {
  width: 15px;
  height: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  color: inherit;
}

.admin-sidebar__link-icon svg {
  width: 15px;
  height: 15px;
}

.admin-sidebar__overlay {
  display: none;
}

.admin-main {
  grid-area: main;
  min-width: 0;
  padding: 28px 28px 40px;
  overflow-y: auto;
}

.admin-page {
  display: grid;
  gap: 18px;
}

.admin-page__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.admin-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(107, 0, 201, 0.8);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.admin-page__head h1 {
  margin: 4px 0 0;
  font-family: "Nunito", "Nunito", sans-serif, sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--admin-text);
}

.admin-page__head p {
  margin-top: 3px;
  color: var(--admin-subtle);
  font-size: 13px;
}

.admin-page__actions,
.admin-form-actions,
.admin-action-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  border: 1px solid var(--admin-border);
  border-radius: 10px;
  background: #fff;
  color: var(--admin-text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
}

.admin-btn--primary {
  border-color: transparent;
  color: #fff;
  background: var(--admin-gradient);
  box-shadow: 0 4px 14px rgba(254, 60, 114, 0.25);
}

.admin-btn--soft {
  color: var(--admin-primary);
  border-color: #d8ccef;
}

.admin-btn--danger {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.admin-btn.is-disabled,
.admin-btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.admin-panel,
.admin-hero,
.admin-stat-card,
.admin-list-row,
.admin-table-card,
.admin-form-card,
.admin-kpi,
.admin-filter-card,
.admin-modal__content,
.admin-company-card {
  background: #fff;
  border: 1px solid var(--admin-border);
  border-radius: 14px;
}

.admin-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 320px;
  gap: 16px;
  padding: 18px 22px;
  position: relative;
  overflow: hidden;
}

.admin-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #6b00c9, #fe3c72, #fe3cd3);
}

.admin-hero__title {
  margin: 8px 0 3px;
  font-family: "Nunito", "Nunito", sans-serif, sans-serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.15;
}

.admin-hero__body {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

.admin-hero__stack,
.admin-stack,
.admin-list,
.admin-bar-list {
  display: grid;
  gap: 12px;
}

.admin-quick-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--admin-border);
  border-radius: 10px;
  color: var(--admin-text);
  text-decoration: none;
  background: var(--admin-panel-soft);
}

.admin-quick-action strong {
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
}

.admin-quick-action span:last-child {
  font-size: 11px;
  color: #888;
}

.admin-stat-grid,
.admin-kpi-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.admin-stat-card,
.admin-kpi {
  position: relative;
  overflow: hidden;
  padding: 18px;
}

.admin-stat-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #6b00c9, #fe3c72, #fe3cd3);
}

.admin-stat-card__icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  margin-bottom: 12px;
  color: var(--admin-primary);
  background: #f0ebfb;
}

.admin-stat-card__label,
.admin-kpi span,
.admin-kpi small {
  color: var(--admin-subtle);
  font-size: 12px;
}

.admin-stat-card strong,
.admin-kpi strong {
  display: block;
  margin-top: 4px;
  font-family: "Nunito", "Nunito", sans-serif, sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.admin-layout {
  display: grid;
  gap: 16px;
}

.admin-layout--two {
  grid-template-columns: 1fr 320px;
}

.admin-layout--sidebar {
  grid-template-columns: 280px 1fr;
}

.admin-panel,
.admin-form-card {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.admin-panel__head,
.admin-table-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.admin-panel__head h2,
.admin-section-title,
.admin-form-section__head h2,
.admin-form-section__head h3 {
  margin: 0;
  font-family: "Nunito", "Nunito", sans-serif, sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--admin-text);
}

.admin-panel__head p,
.admin-section-copy,
.admin-form-section__head p,
.admin-table-head p {
  margin-top: 2px;
  color: #888;
  font-size: 12px;
}

.admin-link-inline,
.admin-text-link {
  color: var(--admin-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
}

.admin-bar {
  display: grid;
  gap: 8px;
}

.admin-bar__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--admin-text);
  font-size: 12px;
  font-weight: 700;
}

.admin-bar__top span:first-child {
  min-width: 0;
  color: var(--admin-text);
}

.admin-bar__top span:last-child {
  flex: none;
  color: var(--admin-text);
}

.admin-bar__track {
  display: block;
  height: 5px;
  overflow: hidden;
  border-radius: 99px;
  background: var(--admin-bg);
}

.admin-bar__track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #fe3c72, #fe3cd3);
  min-width: 44px;
}

.admin-list-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  color: inherit;
  text-decoration: none;
}

.admin-list-row--two {
  grid-template-columns: minmax(0, 1fr) auto;
}

.admin-list-row__body {
  min-width: 0;
}

.admin-list-row__body strong {
  display: block;
  font-size: 13px;
}

.admin-list-row__body small {
  display: block;
  margin-top: 3px;
  color: var(--admin-subtle);
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-list-row__meta,
.admin-list-row time {
  color: #aaa;
  font-size: 11px;
}

.admin-table-card {
  overflow: hidden;
}

.admin-table-head {
  padding: 16px 20px 12px;
  border-bottom: 1px solid #f4f2f8;
}

.admin-table-wrap {
  overflow: auto;
}

.admin-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.admin-table th {
  padding: 12px 20px;
  text-align: left;
  background: var(--admin-panel-soft);
  color: #888;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.admin-table td {
  padding: 13px 20px;
  border-bottom: 1px solid #f8f6fc;
  vertical-align: top;
  font-size: 13px;
}

.admin-table__title {
  font-size: 13px;
  font-weight: 700;
}

.admin-table__meta {
  font-size: 11px;
  color: var(--admin-subtle);
}

.admin-filter-card {
  padding: 16px;
}

.admin-filter-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 10px;
  align-items: end;
}

.admin-filter-form > * {
  min-width: 0;
}

.admin-filter-form :where(input, select, textarea, .admin-btn) {
  width: 100%;
  min-width: 0;
}

.admin-filter-form--compact {
  grid-template-columns: minmax(160px, 1fr) minmax(160px, 220px) auto auto;
}

.admin-layout--sidebar .admin-filter-form--compact {
  grid-template-columns: minmax(0, 1fr);
}

.admin-filter-form label,
.admin-field,
.admin-form-grid label,
.add-company-form .form-group,
.add-user-form .form-group {
  display: grid;
  gap: 6px;
}

.admin-filter-form label span,
.admin-field > span,
.admin-form-grid label > span,
.add-company-form label,
.add-user-form label {
  color: #888;
  font-size: 12px;
  font-weight: 500;
}

.admin-pill,
.admin-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.admin-pill--platform {
  color: #92400e;
  background: #fef3c7;
}

.admin-pill--company,
.admin-status-pill--active {
  color: var(--admin-primary);
  background: #f0ebfb;
}

.admin-pill--candidate,
.admin-status-pill--muted {
  color: #888;
  background: #f4f2f8;
}

.admin-status-pill--success {
  color: #166534;
  background: #dcfce7;
}

.admin-status-pill--review {
  color: #92400e;
  background: #fef3c7;
}

.admin-status-pill--danger {
  color: #b91c1c;
  background: #fee2e2;
}

.admin-empty {
  padding: 24px;
  border: 1px dashed var(--admin-border-strong);
  border-radius: 12px;
  color: #888;
  text-align: center;
}

.admin-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #aaa;
  font-size: 12px;
}

.admin-callout {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
}

.admin-callout.is-error {
  color: #b91c1c;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.admin-callout.is-success {
  color: #166534;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.admin-form-grid,
.add-company-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-form-grid .is-wide,
.add-company-form .form-group.full-width {
  grid-column: 1/-1;
}

.admin-form-grid textarea,
.add-company-form textarea,
.admin-field textarea {
  min-height: 110px;
  resize: vertical;
}

.admin-field-error,
.admin-form-hint,
.admin-subnote {
  font-size: 11px;
}

.admin-field-error {
  color: #dc2626;
}

.admin-form-hint,
.admin-subnote {
  color: #aaa;
}

.admin-upload-field,
.admin-avatar-cropper {
  display: grid;
  gap: 10px;
}

.admin-avatar-input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.admin-avatar-picker,
.admin-logo-picker {
  display: grid;
  gap: 12px;
  justify-items: start;
  cursor: pointer;
}

.admin-avatar-picker__thumb,
.admin-logo-picker__thumb {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--admin-border-strong);
  background: #f8fafc;
}

.admin-avatar-picker__thumb {
  border-radius: 50%;
}

.admin-logo-picker__thumb {
  border-radius: 18px;
}

.admin-avatar-picker__icon,
.admin-logo-picker__icon {
  color: #94a3b8;
}

.admin-avatar-picker__icon svg,
.admin-logo-picker__icon svg {
  width: 40px;
  height: 40px;
}

.admin-avatar-picker__image,
.admin-logo-picker__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-avatar-picker__image[hidden],
.admin-logo-picker__image[hidden] {
  display: none;
}

.admin-avatar-picker__text,
.admin-logo-picker__text {
  color: #555;
  font-size: 13px;
}

.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-wrapper input {
  padding-right: 40px;
}

.password-toggle {
  position: absolute;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border: 0;
  background: transparent;
  color: #6b7280;
  cursor: pointer;
}

.password-toggle svg {
  width: 18px;
  height: 18px;
}

.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}

.admin-modal[hidden] {
  display: none;
}

.admin-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.admin-modal__content {
  position: relative;
  z-index: 1;
  width: min(100%, 500px);
  padding: 24px;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.admin-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.admin-modal__header h2 {
  margin: 0;
  font-family: "Nunito", "Nunito", sans-serif, sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.admin-modal__header p {
  margin-top: 6px;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.6;
}

.admin-modal__close {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: var(--admin-bg);
  color: #334155;
  cursor: pointer;
}

.admin-avatar-cropper__stage {
  overflow: hidden;
  border-radius: 8px;
  background: #f8fafc;
}

.admin-avatar-cropper__image {
  display: block;
  width: 100%;
}

.admin-avatar-cropper__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-avatar-cropper__status {
  color: #475569;
  font-size: 12px;
}

.admin-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.admin-detail-item {
  padding: 14px 16px;
  border: 1px solid var(--admin-border);
  border-radius: 10px;
  background: var(--admin-panel-soft);
}

.admin-detail-item span:first-child {
  display: block;
  margin-bottom: 4px;
  color: #888;
  font-size: 12px;
}

.admin-detail-item strong {
  font-size: 13px;
  word-break: break-word;
}

.admin-user-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto auto 80px 22px;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--admin-border);
  border-radius: 10px;
  background: var(--admin-panel-soft);
  color: inherit;
  text-decoration: none;
}

.admin-avatar {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #f7ecff;
  color: #9d1f8f;
  font-weight: 900;
}

.admin-company-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.admin-company-card {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.admin-company-card__top,
.admin-company-card__metrics,
.admin-company-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-company-card__logo {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background: var(--admin-panel-soft);
  color: var(--admin-primary);
}

.admin-company-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-company-card__body h2 {
  margin: 0;
  font-size: 18px;
  font-family: "Nunito", "Nunito", sans-serif, sans-serif;
  font-weight: 800;
}

.admin-company-card__body p,
.admin-company-card__meta {
  margin-top: 6px;
  color: #666;
  font-size: 13px;
  line-height: 1.55;
}

.admin-company-card__meta {
  display: grid;
  gap: 5px;
}

.admin-company-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.admin-company-card__metrics {
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--admin-panel-soft);
}

.admin-company-card__metrics strong {
  display: block;
  font-family: "Nunito", "Nunito", sans-serif, sans-serif;
  font-size: 18px;
}

.admin-company-card__metrics small {
  color: #888;
  font-size: 11px;
}

.admin-placeholder {
  display: grid;
  gap: 12px;
  place-items: start;
}

.admin-placeholder__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--admin-primary);
  background: #f0ebfb;
}

.admin-placeholder h2 {
  font-family: "Nunito", "Nunito", sans-serif, sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.admin-placeholder p {
  color: #666;
  font-size: 14px;
  line-height: 1.65;
}

.cropper-container {
  max-width: 100% !important;
}

.hidden {
  display: none;
}

@media (max-width: 1100px) {
  .admin-layout--two,
  .admin-layout--sidebar,
  .admin-hero,
  .admin-stat-grid,
  .admin-kpi-strip,
  .admin-company-grid,
  .admin-detail-grid {
    grid-template-columns: 1fr;
  }
  .admin-user-card {
    grid-template-columns: 42px minmax(0, 1fr);
  }
}
@media (max-width: 860px) {
  .admin-app {
    display: block;
    min-height: 100vh;
  }
  .admin-sidebar-mobile-toggle,
  .admin-sidebar__close {
    display: inline-flex;
  }
  .admin-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 80;
    width: 220px;
    transform: translateX(-100%);
    transition: transform 0.2s ease;
  }
  .admin-sidebar__overlay {
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(0, 0, 0, 0.35);
  }
  .admin-sidebar-toggle:checked ~ .admin-sidebar {
    transform: translateX(0);
  }
  .admin-sidebar-toggle:checked ~ .admin-sidebar__overlay {
    display: block;
  }
  .admin-main {
    padding: 18px 16px 28px;
  }
  .admin-page__head,
  .admin-page__actions,
  .admin-panel__head,
  .admin-table-head,
  .admin-company-card__top,
  .admin-company-card__metrics,
  .admin-company-card__actions,
  .admin-pagination,
  .admin-form-actions {
    display: grid;
  }
  .admin-filter-form,
  .admin-filter-form--compact,
  .admin-form-grid,
  .add-company-form .form-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .admin-page__head h1 {
    font-size: 20px;
  }
  .admin-table {
    min-width: 640px;
  }
}
.dashboard-container {
  --dashboard-page-max-width: 1300px;
  --dashboard-page-padding-inline: $spacing-md;
  --dashboard-page-padding-block: $spacing-lg;
  padding-top: 80px;
  padding-bottom: 20px;
  min-height: 100vh;
  background: #f4f2f8;
  color: #475569;
}

.dashboard-page {
  max-width: var(--dashboard-page-max-width);
  margin: 0 auto;
  padding: var(--dashboard-page-padding-block) var(--dashboard-page-padding-inline);
}

@media (max-width: 768px) {
  .dashboard-container {
    --dashboard-page-padding-inline: 0.85rem;
    --dashboard-page-padding-block: 1.25rem;
  }
}
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}
.dashboard-header h1 {
  font-size: 2rem;
  margin: 0;
  color: #1e293b;
}
.dashboard-header p {
  margin: 0.35rem 0 0;
  color: rgba(15, 23, 42, 0.72);
  line-height: 1.6;
}

.dash-link {
  padding: 8px 16px;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600 !important;
  transition: background-color 0.3s ease;
  cursor: pointer;
  font-size: 14px;
  border: none;
  font-family: inherit;
  display: inline-block;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(30, 41, 59, 0.14);
  color: #1e293b;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 12px 24px rgba(23, 0, 23, 0.08);
}
.dash-link:hover {
  background: #fff;
  transform: translateY(-1px);
}

.dashboard-empty {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(30, 41, 59, 0.08);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 16px 32px rgba(23, 0, 23, 0.08);
}
.dashboard-empty h2 {
  margin: 0 0 0.5rem;
  color: #1e293b;
  font-size: 1.4rem;
}
.dashboard-empty p {
  margin: 0;
  color: rgba(15, 23, 42, 0.72);
  line-height: 1.6;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.job-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(30, 41, 59, 0.08);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 16px 32px rgba(23, 0, 23, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.job-card .job-title {
  font-weight: 700;
  color: #1e293b;
  font-size: 1.2rem;
  line-height: 1.25;
}
.job-card .job-company {
  margin-top: 0.25rem;
  color: rgba(30, 41, 59, 0.68);
  font-size: 0.95rem;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.job-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(30, 41, 59, 0.12);
  color: rgba(15, 23, 42, 0.82);
  font-size: 0.85rem;
  white-space: nowrap;
}

.job-desc {
  margin: 0;
  color: rgba(15, 23, 42, 0.72);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.job-actions {
  margin-top: auto;
}

.job-btn {
  padding: 8px 16px;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600 !important;
  transition: background-color 0.3s ease;
  cursor: pointer;
  font-size: 14px;
  border: none;
  font-family: inherit;
  display: inline-block;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  text-decoration: none;
}
.job-btn[disabled], .job-btn[aria-disabled=true] {
  opacity: 0.5;
  pointer-events: none;
}

.job-btn--primary {
  background: linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%);
  color: #fff;
}
.job-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.job-btn--ghost {
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(30, 41, 59, 0.12);
  color: #1e293b;
}
.job-btn--ghost:hover {
  background: rgba(15, 23, 42, 0.08);
}

.dash-pagination {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.dash-pagecount {
  color: rgba(15, 23, 42, 0.72);
  font-size: 0.9rem;
}

.candidate-applications-page .candidate-applications-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 280px));
  gap: 1rem;
  justify-content: flex-start;
}

.candidate-applications-page .candidate-application-card {
  border: 1px solid rgba(15, 23, 42, 0.28);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  gap: 0.7rem;
  padding: 1rem 1.15rem;
  min-height: 100%;
}
.candidate-applications-page .candidate-application-card::before, .candidate-applications-page .candidate-application-card::after {
  display: none;
}
.candidate-applications-page .candidate-application-card:hover {
  transform: none;
  box-shadow: none;
}

.candidate-applications-page .candidate-application-card .job-title {
  margin: 0;
  color: #FE3CD3;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.4;
}

.candidate-applications-page .candidate-application-location {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  margin: 0;
  color: #0f172a;
  font-size: 0.95rem;
  line-height: 1.4;
}

.candidate-applications-page .candidate-application-location svg,
.candidate-applications-page .candidate-application-location i {
  width: 1rem;
  height: 1rem;
  color: #6b7280;
  flex-shrink: 0;
}

.candidate-applications-page .candidate-application-meta {
  display: grid;
  gap: 0.45rem;
}

.candidate-applications-page .candidate-application-status,
.candidate-applications-page .candidate-application-date {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.35;
}

.candidate-applications-page .candidate-application-status--pending {
  color: #0f172a;
}

.candidate-applications-page .candidate-application-status--progress {
  color: #0f172a;
}

.candidate-applications-page .candidate-application-status--success {
  color: #0f172a;
}

.candidate-applications-page .candidate-application-status--danger {
  color: #0f172a;
}

.candidate-applications-page .candidate-application-status--neutral {
  color: #0f172a;
}

.candidate-applications-page .candidate-application-date {
  color: #0f172a;
}

@media (max-width: 768px) {
  .candidate-applications-page .candidate-application-card {
    padding: 0.95rem 0.9rem;
  }
  .candidate-applications-page .candidate-application-card .job-title {
    font-size: 1rem;
  }
  .candidate-applications-page .candidate-application-meta {
    gap: 0.4rem;
  }
  .candidate-applications-page .candidate-applications-grid {
    grid-template-columns: 1fr;
  }
}
.recruiter-shell.dashboard-container {
  --dashboard-page-max-width: none;
  --dashboard-sidebar-width: 220px;
  --dashboard-page-padding-inline: clamp(1rem, 1.8vw, 1.5rem);
  --ats-primary: #6b00c9;
  --ats-accent: #fe3c72;
  --ats-primary-strong: #9b59f5;
  --ats-primary-soft: #f0ebfb;
  --ats-bg: #f4f2f8;
  --ats-panel: #ffffff;
  --ats-panel-soft: #f8f6fc;
  --ats-border: #ede8f5;
  --ats-border-strong: #d8ccef;
  --ats-text: #170017;
  --ats-muted: #555;
  --ats-muted-soft: #888;
  --ats-success: #22c55e;
  --ats-warning: #f59e0b;
  --ats-danger: #ef4444;
  --ats-danger-soft: rgba(239, 68, 68, 0.1);
  --ats-focus: #6b00c9;
  --ats-focus-ring: rgba(107, 0, 201, 0.16);
  --ats-shadow-soft: rgba(107, 0, 201, 0.08);
  --ats-shadow-strong: rgba(107, 0, 201, 0.14);
  --ats-gradient: linear-gradient(135deg, #fe3c72 0%, #fe3cd3 100%);
  --ats-gradient-hover: linear-gradient(135deg, #fe4b80 0%, #ff4add 100%);
  --ats-code-bg: #170017;
  --ats-code-border: #3f2a51;
  --ats-code-text: #f8fafc;
  --ats-nav-bg: #ffffff;
  --ats-nav-border: #ede8f5;
  --ats-nav-line: #f0ebfb;
  --ats-nav-text: #777;
  --ats-nav-text-strong: #170017;
  --ats-nav-card-bg: #ffffff;
  --ats-nav-active-bg: #f0ebfb;
  --ats-nav-active-border: #e6dbfb;
  --ats-nav-active-icon: #6b00c9;
  padding-top: 0.001rem;
  padding-bottom: 1.25rem;
  background: var(--ats-bg);
  color: var(--ats-text);
}

.recruiter-shell .dashboard-page {
  max-width: var(--dashboard-page-max-width);
  display: grid;
  grid-template-columns: var(--dashboard-sidebar-width) minmax(0, 1fr);
  align-items: start;
  column-gap: 0;
  row-gap: 1.1rem;
}

.recruiter-shell .dashboard-page > .recruiter-sidebar {
  grid-column: 1;
  grid-row: 1/span 24;
  align-self: start;
  width: var(--dashboard-sidebar-width);
  min-width: var(--dashboard-sidebar-width);
}

.recruiter-shell .dashboard-page > *:not(.recruiter-sidebar):not(.recruiter-sidebar__drawer-toggle):not(.recruiter-sidebar__mobile-toggle):not(.recruiter-sidebar__overlay) {
  grid-column: 2;
  min-width: 0;
  margin-left: 20px;
  margin-right: 20px;
}

.recruiter-shell .dashboard-page > .recruiter-breadcrumbs {
  grid-column: 2;
  align-self: end;
  margin-top: 0.7rem;
  margin-bottom: 0.85rem;
}

.recruiter-breadcrumbs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.recruiter-breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--ats-muted);
  font-size: 0.84rem;
}

.recruiter-breadcrumbs__item + .recruiter-breadcrumbs__item::before {
  content: "/";
  color: var(--ats-muted-soft);
}

.recruiter-breadcrumbs__link {
  color: var(--ats-muted);
  text-decoration: none;
}

.recruiter-breadcrumbs__link:hover {
  color: var(--ats-text);
}

.recruiter-breadcrumbs__current {
  color: var(--ats-text);
  font-weight: 600;
}

.recruiter-shell .dashboard-header {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.2rem;
  padding-top: 1.75rem;
  padding-bottom: 0.2rem;
  z-index: 1;
}
.recruiter-shell .dashboard-header h1 {
  font-family: "Nunito", "Nunito", sans-serif, sans-serif;
  color: var(--ats-text);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.recruiter-shell .dashboard-header p {
  margin-top: 0.3rem;
  color: var(--ats-muted);
  line-height: 1.6;
  font-size: 0.95rem;
  max-width: 720px;
}
.recruiter-shell .dash-link {
  padding: 8px 16px;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600 !important;
  transition: background-color 0.3s ease;
  cursor: pointer;
  font-size: 14px;
  border: none;
  font-family: inherit;
  display: inline-block;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 10px;
  background: var(--ats-gradient);
  color: #fff;
  font-weight: 700;
  padding: 0.72rem 1.15rem;
  box-shadow: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.recruiter-shell .dash-link:hover {
  transform: translateY(-1px);
  box-shadow: none;
  background: var(--ats-gradient-hover);
}
.recruiter-shell .dash-link-secondary {
  padding: 8px 16px;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600 !important;
  transition: background-color 0.3s ease;
  cursor: pointer;
  font-size: 14px;
  border: none;
  font-family: inherit;
  display: inline-block;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 10px;
  border: 1px solid var(--ats-border);
  background: white;
  color: var(--ats-text);
  font-weight: 700;
  padding: 0.72rem 1.15rem;
  box-shadow: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}
.recruiter-shell .dash-link-secondary:hover {
  transform: translateY(-1px);
  box-shadow: none;
  background: var(--ats-panel-soft);
  border-color: var(--ats-border-strong);
}
.recruiter-shell .dashboard-empty {
  background: var(--ats-panel);
  border: 1px dashed var(--ats-border);
  border-radius: 16px;
  color: var(--ats-muted);
}
.recruiter-shell .dashboard-empty h2 {
  color: var(--ats-text);
  font-family: "Nunito", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}
.recruiter-shell .dashboard-empty p {
  color: var(--ats-muted);
}

.recruiter-header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.recruiter-sidebar__drawer-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.recruiter-sidebar__mobile-toggle {
  display: none;
}

@media (min-width: 769px) {
  .recruiter-sidebar__mobile-toggle {
    display: none !important;
  }
}
.recruiter-sidebar__overlay {
  display: none;
}

.recruiter-sidebar {
  position: sticky;
  top: 0;
  max-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--ats-nav-border);
  border-width: 0 1px 0 0;
  border-radius: 0;
  padding: 20px 12px;
  box-shadow: none;
}

.recruiter-sidebar__brand-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--ats-nav-line);
}

.recruiter-sidebar__close-btn {
  display: none;
}

.recruiter-sidebar__brand {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.55rem;
  min-width: 0;
}

.recruiter-sidebar__brand-meta {
  min-width: 0;
  display: grid;
  gap: 0.18rem;
}

.recruiter-sidebar__logo {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 9px;
  border: 1px solid var(--ats-nav-line);
  background: #ffffff;
  color: var(--ats-nav-active-icon);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  font-size: 0.85rem;
  font-weight: 800;
}

.recruiter-sidebar__logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.recruiter-sidebar__title {
  display: block;
  color: var(--ats-nav-text-strong);
  font-size: 0.93rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recruiter-sidebar__email {
  display: block;
  color: var(--ats-nav-text);
  font-size: 0.78rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recruiter-sidebar__nav {
  padding-top: 0.7rem;
  display: grid;
  gap: 1.2rem;
}

.recruiter-sidebar__sections {
  display: grid;
  gap: 1.3rem;
}

.recruiter-sidebar__section {
  display: grid;
  gap: 0.15rem;
}

.recruiter-sidebar__section-title {
  margin: 0;
  padding: 0.6rem 0.78rem 0.28rem;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #bbb;
}

.recruiter-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.62rem;
}

.recruiter-sidebar__list > li {
  min-width: 0;
}

.recruiter-sidebar__link,
.recruiter-sidebar__group-summary,
.recruiter-sidebar__sublink {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-radius: 14px;
  text-decoration: none;
  color: var(--ats-nav-text);
  min-height: 2.65rem;
  border: 1px solid transparent;
  background: transparent;
  padding: 0.62rem 0.88rem;
  font-weight: 500;
  line-height: 1.1;
}

.recruiter-sidebar__link:hover,
.recruiter-sidebar__group-summary:hover,
.recruiter-sidebar__sublink:hover {
  background: var(--ats-bg);
  color: var(--ats-nav-text-strong);
}

.recruiter-sidebar__link.is-active,
.recruiter-sidebar__sublink.is-active {
  background: var(--ats-nav-active-bg);
  color: var(--ats-nav-active-icon);
  font-weight: 600;
  border-color: transparent;
}

.recruiter-sidebar__group-summary.is-active {
  color: var(--ats-nav-text-strong);
  background: none;
  border-color: var(--ats-nav-active-border);
}

.recruiter-sidebar__group {
  margin: 0;
  border-radius: 14px;
  border: 1px solid transparent;
  overflow: visible;
}

.recruiter-sidebar__group[open] {
  border-color: transparent;
  background: transparent;
}

.recruiter-sidebar__group-summary {
  cursor: pointer;
  justify-content: space-between;
  width: auto;
  list-style: none;
  margin: 0;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.recruiter-sidebar__group[open] > .recruiter-sidebar__group-summary {
  border-color: var(--ats-nav-active-border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.recruiter-sidebar__group-summary::marker,
.recruiter-sidebar__group-summary::-webkit-details-marker {
  display: none;
}

.recruiter-sidebar__group-title {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.recruiter-sidebar__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.05rem;
  height: 1.05rem;
  margin-left: auto;
  color: inherit;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  opacity: 0.95;
}

.recruiter-sidebar__chevron::before {
  content: "";
  display: block;
  width: 0.42rem;
  height: 0.42rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -0.1rem;
}

.recruiter-sidebar__group[open] .recruiter-sidebar__chevron {
  transform: rotate(180deg);
  color: var(--ats-nav-active-icon);
}

.recruiter-sidebar__sublist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.22rem;
}

.recruiter-sidebar__sublink {
  font-size: 13px;
  font-weight: 500;
  border-radius: 9px;
  min-height: auto;
  padding: 9px 10px;
  gap: 9px;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.recruiter-sidebar__sublink-icon,
.recruiter-sidebar__icon {
  width: 1.08rem;
  height: 1.08rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.recruiter-sidebar__quick {
  margin-top: 0.9rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--ats-nav-line);
  display: grid;
  gap: 0.5rem;
}

.recruiter-sidebar__quick-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 12px;
  border: 1px solid var(--ats-nav-line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ats-nav-text-strong);
  padding: 0.55rem 0.78rem;
  font-weight: 500;
  text-decoration: none;
}
.recruiter-sidebar__quick-link:hover {
  background: var(--ats-nav-active-bg);
  border-color: var(--ats-nav-active-border);
  color: var(--ats-nav-text-strong);
}

.recruiter-sidebar__sublink.is-active .recruiter-sidebar__sublink-icon,
.recruiter-sidebar__link.is-active .recruiter-sidebar__icon {
  color: currentColor;
}

.recruiter-sidebar__group-summary.is-active .recruiter-sidebar__icon {
  color: var(--ats-nav-text-strong);
}

.recruiter-sidebar__group[open] > .recruiter-sidebar__group-summary .recruiter-sidebar__icon,
.recruiter-sidebar__group[open] > .recruiter-sidebar__group-summary .recruiter-sidebar__chevron {
  color: var(--ats-nav-text-strong);
}

@media (max-width: 768px) {
  .recruiter-sidebar__drawer-toggle {
    position: absolute;
    inset: auto;
  }
  .recruiter-sidebar__mobile-toggle {
    display: inline-flex;
    position: fixed;
    top: calc(80px + 0.65rem);
    left: 0.75rem;
    z-index: 180;
    border: 1px solid var(--ats-border);
    border-radius: 999px;
    background: var(--ats-panel);
    color: var(--ats-text);
    padding: 0.42rem 0.72rem;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.16);
    cursor: pointer;
  }
  .recruiter-sidebar__mobile-toggle-icon {
    width: 1.1rem;
    height: 1.1rem;
  }
  .recruiter-sidebar__close-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 10px;
    background: var(--ats-panel-soft);
    border: 1px solid var(--ats-border);
    color: var(--ats-text);
    flex-shrink: 0;
    cursor: pointer;
  }
  .recruiter-sidebar__close-btn-icon {
    width: 1.05rem;
    height: 1.05rem;
  }
  .recruiter-shell .dashboard-page {
    display: block;
  }
  .recruiter-shell .dashboard-page > .recruiter-sidebar {
    grid-row: auto;
    position: fixed;
    left: 0;
    top: 80px;
    width: min(88vw, 320px);
    height: calc(100dvh - 80px);
    max-height: none;
    transform: translateX(-110%);
    transition: transform 0.22s ease;
    z-index: 190;
    margin: 0;
  }
  .recruiter-shell .dashboard-page > *:not(.recruiter-sidebar):not(.recruiter-sidebar__drawer-toggle):not(.recruiter-sidebar__mobile-toggle):not(.recruiter-sidebar__overlay) {
    grid-column: auto;
    max-width: none;
    padding-inline: 0;
  }
  .recruiter-shell .dashboard-page > .recruiter-breadcrumbs {
    margin-top: 0;
    margin-bottom: 0.5rem;
    padding-inline: 0;
  }
  .recruiter-sidebar__nav {
    gap: 1rem;
  }
  .recruiter-sidebar__section-title {
    padding-inline: 0.15rem;
  }
  #recruiter-sidebar-toggle:checked + .recruiter-sidebar__mobile-toggle + .recruiter-sidebar {
    transform: translateX(0);
  }
  .recruiter-sidebar__overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 170;
    background: rgba(15, 23, 42, 0.44);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }
  #recruiter-sidebar-toggle:checked + .recruiter-sidebar__mobile-toggle + .recruiter-sidebar + .recruiter-sidebar__overlay {
    opacity: 1;
    pointer-events: auto;
  }
}
.recruiter-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 0.9rem;
}

.recruiter-metric {
  background: var(--ats-panel);
  border: 1px solid var(--ats-border);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.recruiter-metric:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(107, 0, 201, 0.08);
  border-color: var(--ats-border-strong);
}

.recruiter-metric__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.recruiter-metric__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ats-primary-soft);
  color: var(--ats-primary);
}

.recruiter-metric__label {
  font-size: 0.78rem;
  color: var(--ats-muted);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.recruiter-metric__value {
  margin: 0.25rem 0 0;
  color: var(--ats-text);
  font-size: 1.8rem;
  line-height: 1;
  font-family: "Nunito", "Nunito", sans-serif, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.recruiter-metric__actions {
  margin-top: auto;
}

.recruiter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 0.9rem;
}

.recruiter-tests-grid {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 0.9rem;
}

.recruiter-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--ats-panel);
  border: 1px solid var(--ats-border);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}
.recruiter-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(107, 0, 201, 0.08);
  border-color: var(--ats-border-strong);
}

.recruiter-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.8rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--ats-border);
}

.recruiter-card__top--compact {
  padding-bottom: 0;
  border-bottom: 0;
}

.recruiter-card__identity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.recruiter-card__identity--profile {
  align-items: flex-start;
  margin-bottom: 0.8rem;
}

.recruiter-avatar {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 999px;
  flex-shrink: 0;
  background: var(--ats-panel-soft);
  color: var(--ats-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 800;
  border: 1px solid var(--ats-border);
  overflow: hidden;
}

.recruiter-avatar--lg {
  width: 3.4rem;
  height: 3.4rem;
  font-size: 1rem;
}

.recruiter-card__avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.recruiter-card__title {
  margin: 0;
  color: var(--ats-text);
  font-family: "Nunito", "Nunito", sans-serif, sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
  line-height: 1.3;
}

.recruiter-card__subtitle {
  margin: 0.2rem 0 0;
  color: var(--ats-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.recruiter-score {
  text-align: right;
  color: var(--ats-text);
  font-size: 1.38rem;
  line-height: 1;
  font-weight: 800;
}
.recruiter-score span {
  display: block;
  margin-top: 0.22rem;
  color: var(--ats-muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.recruiter-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.recruiter-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--ats-panel-soft);
  border: 1px solid var(--ats-border);
  color: var(--ats-muted);
  border-radius: 999px;
  padding: 0.24rem 0.62rem;
  font-size: 0.74rem;
  font-weight: 600;
}

.recruiter-badges--tests {
  gap: 0.35rem;
}

.recruiter-badge--neutral {
  background: #f4f2f8;
  border-color: #ede8f5;
  color: #555;
}

.recruiter-badge--status {
  background: #f8f6fc;
  border-color: #ede8f5;
  color: #888;
}

.recruiter-badge--google-published {
  background: #eef2ff;
  border-color: #c7d2fe;
  color: #4338ca;
}

.recruiter-badge--tech {
  background: #f0ebfb;
  border-color: #e2d7fb;
  color: #6b00c9;
}

.recruiter-badge--marketing {
  background: #fdf0fb;
  border-color: #f7d1ef;
  color: #fe3cd3;
}

.recruiter-badge--commercial {
  background: #fff0f4;
  border-color: #ffd9e4;
  color: #fe3c72;
}

.recruiter-badge--psy {
  background: #f0ebfb;
  border-color: #e2d7fb;
  color: #6b00c9;
}

.recruiter-card__desc {
  margin: 0;
  color: var(--ats-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recruiter-card__desc--tests {
  -webkit-line-clamp: initial;
  line-clamp: initial;
  font-size: 0.8rem;
  line-height: 1.55;
  color: #888;
}

.recruiter-offer-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid #e7ebf3;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.recruiter-offer-stats__item {
  padding: 0.95rem 0.8rem 0.85rem;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.22rem;
  min-width: 0;
}
.recruiter-offer-stats__item:not(:last-child) {
  border-right: 1px solid #e7ebf3;
}

.recruiter-offer-stats__value {
  color: #170017;
  font-size: 17px;
  line-height: 1;
  font-weight: 800;
}

.recruiter-offer-stats__label {
  color: #bbb;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 2px;
}

.recruiter-offer-stats__item:last-child .recruiter-offer-stats__value {
  color: #10b981;
}

.recruiter-card__actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.recruiter-card__actions--tests {
  gap: 0.45rem;
  padding: 0.85rem 1rem 1rem;
  border-top: 1px solid #f8f6fc;
}

.recruiter-test-card {
  gap: 0;
  padding: 0;
  border-radius: 14px;
  border-color: #ede8f5;
  overflow: hidden;
  position: relative;
  box-shadow: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.recruiter-test-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #7c3aed, #fe3cd3);
}
.recruiter-test-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(107, 0, 201, 0.12);
}

.recruiter-test-card--tech::before {
  background: linear-gradient(90deg, #6b00c9, #9b59f5);
}

.recruiter-test-card--marketing::before {
  background: linear-gradient(90deg, #fe3cd3, #fe3c72);
}

.recruiter-test-card--commercial::before {
  background: linear-gradient(90deg, #fe3c72, #fe9a3c);
}

.recruiter-test-card--psy::before {
  background: linear-gradient(90deg, #6b00c9, #fe3c72);
}

.recruiter-test-card__body {
  padding: 1.1rem 1rem 0.95rem;
  display: grid;
  gap: 0.75rem;
}

.recruiter-test-card__icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f4f2f8;
  color: #6b00c9;
}

.recruiter-test-card--tech .recruiter-test-card__icon,
.recruiter-test-card--psy .recruiter-test-card__icon {
  background: #f0ebfb;
  color: #6b00c9;
}

.recruiter-test-card--marketing .recruiter-test-card__icon {
  background: #fdf0fb;
  color: #fe3cd3;
}

.recruiter-test-card--commercial .recruiter-test-card__icon {
  background: #fff0f4;
  color: #fe3c72;
}

.recruiter-test-card .recruiter-card__title {
  font-size: 0.92rem;
  line-height: 1.35;
  font-weight: 800;
  color: #170017;
}

.recruiter-test-card .recruiter-card__subtitle {
  margin-top: 0.2rem;
  font-size: 0.76rem;
  color: #aaa;
}

.recruiter-btn--static {
  cursor: default;
  pointer-events: none;
  opacity: 0.88;
}

@media (max-width: 720px) {
  .recruiter-offer-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .recruiter-offer-stats__item:nth-child(2n) {
    border-right: 0;
  }
  .recruiter-offer-stats__item:nth-child(-n+2) {
    border-bottom: 1px solid #e7ebf3;
  }
  .recruiter-offer-stats__value {
    font-size: 17px;
  }
  .recruiter-offer-stats__label {
    font-size: 11px;
  }
}
.recruiter-btn {
  padding: 8px 16px;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600 !important;
  transition: background-color 0.3s ease;
  cursor: pointer;
  font-size: 14px;
  border: none;
  font-family: inherit;
  display: inline-block;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}
.recruiter-btn:hover {
  transform: translateY(-1px);
}
.recruiter-btn:disabled, .recruiter-btn[aria-disabled=true] {
  opacity: 0.5;
  pointer-events: none;
}

.recruiter-btn--primary {
  background: var(--ats-gradient);
  color: #fff;
  box-shadow: 0 4px 14px rgba(254, 60, 114, 0.25);
}
.recruiter-btn--primary:hover {
  background: var(--ats-gradient-hover);
  box-shadow: 0 6px 20px rgba(254, 60, 114, 0.3);
}

.recruiter-btn--ghost {
  background: var(--ats-panel);
  color: var(--ats-text);
  border-color: var(--ats-border);
  font-weight: 700;
  box-shadow: none;
}
.recruiter-btn--ghost:hover {
  background: var(--ats-panel-soft);
  border-color: var(--ats-border-strong);
  box-shadow: 0 4px 20px rgba(107, 0, 201, 0.08);
}

.recruiter-home-metrics,
.cvtheque-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.recruiter-home-card,
.cvtheque-summary__card,
.jobs-toolbar,
.cvtheque-filters,
.cvtheque-callout {
  background: var(--ats-panel);
  border: 1px solid var(--ats-border);
  border-radius: 14px;
}

.recruiter-home-card {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 164px;
  padding: 18px;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.recruiter-home-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(107, 0, 201, 0.08);
  border-color: var(--ats-border-strong);
}

.recruiter-home-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--card-accent, var(--ats-gradient));
}

.recruiter-home-card--rose {
  --card-accent: linear-gradient(90deg, #fe3c72 0%, #fe3cd3 100%);
  --card-soft: #fff0f4;
  --card-icon: #fe3c72;
  --card-link: #fe3c72;
}

.recruiter-home-card--violet {
  --card-accent: linear-gradient(90deg, #6b00c9 0%, #9b59f5 100%);
  --card-soft: #f0ebfb;
  --card-icon: #6b00c9;
  --card-link: #6b00c9;
}

.recruiter-home-card--fuchsia {
  --card-accent: linear-gradient(90deg, #9b59f5 0%, #fe3cd3 100%);
  --card-soft: #fdf0fb;
  --card-icon: #fe3cd3;
  --card-link: #fe3cd3;
}

.recruiter-home-card--slate {
  --card-accent: linear-gradient(90deg, #d8ccef 0%, #ede8f5 100%);
  --card-soft: #f8f6fc;
  --card-icon: #777;
  --card-link: #555;
}

.recruiter-home-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--card-soft);
  color: var(--card-icon);
}

.recruiter-home-card__body {
  display: grid;
  gap: 4px;
}

.recruiter-home-card__value,
.cvtheque-summary__value {
  color: var(--ats-text);
  font-family: "Nunito", "Nunito", sans-serif, sans-serif;
  font-size: clamp(1.7rem, 2.4vw, 2.15rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.recruiter-home-card__label,
.cvtheque-summary__label {
  margin: 0;
  color: var(--ats-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.recruiter-home-card__foot {
  margin-top: auto;
}

.recruiter-home-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--card-link);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}
.recruiter-home-card__cta:hover {
  text-decoration: underline;
}

.recruiter-home-analytics {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 18px;
}

.recruiter-home-panel {
  display: grid;
  gap: 1.15rem;
  padding: 1.4rem;
  border: 1px solid var(--ats-border);
  border-radius: 18px;
  background: var(--ats-panel);
}

.recruiter-home-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.recruiter-home-panel__title {
  margin: 0;
  color: var(--ats-text);
  font-family: "Nunito", "Nunito", sans-serif, sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
}

.recruiter-home-panel__meta {
  color: var(--ats-muted-soft);
  font-size: 0.8rem;
  font-weight: 600;
}

.recruiter-home-funnel,
.recruiter-home-sources,
.recruiter-home-time {
  display: grid;
  gap: 0.68rem;
}

.recruiter-home-funnel__row,
.recruiter-home-sources__row {
  display: grid;
  align-items: center;
  gap: 0.68rem;
}

.recruiter-home-funnel__row {
  grid-template-columns: 136px minmax(0, 1fr) 40px;
}

.recruiter-home-funnel__label,
.recruiter-home-sources__label {
  color: #445167;
  font-size: 0.84rem;
  font-weight: 500;
}

.recruiter-home-funnel__bar,
.recruiter-home-sources__bar {
  position: relative;
  height: 28px;
  border-radius: 6px;
  background: #f2eff8;
  overflow: hidden;
}

.recruiter-home-funnel__fill {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 2.1rem;
  height: 100%;
  padding-inline: 0.55rem;
  border-radius: inherit;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
}

.recruiter-home-funnel__fill--violet {
  background: linear-gradient(90deg, #6b00c9 0%, #9b59f5 100%);
}

.recruiter-home-funnel__fill--pink {
  background: linear-gradient(90deg, #ff2d72 0%, #ff43b0 100%);
}

.recruiter-home-funnel__fill--teal {
  background: linear-gradient(90deg, #11998e 0%, #23c6b8 100%);
}

.recruiter-home-funnel__fill--amber {
  background: linear-gradient(90deg, #f59e0b 0%, #f6c445 100%);
}

.recruiter-home-funnel__fill--rose {
  background: linear-gradient(90deg, #e83e8c 0%, #f24b6a 100%);
}

.recruiter-home-funnel__fill--purple {
  background: linear-gradient(90deg, #7c19d8 0%, #5812c8 100%);
}

.recruiter-home-funnel__fill--plum {
  background: linear-gradient(90deg, #2d0a3f 0%, #5a16cf 100%);
}

.recruiter-home-funnel__percent,
.recruiter-home-sources__percent {
  color: #9aa6bb;
  font-size: 0.92rem;
  font-weight: 500;
  text-align: right;
}

.recruiter-home-sources__row {
  grid-template-columns: minmax(136px, 1fr) minmax(108px, 1fr) 26px 30px;
}

.recruiter-home-sources__label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.recruiter-home-sources__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.recruiter-home-sources__dot--violet {
  background: #6b00c9;
}

.recruiter-home-sources__dot--blue {
  background: #1482bd;
}

.recruiter-home-sources__dot--pink {
  background: #ff3d95;
}

.recruiter-home-sources__dot--amber {
  background: #f59e0b;
}

.recruiter-home-sources__dot--gray {
  background: #aaaaaa;
}

.recruiter-home-sources__bar {
  height: 8px;
  border-radius: 99px;
}

.recruiter-home-sources__fill {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.recruiter-home-sources__fill--violet {
  background: linear-gradient(90deg, #6b00c9 0%, #9b59f5 100%);
}

.recruiter-home-sources__fill--blue {
  background: linear-gradient(90deg, #0f7ab8 0%, #1694d2 100%);
}

.recruiter-home-sources__fill--pink {
  background: linear-gradient(90deg, #ff3d95 0%, #fe3cd3 100%);
}

.recruiter-home-sources__fill--amber {
  background: linear-gradient(90deg, #f59e0b 0%, #f6c445 100%);
}

.recruiter-home-sources__fill--gray {
  background: #aaaaaa;
}

.recruiter-home-sources__value {
  color: #170017;
  font-family: "Nunito", "Nunito", sans-serif, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  text-align: right;
}

.recruiter-home-time {
  padding-top: 0.3rem;
}

.recruiter-home-time__title {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  color: #170017;
  font-family: "Nunito", "Nunito", sans-serif, sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.recruiter-home-time__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.68rem;
}

.recruiter-home-time__card {
  display: grid;
  place-items: center;
  gap: 0.1rem;
  min-height: 88px;
  padding: 0.75rem;
  border-radius: 12px;
  background: #f6f3fb;
}

.recruiter-home-time__value {
  color: #6b00c9;
  font-family: "Nunito", "Nunito", sans-serif, sans-serif;
  font-size: 1.32rem;
  font-weight: 900;
  line-height: 1;
}

.recruiter-home-time__unit {
  color: #a0a4b0;
  font-size: 0.86rem;
}

.recruiter-home-time__label {
  margin: 0.25rem 0 0;
  color: #475569;
  font-size: 0.95rem;
  text-align: center;
}

.cvtheque-summary__card {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.cvtheque-callout {
  padding: 14px 16px;
  color: #b91c1c;
  background: #fff5f5;
}

.cvtheque-card__meta {
  color: var(--ats-muted);
  font-size: 0.85rem;
}

.cvtheque-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ats-muted-soft);
  font-size: 0.85rem;
}

.cvtheque-pagination__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cvtheque-pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.72rem 1rem;
  border: 1px solid var(--ats-border);
  border-radius: 10px;
  background: var(--ats-panel);
  color: var(--ats-text);
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}
.cvtheque-pagination__btn:hover {
  transform: translateY(-1px);
  background: var(--ats-panel-soft);
  border-color: var(--ats-border-strong);
  box-shadow: 0 4px 20px rgba(107, 0, 201, 0.08);
}

.cvtheque-pagination__btn.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.recruiter-grid--candidate-cards {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 460px), 1fr));
  gap: 1.1rem;
  align-items: stretch;
}

.recruiter-candidate-toolbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.recruiter-candidate-search {
  flex: 1 1 360px;
  min-width: min(100%, 280px);
  max-width: 520px;
  min-height: 2.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.32rem 0.42rem 0.32rem 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 0.9rem;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.recruiter-candidate-search:focus-within {
  border-color: rgba(99, 102, 241, 0.45);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.08);
}

.recruiter-candidate-search__submit {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #64748b;
  cursor: pointer;
  transition: color 0.15s ease;
}
.recruiter-candidate-search__submit svg,
.recruiter-candidate-search__submit img {
  width: 100%;
  height: 100%;
}
.recruiter-candidate-search__submit:hover {
  color: #1e293b;
}

.recruiter-candidate-search__input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #0f172a;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 400;
  outline: 0;
}
.recruiter-candidate-search__input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}
.recruiter-candidate-search__input::-webkit-search-cancel-button {
  appearance: none;
}

.recruiter-candidate-search__clear {
  width: 1.9rem;
  height: 1.9rem;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 0.65rem;
  background: #f8fafc;
  color: #64748b;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.recruiter-candidate-search__clear svg,
.recruiter-candidate-search__clear img {
  width: 1rem;
  height: 1rem;
}
.recruiter-candidate-search__clear:hover {
  background: #eef2ff;
  border-color: rgba(99, 102, 241, 0.25);
  color: #1e293b;
}

.recruiter-candidate-filters {
  margin-bottom: 1rem;
  padding: 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.recruiter-candidate-filters__form {
  display: grid;
  gap: 0.95rem;
}

.recruiter-candidate-filters__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.recruiter-candidate-filters__title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.recruiter-candidate-filters__title-wrap h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
}

.recruiter-candidate-filters__badge {
  border-radius: 999px;
  background: #f5f3ff;
  color: #6d28d9;
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.recruiter-candidate-filters__reset {
  color: #64748b;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  transition: color 0.16s ease;
}
.recruiter-candidate-filters__reset:hover {
  color: #6d28d9;
}

.recruiter-candidate-filters__chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
}

.recruiter-candidate-filters__chip {
  min-height: 2.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.8rem;
  background: #f8fafc;
  padding: 0.45rem 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: #334155;
}

.recruiter-candidate-filters__chip-label {
  font-weight: 600;
  white-space: nowrap;
}

.recruiter-candidate-filters__chip-sep {
  color: #94a3b8;
  font-size: 0.82rem;
}

.recruiter-candidate-filters__chip input,
.recruiter-candidate-filters__chip select {
  border: 0;
  background: transparent;
  color: #0f172a;
  font-size: 0.85rem;
  padding: 0;
  min-width: 0;
}
.recruiter-candidate-filters__chip input:focus,
.recruiter-candidate-filters__chip select:focus {
  outline: none;
}

.recruiter-candidate-filters__chip--period input {
  width: 8.1rem;
}

.recruiter-candidate-filters__chip--score input {
  width: auto;
  text-align: left;
}

.recruiter-score-range {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 10.2rem;
  height: 1.2rem;
}

.recruiter-score-range__track,
.recruiter-score-range__active {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 0.28rem;
  border-radius: 999px;
  pointer-events: none;
}

.recruiter-score-range__track {
  width: 100%;
  background: #d7deea;
}

.recruiter-score-range__active {
  background: #7c3aed;
}

.recruiter-score-range input[type=range] {
  position: absolute;
  inset: 0;
  width: 100%;
  margin: 0;
  background: transparent;
  pointer-events: none;
  appearance: none;
}
.recruiter-score-range input[type=range]::-webkit-slider-runnable-track {
  height: 0.28rem;
  background: transparent;
}
.recruiter-score-range input[type=range]::-webkit-slider-thumb {
  pointer-events: auto;
  appearance: none;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 999px;
  border: 2px solid #7c3aed;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.2);
  margin-top: -5px;
  cursor: pointer;
}
.recruiter-score-range input[type=range]::-moz-range-track {
  height: 0.28rem;
  background: transparent;
}
.recruiter-score-range input[type=range]::-moz-range-thumb {
  pointer-events: auto;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 999px;
  border: 2px solid #7c3aed;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.2);
  cursor: pointer;
}

.recruiter-score-range__value {
  min-width: 1.7rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #334155;
}

.recruiter-candidate-filters__chip--sort select {
  min-width: 5.3rem;
}

.recruiter-candidate-filters__apply {
  margin-left: auto;
  min-height: 2.75rem;
  border: 0;
  border-radius: 0.8rem;
  background: #7c3aed;
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.22);
  transition: background 0.16s ease;
}
.recruiter-candidate-filters__apply:hover {
  background: #6d28d9;
}

.recruiter-card--candidate {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  row-gap: 1rem;
  align-content: start;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 247, 255, 0.98) 100%);
  border: 1px solid rgba(213, 219, 236, 0.9);
  border-radius: 18px;
  padding: clamp(1rem, 2.2vw, 1.55rem);
  box-shadow: 0 14px 36px rgba(89, 64, 173, 0.08);
  gap: 1rem;
  overflow: hidden;
}
.recruiter-card--candidate::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #6b00c9 0%, #9b59f5 52%, #fe3cd3 100%);
}
.recruiter-card--candidate:hover {
  transform: translateY(-2px);
  border-color: rgba(176, 161, 232, 0.95);
  box-shadow: 0 20px 44px rgba(89, 64, 173, 0.14);
}

.recruiter-card-candidate__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 1.2rem;
}

.recruiter-card-candidate__identity {
  display: grid;
  justify-items: start;
  gap: 0.85rem;
  min-width: 0;
}

.recruiter-card-candidate__identity-main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.recruiter-card-candidate__meta {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.recruiter-card-candidate__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.6rem;
}

.recruiter-avatar--candidate {
  width: 4.35rem;
  height: 4.35rem;
  border: 1px solid #d7cdf4;
  background: linear-gradient(180deg, #f5eeff 0%, #ebe6fb 100%);
  color: #6d759a;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.recruiter-avatar--candidate-icon {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
}
.recruiter-avatar--candidate-icon svg,
.recruiter-avatar--candidate-icon img {
  width: 72%;
  height: 72%;
}

.recruiter-avatar--candidate-initials {
  position: absolute;
  bottom: 0.2rem;
  right: 0.25rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #636c8e;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  padding: 0.08rem 0.3rem;
}

.recruiter-candidate-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.42rem 0.7rem;
  font-size: 0.79rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  box-shadow: none;
}

.recruiter-candidate-status__dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.85;
}

.recruiter-candidate-status.is-new {
  background: #eef5ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}

.recruiter-candidate-status.is-success {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #166534;
}

.recruiter-candidate-status.is-danger {
  background: #fef2f2;
  border-color: #fecaca;
  color: #b4232f;
}

.recruiter-candidate-status.is-info {
  background: #f5f3ff;
  border-color: #ddd6fe;
  color: #6d28d9;
}

.recruiter-candidate-status.is-neutral {
  background: #f8f9fd;
  border-color: #e6ebf3;
  color: #4f5f78;
}

.recruiter-score-ring {
  --score-value: 0;
  --score-color: #33be63;
  width: clamp(4.9rem, 8.5vw, 5.8rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(var(--score-color) calc(var(--score-value) * 1%), #d7dde6 0);
  padding: 0.46rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: none;
}

.recruiter-score-ring.is-high {
  --score-color: #33be63;
}

.recruiter-score-ring.is-mid {
  --score-color: #f2ad40;
}

.recruiter-score-ring.is-low {
  --score-color: #ef4949;
}

.recruiter-score-ring.is-unknown {
  --score-value: 100;
  --score-color: #c6ccd6;
}

.recruiter-score-ring__inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 0;
  background: #ffffff;
  display: grid;
  place-content: center;
  text-align: center;
}
.recruiter-score-ring__inner strong {
  display: block;
  line-height: 1;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 800;
  color: var(--score-color);
  letter-spacing: -0.03em;
}
.recruiter-score-ring__inner span {
  margin-top: 0.24rem;
  display: block;
  line-height: 1;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #737b88;
}

.recruiter-card-candidate__content {
  display: grid;
  gap: 0.7rem;
  padding: 0.95rem 0 0;
  border-top: 1px solid rgba(222, 228, 239, 0.9);
}

.recruiter-card-candidate__title {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #051b3a;
}

.recruiter-card-candidate__role {
  margin: 0;
  color: #5a4ab3;
  font-size: 0.91rem;
  font-weight: 700;
}

.recruiter-card-candidate__location {
  margin: 0;
  color: #54657e;
  font-size: 0.79rem;
  font-weight: 700;
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: #f3f4fb;
  border: 1px solid #e0e5f0;
}

.recruiter-card-candidate__date {
  margin: 0;
  color: #4f5f78;
  font-size: 0.79rem;
  line-height: 1.4;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: #f8f9fd;
  border: 1px solid #e6ebf3;
}
.recruiter-card-candidate__date svg,
.recruiter-card-candidate__date img {
  width: 0.95rem;
  height: 0.95rem;
}

.recruiter-card-candidate__date--experience.is-low {
  color: #b45309;
  background: #fff7ed;
  border-color: #fed7aa;
}

.recruiter-card-candidate__date--experience.is-mid {
  color: #1d4ed8;
  background: #eff6ff;
  border-color: #bfdbfe;
}

.recruiter-card-candidate__date--experience.is-high {
  color: #166534;
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.recruiter-card-candidate__date--experience.is-unknown {
  color: #4f5f78;
  background: #f8f9fd;
  border-color: #e6ebf3;
}

.recruiter-skill-pills {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}

.recruiter-skill-text {
  color: #2fb289;
  font-size: 0.95rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0;
}

.recruiter-skill-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  white-space: nowrap;
  border-radius: 999px;
  padding: 0.34rem 0.72rem;
  color: #ffffff;
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 700;
  border: 1px solid transparent;
}

.recruiter-card-candidate__content .recruiter-skill-pills .recruiter-skill-pill {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  align-self: flex-start !important;
  width: auto !important;
  width: fit-content !important;
  min-width: 0 !important;
  max-width: max-content !important;
  height: auto !important;
  height: fit-content !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  white-space: nowrap !important;
  padding: 0.34rem 0.72rem !important;
  border-radius: 999px !important;
  line-height: 1 !important;
}

.recruiter-skill-pill--1 {
  background: #3ecb79;
}

.recruiter-skill-pill--2 {
  background: #4775ee;
}

.recruiter-skill-pill--3 {
  background: #eea848;
}

.recruiter-skill-pill--4 {
  background: #7f78dd;
}

.recruiter-skill-pill--5 {
  background: #96a0ad;
}

.recruiter-skill-pill--6 {
  background: #5d87d8;
}

.recruiter-score-breakdown {
  margin-top: 0;
  display: block;
}

.recruiter-score-breakdown__legend {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.32rem 0.55rem;
}

.recruiter-score-breakdown__legend-item {
  --score-fill: 0%;
  --fill-color: #8ea1c9;
  min-height: 1.5rem;
  border: 1px solid #dbe1ec;
  border-radius: 0.48rem;
  background: linear-gradient(90deg, color-mix(in srgb, var(--fill-color) 26%, #ffffff) var(--score-fill), #fff var(--score-fill));
  padding: 0.25rem 0.4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.35rem;
}

.recruiter-score-breakdown__legend-item--is-high {
  --fill-color: #2dbf68;
  border-color: #b9e7c9;
}

.recruiter-score-breakdown__legend-item--is-mid {
  --fill-color: #f2ad40;
  border-color: #f1ddb6;
}

.recruiter-score-breakdown__legend-item--is-low {
  --fill-color: #ef5757;
  border-color: #f2c2c2;
}

.recruiter-score-breakdown__label {
  color: #333;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recruiter-score-breakdown__value {
  color: #12284a;
  font-size: 0.69rem;
  line-height: 1;
  font-weight: 800;
}

.recruiter-card-candidate__actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-end;
  gap: 0.75rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(222, 228, 239, 0.9);
}

.recruiter-card-candidate__actions .recruiter-btn--candidate-primary {
  box-shadow: none;
}

.recruiter-btn--candidate-primary {
  min-height: 2.8rem;
  background: linear-gradient(130deg, #6b00c9 0%, #8f54f7 100%);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 0.72rem 1.15rem;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 22px rgba(107, 0, 201, 0.2);
}
.recruiter-btn--candidate-primary:hover {
  background: linear-gradient(130deg, #5e00b1 0%, #7b3ff0 100%);
}

[data-jobs-grid="1"] .recruiter-btn--candidate-primary {
  box-shadow: none;
}

[data-jobs-grid="1"] .recruiter-btn--candidate-primary:hover {
  box-shadow: none;
}

[data-jobs-grid="1"] .recruiter-card__actions--jobs .recruiter-btn {
  min-height: 2.45rem;
  padding: 0.58rem 0.92rem;
  font-size: 0.8rem;
}

.recruiter-card-candidate__quick-actions {
  display: flex;
  justify-content: end;
  position: relative;
}

.recruiter-icon-btn {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 0.9rem;
  border: 1px solid #d3d8e2;
  background: #f8f9fc;
  color: #6d7688;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.recruiter-icon-btn svg,
.recruiter-icon-btn img {
  width: 1.24rem;
  height: 1.24rem;
}
.recruiter-icon-btn:hover:not(:disabled) {
  background: #ffffff;
  color: #3f4c66;
  border-color: #bcc5d4;
}
.recruiter-icon-btn:disabled {
  opacity: 0.5;
}

.recruiter-card-actions-menu {
  position: relative;
}

.recruiter-card-actions-menu__trigger {
  list-style: none;
  cursor: pointer;
}
.recruiter-card-actions-menu__trigger::marker {
  content: "";
}
.recruiter-card-actions-menu__trigger::-webkit-details-marker {
  display: none;
}

.recruiter-card-actions-menu__list {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.45rem);
  width: max-content;
  min-width: 12.5rem;
  border: 1px solid #d6deeb;
  border-radius: 0.75rem;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(22, 34, 56, 0.16);
  padding: 0.3rem;
  display: none;
  z-index: 20;
}

.recruiter-card-actions-menu[open] .recruiter-card-actions-menu__list {
  display: grid;
  gap: 0.22rem;
}

.recruiter-card-actions-menu__item {
  width: 100%;
  min-height: 2.2rem;
  border: 0;
  border-radius: 0.52rem;
  background: transparent;
  color: #24324d;
  text-decoration: none;
  padding: 0.36rem 0.5rem;
  display: grid;
  grid-template-columns: 1rem 1fr;
  align-items: center;
  gap: 0.48rem;
  font-size: 0.79rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.recruiter-card-actions-menu__item svg,
.recruiter-card-actions-menu__item img {
  width: 0.95rem;
  height: 0.95rem;
}
.recruiter-card-actions-menu__item:hover:not(:disabled) {
  background: #f3f7ff;
  color: #132a4a;
}
.recruiter-card-actions-menu__item:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cvtheque-pagination {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.cvtheque-pagination__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cvtheque-pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.3rem;
  border-radius: 10px;
  border: 1px solid transparent;
  background: #f0ebfb;
  color: #6b00c9;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: background-color 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}
.cvtheque-pagination__btn:hover {
  background: #f0ebfb;
}
.cvtheque-pagination__btn.is-disabled {
  pointer-events: none;
  opacity: 0.45;
}

.cvtheque-pagination__btn--nav {
  padding: 0.45rem 0.6rem;
  background: transparent;
  color: #6b00c9;
  gap: 0.3rem;
}

.cvtheque-pagination__btn--number {
  min-width: 2rem;
  padding: 0.4rem 0.55rem;
}

.cvtheque-pagination__btn--number.is-active {
  background: #6b00c9;
  color: #ffffff;
}

.cvtheque-pagination__ellipsis {
  color: #b2b7d0;
  font-size: 1rem;
  font-weight: 700;
  padding: 0 0.15rem;
  line-height: 1;
}

@media (max-width: 860px) {
  .recruiter-candidate-search {
    flex-basis: 100%;
    max-width: none;
    order: 3;
  }
  .recruiter-candidate-filters__head {
    align-items: flex-start;
    flex-direction: column;
  }
  .recruiter-candidate-filters__chip--period input {
    width: 7rem;
  }
  .recruiter-candidate-filters__apply {
    width: 100%;
    margin-left: 0;
  }
  .recruiter-card-candidate__header {
    gap: 0.85rem;
  }
  .recruiter-card-candidate__identity-main {
    gap: 0.85rem;
  }
  .recruiter-card-candidate__actions {
    align-items: center;
  }
}
@media (max-width: 620px) {
  .recruiter-candidate-filters {
    padding: 0.9rem;
  }
  .recruiter-candidate-filters__chip {
    width: 100%;
    justify-content: space-between;
  }
  .recruiter-candidate-filters__chip--period,
  .recruiter-candidate-filters__chip--score {
    flex-wrap: wrap;
    row-gap: 0.3rem;
  }
  .recruiter-candidate-filters__chip--period input,
  .recruiter-candidate-filters__chip--score input,
  .recruiter-candidate-filters__chip--sort select {
    width: auto;
  }
  .recruiter-score-range input[type=range] {
    min-width: 7rem;
  }
  .recruiter-card-candidate__header {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .recruiter-card-candidate__identity-main {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .recruiter-score-ring {
    justify-self: end;
  }
  .recruiter-card-candidate__actions {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .recruiter-card-candidate__quick-actions {
    justify-content: end;
  }
}
.recruiter-split {
  display: grid;
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
  gap: 1rem;
}
@media (max-width: 1040px) {
  .recruiter-split {
    grid-template-columns: 1fr;
  }
}

.recruiter-stack {
  display: grid;
  gap: 1rem;
}

.recruiter-panel {
  background: var(--ats-panel);
  border: 1px solid var(--ats-border);
  border-radius: 14px;
  padding: 1.25rem;
  color: var(--ats-text);
  box-shadow: 0 8px 48px rgba(107, 0, 201, 0.09);
}

.recruiter-panel--sticky {
  position: sticky;
  top: calc(80px + 0.75rem);
  align-self: start;
}

.recruiter-panel h2 {
  color: var(--ats-text);
  font-family: "Nunito", "Nunito", sans-serif, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.6rem;
}

.recruiter-panel__subtitle {
  margin: 0.2rem 0 0;
  color: var(--ats-muted);
  font-size: 0.9rem;
}

.recruiter-kv {
  display: grid;
  gap: 0.5rem;
}

.recruiter-kv--compact {
  gap: 0.42rem;
}

.recruiter-kv__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  border-bottom: 1px solid var(--ats-border);
  padding-bottom: 0.45rem;
}

.recruiter-kv__label {
  color: var(--ats-muted);
  font-size: 0.84rem;
}

.recruiter-kv__value {
  text-align: right;
  color: var(--ats-text);
  font-weight: 600;
  font-size: 0.9rem;
}
.recruiter-kv__value a {
  color: inherit;
  text-decoration: none;
}
.recruiter-kv__value a:hover {
  text-decoration: underline;
}

.recruiter-copy {
  margin: 0;
  color: var(--ats-muted);
  line-height: 1.6;
}

.recruiter-empty-note {
  margin: 0;
  color: var(--ats-muted);
  line-height: 1.5;
}

.recruiter-list {
  display: grid;
  gap: 0.55rem;
}

.recruiter-list-item {
  border: 1px solid var(--ats-border);
  background: var(--ats-panel-soft);
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
}

.recruiter-list-item__title {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--ats-text);
}

.recruiter-list-item__meta {
  margin: 0.2rem 0 0;
  color: var(--ats-muted);
  font-size: 13px;
}

.recruiter-dual {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
@media (max-width: 820px) {
  .recruiter-dual {
    grid-template-columns: 1fr;
  }
}

.recruiter-subpanel {
  border: 1px solid var(--ats-border);
  border-radius: 12px;
  background: var(--ats-panel-soft);
  padding: 0.75rem;
}
.recruiter-subpanel h3 {
  margin: 0 0 0.45rem;
  color: var(--ats-text);
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* .application-profile.dashboard-container {
  background: #f3f2ef;
} */
.application-profile__header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.application-profile__interviews-open {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.application-profile__interviews-open-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.7rem;
  height: 1.7rem;
  padding: 0 0.45rem;
  border-radius: 999px;
  background: rgba(254, 60, 114, 0.14);
  color: #be185d;
  font-size: 0.76rem;
  font-weight: 800;
}

.application-profile__resume-section {
  justify-self: start;
  min-width: 320px;
  width: max-content;
  max-width: 100%;
}

.application-profile .recruiter-split {
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.application-profile .recruiter-panel {
  padding: 1.15rem;
}

.application-profile .recruiter-panel h2 {
  color: #1d2226;
  border-bottom-color: #e8ebef;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
}

.application-profile .recruiter-avatar--lg {
  width: 4rem;
  height: 4rem;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px #f0bfdc;
  background: #fbe8f5;
  color: #d21fa5;
}

.application-profile .recruiter-panel__subtitle {
  margin-top: 0.15rem;
  color: #5f6b7a;
  font-size: 0.94rem;
}

.application-profile__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
}

.application-profile__meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #475569;
  font-size: 0.78rem;
  font-weight: 600;
}

.application-profile .recruiter-kv__row {
  border-bottom-color: #eef1f5;
}

.application-profile .recruiter-kv__label {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.72rem;
  color: #64748b;
}

.application-profile .recruiter-kv__value {
  color: #1f2937;
  font-size: 0.86rem;
}

.application-profile .recruiter-card__actions {
  margin-top: 0.85rem;
}

.application-profile .recruiter-btn--primary {
  background: var(--ats-gradient);
  box-shadow: 0 8px 18px rgba(254, 60, 114, 0.24);
}
.application-profile .recruiter-btn--primary:hover {
  background: var(--ats-gradient-hover);
}

.application-profile .recruiter-btn--ghost {
  border-color: var(--ats-primary-strong);
  color: var(--ats-primary-strong);
  font-weight: 700;
}
.application-profile .recruiter-btn--ghost:hover {
  background: rgba(254, 60, 211, 0.09);
}

.application-profile__hero {
  overflow: hidden;
  padding: 0;
}

.application-profile__cover {
  height: 118px;
  background: radial-gradient(145% 210% at -8% -22%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 48%), radial-gradient(120% 170% at 98% 6%, rgba(254, 60, 211, 0.34) 0%, rgba(254, 60, 211, 0) 54%), linear-gradient(124deg, #140014 0%, #2d0d2c 34%, #7a2057 66%, #fe3c72 84%, #fe3cd3 100%);
}

.application-profile__hero-content {
  padding: 1rem 1.15rem 1.15rem;
  display: grid;
  gap: 0.35rem;
}

.application-profile__hero-top {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
}

.application-profile__hero-avatar {
  flex-shrink: 0;
}

.application-profile__hero-intro {
  min-width: 0;
  display: grid;
  gap: 0.2rem;
}

.application-profile__hero-score {
  margin-left: auto;
  align-self: flex-start;
}

.application-profile .recruiter-score-ring {
  width: clamp(4.8rem, 8.2vw, 6rem);
  padding: 0.32rem;
}

.application-profile .recruiter-score-ring__inner {
  background: #ffffff;
  border-color: #e2e8f0;
}

.application-profile .recruiter-score-ring__inner strong {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.application-profile__name {
  margin: 0;
  color: #1d2226;
  font-family: "Nunito", sans-serif;
  font-size: 1.72rem;
  line-height: 1.15;
  font-weight: 700;
  display: block;
  border-bottom: none;
  padding-bottom: 0;
}

.application-profile__headline {
  margin: 0;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.45;
}

.application-profile__location {
  margin: 0.1rem 0 0;
  color: #6b7280;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.application-profile__hero-meta {
  margin-top: 0.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.application-profile__hero-meta .application-profile__meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border-radius: 999px;
  padding: 0.26rem 0.7rem;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #334155;
  font-size: 0.8rem;
  font-weight: 600;
}

.application-profile__hero-actions {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.application-profile .recruiter-copy {
  color: #3f4b5e;
  line-height: 1.65;
  font-size: 13px;
  font-weight: 500;
}

.application-profile .recruiter-badges {
  gap: 0.42rem;
}

.application-profile .recruiter-badge {
  background: #eef3f8;
  border-color: #dbe5f1;
  color: #1f2937;
}

.application-profile__interviews-launcher {
  display: grid;
  gap: 0.9rem;
  align-items: start;
}

.application-profile__interviews-launcher-copy {
  display: grid;
  gap: 0.35rem;
}

.application-profile__interviews-launcher-copy h2 {
  margin-bottom: 0;
}

.application-profile__interviews-launcher-actions {
  margin-top: 0;
}

.application-profile__interviews-drawer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  pointer-events: none;
}

.application-profile__interviews-drawer.is-open {
  pointer-events: auto;
}

.application-profile__interviews-drawer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.24s ease;
  cursor: pointer;
}

.application-profile__interviews-drawer.is-open .application-profile__interviews-drawer-backdrop {
  opacity: 1;
}

.application-profile__interviews-drawer-panel {
  position: relative;
  width: min(100%, 640px);
  height: 100%;
  margin-left: auto;
  padding: 1rem;
  overflow-y: auto;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.96)), radial-gradient(140% 120% at 100% 0%, rgba(37, 99, 235, 0.08), rgba(37, 99, 235, 0));
  border-left: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: -18px 0 44px rgba(15, 23, 42, 0.16);
  transform: translateX(100%);
  transition: transform 0.24s ease;
}

.application-profile__interviews-drawer.is-open .application-profile__interviews-drawer-panel {
  transform: translateX(0);
}

.application-profile__interviews-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9rem;
  width: 100%;
}

.application-profile__interviews-close {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid #d7e2ee;
  background: rgba(255, 255, 255, 0.92);
  color: #334155;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}
.application-profile__interviews-close:hover {
  background: #ffffff;
  border-color: #bdd0e6;
  transform: translateY(-1px);
}

.application-profile__interviews {
  position: relative;
  overflow: hidden;
  border-color: #d8e1ec;
  background: linear-gradient(165deg, #f7fbff 0%, #ffffff 62%);
  min-height: calc(100dvh - 2rem);
}

.application-profile__interviews > * {
  position: relative;
  z-index: 1;
}

.application-profile__interviews-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.application-profile__interviews-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
}

.application-profile__interviews-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  border-radius: 999px;
  border: 1px solid #d7e2ee;
  background: #ffffff;
  color: #1f3654;
  padding: 0.3rem 0.7rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.015em;
}

.application-profile__interviews-stat.is-risk {
  border-color: #f6d0be;
  background: #fff6f1;
  color: #b45309;
}

.application-profile__interviews-form {
  margin-top: 0.65rem;
  padding: 0.82rem;
  border: 1px solid #d7e5f3;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.62rem;
}

.application-profile__interviews-field {
  display: grid;
  gap: 0.42rem;
  padding: 0.58rem 0.62rem;
  border: 1px solid #dde8f5;
  border-radius: 10px;
  background: #ffffff;
}

.application-profile__interviews-label {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  color: #334155;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.application-profile__interviews-field input,
.application-profile__interviews-field select {
  width: 100%;
  border: 1px solid #cfdae8;
  border-radius: 9px;
  padding: 0.56rem 0.64rem;
  font: inherit;
  font-size: 0.86rem;
  color: #1e293b;
  background: #f9fbff;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.application-profile__interviews-field input:focus,
.application-profile__interviews-field select:focus {
  outline: none;
  border-color: #8ab0da;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.13);
}

.application-profile__interviews-field.is-datetime {
  grid-column: span 4;
}

.application-profile__interviews-field.is-duration {
  grid-column: span 2;
}

.application-profile__interviews-field.is-type {
  grid-column: span 2;
}

.application-profile__interviews-field.is-location {
  grid-column: span 4;
}

.application-profile__interviews-field.is-link {
  grid-column: span 6;
}

.application-profile__interviews-field.is-title {
  grid-column: span 6;
}

.application-profile__interviews-submit {
  grid-column: 1/-1;
  margin-top: 0.15rem;
  justify-content: flex-end;
}

.application-profile__interviews-submit .recruiter-btn {
  min-height: 42px;
  padding-inline: 0.95rem;
}

.application-profile__interviews-feedback {
  margin-top: 0.65rem;
  min-height: 1.4rem;
  font-size: 0.84rem;
  font-weight: 600;
}

.application-profile__interviews-feedback.is-error {
  color: #b91c1c;
}

.application-profile__interviews-list {
  margin-top: 0.82rem;
  gap: 0.62rem !important;
}

.application-profile__interview-card {
  border-width: 1px;
  border-style: solid;
  border-color: #dce6f2;
  border-radius: 12px !important;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.application-profile__interview-card:hover {
  transform: translateY(-1px);
  border-color: #c7d9ee;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.application-profile__presence-badge[data-presence-status=PREVU] {
  background: #e8eff8;
  border-color: #c8d8ed;
  color: #315480;
}

.application-profile__presence-badge[data-presence-status=CONFIRME] {
  background: #deebff;
  border-color: #b8d2ff;
  color: #1e40af;
}

.application-profile__presence-badge[data-presence-status=PRESENT] {
  background: #ddf8e9;
  border-color: #b8ebcd;
  color: #166534;
}

.application-profile__presence-badge[data-presence-status=ABSENT] {
  background: #ffe7e7;
  border-color: #f6c4c4;
  color: #b91c1c;
}

.application-profile__presence-badge[data-presence-status=ANNULE] {
  background: #f1f5f9;
  border-color: #d7dfe8;
  color: #475569;
}

.application-profile__presence-badge[data-presence-status=REPORTE] {
  background: #fff2df;
  border-color: #f4d8ac;
  color: #b45309;
}

.application-profile__risk-badge[data-risk-level=MOYEN] {
  background: #fff3e7;
  border-color: #ffd8ad;
  color: #b45309;
}

.application-profile__risk-badge[data-risk-level=ELEVE] {
  background: #ffe7e7;
  border-color: #fecaca;
  color: #b91c1c;
}

.application-profile__interview-actions {
  margin-top: 0.48rem;
  gap: 0.42rem;
}

.application-profile__interview-actions .recruiter-btn {
  border-radius: 9px;
  font-weight: 600;
}

.application-profile__interviews-drawer .application-profile__interviews {
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr);
  gap: 0.95rem;
  align-content: start;
}

.application-profile__interviews-drawer .application-profile__interviews-head {
  position: sticky;
  top: 0;
  z-index: 4;
  margin: -1.25rem -1.25rem 0;
  padding: 1rem 1.25rem 0.9rem;
  background: linear-gradient(180deg, rgba(247, 251, 255, 0.98), rgba(247, 251, 255, 0.92)), radial-gradient(120% 120% at 100% 0%, rgba(37, 99, 235, 0.12), rgba(37, 99, 235, 0));
  border-bottom: 1px solid #dbe7f3;
  backdrop-filter: blur(10px);
}

.application-profile__interviews-drawer .application-profile__interviews-head h2 {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.application-profile__interviews-drawer .application-profile__interviews-heading .recruiter-copy {
  max-width: 32rem;
  font-size: 0.88rem;
  line-height: 1.6;
}

.application-profile__interviews-drawer .application-profile__interviews-stats {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: stretch;
  gap: 0.5rem;
}

.application-profile__interviews-drawer .application-profile__interviews-stat {
  width: 100%;
  min-height: 3rem;
  justify-content: flex-start;
  border-radius: 14px;
  padding: 0.65rem 0.8rem;
  font-size: 0.8rem;
  line-height: 1.4;
}

.application-profile__interviews-drawer .application-profile__interviews-form {
  margin-top: 0;
  border-radius: 16px;
  border-color: #d7e3f1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 255, 0.92)), radial-gradient(120% 140% at 100% 0%, rgba(59, 130, 246, 0.08), rgba(59, 130, 246, 0));
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.application-profile__interviews-drawer .application-profile__interviews-field {
  padding: 0.62rem 0.66rem;
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.application-profile__interviews-drawer .application-profile__interviews-field.is-title,
.application-profile__interviews-drawer .application-profile__interviews-field.is-datetime,
.application-profile__interviews-drawer .application-profile__interviews-field.is-location,
.application-profile__interviews-drawer .application-profile__interviews-field.is-link {
  grid-column: 1/-1;
}

.application-profile__interviews-drawer .application-profile__interviews-field.is-duration,
.application-profile__interviews-drawer .application-profile__interviews-field.is-type {
  grid-column: span 1;
}

.application-profile__interviews-drawer .application-profile__interviews-submit {
  grid-column: 1/-1;
  margin-top: 0;
  padding-top: 0.25rem;
  justify-content: stretch;
}

.application-profile__interviews-drawer .application-profile__interviews-submit .recruiter-btn {
  width: 100%;
  justify-content: center;
}

.application-profile__interviews-drawer .application-profile__interviews-feedback {
  margin-top: 0;
  min-height: 1.1rem;
  padding-inline: 0.15rem;
  font-size: 0.82rem;
}

.application-profile__interviews-drawer .application-profile__interviews-list {
  margin-top: 0;
  overflow-y: auto;
  padding-right: 0.15rem;
  align-content: start;
}

.application-profile__interviews-drawer .application-profile__interview-card {
  display: grid;
  gap: 0.55rem;
  padding: 0.92rem 0.95rem;
  border-radius: 14px !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96)), radial-gradient(130% 160% at 100% 0%, rgba(37, 99, 235, 0.06), rgba(37, 99, 235, 0));
}

.application-profile__interviews-drawer .application-profile__interview-card .recruiter-list-item__title {
  font-size: 0.98rem;
}

.application-profile__interviews-drawer .application-profile__interview-card .recruiter-list-item__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  line-height: 1.5;
}

.application-profile__interviews-drawer .application-profile__interview-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.application-profile__interviews-drawer .application-profile__interview-actions .recruiter-btn {
  width: 100%;
  min-height: 2.55rem;
  justify-content: center;
  text-align: center;
  padding-inline: 0.75rem;
  font-size: 0.82rem;
}

.application-profile__skills-radar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.application-profile__skills-radar--single {
  grid-template-columns: 1fr;
}

.application-profile__radar-canvas {
  position: relative;
  width: min(100%, 460px);
  margin-inline: auto;
  margin-top: 0.65rem;
}

.application-profile .recruiter-list {
  gap: 0.5rem;
}

.application-profile .recruiter-list-item {
  background: #ffffff;
  border-color: #e3e8ef;
  border-radius: 10px;
}

.application-profile .recruiter-list-item__title {
  color: #1f2937;
}

.application-profile .recruiter-list-item__meta {
  color: #64748b;
}

.application-profile .recruiter-dual {
  margin-top: 0.65rem;
  gap: 0.6rem;
}

.application-profile .recruiter-subpanel {
  border-color: #e3e9f2;
  border-radius: 10px;
  background: #f8fafc;
}

.application-profile .recruiter-list-plain {
  color: #4b5563;
}

body.application-profile--drawer-open {
  overflow: hidden;
}

@media (max-width: 820px) {
  .application-profile__header-actions {
    width: 100%;
    justify-content: flex-start;
  }
  .application-profile__hero-top {
    align-items: flex-start;
  }
  .application-profile__hero-avatar {
    margin-top: -2.15rem;
    width: 3.45rem;
    height: 3.45rem;
  }
  .application-profile .recruiter-score-ring {
    width: 4.7rem;
  }
  .application-profile__skills-radar {
    grid-template-columns: 1fr;
  }
  .application-profile__interviews-stats {
    justify-content: flex-start;
  }
  .application-profile__interviews-form {
    grid-template-columns: 1fr;
  }
  .application-profile__interviews-field.is-datetime,
  .application-profile__interviews-field.is-duration,
  .application-profile__interviews-field.is-type,
  .application-profile__interviews-field.is-location,
  .application-profile__interviews-field.is-link,
  .application-profile__interviews-field.is-title {
    grid-column: span 1;
  }
  .application-profile__interviews-submit {
    justify-content: stretch;
  }
  .application-profile__interviews-submit .recruiter-btn {
    width: 100%;
    justify-content: center;
  }
  .application-profile__interviews-drawer-panel {
    width: 100%;
    padding: 0.75rem;
  }
  .application-profile__interviews {
    min-height: calc(100dvh - 1.5rem);
  }
  .application-profile__interviews-drawer .application-profile__interviews-head {
    margin: -1.25rem -1.25rem 0;
    padding-inline: 1rem;
  }
  .application-profile__interviews-drawer .application-profile__interviews-stats {
    grid-template-columns: 1fr;
  }
  .application-profile__interviews-drawer .application-profile__interviews-form {
    grid-template-columns: 1fr;
  }
  .application-profile__interviews-drawer .application-profile__interviews-field.is-title,
  .application-profile__interviews-drawer .application-profile__interviews-field.is-datetime,
  .application-profile__interviews-drawer .application-profile__interviews-field.is-duration,
  .application-profile__interviews-drawer .application-profile__interviews-field.is-type,
  .application-profile__interviews-drawer .application-profile__interviews-field.is-location,
  .application-profile__interviews-drawer .application-profile__interviews-field.is-link {
    grid-column: span 1;
  }
  .application-profile__interviews-drawer .application-profile__interview-actions {
    grid-template-columns: 1fr;
  }
}
.recruiter-list-plain {
  margin: 0;
  padding-left: 1.05rem;
  color: var(--ats-muted);
  line-height: 1.5;
}

.recruiter-codeblock {
  margin: 0;
  max-height: 260px;
  overflow: auto;
  border-radius: 10px;
  border: 1px solid var(--ats-text);
  background: var(--ats-code-bg);
  color: var(--ats-panel-soft);
  padding: 0.85rem;
  font-size: 0.8rem;
}

.recruiter-form {
  display: grid;
  gap: 0.95rem;
}

.recruiter-form-stack {
  gap: 1rem;
}

.recruiter-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.recruiter-field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #555;
}
.recruiter-field input,
.recruiter-field textarea,
.recruiter-field select {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--ats-border);
  border-radius: 10px;
  min-height: 42px;
  padding: 0.72rem 0.85rem;
  font: inherit;
  color: var(--ats-text);
  background: #fff;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}
.recruiter-field input:focus,
.recruiter-field textarea:focus,
.recruiter-field select:focus {
  outline: none;
  border-color: var(--ats-focus);
  background: #fff;
  box-shadow: 0 0 0 3px var(--ats-focus-ring);
}
.recruiter-field textarea {
  resize: vertical;
  min-height: 150px;
}
.recruiter-field select {
  cursor: pointer;
}

.recruiter-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}
@media (max-width: 840px) {
  .recruiter-form__row {
    grid-template-columns: 1fr;
  }
}

.recruiter-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
  margin-top: 1rem;
}

.recruiter-field__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.recruiter-field__head--spread {
  justify-content: space-between;
}

.jobs-toolbar,
.cvtheque-filters {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.jobs-toolbar {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding-inline: 0;
  padding-top: 0;
}

.jobs-toolbar__row,
.cvtheque-filters__form {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
}

.jobs-toolbar__field,
.cvtheque-filters__field {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.jobs-toolbar__field {
  grid-column: span 6;
}

.cvtheque-filters__field {
  grid-column: span 4;
}

.jobs-toolbar__field label,
.cvtheque-filters__field span {
  color: var(--ats-muted);
  font-size: 12px;
  font-weight: 700;
}

.jobs-toolbar__field input,
.jobs-toolbar__field select,
.cvtheque-filters__field input,
.cvtheque-filters__field select {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 0.72rem 0.85rem;
  border: 1px solid var(--ats-border);
  border-radius: 10px;
  background: #fff;
  color: var(--ats-text);
  font: inherit;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}
.jobs-toolbar__field input:focus,
.jobs-toolbar__field select:focus,
.cvtheque-filters__field input:focus,
.cvtheque-filters__field select:focus {
  outline: none;
  border-color: var(--ats-focus);
  box-shadow: 0 0 0 3px var(--ats-focus-ring);
}

.jobs-toolbar__summary {
  color: var(--ats-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.jobs-toolbar__summary strong {
  color: var(--ats-text);
}

.jobs-filter-empty {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  padding: 18px;
  border: 1px dashed var(--ats-border-strong);
  border-radius: 12px;
  background: var(--ats-panel-soft);
}

.jobs-filter-empty[hidden] {
  display: none !important;
}

[data-job-card="1"][hidden] {
  display: none !important;
}

.jobs-filter-empty h2 {
  margin: 0;
  color: var(--ats-text);
  font-family: "Nunito", "Nunito", sans-serif, sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.jobs-filter-empty p {
  margin: 0;
  color: var(--ats-muted);
}

.cvtheque-filters__head h2 {
  margin: 0;
  color: var(--ats-text);
  font-family: "Nunito", "Nunito", sans-serif, sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.cvtheque-filters__head p {
  margin-top: 4px;
  color: var(--ats-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.cvtheque-filters__field--wide {
  grid-column: span 8;
}

.cvtheque-filters__actions {
  grid-column: 1/-1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.cvtheque-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cvtheque-active-filters__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.4rem 0.7rem;
  border: 1px solid #e2d7fb;
  border-radius: 999px;
  background: #f0ebfb;
  color: #6b00c9;
  font-size: 0.8rem;
  font-weight: 600;
}

.recruiter-panel--canvas {
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
}

.recruiter-form-card {
  background: #fff;
  border: 1px solid var(--ats-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(107, 0, 201, 0.09);
  transition: box-shadow 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}
.recruiter-form-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(107, 0, 201, 0.08);
  border-color: var(--ats-border-strong);
}

.recruiter-form-card__header {
  padding: 1.1rem 1.35rem 0;
}

.recruiter-form-card__header-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1rem;
}

.recruiter-form-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.recruiter-form-card__icon--pink {
  background: #fff0f4;
  color: #fe3c72;
}

.recruiter-form-card__icon--purple {
  background: #f0ebfb;
  color: #6b00c9;
}

.recruiter-form-card__icon--rose {
  background: #fdf0fb;
  color: #fe3cd3;
}

.recruiter-form-card__title {
  margin: 0;
  color: var(--ats-text);
  font-family: "Nunito", "Nunito", sans-serif, sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.recruiter-form-card__subtitle {
  margin: 0.15rem 0 0;
  font-size: 0.8rem;
  color: var(--ats-muted-soft);
  line-height: 1.45;
}

.recruiter-form-card__body {
  padding: 0 1.35rem 1.35rem;
  display: grid;
  gap: 0.95rem;
}

.recruiter-location-wrap {
  position: relative;
}

.recruiter-location-suggestion-panel {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  right: 0;
  z-index: 20;
  background: #fff;
  border: 1px solid var(--ats-border-strong);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(107, 0, 201, 0.08);
  max-height: 220px;
  overflow: auto;
}

.recruiter-ai-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  border: 1px solid rgba(107, 0, 201, 0.2);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(107, 0, 201, 0.1), rgba(254, 60, 114, 0.1));
  color: #6b00c9;
  padding: 0.35rem 0.75rem;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.14s ease;
}
.recruiter-ai-button:hover {
  background: linear-gradient(135deg, rgba(107, 0, 201, 0.15), rgba(254, 60, 114, 0.15));
}

.recruiter-ai-button__label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.recruiter-ai-feedback {
  max-width: 240px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0.85;
  font-style: italic;
}

.recruiter-rich-editor-shell {
  margin-top: 0.5rem;
  border: 1px solid var(--ats-border);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.recruiter-rich-editor-shell:focus-within {
  border-color: var(--ats-focus);
  box-shadow: 0 0 0 3px var(--ats-focus-ring);
}

.recruiter-quill-editor {
  height: 350px;
  background: #fff;
  font-family: inherit;
  font-size: 0.95rem;
}

.ql-toolbar.ql-snow {
  border: 0;
  border-bottom: 1px solid var(--ats-nav-line);
  background: var(--ats-panel-soft);
}

.ql-container.ql-snow {
  border: 0;
}

@media (max-width: 1100px) {
  .cvtheque-filters__field,
  .cvtheque-filters__field--wide {
    grid-column: span 6;
  }
}
@media (max-width: 720px) {
  .jobs-toolbar__row,
  .cvtheque-filters__form {
    grid-template-columns: 1fr;
  }
  .jobs-toolbar__field,
  .cvtheque-filters__field,
  .cvtheque-filters__field--wide,
  .cvtheque-filters__actions {
    grid-column: auto;
  }
  .cvtheque-pagination {
    align-items: flex-start;
    flex-direction: column;
  }
}
.ql-editor.ql-blank::before {
  color: #aaa;
  font-style: normal;
}

.recruiter-richtext {
  position: relative;
  border: 1px solid var(--ats-border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--ats-panel);
}
.recruiter-richtext:focus-within {
  border-color: var(--ats-focus);
  box-shadow: 0 0 0 4px var(--ats-focus-ring);
}
.recruiter-richtext.is-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
}

.recruiter-richtext__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  background: var(--ats-panel-soft);
  border-bottom: 1px solid var(--ats-panel-soft);
  padding: 0.55rem;
}

.recruiter-richtext__btn {
  width: 34px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--ats-border);
  background: var(--ats-panel);
  color: var(--ats-text);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}
.recruiter-richtext__btn:hover {
  background: var(--ats-primary-soft);
  border-color: var(--ats-focus);
}
.recruiter-richtext__btn.is-active {
  background: var(--ats-primary-soft);
  border-color: var(--ats-focus);
  color: var(--ats-primary-strong);
}

.recruiter-richtext__content {
  min-height: 220px;
  padding: 0.8rem 0.9rem;
  color: var(--ats-text);
  line-height: 1.6;
  outline: none;
}
.recruiter-richtext__content:focus {
  box-shadow: inset 0 0 0 2px var(--ats-focus);
  border-radius: 0.75rem;
  background: var(--ats-primary-soft);
}
.recruiter-richtext__content:empty::before {
  content: attr(data-placeholder);
  color: var(--ats-muted-soft);
}
.recruiter-richtext__content p,
.recruiter-richtext__content h3,
.recruiter-richtext__content ul,
.recruiter-richtext__content ol {
  margin-top: 0;
}

.recruiter-richtext.is-ready textarea[data-rich-source="1"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.rome-box {
  border: 1px solid #ede8f5;
  border-radius: 14px;
  background: #fff;
  padding: 1rem;
}

.rome-head {
  margin-bottom: 0.6rem;
}

.rome-title {
  color: #170017;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.rome-hint {
  margin-top: 0.22rem;
  color: #aaa;
  font-size: 0.8rem;
}

.rome-search select,
.rome-skills select {
  width: 100%;
}

.rome-selected {
  margin-top: 0.65rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
}

.rome-selected__label {
  color: #170017;
  font-size: 0.88rem;
  font-weight: 700;
}

.rome-skills {
  margin-top: 0.65rem;
}

.rome-skills__title {
  font-size: 0.84rem;
  color: #555;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.select2-container {
  width: 100% !important;
}

.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
  border: 1.5px solid #ede8f5;
  border-radius: 10px;
  min-height: 44px;
  background: #f8f6fc;
}

.select2-container--default.select2-container--open .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--multiple,
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border-color: #6b00c9;
  box-shadow: 0 0 0 3px rgba(107, 0, 201, 0.08);
}

.select2-dropdown {
  border: 1px solid #ede8f5;
  border-radius: 10px;
  overflow: hidden;
}

.select2-search--dropdown {
  background: #f8f6fc;
  border-bottom: 1px solid #ede8f5;
}

.select2-search--dropdown .select2-search__field {
  border: 1px solid #ede8f5;
  border-radius: 8px;
  padding: 0.45rem 0.6rem;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background: #f0ebfb;
  color: #6b00c9;
}

.test-questions-form {
  gap: 1rem;
}

.test-questions-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.test-questions-counter {
  color: var(--ats-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.test-questions-feedback {
  border: 1px solid rgba(255, 123, 61, 0.35);
  background: rgba(255, 123, 61, 0.12);
  color: var(--ats-success);
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  font-size: 0.86rem;
  font-weight: 600;
}
.test-questions-feedback.is-error {
  border-color: rgba(239, 68, 68, 0.35);
  background: var(--ats-danger-soft);
  color: var(--ats-danger);
}

.test-questions-list {
  display: grid;
  gap: 0.85rem;
}

.test-question {
  border: 1px solid var(--ats-border);
  border-radius: 14px;
  background: var(--ats-panel-soft);
  padding: 0.9rem;
  display: grid;
  gap: 0.85rem;
}
.test-question.is-invalid {
  border-color: rgba(239, 68, 68, 0.35);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.test-question__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.test-question__title {
  margin: 0;
  color: var(--ats-text);
  font-size: 1rem;
  font-weight: 700;
}

.test-question__remove {
  padding: 0.45rem 0.65rem;
}

.test-question__options-wrap {
  border: 1px solid var(--ats-border);
  border-radius: 12px;
  background: var(--ats-panel);
  padding: 0.75rem;
  display: grid;
  gap: 0.7rem;
}

.test-question__options-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.test-question__options-head strong {
  color: var(--ats-text);
  font-size: 0.88rem;
}

.test-question__options {
  display: grid;
  gap: 0.55rem;
}

.test-question__option {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.5rem;
}

.test-question__option-index {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: var(--ats-panel-soft);
  color: var(--ats-text);
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.test-question__option-input {
  width: 100%;
  border: 1px solid var(--ats-border);
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  font: inherit;
  color: var(--ats-text);
  background: var(--ats-panel);
}
.test-question__option-input:focus {
  outline: none;
  border-color: var(--ats-focus);
  box-shadow: 0 0 0 4px var(--ats-focus-ring);
}

.test-question__option-remove {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--ats-border);
  border-radius: 8px;
  background: var(--ats-panel);
  color: var(--ats-text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.test-question__option-remove:hover:not(:disabled) {
  background: var(--ats-primary-soft);
  border-color: var(--ats-focus);
}
.test-question__option-remove:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.test-question__prompt-editor {
  border: 1px solid var(--ats-border);
  border-radius: 10px;
  background: var(--ats-panel);
}
.test-question__prompt-editor .ck-editor__editable_inline {
  min-height: 150px;
}

.test-questions-existing {
  display: grid;
  gap: 0.65rem;
}

.test-questions-existing__item {
  border: 1px solid var(--ats-border);
  border-radius: 12px;
  background: var(--ats-panel-soft);
  padding: 0.75rem 0.85rem;
}
.test-questions-existing__item h3 {
  margin: 0;
  color: var(--ats-text);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
}
.test-questions-existing__item p {
  margin: 0.3rem 0 0;
  color: var(--ats-muted);
  font-size: 0.84rem;
}

.recruiter-shell .is-hidden {
  display: none;
}

.recruiter-adn-page .dashboard-page {
  row-gap: 1rem;
}

.recruiter-adn-header .dashboard-header {
  margin-bottom: 0;
}

.recruiter-adn-header__eyebrow {
  margin: 0 0 0.4rem;
  color: var(--ats-primary-strong);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recruiter-adn-hero {
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(254, 60, 211, 0.16), transparent 30%), linear-gradient(135deg, #ffffff 0%, #fff7fc 100%);
}

.recruiter-adn-hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.95fr);
  gap: 1rem;
  align-items: start;
}

.recruiter-adn-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(254, 60, 211, 0.18);
  background: rgba(254, 60, 211, 0.08);
  color: var(--ats-primary-strong);
  padding: 0.36rem 0.72rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.recruiter-adn-hero__copy h2 {
  margin: 0;
  color: var(--ats-text);
  font-size: clamp(1.55rem, 2vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.recruiter-adn-hero__copy p {
  margin: 0.85rem 0 0;
  color: var(--ats-muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 760px;
}

.recruiter-adn-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.recruiter-adn-stat {
  display: grid;
  gap: 0.25rem;
  min-height: 8.1rem;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.86);
  padding: 1rem;
}

.recruiter-adn-stat__icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(254, 60, 211, 0.1);
  color: var(--ats-primary-strong);
}

.recruiter-adn-stat strong {
  color: var(--ats-text);
  font-size: 1.2rem;
  font-weight: 800;
}

.recruiter-adn-stat span:last-child {
  color: var(--ats-muted);
  line-height: 1.45;
  font-size: 0.9rem;
}

.recruiter-adn-overview {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.recruiter-adn-overview__card {
  min-height: 100%;
}

.recruiter-adn-overview__icon {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ats-primary-soft);
  color: var(--ats-primary-strong);
}

.recruiter-adn-overview__text {
  margin-top: 0.15rem;
  line-height: 1.65;
}

.recruiter-adn-form-shell__head {
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.recruiter-adn-switcher {
  display: inline-flex;
  gap: 0.45rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: var(--ats-panel-soft);
  border: 1px solid var(--ats-border);
}

.recruiter-adn-switcher__btn {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ats-muted);
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.recruiter-adn-switcher__btn.is-active {
  background: var(--ats-gradient);
  color: #fff;
  box-shadow: 0 10px 22px rgba(254, 60, 114, 0.18);
}

.recruiter-adn-form-shell__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.85fr);
  gap: 1rem;
  margin-top: 1rem;
  align-items: start;
}

.recruiter-adn-form-shell__main {
  display: grid;
  gap: 1rem;
}

.recruiter-adn-form-shell__aside {
  position: sticky;
  top: 1rem;
  display: grid;
  gap: 0.9rem;
}

.recruiter-adn-dimension__top {
  display: flex;
  justify-content: space-between;
  gap: 0.9rem;
  align-items: flex-start;
}

.recruiter-adn-dimension__eyebrow {
  margin-bottom: 0.25rem;
  color: var(--ats-primary-strong);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recruiter-adn-pill--weight {
  background: rgba(254, 60, 211, 0.08);
  border-color: rgba(254, 60, 211, 0.18);
  color: var(--ats-primary-strong);
}

.recruiter-adn-pill--invert {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.18);
  color: #b45309;
}

.recruiter-adn-axis {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.15rem;
  color: var(--ats-muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.recruiter-adn-axis span:last-child {
  text-align: right;
}

.recruiter-adn-question-block {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: linear-gradient(180deg, #fff 0%, #fcfdff 100%);
}

.recruiter-adn-question-block--mirror {
  background: linear-gradient(180deg, rgba(254, 60, 114, 0.03) 0%, #fff 100%);
}

.recruiter-adn-question-block__title-row {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
  flex-wrap: wrap;
}

.recruiter-adn-question-block__tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: var(--ats-text);
  padding: 0.32rem 0.7rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.recruiter-adn-question-block__tag--mirror {
  background: rgba(254, 60, 114, 0.1);
  color: var(--ats-accent);
}

.recruiter-adn-question-block__note {
  color: var(--ats-muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.recruiter-adn-question-block__question {
  display: none;
  margin: 0;
  color: var(--ats-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
}

.recruiter-adn-question-block__question.is-active {
  display: block;
}

.recruiter-adn-options {
  display: grid;
  gap: 0.7rem;
}

.recruiter-adn-option {
  display: block;
}

.recruiter-adn-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.recruiter-adn-option__content {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: start;
  border-radius: 14px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #fff;
  padding: 0.95rem 1rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.recruiter-adn-option:hover .recruiter-adn-option__content {
  border-color: rgba(254, 60, 211, 0.28);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  transform: translateY(-1px);
}

.recruiter-adn-option input:checked + .recruiter-adn-option__content {
  border-color: rgba(254, 60, 211, 0.4);
  background: rgba(254, 60, 211, 0.04);
  box-shadow: 0 10px 24px rgba(254, 60, 211, 0.08);
}

.recruiter-adn-option--mirror input:checked + .recruiter-adn-option__content {
  border-color: rgba(254, 60, 114, 0.35);
  background: rgba(254, 60, 114, 0.04);
  box-shadow: 0 10px 24px rgba(254, 60, 114, 0.08);
}

.recruiter-adn-option__key {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ats-panel-soft);
  color: var(--ats-text);
  font-size: 0.82rem;
  font-weight: 800;
}

.recruiter-adn-option__text {
  color: var(--ats-text);
  line-height: 1.55;
  font-weight: 600;
}

.recruiter-adn-option__score {
  color: var(--ats-muted);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.recruiter-adn-inline-note {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.04);
  color: var(--ats-muted);
  padding: 0.85rem 0.95rem;
  font-size: 0.88rem;
  line-height: 1.5;
}

.recruiter-adn-flag {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
  border-radius: 16px;
  border: 1px solid rgba(254, 60, 114, 0.16);
  background: rgba(254, 60, 114, 0.05);
  padding: 0.95rem 1rem;
}

.recruiter-adn-flag__icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(254, 60, 114, 0.12);
  color: var(--ats-accent);
}

.recruiter-adn-flag p {
  margin: 0;
  color: #7f1d1d;
  line-height: 1.6;
}

.recruiter-adn-sidecard__list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ats-muted);
  display: grid;
  gap: 0.7rem;
  line-height: 1.6;
}

.recruiter-adn-sidecard__formula {
  border-radius: 14px;
  background: #0f172a;
  color: #f8fafc;
  padding: 0.95rem 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
}

.recruiter-adn-sidecard__text {
  line-height: 1.65;
}

.recruiter-adn-sidecard--score {
  display: grid;
  gap: 0.75rem;
}

.recruiter-adn-radar-shell {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}

.recruiter-adn-radar-shell canvas {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1/1;
}

.recruiter-adn-score-panel {
  display: none;
  gap: 0.6rem;
}

.recruiter-adn-score-panel.is-active {
  display: grid;
}

.recruiter-adn-score-panel__meta {
  margin: 0;
  color: var(--ats-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.recruiter-adn-score-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.recruiter-adn-score-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(15, 23, 42, 0.04);
  color: var(--ats-text);
  padding: 0.34rem 0.62rem;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.recruiter-adn-score-panel__vector {
  margin: 0;
  color: var(--ats-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.recruiter-adn-score-panel__empty {
  margin: 0;
}

.recruiter-adn-score-panel__error {
  margin: 0;
  color: #b91c1c;
  font-size: 0.82rem;
  line-height: 1.45;
}

.recruiter-adn-sidecard--cta {
  background: linear-gradient(180deg, rgba(254, 60, 211, 0.08) 0%, #fff 100%);
}

@media (max-width: 1180px) {
  .recruiter-adn-hero__content,
  .recruiter-adn-form-shell__grid {
    grid-template-columns: 1fr;
  }
  .recruiter-adn-form-shell__aside {
    position: static;
  }
  .recruiter-adn-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 860px) {
  .recruiter-adn-overview,
  .recruiter-adn-hero__stats {
    grid-template-columns: 1fr;
  }
  .recruiter-adn-form-shell__head,
  .recruiter-adn-dimension__top,
  .recruiter-adn-question-block__title-row {
    align-items: stretch;
  }
  .recruiter-adn-switcher {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 18px;
  }
  .recruiter-adn-option__content {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .recruiter-adn-option__score {
    grid-column: 2;
  }
  .recruiter-adn-axis {
    flex-direction: column;
  }
  .recruiter-adn-axis span:last-child {
    text-align: left;
  }
}
.application-share-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.application-share-modal[hidden] {
  display: none;
}

.application-share-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(2px);
}

.application-share-modal__dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: min(82vh, 760px);
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 24px;
  border: 1px solid rgba(203, 213, 225, 0.9);
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  overflow: hidden;
}

.application-share-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.application-share-modal__eyebrow,
.application-share-modal__title,
.application-share-modal__empty {
  margin: 0;
}

.application-share-modal__eyebrow {
  color: #7c3aed;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.application-share-modal__title {
  color: #0f172a;
  font-size: 1.2rem;
  font-weight: 800;
}

.application-share-modal__close {
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 999px;
  background: #f8fafc;
  color: #475569;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.application-share-modal__search {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.9rem;
  border-radius: 14px;
  border: 1px solid #dbe1ea;
  background: #f8fafc;
  color: #64748b;
}

.application-share-modal__search input {
  flex: 1 1 auto;
  border: 0;
  background: transparent;
  color: #0f172a;
  font: inherit;
  min-width: 0;
}

.application-share-modal__search input:focus {
  outline: none;
}

.application-share-modal__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: #475569;
  font-size: 0.88rem;
  font-weight: 700;
}

.application-share-modal__list {
  display: grid;
  gap: 0.7rem;
  overflow-y: auto;
  padding-right: 0.2rem;
}

.application-share-modal__conversation {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.9rem 0.95rem;
  border-radius: 18px;
  border: 1px solid rgba(203, 213, 225, 0.9);
  background: #fbfdff;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.application-share-modal__conversation:hover,
.application-share-modal__conversation.is-selected {
  border-color: rgba(124, 58, 237, 0.45);
  background: #f7f2ff;
  transform: translateY(-1px);
}

.application-share-modal__checkbox {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.2rem;
  accent-color: #7c3aed;
}

.application-share-modal__conversation-title,
.application-share-modal__conversation-meta,
.application-share-modal__conversation-desc {
  margin: 0;
}

.application-share-modal__conversation-title {
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 800;
}

.application-share-modal__conversation-meta {
  margin-top: 0.2rem;
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.application-share-modal__conversation-desc {
  margin-top: 0.28rem;
  color: #475569;
  font-size: 0.88rem;
  line-height: 1.45;
}

.application-share-modal__empty {
  padding: 1rem;
  border-radius: 18px;
  background: #f8fafc;
  color: #64748b;
  text-align: center;
}

.application-share-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
}

#application-hired-email-modal .application-share-modal__dialog {
  grid-template-rows: auto;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.application-profile .dashboard-page > *:not(.recruiter-sidebar):not(.recruiter-nav),
.application-profile .dashboard-page > *:not(.recruiter-sidebar):not(.recruiter-nav) * {
  font-family: "DM Sans", sans-serif;
}

.application-profile__alignment-rescore {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(100, 116, 139, 0.8274509804);
  border-radius: 999px;
  background: #ffffff;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.application-profile__alignment-rescore:focus-visible {
  outline: 2px solid rgba(124, 58, 237, 0.32);
  outline-offset: 2px;
}

.application-profile__alignment-charts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.application-profile__alignment-chart-card {
  padding: 1rem;
  border-radius: 20px;
  display: grid;
  align-content: start;
}

.application-profile__alignment-svg-card {
  margin-top: 0.85rem;
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 0.75rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.16);
  overflow: hidden;
}

.application-profile__alignment-svg-image {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
}

.application-profile__alignment-summary {
  line-height: 1.65;
}

.application-profile__alignment-summary.is-collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.application-profile__alignment-summary-toggle {
  margin-top: 0.65rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #7c3aed;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}

.application-profile__alignment-summary-toggle:hover {
  color: #6d28d9;
  text-decoration: underline;
}

.application-profile__alignment-summary-toggle:focus-visible {
  outline: 2px solid rgba(124, 58, 237, 0.28);
  outline-offset: 3px;
  border-radius: 8px;
}

.application-profile__radar-analysis-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

.application-profile__radar-analysis-row--single {
  grid-template-columns: 1fr;
}

.application-profile__radar {
  display: flex;
  justify-content: flex-end;
}

.application-profile__radar-canvas {
  width: 100%;
  max-width: 300px;
  margin-left: auto;
}

@media (max-width: 720px) {
  .application-share-modal {
    padding: 0.8rem;
  }
  .application-share-modal__dialog {
    max-height: 88vh;
    padding: 1rem;
  }
}
.application-profile__hero-avatar--female {
  background: #fbe8f5;
  color: #d21fa5;
  box-shadow: 0 0 0 1px #f0bfdc;
}

.application-profile__tab-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-bottom: 1rem;
  padding: 0.25rem;
  border-radius: 999px;
  border: 1px solid rgba(203, 213, 225, 0.95);
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.application-profile__tab-button {
  border: 0;
  background: transparent;
  color: #64748b;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.application-profile__tab-button:hover {
  color: #0f172a;
  background: rgba(241, 245, 249, 0.95);
}

.application-profile__tab-button.is-active {
  color: #ffffff;
  background: #4f46e5;
}

[data-tab-content][hidden] {
  display: none !important;
}

.application-profile__hero-avatar--default {
  background: #e8ebff;
  color: #4f46e5;
  box-shadow: 0 0 0 1px #bfc5f4;
}

.application-profile .recruiter-avatar--lg.application-profile__hero-avatar--female {
  background: #fbe8f5 !important;
  color: #d21fa5 !important;
  box-shadow: 0 0 0 1px #f0bfdc !important;
}

.application-profile .recruiter-avatar--lg.application-profile__hero-avatar--default {
  background: #e8ebff !important;
  color: #4f46e5 !important;
  box-shadow: 0 0 0 1px #bfc5f4 !important;
}

.application-profile__history-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.3fr) minmax(280px, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.application-profile__history-main {
  display: grid;
  gap: 1.1rem;
  min-width: 0;
  overflow: hidden;
}

.application-profile__experience-education-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.application-profile__history-main > .application-profile__experience-education-row > .recruiter-panel {
  height: 100%;
}

.application-profile__history-main .recruiter-panel,
.application-profile__info-aside .recruiter-panel {
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}

.application-profile__interaction-panel {
  display: grid;
  gap: 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #faf7ff 100%);
  border: 1px solid rgba(226, 232, 240, 0.92);
}

.application-profile__info-aside {
  display: grid;
  gap: 1rem;
  align-content: start;
  position: sticky;
  top: 1rem;
  min-width: 0;
}

.application-profile__history-main #application-alignment,
.application-profile__history-main .application-profile__radar-analysis-row,
.application-profile__history-main .application-profile__genome-invite {
  min-width: 0;
}

.application-profile__interaction-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.application-profile__interaction-head h2,
.application-profile__interaction-kicker {
  margin: 0;
}

.application-profile__interaction-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: #7c3aed;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.application-profile__interaction-head h2 {
  margin-top: 0.2rem;
  color: #0f172a;
  font-size: 1.05rem;
}

.application-profile__interaction-count {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.78rem;
  border-radius: 999px;
  background: #f5f3ff;
  color: #6d28d9;
  font-size: 0.8rem;
  font-weight: 700;
}

.application-profile__interaction-list {
  position: relative;
  display: grid;
  gap: 1rem;
}

.application-profile__interaction-list::before {
  content: "";
  position: absolute;
  top: 0.35rem;
  bottom: 0.35rem;
  left: 1rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(226, 232, 240, 0.2) 0%, rgba(226, 232, 240, 0.95) 18%, rgba(226, 232, 240, 0.95) 82%, rgba(226, 232, 240, 0.2) 100%);
}

.application-profile__interaction-item {
  position: relative;
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
}

.application-profile__resume-section .application-profile__cv-footer {
  margin-top: 0.8rem;
  padding-top: 0.6rem;
  border-top: 1px solid #e2e8f0;
}

.application-profile__resume-section--tab {
  max-width: 960px;
}

.application-profile__resume-section--tab .application-profile__cv-preview {
  max-width: 260px;
  height: 367px;
}

.application-cv-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.application-cv-modal[hidden] {
  display: none;
}

.application-cv-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 6, 23, 0.52);
  cursor: pointer;
}

.application-cv-modal__dialog {
  position: relative;
  width: min(1120px, 96vw);
  max-height: 92vh;
  background: #ffffff;
  border: 1px solid #dbe3ef;
  border-radius: 14px;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.28);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
}

.application-cv-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0.9rem;
  border-bottom: 1px solid #e2e8f0;
}

.application-cv-modal__header h2 {
  margin: 0;
  color: #0f172a;
  font-size: 1rem;
}

.application-cv-modal__close {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid #dbe3ef;
  background: #ffffff;
  color: #334155;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.application-cv-modal__body {
  min-height: 0;
}

.application-cv-modal__body iframe {
  width: 100%;
  height: 100%;
  min-height: 75vh;
  border: 0;
}

body.application-cv-modal-open {
  overflow: hidden;
}

.application-global-feedback-fab {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 999px;
  border: 1px solid #dbe3ef;
  background: #4f46e5;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1150;
}

.application-global-feedback-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.application-global-feedback-modal[hidden] {
  display: none;
}

.application-global-feedback-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 6, 23, 0.5);
}

.application-global-feedback-modal__dialog {
  position: relative;
  width: min(520px, 96vw);
  border-radius: 14px;
  border: 1px solid #dbe3ef;
  background: #ffffff;
  padding: 0.95rem;
  display: grid;
  gap: 0.75rem;
}

.application-global-feedback-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.application-global-feedback-modal__header h2 {
  margin: 0;
  font-size: 1rem;
  color: #0f172a;
}

.application-global-feedback-modal__close {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid #dbe3ef;
  background: #ffffff;
  color: #334155;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.application-global-feedback-modal__form {
  display: grid;
  gap: 0.7rem;
}

.application-global-feedback-modal__field {
  display: grid;
  gap: 0.35rem;
}

.application-global-feedback-modal__field > span {
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
}

.application-global-feedback-modal__field select,
.application-global-feedback-modal__field textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #ffffff;
  color: #1e293b;
  padding: 0.62rem 0.68rem;
  font: inherit;
}

.application-global-feedback-modal__field textarea {
  resize: vertical;
  min-height: 120px;
}

.application-global-feedback-modal__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
  flex-wrap: wrap;
}

body.application-global-feedback-open {
  overflow: hidden;
}

/* Flat card style on application-details page */
.application-profile .recruiter-panel,
.application-profile .recruiter-subpanel,
.application-profile .recruiter-list-item,
.application-profile .application-feedback__card,
.application-profile .application-tests__table-row,
.application-profile .application-profile__score-bar-card,
.application-profile .application-profile__alignment-chart-card,
.application-profile .application-profile__interaction-card,
.application-profile .application-tests__table-detail-card,
.application-profile .application-profile__interview-card,
.application-profile .application-profile__genome-invite,
.application-profile .application-profile__timeline-tooltip {
  box-shadow: none !important;
}

.application-profile__experience-item {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  align-items: start;
  gap: 0.65rem;
}

.application-profile__experience-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8b5cf6;
  background: #f5f3ff;
  border: 1px solid #ddd6fe;
}

.application-profile__experience-copy {
  min-width: 0;
}

.application-profile__experience-copy .recruiter-list-item__title {
  margin-bottom: 0.1rem;
}

.application-profile__experience-copy .recruiter-list-item__meta {
  margin-top: 0.05rem;
}

.application-profile__experience-period {
  font-size: 0.78rem;
}

/* Candidate page visual system alignment */
.application-profile.pipeline-hub-theme {
  background: #f8fafc;
  color: #170017;
}

.application-profile.pipeline-hub-theme .dashboard-page {
  gap: 0;
}

.application-profile.pipeline-hub-theme .application-profile__page-head {
  margin: 0 0 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #ffffff;
}

.application-profile.pipeline-hub-theme .application-profile__page-head-kicker,
.application-profile.pipeline-hub-theme .application-profile__page-head-title {
  margin: 0;
}

.application-profile.pipeline-hub-theme .application-profile__page-head-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
  font-weight: 700;
}

.application-profile.pipeline-hub-theme .application-profile__page-head-title {
  margin-top: 0.15rem;
  font-size: 0.95rem;
  color: #170017;
  font-weight: 800;
}

.application-profile.pipeline-hub-theme .application-profile__back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.72rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #475569;
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
}

.application-profile.pipeline-hub-theme .application-profile__hero {
  border: 0;
  border-radius: 0;
  padding: 1.4rem 1.4rem 0;
  background: linear-gradient(135deg, #170017 0%, #3D0070 50%, #6B00C9 100%);
  position: relative;
  overflow: visible;
}

.application-profile.pipeline-hub-theme .application-profile__hero::before,
.application-profile.pipeline-hub-theme .application-profile__hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.application-profile.pipeline-hub-theme .application-profile__hero::before {
  top: 14px;
  right: 18px;
  width: 230px;
  height: 230px;
  background: rgba(254, 60, 114, 0.15);
}

.application-profile.pipeline-hub-theme .application-profile__hero::after {
  bottom: 12px;
  left: 28%;
  width: 170px;
  height: 170px;
  background: rgba(254, 60, 211, 0.1);
}

.application-profile.pipeline-hub-theme .application-profile__hero-content {
  position: relative;
  z-index: 20;
  gap: 1rem;
}

.application-profile.pipeline-hub-theme .application-profile__name {
  color: #ffffff;
  font-weight: 900;
}

.application-profile.pipeline-hub-theme .application-profile__location {
  color: rgba(255, 255, 255, 0.74);
}

.application-profile.pipeline-hub-theme .application-profile__meta-pill {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.application-profile.pipeline-hub-theme .application-profile__score-hero {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.application-profile.pipeline-hub-theme .application-profile__score-hero-num {
  background: linear-gradient(135deg, #fe3cd3, #fe3c72);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.application-profile.pipeline-hub-theme .application-profile__score-toggle-icon {
  color: rgba(255, 255, 255, 0.78);
}

.application-profile.pipeline-hub-theme .application-profile__score-bar-card {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

.application-profile.pipeline-hub-theme .application-profile__score-bar-head span,
.application-profile.pipeline-hub-theme .application-profile__score-bar-head strong {
  color: #ffffff;
}

.application-profile.pipeline-hub-theme .application-profile__score-bars .application-profile__score-bar-card {
  border: 1px solid #e2e8f0;
  background: #ffffff;
}

.application-profile.pipeline-hub-theme .application-profile__score-bars .application-profile__score-bar-head span {
  color: #64748b;
}

.application-profile.pipeline-hub-theme .application-profile__score-bars .application-profile__score-bar-head strong {
  color: #0f172a;
}

.application-profile.pipeline-hub-theme .application-profile__score-bars .application-profile__score-bar-meter {
  background: #e2e8f0;
}

.application-profile.pipeline-hub-theme .application-profile__score-bars .application-profile__score-bar-card.is-pending .application-profile__score-bar-head strong {
  color: #94a3b8;
}

.application-profile.pipeline-hub-theme .application-profile__timeline {
  margin: 1rem -1.4rem 0;
  padding: 0.9rem 1.2rem;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 0 0 14px 14px;
  overflow: visible;
}

.application-profile.pipeline-hub-theme .application-profile__timeline-label,
.application-profile.pipeline-hub-theme .application-profile__timeline-state {
  color: rgba(255, 255, 255, 0.72);
}

.application-profile.pipeline-hub-theme .application-profile__timeline-step--current .application-profile__timeline-label {
  color: #ffffff;
}

.application-profile.pipeline-hub-theme .application-profile__tab-switcher {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  padding: 0.32rem;
}

.application-profile.pipeline-hub-theme .application-profile__tab-button {
  border-radius: 8px;
  color: #475569;
}

.application-profile.pipeline-hub-theme .application-profile__tab-button.is-active {
  color: #6b00c9;
  background: #f3e8ff;
}

.application-profile.pipeline-hub-theme .application-profile__split {
  margin-top: 1rem;
}

.application-profile.pipeline-hub-theme .application-profile__history-layout {
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1rem;
}

.application-profile.pipeline-hub-theme .recruiter-panel:not(.application-profile__hero),
.application-profile.pipeline-hub-theme .application-feedback__card,
.application-profile.pipeline-hub-theme .application-profile__genome-invite,
.application-profile.pipeline-hub-theme .application-profile__interaction-card {
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: none;
}

.application-profile.pipeline-hub-theme .application-profile__interaction-panel {
  background: #ffffff;
}

.application-profile.pipeline-hub-theme .application-profile__interaction-head h2 {
  color: #170017;
}

.application-profile.pipeline-hub-theme .application-profile__interaction-kicker {
  color: #6b00c9;
}

.application-profile.pipeline-hub-theme .application-profile__interaction-count {
  background: #f3e8ff;
  color: #6b00c9;
}

.application-profile.pipeline-hub-theme .application-profile__experience-icon {
  background: #f3e8ff;
  border-color: rgba(107, 0, 201, 0.25);
  color: #6b00c9;
}

@media (max-width: 1080px) {
  .application-profile.pipeline-hub-theme .application-profile__history-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 1180px) {
  .application-profile__history-layout {
    grid-template-columns: 1fr;
  }
  .application-profile__info-aside {
    position: static;
  }
}
@media (max-width: 760px) {
  .application-profile__experience-education-row {
    grid-template-columns: 1fr;
  }
}
.application-profile__interaction-marker {
  position: relative;
  z-index: 1;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.application-profile__interaction-marker--violet {
  background: #f3e8ff;
  color: #7c3aed;
  border-color: #ddd6fe;
}

.application-profile__interaction-marker--rose {
  background: #fce7f3;
  color: #ec4899;
  border-color: #fbcfe8;
}

.application-profile__interaction-marker--mint {
  background: #dcfce7;
  color: #16a34a;
  border-color: #bbf7d0;
}

.application-profile__interaction-marker--sky {
  background: #dbeafe;
  color: #2563eb;
  border-color: #bfdbfe;
}

.application-profile__interaction-marker--amber {
  background: #fef3c7;
  color: #d97706;
  border-color: #fde68a;
}

.application-profile__interaction-card {
  display: grid;
  gap: 0.7rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.application-profile__interaction-item-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.application-profile__interaction-title,
.application-profile__interaction-subtitle,
.application-profile__interaction-date,
.application-profile__interaction-body {
  margin: 0;
}

.application-profile__interaction-title {
  color: #0f172a;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

.application-profile__interaction-subtitle {
  margin-top: 0.2rem;
  color: #64748b;
  font-size: 0.82rem;
  line-height: 1.55;
}

.application-profile__interaction-date {
  color: #94a3b8;
  font-size: 0.76rem;
  font-weight: 600;
  white-space: nowrap;
}

.application-profile__interaction-body {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: #f8fafc;
  color: #475569;
  font-size: 13px;
  font-weight: 500;
}

.application-profile__interaction-chips {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.application-profile__interaction-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.application-profile__interaction-chip--violet {
  background: #f5f3ff;
  color: #6d28d9;
}

.application-profile__interaction-chip--rose {
  background: #fce7f3;
  color: #db2777;
}

.application-profile__interaction-chip--mint {
  background: #dcfce7;
  color: #15803d;
}

.application-profile__interaction-chip--sky {
  background: #dbeafe;
  color: #1d4ed8;
}

.application-profile__interaction-chip--amber {
  background: #fef3c7;
  color: #b45309;
}

.application-profile__interaction-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #7c3aed;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.application-profile__interaction-link:hover {
  text-decoration: underline;
}

.application-profile__hero-score-stack {
  display: grid;
  gap: 0.55rem;
  justify-items: end;
  min-width: 240px;
  position: relative;
  z-index: 60;
}

.application-profile__score-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  line-height: 1;
  margin-bottom: 0.05rem;
}

.application-profile__score-help-btn {
  width: 1.7rem;
  height: 1.7rem;
  margin: 0 0 0.18rem 0.12rem;
  border-radius: 999px;
  border: 2px solid #d8deea;
  background: #6B00C9;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.application-profile__score-help-btn:hover {
  border-color: #6B00C9;
  color: #6B00C9;
  background: #f8fafc;
}

.application-profile__score-help-btn svg {
  width: 1rem;
  height: 1rem;
}

.application-profile__score-toggle {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.application-profile__score-toggle:focus-visible {
  outline: 2px solid rgba(79, 70, 229, 0.45);
  outline-offset: 4px;
  border-radius: 8px;
}

.application-profile__score-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  margin: 0 0 0.28rem 0.2rem;
  transition: transform 0.18s ease, color 0.18s ease;
}

.application-profile__score-toggle-icon svg {
  width: 1rem;
  height: 1rem;
}

.application-profile__score-toggle[aria-expanded=true] .application-profile__score-toggle-icon {
  transform: rotate(-180deg);
}

.application-profile__score-hero-num {
  font-family: "DM Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 2.1rem;
  font-weight: 800;
  color: #00a676;
  letter-spacing: -0.02em;
}

.application-profile__score-hero-denom {
  color: #8b90a0;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.26rem;
}

.application-profile__score-bars {
  width: min(320px, 80vw);
  display: grid;
  gap: 0.45rem;
  padding: 0.68rem 0.72rem;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #eaecf0;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  z-index: 160;
}

.interviews-drawer .application-profile__score-bars {
  width: 100%;
  max-width: 100%;
  position: static;
  top: auto;
  right: auto;
  z-index: auto;
  box-shadow: none;
}

.application-profile__score-bars[hidden],
.application-profile__score-bars.is-collapsed {
  display: none !important;
}

.application-profile__score-bar-card {
  display: grid;
  gap: 0.35rem;
}

.application-profile__score-bar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.application-profile__cv-breakdown-accordion > summary::-webkit-details-marker {
  display: none;
}

.application-profile__cv-breakdown-accordion > summary {
  list-style: none;
}

.application-profile__score-bar-head span {
  color: #64748b;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-width: 68px;
}

.application-profile__score-bar-head strong {
  color: #0f172a;
  font-family: "DM Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.72rem;
  font-weight: 800;
  width: 40px;
  text-align: right;
}

.application-profile__score-bar-meter {
  position: relative;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: #eaecf0;
  overflow: hidden;
}

.application-profile__score-bar-meter span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  transition: width 0.28s ease;
  background: #cbd5e1;
}

.application-profile__score-bar-card.is-high .application-profile__score-bar-meter span {
  background: linear-gradient(90deg, #10b981 0%, #22c55e 100%);
}

.application-profile__score-bar-card.is-mid .application-profile__score-bar-meter span {
  background: linear-gradient(90deg, #f59e0b 0%, #f97316 100%);
}

.application-profile__score-bar-card.is-low .application-profile__score-bar-meter span {
  background: linear-gradient(90deg, #ef4444 0%, #f43f5e 100%);
}

.application-profile__score-bar-card.is-pending .application-profile__score-bar-head strong {
  color: #94a3b8;
  font-weight: 700;
}

.application-profile__score-bar-card.is-pending .application-profile__score-bar-meter span {
  width: 0 !important;
  background: #cbd5e1;
}

@media (max-width: 980px) {
  .application-profile__hero-score-stack {
    justify-items: start;
    width: 100%;
    min-width: 0;
  }
  .application-profile__score-bars {
    width: 100%;
  }
}
.application-profile__timeline {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 0.1rem;
  margin-bottom: 0.1rem;
  width: 100%;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  position: relative;
  z-index: 5;
  overflow: visible;
  scrollbar-width: thin;
  scrollbar-color: rgba(203, 213, 225, 0.8) transparent;
}

.application-profile__timeline::-webkit-scrollbar {
  height: 6px;
}

.application-profile__timeline::-webkit-scrollbar-track {
  background: transparent;
}

.application-profile__timeline::-webkit-scrollbar-thumb {
  background: rgba(203, 213, 225, 0.8);
  border-radius: 999px;
}

.application-profile__timeline-step {
  position: relative;
  flex: 1 1 0;
  min-width: 120px;
  min-height: 2.75rem;
  margin: 0;
  z-index: 1;
}

.application-profile__timeline-step[open],
.application-profile__timeline-step:hover,
.application-profile__timeline-step:focus-within {
  z-index: 6;
}

.application-profile__timeline-trigger {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem;
  min-width: 0;
  min-height: 2.5rem;
  cursor: pointer;
  padding: 0.2rem 0.35rem;
  border-radius: 0;
  border: 0;
  background: transparent;
  transition: none;
}

.application-profile__timeline-trigger::-webkit-details-marker {
  display: none;
}

.application-profile__timeline-trigger::marker {
  content: "";
}

.application-profile__timeline-step:hover .application-profile__timeline-trigger,
.application-profile__timeline-step[open] .application-profile__timeline-trigger,
.application-profile__timeline-step:focus-within .application-profile__timeline-trigger {
  border: 0;
  background: transparent;
}

.application-profile__timeline-trigger:focus-visible {
  outline: 2px solid rgba(124, 58, 237, 0.28);
  outline-offset: 2px;
  border-radius: 8px;
}

.application-profile__timeline-copy {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.application-profile__timeline-tooltip {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translate(-50%, 6px);
  width: min(320px, 100vw - 3rem);
  padding: 1rem 1rem 0.95rem;
  background: rgba(15, 23, 42, 0.96);
  color: #ffffff;
  font-size: 0.8rem;
  line-height: 1.45;
  border-radius: 18px;
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.26);
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.18s ease, transform 0.18s ease;
  text-align: left;
}

.application-profile__timeline-tooltip::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 7px 8px 7px;
  border-style: solid;
  border-color: transparent transparent rgba(15, 23, 42, 0.96) transparent;
}

.application-profile__timeline-tooltip--align-end {
  left: auto;
  right: 0;
  transform: translateY(6px);
}

.application-profile__timeline-tooltip--align-end::after {
  left: auto;
  transform: none;
  right: 1.25rem;
}

.application-profile__timeline-step[open] .application-profile__timeline-tooltip {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.application-profile__timeline-step[open] .application-profile__timeline-tooltip--align-end {
  transform: translateY(0);
}

.application-profile__timeline-tooltip-eyebrow,
.application-profile__timeline-tooltip-title,
.application-profile__timeline-tooltip-summary {
  margin: 0;
}

.application-profile__timeline-tooltip-eyebrow {
  color: rgba(216, 180, 254, 0.95);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.application-profile__timeline-tooltip-title {
  margin-top: 0.28rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
}

.application-profile__timeline-tooltip-summary {
  margin-top: 0.38rem;
  color: rgba(226, 232, 240, 0.94);
  font-size: 0.84rem;
}

.application-profile__timeline-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.application-profile__timeline-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: rgba(148, 163, 184, 0.22);
  color: #f8fafc;
}

.application-profile__timeline-chip--neutral {
  background: rgba(148, 163, 184, 0.22);
  color: #f8fafc;
}

.application-profile__timeline-chip--violet {
  background: rgba(167, 139, 250, 0.24);
  color: #ede9fe;
}

.application-profile__timeline-chip--mint {
  background: rgba(74, 222, 128, 0.2);
  color: #dcfce7;
}

.application-profile__timeline-chip--sky {
  background: rgba(56, 189, 248, 0.2);
  color: #dbeafe;
}

.application-profile__timeline-chip--amber {
  background: rgba(251, 191, 36, 0.2);
  color: #fef3c7;
}

.application-profile__timeline-chip--rose {
  background: rgba(251, 113, 133, 0.2);
  color: #ffe4e6;
}

.application-profile__timeline-tooltip-details {
  display: grid;
  gap: 0.55rem;
  margin: 0.85rem 0 0;
}

.application-profile__timeline-tooltip-row {
  display: grid;
  gap: 0.18rem;
}

.application-profile__timeline-tooltip-row dt,
.application-profile__timeline-tooltip-row dd {
  margin: 0;
}

.application-profile__timeline-tooltip-row dt {
  color: rgba(191, 219, 254, 0.78);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.application-profile__timeline-tooltip-row dd {
  color: #f8fafc;
  font-size: 0.82rem;
  line-height: 1.45;
}

.application-profile__timeline-marker {
  position: relative;
  z-index: 1;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #d1d5db;
  background: #ffffff;
  color: #cbd5e1;
  box-shadow: none;
}

.application-profile__timeline-label {
  color: #94a3b8;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  max-width: 100%;
  text-align: center;
}

.application-profile__timeline-state {
  display: none;
}

.application-profile__timeline-line {
  position: absolute;
  top: 0.95rem;
  left: calc(50% + 1rem);
  right: calc(-50% + 1rem);
  height: 2px;
  background: #e5e7eb;
  z-index: 0;
}

.application-profile__timeline-step--complete .application-profile__timeline-marker {
  border-color: #10b981;
  background: #10b981;
  color: #fff;
}

.application-profile__timeline-step--complete .application-profile__timeline-label {
  color: #10b981;
}

.application-profile__timeline-step--complete .application-profile__timeline-state {
  color: #6c6c6c;
}

.application-profile__timeline-step--current .application-profile__timeline-trigger {
  border-color: transparent;
}

.application-profile__timeline-step--current .application-profile__timeline-marker {
  border-color: #7c3aed;
  background: #ffffff;
  color: #7c3aed;
  box-shadow: none;
}

.application-profile__timeline-marker-avatar {
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  object-fit: cover;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.application-profile__timeline-marker-avatar--placeholder {
  background: #eef2ff;
  color: #6366f1;
}

.application-profile__timeline-marker-avatar--placeholder svg {
  width: 0.72rem;
  height: 0.72rem;
}

.application-profile__timeline-step--current .application-profile__timeline-label {
  color: #7c3aed;
}

.application-profile__timeline-step--current .application-profile__timeline-state {
  color: #7c3aed;
}

.application-profile__timeline-step[data-stage-drop=rejected].application-profile__timeline-step--current .application-profile__timeline-marker {
  border-color: #ef4444;
  background: #fff1f2;
  color: #ef4444;
}

.application-profile__timeline-step[data-stage-drop=rejected].application-profile__timeline-step--current .application-profile__timeline-label {
  color: #dc2626;
}

.application-profile__timeline-step[data-stage-drop=rejected].application-profile__timeline-step--current .application-profile__timeline-state {
  color: #dc2626;
}

.application-profile__timeline-step[data-stage-drop=hired].application-profile__timeline-step--skipped .application-profile__timeline-line {
  background: #ef4444;
}

.application-profile__timeline.is-rejected-current .application-profile__timeline-step[data-stage-drop=review] .application-profile__timeline-line {
  background: #ef4444;
}

.application-profile__timeline-step--skipped .application-profile__timeline-trigger {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.application-profile__timeline-step--skipped .application-profile__timeline-marker {
  border-color: #e2e8f0;
  background: #f8fafc;
  color: #94a3b8;
  box-shadow: none;
}

.application-profile__timeline-step--skipped .application-profile__timeline-label {
  color: #94a3b8;
}

.application-profile__timeline-step--skipped .application-profile__timeline-state {
  color: #94a3b8;
}

.application-profile__timeline-step--complete .application-profile__timeline-line {
  background: #10b981;
}

.application-profile__timeline-step--current .application-profile__timeline-line {
  background: #e5e7eb;
}

.application-profile__timeline-step:last-child .application-profile__timeline-line {
  display: none;
}

@media (max-width: 900px) {
  .application-profile__history-layout {
    grid-template-columns: 1fr;
  }
  .application-profile__experience-education-row {
    grid-template-columns: 1fr;
  }
  .application-profile__interaction-panel {
    position: static;
  }
  .application-profile__timeline {
    grid-template-columns: repeat(6, minmax(135px, 1fr));
  }
  .application-profile__timeline-tooltip,
  .application-profile__timeline-tooltip--align-end {
    left: 0;
    right: auto;
    width: min(300px, 100vw - 2.5rem);
  }
  .application-profile__timeline-tooltip::after,
  .application-profile__timeline-tooltip--align-end::after {
    left: 1.25rem;
    right: auto;
  }
  .application-profile__radar-analysis-row {
    grid-template-columns: 1fr;
  }
}
.application-tests {
  scroll-margin-top: 2rem;
}

.application-tests__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.application-tests__summary {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.application-tests__summary-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: #f5f3ff;
  color: #6d28d9;
  font-size: 0.82rem;
  font-weight: 700;
}

.application-tests__form {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #faf7ff 100%);
}

.application-tests__form-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.application-tests__field {
  display: grid;
  gap: 0.45rem;
}

.application-tests__field span {
  color: #475569;
  font-size: 0.82rem;
  font-weight: 700;
}

.application-tests__field input,
.application-tests__field select {
  width: 100%;
  min-width: 0;
  padding: 0.78rem 0.9rem;
  border: 1px solid #d7deea;
  border-radius: 14px;
  background: #ffffff;
  color: #0f172a;
  font: inherit;
}

.application-tests__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.application-tests__actions-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.application-tests__actions-buttons .recruiter-btn,
.application-tests__actions-buttons .recruiter-btn:hover,
.application-tests__actions-buttons .recruiter-btn:focus,
.application-tests__actions-buttons .recruiter-btn:focus-visible,
.application-tests__actions-buttons .recruiter-btn:active {
  box-shadow: none !important;
}

.application-tests__hint {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  color: #64748b;
  font-size: 0.88rem;
  font-weight: 600;
}

.application-profile__genome-invite {
  padding: 0;
  margin: 0 0 1rem;
}

.application-profile__genome-invite-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
  flex-wrap: wrap;
  padding: 0.85rem 1rem;
  border: 1px dashed rgba(236, 72, 153, 0.42);
  border-radius: 14px;
  background: #fff8fc;
}

.application-profile__genome-invite-copy {
  flex: 1 1 320px;
  max-width: 56rem;
}

.application-profile__genome-invite-copy > p {
  margin: 0;
  color: #1f2937;
  font-size: 13px;
  line-height: 1.45;
}

.application-profile__genome-invite-status {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 0.85rem;
}

.application-profile__genome-invite-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.2rem;
  color: #db2777;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.application-profile__genome-invite-kicker--inside {
  width: 100%;
  margin-bottom: 0.15rem;
}

.application-profile__genome-invite-copy h2 {
  margin: 0;
  color: #0f172a;
  font-size: 1rem;
  line-height: 1.5;
}

.application-profile__genome-invite-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
  flex-wrap: wrap;
}

.application-profile__genome-invite-actions .application-tests__form {
  display: block;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.application-profile__genome-invite-actions .recruiter-btn {
  min-height: 2.25rem;
  padding: 0.5rem 0.95rem;
  border-radius: 10px;
  background: #ec268f;
  background-image: none;
  border: 1px solid #ec268f;
  color: #ffffff;
  box-shadow: none;
  font-size: 0.84rem;
  font-weight: 700;
}

.application-profile__genome-invite-actions .recruiter-btn--candidate-secondary {
  background: #ec268f;
  background-image: none;
  border-color: #ec268f;
  font-size: 13px;
  font-weight: 500;
}

.application-profile__genome-invite-actions .recruiter-btn--candidate-ghost {
  background: #ffffff;
  border-color: #e5e7eb;
  color: #0f172a;
  box-shadow: none;
  font-size: 13px;
  font-weight: 500;
}

.application-profile__genome-invite-actions .recruiter-btn:hover {
  background: #d61e80;
  background-image: none;
  border-color: #d61e80;
  color: #ffffff;
}

.application-profile__genome-invite-actions .recruiter-btn--candidate-ghost:hover {
  background: #f8fafc;
  border-color: rgba(148, 163, 184, 0.46);
  color: #0f172a;
}

.application-profile__genome-invite-actions .recruiter-btn:disabled {
  background: #f9a8d4;
  border-color: #f9a8d4;
  box-shadow: none;
}

.application-profile__genome-invite-actions .recruiter-btn--candidate-ghost:disabled {
  background: #ffffff;
  border-color: rgba(148, 163, 184, 0.22);
  color: #94a3b8;
}

.application-tests__list {
  display: grid;
  gap: 1rem;
}

.application-tests__test-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 20px;
  background: #ffffff;
}

.application-tests__test-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.application-tests__test-head h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 800;
}

.application-tests__test-badges,
.application-tests__meta {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.application-tests__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: #eef2ff;
  color: #4f46e5;
  font-size: 0.78rem;
  font-weight: 700;
}

.application-tests__badge--subtle {
  background: #f8fafc;
  color: #475569;
}

.application-profile__genome-invite-status .application-tests__badge--subtle {
  background: #ffffff;
}

.application-tests__table-wrap {
  border: 1px solid rgba(226, 232, 240, 0.88);
  border-radius: 18px;
  background: #fbfdff;
  overflow-x: auto;
}

.application-tests__table {
  width: 100%;
  min-width: 900px;
  border-collapse: separate;
  border-spacing: 0;
}

.application-tests__table-test-row td {
  padding: 1rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  background: #ffffff;
}

.application-tests__table-test-meta {
  display: grid;
  gap: 0.75rem;
}

.application-tests__table-test-primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.application-tests__table-test-primary strong {
  color: #0f172a;
  font-size: 1rem;
  font-weight: 800;
}

.application-tests__table-test-badges {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.application-tests__table th {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  background: #f8fafc;
  color: #64748b;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: left;
  white-space: nowrap;
}

.application-tests__table td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.72);
  vertical-align: top;
  color: #0f172a;
  font-size: 0.84rem;
  line-height: 1.45;
  background: transparent;
}

.application-tests__table tbody tr:last-child td {
  border-bottom: 0;
}

.application-tests__table-row td {
  background: rgba(255, 255, 255, 0.92);
}

.application-tests__table-detail-row td {
  background: rgba(248, 250, 252, 0.95);
  padding-top: 0;
}

.application-tests__table-candidate {
  display: grid;
  gap: 0.15rem;
  min-width: 180px;
}

.application-tests__invite-name,
.application-tests__invite-email {
  margin: 0;
}

.application-tests__invite-name {
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 800;
}

.application-tests__invite-email {
  margin-top: 0.2rem;
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 600;
}

.application-tests__status {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.application-tests__status--pending {
  background: #fff7ed;
  color: #c2410c;
}

.application-tests__status--in_progress {
  background: #eff6ff;
  color: #1d4ed8;
}

.application-tests__status--submitted {
  background: #ecfdf3;
  color: #15803d;
}

.application-tests__status--passed,
.application-tests__status--completed,
.application-tests__status--complete,
.application-tests__status--finished,
.application-tests__status--success {
  background: #ecfdf3;
  color: #15803d;
}

.application-tests__status--expired,
.application-tests__status--cancelled {
  background: #fef2f2;
  color: #dc2626;
}

.application-tests__table-scores {
  display: grid;
  gap: 0.38rem;
  min-width: 180px;
}

.application-tests__score-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.application-tests__score-line small {
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 700;
}

.application-tests__score-line strong {
  color: #0f172a;
  font-size: 0.83rem;
  font-weight: 800;
  text-align: right;
}

.application-tests__metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.application-tests__metric {
  padding: 0.85rem 0.9rem;
  border-radius: 16px;
  background: #f8fafc;
}

.application-tests__metric small,
.application-tests__metric strong {
  display: block;
}

.application-tests__metric small {
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 0.22rem;
}

.application-tests__metric strong {
  color: #0f172a;
  font-size: 0.98rem;
  font-weight: 800;
}

.application-tests__profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.application-tests__profile-dimension {
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  background: #f5f3ff;
}

.application-tests__profile-dimension small,
.application-tests__profile-dimension strong {
  display: block;
}

.application-tests__profile-dimension small {
  color: #6d28d9;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.application-tests__profile-dimension strong {
  color: #1f2937;
  font-size: 0.9rem;
  font-weight: 800;
}

.application-tests__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #7c3aed;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.application-tests__link:hover {
  text-decoration: underline;
}

.application-tests__copy-btn {
  width: 2.15rem;
  height: 2.15rem;
  padding: 0;
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 8px;
  background: #f5f3ff;
  color: #7c3aed;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.application-tests__copy-btn:hover {
  background: #ede9fe;
  border-color: rgba(124, 58, 237, 0.34);
}

.application-tests__copy-btn.is-copied {
  background: #dcfce7;
  border-color: #86efac;
  color: #15803d;
}

.application-tests__table-empty {
  color: #94a3b8;
  font-size: 0.8rem;
}

@media (max-width: 980px) {
  .application-tests__form-grid,
  .application-tests__profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .application-tests__table th,
  .application-tests__table td {
    padding-inline: 0.8rem;
  }
  .application-tests__table-test-row td {
    padding-inline: 0.8rem;
  }
}
@media (max-width: 640px) {
  .application-global-feedback-fab {
    right: 0.8rem;
    bottom: 0.8rem;
    width: 2.9rem;
    height: 2.9rem;
  }
  .application-global-feedback-modal__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .application-global-feedback-modal__actions .recruiter-btn {
    width: 100%;
    justify-content: center;
  }
  .application-profile__header {
    gap: 0.75rem;
  }
  .application-profile__header-actions {
    width: 100%;
    justify-content: space-between;
    gap: 0.55rem;
  }
  .application-profile__hero-quick-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .application-profile__hero-quick-actions .recruiter-btn {
    width: 100%;
    justify-content: center;
  }
  .application-profile__hero {
    padding: 0.85rem;
  }
  .application-profile__hero-content {
    gap: 0.85rem;
  }
  .application-profile__hero-top {
    gap: 0.75rem;
  }
  .application-profile__identity-panel {
    gap: 0.65rem;
  }
  .application-profile__hero-score-stack {
    width: 100%;
    margin-left: 0;
  }
  .application-profile__score-bars {
    grid-template-columns: 1fr;
  }
  .application-profile__history-layout {
    gap: 0.8rem;
  }
  .application-profile__history-main,
  .application-profile__info-aside {
    gap: 0.8rem;
  }
  .application-profile__genome-invite {
    padding: 0.9rem;
  }
  .application-profile__genome-invite-row {
    gap: 0.75rem;
  }
  .application-profile__genome-invite-status {
    align-items: flex-start;
  }
  #application-alignment > div {
    padding: 0.75rem !important;
    gap: 0.75rem !important;
  }
  .application-profile__alignment-charts {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .application-profile__alignment-chart-card {
    padding: 0.8rem;
  }
  .application-profile__alignment-svg-card {
    min-height: 220px;
  }
  .application-profile__radar-analysis-row .recruiter-dual {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .application-profile__insight-card {
    padding: 0.8rem;
  }
  .application-profile__experience-education-row {
    gap: 0.75rem;
  }
  .application-profile__interaction-panel {
    padding: 0.85rem;
  }
  .application-profile__interaction-head {
    gap: 0.55rem;
  }
  .application-profile__interaction-count {
    width: 100%;
    justify-content: center;
  }
  .application-profile__interaction-card {
    padding: 0.7rem;
  }
  .application-profile__genome-invite-actions {
    width: 100%;
  }
  .application-profile__genome-invite-actions .recruiter-btn {
    width: 100%;
    justify-content: center;
  }
  .application-profile__tab-switcher {
    width: 100%;
    margin-left: 0;
    border-radius: 22px;
  }
  .application-profile__tab-button {
    flex: 1 1 calc(50% - 0.5rem);
    text-align: center;
    min-height: 2.35rem;
    font-size: 0.79rem;
  }
  .application-profile__timeline {
    grid-template-columns: 1fr;
    overflow-x: visible;
  }
  .application-profile__interaction-item {
    grid-template-columns: 1.8rem minmax(0, 1fr);
    gap: 0.8rem;
  }
  .application-profile__interaction-list::before {
    left: 0.88rem;
  }
  .application-profile__timeline-step {
    padding-bottom: 0.85rem;
  }
  .application-profile__timeline-line {
    top: 2.6rem;
    bottom: -0.1rem;
    left: 1.65rem;
    right: auto;
    width: 2px;
    height: auto;
  }
  .application-tests__form-grid,
  .application-tests__profile-grid {
    grid-template-columns: 1fr;
  }
  .application-tests__actions,
  .application-tests__test-head {
    align-items: stretch;
  }
  .application-tests__actions-buttons {
    justify-content: stretch;
  }
}
.application-feedback {
  scroll-margin-top: 2rem;
}

.application-feedback__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.application-feedback__summary {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.application-feedback__summary-pill,
.application-feedback__rating,
.application-feedback__mine {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
}

.application-feedback__summary-pill {
  padding: 0.45rem 0.8rem;
  background: #f3f0ff;
  color: #5b3df5;
  font-size: 0.88rem;
}

.application-feedback__grid {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.application-feedback__form,
.application-feedback__card {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  background: #fbfaff;
}

.application-feedback__form {
  padding: 1rem;
  display: grid;
  gap: 0.85rem;
  position: sticky;
  top: 1rem;
}

.application-feedback__field {
  display: grid;
  gap: 0.4rem;
}

.application-feedback__field > span {
  color: #334155;
  font-size: 0.9rem;
  font-weight: 700;
}

.application-feedback__field input,
.application-feedback__field select,
.application-feedback__field textarea {
  width: 100%;
  border: 1px solid rgba(203, 213, 225, 0.95);
  border-radius: 12px;
  background: #ffffff;
  color: #0f172a;
  font: inherit;
  padding: 0.75rem 0.9rem;
}

.application-feedback__field textarea {
  resize: vertical;
  min-height: 120px;
}

.application-feedback__field input:focus,
.application-feedback__field select:focus,
.application-feedback__field textarea:focus {
  outline: none;
  border-color: rgba(99, 102, 241, 0.45);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
}

.application-feedback__error {
  color: #dc2626;
  font-size: 0.82rem;
  font-weight: 600;
}

.application-feedback__actions {
  display: flex;
  justify-content: flex-start;
}

.application-feedback__list {
  display: grid;
  gap: 0.85rem;
}

.application-feedback__card {
  padding: 1rem 1.1rem;
  background: #ffffff;
}

.application-feedback__card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
  margin-bottom: 0.65rem;
}

.application-feedback__author,
.application-feedback__title,
.application-feedback__comment,
.application-feedback__meta {
  margin: 0;
}

.application-feedback__author {
  color: #0f172a;
  font-weight: 800;
}

.application-feedback__mine {
  margin-left: 0.45rem;
  padding: 0.15rem 0.5rem;
  background: #ede9fe;
  color: #6d28d9;
  font-size: 0.74rem;
}

.application-feedback__meta {
  margin-top: 0.2rem;
  color: #64748b;
  font-size: 0.85rem;
}

.application-feedback__rating {
  min-width: 58px;
  padding: 0.4rem 0.7rem;
  background: #fff1f2;
  color: #e11d48;
  font-size: 0.88rem;
}

.application-feedback__title {
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.application-feedback__comment {
  color: #334155;
  line-height: 1.65;
}

.application-profile__header {
  background: #fff;
}

.application-profile__header p {
  margin: 0.25rem 0 0;
  color: #64748b;
  font-size: 20px;
  font-weight: 700;
}

.application-profile__header p b {
  color: #0f172a;
  font-weight: 800;
}

.application-profile__header-actions {
  display: grid;
  gap: 0.5rem;
  justify-items: end;
}

.application-profile__hero {
  --pink: #e91e8c;
  --green: #00c48c;
  --orange: #f59e0b;
  --red: #ef4444;
  --purple: #7c3aed;
  --blue: #3b82f6;
  --ink: #0f1117;
  --ink2: #3a3f4b;
  --ink3: #8b90a0;
  --border: #eaecf0;
  --surface: #ffffff;
  --bg: #f5f6fa;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #ffffff;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.05);
  position: relative;
  z-index: 3;
  overflow: visible;
}

.application-profile__hero-content {
  display: grid;
  gap: 1rem;
  padding: 0.2rem 0.1rem 0.1rem;
}

.application-profile__hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.application-profile__identity-panel {
  flex: 1 1 520px;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.application-profile__hero-intro {
  flex: 1 1 440px;
  min-width: 0;
}

.application-profile__name {
  margin: 0;
  font-size: 1.34rem;
  line-height: 1.2;
  color: #0f172a;
  font-weight: 900;
}

.application-profile__identity-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.application-profile__fit-badge,
.application-profile__experience-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.26rem 0.58rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  border: 1px solid transparent;
  white-space: nowrap;
}

.application-profile__fit-badge.is-great {
  background: #e6faf3;
  color: #007a56;
  border-color: #a7f3d0;
}

.application-profile__fit-badge.is-ok {
  background: #fffbeb;
  color: #92400e;
  border-color: #fde68a;
}

.application-profile__fit-badge.is-low {
  background: #fff1f2;
  color: #9f1239;
  border-color: #fecdd3;
}

.application-profile__experience-badge.is-high {
  background: #e6faf3;
  color: #007a56;
  border-color: #a7f3d0;
}

.application-profile__experience-badge.is-mid {
  background: #fffbeb;
  color: #92400e;
  border-color: #fde68a;
}

.application-profile__experience-badge.is-low {
  background: #fff1f2;
  color: #9f1239;
  border-color: #fecdd3;
}

.application-profile__location {
  margin: 0.32rem 0 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 600;
}

.application-profile__meta {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.application-profile__meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.66rem;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid rgba(226, 232, 240, 0.95);
  color: #334155;
  font-size: 0.78rem;
  font-weight: 700;
}

.application-profile__meta-pill a {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.application-profile__meta-pill a:hover {
  color: #7c3aed;
}

.application-profile__hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(226, 232, 240, 0.85);
  padding-top: 0.9rem;
}

.application-profile__hero-actions .recruiter-btn {
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
  border-radius: 10px;
  padding-inline: 0.95rem;
  min-height: 2.35rem;
}

.application-profile__hero-actions--top {
  border-top: 0;
  padding-top: 0;
  margin: 0 0 0.45rem;
  justify-content: flex-start;
  align-self: auto;
}

.application-profile__hero-quick-actions {
  width: fit-content;
  margin-left: auto;
  padding: 0.35rem;
  border: 1px solid rgba(203, 213, 225, 0.95);
  border-radius: 999px;
  background: #ffffff;
  gap: 0.45rem;
}

.application-profile__hero-quick-actions .recruiter-btn {
  min-height: 2.05rem;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #334155;
  box-shadow: none;
  font-size: 0.84rem;
  font-weight: 700;
}

.application-profile__hero-quick-actions .recruiter-btn svg {
  opacity: 0.85;
}

.application-profile__hero-quick-actions .recruiter-btn:hover {
  background: #eef2ff;
  border-color: #c7d2fe;
  color: #4338ca;
}

.application-profile__hero-inline-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 0 0 0.2rem;
}

.application-profile__hero-inline-form {
  margin: 0;
}

.application-profile__hero-inline-btn {
  min-height: 2.5rem;
  border-radius: 9px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.application-profile__hero-inline-btn svg {
  width: 1rem;
  height: 1rem;
}

.application-profile__hero-inline-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.42);
  transform: translateY(-1px);
}

.application-profile__hero-inline-btn--primary {
  border-color: transparent;
  background: linear-gradient(135deg, #fe3cd3 0%, #fe3c72 100%);
  box-shadow: 0 10px 24px rgba(254, 60, 114, 0.34);
}

.application-profile__hero-inline-btn--primary:hover {
  background: linear-gradient(135deg, #ff57dc 0%, #ff4f83 100%);
  border-color: transparent;
}

.application-profile__hero-inline-btn:disabled {
  opacity: 0.62;
  cursor: not-allowed;
  transform: none;
}

.application-profile__header-menu {
  position: relative;
  margin-left: auto;
  z-index: 120;
}

.application-profile__header-menu-trigger {
  list-style: none;
  cursor: pointer;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #475569;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.application-profile__header-menu-trigger::-webkit-details-marker {
  display: none;
}

.application-profile__header-menu[open] .application-profile__header-menu-trigger {
  background: #eef2ff;
  color: #4338ca;
  border-color: #c7d2fe;
}

.application-profile__header-menu-dropdown {
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  min-width: 15.5rem;
  padding: 0.4rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.12);
  display: grid;
  gap: 0.2rem;
  z-index: 999;
}

.application-profile__header-menu-dropdown a,
.application-profile__header-menu-dropdown button {
  appearance: none;
  width: 100%;
  border: 0;
  background: transparent;
  text-decoration: none;
  color: #334155;
  border-radius: 10px;
  padding: 0.5rem 0.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.84rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.application-profile__header-menu-dropdown a:hover,
.application-profile__header-menu-dropdown button:hover {
  background: #f8fafc;
  color: #1e293b;
}

.application-profile__stage-switcher {
  margin-top: 0.6rem;
  margin-left: auto;
  display: grid;
  gap: 0.45rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 14px;
  background: #ffffff;
  width: fit-content;
  max-width: 100%;
}

.application-profile__stage-switcher-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.application-profile__stage-switcher-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.application-profile__stage-switcher-label {
  color: #475569;
  font-size: 0.8rem;
  font-weight: 700;
}

.application-profile__stage-switcher-select {
  min-width: 190px;
  max-width: 240px;
  min-height: 2.2rem;
}

.application-profile__stage-switcher-submit {
  min-height: 2.2rem;
  padding: 0.45rem 0.85rem;
  border-radius: 10px;
  border: 1px solid #dbe3ef;
  background: #f8fafc;
  color: #334155;
  box-shadow: none;
  font-size: 0.83rem;
  font-weight: 700;
}

.application-profile__stage-switcher-submit:hover {
  background: #eef2ff;
  border-color: #c7d2fe;
  color: #4338ca;
}

.application-profile__timeline-step.is-drop-target .application-profile__timeline-trigger {
  background: #f5f3ff;
  border-radius: 10px;
}

.application-profile__timeline-step--current .application-profile__timeline-trigger[draggable=true] {
  cursor: grab;
}

.application-profile__timeline-step--current .application-profile__timeline-trigger[draggable=true]:active {
  cursor: grabbing;
}

.application-profile__cv-preview {
  position: relative;
  margin-top: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  overflow: hidden;
  background: #f8fafc;
  max-width: 260px;
  height: 367px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.application-profile__cv-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.application-profile__insight-card {
  border: 1px solid #dbe3ee;
  border-radius: 10px;
  color: #1f2937;
  padding: 1rem 1.05rem;
  background: #f8fafc;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  font-family: "DM Sans", sans-serif;
}

.application-profile__insight-card--strength {
  background: #edfaf5;
  border-color: #c7e8db;
}

.application-profile__insight-card--risk {
  background: #fffbeb;
  border-color: #f1dfba;
}

.application-profile .application-profile__insight-card--strength {
  background: #edfaf5 !important;
  border: 0 !important;
}

.application-profile .application-profile__insight-card--risk {
  background: #fffbeb !important;
  border: 0 !important;
}

.application-profile__insight-title {
  margin: 0;
  line-height: 1.3;
  display: inline-flex;
  gap: 0.45rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.application-profile__insight-empty {
  color: #475569;
  margin-top: 0.75rem;
}

.application-profile__insight-card--strength .application-profile__insight-title {
  color: #0f766e;
}

.application-profile__insight-card--risk .application-profile__insight-title {
  color: #a16207;
}

.application-profile__insight-list {
  color: #1f2937;
  margin: 0.7rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.95rem;
  line-height: 1.6;
}

.application-profile__insight-list li {
  position: relative;
  padding-left: 1rem;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 0.32rem;
}

.application-profile__insight-list li::before {
  content: "";
  position: absolute;
  left: 0.06rem;
  top: 0.58rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 999px;
  background: #94a3b8;
}

.application-profile__insight-card--strength .application-profile__insight-list li::before {
  background: #10b981;
}

.application-profile__insight-card--risk .application-profile__insight-list li::before {
  background: #f59e0b;
}

@media (max-width: 920px) {
  .application-feedback__grid {
    grid-template-columns: 1fr;
  }
  .application-feedback__form {
    position: static;
  }
  .application-profile__hero-actions .recruiter-btn {
    width: 100%;
    justify-content: center;
  }
  .application-profile__identity-panel {
    flex: 1 1 100%;
  }
}
.interviews-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 760px;
  max-width: 92vw;
  height: 100vh;
  background: #ffffff;
  box-shadow: -20px 0 50px rgba(15, 23, 42, 0.15);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  overflow-y: auto;
  padding: 0;
}

.interviews-drawer.is-open {
  transform: translateX(0);
}

.interviews-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(2px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.interviews-drawer-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.interviews-drawer-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #475569;
  transition: all 0.2s ease;
  z-index: 10;
}

.interviews-drawer-close:hover {
  background: #e2e8f0;
  color: #0f172a;
  transform: scale(1.05);
}

.interviews-drawer .application-profile__interviews {
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
  background: transparent !important;
}

.drawer-ux-split {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  min-height: 100vh;
}

@media (min-width: 800px) {
  .drawer-ux-split {
    grid-template-columns: 420px 1fr;
  }
  .drawer-ux-left {
    background: #fff;
    padding: 2rem;
    border-right: 1px solid #e2e8f0;
    height: 100vh;
    overflow-y: auto;
  }
  .drawer-ux-right {
    background: #f7f3fb;
    padding: 2rem;
    height: 100vh;
    overflow-y: auto;
  }
}
.drawer-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}

.drawer-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.drawer-form-field.full-width {
  width: 100%;
}

.drawer-form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.drawer-form-input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #ffffff;
  color: #0f172a;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.02);
}

.drawer-form-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.drawer-form-submit {
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f1f5f9;
}

.drawer-planner-intro {
  margin-top: 1.25rem;
  padding: 1.25rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.drawer-planner-intro__eyebrow {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.drawer-planner-intro__title {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.drawer-planner-intro__eyebrow .iconify,
.drawer-planner-intro__title .iconify {
  color: #94a3b8;
  font-size: 1.1rem;
}

.drawer-form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .drawer-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.drawer-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.drawer-type-option {
  position: relative;
  display: block;
  cursor: pointer;
}

.drawer-type-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.drawer-type-option__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  height: 100%;
  padding: 0.8rem 0.5rem;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  transition: all 0.2s ease;
}

.drawer-type-option__icon {
  color: #64748b;
  font-size: 1.25rem;
  transition: color 0.2s ease;
}

.drawer-type-option__title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  transition: color 0.2s ease;
}

.drawer-type-option input:checked + .drawer-type-option__card {
  border-color: #3b82f6;
  background: #eff6ff;
  box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.1);
}

.drawer-type-option input:checked + .drawer-type-option__card .drawer-type-option__icon,
.drawer-type-option input:checked + .drawer-type-option__card .drawer-type-option__title {
  color: #1d4ed8;
}

.drawer-form-help {
  margin: 0;
  font-size: 0.75rem;
  color: #64748b;
}

.drawer-form-input--multi + .chosen-container-multi .chosen-choices {
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 0.25rem 0.4rem;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.02);
  transition: all 0.2s ease;
  min-height: 44px;
}

.drawer-form-input--multi + .chosen-container-multi.chosen-container-active .chosen-choices {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
  outline: none;
}

.drawer-form-input--multi + .chosen-container-multi .chosen-choices li.search-field input[type=text] {
  font-size: 0.9rem;
  height: 28px;
  padding-left: 0.3rem;
  font-family: inherit;
}

.drawer-form-input--multi + .chosen-container-multi .chosen-choices li.search-choice {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 6px;
  color: #1e40af;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.2rem 1.4rem 0.2rem 0.5rem;
  margin: 0.15rem 0.2rem;
  line-height: 1.5;
  box-shadow: none;
}

.drawer-form-input--multi + .chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  top: 0.3rem;
  right: 0.3rem;
  background: transparent;
  color: #60a5fa;
  font-size: 1rem;
  cursor: pointer;
}

.drawer-form-input--multi + .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  color: #1e40af;
}

.drawer-form-input--multi + .chosen-container .chosen-drop {
  border: 1px solid #e2e8f0;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
  font-size: 0.85rem;
}

.drawer-form-input--multi + .chosen-container .chosen-results li.highlighted {
  background: #eff6ff;
  color: #1e40af;
}

.drawer-form-input--multi + .chosen-container .chosen-results li.result-selected {
  background: #f8fafc;
  color: #0f172a;
  font-weight: 600;
}

.drawer-duration-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.drawer-duration-chip {
  appearance: none;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #475569;
  border-radius: 6px;
  padding: 0.35rem 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.drawer-duration-chip:hover,
.drawer-duration-chip.is-active {
  border-color: #3b82f6;
  color: #1d4ed8;
  background: #eff6ff;
}

.drawer-conditional-field[hidden] {
  display: none !important;
}

.application-profile__interviews-stats {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
  padding-top: 1rem;
  border-top: 1px dashed #cbd5e1;
}

.application-profile__interviews-stat {
  padding: 0.35rem 0.65rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.application-profile__interviews-stat.is-risk {
  background: #fef2f2;
  border-color: #fecaca;
  color: #dc2626;
}

.application-profile__interviews-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.application-profile__interview-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.application-profile__interview-card:hover {
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  border-color: #cbd5e1;
}

.interview-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.interview-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 0.3rem 0;
}

.interview-card-meta {
  font-size: 0.85rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
}

.dot-separator {
  color: #cbd5e1;
}

.interview-card-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}

.application-profile__interview-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  border-top: 1px solid #f1f5f9;
  padding-top: 1rem;
  margin-top: auto;
}

.interview-status-select {
  appearance: none;
  padding: 0.4rem 2rem 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
  background: #ffffff url('data:image/svg+xml;utf8,<svg stroke="%2364748b" fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"></path></svg>') no-repeat right 0.6rem center/1.1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  color: #334155;
}

.interview-status-select:hover {
  border-color: #cbd5e1;
}

.interview-status-select:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.interview-status-select.is-status-prevu {
  color: #475569;
  border-color: #cbd5e1;
  background-color: #f1f5f9;
}

.interview-status-select.is-status-confirme {
  color: #166534;
  border-color: #bbf7d0;
  background-color: #f0fdf4;
}

.interview-status-select.is-status-present {
  color: #1e3a8a;
  border-color: #bfdbfe;
  background-color: #eff6ff;
}

.interview-status-select.is-status-absent {
  color: #9a3412;
  border-color: #fed7aa;
  background-color: #fff7ed;
}

.interview-status-select.is-status-reporte {
  color: #5b21b6;
  border-color: #ddd6fe;
  background-color: #f5f3ff;
}

.interview-status-select.is-status-annule {
  color: #991b1b;
  border-color: #fecaca;
  background-color: #fef2f2;
}

/* ═══════════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE — comprehensive mobile-friendly overrides
   ═══════════════════════════════════════════════════════════════════ */
/* ── Tablet-ish (≤ 768px) ────────────────────────────────────── */
@media (max-width: 768px) {
  /* Header */
  .application-profile__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    padding-inline: 0.75rem;
  }
  .application-profile__header h1 {
    font-size: 1.15rem;
  }
  .application-profile__header p {
    font-size: 0.92rem;
  }
  .application-profile__header-actions {
    width: 100%;
    justify-items: stretch;
  }
  .application-profile__hero-quick-actions {
    width: 100%;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }
  .application-profile__hero-quick-actions .recruiter-btn {
    width: 100%;
    justify-content: center;
    border-radius: 12px;
    min-height: 2.5rem;
  }
  /* Hero section */
  .application-profile__hero {
    padding: 0.75rem;
    border-radius: 16px;
  }
  .application-profile__hero-top {
    flex-direction: column;
    gap: 0.85rem;
  }
  .application-profile__identity-panel {
    flex: 1 1 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .application-profile__hero-intro {
    flex: 1 1 100%;
  }
  .application-profile__identity-row {
    justify-content: center;
  }
  .application-profile__location {
    justify-content: center;
    width: 100%;
  }
  .application-profile__meta {
    justify-content: center;
  }
  .application-profile__hero-score-stack {
    width: 100%;
    justify-items: center;
    min-width: 0;
  }
  .application-profile__score-bars {
    width: 100%;
    max-width: 100%;
  }
  /* Timeline — horizontal scroll on tablets */
  .application-profile__timeline {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.6rem;
  }
  .application-profile__timeline-step {
    min-width: 110px;
  }
  .application-profile__timeline-label {
    font-size: 0.76rem;
  }
  /* Tabs */
  .application-profile__tab-switcher {
    width: 100%;
    margin-left: 0;
    justify-content: center;
    border-radius: 18px;
    gap: 0.35rem;
  }
  .application-profile__tab-button {
    flex: 1 1 auto;
    min-width: 0;
    text-align: center;
    font-size: 0.8rem;
    padding: 0.5rem 0.65rem;
    min-height: 2.35rem;
  }
  /* History layout */
  .application-profile__history-layout {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .application-profile__info-aside {
    position: static;
  }
  .application-profile__experience-education-row {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  /* Analysis row */
  .application-profile__radar-analysis-row {
    grid-template-columns: 1fr;
  }
  .recruiter-dual {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  /* Alignment */
  .application-profile__alignment-charts {
    grid-template-columns: 1fr;
  }
  /* Tests */
  .application-tests__form-grid {
    grid-template-columns: 1fr;
  }
  .application-tests__head {
    flex-direction: column;
    gap: 0.65rem;
  }
  .application-tests__summary {
    width: 100%;
  }
  .application-tests__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .application-tests__actions-buttons {
    width: 100%;
    justify-content: stretch;
  }
  .application-tests__actions-buttons .recruiter-btn {
    flex: 1;
    justify-content: center;
  }
  .application-tests__metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .application-tests__profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  /* Feedback */
  .application-feedback__grid {
    grid-template-columns: 1fr;
  }
  .application-feedback__form {
    position: static;
  }
  .application-feedback__head {
    flex-direction: column;
    gap: 0.55rem;
  }
  /* Genome invite */
  .application-profile__genome-invite-row {
    flex-direction: column;
    align-items: stretch;
  }
  .application-profile__genome-invite-copy {
    flex: 1 1 auto;
  }
  .application-profile__genome-invite-actions {
    width: 100%;
    margin-left: 0;
  }
  .application-profile__genome-invite-actions .recruiter-btn {
    width: 100%;
    justify-content: center;
  }
  /* Stage switcher */
  .application-profile__stage-switcher {
    width: 100%;
    margin-left: 0;
  }
  .application-profile__stage-switcher-row {
    width: 100%;
  }
  .application-profile__stage-switcher-select {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  /* Interaction panel */
  .application-profile__interaction-panel {
    padding: 0.75rem;
  }
  .application-profile__interaction-head {
    flex-direction: column;
    gap: 0.5rem;
  }
  .application-profile__interaction-count {
    width: 100%;
    justify-content: center;
  }
  /* Interviews drawer */
  .interviews-drawer {
    width: 100vw;
  }
  .drawer-ux-split {
    grid-template-columns: 1fr;
  }
  .drawer-ux-left,
  .drawer-ux-right {
    padding: 1.25rem;
    height: auto;
    min-height: 0;
  }
  .drawer-type-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  /* Modals */
  .application-share-modal {
    padding: 0.65rem;
  }
  .application-share-modal__dialog {
    max-height: 90vh;
    padding: 0.95rem;
    border-radius: 18px;
  }
  .application-cv-modal {
    padding: 0.5rem;
  }
  .application-cv-modal__dialog {
    width: min(100%, 98vw);
    max-height: 95vh;
    border-radius: 10px;
  }
  .application-cv-modal__body iframe {
    min-height: 65vh;
  }
  .application-global-feedback-modal {
    padding: 0.65rem;
  }
  .application-global-feedback-modal__dialog {
    width: min(100%, 96vw);
    padding: 0.85rem;
  }
  /* CV preview in tab */
  .application-profile__resume-section--tab .application-profile__cv-preview {
    max-width: 100%;
    height: auto;
    aspect-ratio: 210/297;
  }
  .application-profile__cv-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  .application-profile__cv-footer .recruiter-btn {
    width: 100%;
    justify-content: center;
  }
}
/* ── Small mobile (≤ 480px) ──────────────────────────────────── */
@media (max-width: 480px) {
  /* Header */
  .application-profile__header {
    padding-inline: 0.5rem;
  }
  .application-profile__header h1 {
    font-size: 1.05rem;
  }
  .application-profile__header p {
    font-size: 0.82rem;
  }
  .application-profile__back-link {
    font-size: 0.82rem;
  }
  /* Hero */
  .application-profile__hero {
    padding: 0.6rem;
    border-radius: 14px;
  }
  .application-profile__name {
    font-size: 1.1rem;
  }
  .application-profile__location {
    font-size: 0.8rem;
  }
  .application-profile__meta-pill {
    font-size: 0.72rem;
    padding: 0.35rem 0.5rem;
  }
  .application-profile__experience-badge {
    font-size: 0.66rem;
    padding: 0.2rem 0.45rem;
  }
  .application-profile__score-hero-num {
    font-size: 1.65rem;
  }
  .application-profile__score-hero-denom {
    font-size: 0.72rem;
  }
  .application-profile__score-bar-head span {
    font-size: 0.62rem;
    min-width: 52px;
  }
  .application-profile__score-bar-head strong {
    font-size: 0.66rem;
  }
  /* Timeline — fully vertical on very small screens */
  .application-profile__timeline {
    flex-direction: column;
    align-items: stretch;
    overflow-x: visible;
    gap: 0;
    padding: 0.15rem 0;
  }
  .application-profile__timeline-step {
    flex: none;
    min-width: 0;
    padding-bottom: 0;
  }
  .application-profile__timeline-trigger {
    flex-direction: row;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 0.4rem;
    min-height: 2.2rem;
  }
  .application-profile__timeline-copy {
    text-align: left;
  }
  .application-profile__timeline-label {
    text-align: left;
    font-size: 0.82rem;
  }
  .application-profile__timeline-state {
    display: inline;
    font-size: 0.7rem;
    color: #94a3b8;
  }
  .application-profile__timeline-line {
    position: absolute;
    top: 2.35rem;
    bottom: -0.1rem;
    left: 1rem;
    right: auto;
    width: 2px;
    height: auto;
  }
  .application-profile__timeline-step:last-child {
    padding-bottom: 0;
  }
  .application-profile__timeline-step:last-child .application-profile__timeline-line {
    display: none;
  }
  .application-profile__timeline-tooltip {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin-top: 0.35rem;
    margin-left: 2.2rem;
    max-width: calc(100% - 2.4rem);
    border-radius: 14px;
  }
  .application-profile__timeline-tooltip::after {
    display: none;
  }
  .application-profile__timeline-tooltip--align-end {
    left: auto;
    right: auto;
    transform: none;
  }
  .application-profile__timeline-step[open] .application-profile__timeline-tooltip {
    transform: none;
  }
  .application-profile__timeline-step[open] .application-profile__timeline-tooltip--align-end {
    transform: none;
  }
  /* Tabs - smaller on phone */
  .application-profile__tab-switcher {
    padding: 0.2rem;
    gap: 0.25rem;
    border-radius: 16px;
  }
  .application-profile__tab-button {
    font-size: 0.72rem;
    padding: 0.45rem 0.45rem;
    gap: 0.2rem;
    min-height: 2.1rem;
    border-radius: 12px;
  }
  .application-profile__tab-button svg {
    width: 0.95rem;
    height: 0.95rem;
  }
  /* Test form */
  .application-tests__form {
    padding: 0.7rem;
    border-radius: 14px;
  }
  .application-tests__hint {
    font-size: 0.78rem;
    flex-wrap: wrap;
  }
  .application-tests__summary-pill {
    font-size: 0.74rem;
    padding: 0.35rem 0.6rem;
  }
  .application-tests__metrics,
  .application-tests__profile-grid {
    grid-template-columns: 1fr;
  }
  /* Feedback */
  .application-feedback__form {
    padding: 0.75rem;
  }
  .application-feedback__card {
    padding: 0.75rem;
  }
  .application-feedback__summary-pill {
    font-size: 0.78rem;
    padding: 0.35rem 0.55rem;
  }
  /* Interaction cards */
  .application-profile__interaction-card {
    padding: 0.6rem;
    border-radius: 14px;
  }
  .application-profile__interaction-title {
    font-size: 0.84rem;
  }
  .application-profile__interaction-subtitle {
    font-size: 0.76rem;
  }
  .application-profile__interaction-body {
    padding: 0.65rem 0.75rem;
    font-size: 0.82rem;
    border-radius: 12px;
  }
  .application-profile__interaction-item {
    grid-template-columns: 1.6rem minmax(0, 1fr);
    gap: 0.55rem;
  }
  .application-profile__interaction-marker {
    width: 1.6rem;
    height: 1.6rem;
  }
  .application-profile__interaction-list::before {
    left: 0.75rem;
  }
  /* Genome invite */
  .application-profile__genome-invite-row {
    padding: 0.65rem;
    border-radius: 12px;
  }
  .application-profile__genome-invite-kicker {
    font-size: 0.68rem;
  }
  .application-profile__genome-invite-copy > p {
    font-size: 0.82rem;
  }
  .application-profile__genome-invite-copy h2 {
    font-size: 0.9rem;
  }
  .application-profile__genome-invite-status {
    flex-direction: column;
    align-items: flex-start;
  }
  /* Alignment section */
  .application-profile__alignment-chart-card {
    padding: 0.65rem;
    border-radius: 14px;
  }
  .application-profile__alignment-svg-card {
    min-height: 180px;
    padding: 0.5rem;
  }
  /* Stage switcher */
  .application-profile__stage-switcher {
    padding: 0.5rem;
    border-radius: 12px;
  }
  .application-profile__stage-switcher-row {
    flex-direction: column;
    gap: 0.45rem;
  }
  .application-profile__stage-switcher-submit {
    width: 100%;
    justify-content: center;
  }
  /* Panels general */
  .recruiter-panel {
    border-radius: 14px !important;
  }
  /* Drawer */
  .interviews-drawer-close {
    top: 0.6rem;
    right: 0.6rem;
    width: 32px;
    height: 32px;
  }
  .drawer-ux-left,
  .drawer-ux-right {
    padding: 0.85rem;
  }
  .drawer-form {
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
  }
  .drawer-type-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
  }
  .drawer-type-option__card {
    padding: 0.6rem 0.35rem;
  }
  .drawer-type-option__title {
    font-size: 0.78rem;
  }
  /* Interview cards */
  .application-profile__interview-card {
    padding: 0.85rem;
    border-radius: 10px;
  }
  .interview-card-header {
    flex-direction: column;
    gap: 0.55rem;
  }
  .interview-card-badges {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
  }
  .interview-card-title {
    font-size: 0.9rem;
  }
  .interview-card-meta {
    font-size: 0.78rem;
    flex-wrap: wrap;
  }
  .application-profile__interview-actions {
    flex-direction: column;
  }
  .application-profile__interview-actions .recruiter-btn,
  .application-profile__interview-actions .interview-status-select {
    width: 100%;
  }
  /* Share modal */
  .application-share-modal__dialog {
    border-radius: 14px;
    padding: 0.75rem;
  }
  .application-share-modal__title {
    font-size: 1rem;
  }
  .application-share-modal__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }
  .application-share-modal__actions .recruiter-btn {
    width: 100%;
    justify-content: center;
  }
  .application-share-modal__conversation {
    padding: 0.7rem;
    border-radius: 14px;
  }
  /* Global feedback modal */
  .application-global-feedback-modal__dialog {
    padding: 0.7rem;
    border-radius: 12px;
  }
  .application-global-feedback-modal__actions {
    grid-template-columns: 1fr;
  }
  .application-global-feedback-modal__actions .recruiter-btn {
    width: 100%;
    justify-content: center;
  }
  /* Insight cards */
  .application-profile__insight-card {
    padding: 0.7rem;
    border-radius: 10px;
  }
  .application-profile__insight-title {
    font-size: 0.78rem;
  }
  .application-profile__insight-list {
    font-size: 0.88rem;
  }
  /* CV preview */
  .application-profile__cv-preview {
    max-width: 100%;
    height: auto;
    aspect-ratio: 210/297;
    border-radius: 10px;
  }
  /* Experience items */
  .application-profile__experience-item {
    grid-template-columns: 1.8rem minmax(0, 1fr);
    gap: 0.5rem;
  }
  .application-profile__experience-icon {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 6px;
  }
  /* Interviews stats */
  .application-profile__interviews-stats {
    gap: 0.35rem;
  }
  .application-profile__interviews-stat {
    font-size: 0.7rem;
    padding: 0.28rem 0.5rem;
  }
}
/* ── Very small phone (≤ 360px) ──────────────────────────────── */
@media (max-width: 360px) {
  .application-profile__header h1 {
    font-size: 0.95rem;
  }
  .application-profile__name {
    font-size: 0.98rem;
  }
  .application-profile__tab-button {
    font-size: 0.66rem;
    padding: 0.4rem 0.3rem;
  }
  .application-profile__tab-button svg {
    width: 0.85rem;
    height: 0.85rem;
  }
  .application-profile__score-hero-num {
    font-size: 1.4rem;
  }
  .application-profile__timeline-label {
    font-size: 0.76rem;
  }
  .application-profile__meta-pill {
    font-size: 0.66rem;
    padding: 0.3rem 0.42rem;
  }
  .drawer-type-grid {
    grid-template-columns: 1fr;
  }
}
/* NEW PROFILIUM CANDIDAT STYLES */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Nunito", sans-serif;
  background: #f8fafc;
  color: #170017;
  min-height: 100vh;
}

/* NAV */
.nav {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  height: 56px;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #170017;
}

.logo-c {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FE3CD3, #FE3C72);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 2px;
}

.nl {
  font-size: 13px;
  color: #64748b;
  padding: 6px 12px;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.12s;
}

.nl:hover {
  color: #170017;
  background: #f8fafc;
}

.nl.active {
  background: #f3e8ff;
  color: #6b00c9;
  font-weight: 600;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FE3CD3, #FE3C72);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

/* LAYOUT */
.layout {
  display: flex;
  min-height: calc(100vh - 56px);
}

.sidebar {
  width: 220px;
  flex-shrink: 0;
  background: #fff;
  border-right: 1px solid #e2e8f0;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: sticky;
  top: 56px;
  height: calc(100vh - 56px);
  overflow-y: auto;
}

.co-block {
  padding: 10px 10px 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid #f3e8ff;
}

.co-badge {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #f3e8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #6b00c9;
  margin-bottom: 8px;
}

.co-name {
  font-size: 13px;
  font-weight: 700;
}

.co-email {
  font-size: 11px;
  color: #94a3b8;
}

.nav-lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #cbd5e1;
  padding: 10px 10px 4px;
}

.sni {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  border-radius: 9px;
  font-size: 13px;
  color: #475569;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.12s;
  position: relative;
}

.sni:hover {
  background: #f8fafc;
  color: #170017;
}

.sni.active {
  background: #f3e8ff;
  color: #6b00c9;
  font-weight: 600;
}

.sni svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: 0.6;
}

.sni.active svg {
  opacity: 1;
  stroke: #6b00c9;
}

.sni-b {
  position: absolute;
  right: 10px;
  background: #fe3c72;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 20px;
}

.main {
  flex: 1;
  padding: 0;
  overflow-x: hidden;
}

/* BREADCRUMB */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 12px;
  color: #94a3b8;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
}

.breadcrumb a {
  color: #6b00c9;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #170017 0%, #2D0A2D 50%, #3D1A3D 100%);
  padding: 28px 28px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(254, 60, 114, 0.15);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 30%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(254, 60, 211, 0.1);
}

.hero-inner {
  display: flex;
  gap: 24px;
  position: relative;
  z-index: 1;
}

/* AVATAR BIG */
.hero-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FE3CD3, #FE3C72);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Nunito", sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  border: 3px solid rgba(255, 255, 255, 0.25);
}

.hero-info {
  flex: 1;
}

.hero-name {
  font-family: "Nunito", sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px;
}

.hero-title {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.hero-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.hero-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-tag.green {
  background: rgba(13, 148, 136, 0.3);
  border-color: rgba(13, 148, 136, 0.5);
}

.hero-tag.amber {
  background: rgba(245, 158, 11, 0.3);
  border-color: rgba(245, 158, 11, 0.5);
}

/* SCORE PANEL */
.score-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.score-ring {
  width: 100px;
  height: 100px;
  position: relative;
}

.score-ring svg {
  transform: rotate(-90deg);
}

.score-ring-val {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.score-num {
  font-family: "Nunito", sans-serif;
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(135deg, #FE3CD3, #FE3C72);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.score-lbl {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1px;
}

.score-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  background: linear-gradient(135deg, #FE3CD3, #FE3C72);
  color: #fff;
}

/* HERO ACTIONS */
.hero-actions {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  flex-shrink: 0;
}

.ha-btn {
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.12s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}

.ha-btn.primary {
  background: linear-gradient(135deg, #FE3CD3, #FE3C72);
  color: #fff;
  border: none;
  box-shadow: 0 4px 14px rgba(254, 60, 114, 0.4);
}

.ha-btn.ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.ha-btn.ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.ha-btn.primary:hover {
  opacity: 0.9;
}

/* STAGE BAR */
.stage-bar {
  background: rgba(0, 0, 0, 0.25);
  margin: 16px 0 0;
  padding: 14px 28px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0;
}

.stage-step {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}

.stage-step:last-child {
  flex: 0;
}

.stage-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  border: 2px solid transparent;
  transition: all 0.2s;
}

.stage-dot.done {
  background: #0D9488;
  border-color: #0D9488;
}

.stage-dot.current {
  background: linear-gradient(135deg, #FE3CD3, #FE3C72);
  border-color: #fe3c72;
  box-shadow: 0 0 0 4px rgba(254, 60, 114, 0.25);
}

.stage-dot.pending {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.4);
}

.stage-line {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 4px;
}

.stage-line.done {
  background: #0D9488;
}

.stage-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 5px;
  white-space: nowrap;
}

.stage-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* CONTENT */
.content {
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 20px;
}

/* CARD BASE */
.card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  padding: 20px;
  margin-bottom: 16px;
}

.card:last-child {
  margin-bottom: 0;
}

.card-title {
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #170017;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-title-right {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  color: #6b00c9;
  cursor: pointer;
}

/* AI SUMMARY */
.ai-summary-card {
  background: linear-gradient(135deg, #170017, #2D0A2D);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.ai-summary-card::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(254, 60, 114, 0.15);
}

.ai-summary-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.ai-summary-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #FE3CD3, #FE3C72);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.ai-summary-title {
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}

.ai-summary-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: linear-gradient(135deg, #FE3CD3, #FE3C72);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
}

.ai-summary-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.ai-summary-text strong {
  color: #fe3cd3;
}

.ai-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
  position: relative;
  z-index: 1;
}

.ai-hl {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  padding: 10px 12px;
}

.ai-hl-icon {
  font-size: 16px;
  margin-bottom: 4px;
}

.ai-hl-title {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.ai-hl-text {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

.ai-risks {
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

.ai-risk-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 7px;
  margin-bottom: 5px;
}

.ai-risk-row:last-child {
  margin-bottom: 0;
}

.ai-risk-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ai-risk-text {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  flex: 1;
}

.ai-risk-val {
  font-size: 11px;
  font-weight: 700;
}

/* GENOME SCORE */
.genome-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  padding: 20px;
  margin-bottom: 16px;
}

.genome-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.genome-title {
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #170017;
  display: flex;
  align-items: center;
  gap: 6px;
}

.genome-global {
  text-align: center;
}

.genome-global-num {
  font-family: "Nunito", sans-serif;
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(135deg, #FE3CD3, #FE3C72);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.genome-global-lbl {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 3px;
}

.genome-dims {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.genome-dim {
  display: flex;
  align-items: center;
  gap: 10px;
}

.genome-dim-icon {
  font-size: 14px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.genome-dim-label {
  font-size: 12px;
  color: #334155;
  width: 130px;
  flex-shrink: 0;
}

.genome-dim-bar-bg {
  flex: 1;
  height: 6px;
  background: #f8fafc;
  border-radius: 3px;
  overflow: hidden;
}

.genome-dim-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.8s ease;
}

.genome-dim-val {
  font-size: 12px;
  font-weight: 700;
  width: 36px;
  text-align: right;
}

.genome-insight {
  margin-top: 14px;
  padding: 12px;
  background: linear-gradient(135deg, #f8fafc, #fdf2f8);
  border-radius: 9px;
  border: 1px solid #e2e8f0;
  font-size: 12px;
  color: #334155;
  line-height: 1.6;
}

.genome-insight strong {
  color: #6b00c9;
}

/* SKILLS */
.skills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.skill-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}

.skill-match {
  background: linear-gradient(135deg, #f3e8ff, #fdf2f8);
  color: #6b00c9;
  border: 1px solid rgba(107, 0, 201, 0.2);
}

.skill-extra {
  background: #f8fafc;
  color: #334155;
  border: 1px solid #e2e8f0;
}

.skill-missing {
  background: #FEE2E2;
  color: #DC2626;
  border: 1px solid rgba(220, 38, 38, 0.2);
  text-decoration: line-through;
}

/* EXPERIENCE */
.exp-item {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #f8fafc;
}

.exp-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.exp-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f3e8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.exp-info {
  flex: 1;
}

.exp-title {
  font-size: 13px;
  font-weight: 700;
  color: #170017;
}

.exp-company {
  font-size: 12px;
  color: #6b00c9;
  font-weight: 600;
  margin-top: 1px;
}

.exp-period {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 2px;
}

.exp-desc {
  font-size: 12px;
  color: #475569;
  margin-top: 5px;
  line-height: 1.6;
}

/* CONTACT CARD */
.contact-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  padding: 20px;
  margin-bottom: 16px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: all 0.12s;
  cursor: pointer;
}

.contact-row:hover {
  background: #f3e8ff;
  border-color: rgba(107, 0, 201, 0.2);
}

.contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-info {
  flex: 1;
}

.contact-label {
  font-size: 11px;
  color: #94a3b8;
}

.contact-value {
  font-size: 13px;
  font-weight: 600;
  color: #170017;
  margin-top: 1px;
}

.contact-action {
  font-size: 11px;
  font-weight: 700;
  color: #6b00c9;
  white-space: nowrap;
}

/* QUICK ACTIONS */
.quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.qa-btn {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #fff;
  cursor: pointer;
  transition: all 0.12s;
  text-align: center;
}

.qa-btn:hover {
  border-color: #6b00c9;
  background: #f3e8ff;
}

.qa-icon {
  font-size: 18px;
  margin-bottom: 4px;
}

.qa-label {
  font-size: 11px;
  font-weight: 600;
  color: #170017;
}

.qa-sub {
  font-size: 10px;
  color: #94a3b8;
  margin-top: 1px;
}

/* STATUS CARD */
.status-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  padding: 16px;
  margin-bottom: 16px;
}

.status-title {
  font-size: 11px;
  color: #94a3b8;
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-current {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fe3c72;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(254, 60, 114, 0.2);
}

.status-name {
  font-size: 14px;
  font-weight: 700;
  color: #170017;
}

.status-since {
  font-size: 11px;
  color: #94a3b8;
}

.status-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.status-btn {
  padding: 9px 14px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #334155;
  transition: all 0.12s;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-btn:hover {
  background: #f3e8ff;
  color: #6b00c9;
  border-color: rgba(107, 0, 201, 0.3);
}

.status-btn.danger:hover {
  background: #FEE2E2;
  color: #DC2626;
  border-color: rgba(220, 38, 38, 0.3);
}

.status-btn.success:hover {
  background: #ECFDF5;
  color: #059669;
  border-color: rgba(5, 150, 105, 0.3);
}

/* TIMELINE */
.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #f3e8ff;
}

.tl-item {
  display: flex;
  gap: 14px;
  padding: 0 0 20px;
  position: relative;
}

.tl-item:last-child {
  padding-bottom: 0;
}

.tl-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  border: 2px solid #fff;
}

.tl-content {
  flex: 1;
  padding-top: 6px;
}

.tl-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.tl-title {
  font-size: 13px;
  font-weight: 700;
  color: #170017;
}

.tl-time {
  font-size: 11px;
  color: #cbd5e1;
  flex-shrink: 0;
  margin-left: 8px;
}

.tl-sub {
  font-size: 12px;
  color: #64748b;
  margin-top: 3px;
  line-height: 1.5;
}

.tl-bubble {
  background: #f8fafc;
  border-radius: 8px;
  padding: 10px 12px;
  margin-top: 8px;
  font-size: 12px;
  color: #334155;
  line-height: 1.6;
  border: 1px solid #e2e8f0;
}

.tl-bubble.me {
  background: linear-gradient(135deg, #f3e8ff, #fdf2f8);
  border-color: rgba(107, 0, 201, 0.15);
}

.tl-bubble.me::before {
  content: "Vous · ";
  font-weight: 700;
  color: #6b00c9;
}

.tl-action-row {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.tl-tag {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
}

.tl-score-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #fdf2f8, #fdf2f8);
  border: 1px solid rgba(254, 60, 114, 0.2);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  color: #fe3c72;
  margin-top: 8px;
}

/* ADD NOTE */
.add-note {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  padding: 16px;
}

.add-note-title {
  font-size: 12px;
  font-weight: 700;
  color: #170017;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.note-types {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.note-type {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #64748b;
  cursor: pointer;
  transition: all 0.12s;
}

.note-type.on {
  background: #170017;
  color: #fff;
  border-color: #170017;
}

.note-textarea {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 9px;
  padding: 10px 13px;
  font-size: 12px;
  font-family: "Nunito", sans-serif;
  color: #170017;
  outline: none;
  background: #f8fafc;
  resize: none;
  min-height: 72px;
  transition: border-color 0.12s;
}

.note-textarea:focus {
  border-color: #6b00c9;
  background: #fff;
}

.note-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 8px;
}

.note-btn {
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.12s;
}

.note-btn.primary {
  background: linear-gradient(135deg, #6b00c9, #6b00c9);
  color: #fff;
  border: none;
}

.note-btn.ghost {
  background: #fff;
  color: #334155;
  border: 1px solid #e2e8f0;
}

/* TOAST */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #170017;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  z-index: 999;
  transition: transform 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* MISC */
.tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
}

.tag-purple {
  background: #f3e8ff;
  color: #6b00c9;
}

.tag-green {
  background: #ECFDF5;
  color: #059669;
}

.tag-amber {
  background: #FEF3C7;
  color: #D97706;
}

.tag-red {
  background: #FEE2E2;
  color: #DC2626;
}

.tag-blue {
  background: #EFF6FF;
  color: #2563EB;
}

.sep {
  height: 1px;
  background: #f8fafc;
  margin: 12px 0;
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid #f8fafc;
}

.lang-item:last-child {
  border-bottom: none;
}

.lang-name {
  font-size: 13px;
  font-weight: 600;
  color: #170017;
  flex: 1;
}

.lang-level {
  font-size: 11px;
  color: #94a3b8;
}

.lang-dots {
  display: flex;
  gap: 3px;
}

.lang-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.application-profile__cv-breakdown-accordion .accordion-toggle-icon {
  transition: transform 0.3s ease;
}
.application-profile__cv-breakdown-accordion[open] .accordion-toggle-icon {
  transform: rotate(180deg);
}

.recruiter-kanban.recruiter-shell.dashboard-container {
  background: linear-gradient(180deg, #f7f3fb 0%, #f4f6fa 100%);
}

.recruiter-kanban .dashboard-header {
  margin-bottom: 1rem;
}

.recruiting-os__header h1 {
  color: var(--ats-text);
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  letter-spacing: -0.02em;
}

.recruiting-os__header-actions {
  gap: 0.7rem;
}

.recruiting-os__controls {
  display: grid;
  grid-template-columns: minmax(230px, auto) minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 0.9rem;
}

.recruiting-os__job-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid var(--ats-border);
  border-radius: 12px;
  background: var(--ats-panel);
  padding: 0.6rem 0.72rem;
  min-width: 230px;
  box-shadow: 0 2px 8px var(--ats-shadow-soft);
}

.recruiting-os__job-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--ats-primary-soft);
  color: var(--ats-primary-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.recruiting-os__job-pill strong {
  display: block;
  color: var(--ats-text);
  font-size: 0.88rem;
  font-weight: 700;
}

.recruiting-os__job-pill small {
  color: var(--ats-muted);
  font-size: 0.76rem;
}

.recruiting-os__job-switch {
  display: grid;
  gap: 0.14rem;
  min-width: 240px;
}

.recruiting-os__job-switch-select-wrap {
  position: relative;
  display: block;
}

.recruiting-os__job-switch-select-wrap::after {
  content: "";
  position: absolute;
  right: 0.1rem;
  top: 50%;
  width: 0.42rem;
  height: 0.42rem;
  border-right: 2px solid var(--ats-muted);
  border-bottom: 2px solid var(--ats-muted);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.recruiting-os__job-switch-label {
  color: var(--ats-muted-soft);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.recruiting-os__job-switch-input {
  border: 0;
  outline: none;
  background: transparent;
  color: var(--ats-text);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  min-width: 0;
  padding: 0;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 1.2rem;
  cursor: pointer;
}

.recruiting-os__job-switch-input::placeholder {
  color: var(--ats-muted-soft);
  font-weight: 700;
}

.recruiting-os__filters {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.recruiting-os__filters span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border: 1px solid var(--ats-border);
  border-radius: 999px;
  background: var(--ats-panel);
  color: var(--ats-text);
  padding: 0.28rem 0.62rem;
  font-size: 0.74rem;
  font-weight: 600;
}

.recruiting-os__filter-input {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid var(--ats-border);
  border-radius: 999px;
  background: var(--ats-panel);
  color: var(--ats-muted);
  padding: 0.22rem 0.55rem;
}

.recruiting-os__filter-input input {
  border: 0;
  background: transparent;
  color: var(--ats-text);
  width: 7rem;
  font-size: 0.74rem;
}

.recruiting-os__filter-input input:focus {
  outline: none;
}

.recruiting-os__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(80px, 1fr));
  gap: 0.4rem;
}

.recruiting-os__metrics article {
  border: 1px solid var(--ats-border);
  border-radius: 10px;
  padding: 0.42rem 0.54rem;
  background: var(--ats-panel);
  text-align: right;
  box-shadow: 0 2px 8px var(--ats-shadow-soft);
}

.recruiting-os__metrics small {
  display: block;
  color: var(--ats-muted-soft);
  font-size: 0.67rem;
  font-weight: 700;
}

.recruiting-os__metrics strong {
  color: var(--ats-text);
  font-size: 0.96rem;
  line-height: 1.1;
}

.kanban-feedback {
  min-height: 1.25rem;
  margin-bottom: 0.65rem;
  color: var(--ats-success);
  font-size: 0.8rem;
  font-weight: 700;
}

.kanban-feedback.is-error {
  color: var(--ats-danger);
}

.recruiting-os__pipeline {
  border: 1px solid var(--ats-border);
  border-radius: 14px;
  background: var(--ats-panel);
  box-shadow: 0 2px 10px var(--ats-shadow-soft);
  overflow: hidden;
}

.recruiting-os__pipeline {
  padding: 0.72rem;
}

.kanban-scroll-sync {
  display: grid;
  gap: 0.38rem;
  min-width: 0;
  max-width: 100%;
}

.kanban-scroll-sync__top {
  overflow-x: auto;
  overflow-y: hidden;
  height: 12px;
}

.kanban-scroll-sync__top::-webkit-scrollbar {
  height: 8px;
}

.kanban-scroll-sync__top::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.4);
  border-radius: 999px;
}

.kanban-scroll-sync__spacer {
  height: 1px;
}

.kanban {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  overflow-y: hidden;
  align-items: stretch;
  padding: 0.1rem 0.1rem 0.7rem;
  max-height: min(72vh, 760px);
  min-width: 0;
  max-width: 100%;
  overscroll-behavior: contain;
}

.kanban-col {
  flex: 0 0 250px;
  height: 100%;
  min-height: 0;
  border: 1px solid var(--ats-border);
  border-radius: 12px;
  padding: 0.7rem;
  background: var(--ats-panel-soft);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.kanban-col.is-drop-target {
  border-color: var(--ats-primary);
  box-shadow: 0 0 0 3px var(--ats-focus-ring);
}

.kanban-col__head {
  display: flex;
  justify-content: space-between;
  gap: 0.45rem;
  align-items: flex-start;
  border-bottom: 1px dashed var(--ats-border-strong);
  padding-bottom: 0.58rem;
  margin-bottom: 0.6rem;
}

.kanban-col__title {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  color: var(--ats-text);
  font-size: 0.8rem;
  font-weight: 700;
}

.kanban-col__sub {
  margin: 0.2rem 0 0;
  color: var(--ats-muted);
  font-size: 0.7rem;
  font-weight: 600;
}

.kanban-col__count {
  min-width: 1.7rem;
  text-align: center;
  border-radius: 999px;
  padding: 0.14rem 0.5rem;
  background: var(--ats-primary-soft);
  color: var(--ats-primary-strong);
  font-size: 0.72rem;
  font-weight: 700;
}

.kanban-col__list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1 1 auto;
  min-height: 120px;
  overflow-y: auto;
  padding-right: 0.12rem;
}

.kanban-empty {
  border: 1px dashed var(--ats-border-strong);
  border-radius: 10px;
  padding: 0.7rem;
  text-align: center;
  color: var(--ats-muted-soft);
  font-size: 0.78rem;
  font-weight: 700;
  min-height: 88px;
  flex: 1 1 auto;
  display: grid;
  place-items: center;
}

.kanban-card {
  position: relative;
  border: 1px solid var(--ats-border);
  border-radius: 12px;
  background: var(--ats-panel);
  padding: 0.68rem;
  box-shadow: 0 2px 8px var(--ats-shadow-soft);
  cursor: grab;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.kanban-card:hover {
  border-color: var(--ats-primary);
}

.kanban-card.is-dragging {
  opacity: 0.82;
  transform: rotate(2deg) scale(1.02);
  cursor: grabbing;
  box-shadow: 0 12px 24px var(--ats-shadow-strong);
}

.kanban-card.is-saving {
  opacity: 0.65;
  pointer-events: none;
}

.kanban-card.is-stuck {
  border-color: rgba(239, 68, 68, 0.45);
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.12), 0 10px 18px rgba(239, 68, 68, 0.08);
}

.kanban-card__user {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.kanban-card__avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--ats-panel-soft);
  border: 1px solid var(--ats-border);
  color: var(--ats-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  overflow: hidden;
  flex-shrink: 0;
}

.kanban-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kanban-card__identity {
  min-width: 0;
  flex: 1;
}

.kanban-card__name {
  margin: 0;
  color: var(--ats-text);
  font-size: 0.83rem;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.kanban-card__role {
  margin: 0.14rem 0 0;
  color: var(--ats-muted);
  font-size: 0.7rem;
}

.kanban-card__status-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--ats-success);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.14);
}

.kanban-card__status-dot.is-alert {
  background: var(--ats-danger);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.14);
}

.kanban-card__meta {
  margin: 0.56rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem;
}

.kanban-score-pill,
.kanban-date-pill,
.kanban-activity-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 999px;
  padding: 0.16rem 0.44rem;
  font-size: 0.68rem;
  font-weight: 700;
}

.kanban-score-pill.is-high {
  background: rgba(16, 185, 129, 0.12);
  color: #0f766e;
}

.kanban-score-pill.is-mid {
  background: rgba(245, 158, 11, 0.14);
  color: #b45309;
}

.kanban-score-pill.is-low {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}

.kanban-date-pill {
  background: #edf2f7;
  color: var(--ats-muted);
}

.kanban-activity-pill {
  background: var(--ats-primary-soft);
  color: var(--ats-primary-strong);
}

.kanban-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 0.52rem;
}

.kanban-card__tags span {
  border-radius: 999px;
  padding: 0.14rem 0.42rem;
  background: #f3f4f8;
  border: 1px solid var(--ats-border);
  color: #475569;
  font-size: 0.66rem;
  font-weight: 600;
}

.kanban-card__quick-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}

.kanban-card__stage-select {
  border: 1px solid var(--ats-border);
  border-radius: 8px;
  background: #fff;
  color: var(--ats-text);
  font-size: 0.63rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.16rem;
  padding: 0.2rem 0.26rem;
  cursor: pointer;
}

.kanban-card__quick-actions button {
  border: 1px solid var(--ats-border);
  border-radius: 8px;
  background: #fff;
  color: var(--ats-text);
  font-size: 0.63rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.16rem;
  padding: 0.2rem 0.26rem;
}

.kanban-card__actions {
  display: flex;
}

.kanban-card__actions .recruiter-btn {
  width: 100%;
  justify-content: center;
  min-height: 2rem;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 700;
}

.recruiting-os__candidate,
.recruiting-os__insights {
  padding: 0.8rem;
  display: grid;
  align-content: start;
  gap: 0.6rem;
}

.recruiting-os__candidate {
  min-height: 640px;
}

.recruiting-os__insights {
  margin-top: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.recruiting-os__candidate[hidden] {
  display: none;
}

.recruiting-os__candidate-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.recruiting-os__candidate-close {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--ats-border);
  border-radius: 999px;
  background: #fff;
  color: var(--ats-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.kanban-transition-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.kanban-transition-modal[hidden] {
  display: none;
}

.kanban-transition-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(2px);
}

.kanban-transition-modal__dialog {
  position: relative;
  width: min(880px, 100%);
  max-height: min(92vh, 900px);
  overflow-y: auto;
  border: 1px solid var(--ats-border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 20px 56px rgba(15, 23, 42, 0.24);
  padding: 1rem;
}

.kanban-transition-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.kanban-transition-modal__eyebrow {
  margin: 0;
  color: var(--ats-muted);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.kanban-transition-modal__head h2 {
  margin: 0.18rem 0 0;
  color: var(--ats-text);
  font-size: 1.12rem;
}

.kanban-transition-modal__close {
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--ats-border);
  border-radius: 999px;
  background: #fff;
  color: var(--ats-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.kanban-transition-modal__form {
  display: grid;
  gap: 0.75rem;
}

.kanban-transition-modal__context {
  margin: 0;
  color: var(--ats-text);
  font-weight: 600;
}

.kanban-transition-modal__field {
  display: grid;
  gap: 0.35rem;
}

.kanban-transition-modal__field[hidden] {
  display: none;
}

.kanban-transition-modal__field label {
  color: var(--ats-muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.kanban-transition-modal__field span {
  color: var(--ats-muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.kanban-transition-modal__field input,
.kanban-transition-modal__field textarea,
.kanban-transition-modal__field select {
  border: 1px solid var(--ats-border);
  border-radius: 10px;
  background: #fff;
  color: var(--ats-text);
  font: inherit;
  padding: 0.55rem 0.65rem;
}

.kanban-transition-modal__error {
  margin: 0;
  color: var(--ats-danger);
  font-size: 0.8rem;
  font-weight: 700;
}

.kanban-transition-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.kanban-transition-modal__assessment {
  border: 1px solid color-mix(in srgb, var(--ats-border) 82%, #cbd5e1 18%);
  border-radius: 14px;
  padding: 0.9rem;
  background: linear-gradient(180deg, #fafbff 0%, #f6f8fc 100%);
  display: grid;
  gap: 0.7rem;
}

.kanban-transition-modal__assessment[hidden] {
  display: none;
}

.kanban-transition-modal__assessment-head {
  display: grid;
  gap: 0.28rem;
}

.kanban-transition-modal__assessment h3 {
  margin: 0;
  color: var(--ats-text);
  font-size: 1rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.kanban-transition-modal__assessment p {
  margin: 0;
  color: var(--ats-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.kanban-transition-modal__assessment-grid {
  display: grid;
  gap: 0.62rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kanban-transition-modal__assessment-row {
  display: flex;
  gap: 0.62rem;
}

.kanban-transition-modal__field--test {
  grid-column: span 1;
}

.kanban-transition-modal__field--attempts {
  width: min(220px, 100%);
}

.kanban-transition-modal__assessment .kanban-transition-modal__field {
  gap: 0.3rem;
}

.kanban-transition-modal__assessment .kanban-transition-modal__field span {
  font-size: 0.79rem;
  letter-spacing: 0.01em;
}

.kanban-transition-modal__assessment .kanban-transition-modal__field input,
.kanban-transition-modal__assessment .kanban-transition-modal__field select {
  min-height: 42px;
  border-radius: 11px;
  background: #fff;
  border-color: color-mix(in srgb, var(--ats-border) 84%, #cbd5e1 16%);
  padding: 0.52rem 0.68rem;
}

.kanban-transition-modal__assessment-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.58rem;
}

.kanban-transition-modal__assessment-actions .recruiter-btn {
  min-height: 40px;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
}

.kanban-transition-modal__assessment-status {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ats-text);
}

.kanban-transition-modal__assessment-status.is-error {
  color: var(--ats-danger);
}

@media (max-width: 900px) {
  .kanban-transition-modal__assessment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .kanban-transition-modal__assessment-actions {
    flex-wrap: wrap;
  }
}
@media (max-width: 640px) {
  .kanban-transition-modal__assessment-grid {
    grid-template-columns: 1fr;
  }
  .kanban-transition-modal__field--attempts {
    width: 100%;
  }
}
.kanban-transition-modal__hired {
  border: 1px solid var(--ats-border);
  border-radius: 12px;
  padding: 0.75rem;
  background: color-mix(in srgb, var(--ats-primary-soft) 38%, #fff);
  display: grid;
  gap: 0.6rem;
}

.kanban-transition-modal__hired[hidden] {
  display: none;
}

.kanban-transition-modal__hired h3 {
  margin: 0;
  color: var(--ats-text);
  font-size: 0.95rem;
}

.kanban-transition-modal__hired p {
  margin: 0;
  color: var(--ats-muted);
  font-size: 0.82rem;
}

.kanban-transition-modal__interview {
  border: 1px solid var(--ats-border);
  border-radius: 12px;
  padding: 0.75rem;
  background: #fff;
  display: grid;
  gap: 0.6rem;
}

.kanban-transition-modal__interview[hidden] {
  display: none;
}

.kanban-transition-modal__interview h3 {
  margin: 0;
  color: var(--ats-text);
  font-size: 0.95rem;
}

.kanban-transition-modal__interview p {
  margin: 0;
  color: var(--ats-muted);
  font-size: 0.82rem;
}

.kanban-transition-modal__interview-type {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.kanban-transition-modal__interview-type-option {
  position: relative;
}

.kanban-transition-modal__interview-type-option input {
  position: absolute;
  opacity: 0;
  inset: 0;
}

.kanban-transition-modal__interview-type-option span {
  border: 1px solid var(--ats-border);
  border-radius: 10px;
  padding: 0.5rem 0.6rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 0.35rem;
  color: var(--ats-text);
  font-weight: 600;
  font-size: 0.82rem;
  background: #fff;
  cursor: pointer;
}

.kanban-transition-modal__interview-type-option input:checked + span {
  border-color: var(--ats-accent);
  color: var(--ats-accent);
  background: color-mix(in srgb, var(--ats-accent) 9%, #fff);
}

.kanban-transition-modal__interview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.55rem;
}

.recruiting-os__candidate-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: var(--ats-panel-soft);
  border: 1px solid var(--ats-border);
  color: var(--ats-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-weight: 700;
}

.recruiting-os__candidate-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruiting-os__candidate-head h2 {
  margin: 0;
  color: var(--ats-text);
  font-size: 1rem;
}

.recruiting-os__candidate-head p,
.recruiting-os__candidate-location {
  margin: 0.2rem 0 0;
  color: var(--ats-muted);
  font-size: 0.8rem;
}

.recruiting-os__candidate-badges {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.recruiting-os__candidate-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.24rem;
  border-radius: 999px;
  border: 1px solid var(--ats-border);
  background: var(--ats-panel-soft);
  color: var(--ats-text);
  padding: 0.22rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
}

.recruiting-os__candidate-actions,
.recruiting-os__tabs {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.recruiting-os__candidate-actions select {
  border: 1px solid var(--ats-border);
  border-radius: 999px;
  background: var(--ats-panel);
  color: var(--ats-text);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.26rem 0.54rem;
  min-height: 2rem;
}

.recruiting-os__candidate-actions button,
.recruiting-os__tabs button {
  border: 1px solid var(--ats-border);
  border-radius: 999px;
  background: var(--ats-panel);
  color: var(--ats-text);
  font-size: 0.72rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  padding: 0.26rem 0.54rem;
}

.recruiting-os__tabs button.is-active {
  color: #fff;
  border-color: transparent;
  background: var(--ats-gradient);
}

.recruiting-os__timeline {
  display: grid;
  gap: 0.45rem;
}

.recruiting-os__timeline article {
  display: grid;
  grid-template-columns: 1.55rem minmax(0, 1fr);
  gap: 0.45rem;
  align-items: start;
  border: 1px solid var(--ats-border);
  border-radius: 10px;
  background: var(--ats-panel-soft);
  padding: 0.48rem;
}

.recruiting-os__timeline article > span {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background: var(--ats-primary-soft);
  color: var(--ats-primary-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.recruiting-os__timeline strong {
  display: block;
  color: var(--ats-text);
  font-size: 0.78rem;
}

.recruiting-os__timeline small {
  color: var(--ats-muted);
  font-size: 0.7rem;
}

.recruiting-os__ai-box,
.recruiting-os__insight-card {
  border: 1px solid var(--ats-border);
  border-radius: 12px;
  background: white;
  padding: 0.62rem;
}

.recruiting-os__ai-box h3,
.recruiting-os__insight-card h3 {
  margin: 0 0 0.46rem;
  color: var(--ats-text);
  font-size: 0.82rem;
}

.recruiting-os__ai-box p {
  margin: 0 0 0.34rem;
  color: var(--ats-muted);
  font-size: 0.74rem;
  line-height: 1.5;
}

.recruiting-os__ai-box input,
.recruiting-os__ai-box textarea {
  width: 100%;
  border: 1px solid var(--ats-border);
  border-radius: 8px;
  background: #fff;
  color: var(--ats-text);
  font: inherit;
  padding: 0.45rem 0.55rem;
}

.recruiting-os__ai-box input:focus,
.recruiting-os__ai-box textarea:focus {
  outline: 2px solid var(--ats-focus-ring);
  outline-offset: 0;
}

.recruiting-os__ai-box textarea {
  resize: vertical;
}

.recruiting-os__ai-box a {
  display: inline-flex;
  align-items: center;
  gap: 0.24rem;
  color: var(--ats-primary-strong);
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: none;
}

.recruiting-os__insight-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.34rem;
}

.recruiting-os__insight-card li {
  display: flex;
  justify-content: space-between;
  gap: 0.4rem;
  color: var(--ats-muted);
  font-size: 0.74rem;
}

.recruiting-os__insight-card strong {
  color: var(--ats-text);
  font-size: 0.8rem;
}

.recruiting-os__insight-card.is-alert {
  border-color: rgba(239, 68, 68, 0.32);
  background: rgba(239, 68, 68, 0.08);
}

.recruiting-os__insight-card.is-alert p {
  margin: 0 0 0.35rem;
  color: #7f1d1d;
  font-size: 0.73rem;
  line-height: 1.45;
}

@media (max-width: 1440px) {
  .recruiting-os__workspace {
    grid-template-columns: minmax(0, 1fr);
  }
  .recruiting-os__candidate,
  .recruiting-os__insights {
    min-height: auto;
  }
  .recruiting-os__insights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 1080px) {
  .recruiting-os__controls {
    grid-template-columns: 1fr;
  }
  .recruiting-os__metrics {
    justify-self: start;
  }
}
@media (max-width: 820px) {
  .kanban-transition-modal__interview-type {
    grid-template-columns: 1fr;
  }
  .recruiting-os__insights {
    grid-template-columns: 1fr;
  }
  .kanban-col {
    flex-basis: 235px;
  }
}
@media (max-width: 820px) {
  .kanban-transition-modal__interview-type {
    grid-template-columns: 1fr;
  }
  .recruiting-os__insights {
    grid-template-columns: 1fr;
  }
  .kanban-col {
    flex-basis: 235px;
  }
}
.test-create-toggles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}
@media (max-width: 860px) {
  .test-create-toggles {
    grid-template-columns: 1fr;
  }
}

.test-create-toggle {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.85rem 0.9rem;
  border: 1.5px solid #ede8f5;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.test-create-toggle:hover {
  border-color: #d8ccef;
  background: #fdfcff;
}
.test-create-toggle input[type=checkbox] {
  margin-top: 0.14rem;
  width: 17px;
  height: 17px;
  accent-color: #fe3c72;
  cursor: pointer;
}

.test-create-toggle__body {
  display: grid;
  gap: 0.18rem;
}

.test-create-toggle__title {
  color: #170017;
  font-size: 0.84rem;
  line-height: 1.35;
  font-weight: 700;
}

.test-create-toggle__desc {
  color: #aaa;
  font-size: 0.76rem;
  line-height: 1.45;
}

.test-create-rome {
  border-style: dashed;
  border-color: #ece7f4;
  border-radius: 14px;
  background: #fff;
  padding: 0.95rem;
}

.test-create-rome .rome-search {
  border: 1px dashed #ece7f4;
  border-radius: 14px;
  background: #fbf9ff;
  padding: 0.55rem;
  width: 100%;
  max-width: 980px;
  overflow: visible;
}

.test-create-rome .chosen-container {
  width: 100% !important;
}

.test-create-rome .chosen-container-single .chosen-single {
  min-height: 52px;
  border: 1.5px solid #7b2cf0;
  border-radius: 12px;
  background: #f2f0f7;
  box-shadow: none;
  display: flex;
  align-items: center;
  padding: 0 36px 0 12px;
  color: #6f7685;
  font-size: 0.9rem;
}

.test-create-rome .chosen-container-single .chosen-single span {
  color: #6f7685;
}

.test-create-rome .chosen-container-single .chosen-single div b {
  background: none !important;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #8d8d95 transparent transparent transparent;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -5px;
  margin-top: -2px;
}

.test-create-rome .chosen-container-active.chosen-with-drop .chosen-single,
.test-create-rome .chosen-container-active .chosen-single {
  border-color: #6b00c9;
  box-shadow: 0 0 0 2px rgba(107, 0, 201, 0.08);
}

.test-create-rome .chosen-container .chosen-drop {
  border: 1px solid #e9e2f5;
  border-radius: 12px;
  overflow: hidden;
  z-index: 1301;
}

.test-create-rome .chosen-container .chosen-search {
  background: #f7f4fd;
  padding: 8px;
}

.test-create-rome .chosen-container .chosen-search input[type=text] {
  border: 1px solid #e9e2f5 !important;
  border-radius: 8px;
  padding: 0.45rem 0.6rem !important;
  background: #fff !important;
}

.test-create-rome .chosen-container-multi .chosen-choices {
  border: 1px solid #ede8f5;
  border-radius: 10px;
  background: #f8f6fc;
  min-height: 44px;
}

.test-create-rome .chosen-container-active .chosen-choices {
  border-color: #6b00c9;
  box-shadow: 0 0 0 3px rgba(107, 0, 201, 0.08);
}

.recruiter-form-card--rome {
  overflow: visible;
}

.recruiter-form-card--rome .recruiter-form-card__body,
.recruiter-form-card--rome .rome-box,
.recruiter-form-card--rome .test-create-rome,
.recruiter-form-card--rome .rome-search,
.recruiter-form-card--rome .chosen-container {
  overflow: visible !important;
}

.recruiter-form-card--rome .chosen-container {
  position: relative;
  z-index: 10000 !important;
}

.recruiter-form-card--rome .chosen-container.chosen-with-drop {
  z-index: 10001 !important;
}

.recruiter-form-card--rome .chosen-container .chosen-drop {
  z-index: 10002 !important;
}

.test-create-actions {
  padding-top: 0.2rem;
}

.test-questions-page {
  display: grid;
  gap: 1rem;
}

.test-questions-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.95fr);
  gap: 1rem;
  align-items: stretch;
  padding: 1.35rem;
  border-radius: 18px;
  border: 1px solid #ede8f5;
  background: radial-gradient(circle at top right, rgba(254, 60, 114, 0.1), transparent 28%), radial-gradient(circle at bottom left, rgba(107, 0, 201, 0.12), transparent 24%), #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.test-questions-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
  color: #6b00c9;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.test-questions-hero__title {
  margin: 0;
  color: #170017;
  font-size: 1.65rem;
  line-height: 1.15;
  font-weight: 900;
}

.test-questions-hero__copy {
  margin: 0.8rem 0 0;
  max-width: 60ch;
  color: #6b6476;
  line-height: 1.65;
  font-size: 0.95rem;
}

.test-questions-hero__badges {
  margin-top: 1rem;
}

.test-questions-hero__summary {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.test-questions-metric {
  border: 1px solid #ede8f5;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #faf7ff);
  padding: 0.9rem 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.test-questions-metric small {
  display: block;
  color: #8d8396;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.test-questions-metric strong {
  display: block;
  margin-top: 0.18rem;
  color: #170017;
  font-size: 1.15rem;
  line-height: 1.2;
  font-weight: 800;
}

.test-questions-metric span {
  display: block;
  margin-top: 0.22rem;
  color: #7a7282;
  font-size: 0.83rem;
  line-height: 1.45;
}

.test-questions-section {
  display: grid;
  gap: 1rem;
}

.test-questions-builder .recruiter-form-card__body,
.test-questions-existing-card .recruiter-form-card__body,
.test-questions-invitations-card .recruiter-form-card__body {
  gap: 1rem;
}

.test-questions-form {
  gap: 1rem;
}

.test-question {
  position: relative;
  border: 1px solid #ede8f5;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(240, 235, 251, 0.42), rgba(255, 255, 255, 0.96) 26%), #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
  padding: 1.05rem;
  gap: 1rem;
}

.test-question__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #f2edf8;
}

.test-question__head-main {
  display: grid;
  gap: 0.18rem;
}

.test-question__title {
  margin: 0;
  color: #170017;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.test-question__meta {
  margin: 0;
  color: #8d8396;
  font-size: 0.82rem;
  line-height: 1.45;
}

.test-question__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  justify-content: flex-end;
}

.test-question__action {
  min-width: 2.15rem;
  min-height: 2.15rem;
  padding: 0.45rem 0.62rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.test-question__action:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.test-question__action--label {
  padding-inline: 0.7rem;
}

.test-question__settings-row {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(5.5rem, 0.65fr) minmax(0, 1fr);
  gap: 0.85rem;
  align-items: end;
}

.test-question__settings-row .recruiter-field {
  margin-bottom: 0;
}

.test-question__settings-row .recruiter-field label {
  white-space: nowrap;
}

.test-question__setting--points input {
  text-align: center;
}

.test-question__section {
  border: 1px solid #efeaf7;
  border-radius: 14px;
  background: #fcfbfe;
  padding: 0.9rem;
  display: grid;
  gap: 0.7rem;
}

.test-question__section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.test-question__section-head strong {
  color: #170017;
  font-size: 0.9rem;
  font-weight: 800;
}

.test-question__helper {
  margin: 0;
  color: #8c8497;
  font-size: 0.82rem;
  line-height: 1.4;
}

.test-question__block {
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 0.55rem;
}

.test-question__block-head {
  display: grid;
  grid-template-columns: auto minmax(0, 220px) auto;
  align-items: center;
  gap: 0.5rem;
}

.test-question__block-type,
.test-question__answer-single select,
.test-question__answer-single input,
.test-question__block textarea,
.test-question__answer-row input[type=text] {
  width: 100%;
  border: 1.5px solid #ede8f5;
  border-radius: 10px;
  background: #fff;
  color: #170017;
  padding: 0.62rem 0.72rem;
  font: inherit;
}

.test-question__block-type:focus,
.test-question__answer-single select:focus,
.test-question__answer-single input:focus,
.test-question__block textarea:focus,
.test-question__answer-row input[type=text]:focus,
.test-question__file:focus {
  outline: none;
  border-color: #6b00c9;
  box-shadow: 0 0 0 3px rgba(107, 0, 201, 0.08);
}

.test-question__block textarea {
  min-height: 94px;
  resize: vertical;
}

.test-question__answer-single {
  display: grid;
  gap: 0.45rem;
  max-width: 320px;
}

.test-question__likert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.55rem;
}

.test-question__answer-row {
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 0.45rem;
}

.test-question__answer-correct {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  color: #6c6476;
  font-size: 0.85rem;
  font-weight: 600;
}

.test-question__answer-correct--offset {
  margin-top: 0.45rem;
}

.test-question.is-collapsed .test-question__section {
  display: none;
}

.test-question.is-collapsed .test-question__head {
  padding-bottom: 0;
  border-bottom: 0;
}

.test-question__file {
  width: 100%;
  border: 1.5px solid #ede8f5;
  border-radius: 10px;
  background: #fff;
  color: #170017;
  padding: 0.58rem 0.68rem;
  font: inherit;
}

.test-invite-form {
  border: 1px solid #ede8f5;
  border-radius: 14px;
  padding: 1rem;
  background: linear-gradient(180deg, #fff, #faf7ff);
}

.test-invite-actions {
  margin: 0 0 0.15rem;
  display: flex;
  justify-content: flex-start;
}

.test-invite-modal {
  border: none;
  padding: 0;
  width: min(94vw, 760px);
  background: transparent;
}

.test-invite-modal::backdrop {
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(1px);
}

.test-invite-modal__panel {
  border: 1px solid #ede8f5;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.2);
  padding: 1rem;
  display: grid;
  gap: 0.9rem;
}

.test-invite-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid #f1ecf8;
}

.test-invite-modal__head h3 {
  margin: 0;
  color: #170017;
  font-size: 1rem;
  font-weight: 800;
}

.test-invite-modal__head p {
  margin: 0.2rem 0 0;
  color: #8d8396;
  font-size: 0.85rem;
}

.test-invite-modal__close {
  border: 1px solid #ede8f5;
  background: #faf7ff;
  color: #170017;
  border-radius: 10px;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.test-invite-table-wrap {
  border: 1px solid #ede8f5;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #faf7ff);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
  overflow-x: auto;
}

.test-invite-table {
  width: 100%;
  min-width: 980px;
  border-collapse: separate;
  border-spacing: 0;
}

.test-invite-table thead th {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid #ede8f5;
  background: rgba(250, 247, 255, 0.92);
  color: #746c80;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 1;
}

.test-invite-table tbody td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid #f1ecf8;
  vertical-align: top;
  color: #170017;
  font-size: 0.84rem;
  line-height: 1.45;
  background: transparent;
}

.test-invite-table tbody tr:last-child td {
  border-bottom: 0;
}

.test-invite-table__row td {
  background: rgba(255, 255, 255, 0.9);
}

.test-invite-table__detail-row td {
  padding-top: 0;
  background: rgba(250, 247, 255, 0.72);
}

.test-invite-table__candidate {
  display: grid;
  gap: 0.22rem;
  min-width: 180px;
}

.test-invite-table__candidate strong {
  color: #170017;
  font-size: 0.95rem;
  font-weight: 800;
}

.test-invite-table__candidate span,
.test-invite-table__candidate small {
  color: #7b7384;
}

.test-invite-table__status {
  min-width: 132px;
}

.test-invite-status {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  border-radius: 999px;
  padding: 0.24rem 0.62rem;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.73rem;
  text-transform: capitalize;
}

.recruiter-badge.test-invite-status--pending {
  background: #fef3c7;
  border-color: #fde68a;
  color: #92400e;
}

.recruiter-badge.test-invite-status--progress {
  background: #dbeafe;
  border-color: #bfdbfe;
  color: #1d4ed8;
}

.recruiter-badge.test-invite-status--success {
  background: #dcfce7;
  border-color: #bbf7d0;
  color: #166534;
}

.recruiter-badge.test-invite-status--danger {
  background: #fee2e2;
  border-color: #fecaca;
  color: #991b1b;
}

.recruiter-badge.test-invite-status--neutral {
  background: #f1f5f9;
  border-color: #e2e8f0;
  color: #475569;
}

.test-invite-table__attempts {
  min-width: 120px;
}

.test-invite-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid #ede8f5;
  border-radius: 999px;
  background: #fff;
  color: #170017;
  padding: 0.28rem 0.64rem;
  font-size: 0.79rem;
  line-height: 1.25;
}

.test-invite-pill strong {
  color: #8d8396;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.test-invite-pill span {
  color: #170017;
  font-weight: 600;
}

.test-invite-pill--subtle {
  background: #faf7ff;
}

.test-invite-table__expires,
.test-invite-table__submitted {
  min-width: 150px;
  color: #5f576a;
  white-space: nowrap;
}

.test-invite-table__scores {
  display: grid;
  gap: 0.42rem;
  min-width: 200px;
}

.test-invite-score-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
}

.test-invite-score-line small {
  color: #8d8396;
  font-size: 0.75rem;
}

.test-invite-score-line strong {
  color: #170017;
  font-size: 0.84rem;
  font-weight: 800;
  text-align: right;
}

.test-invite-table__actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.45rem;
  align-items: center;
  min-width: 84px;
}

.test-invite-table__details {
  display: grid;
  gap: 0.8rem;
  padding: 0.1rem 0 0.95rem;
}

.test-invite-details-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.test-invite-table__empty {
  color: #8d8396;
  font-size: 0.8rem;
}

.test-invite-action-btn {
  width: 2.2rem;
  min-width: 2.2rem;
  height: 2.2rem;
  padding: 0;
  justify-content: center;
}

.test-invite-action-btn.is-copied {
  border-color: #bbf7d0;
  background: #dcfce7;
  color: #166534;
}

.test-invite-attempts {
  border: 1px solid #efeaf7;
  border-radius: 12px;
  background: #fff;
  padding: 0.72rem 0.75rem;
}

.test-invite-attempts ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.28rem;
  color: #7b7384;
  font-size: 0.82rem;
}

.test-invite-profile {
  border: 1px solid #efeaf7;
  border-radius: 12px;
  background: #fff;
  padding: 0.75rem;
  display: grid;
  gap: 0.6rem;
}

.test-invite-profile__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.test-invite-profile__head strong {
  color: #170017;
}

.test-invite-profile__head span {
  color: #8d8396;
  font-size: 0.82rem;
  font-weight: 600;
}

.test-invite-profile-grid {
  display: grid;
  gap: 0.45rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.test-invite-profile-dimension {
  border: 1px solid #efeaf7;
  border-radius: 10px;
  background: #faf7ff;
  padding: 0.55rem 0.6rem;
}

.test-invite-profile-dimension small {
  display: block;
  color: #8d8396;
  font-size: 0.75rem;
}

.test-invite-profile-dimension strong {
  display: block;
  margin-top: 0.15rem;
  color: #170017;
  font-size: 0.98rem;
}

.test-questions-existing {
  display: grid;
  gap: 0.85rem;
}

.test-questions-existing__item {
  border: 1px solid #ede8f5;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #faf7ff);
  padding: 1rem;
  display: grid;
  gap: 0.75rem;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.test-questions-existing__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.test-questions-existing__title {
  margin: 0;
  color: #170017;
  font-size: 1.7rem;
  line-height: 1.4;
  font-weight: 800;
}

.test-questions-existing__meta {
  margin: 0;
  color: #8d8396;
  font-size: 0.84rem;
  line-height: 1.5;
}

.test-questions-existing__actions {
  margin-top: 0.15rem;
}

@media (max-width: 720px) {
  .test-questions-hero {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  .test-invite-table thead th,
  .test-invite-table tbody td {
    padding-inline: 0.75rem;
  }
  .test-question__settings-row {
    grid-template-columns: 1fr;
  }
  .test-question__block-head {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }
  .test-question__answer-row {
    grid-template-columns: auto minmax(0, 1fr) auto;
    row-gap: 0.5rem;
  }
  .test-question__answer-correct {
    grid-column: 1/-1;
    justify-content: flex-start;
    padding-left: 2.35rem;
  }
}
.recruiter-interviews-page .dashboard-page {
  width: 100%;
  max-width: none !important;
  margin: 0 !important;
  padding-inline: 0 !important;
}
.recruiter-interviews-page [hidden] {
  display: none !important;
}
.recruiter-interviews-page .recruiter-interviews-page__header {
  margin-bottom: 0;
}
.recruiter-interviews-page .recruiter-interviews-page__header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.recruiter-interviews-page .recruiter-interviews-page__back {
  white-space: nowrap;
}
.recruiter-interviews-page .recruiter-interviews-page__panel {
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--ats-border);
  border-radius: 14px;
  background: radial-gradient(circle at top right, rgba(254, 60, 114, 0.06), transparent 24%), radial-gradient(circle at left bottom, rgba(107, 0, 201, 0.05), transparent 20%), #fcfbfe;
  box-shadow: 0 8px 48px rgba(107, 0, 201, 0.09);
}
.recruiter-interviews-page .recruiter-interviews-page__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.recruiter-interviews-page .recruiter-interviews-page__stat-card {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--ats-border);
  border-radius: 14px;
  background: #fff;
}
.recruiter-interviews-page .recruiter-interviews-page__stat-label {
  color: var(--ats-muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.recruiter-interviews-page .recruiter-interviews-page__stat-card strong {
  color: var(--ats-text);
  font-family: "Nunito", sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}
.recruiter-interviews-page .recruiter-interviews-page__stat-card small {
  color: var(--ats-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}
.recruiter-interviews-page .recruiter-interviews-page__toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
}
.recruiter-interviews-page .recruiter-interviews-page__search {
  flex: 1 1 auto;
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.2rem 0.85rem;
  border: 1px solid var(--ats-border);
  border-radius: 10px;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.recruiter-interviews-page .recruiter-interviews-page__search:focus-within {
  border-color: var(--ats-focus);
  box-shadow: 0 0 0 3px var(--ats-focus-ring);
}
.recruiter-interviews-page .recruiter-interviews-page__search svg,
.recruiter-interviews-page .recruiter-interviews-page__search img {
  width: 16px;
  height: 16px;
  color: var(--ats-muted-soft);
  flex: 0 0 auto;
}
.recruiter-interviews-page .recruiter-interviews-page__search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ats-text);
  font: inherit;
}
.recruiter-interviews-page .recruiter-interviews-page__search input::placeholder {
  color: var(--ats-muted-soft);
}
.recruiter-interviews-page .recruiter-interviews-page__toolbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.recruiter-interviews-page .recruiter-interviews-page__toolbar-btn {
  white-space: nowrap;
}
.recruiter-interviews-page .recruiter-interviews-page__view-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--ats-border);
  border-radius: 10px;
  background: #fff;
}
.recruiter-interviews-page .recruiter-interviews-page__view-switch button {
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ats-muted);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.recruiter-interviews-page .recruiter-interviews-page__view-switch button.is-active {
  background: #f0ebfb;
  color: var(--ats-primary);
}
.recruiter-interviews-page .recruiter-interviews-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.recruiter-interviews-page .recruiter-interviews-page__main {
  display: grid;
  gap: 18px;
  min-width: 0;
}
.recruiter-interviews-page .recruiter-interviews-page__queue,
.recruiter-interviews-page .recruiter-interviews-page__calendar-wrap,
.recruiter-interviews-page .recruiter-interviews-page__details {
  border: 1px solid var(--ats-border);
  /* border-radius: 14px; */
  background: #fff;
  box-shadow: 0 8px 24px rgba(23, 0, 23, 0.04);
}
.recruiter-interviews-page .recruiter-interviews-page__queue,
.recruiter-interviews-page .recruiter-interviews-page__calendar-wrap,
.recruiter-interviews-page .recruiter-interviews-page__details {
  padding: 16px;
}
.recruiter-interviews-page .recruiter-interviews-page__section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}
.recruiter-interviews-page .recruiter-interviews-page__section-head h2,
.recruiter-interviews-page .recruiter-interviews-page__details h2 {
  margin: 0;
  color: var(--ats-text);
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  font-weight: 800;
}
.recruiter-interviews-page .recruiter-interviews-page__section-head p {
  margin: 4px 0 0;
  color: var(--ats-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}
.recruiter-interviews-page .recruiter-interviews-page__section-head--calendar {
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ats-nav-line);
}
.recruiter-interviews-page .recruiter-interviews-page__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.recruiter-interviews-page .recruiter-interviews-page__filters select,
.recruiter-interviews-page .recruiter-interviews-page__filters button {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--ats-border);
  border-radius: 10px;
  background: #fff;
  color: var(--ats-text);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
}
.recruiter-interviews-page .recruiter-interviews-page__filters select {
  min-width: 140px;
  cursor: pointer;
}
.recruiter-interviews-page .recruiter-interviews-page__filters button {
  cursor: pointer;
}
.recruiter-interviews-page .recruiter-interviews-page__feedback {
  margin-bottom: 12px;
  padding: 12px 14px;
  border: 1px solid var(--ats-border);
  border-radius: 10px;
  background: var(--ats-panel-soft);
  color: var(--ats-text);
  font-size: 0.84rem;
  font-weight: 600;
}
.recruiter-interviews-page .recruiter-interviews-page__feedback.is-error {
  border-color: rgba(239, 68, 68, 0.25);
  background: rgba(239, 68, 68, 0.08);
  color: #b91c1c;
}
.recruiter-interviews-page .recruiter-interviews-page__table-wrap {
  border: 1px solid var(--ats-border);
  border-radius: 12px;
  background: #fff;
  overflow-x: auto;
  transition: all 0.3s ease;
}
.recruiter-interviews-page .recruiter-interviews-page__table {
  width: 100%;
  border-collapse: collapse;
}
.recruiter-interviews-page .recruiter-interviews-page__table thead {
  background: #f8f6fc;
}
.recruiter-interviews-page .recruiter-interviews-page__table th {
  padding: 14px 16px;
  text-align: left;
  color: var(--ats-muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  border-bottom: 1px solid var(--ats-border);
}
.recruiter-interviews-page .recruiter-interviews-page__table td {
  padding: 14px 16px;
  color: var(--ats-text);
  font-size: 0.83rem;
  border-bottom: 1px solid #f3eef9;
  vertical-align: middle;
}
.recruiter-interviews-page .recruiter-interviews-page__table tbody tr:last-child td {
  border-bottom: 0;
}
.recruiter-interviews-page .recruiter-interviews-page__table-row {
  cursor: pointer;
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
}
.recruiter-interviews-page .recruiter-interviews-page__table-row:hover {
  background: #fcf9ff;
}
.recruiter-interviews-page .recruiter-interviews-page__table-row.is-selected {
  background: #f0ebfb;
  box-shadow: inset 0 0 0 1px #e2d7fb;
}
.recruiter-interviews-page .recruiter-interviews-page__table-wrap .dataTables_wrapper {
  padding: 10px 12px 12px;
}
.recruiter-interviews-page .recruiter-interviews-page__table-wrap .dt-container {
  padding: 10px 12px 12px;
}
.recruiter-interviews-page .recruiter-interviews-page__table-wrap .dataTables_length,
.recruiter-interviews-page .recruiter-interviews-page__table-wrap .dataTables_paginate {
  margin-top: 10px;
  color: var(--ats-muted);
  font-size: 0.78rem;
  font-weight: 700;
}
.recruiter-interviews-page .recruiter-interviews-page__table-wrap .dt-length,
.recruiter-interviews-page .recruiter-interviews-page__table-wrap .dt-paging {
  margin-top: 10px;
  color: var(--ats-muted);
  font-size: 0.78rem;
  font-weight: 700;
}
.recruiter-interviews-page .recruiter-interviews-page__table-wrap .dataTables_length label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.recruiter-interviews-page .recruiter-interviews-page__table-wrap .dt-length label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.recruiter-interviews-page .recruiter-interviews-page__table-wrap .dataTables_length select {
  min-height: 34px;
  border: 1px solid var(--ats-border);
  border-radius: 8px;
  background: #fff;
  color: var(--ats-text);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0 28px 0 10px;
}
.recruiter-interviews-page .recruiter-interviews-page__table-wrap .dt-length select {
  min-height: 34px;
  border: 1px solid var(--ats-border);
  border-radius: 8px;
  background: #fff;
  color: var(--ats-text);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0 28px 0 10px;
}
.recruiter-interviews-page .recruiter-interviews-page__table-wrap .dataTables_paginate {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.recruiter-interviews-page .recruiter-interviews-page__table-wrap .dt-paging {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.recruiter-interviews-page .recruiter-interviews-page__table-wrap .dataTables_paginate .paginate_button {
  min-width: 34px;
  min-height: 34px;
  border: 1px solid var(--ats-border) !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: var(--ats-text) !important;
  font-size: 0.76rem;
  font-weight: 800;
  box-shadow: none !important;
}
.recruiter-interviews-page .recruiter-interviews-page__table-wrap .dt-paging .dt-paging-button {
  min-width: 34px;
  min-height: 34px;
  border: 1px solid var(--ats-border) !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: var(--ats-text) !important;
  font-size: 0.76rem;
  font-weight: 800;
  box-shadow: none !important;
  margin: 0 !important;
}
.recruiter-interviews-page .recruiter-interviews-page__table-wrap .dataTables_paginate .paginate_button.current,
.recruiter-interviews-page .recruiter-interviews-page__table-wrap .dataTables_paginate .paginate_button.current:hover {
  background: #f0ebfb !important;
  border-color: #e2d7fb !important;
  color: var(--ats-primary) !important;
}
.recruiter-interviews-page .recruiter-interviews-page__table-wrap .dt-paging .dt-paging-button.current,
.recruiter-interviews-page .recruiter-interviews-page__table-wrap .dt-paging .dt-paging-button.current:hover {
  background: #f0ebfb !important;
  border-color: #e2d7fb !important;
  color: var(--ats-primary) !important;
}
.recruiter-interviews-page .recruiter-interviews-page__table-wrap .dataTables_paginate .paginate_button:hover {
  background: var(--ats-panel-soft) !important;
  border-color: var(--ats-border-strong) !important;
  color: var(--ats-text) !important;
}
.recruiter-interviews-page .recruiter-interviews-page__table-wrap .dt-paging .dt-paging-button:hover {
  background: var(--ats-panel-soft) !important;
  border-color: var(--ats-border-strong) !important;
  color: var(--ats-text) !important;
}
.recruiter-interviews-page .recruiter-interviews-page__table-pager {
  margin: 10px 12px 12px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.recruiter-interviews-page .recruiter-interviews-page__table-pager button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--ats-border);
  border-radius: 8px;
  background: #fff;
  color: var(--ats-text);
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
}
.recruiter-interviews-page .recruiter-interviews-page__table-pager button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.recruiter-interviews-page .recruiter-interviews-page__table-pager span {
  color: var(--ats-muted);
  font-size: 0.76rem;
  font-weight: 700;
  min-width: 90px;
  text-align: center;
}
.recruiter-interviews-page .recruiter-interviews-page__candidate-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}
.recruiter-interviews-page .recruiter-interviews-page__candidate-cell strong,
.recruiter-interviews-page .recruiter-interviews-page__candidate-cell > div > span {
  display: block;
}
.recruiter-interviews-page .recruiter-interviews-page__candidate-cell strong {
  color: var(--ats-text);
  font-size: 0.86rem;
  font-weight: 800;
}
.recruiter-interviews-page .recruiter-interviews-page__candidate-cell > div > span {
  margin-top: 2px;
  color: var(--ats-muted);
  font-size: 0.76rem;
}
.recruiter-interviews-page .recruiter-interviews-page__candidate-avatar,
.recruiter-interviews-page .recruiter-interviews-page__profile-avatar {
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #777;
  color: #fff;
  font-weight: 800;
}
.recruiter-interviews-page .recruiter-interviews-page__candidate-avatar img,
.recruiter-interviews-page .recruiter-interviews-page__profile-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  display: block;
}
.recruiter-interviews-page .recruiter-interviews-page__candidate-avatar {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  font-size: 0.76rem;
}
.recruiter-interviews-page .recruiter-interviews-page__pill,
.recruiter-interviews-page .recruiter-interviews-page__score-chip,
.recruiter-interviews-page .recruiter-interviews-page__profile-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}
.recruiter-interviews-page .recruiter-interviews-page__pill {
  padding: 0.26rem 0.6rem;
}
.recruiter-interviews-page .recruiter-interviews-page__pill.is-type {
  background: #f0ebfb;
  color: var(--ats-primary);
}
.recruiter-interviews-page .recruiter-interviews-page__pill.is-planned {
  background: #ececec;
  color: #6a6a6a;
}
.recruiter-interviews-page .recruiter-interviews-page__pill.is-confirmed {
  background: #dcfce7;
  color: #47b66f;
}
.recruiter-interviews-page .recruiter-interviews-page__pill.is-present {
  background: #dce6f9;
  color: #3b6af7;
}
.recruiter-interviews-page .recruiter-interviews-page__pill.is-absent {
  background: #fee2e2;
  color: #991b1b;
}
.recruiter-interviews-page .recruiter-interviews-page__pill.is-cancelled {
  background: #f4f2f8;
  color: #777;
}
.recruiter-interviews-page .recruiter-interviews-page__pill.is-rescheduled {
  background: #fef3c7;
  color: #92400e;
}
.recruiter-interviews-page .recruiter-interviews-page__pill.is-soon {
  background: #fee2e2;
  color: #b91c1c;
}
.recruiter-interviews-page .recruiter-interviews-page__schedule-cell {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.recruiter-interviews-page .recruiter-interviews-page__score-chip,
.recruiter-interviews-page .recruiter-interviews-page__profile-score {
  min-width: 36px;
  min-height: 30px;
  padding: 0.24rem 0.58rem;
  background: #dcfce7;
  color: #166534;
}
.recruiter-interviews-page .recruiter-interviews-page__table-empty,
.recruiter-interviews-page .recruiter-interviews-page__panel-empty,
.recruiter-interviews-page .recruiter-interviews-page__timeline-empty,
.recruiter-interviews-page .recruiter-interviews-page__notes {
  padding: 20px 18px;
  border: 1px dashed var(--ats-border-strong);
  border-radius: 12px;
  background: #fcfbfe;
  color: var(--ats-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.recruiter-interviews-page .recruiter-interviews-page__table-empty h3 {
  margin: 0;
  color: var(--ats-text);
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  font-weight: 800;
}
.recruiter-interviews-page .recruiter-interviews-page__table-empty p {
  margin: 6px 0 0;
}
.recruiter-interviews-page .recruiter-interviews-page__calendar-wrap {
  min-width: 0;
  min-height: 72vh;
  overflow: hidden;
}
.recruiter-interviews-page .recruiter-interviews-page__calendar {
  min-height: calc(72vh - 72px);
  min-width: 0;
}
.recruiter-interviews-page .recruiter-interviews-page__calendar .fc {
  --fc-border-color: #ede8f5;
  --fc-page-bg-color: transparent;
  --fc-today-bg-color: #fdf0fb;
  --fc-neutral-bg-color: #fcfbfe;
  --fc-list-event-hover-bg-color: #f8f6fc;
}
.recruiter-interviews-page .recruiter-interviews-page__calendar .fc .fc-toolbar {
  flex-wrap: wrap;
  gap: 10px;
}
.recruiter-interviews-page .recruiter-interviews-page__calendar .fc .fc-toolbar-title {
  color: var(--ats-text);
  font-family: "Nunito", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}
.recruiter-interviews-page .recruiter-interviews-page__calendar .fc .fc-button {
  border: 1px solid var(--ats-border);
  border-radius: 10px;
  background: #fff;
  color: var(--ats-text);
  font-weight: 700;
  box-shadow: none;
}
.recruiter-interviews-page .recruiter-interviews-page__calendar .fc .fc-button:hover,
.recruiter-interviews-page .recruiter-interviews-page__calendar .fc .fc-button:focus {
  background: var(--ats-panel-soft);
  border-color: var(--ats-border-strong);
  color: var(--ats-text);
  box-shadow: none;
}
.recruiter-interviews-page .recruiter-interviews-page__calendar .fc .fc-button-primary:not(:disabled).fc-button-active,
.recruiter-interviews-page .recruiter-interviews-page__calendar .fc .fc-button-primary:not(:disabled):active {
  background: var(--ats-primary);
  border-color: var(--ats-primary);
  color: #fff;
}
.recruiter-interviews-page .recruiter-interviews-page__calendar .fc .fc-col-header-cell-cushion,
.recruiter-interviews-page .recruiter-interviews-page__calendar .fc .fc-daygrid-day-number {
  color: var(--ats-text);
  font-weight: 700;
  text-decoration: none;
}
.recruiter-interviews-page .recruiter-interviews-page__calendar .fc .fc-event {
  border-width: 0;
  border-radius: 8px;
  padding: 0.14rem 0.32rem;
  font-size: 0.74rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(23, 0, 23, 0.12);
}
.recruiter-interviews-page .recruiter-interviews-page__details {
  position: fixed;
  top: 0;
  right: 0;
  width: 90vw;
  height: 100vh;
  overflow-y: auto;
  z-index: 1300;
  box-shadow: -18px 0 34px rgba(15, 23, 42, 0.18);
  transform: translateX(102%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.recruiter-interviews-page.is-drawer-open .recruiter-interviews-page__details {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.recruiter-interviews-page.is-drawer-open .recruiter-interviews-page__drawer-backdrop {
  opacity: 1;
  pointer-events: auto;
}
.recruiter-interviews-page.is-embed-fullscreen .recruiter-interviews-page__detail-columns {
  grid-template-columns: 1fr;
}
.recruiter-interviews-page.is-embed-fullscreen .recruiter-interviews-page__detail-right {
  display: none;
}
.recruiter-interviews-page.is-embed-fullscreen .recruiter-interviews-page__detail-left {
  grid-column: 1;
}
.recruiter-interviews-page .recruiter-interviews-page__drawer-backdrop {
  position: fixed;
  inset: 0;
  border: 0;
  background: rgba(15, 23, 42, 0.35);
  opacity: 0;
  pointer-events: none;
  z-index: 1290;
  transition: opacity 0.2s ease;
}
.recruiter-interviews-page .recruiter-interviews-page__details-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ats-nav-line);
}
.recruiter-interviews-page .recruiter-interviews-page__details-close {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ats-border);
  border-radius: 10px;
  background: var(--ats-panel-soft);
  color: var(--ats-muted);
  cursor: pointer;
}
.recruiter-interviews-page .recruiter-interviews-page__profile-card {
  margin-top: 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--ats-border);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, #fcfbfe 100%);
}
.recruiter-interviews-page .recruiter-interviews-page__profile-avatar {
  width: 54px;
  height: 54px;
  font-size: 1rem;
}
.recruiter-interviews-page .recruiter-interviews-page__profile-name,
.recruiter-interviews-page .recruiter-interviews-page__profile-role,
.recruiter-interviews-page .recruiter-interviews-page__profile-meta {
  margin: 0;
}
.recruiter-interviews-page .recruiter-interviews-page__profile-name {
  color: var(--ats-text);
  font-size: 1rem;
  font-weight: 800;
}
.recruiter-interviews-page .recruiter-interviews-page__profile-role {
  margin-top: 3px;
  color: var(--ats-muted);
  font-size: 0.86rem;
  font-weight: 700;
}
.recruiter-interviews-page .recruiter-interviews-page__profile-meta {
  margin-top: 3px;
  color: var(--ats-muted-soft);
  font-size: 0.76rem;
}
.recruiter-interviews-page .recruiter-interviews-page__quick-actions,
.recruiter-interviews-page .recruiter-interviews-page__details-actions {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.recruiter-interviews-page .recruiter-interviews-page__quick-actions .recruiter-btn,
.recruiter-interviews-page .recruiter-interviews-page__details-actions .recruiter-btn {
  justify-content: center;
}
.recruiter-interviews-page .recruiter-interviews-page__detail-tabs {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ats-nav-line);
}
.recruiter-interviews-page .recruiter-interviews-page__detail-tabs button {
  min-height: 34px;
  padding: 0.44rem 0.72rem;
  border: 1px solid var(--ats-border);
  border-radius: 999px;
  background: var(--ats-panel-soft);
  color: var(--ats-muted);
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
}
.recruiter-interviews-page .recruiter-interviews-page__detail-tabs button.is-active {
  background: #f0ebfb;
  border-color: #e2d7fb;
  color: var(--ats-primary);
}
.recruiter-interviews-page .recruiter-interviews-page__detail-panel {
  margin-top: 0;
}
.recruiter-interviews-page .recruiter-interviews-page__detail-tab-panels {
  display: grid;
  gap: 16px;
}
.recruiter-interviews-page .recruiter-interviews-page__detail-columns {
  display: grid;
  grid-template-columns: minmax(0, 2.3fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.recruiter-interviews-page .recruiter-interviews-page__detail-right {
  min-width: 0;
  display: grid;
  gap: 16px;
  width: 100%;
}
.recruiter-interviews-page .recruiter-interviews-page__detail-left {
  min-width: 0;
}
.recruiter-interviews-page .recruiter-interviews-page__details-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.recruiter-interviews-page .recruiter-interviews-page__meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0.32rem 0.62rem;
  border: 1px solid var(--ats-border);
  border-radius: 999px;
  background: var(--ats-panel-soft);
  color: var(--ats-text);
  font-size: 0.74rem;
  line-height: 1.25;
  white-space: nowrap;
}
.recruiter-interviews-page .recruiter-interviews-page__meta-badge strong {
  margin: 0;
  color: var(--ats-muted);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.recruiter-interviews-page .recruiter-interviews-page__meta-badge span {
  color: var(--ats-text);
  font-weight: 700;
}
.recruiter-interviews-page .recruiter-interviews-page__details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.recruiter-interviews-page .recruiter-interviews-page__details-grid > div {
  padding: 14px;
  border: 1px solid var(--ats-border);
  border-radius: 12px;
  background: var(--ats-panel-soft);
}
.recruiter-interviews-page .recruiter-interviews-page__label {
  margin: 0;
  color: var(--ats-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.recruiter-interviews-page .recruiter-interviews-page__value {
  margin: 6px 0 0;
  color: var(--ats-text);
  font-size: 0.9rem;
  line-height: 1.5;
  word-break: break-word;
}
.recruiter-interviews-page .recruiter-interviews-page__value a {
  color: var(--ats-primary);
  font-weight: 700;
  text-decoration: none;
}
.recruiter-interviews-page .recruiter-interviews-page__value a:hover {
  text-decoration: underline;
}
.recruiter-interviews-page .recruiter-interviews-page__ai-brief {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid #e2d7fb;
  border-radius: 14px;
  background: linear-gradient(180deg, #f7f4ff 0%, #fdfcff 100%);
}
.recruiter-interviews-page .recruiter-interviews-page__ai-kicker {
  margin: 0;
  color: var(--ats-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.recruiter-interviews-page .recruiter-interviews-page__ai-copy {
  margin: 8px 0 0;
  color: var(--ats-text);
  font-size: 0.86rem;
  line-height: 1.6;
}
.recruiter-interviews-page .recruiter-interviews-page__timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.recruiter-interviews-page .recruiter-interviews-page__timeline-item {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--ats-border);
  border-radius: 12px;
  background: #fff;
}
.recruiter-interviews-page .recruiter-interviews-page__timeline-label {
  color: var(--ats-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.recruiter-interviews-page .recruiter-interviews-page__timeline-value,
.recruiter-interviews-page .recruiter-interviews-page__notes-copy {
  color: var(--ats-text);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.55;
}
.recruiter-interviews-page[data-view-mode=calendar] .recruiter-interviews-page__queue {
  display: none;
}
.recruiter-interviews-page[data-view-mode=split] .recruiter-interviews-page__calendar-wrap {
  display: none;
}
@media (max-width: 1280px) {
  .recruiter-interviews-page .recruiter-interviews-page__details {
    width: 90vw;
  }
}
@media (max-width: 980px) {
  .recruiter-interviews-page .recruiter-interviews-page__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .recruiter-interviews-page .recruiter-interviews-page__toolbar,
  .recruiter-interviews-page .recruiter-interviews-page__section-head {
    flex-direction: column;
    align-items: stretch;
  }
  .recruiter-interviews-page .recruiter-interviews-page__toolbar-actions {
    width: 100%;
    justify-content: space-between;
  }
  .recruiter-interviews-page .recruiter-interviews-page__filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .recruiter-interviews-page .recruiter-interviews-page__filters select,
  .recruiter-interviews-page .recruiter-interviews-page__filters button {
    min-width: 0;
    width: 100%;
  }
  .recruiter-interviews-page .recruiter-interviews-page__quick-actions,
  .recruiter-interviews-page .recruiter-interviews-page__details-actions {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .recruiter-interviews-page .recruiter-interviews-page__panel {
    padding: 14px;
  }
  .recruiter-interviews-page .recruiter-interviews-page__stats {
    grid-template-columns: 1fr;
  }
  .recruiter-interviews-page .recruiter-interviews-page__toolbar-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .recruiter-interviews-page .recruiter-interviews-page__toolbar-btn,
  .recruiter-interviews-page .recruiter-interviews-page__view-switch {
    width: 100%;
  }
  .recruiter-interviews-page .recruiter-interviews-page__filters {
    grid-template-columns: 1fr;
  }
  .recruiter-interviews-page .recruiter-interviews-page__table-wrap {
    overflow-x: auto;
  }
  .recruiter-interviews-page .recruiter-interviews-page__table {
    min-width: 700px;
  }
  .recruiter-interviews-page .recruiter-interviews-page__profile-card {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .recruiter-interviews-page .recruiter-interviews-page__details {
    width: 100vw;
    border-radius: 0;
  }
}

.recruiter-chat-page {
  display: grid;
  gap: 18px;
}

.recruiter-chat-page__header {
  margin-bottom: 0;
}

.recruiter-chat {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 360px) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  min-height: calc(100vh - 170px);
}

.recruiter-chat__sidebar,
.recruiter-chat__thread {
  display: grid;
  border: 1px solid var(--ats-border);
  border-radius: 14px;
  background: var(--ats-panel);
  box-shadow: 0 8px 48px rgba(107, 0, 201, 0.09);
  overflow: hidden;
}

.recruiter-chat__sidebar {
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  min-height: inherit;
}

.recruiter-chat__thread {
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: inherit;
}

.recruiter-chat__sidebar-top,
.recruiter-chat__thread-head,
.recruiter-chat__composer,
.recruiter-chat__search,
.recruiter-chat__matches {
  padding: 18px;
}

.recruiter-chat__sidebar-top,
.recruiter-chat__thread-head,
.recruiter-chat__search,
.recruiter-chat__composer,
.recruiter-chat__pins-drawer-head,
.recruiter-chat-thread-modal__composer {
  border-bottom: 1px solid var(--ats-nav-line);
}

.recruiter-chat__eyebrow {
  margin: 0 0 6px;
  color: var(--ats-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recruiter-chat__title,
.recruiter-chat-modal__title {
  margin: 0;
  color: var(--ats-text);
  font-family: "Nunito", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.2;
}

.recruiter-chat__subtitle,
.recruiter-chat__thread-meta,
.recruiter-chat__conversation-meta,
.recruiter-chat-modal__helper {
  margin: 4px 0 0;
  color: var(--ats-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.recruiter-chat__sidebar-top,
.recruiter-chat__thread-mainhead,
.recruiter-chat__message-head,
.recruiter-chat__message-foot,
.recruiter-chat__composer-actions,
.recruiter-chat-modal__head,
.recruiter-chat-modal__actions,
.recruiter-chat-thread-modal__meta,
.recruiter-chat-thread-modal__actions,
.recruiter-chat__pins-drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.recruiter-chat__thread-mainhead,
.recruiter-chat__message-head,
.recruiter-chat__message-foot,
.recruiter-chat-thread-modal__meta {
  align-items: center;
}

.recruiter-chat__search-label,
.recruiter-chat__composer-label,
.recruiter-chat__mention-label,
.recruiter-chat-modal__field > span {
  display: block;
  margin-bottom: 6px;
  color: var(--ats-muted);
  font-size: 12px;
  font-weight: 700;
}

.recruiter-chat__search-input-wrap,
.recruiter-chat__composer-input-wrap {
  position: relative;
}

.recruiter-chat__search-icon {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: var(--ats-muted-soft);
}

.recruiter-chat__search input,
.recruiter-chat-modal__field input,
.recruiter-chat-modal__field textarea,
.recruiter-chat-modal__field select,
.recruiter-chat__composer-input,
.recruiter-chat-thread-modal__input {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--ats-border);
  border-radius: 10px;
  background: #fff;
  color: var(--ats-text);
  font: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.recruiter-chat__search input:focus,
.recruiter-chat-modal__field input:focus,
.recruiter-chat-modal__field textarea:focus,
.recruiter-chat-modal__field select:focus,
.recruiter-chat__composer-input:focus,
.recruiter-chat-thread-modal__input:focus {
  outline: none;
  border-color: var(--ats-focus);
  box-shadow: 0 0 0 3px var(--ats-focus-ring);
}

.recruiter-chat__search input,
.recruiter-chat-modal__field input,
.recruiter-chat-modal__field select {
  min-height: 42px;
  padding: 0.72rem 0.85rem;
}

.recruiter-chat__search input {
  padding-left: 42px;
}

.recruiter-chat-modal__field textarea,
.recruiter-chat__composer-input,
.recruiter-chat-thread-modal__input {
  padding: 0.85rem 0.95rem;
  resize: vertical;
}

.recruiter-chat__composer-input {
  min-height: 104px;
}

.recruiter-chat-thread-modal__input {
  min-height: 110px;
}

.recruiter-chat__quicktypes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 18px 18px;
}

.recruiter-chat__new-btn,
.recruiter-chat__send-btn,
.recruiter-chat__ghost-btn,
.recruiter-chat__quicktype,
.recruiter-chat__message-action,
.recruiter-chat__reaction,
.recruiter-chat__mention-pill,
.recruiter-chat__pill,
.recruiter-chat__message-menu-toggle,
.recruiter-chat-modal__close,
.recruiter-chat-modal__member span,
.recruiter-chat-modal__type-card,
.recruiter-chat__match-btn {
  font: inherit;
}

.recruiter-chat__new-btn,
.recruiter-chat__send-btn,
.recruiter-chat__ghost-btn,
.recruiter-chat__quicktype,
.recruiter-chat__message-action,
.recruiter-chat__reaction,
.recruiter-chat__mention-pill,
.recruiter-chat__pill,
.recruiter-chat__message-menu-toggle,
.recruiter-chat-modal__close,
.recruiter-chat-modal__type-card,
.recruiter-chat__match-btn {
  border: 0;
  cursor: pointer;
}

.recruiter-chat__new-btn,
.recruiter-chat__send-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0.72rem 1rem;
  border-radius: 10px;
  background: var(--ats-gradient);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(254, 60, 114, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.recruiter-chat__new-btn:hover,
.recruiter-chat__send-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(254, 60, 114, 0.3);
}

.recruiter-chat__new-btn svg,
.recruiter-chat__send-btn svg {
  width: 16px;
  height: 16px;
}

.recruiter-chat__ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0.72rem 1rem;
  border-radius: 10px;
  background: var(--ats-panel);
  color: var(--ats-text);
  border: 1px solid var(--ats-border);
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}
.recruiter-chat__ghost-btn:hover {
  transform: translateY(-1px);
  background: var(--ats-panel-soft);
  border-color: var(--ats-border-strong);
  box-shadow: 0 4px 20px rgba(107, 0, 201, 0.08);
}

.recruiter-chat__quicktype {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.45rem 0.72rem;
  border: 1px solid var(--ats-border);
  border-radius: 999px;
  background: var(--ats-panel-soft);
  color: var(--ats-muted);
  font-size: 0.78rem;
  font-weight: 700;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.recruiter-chat__quicktype:hover {
  background: #fff;
  border-color: var(--ats-border-strong);
  color: var(--ats-text);
}

.recruiter-chat__quicktype.is-active {
  background: #f0ebfb;
  border-color: #e2d7fb;
  color: var(--ats-primary);
}

.recruiter-chat__list,
.recruiter-chat__messages,
.recruiter-chat__pins,
.recruiter-chat-thread-modal,
.recruiter-chat-participants {
  min-height: 0;
  overflow: auto;
}

.recruiter-chat__list {
  display: grid;
  gap: 8px;
  padding: 10px;
  background: linear-gradient(180deg, #fff 0%, #fbf9fe 100%);
}

.recruiter-chat__conversation {
  width: 100%;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  text-align: left;
  transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.recruiter-chat__conversation:hover, .recruiter-chat__conversation.is-active {
  background: #fff;
  border-color: var(--ats-border);
  box-shadow: 0 4px 20px rgba(107, 0, 201, 0.08);
  transform: translateY(-1px);
}

.recruiter-chat__conversation-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.recruiter-chat__conversation-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.recruiter-chat__conversation-title,
.recruiter-chat__thread-title {
  margin: 0;
  color: var(--ats-text);
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.recruiter-chat__badge,
.recruiter-chat__pill,
.recruiter-chat__reaction,
.recruiter-chat__mention-pill,
.recruiter-chat-modal__member span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
}

.recruiter-chat__badge {
  padding: 0.28rem 0.56rem;
  background: #f0ebfb;
  color: var(--ats-primary);
}

.recruiter-chat__pill,
.recruiter-chat__reaction,
.recruiter-chat__mention-pill,
.recruiter-chat-modal__member span {
  padding: 0.34rem 0.66rem;
  background: var(--ats-panel-soft);
  color: var(--ats-muted);
  border: 1px solid var(--ats-border);
}

.recruiter-chat__conversation-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ats-muted-soft);
  font-size: 0.78rem;
}

.recruiter-chat__conversation-latest {
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recruiter-chat__conversation-unread {
  min-width: 24px;
  height: 24px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ats-gradient);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

.recruiter-chat__presence {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #cbd5e1;
}

.recruiter-chat__presence.is-online {
  background: #22c55e;
}

.recruiter-chat__presence.is-away {
  background: #f59e0b;
}

.recruiter-chat__thread-head {
  background: linear-gradient(180deg, #fff 0%, #fbf9fe 100%);
}

.recruiter-chat__thread-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.recruiter-chat__messages {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: radial-gradient(circle at top right, rgba(254, 60, 114, 0.06), transparent 28%), radial-gradient(circle at left bottom, rgba(107, 0, 201, 0.05), transparent 24%), #fcfbfe;
}

.recruiter-chat__message {
  max-width: min(78%, 760px);
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border: 1px solid var(--ats-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(23, 0, 23, 0.04);
}

.recruiter-chat__message.is-own {
  margin-left: auto;
  background: linear-gradient(135deg, #6b00c9, #9b59f5);
  border-color: transparent;
  color: #fff;
}

.recruiter-chat__message.is-highlighted {
  border-color: #fe3c72;
  box-shadow: 0 0 0 3px rgba(254, 60, 114, 0.08);
}

.recruiter-chat__message-author,
.recruiter-chat-thread-modal__author {
  color: var(--ats-text);
  font-size: 0.84rem;
  font-weight: 800;
}

.recruiter-chat__message.is-own .recruiter-chat__message-author {
  color: #fff;
}

.recruiter-chat__message-time {
  color: var(--ats-muted-soft);
  font-size: 0.74rem;
}

.recruiter-chat__message.is-own .recruiter-chat__message-time {
  color: rgba(255, 255, 255, 0.76);
}

.recruiter-chat__message-body,
.recruiter-chat-thread-modal__body {
  margin: 0;
  line-height: 1.65;
  white-space: pre-wrap;
  word-break: break-word;
}

.recruiter-chat-thread-modal__body {
  color: var(--ats-muted);
}

.recruiter-chat__message-body a,
.recruiter-chat__conversation-meta a,
.recruiter-chat-thread-modal__body a {
  color: var(--ats-primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.14em;
  word-break: break-word;
}

.recruiter-chat__message.is-own .recruiter-chat__message-body a {
  color: #fff;
}

.recruiter-chat__message-actions,
.recruiter-chat__message-reactions,
.recruiter-chat__mention-selected,
.recruiter-chat-modal__members {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.recruiter-chat__message-action,
.recruiter-chat__reaction,
.recruiter-chat__mention-pill {
  padding: 0.34rem 0.66rem;
}

.recruiter-chat__message-action:hover,
.recruiter-chat__reaction:hover,
.recruiter-chat__mention-pill:hover {
  background: #fff;
  border-color: var(--ats-border-strong);
  color: var(--ats-text);
}

.recruiter-chat__message.is-own .recruiter-chat__message-action,
.recruiter-chat__message.is-own .recruiter-chat__reaction,
.recruiter-chat__message.is-own .recruiter-chat__mention-pill,
.recruiter-chat__message.is-own .recruiter-chat__message-menu-toggle {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.recruiter-chat__reaction.is-active,
.recruiter-chat__mention-pill.is-active,
.recruiter-chat-modal__member input:checked + span {
  background: var(--ats-primary);
  border-color: var(--ats-primary);
  color: #fff;
}

.recruiter-chat-modal__member {
  padding: 0;
  background: transparent;
}

.recruiter-chat-modal__member input {
  display: none;
}

.recruiter-chat__message-menu {
  position: relative;
}

.recruiter-chat__message-foot .recruiter-chat__message-menu {
  margin-left: auto;
}

.recruiter-chat__message-menu-toggle,
.recruiter-chat-modal__close {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--ats-panel-soft);
  color: var(--ats-muted);
  border: 1px solid var(--ats-border);
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.recruiter-chat__message-menu-toggle:hover,
.recruiter-chat-modal__close:hover {
  background: #fff;
  border-color: var(--ats-border-strong);
  color: var(--ats-text);
}

.recruiter-chat__message-menu-panel {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 12;
  min-width: 180px;
  display: grid;
  gap: 4px;
  padding: 6px;
  border: 1px solid var(--ats-border);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(23, 0, 23, 0.12);
}

.recruiter-chat__message-menu-panel[hidden] {
  display: none;
}

.recruiter-chat__message-menu-panel .recruiter-chat__message-action {
  width: 100%;
  justify-content: flex-start;
  background: transparent;
  color: var(--ats-text);
  border-radius: 8px;
  border: 0;
  text-align: left;
}
.recruiter-chat__message-menu-panel .recruiter-chat__message-action:hover {
  background: var(--ats-panel-soft);
}

.recruiter-chat__composer {
  display: grid;
  gap: 12px;
  background: #fff;
}

.recruiter-chat__composer-context {
  padding: 12px 14px;
  border: 1px solid #e2d7fb;
  border-radius: 10px;
  background: #f0ebfb;
  color: var(--ats-primary);
  font-size: 0.86rem;
  line-height: 1.5;
}

.recruiter-chat__mention-menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  left: 0;
  z-index: 8;
  display: grid;
  gap: 4px;
  max-height: 220px;
  overflow-y: auto;
  padding: 6px;
  border: 1px solid var(--ats-border);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(23, 0, 23, 0.12);
}

.recruiter-chat__mention-menu[hidden] {
  display: none;
}

.recruiter-chat__mention-option {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ats-text);
  cursor: pointer;
  text-align: left;
  font-size: 0.84rem;
}
.recruiter-chat__mention-option:hover, .recruiter-chat__mention-option.is-active {
  background: var(--ats-panel-soft);
  color: var(--ats-primary);
}

.recruiter-chat__mention-option-name {
  display: block;
  font-weight: 700;
  line-height: 1.2;
}

.recruiter-chat__mention-option-meta {
  display: block;
  margin-top: 2px;
  color: var(--ats-muted-soft);
  font-size: 0.7rem;
  line-height: 1.2;
}

.recruiter-chat__matches {
  display: grid;
  gap: 8px;
  background: linear-gradient(180deg, #fff 0%, #fbf9fe 100%);
}

.recruiter-chat__match {
  padding: 10px 0;
  border-top: 1px solid var(--ats-nav-line);
}

.recruiter-chat__match:first-child {
  border-top: 0;
}

.recruiter-chat__match-btn {
  width: 100%;
  padding: 0;
  background: transparent;
  text-align: left;
}

.recruiter-chat__match-title {
  margin: 0 0 4px;
  color: var(--ats-text);
  font-size: 0.92rem;
  font-weight: 800;
}

.recruiter-chat__match-body {
  margin: 0;
  color: var(--ats-muted);
  line-height: 1.5;
}

.recruiter-chat__empty {
  padding: 32px 18px;
  text-align: center;
  color: var(--ats-muted);
  line-height: 1.7;
}

.recruiter-chat__pins-drawer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 92vw);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  border-left: 1px solid var(--ats-border);
  background: #fff;
  box-shadow: -12px 0 30px rgba(23, 0, 23, 0.1);
  z-index: 20;
}

.recruiter-chat__pins-drawer[hidden] {
  display: none !important;
}

.recruiter-chat__pins-drawer-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--ats-text);
  font-family: "Nunito", sans-serif;
  font-size: 0.96rem;
  font-weight: 800;
}

.recruiter-chat__pins {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 14px;
  background: #fbf9fe;
}

.recruiter-chat__pin-card,
.recruiter-chat-thread-modal__card,
.recruiter-chat-participant {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--ats-border);
  border-radius: 12px;
  background: #fff;
}

.recruiter-chat-thread-modal__card--root {
  border-color: #e2d7fb;
  background: #fcf9ff;
}

.recruiter-chat-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
}

.recruiter-chat-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 0, 23, 0.45);
  backdrop-filter: blur(6px);
}

.recruiter-chat-modal__panel {
  position: relative;
  width: min(760px, 100vw - 2rem);
  max-height: calc(100vh - 2rem);
  display: grid;
  gap: 16px;
  overflow: auto;
  margin: 1rem auto;
  padding: 20px;
  border: 1px solid var(--ats-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 26px 60px rgba(23, 0, 23, 0.2);
}

.recruiter-chat-modal__panel--compact {
  width: min(560px, 100vw - 2rem);
}

.recruiter-chat-modal__panel--thread {
  width: min(820px, 100vw - 2rem);
}

.recruiter-chat-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.recruiter-chat-modal__stack {
  display: grid;
  gap: 14px;
}

.recruiter-chat-modal__type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.recruiter-chat-modal__type-card {
  display: grid;
  gap: 6px;
  width: 100%;
  padding: 14px;
  border: 1px solid var(--ats-border);
  border-radius: 12px;
  background: var(--ats-panel-soft);
  text-align: left;
  color: var(--ats-muted);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}
.recruiter-chat-modal__type-card:hover, .recruiter-chat-modal__type-card.is-active {
  transform: translateY(-1px);
  border-color: #e2d7fb;
  background: #fff;
  box-shadow: 0 4px 20px rgba(107, 0, 201, 0.08);
}

.recruiter-chat-modal__type-card strong {
  color: var(--ats-text);
  font-size: 0.94rem;
  font-weight: 800;
}

.recruiter-chat-modal__type-card span {
  color: var(--ats-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.recruiter-chat-modal__type-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #f0ebfb;
  color: var(--ats-primary);
}

.recruiter-chat-modal__type-card.is-active .recruiter-chat-modal__type-icon,
.recruiter-chat-modal__type-card:hover .recruiter-chat-modal__type-icon {
  background: var(--ats-primary);
  color: #fff;
}

.recruiter-chat-modal__field {
  display: grid;
}

.recruiter-chat-modal__field--full {
  grid-column: 1/-1;
}

.recruiter-chat-participants {
  display: grid;
  gap: 10px;
  max-height: min(60vh, 520px);
}

.recruiter-chat-participant {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.recruiter-chat-participant__main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.recruiter-chat-participant__text {
  min-width: 0;
}

.recruiter-chat-participant__name {
  margin: 0;
  color: var(--ats-text);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
}

.recruiter-chat-participant__meta {
  margin: 2px 0 0;
  color: var(--ats-muted);
  font-size: 0.76rem;
  line-height: 1.4;
  word-break: break-word;
}

.recruiter-chat-thread-modal {
  display: grid;
  gap: 10px;
  max-height: min(58vh, 640px);
  padding-right: 4px;
}

.recruiter-chat-thread-modal__reply {
  margin-left: 24px;
}

.recruiter-chat-thread-modal__composer {
  display: grid;
  gap: 12px;
  padding-top: 16px;
}

@media (max-width: 1100px) {
  .recruiter-chat {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .recruiter-chat__sidebar,
  .recruiter-chat__thread {
    min-height: auto;
  }
  .recruiter-chat__thread {
    min-height: 65vh;
  }
}
@media (max-width: 860px) {
  .recruiter-chat__message,
  .recruiter-chat__message.is-own {
    max-width: 100%;
  }
  .recruiter-chat-modal__type-grid,
  .recruiter-chat-modal__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .recruiter-chat {
    gap: 14px;
  }
  .recruiter-chat__sidebar-top,
  .recruiter-chat__thread-head,
  .recruiter-chat__composer,
  .recruiter-chat__search,
  .recruiter-chat__matches {
    padding: 14px;
  }
  .recruiter-chat__quicktypes {
    padding: 0 14px 14px;
  }
  .recruiter-chat__list,
  .recruiter-chat__messages,
  .recruiter-chat__pins {
    padding: 10px;
  }
  .recruiter-chat__sidebar-top,
  .recruiter-chat__composer-actions,
  .recruiter-chat-modal__head,
  .recruiter-chat-modal__actions,
  .recruiter-chat-thread-modal__actions {
    align-items: stretch;
    flex-direction: column;
  }
  .recruiter-chat__new-btn,
  .recruiter-chat__send-btn,
  .recruiter-chat__ghost-btn {
    width: 100%;
  }
  .recruiter-chat__pins-drawer {
    width: 100%;
  }
}
/* Template-aligned recruiter chat */
.recruiter-chat-page {
  gap: 16px;
}

.recruiter-chat-page__header {
  align-items: center;
  margin-bottom: 0;
}

.recruiter-chat-page__header-copy {
  display: grid;
  gap: 4px;
}

.recruiter-chat-page__header-copy h1 {
  margin: 0;
  color: #170017;
  font-family: "Nunito", sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.recruiter-chat-page__header-copy p {
  margin: 0;
  color: #aaa;
  font-size: 13px;
}

.recruiter-chat-page__header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.recruiter-chat-page__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 10px 18px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #fe3c72, #fe3cd3);
  box-shadow: 0 4px 14px rgba(254, 60, 114, 0.25);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.recruiter-chat-page__cta svg {
  width: 14px;
  height: 14px;
}

.recruiter-chat {
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 0;
  min-height: calc(100vh - 210px);
  background: #fff;
  overflow: hidden;
}

.recruiter-chat__sidebar,
.recruiter-chat__thread {
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.recruiter-chat__sidebar {
  border-right: 1px solid #f0ebfb;
}

.recruiter-chat__sidebar-top {
  padding: 16px;
}

.recruiter-chat__sidebar-top,
.recruiter-chat__thread-head,
.recruiter-chat__composer,
.recruiter-chat__search,
.recruiter-chat__matches,
.recruiter-chat__pins-drawer-head,
.recruiter-chat-thread-modal__composer {
  border-bottom-color: #f0ebfb;
}

.recruiter-chat__eyebrow {
  display: none;
}

.recruiter-chat__new-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 8px;
  background: linear-gradient(135deg, #fe3c72, #fe3cd3);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(254, 60, 114, 0.2);
}

.recruiter-chat__new-btn:hover {
  transform: none;
  box-shadow: 0 6px 18px rgba(254, 60, 114, 0.24);
}

.recruiter-chat__new-btn svg {
  width: 14px;
  height: 14px;
}

.recruiter-chat__title {
  font-size: 14px;
  color: #170017;
}

.recruiter-chat__search {
  padding: 0 16px 12px;
}

.recruiter-chat__search-label {
  display: none;
}

.recruiter-chat__search input {
  padding: 8px 12px 8px 38px;
  border-radius: 8px;
  border-color: #ede8f5;
  background: #f8f6fc;
  font-size: 12px;
}

.recruiter-chat__search-icon {
  left: 12px;
  color: #aaa;
}

.recruiter-chat__quicktypes {
  gap: 5px;
  padding: 0 16px 14px;
}

.recruiter-chat__quicktype {
  min-height: 28px;
  padding: 3px 10px;
  border-radius: 20px;
  border-color: #ede8f5;
  background: #fff;
  color: #888;
  font-size: 11px;
  font-weight: 600;
}

.recruiter-chat__quicktype.is-active {
  background: #170017;
  border-color: #170017;
  color: #fff;
}

.recruiter-chat__list {
  align-content: start;
  grid-auto-rows: max-content;
  gap: 0;
  padding: 0;
  background: #fff;
  max-height: calc(100vh - 320px);
  overflow-y: auto;
}

.recruiter-chat__conversation {
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px 16px;
  border: 0;
  border-bottom: 1px solid #f8f6fc;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  position: relative;
}

.recruiter-chat__conversation:hover {
  background: #fdfcff;
  transform: none;
  box-shadow: none;
}

.recruiter-chat__conversation.is-active {
  background: #f0ebfb;
}

.recruiter-chat__conversation.is-unread::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fe3c72;
}

.recruiter-chat__conversation-avatar,
.recruiter-chat__thread-avatar,
.recruiter-chat__context-banner-avatar,
.recruiter-chat__message-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  flex-shrink: 0;
}

.recruiter-chat__conversation-avatar {
  width: 36px;
  height: 36px;
  margin-top: 2px;
  font-size: 12px;
}

.recruiter-chat__thread-avatar,
.recruiter-chat__context-banner-avatar {
  width: 38px;
  height: 38px;
  font-size: 13px;
}

.recruiter-chat__message-avatar {
  width: 26px;
  height: 26px;
  font-size: 10px;
  margin-top: auto;
}

.tone-1 {
  background: linear-gradient(135deg, #fe3c72, #fe3cd3);
}

.tone-2 {
  background: linear-gradient(135deg, #6b00c9, #9b59f5);
}

.tone-3 {
  background: linear-gradient(135deg, #0d9488, #14b8a6);
}

.tone-4 {
  background: linear-gradient(135deg, #f59e0b, #fcd34d);
}

.tone-5 {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.tone-6 {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.recruiter-chat__conversation-main {
  min-width: 0;
}

.recruiter-chat__conversation-head {
  align-items: start;
}

.recruiter-chat__conversation-title {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #170017;
}

.recruiter-chat__conversation.is-unread .recruiter-chat__conversation-title {
  font-weight: 700;
}

.recruiter-chat__conversation-meta {
  margin-top: 1px;
  font-size: 11px;
  color: #aaa;
  line-height: 1.4;
}

.recruiter-chat__conversation-time {
  flex-shrink: 0;
  font-size: 10px;
  color: #bbb;
}

.recruiter-chat__conversation-preview {
  margin: 3px 0 0;
  color: #999;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recruiter-chat__conversation-tags {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-top: 5px;
}

.recruiter-chat__conversation-tag {
  display: inline-flex;
  align-items: center;
  padding: 1px 7px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
}

.recruiter-chat__conversation-tag.offre {
  background: #f0ebfb;
  color: #6b00c9;
}

.recruiter-chat__conversation-tag.entretien {
  background: #fff0f4;
  color: #fe3c72;
}

.recruiter-chat__conversation-tag.test {
  background: #fdf0fb;
  color: #fe3cd3;
}

.recruiter-chat__conversation-tag.urgent {
  background: #fef3c7;
  color: #d97706;
}

.recruiter-chat__conversation-unread {
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  background: transparent;
  color: #fe3c72;
  font-size: 10px;
  font-weight: 700;
}

.recruiter-chat__thread-head {
  padding: 14px 20px 0;
  background: #fff;
}

.recruiter-chat__thread-mainhead--template {
  align-items: center;
  padding-bottom: 14px;
}

.recruiter-chat__thread-identity {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.recruiter-chat__thread-copy {
  min-width: 0;
}

.recruiter-chat__thread-title {
  font-size: 14px;
  color: #170017;
}

.recruiter-chat__thread-meta {
  margin-top: 1px;
  font-size: 11px;
  color: #aaa;
}

.recruiter-chat__thread-actions {
  gap: 8px;
}

.recruiter-chat__thread-action {
  min-height: 30px;
  padding: 6px 12px;
  border: 1px solid #ede8f5;
  border-radius: 8px;
  background: #fff;
  color: #555;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.12s ease;
}

.recruiter-chat__thread-action:hover {
  background: #f4f2f8;
}

.recruiter-chat__thread-action--primary {
  background: linear-gradient(135deg, #fe3c72, #fe3cd3);
  border-color: transparent;
  color: #fff;
}

.recruiter-chat__context-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 12px 0 0;
  padding: 12px 16px;
  border: 1px solid #ede8f5;
  border-radius: 10px;
  background: linear-gradient(135deg, #f8f6fc, #fdf0fb);
}

.recruiter-chat__context-banner-info {
  flex: 1;
  min-width: 0;
}

.recruiter-chat__context-banner-title {
  color: #170017;
  font-size: 12px;
  font-weight: 700;
}

.recruiter-chat__context-banner-sub {
  margin-top: 2px;
  color: #888;
  font-size: 11px;
}

.recruiter-chat__context-banner-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.recruiter-chat__context-pill {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 10px;
  border: 1px solid #ede8f5;
  border-radius: 20px;
  background: #fff;
  color: #888;
  font-size: 10px;
  font-weight: 600;
}

.recruiter-chat__context-pill.done {
  background: #0d9488;
  border-color: #0d9488;
  color: #fff;
}

.recruiter-chat__context-pill.current {
  background: #6b00c9;
  border-color: #6b00c9;
  color: #fff;
}

.recruiter-chat__context-banner-score {
  text-align: center;
  flex-shrink: 0;
}

.recruiter-chat__context-banner-score strong {
  display: block;
  font-family: "Nunito", sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #fe3c72, #fe3cd3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.recruiter-chat__context-banner-score span {
  display: block;
  margin-top: 2px;
  color: #bbb;
  font-size: 10px;
}

.recruiter-chat__messages {
  gap: 12px;
  padding: 16px 20px;
  background: #fff;
  max-height: calc(100vh - 420px);
  overflow-y: auto;
}

.recruiter-chat__date-sep {
  position: relative;
  margin: 4px 0;
  color: #bbb;
  font-size: 11px;
  text-align: center;
}

.recruiter-chat__date-sep::before,
.recruiter-chat__date-sep::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 35%;
  height: 1px;
  background: #ede8f5;
}

.recruiter-chat__date-sep::before {
  left: 0;
}

.recruiter-chat__date-sep::after {
  right: 0;
}

.recruiter-chat__message-row {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.recruiter-chat__message-row.is-own {
  flex-direction: row-reverse;
}

.recruiter-chat__message-row.is-highlighted .recruiter-chat__message {
  box-shadow: 0 0 0 3px rgba(254, 60, 114, 0.08);
}

.recruiter-chat__message-stack {
  max-width: 70%;
  display: grid;
  gap: 4px;
}

.recruiter-chat__message {
  max-width: none;
  padding: 10px 14px;
  border: 0;
  border-radius: 12px 12px 12px 2px;
  background: #f4f2f8;
  box-shadow: none;
}

.recruiter-chat__message.is-own {
  margin-left: 0;
  background: linear-gradient(135deg, #6b00c9, #9b59f5);
  color: #fff;
  border-radius: 12px 12px 2px 12px;
}

.recruiter-chat__message-head {
  margin-bottom: 2px;
}

.recruiter-chat__message-author {
  font-size: 12px;
  font-weight: 700;
}

.recruiter-chat__message-body {
  font-size: 13px;
  line-height: 1.55;
  color: #170017;
}

.recruiter-chat__message.is-own .recruiter-chat__message-body,
.recruiter-chat__message.is-own .recruiter-chat__message-author {
  color: #fff;
}

.recruiter-chat__message-foot {
  gap: 8px;
  justify-content: flex-end;
  align-items: center;
}

.recruiter-chat__message-row:not(.is-own) .recruiter-chat__message-foot {
  justify-content: flex-start;
}

.recruiter-chat__message-time {
  font-size: 10px;
  color: #bbb;
}

.recruiter-chat__message-link {
  border: 0;
  background: transparent;
  color: #6b00c9;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}

.recruiter-chat__message-menu-toggle {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border-color: #ede8f5;
  background: #fff;
}

.recruiter-chat__composer {
  padding: 14px 16px;
  gap: 8px;
}

.recruiter-chat__composer-input {
  min-height: 40px;
  max-height: 100px;
  padding: 10px 14px;
  border-color: #ede8f5;
  border-radius: 10px;
  background: #f8f6fc;
  font-size: 13px;
  resize: vertical;
}

.recruiter-chat__composer-actions {
  justify-content: space-between;
  align-items: center;
}

.recruiter-chat__ghost-btn {
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 20px;
}

.recruiter-chat__send-btn {
  min-width: 38px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 10px;
}

.recruiter-chat__pins-drawer {
  width: min(360px, 92vw);
  border-left-color: #ede8f5;
  box-shadow: -12px 0 30px rgba(23, 0, 23, 0.08);
}

.recruiter-chat__pins {
  gap: 12px;
  padding: 16px;
  background: #fbf9fe;
}

.recruiter-chat__pin-card {
  border-radius: 10px;
}

.recruiter-chat-modal__panel {
  border-radius: 20px;
}

@media (max-width: 1100px) {
  .recruiter-chat {
    grid-template-columns: 1fr;
  }
  .recruiter-chat__sidebar {
    border-right: 0;
    border-bottom: 1px solid #f0ebfb;
  }
}
@media (max-width: 720px) {
  .recruiter-chat-page__header {
    align-items: start;
  }
  .recruiter-chat-page__header-actions,
  .recruiter-chat-page__cta {
    width: 100%;
  }
  .recruiter-chat-page__cta {
    justify-content: center;
  }
  .recruiter-chat__thread-head {
    padding-inline: 14px;
  }
  .recruiter-chat__messages {
    padding-inline: 14px;
  }
  .recruiter-chat__message-stack {
    max-width: 84%;
  }
  .recruiter-chat__thread-mainhead--template,
  .recruiter-chat__context-banner {
    flex-direction: column;
    align-items: start;
  }
  .recruiter-chat__thread-actions {
    width: 100%;
  }
}
.add-company-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem;
}
.add-company-form .form-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
  border-bottom: 1px solid #f3d1e8;
  padding-bottom: 0.5rem;
}
.add-company-form .form-section .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 768px) {
  .add-company-form .form-section .form-grid {
    grid-template-columns: 1fr;
  }
}
.add-company-form .form-section .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.add-company-form .form-section .form-group.full-width {
  grid-column: 1/-1;
}
.add-company-form .form-section .form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #475569;
}
.add-company-form .form-section .form-group input,
.add-company-form .form-section .form-group textarea,
.add-company-form .form-section .form-group select {
  padding: 0.5rem;
  border: 1px solid #f3d1e8;
  border-radius: 0.5rem;
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.add-company-form .form-section .form-group input:focus,
.add-company-form .form-section .form-group textarea:focus,
.add-company-form .form-section .form-group select:focus {
  border-color: #ff66c4;
  box-shadow: 0 0 0 2px rgba(255, 102, 196, 0.1);
}
.add-company-form .form-section .form-group textarea {
  min-height: 80px;
  resize: vertical;
}
.add-company-form .form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f3d1e8;
}
.add-company-form .form-actions button,
.add-company-form .form-actions .btn-cancel,
.add-company-form .form-actions .btn-save {
  padding: 8px 16px;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600 !important;
  transition: background-color 0.3s ease;
  cursor: pointer;
  font-size: 14px;
  border: none;
  font-family: inherit;
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.add-company-form .form-actions button.btn-cancel,
.add-company-form .form-actions .btn-cancel.btn-cancel,
.add-company-form .form-actions .btn-save.btn-cancel {
  background-color: transparent;
  border: 1px solid #f3d1e8;
  color: #475569;
}
.add-company-form .form-actions button.btn-cancel:hover,
.add-company-form .form-actions .btn-cancel.btn-cancel:hover,
.add-company-form .form-actions .btn-save.btn-cancel:hover {
  background-color: #fdf2f8;
}
.add-company-form .form-actions button.btn-save,
.add-company-form .form-actions .btn-cancel.btn-save,
.add-company-form .form-actions .btn-save.btn-save {
  background: linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%);
  color: white;
  border: none;
}
.add-company-form .form-actions button.btn-save:hover,
.add-company-form .form-actions .btn-cancel.btn-save:hover,
.add-company-form .form-actions .btn-save.btn-save:hover {
  opacity: 0.9;
}

.bulk-upload-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(15, 23, 42, 0.56);
  backdrop-filter: blur(5px);
}

.bulk-upload-overlay.is-hidden {
  display: none;
}

.bulk-upload-modal {
  width: min(760px, 100%);
  max-height: min(88vh, 920px);
  background: var(--ats-panel);
  border: 1px solid var(--ats-border);
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: bulk-modal-in 0.22s ease-out;
}
@media (max-width: 768px) {
  .bulk-upload-modal {
    width: 100%;
    max-height: calc(100vh - 1rem);
    border-radius: 14px;
  }
}

.bulk-upload-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--ats-border);
  background: var(--ats-panel-soft);
}
.bulk-upload-header h2 {
  margin: 0;
  font-size: 0.95rem;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  color: var(--ats-text);
  letter-spacing: -0.01em;
}
.bulk-upload-header .close-btn {
  border: 1px solid var(--ats-border);
  background: var(--ats-panel);
  color: var(--ats-muted);
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
}
.bulk-upload-header .close-btn:hover {
  border-color: var(--ats-border-strong);
  background: var(--ats-panel-soft);
  color: var(--ats-text);
}

.bulk-upload-content {
  flex: 1;
  overflow: auto;
  padding: 1.1rem 1.2rem;
  display: grid;
  gap: 1rem;
}

.drop-zone {
  border: 2px dashed var(--ats-border-strong);
  border-radius: 12px;
  background: var(--ats-panel-soft);
  text-align: center;
  padding: 1.2rem;
  min-height: 150px;
  max-height: 200px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.drop-zone:hover {
  border-color: var(--ats-primary);
  background: color-mix(in srgb, var(--ats-primary) 4%, var(--ats-panel));
}
.drop-zone.drag-active {
  border-color: var(--ats-primary-strong);
  border-style: solid;
  background: color-mix(in srgb, var(--ats-primary) 8%, var(--ats-panel));
  transform: scale(1.02);
}
.drop-zone h3 {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ats-text);
  font-weight: 700;
}
.drop-zone p {
  margin: 0.2rem 0 0;
  color: var(--ats-muted);
  font-size: 0.8rem;
}
.drop-zone .drop-zone-browse-btn {
  margin-top: 0.8rem;
  border-radius: 8px;
  border: 1px solid var(--ats-border);
  background: var(--ats-panel);
  color: var(--ats-text);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.drop-zone .drop-zone-browse-btn:hover {
  border-color: var(--ats-primary);
  color: var(--ats-primary-strong);
  background: color-mix(in srgb, var(--ats-primary) 5%, var(--ats-panel));
  transform: translateY(-1px);
}
.drop-zone .accepted-types {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--ats-panel-soft);
  color: var(--ats-muted);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.file-list {
  margin-top: 0.25rem;
}
.file-list .file-list-title {
  margin: 0 0 0.55rem;
  color: var(--ats-text);
  font-size: 0.9rem;
  font-weight: 700;
}

#bulk-file-items {
  display: grid;
  gap: 0.55rem;
  max-height: 290px;
  overflow: auto;
  padding-right: 0.1rem;
}

.file-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: start;
  padding: 0.72rem 0.75rem;
  border: 1px solid var(--ats-border);
  border-radius: 10px;
  background: var(--ats-panel);
}
.file-item.ready {
  background: var(--ats-panel-soft);
}
.file-item.uploading {
  border-color: var(--ats-primary-soft);
  background: var(--ats-panel-soft);
}
.file-item.processing {
  border-color: var(--ats-info, #3b82f6);
  background: rgba(59, 130, 246, 0.06);
}
.file-item.processing .file-icon {
  color: var(--ats-info, #3b82f6);
}
.file-item.completed {
  border-color: var(--ats-success);
  background: rgba(16, 185, 129, 0.05);
}
.file-item.completed .file-icon {
  color: var(--ats-success);
}
.file-item.error {
  border-color: var(--ats-danger);
  background: var(--ats-danger-soft);
}
.file-item.error .file-icon {
  color: var(--ats-danger);
}
.file-item .file-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--ats-panel);
  border: 1px solid var(--ats-border);
  color: var(--ats-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}
.file-item .file-info {
  min-width: 0;
}
.file-item .file-info .file-name {
  color: var(--ats-text);
  font-size: 0.9rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.file-item .file-info .file-size {
  margin-top: 0.12rem;
  color: var(--ats-muted);
  font-size: 0.76rem;
}
.file-item .file-info .file-error {
  margin-top: 0.3rem;
  color: var(--ats-danger);
  font-size: 0.78rem;
  line-height: 1.35;
}
.file-item .file-info .file-status {
  margin-top: 0.3rem;
  color: var(--ats-success);
  font-size: 0.78rem;
  font-weight: 600;
}
.file-item .file-info .file-status--pending {
  color: var(--ats-info, #3b82f6);
}
.file-item .remove-btn {
  border: 1px solid var(--ats-border);
  background: var(--ats-panel);
  color: var(--ats-muted);
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
}
.file-item .remove-btn:hover {
  color: var(--ats-danger);
  border-color: var(--ats-danger);
  background: var(--ats-danger-soft);
}

.progress-bar {
  margin-top: 0.42rem;
  height: 6px;
  border-radius: 999px;
  background: var(--ats-border);
  overflow: hidden;
}
.progress-bar .progress-fill {
  height: 100%;
  border-radius: inherit;
  background: var(--ats-gradient);
  position: relative;
  transition: width 0.16s ease;
}
.progress-bar .progress-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
  animation: bulk-shimmer 1.2s linear infinite;
}

.bulk-upload-footer {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  border-top: 1px solid var(--ats-border);
  background: var(--ats-panel-soft);
  padding: 1rem 1.2rem;
}
.bulk-upload-footer .btn-primary,
.bulk-upload-footer .btn-secondary {
  border-radius: 8px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.6rem 1rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.bulk-upload-footer .btn-primary:disabled,
.bulk-upload-footer .btn-secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.bulk-upload-footer .btn-primary {
  background: var(--ats-gradient);
  color: #fff;
  box-shadow: 0 4px 12px var(--ats-shadow-soft);
}
.bulk-upload-footer .btn-primary:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px var(--ats-shadow-strong);
  background: var(--ats-gradient-hover);
}
.bulk-upload-footer .btn-secondary {
  background: var(--ats-panel);
  color: var(--ats-text);
  border-color: var(--ats-border);
  box-shadow: 0 1px 2px var(--ats-shadow-soft);
}
.bulk-upload-footer .btn-secondary:hover {
  background: var(--ats-panel-soft);
  border-color: var(--ats-border-strong);
}

.spin {
  animation: bulk-spin 0.9s linear infinite;
  display: inline-block;
}

@keyframes bulk-modal-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes bulk-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes bulk-shimmer {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
.bulk-hot-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 9999;
  width: min(380px, 100vw - 2rem);
  border-radius: 12px;
  border: 1px solid var(--ats-border);
  background: #fff;
  box-shadow: 0 14px 42px rgba(2, 6, 23, 0.22);
  color: var(--ats-text);
}

.bulk-hot-toast.is-hidden {
  display: none;
}

.bulk-hot-toast.is-info {
  border-color: var(--ats-info, #3b82f6);
}

.bulk-hot-toast.is-success {
  border-color: var(--ats-success);
}

.bulk-hot-toast.is-error {
  border-color: var(--ats-danger);
}

.bulk-hot-toast__content {
  padding: 0.82rem 0.9rem;
  display: grid;
  gap: 0.5rem;
}

.bulk-hot-toast__title {
  font-size: 0.92rem;
  font-weight: 700;
}

.bulk-hot-toast__message {
  font-size: 0.82rem;
  color: var(--ats-muted);
  line-height: 1.4;
}

.bulk-hot-toast__spinner {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 3px solid var(--ats-border);
  border-top-color: var(--ats-info, #3b82f6);
  animation: bulk-spin 0.9s linear infinite;
}

.bulk-hot-toast__spinner.is-hidden {
  display: none;
}

.bulk-hot-toast__progress {
  height: 6px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--ats-panel-soft);
  border: 1px solid var(--ats-border);
}

.bulk-hot-toast__progress.is-hidden {
  display: none;
}

.bulk-hot-toast__progress-fill {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--ats-primary), var(--ats-primary-strong));
  transition: width 0.2s ease;
}

.bulk-hot-toast__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
}

.bulk-hot-toast__action,
.bulk-hot-toast__close {
  border: 1px solid var(--ats-border);
  background: var(--ats-panel-soft);
  color: var(--ats-text);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.bulk-hot-toast__action:hover,
.bulk-hot-toast__close:hover {
  border-color: var(--ats-border-strong);
  background: var(--ats-panel);
}

.bulk-hot-toast__action {
  padding: 0.34rem 0.58rem;
  font-size: 0.76rem;
  font-weight: 600;
}

.bulk-hot-toast__action.is-hidden {
  display: none;
}

.bulk-hot-toast__close {
  width: 28px;
  height: 28px;
  font-size: 1rem;
  line-height: 1;
}

.candidats-page {
  padding: 2rem;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.page-header h1 {
  margin: 0;
  font-size: 2rem;
  color: #1e293b;
}
@media (max-width: 768px) {
  .page-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

.bulk-upload-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  background: #FF6BE8;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.bulk-upload-btn:hover {
  background-color: #FE3C72;
}
.bulk-upload-btn svg {
  font-size: 1.25rem;
}

.candidat-details-modal {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.candidat-details-modal .modal-profile-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}
@media (max-width: 768px) {
  .candidat-details-modal .modal-profile-header {
    flex-direction: column;
  }
}
.candidat-details-modal .modal-profile-header .avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #f1f5f9;
  color: #475569;
  font-size: 1.25rem;
  font-weight: 600;
  flex-shrink: 0;
  text-transform: uppercase;
}
.candidat-details-modal .modal-profile-header .info-container {
  flex: 1;
  min-width: 0;
}
.candidat-details-modal .modal-profile-header .info-container .top-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
}
.candidat-details-modal .modal-profile-header .info-container .top-row .identity h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
  font-family: "Poppins", sans-serif;
}
.candidat-details-modal .modal-profile-header .info-container .top-row .identity p {
  color: #6b7280;
  margin-top: 0.25rem;
  font-size: 0.875rem;
}
.candidat-details-modal .modal-profile-header .info-container .top-row .header-actions {
  display: flex;
  gap: 0.5rem;
}
.candidat-details-modal .modal-profile-header .info-container .top-row .header-actions .action-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 8px;
  font-size: 1.25rem;
  text-decoration: none;
  transition: all 0.15s;
}
.candidat-details-modal .modal-profile-header .info-container .top-row .header-actions .action-icon.cv {
  background: #fef2f2;
  color: #dc2626;
}
.candidat-details-modal .modal-profile-header .info-container .top-row .header-actions .action-icon.cv:hover {
  background: #fee2e2;
}
.candidat-details-modal .modal-profile-header .info-container .top-row .header-actions .action-icon.linkedin {
  background: #eff6ff;
  color: #0077b5;
}
.candidat-details-modal .modal-profile-header .info-container .top-row .header-actions .action-icon.linkedin:hover {
  background: #dbeafe;
}
.candidat-details-modal .modal-profile-header .info-container .contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: #6b7280;
}
.candidat-details-modal .modal-profile-header .info-container .contact-info a,
.candidat-details-modal .modal-profile-header .info-container .contact-info span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  text-decoration: none;
  color: inherit;
}
.candidat-details-modal .modal-profile-header .info-container .contact-info a:hover,
.candidat-details-modal .modal-profile-header .info-container .contact-info span:hover {
  color: #111827;
}
.candidat-details-modal .modal-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .candidat-details-modal .modal-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
  }
}
.candidat-details-modal .modal-grid .left-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.candidat-details-modal .modal-grid .right-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.candidat-details-modal .section-box.metrics {
  background: #f9fafb;
  border-radius: 8px;
  padding: 1rem;
}
.candidat-details-modal .section-box.metrics .metrics-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.candidat-details-modal .section-box.metrics .metric-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
}
.candidat-details-modal .section-box.metrics .metric-item .label {
  color: #6b7280;
}
.candidat-details-modal .section-box.metrics .metric-item .value {
  font-weight: 600;
  color: #111827;
}
.candidat-details-modal .section-box.metrics .metric-item .value.highlight {
  color: #ff66c4;
  font-size: 1.125rem;
}
.candidat-details-modal .section-box.ai-analysis {
  background: #f0f9ff;
  border-radius: 8px;
  padding: 1rem;
  border-left: 3px solid #3b82f6;
}
.candidat-details-modal .section-box.ai-analysis p {
  font-size: 0.8125rem;
  color: #1e40af;
  line-height: 1.6;
  margin: 0;
}
.candidat-details-modal .section-box.score-breakdown {
  background: #fff;
  border-radius: 8px;
  padding: 1rem;
  border: 1px solid #e5e7eb;
}
.candidat-details-modal .section-box.score-breakdown .score-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 480px) {
  .candidat-details-modal .section-box.score-breakdown .score-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
.candidat-details-modal .section-box.score-breakdown .score-item .score-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #6b7280;
  text-transform: uppercase;
  margin-bottom: 0.375rem;
}
.candidat-details-modal .section-box.score-breakdown .score-item .progress-bar {
  height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
  overflow: hidden;
}
.candidat-details-modal .section-box.score-breakdown .score-item .progress-bar .fill {
  height: 100%;
  border-radius: 3px;
}
.candidat-details-modal .section-box.score-breakdown .score-item .progress-bar .fill.skills {
  background: #3b82f6;
}
.candidat-details-modal .section-box.score-breakdown .score-item .progress-bar .fill.experience {
  background: #22c55e;
}
.candidat-details-modal .section-box.score-breakdown .score-item .progress-bar .fill.education {
  background: #8b5cf6;
}
.candidat-details-modal .section-box.score-breakdown .score-item .progress-bar .fill.location {
  background: #f59e0b;
}
.candidat-details-modal .section-box.score-breakdown .score-item .progress-bar .fill.culture {
  background: #ec4899;
}
.candidat-details-modal .section-box.missing-reqs {
  background: #fef2f2;
  border-radius: 8px;
  padding: 1rem;
  border-left: 3px solid #ef4444;
}
.candidat-details-modal .section-title {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9ca3af;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.candidat-details-modal .section-title .icon {
  font-size: 1rem;
  opacity: 0.7;
}
.candidat-details-modal .tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.candidat-details-modal .tags-container .tag {
  padding: 0.25rem 0.5rem;
  background: #f3f4f6;
  color: #374151;
  border-radius: 4px;
  font-size: 0.75rem;
}
.candidat-details-modal .documents-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.candidat-details-modal .documents-list .doc-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #374151;
  padding: 0.5rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s;
}
.candidat-details-modal .documents-list .doc-link:hover {
  background: #f3f4f6;
}
.candidat-details-modal .analysis-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) {
  .candidat-details-modal .analysis-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.candidat-details-modal .analysis-grid .list-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.candidat-details-modal .analysis-grid .list-container ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #4b5563;
  line-height: 1.5;
}
.candidat-details-modal .analysis-grid .list-container ul li .icon {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.875rem;
}
.candidat-details-modal .analysis-grid .list-container ul li .icon.check {
  color: #22c55e;
}
.candidat-details-modal .analysis-grid .list-container ul li .icon.cross {
  color: #ef4444;
}
.candidat-details-modal .analysis-grid .list-container ul li .icon.dot {
  display: block;
  width: 5px;
  height: 5px;
  background: #ef4444;
  border-radius: 50%;
  margin-top: 6px;
}
.candidat-details-modal .recommendation-box {
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}
.candidat-details-modal .recommendation-box h4 {
  font-size: 0.75rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}
.candidat-details-modal .recommendation-box p {
  font-size: 0.8125rem;
  color: #6b7280;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

/*# sourceMappingURL=main.css.map */
