@charset "UTF-8";
:root {
  --brand-primary: #FE3CD3;
  --brand-primary-dark: #FE3C72;
  --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: #FE3CD3;
  --ats-accent: #FE3C72;
  --ats-primary-strong: #FE3C72;
  --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: #FE3CD3;
  --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%, #FE3CD3 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(254, 60, 211, 0.18);
  color: #1e293b;
}

@font-face {
  font-family: "Cafery";
  src: url("../../assets/cafery.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
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(254, 60, 211, 0.1);
  color: #FF6BE8;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(254, 60, 211, 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(254, 60, 211, 0.4);
}
.hero .hero-content .cta-group .btn.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 35px rgba(254, 60, 211, 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; */
  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;
  font-family: "Cafery", sans-serif;
  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: #FE3C72;
  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-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: #FE3C72;
}
.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;
}
.site-header .actions.mobile-only .lang-switch {
  width: fit-content;
}
.site-header .actions .lang-switch .lang-switch__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.28rem;
  width: auto;
  min-width: 0;
  padding: 0;
  border: none;
  border-radius: 999px;
  background-color: transparent;
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  color: #334155;
  cursor: pointer;
  transition: color 0.2s ease;
}
.site-header .actions .lang-switch .lang-switch__trigger:focus {
  outline: none;
  box-shadow: none;
}
.site-header .actions .lang-switch.open .lang-switch__trigger {
  background-color: transparent;
}
.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.open .lang-switch__chevron {
  transform: rotate(180deg);
}
.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.mobile-only .lang-switch .lang-switch__menu {
  left: 0;
  right: auto;
  transform: none;
}
.site-header .actions .lang-switch.open .lang-switch__menu {
  display: flex;
}
.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 .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;
}
.site-header .actions .btn.btn-primary {
  background: linear-gradient(to right, #FE3C72, #FE3CD3);
  color: #fff;
}
.site-header .actions .btn.btn-primary:hover {
  background-color: #FE3CD3;
}
.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;
}

.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(254, 60, 211, 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: #FE3C72;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.how-it-works {
  padding: 6rem 1rem;
  background: linear-gradient(to bottom, #ffffff, #fdf2f8);
  position: relative;
  overflow: hidden;
}
.how-it-works .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.how-it-works .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.how-it-works .section-header h2 {
  font-family: "Cafery", sans-serif;
  font-size: 3rem;
  color: #1e293b;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.how-it-works .section-header p {
  color: #475569;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.how-it-works .steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .how-it-works .steps-grid {
    grid-template-columns: 1fr;
  }
}
.how-it-works .step-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.05);
}
.how-it-works .step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.12);
  border-color: rgba(254, 60, 211, 0.2);
}
.how-it-works .step-card:hover .icon-wrapper {
  transform: scale(1.1);
  color: #FE3CD3;
}
.how-it-works .step-card .step-number {
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  font-family: "Cafery", sans-serif;
  pointer-events: none;
}
.how-it-works .step-card .icon-wrapper {
  font-size: 3rem;
  color: #FE3CD3;
  margin-bottom: 1.5rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 4px 6px rgba(254, 60, 211, 0.25));
}
.how-it-works .step-card h3 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 1rem;
  font-weight: 600;
}
.how-it-works .step-card p {
  color: #475569;
  line-height: 1.6;
  font-size: 0.95rem;
}

.demo-request-section {
  padding: 6rem 1rem;
  background: linear-gradient(135deg, #fdf2f8 0%, white 100%);
  position: relative;
  overflow: hidden;
}
.demo-request-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: radial-gradient(#FE3CD3 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.05;
  z-index: 1;
  pointer-events: none;
}
.demo-request-section .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.demo-request-section .demo-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  background: linear-gradient(135deg, rgba(254, 60, 211, 0.2) 0%, rgba(254, 60, 114, 0.2) 100%);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  padding: 4rem;
  overflow: hidden;
}
@media (max-width: 992px) {
  .demo-request-section .demo-card {
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 3rem;
  }
}
.demo-request-section .demo-content {
  flex: 1;
  max-width: 540px;
  text-align: left;
}
.demo-request-section .demo-content h2 {
  font-family: "Cafery", sans-serif;
  font-size: 3.2rem;
  color: #1e293b;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: left;
}
.demo-request-section .demo-content .subtitle {
  font-size: 1.25rem;
  color: #475569;
  margin-bottom: 2.5rem;
  font-weight: 500;
}
.demo-request-section .demo-content .benefits-list {
  display: flex;
  justify-content: flex-start;
  gap: 2.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.demo-request-section .demo-content .benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  color: #1e293b;
  font-weight: 600;
}
.demo-request-section .demo-content .benefits-list li .icon {
  color: #22c55e;
  font-size: 1.25rem;
  filter: drop-shadow(0 2px 4px rgba(34, 197, 94, 0.3));
}
.demo-request-section .demo-content .cta-container .btn-demo {
  display: inline-block;
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px -5px rgba(254, 60, 211, 0.4);
}
.demo-request-section .demo-content .cta-container .btn-demo:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px -5px rgba(254, 60, 211, 0.5);
}
.demo-request-section .demo-image {
  flex: 1;
}
.demo-request-section .demo-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.features-section {
  padding: 6rem 1rem;
  background: #fdf2f8;
  position: relative;
  overflow: hidden;
}
.features-section::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(254, 60, 211, 0.1) 0%, transparent 70%);
  z-index: 0;
  filter: blur(80px);
}
.features-section .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .features-section .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.features-section .features-content h2 {
  font-family: "Cafery", sans-serif;
  font-size: 3rem;
  color: #1e293b;
  margin-bottom: 2rem;
  line-height: 1.2;
}
.features-section .features-content h2 span {
  background: linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.features-section .features-content .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
}
.features-section .features-content .features-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #475569;
  font-size: 1.1rem;
}
.features-section .features-content .features-list li .icon {
  color: #FE3CD3;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.features-section .features-content .btn-primary {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(254, 60, 211, 0.3);
}
.features-section .features-content .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(254, 60, 211, 0.4);
}
.features-section .features-image {
  position: relative;
}
.features-section .features-image .image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(234, 132, 245, 0.1);
}
.features-section .features-image .image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.4), transparent);
  pointer-events: none;
}
.features-section .features-image .image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.features-section .features-image .image-wrapper:hover img {
  transform: scale(1.02);
}
.features-section .features-image::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(254, 60, 211, 0.3);
  border-radius: 20px;
  z-index: -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(254, 60, 211, 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, #FE3CD3, #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(254, 60, 211, 0.04));
  border: 2px solid #FE3CD3;
  box-shadow: 0 20px 40px rgba(254, 60, 211, 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(254, 60, 211, 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(254, 60, 211, 0.08);
  border-color: rgba(254, 60, 211, 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: #FE3CD3;
  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(254, 60, 211, 0.05);
  border: 1px solid rgba(254, 60, 211, 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: #FE3CD3;
}
.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 #FE3CD3;
  color: #FE3CD3;
  background: transparent;
}
.pricing-page .pricing-card .btn-pricing.btn-outline:hover {
  background: #FE3CD3;
  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(254, 60, 211, 0.4);
}
.pricing-page .pricing-card .btn-pricing.btn-primary:hover {
  box-shadow: 0 10px 25px -5px rgba(254, 60, 211, 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;
}

@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;
  }
}
.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: #FE3CD3;
  box-shadow: 0 0 0 3px rgba(254, 60, 211, 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(254, 60, 211, 0.3);
}
.form-side .form-container .btn-signup:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(254, 60, 211, 0.4);
}
.form-side .form-container .login-link {
  text-align: center;
  margin-top: 2rem;
  color: #475569;
}
.form-side .form-container .login-link a {
  color: #FE3CD3;
  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: #FE3CD3;
  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(254, 60, 211, 0.2), 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #FE3CD3;
}
.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, #FE3CD3, #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, #FE3CD3, #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(254, 60, 211, 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: #FE3CD3;
  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: #FE3CD3;
  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: #FE3CD3;
}
.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(254, 60, 211, 0.08);
  color: rgb(253.7397959184, 9.2602040816, 199.5510204082);
  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-family: "Cafery", sans-serif;
  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-family: "Cafery", sans-serif;
  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(254, 60, 211, 0.16), transparent 66%), radial-gradient(900px 240px at 90% 6%, rgba(254, 60, 114, 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(254, 60, 211, 0.2);
  box-shadow: 0 18px 45px rgba(254, 60, 114, 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: #FE3CD3;
  box-shadow: 0 0 0 4px rgba(254, 60, 211, 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(254, 60, 114, 0.25);
}
.profilium-demo__submit:hover {
  background: linear-gradient(135deg, #FE3C72 0%, #FE3CD3 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: #FE3C72;
  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, #FE3CD3, #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: #FE3CD3;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.public-jobs-page .jobs-back-link:hover {
  color: color-mix(in srgb, #FE3CD3 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(254, 60, 211, 0.1);
  color: #FE3CD3;
  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(254, 60, 211, 0.08);
  border-color: rgba(254, 60, 211, 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: #FE3CD3;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.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: #FE3CD3;
  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(254, 60, 211, 0.4);
}
.public-jobs-page .public-job-card .job-actions .job-btn.job-btn--primary:hover {
  box-shadow: 0 10px 25px -5px rgba(254, 60, 211, 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: #FE3CD3;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.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(254, 60, 211, 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(254, 60, 211, 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;
}

.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: #FE3CD3;
  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: #FE3CD3;
  margin: 0 auto 0.7rem;
  animation: cv-spin 0.9s linear infinite;
}
.dropzone .uploading-state p {
  margin-bottom: 0;
  color: #FE3CD3;
  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: #FE3CD3;
}

.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: #FE3CD3;
}

.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(254, 60, 211, 0.1);
  color: #FE3CD3;
}
.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(254, 60, 211, 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: #FE3CD3;
}
.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: #FE3CD3;
  border: none;
  color: white;
}
.experience-form .form-actions .save-btn:hover {
  background: rgb(253.8698979592, 34.6301020408, 205.2755102041);
}
.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(254, 60, 211, 0.12);
  color: #FE3CD3;
}
.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(254, 60, 211, 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: #FE3CD3;
}
.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: #FE3CD3;
  border-color: #FE3CD3;
  color: white;
}
.step-item.active .step-circle {
  box-shadow: 0 0 0 8px rgba(254, 60, 211, 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: #FE3C72;
  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: #FE3C72;
  margin-bottom: 2rem;
  background: rgba(254, 60, 114, 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: #FE3C72;
}
.psycho-test-container .btn-start {
  background: #FE3C72;
  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(254, 60, 114, 0.3);
}
.psycho-test-container .btn-start:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(254, 60, 114, 0.4);
}
.psycho-test-container .btn-start:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 4px 15px rgba(254, 60, 114, 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: #FE3C72;
  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: #FE3C72;
  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: #FE3C72;
}
.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(254, 60, 114, 0.25);
  border-bottom-color: #FE3C72;
}
.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: #FE3C72;
  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: #FE3C72;
  box-shadow: 0 10px 24px rgba(254, 60, 114, 0.18);
  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: #FE3C72;
}
.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: #FE3C72;
  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(254, 60, 114, 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: #FE3C72;
}
.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: #FE3C72;
  color: white;
}
.psycho-test-container .results-card .results-actions button.btn-secondary:hover {
  background: rgb(253.7397959184, 9.2602040816, 77.3112244898);
}

.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(254, 60, 211, 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: #FE3CD3;
  box-shadow: 0 0 0 6px rgba(254, 60, 211, 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(254, 60, 211, 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(254, 60, 211, 0.12);
  border: 1px solid rgba(254, 60, 211, 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(254, 60, 211, 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(254, 60, 211, 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(254, 60, 211, 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(254, 60, 211, 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(254, 60, 211, 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(254, 60, 211, 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: 3rem 1.5rem 4rem;
  background: radial-gradient(circle at top left, rgba(254, 60, 114, 0.16), transparent 28%), radial-gradient(circle at top right, rgba(107, 0, 201, 0.2), transparent 24%), linear-gradient(180deg, #f8f4ff 0%, #fff8fb 48%, #f7f8fc 100%);
  overflow: hidden;
}
.psycho-test-container.psycho-runner-shell .psycho-runner-layout {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  display: grid;
  gap: 1.4rem;
}
.psycho-test-container.psycho-runner-shell .psycho-runner-header {
  display: grid;
  gap: 0.8rem;
  justify-items: center;
  text-align: center;
  margin-top: 0.2rem;
}
.psycho-test-container.psycho-runner-shell .psycho-runner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(107, 0, 201, 0.12);
  color: #7c3aed;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(76, 29, 149, 0.08);
}
.psycho-test-container.psycho-runner-shell .psycho-runner-title {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -0.04em;
  color: #170017;
}
.psycho-test-container.psycho-runner-shell .psycho-runner-subtitle {
  max-width: 48rem;
  margin: 0;
  color: #5b5568;
  font-size: 1rem;
  line-height: 1.7;
}
.psycho-test-container.psycho-runner-shell .psycho-runner-stage {
  display: grid;
  gap: 1.25rem;
  padding: 1.15rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 38px rgba(23, 0, 23, 0.06);
}
.psycho-test-container.psycho-runner-shell .progress-header {
  width: 100%;
  max-width: none;
  margin-bottom: 0;
  padding: 0.3rem 0.35rem 0;
}
.psycho-test-container.psycho-runner-shell .progress-header .progress-info {
  margin-bottom: 0.7rem;
  color: #6b6478;
  font-size: 0.9rem;
  font-weight: 700;
}
.psycho-test-container.psycho-runner-shell .progress-header .progress-bar-bg {
  height: 10px;
  background: rgba(148, 163, 184, 0.18);
}
.psycho-test-container.psycho-runner-shell .progress-header .progress-bar-bg .progress-bar-fill {
  background: linear-gradient(90deg, #fe3c72 0%, #7c3aed 100%);
}
.psycho-test-container.psycho-runner-shell .card-area {
  max-width: none;
  min-height: 0;
  margin-bottom: 0;
}
.psycho-test-container.psycho-runner-shell .question-card {
  min-height: 260px;
  align-items: stretch;
  justify-content: flex-start;
  padding: 1.4rem 1.45rem 1.55rem;
  border-radius: 28px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 249, 255, 0.98));
  box-shadow: 0 20px 52px rgba(15, 23, 42, 0.08);
  text-align: left;
}
.psycho-test-container.psycho-runner-shell .question-card h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: #170017;
}
.psycho-test-container.psycho-runner-shell .psycho-runner-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.psycho-test-container.psycho-runner-shell .psycho-runner-card-chip,
.psycho-test-container.psycho-runner-shell .psycho-runner-card-index {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}
.psycho-test-container.psycho-runner-shell .psycho-runner-card-chip {
  background: #f3e8ff;
  color: #7c3aed;
  border: 1px solid rgba(124, 58, 237, 0.12);
}
.psycho-test-container.psycho-runner-shell .psycho-runner-card-index {
  background: #fff1f2;
  color: #e11d48;
  border: 1px solid rgba(225, 29, 72, 0.12);
}
.psycho-test-container.psycho-runner-shell .controls-area {
  width: 100%;
  max-width: none;
  gap: 1rem;
}
.psycho-test-container.psycho-runner-shell .likert-grid {
  max-width: none;
}
.psycho-test-container.psycho-runner-shell .likert-grid .likert-btn {
  min-height: 72px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  font-size: 0.92rem;
  line-height: 1.35;
  transform: none;
  transition: none;
}
.psycho-test-container.psycho-runner-shell .likert-grid .likert-btn.is-selected {
  border-color: rgba(124, 58, 237, 0.32);
  outline: 3px solid rgba(124, 58, 237, 0.12);
  background: #f3e8ff;
  box-shadow: 0 20px 36px rgba(124, 58, 237, 0.18);
  color: #4c1d95;
}
.psycho-test-container.psycho-runner-shell .sjt-options-list {
  max-width: none;
}
.psycho-test-container.psycho-runner-shell .sjt-options-list .sjt-option-btn {
  align-items: flex-start;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.96);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
  transform: none;
  transition: none;
}
.psycho-test-container.psycho-runner-shell .sjt-options-list .sjt-option-btn .option-letter {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fe3c72 0%, #7c3aed 100%);
  font-size: 0.95rem;
}
.psycho-test-container.psycho-runner-shell .sjt-options-list .sjt-option-btn .option-text {
  font-size: 1rem;
  line-height: 1.55;
}
.psycho-test-container.psycho-runner-shell .sjt-options-list .sjt-option-btn.is-selected {
  border-color: rgba(124, 58, 237, 0.28);
  outline: 3px solid rgba(124, 58, 237, 0.12);
  background: #f3e8ff;
  box-shadow: 0 18px 36px rgba(124, 58, 237, 0.14);
}
.psycho-test-container.psycho-runner-shell .sjt-options-list .sjt-option-btn.is-selected .option-letter {
  box-shadow: 0 12px 24px rgba(124, 58, 237, 0.22);
}
.psycho-test-container.psycho-runner-shell .sjt-options-list .sjt-option-btn.is-selected .option-text {
  color: #170017;
  font-weight: 700;
}
.psycho-test-container.psycho-runner-shell .keyboard-hint {
  width: 100%;
  min-height: 1.5rem;
  margin-top: 0;
  color: #e11d48;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}
.psycho-test-container.psycho-runner-shell .psycho-runner-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.15rem 0.2rem 0;
}
.psycho-test-container.psycho-runner-shell .psycho-runner-footer-note {
  margin: 0;
  color: #6b6478;
  font-size: 0.9rem;
  line-height: 1.6;
}
.psycho-test-container.psycho-runner-shell .btn-start {
  min-width: 180px;
  padding: 0.95rem 1.6rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #fe3c72 0%, #7c3aed 100%);
  box-shadow: 0 20px 36px rgba(124, 58, 237, 0.22);
  font-size: 1rem;
  font-weight: 800;
}
.psycho-test-container.psycho-runner-shell .btn-start:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 24px 40px rgba(124, 58, 237, 0.28);
}
.psycho-test-container.psycho-runner-shell .psycho-runner-trust {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  width: min(100%, 980px);
  margin-top: 0.95rem;
}
.psycho-test-container.psycho-runner-shell .psycho-runner-trust-item {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: #6b6478;
  font-size: 0.82rem;
  font-weight: 700;
}
.psycho-test-container.psycho-runner-shell .psycho-runner-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(124, 58, 237, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(124, 58, 237, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.45;
  pointer-events: none;
}
.psycho-test-container.psycho-runner-shell .psycho-runner-blob {
  position: absolute;
  border-radius: 999px;
  opacity: 0.32;
  pointer-events: none;
}
.psycho-test-container.psycho-runner-shell .psycho-runner-blob-a {
  width: 320px;
  height: 320px;
  top: 3rem;
  left: -4rem;
  background: radial-gradient(circle, rgba(254, 60, 114, 0.26), transparent 70%);
}
.psycho-test-container.psycho-runner-shell .psycho-runner-blob-b {
  width: 360px;
  height: 360px;
  top: 2rem;
  right: -5rem;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.24), transparent 70%);
}
@media (max-width: 1024px) {
  .psycho-test-container.psycho-runner-shell {
    padding-inline: 1rem;
  }
  .psycho-test-container.psycho-runner-shell .psycho-runner-stage {
    border-radius: 26px;
    padding: 0.95rem;
  }
  .psycho-test-container.psycho-runner-shell .question-card {
    padding: 1.15rem 1.1rem 1.2rem;
  }
  .psycho-test-container.psycho-runner-shell .psycho-runner-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .psycho-test-container.psycho-runner-shell .btn-start {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .psycho-test-container.psycho-runner-shell {
    padding-top: 2rem;
  }
  .psycho-test-container.psycho-runner-shell .psycho-runner-title {
    font-size: 2rem;
  }
  .psycho-test-container.psycho-runner-shell .psycho-runner-card-meta {
    align-items: stretch;
  }
  .psycho-test-container.psycho-runner-shell .psycho-runner-card-chip,
  .psycho-test-container.psycho-runner-shell .psycho-runner-card-index {
    justify-content: center;
    width: 100%;
  }
  .psycho-test-container.psycho-runner-shell .likert-grid {
    grid-template-columns: 1fr;
  }
  .psycho-test-container.psycho-runner-shell .sjt-options-list .sjt-option-btn {
    gap: 0.85rem;
  }
}

@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(254, 60, 211, 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(254, 60, 211, 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-top: calc(80px + 28px);
  padding-right: 1rem;
  padding-bottom: 48px;
  padding-left: 1rem;
  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: 1180px;
  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: 22px;
  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-family: "Cafery", sans-serif;
  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: 24px;
  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 {
  border: 1px solid #ede8f5;
  border-radius: 14px;
  background: #fcfbfe;
  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: #170017;
  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: 16px;
  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: 18px;
  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: #FE3CD3;
  box-shadow: 0 0 0 2px rgba(254, 60, 211, 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(254, 60, 211, 0.1);
  color: #FE3CD3;
}
.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.dashboard-container {
  --admin-panel: var(--ats-panel, #ffffff);
  --admin-panel-soft: var(--ats-panel-soft, #fff8fd);
  --admin-border: var(--ats-border, rgba(254, 60, 211, 0.24));
  --admin-border-strong: var(--ats-border-strong, rgba(254, 60, 114, 0.4));
  --admin-text: var(--ats-text, #1e293b);
  --admin-muted: var(--ats-muted, #475569);
  --admin-subtle: var(--ats-muted-soft, #94a3b8);
  --admin-primary: var(--ats-focus, #FE3CD3);
  --admin-primary-dark: var(--ats-primary-strong, #FE3C72);
  --admin-ok: #22c55e;
  --admin-warn: #f59e0b;
  --admin-shadow: var(--ats-shadow-soft, rgba(23, 0, 23, 0.1));
  color: var(--admin-text);
}

.admin-shell .dashboard-page {
  max-width: 1240px;
}

.admin-shell .admin-header {
  align-items: flex-start;
}
.admin-shell .admin-header h1 {
  margin-top: 0.45rem;
  font-family: "Nunito", sans-serif;
  color: var(--admin-text);
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.015em;
}
.admin-shell .admin-header p {
  margin-top: 0.55rem;
  color: var(--admin-muted);
  max-width: 760px;
}

.admin-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  background: var(--ats-primary-soft, rgba(254, 60, 211, 0.14));
  color: var(--admin-primary-dark);
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.admin-shell .admin-link {
  background: var(--admin-panel);
  color: var(--admin-primary-dark);
  border: 1px solid var(--admin-border);
  font-weight: 700;
  box-shadow: 0 8px 18px var(--admin-shadow);
}
.admin-shell .admin-link:hover {
  border-color: var(--admin-border-strong);
  color: var(--admin-primary);
}

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

.admin-card {
  background: var(--admin-panel);
  border: 1px solid var(--admin-border);
  border-radius: 14px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  box-shadow: 0 10px 24px var(--admin-shadow);
}
.admin-card h2 {
  margin: 0;
  color: var(--admin-text);
  font-family: "Nunito", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.admin-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
}

.admin-card__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(254, 60, 211, 0.14);
  color: var(--admin-primary-dark);
}

.admin-card__meta {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--admin-subtle);
  text-transform: uppercase;
  letter-spacing: 0.035em;
}

.admin-card__desc {
  margin: 0;
  color: var(--admin-muted);
  line-height: 1.58;
}

.admin-card__action {
  margin-top: auto;
  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;
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid var(--admin-border);
  color: var(--admin-primary-dark);
  background: var(--admin-panel-soft);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}
.admin-card__action:hover {
  border-color: var(--admin-primary);
  color: var(--admin-primary);
  background: rgba(254, 60, 211, 0.08);
}

.admin-shell .admin-status {
  margin-top: 0.95rem;
  border: 1px solid var(--admin-border);
  background: var(--admin-panel);
  box-shadow: 0 8px 18px var(--admin-shadow);
}
.admin-shell .admin-status h2 {
  font-family: "Nunito", sans-serif;
  margin-bottom: 0.8rem;
}
.admin-shell .admin-status p {
  color: var(--admin-muted);
}

.admin-status-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.admin-status-item {
  border: 1px solid var(--admin-border);
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  background: var(--admin-panel-soft);
}

.admin-status-item__label {
  color: var(--admin-muted);
  font-weight: 600;
}

.admin-status-item__value {
  font-weight: 700;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.admin-status-item__value--ok {
  color: var(--admin-ok);
}

.admin-status-item__value--warn {
  color: var(--admin-warn);
}

.admin-shell .admin-empty {
  border: 1px dashed var(--admin-border-strong);
  background: var(--admin-panel);
}
.admin-shell .admin-empty h2 {
  font-family: "Nunito", sans-serif;
  color: var(--admin-text);
  margin-bottom: 0.35rem;
}
.admin-shell .admin-empty p {
  color: var(--admin-muted);
}

.admin-empty-links {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.admin-text-link {
  text-decoration: none;
  border: 1px solid var(--admin-border);
  border-radius: 999px;
  padding: 0.4rem 0.72rem;
  background: var(--admin-panel-soft);
  color: var(--admin-primary-dark);
  font-size: 0.86rem;
  font-weight: 700;
}
.admin-text-link:hover {
  border-color: var(--admin-primary);
  color: var(--admin-primary);
}

.admin-shell .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.7rem;
  margin-bottom: 0.85rem;
}

.admin-metric {
  background: var(--admin-panel);
  border: 1px solid var(--admin-border);
  border-radius: 12px;
  padding: 0.85rem;
  box-shadow: 0 8px 18px var(--admin-shadow);
}

.admin-metric__label {
  display: block;
  color: var(--admin-subtle);
  font-size: 0.8rem;
  font-weight: 600;
}

.admin-metric__value {
  margin-top: 0.35rem;
  display: block;
  color: var(--admin-text);
  font-size: 1.5rem;
  line-height: 1.05;
}

.admin-toolbar {
  margin-bottom: 0.9rem;
}

.admin-search {
  border: 1px solid var(--admin-border);
  border-radius: 12px;
  background: var(--admin-panel);
  box-shadow: 0 8px 18px var(--admin-shadow);
  padding: 0.45rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.45rem;
}

.admin-search__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--admin-primary-dark);
  background: rgba(254, 60, 211, 0.14);
}

.admin-search input {
  border: 1px solid var(--admin-border);
  border-radius: 10px;
  min-height: 42px;
  padding: 0.55rem 0.72rem;
  font: inherit;
  color: var(--admin-text);
  background: var(--admin-panel);
}
.admin-search input:focus {
  outline: none;
  border-color: var(--admin-primary);
  box-shadow: 0 0 0 4px var(--ats-focus-ring, rgba(254, 60, 211, 0.16));
}

.admin-search__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;
  border: none;
  border-radius: 10px;
  background: var(--ats-gradient, linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%));
  color: #fff;
  font-weight: 700;
}
.admin-search__submit:hover {
  background: var(--ats-gradient-hover, linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%));
}

.admin-table-wrap {
  border: 1px solid var(--admin-border);
  border-radius: 14px;
  background: var(--admin-panel);
  box-shadow: 0 10px 24px var(--admin-shadow);
  overflow: auto;
}

.admin-table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
}
.admin-table th,
.admin-table td {
  text-align: left;
  vertical-align: top;
  padding: 0.8rem 0.9rem;
  border-bottom: 1px solid var(--admin-border);
}
.admin-table th {
  font-size: 0.79rem;
  color: var(--admin-subtle);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: rgba(254, 60, 211, 0.06);
  font-weight: 700;
}
.admin-table tbody tr:last-child td {
  border-bottom: none;
}

.admin-company__name {
  color: var(--admin-text);
  font-weight: 700;
}

.admin-company__meta {
  margin-top: 0.25rem;
  color: var(--admin-muted);
  font-size: 0.86rem;
}

.admin-plan {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.3rem 0.62rem;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
}

.admin-plan.is-standard {
  background: rgba(148, 163, 184, 0.14);
  color: #475569;
  border-color: rgba(148, 163, 184, 0.28);
}

.admin-plan.is-premium {
  background: var(--ats-primary-soft, rgba(254, 60, 211, 0.14));
  color: #be1f86;
  border-color: rgba(254, 60, 211, 0.28);
}

.admin-plan.is-enterprise {
  background: rgba(254, 60, 114, 0.14);
  color: #b01d57;
  border-color: rgba(254, 60, 114, 0.32);
}

.admin-status-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.3rem 0.62rem;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
}

.admin-status-badge.is-active {
  background: rgba(21, 128, 61, 0.12);
  color: #166534;
  border-color: rgba(21, 128, 61, 0.24);
}

.admin-status-badge.is-review {
  background: rgba(180, 83, 9, 0.12);
  color: #92400e;
  border-color: rgba(180, 83, 9, 0.3);
}

.admin-status-badge.is-suspended {
  background: rgba(220, 38, 38, 0.12);
  color: #b91c1c;
  border-color: rgba(220, 38, 38, 0.3);
}

.admin-subnote {
  margin-top: 0.34rem;
  color: var(--admin-subtle);
  font-size: 0.8rem;
}

.admin-activity {
  display: grid;
  gap: 0.2rem;
  color: var(--admin-muted);
  font-size: 0.87rem;
}

.admin-mail {
  color: var(--admin-primary-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}
.admin-mail:hover {
  text-decoration: underline;
}

.admin-header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.admin-shell .admin-link--primary {
  background: var(--ats-gradient, linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%));
  color: #fff;
  border: none;
}
.admin-shell .admin-link--primary:hover {
  color: #fff;
  background: var(--ats-gradient-hover, linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%));
}

.admin-callout {
  margin-bottom: 0.9rem;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 0.75rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.admin-callout.is-error {
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.1);
}

.admin-shell .users-table-container {
  background: var(--admin-panel);
  border: 1px solid var(--admin-border);
  box-shadow: 0 10px 24px var(--admin-shadow);
}

.admin-shell .table-header {
  gap: 0.75rem;
}

.table-header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.admin-create-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: 10px;
  background: var(--ats-gradient, linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%));
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}
.admin-create-btn:hover {
  background: var(--ats-gradient-hover, linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%));
}

.admin-dim {
  color: var(--admin-subtle);
}

.admin-website {
  color: var(--admin-primary-dark);
  text-decoration: none;
  font-weight: 600;
}
.admin-website:hover {
  text-decoration: underline;
}

.admin-company-stats {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  color: var(--admin-muted);
  font-size: 0.9rem;
}

.admin-date {
  color: var(--admin-muted);
  font-size: 0.9rem;
}

.admin-row-action {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  background: var(--admin-panel-soft);
  color: var(--admin-subtle);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.admin-row-action:hover {
  border-color: var(--admin-primary-dark);
  color: var(--admin-primary-dark);
}

.admin-empty-row {
  text-align: center;
  color: var(--admin-muted);
}

.admin-page-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: 1px solid var(--admin-border);
  background: var(--admin-panel-soft);
  color: var(--admin-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-width: 2.1rem;
  min-height: 2.1rem;
}
.admin-page-btn.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.admin-form-shell {
  background: var(--admin-panel);
  border: 1px solid var(--admin-border);
  border-radius: 14px;
  box-shadow: 0 10px 24px var(--admin-shadow);
}

.admin-field-error {
  color: #ef4444;
  font-size: 0.78rem;
}

.admin-reports-filters {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 0.75rem;
  align-items: end;
}

.admin-filter-field {
  display: grid;
  gap: 0.3rem;
}
.admin-filter-field label {
  color: var(--admin-muted);
  font-size: 0.82rem;
  font-weight: 600;
}
.admin-filter-field input,
.admin-filter-field select {
  min-height: 40px;
  border-radius: 10px;
  border: 1px solid var(--admin-border);
  background: var(--admin-panel);
  color: var(--admin-text);
  padding: 0.5rem 0.65rem;
  font: inherit;
}
.admin-filter-field input:focus,
.admin-filter-field select:focus {
  outline: none;
  border-color: var(--admin-primary);
  box-shadow: 0 0 0 4px var(--ats-focus-ring, rgba(254, 60, 211, 0.16));
}

.admin-filter-actions {
  display: flex;
  justify-content: flex-end;
}

.admin-report-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
}

.admin-report-badge--success {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  border-color: rgba(34, 197, 94, 0.3);
}

.admin-report-badge--info {
  background: rgba(59, 130, 246, 0.12);
  color: #3B82F6;
  border-color: rgba(59, 130, 246, 0.3);
}

.admin-report-badge--danger {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.3);
}

.admin-report-badge--muted {
  background: rgba(148, 163, 184, 0.12);
  color: var(--admin-muted);
  border-color: rgba(148, 163, 184, 0.25);
}

.admin-candidate-cell {
  display: flex;
  align-items: center;
}

.admin-candidate-email {
  color: var(--admin-text);
}

.admin-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  color: var(--admin-muted);
}

.admin-inline-link {
  color: var(--admin-primary-dark);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}
.admin-inline-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .admin-shell .dashboard-page {
    padding: 1.5rem 0.85rem;
  }
  .admin-shell .admin-header h1 {
    font-size: 1.7rem;
  }
  .admin-status-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .admin-card__action {
    width: 100%;
  }
  .admin-search {
    grid-template-columns: 1fr;
  }
  .admin-search__icon {
    display: none;
  }
  .admin-search__submit {
    width: 100%;
  }
  .table-header-actions {
    width: 100%;
    justify-content: stretch;
  }
  .admin-create-btn {
    width: 100%;
    justify-content: center;
  }
  .admin-reports-filters {
    grid-template-columns: 1fr;
  }
  .admin-filter-actions {
    justify-content: stretch;
  }
}
.dashboard-container {
  --dashboard-page-max-width: 1100px;
  --dashboard-page-padding-inline: $spacing-md;
  --dashboard-page-padding-block: $spacing-lg;
  padding-top: 80px;
  padding-bottom: 2rem;
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(254, 60, 211, 0.2) 0%, rgba(254, 60, 114, 0.2) 100%);
  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;
  margin-bottom: 2rem;
}
.dashboard-header h1 {
  font-family: "Cafery", sans-serif;
  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-family: "Cafery", sans-serif;
  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: 18rem;
  --dashboard-page-padding-inline: clamp(1rem, 1.8vw, 1.5rem);
  /* --dashboard-page-padding-block: 0.75rem; */
  --ats-primary: #FE3CD3;
  --ats-accent: #FE3C72;
  --ats-primary-strong: #FE3C72;
  --ats-primary-soft: rgba(254, 60, 211, 0.08);
  --ats-bg: #f8fafc;
  --ats-panel: #ffffff;
  --ats-panel-soft: #f1f5f9;
  --ats-border: #e2e8f0;
  --ats-border-strong: #cbd5e1;
  --ats-text: #0f172a;
  --ats-muted: #64748b;
  --ats-muted-soft: #94a3b8;
  --ats-success: #10b981;
  --ats-warning: #f59e0b;
  --ats-danger: #ef4444;
  --ats-danger-soft: rgba(239, 68, 68, 0.1);
  --ats-focus: #FE3CD3;
  --ats-focus-ring: rgba(254, 60, 211, 0.22);
  --ats-shadow-soft: rgba(15, 23, 42, 0.04);
  --ats-shadow-strong: rgba(15, 23, 42, 0.08);
  --ats-gradient: linear-gradient(135deg, #FE3CD3 0%, #FE3C72 100%);
  --ats-gradient-hover: linear-gradient(135deg, #FF6BE8 0%, #FE3CD3 100%);
  --ats-code-bg: #0f172a;
  --ats-code-border: #334155;
  --ats-code-text: #f8fafc;
  --ats-nav-bg: #f4f6fa;
  --ats-nav-border: #e2e7ef;
  --ats-nav-line: #d7dfeb;
  --ats-nav-text: #8b99b1;
  --ats-nav-text-strong: #1f2b44;
  --ats-nav-card-bg: #ffffff;
  --ats-nav-active-bg: #f5e8f7;
  --ats-nav-active-border: #f2b9ea;
  --ats-nav-active-icon: #f347cf;
  padding-top: 0.001rem;
  padding-bottom: 1.25rem;
  background: linear-gradient(180deg, #f7f3fb 0%, #f4f6fa 100%);
  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: 1.25rem;
  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;
  padding-inline: clamp(1.15rem, 1.8vw, 1.65rem);
}

.recruiter-shell .dashboard-header {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-top: 1.2rem;
  padding-bottom: 0.9rem;
  /*  border-bottom: 1px solid var(--ats-border); */
  z-index: 1;
}
.recruiter-shell .dashboard-header h1 {
  font-family: "Nunito", sans-serif;
  color: var(--ats-text);
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.recruiter-shell .dashboard-header p {
  margin-top: 0.35rem;
  color: var(--ats-muted);
  line-height: 1.55;
  font-size: 1.05rem;
  max-width: 760px;
}
.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: 8px;
  background: var(--ats-gradient);
  color: #fff;
  font-weight: 600;
  padding: 0.65rem 1.25rem;
  box-shadow: 0 4px 12px var(--ats-shadow-soft);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.recruiter-shell .dash-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px var(--ats-shadow-strong);
  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: 8px;
  border: 1px solid #333;
  background: white;
  color: #333;
  font-weight: 600;
  padding: 0.65rem 1.25rem;
  box-shadow: 0 4px 12px var(--ats-shadow-soft);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.recruiter-shell .dash-link-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px var(--ats-shadow-strong);
  background: var(--ats-gradient-hover);
}
.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.75rem;
  max-height: calc(100vh - 1.5rem);
  overflow-x: hidden;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--ats-nav-border);
  padding: 0.95rem 0.8rem 1rem;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.05);
}

.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: rgba(124, 58, 237, 0.08);
  color: #5423d1;
  transform: translateX(2px);
}

.recruiter-sidebar__link.is-active,
.recruiter-sidebar__sublink.is-active {
  background: #ece6ff;
  color: #6b21f3;
  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-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(220px, 1fr));
  gap: 0.9rem;
}

.recruiter-metric {
  background: var(--ats-panel);
  border: 1px solid var(--ats-border);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  box-shadow: 0 2px 8px var(--ats-shadow-soft);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.recruiter-metric:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--ats-shadow-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-strong);
}

.recruiter-metric__label {
  font-size: 0.9rem;
  color: var(--ats-muted);
  font-weight: 600;
}

.recruiter-metric__value {
  margin: 0.25rem 0 0;
  color: var(--ats-text);
  font-size: 2.25rem;
  line-height: 1;
  font-family: "Nunito", 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(300px, 1fr));
  gap: 0.9rem;
}

.recruiter-tests-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 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: 12px;
  padding: 1.25rem;
  box-shadow: 0 2px 8px var(--ats-shadow-soft);
  transition: box-shadow 0.15s ease;
}
.recruiter-card:hover {
  box-shadow: 0 6px 16px var(--ats-shadow-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", sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  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-text);
  border-radius: 999px;
  padding: 0.26rem 0.62rem;
  font-size: 0.78rem;
  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--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;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid transparent;
}
.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 10px 24px rgba(189, 56, 255, 0.22);
}
.recruiter-btn--primary:hover {
  background: var(--ats-gradient-hover);
}

.recruiter-btn--ghost {
  background: var(--ats-panel);
  color: var(--ats-text);
  border-color: var(--ats-border);
  font-weight: 500;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.recruiter-btn--ghost:hover {
  background: var(--ats-panel-soft);
  border-color: var(--ats-border-strong);
}

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

.recruiter-candidate-filters {
  margin-bottom: 1rem;
  padding: 0.95rem 1rem;
  /* border: 1px solid #d6dbe4; */
  border-radius: 14px;
  background: #ffffff;
}

.recruiter-candidate-filters__form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 0.75rem;
  align-items: end;
}

.recruiter-candidate-filters__field {
  display: grid;
  gap: 0.32rem;
}
.recruiter-candidate-filters__field span {
  font-size: 0.78rem;
  line-height: 1.2;
  color: #5b6b83;
  font-weight: 700;
}
.recruiter-candidate-filters__field input {
  min-height: 2.45rem;
  border: 1px solid #ccd5e2;
  border-radius: 10px;
  background: #f8f9fd;
  color: #0f1f3c;
  padding: 0.5rem 0.65rem;
  font-size: 0.9rem;
  font-family: inherit;
}
.recruiter-candidate-filters__field input:focus {
  outline: none;
  border-color: #8da8ff;
  box-shadow: 0 0 0 3px rgba(141, 168, 255, 0.2);
}

.recruiter-candidate-filters__actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.recruiter-candidate-filters__summary {
  margin: 0.7rem 0 0;
  color: #5c6b81;
  font-size: 0.9rem;
  font-weight: 600;
}

.recruiter-card--candidate {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  row-gap: 1rem;
  align-content: start;
  background: #fff;
  border: 1px solid #d6dbe4;
  border-radius: 15px;
  padding: clamp(1rem, 2.2vw, 1.55rem);
  box-shadow: none;
  gap: 1rem;
}
.recruiter-card--candidate:hover {
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

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

.recruiter-card-candidate__identity {
  display: grid;
  justify-items: start;
  gap: 0.72rem;
}

.recruiter-avatar--candidate {
  width: 4.35rem;
  height: 4.35rem;
  border: 2px solid #bfc5f4;
  background: #e8ebff;
  color: #6d759a;
  position: relative;
  overflow: hidden;
}

.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.36rem;
  border-radius: 999px;
  padding: 0.32rem 0.82rem;
  font-size: 0.83rem;
  font-weight: 500;
  border: 1px solid transparent;
  background: #e6edfd;
  color: #335389;
}

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

.recruiter-candidate-status.is-new {
  background: #dce8ff;
  border-color: #b9ccf5;
  color: #3168d6;
}

.recruiter-candidate-status.is-success {
  background: #dcf7e9;
  border-color: #9ee1be;
  color: #127749;
}

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

.recruiter-candidate-status.is-info {
  background: #e8edfb;
  border-color: #cad4f6;
  color: #3d5da7;
}

.recruiter-candidate-status.is-neutral {
  background: #eceff5;
  border-color: #cfd6e2;
  color: #667892;
}

.recruiter-score-ring {
  --score-value: 0;
  --score-color: #c8ceda;
  width: clamp(5.5rem, 10vw, 7rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(var(--score-color) calc(var(--score-value) * 1%), #d8dce4 0);
  padding: 0.37rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.recruiter-score-ring.is-high {
  --score-color: #2dbf68;
}

.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: 1px solid #d8dce4;
  background: #f4f5f8;
  display: grid;
  place-content: center;
  text-align: center;
}
.recruiter-score-ring__inner strong {
  display: block;
  line-height: 1;
  font-size: clamp(0.45rem, 2.6vw, 1.5rem);
  font-weight: 600;
  color: #001738;
  letter-spacing: -0.03em;
}
.recruiter-score-ring__inner span {
  margin-top: 0.2rem;
  display: block;
  line-height: 1;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #64748b;
}

.recruiter-card-candidate__content {
  display: grid;
  gap: 0.3rem;
}

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

.recruiter-card-candidate__role {
  margin: 0;
  color: #5e6b7f;
  font-size: 14px;
  font-weight: 600;
}

.recruiter-card-candidate__location {
  margin: 0;
  color: #627186;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.recruiter-card-candidate__date {
  margin: 0.1rem 0 0;
  color: #4f5f78;
  font-size: 0.8rem;
  line-height: 1.4;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.recruiter-card-candidate__date svg,
.recruiter-card-candidate__date img {
  width: 0.95rem;
  height: 0.95rem;
}

.recruiter-skill-pills {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.recruiter-skill-pill {
  border-radius: 999px;
  padding: 0.26rem 0.66rem;
  color: #ffffff;
  font-size: 0.79rem;
  line-height: 1.25;
  font-weight: 500;
  border: 1px solid transparent;
}

.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-card-candidate__actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-end;
  gap: 0.75rem;
}

.recruiter-btn--candidate-primary {
  background: linear-gradient(130deg, #5f6ef0 0%, #5357dd 100%);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 6px 20px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: none;
}
.recruiter-btn--candidate-primary:hover {
  background: linear-gradient(130deg, #4f5de2 0%, #4a4fcb 100%);
}

.recruiter-card-candidate__quick-actions {
  display: grid;
  grid-template-columns: repeat(2, 2.85rem);
  justify-content: end;
  gap: 0.5rem;
}

.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;
}

@media (max-width: 860px) {
  .recruiter-candidate-filters__form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .recruiter-candidate-filters__actions {
    grid-column: 1/-1;
  }
  .recruiter-card-candidate__header {
    gap: 0.85rem;
  }
  .recruiter-card-candidate__actions {
    align-items: center;
  }
}
@media (max-width: 620px) {
  .recruiter-candidate-filters {
    padding: 0.8rem;
  }
  .recruiter-candidate-filters__form {
    grid-template-columns: 1fr;
  }
  .recruiter-card-candidate__header {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .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: 12px;
  padding: 1.25rem;
  color: var(--ats-text);
  box-shadow: 0 2px 8px var(--ats-shadow-soft);
}

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

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

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

.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: 12px;
  padding: 0.75rem 0.85rem;
}

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

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

.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 .dashboard-header {
  margin-bottom: 0.6rem;
}

.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 {
  border-color: #d9dce2;
  border-radius: 14px;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
}

.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;
  margin-top: -2.9rem;
}

.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;
}

.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-interviews-page .recruiter-interviews-page__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.85rem;
}
@media (max-width: 860px) {
  .recruiter-interviews-page .recruiter-interviews-page__header {
    flex-direction: column;
    align-items: stretch;
  }
}
.recruiter-interviews-page .recruiter-interviews-page__header h1 {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.recruiter-interviews-page .recruiter-interviews-page__back {
  white-space: nowrap;
}
.recruiter-interviews-page .recruiter-interviews-page__panel {
  /* padding: 1rem; */
}
.recruiter-interviews-page .recruiter-interviews-page__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.95rem;
}
.recruiter-interviews-page .recruiter-interviews-page__legend-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.6rem;
}
.recruiter-interviews-page .recruiter-interviews-page__legend-item.is-prevu {
  background: #e0f2fe;
  border-color: #bae6fd;
  color: #075985;
}
.recruiter-interviews-page .recruiter-interviews-page__legend-item.is-confirme {
  background: #dbeafe;
  border-color: #bfdbfe;
  color: #1d4ed8;
}
.recruiter-interviews-page .recruiter-interviews-page__legend-item.is-present {
  background: #dcfce7;
  border-color: #bbf7d0;
  color: #166534;
}
.recruiter-interviews-page .recruiter-interviews-page__legend-item.is-absent {
  background: #fee2e2;
  border-color: #fecaca;
  color: #991b1b;
}
.recruiter-interviews-page .recruiter-interviews-page__legend-item.is-annule {
  background: #e2e8f0;
  border-color: #cbd5e1;
  color: #334155;
}
.recruiter-interviews-page .recruiter-interviews-page__legend-item.is-reporte {
  background: #ffedd5;
  border-color: #fed7aa;
  color: #9a3412;
}
.recruiter-interviews-page .recruiter-interviews-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
  gap: 1rem;
}
@media (max-width: 1180px) {
  .recruiter-interviews-page .recruiter-interviews-page__layout {
    grid-template-columns: 1fr;
  }
}
.recruiter-interviews-page .recruiter-interviews-page__calendar-wrap {
  border: 1px solid var(--ats-border);
  border-radius: 14px;
  padding: 0.8rem;
  background: #ffffff;
  min-height: 72vh;
}
@media (max-width: 1180px) {
  .recruiter-interviews-page .recruiter-interviews-page__calendar-wrap {
    min-height: 64vh;
  }
}
.recruiter-interviews-page .recruiter-interviews-page__feedback {
  margin-bottom: 0.65rem;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #0f172a;
  padding: 0.55rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
}
.recruiter-interviews-page .recruiter-interviews-page__feedback.is-error {
  border-color: #fecaca;
  background: #fef2f2;
  color: #991b1b;
}
.recruiter-interviews-page .recruiter-interviews-page__calendar {
  min-height: calc(72vh - 48px);
}
.recruiter-interviews-page .recruiter-interviews-page__calendar .fc {
  --fc-border-color: #e2e8f0;
  --fc-page-bg-color: transparent;
  --fc-today-bg-color: #eff6ff;
  --fc-neutral-bg-color: #f8fafc;
  --fc-list-event-hover-bg-color: #eff6ff;
}
.recruiter-interviews-page .recruiter-interviews-page__calendar .fc .fc-toolbar-title {
  font-size: 1.05rem;
  color: #0f172a;
  font-weight: 700;
}
.recruiter-interviews-page .recruiter-interviews-page__calendar .fc .fc-button {
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #0f172a;
  font-weight: 600;
  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: #f1f5f9;
  border-color: #94a3b8;
  color: #0f172a;
}
.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: #0f766e;
  border-color: #0f766e;
  color: #ffffff;
}
.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: #334155;
  font-weight: 600;
  text-decoration: none;
}
.recruiter-interviews-page .recruiter-interviews-page__calendar .fc .fc-event {
  border-radius: 8px;
  border-width: 0;
  padding: 0.1rem 0.24rem;
  font-size: 0.77rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.16);
}
.recruiter-interviews-page .recruiter-interviews-page__details {
  border: 1px solid var(--ats-border);
  border-radius: 14px;
  background: #ffffff;
  padding: 1rem;
  align-self: start;
  position: sticky;
  top: calc(80px + 0.75rem);
}
@media (max-width: 1180px) {
  .recruiter-interviews-page .recruiter-interviews-page__details {
    position: static;
  }
}
.recruiter-interviews-page .recruiter-interviews-page__details h2 {
  margin: 0 0 0.95rem;
  font-size: 1rem;
  border-bottom: 1px solid var(--ats-border);
  padding-bottom: 0.65rem;
}
.recruiter-interviews-page .recruiter-interviews-page__details-grid {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.62rem;
}
.recruiter-interviews-page .recruiter-interviews-page__label {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
}
.recruiter-interviews-page .recruiter-interviews-page__value {
  margin: 0.15rem 0 0;
  color: #0f172a;
  font-size: 0.92rem;
  line-height: 1.45;
  word-break: break-word;
}
.recruiter-interviews-page .recruiter-interviews-page__value a {
  color: #0f766e;
  font-weight: 700;
  text-decoration: none;
}
.recruiter-interviews-page .recruiter-interviews-page__value a:hover {
  text-decoration: underline;
}
.recruiter-interviews-page .recruiter-interviews-page__details-actions {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid #e2e8f0;
}
.recruiter-interviews-page .recruiter-interviews-page__details-actions a {
  width: 100%;
  justify-content: center;
}

.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%;
  border: 1.5px solid #ede8f5;
  border-radius: 10px;
  padding: 0.72rem 0.85rem;
  font: inherit;
  color: #170017;
  background: #f8f6fc;
  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: #6b00c9;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(107, 0, 201, 0.08);
}
.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;
}

.recruiter-panel--canvas {
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
}

.recruiter-form-card {
  background: #fff;
  border: 1px solid #ede8f5;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.16s ease;
}
.recruiter-form-card:hover {
  box-shadow: 0 2px 16px rgba(107, 0, 201, 0.05);
}

.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;
  border-bottom: 1px solid #f4f2f8;
}

.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: #170017;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.recruiter-form-card__subtitle {
  margin: 0.15rem 0 0;
  font-size: 0.8rem;
  color: #aaa;
  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 #d8ccef;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 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: 1.5px solid #ede8f5;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.recruiter-rich-editor-shell:focus-within {
  border-color: #6b00c9;
  box-shadow: 0 0 0 3px rgba(107, 0, 201, 0.08);
}

.recruiter-quill-editor {
  height: 350px;
  background: #fff;
  font-family: inherit;
  font-size: 0.95rem;
}

.ql-toolbar.ql-snow {
  border: 0;
  border-bottom: 1px solid #ede8f5;
  background: #f8f6fc;
}

.ql-container.ql-snow {
  border: 0;
}

.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-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;
}

.test-create-actions {
  padding-top: 0.2rem;
}

.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;
}

.kanban {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding: 0.5rem 0.5rem 1.5rem;
  /* Custom scrollbar for webkit */
}
.kanban::-webkit-scrollbar {
  height: 8px;
}
.kanban::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 10px;
}
.kanban::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

.kanban-feedback {
  min-height: 1.45rem;
  margin-bottom: 0.55rem;
  color: var(--ats-success);
  font-size: 0.82rem;
  font-weight: 600;
}
.kanban-feedback.is-error {
  color: var(--ats-danger);
}

.kanban-col {
  flex: 0 0 320px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 20px;
  padding: 1.15rem;
  min-height: 600px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.kanban-col.is-drop-target {
  border-color: #FE3CD3;
  background: rgba(254, 60, 211, 0.05);
  box-shadow: 0 0 0 4px rgba(254, 60, 211, 0.1);
}

.kanban-col__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 2px dashed rgba(0, 0, 0, 0.06);
}

.kanban-col__title {
  color: #0f172a;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.kanban-col__count {
  background: #fff;
  color: #FE3CD3;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.kanban-empty {
  color: #94a3b8;
  font-size: 0.9rem;
  padding: 0.25rem;
  text-align: center;
  font-weight: 500;
  margin-top: 1rem;
}

.kanban-col__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.kanban-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.03);
  cursor: grab;
  user-select: none;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
  /* Subtle top accent line */
}
.kanban-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FE3CD3, #FE3C72);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.kanban-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(254, 60, 211, 0.25);
}
.kanban-card:hover::before {
  opacity: 1;
}
.kanban-card.is-dragging {
  opacity: 0.8;
  transform: rotate(3deg) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  cursor: grabbing;
}
.kanban-card.is-saving {
  opacity: 0.72;
  pointer-events: none;
}

.kanban-score-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.55rem;
  border-radius: 12px;
  font-size: 0.76rem;
  font-weight: 800;
}
.kanban-score-pill.is-high {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}
.kanban-score-pill.is-mid {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
}
.kanban-score-pill.is-low {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
}
.kanban-score-pill svg {
  width: 14px;
  height: 14px;
}

.kanban-date-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.55rem;
  border-radius: 12px;
  font-size: 0.76rem;
  font-weight: 600;
  background: rgba(148, 163, 184, 0.1);
  color: #64748b;
}
.kanban-date-pill svg {
  width: 14px;
  height: 14px;
}

.kanban-card__user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.kanban-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #FE3CD3;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.kanban-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kanban-card__name {
  margin: 0;
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
}

.kanban-card__meta {
  margin: 0.5rem 0 1.25rem;
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.kanban-card__meta svg, .kanban-card__meta i {
  width: 15px;
  height: 15px;
  color: #94a3b8;
}

.kanban-card__actions {
  display: flex;
}
.kanban-card__actions .recruiter-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: #f1f5f9;
  color: #334155;
  border: none;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  transition: all 0.2s ease;
}
.kanban-card__actions .recruiter-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #FE3CD3, #FE3C72);
  color: #fff;
  box-shadow: 0 4px 12px rgba(254, 60, 211, 0.25);
}

.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--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;
  }
}
.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: #FE3CD3;
  box-shadow: 0 0 0 2px rgba(254, 60, 211, 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: 1.12rem;
  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: 2.5rem 1rem;
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}
.drop-zone:hover {
  border-color: var(--ats-primary);
  background: var(--ats-primary-soft);
  transform: translateY(-1px);
}
.drop-zone.drag-active {
  border-color: var(--ats-primary-strong);
  border-style: solid;
  background: var(--ats-primary-soft);
  transform: scale(1.01);
}
.drop-zone.drag-active .drop-zone-icon {
  color: var(--ats-primary-strong);
  transform: translateY(-1px) scale(1.04);
}
.drop-zone .drop-zone-icon {
  margin-bottom: 0.55rem;
  font-size: 2.7rem;
  color: var(--ats-muted);
  line-height: 1;
  transition: all 0.16s ease;
}
.drop-zone h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--ats-text);
  font-weight: 700;
}
.drop-zone p {
  margin: 0.3rem 0 0;
  color: var(--ats-muted);
  font-size: 0.9rem;
}
.drop-zone .drop-zone-browse-btn {
  margin-top: 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--ats-border-strong);
  background: var(--ats-panel);
  color: var(--ats-text);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.42rem 0.8rem;
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}
.drop-zone .drop-zone-browse-btn:hover {
  border-color: var(--ats-primary);
  background: var(--ats-primary-soft);
  transform: translateY(-1px);
}
.drop-zone .accepted-types {
  display: inline-flex;
  margin-top: 0.75rem;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--ats-border);
  background: var(--ats-panel);
  color: var(--ats-muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.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 .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__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: #FE3CD3;
  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 */
