:root {
  --blue: #0b4cff;
  --dark: #06142e;
  --muted: #607089;
  --bg: #f6f8fc;
  --card: #fff;
  --line: #e7edf7;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--dark);
}
a {
  text-decoration: none;
  color: inherit;
}
.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  background: rgba(255, 255, 255, 0.92);
  position: sticky;
  top: 0;
  z-index: 9;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.brand {
  font-weight: 900;
  color: var(--blue);
  font-size: 24px;
  letter-spacing: 0.5px;
}
.links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.btn {
  background: var(--blue);
  color: #fff;
  padding: 12px 18px;
  border-radius: 14px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  display: inline-block;
}
.btn.secondary {
  background: #eaf0ff;
  color: var(--blue);
}
.btn.big {
  padding: 15px 24px;
}
.hero {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 36px;
  padding: 90px 6%;
  align-items: center;
  background: linear-gradient(135deg, #eef4ff, #fff);
}
.hero h1 {
  font-size: 58px;
  line-height: 1.02;
  margin: 10px 0;
}
.hero p {
  font-size: 20px;
  color: var(--muted);
  max-width: 820px;
}
.eyebrow {
  font-size: 14px !important;
  color: var(--blue) !important;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.cta {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}
.hero-card,
.panel,
.cards > div,
.price,
.tool,
.dash-card {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 14px 50px rgba(20, 45, 90, 0.08);
  border-radius: 28px;
  padding: 28px;
}
.metric {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.metric b {
  font-size: 30px;
  color: var(--blue);
}
.section {
  padding: 70px 6%;
}
.section h2 {
  font-size: 38px;
  margin: 0 0 28px;
}
.grid {
  display: grid;
  gap: 22px;
}
.cards {
  grid-template-columns: repeat(4, 1fr);
}
.cards h3,
.price h3 {
  font-size: 22px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.ticks li {
  margin: 14px 0;
  font-size: 18px;
}
.pricing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.price b {
  font-size: 42px;
  color: var(--blue);
}
.featured {
  outline: 3px solid var(--blue);
}
textarea {
  width: 100%;
  min-height: 130px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  font-size: 16px;
}
pre {
  background: #07162f;
  color: #d5e4ff;
  padding: 18px;
  border-radius: 16px;
  white-space: pre-wrap;
  min-height: 70px;
}
.dashboard {
  padding: 30px 6%;
}
.dash-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 18px;
  overflow: hidden;
}
.table th,
.table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
footer {
  padding: 40px 6%;
  background: #06142e;
  color: white;
}
@media (max-width: 900px) {
  .hero,
  .split,
  .cards,
  .pricing,
  .dash-grid {
    grid-template-columns: 1fr;
  }
  .links {
    display: none;
  }
  .hero h1 {
    font-size: 42px;
  }
}
input,
select {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin: 8px 0;
  font-size: 16px;
}

/* Registration */
.register-page {
  min-height: 100vh;
  background: #fff;
}
.register-nav {
  position: relative;
  height: 80px;
  padding: 0 clamp(22px, 5vw, 72px);
  box-shadow: 0 1px 0 rgba(10, 35, 75, 0.04);
}
.register-nav .brand {
  display: flex;
  align-items: center;
  gap: 11px;
}
.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, #0b4cff, #643cff);
  color: #fff;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(11, 76, 255, 0.25);
}
.register-nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}
.register-nav-actions .btn {
  padding: 10px 18px;
  border-radius: 12px;
}
.register-shell {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(520px, 1.1fr);
  min-height: calc(100vh - 80px);
}
.register-intro {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: center;
  padding: clamp(48px, 7vw, 100px);
  color: #fff;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(95, 126, 255, 0.42),
      transparent 32%
    ),
    linear-gradient(145deg, #071b46 0%, #0a2f78 54%, #134ac0 100%);
}
.register-intro::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}
.register-intro-content {
  position: relative;
  z-index: 2;
  max-width: 590px;
}
.register-intro .eyebrow {
  display: inline-flex;
  margin: 0 0 20px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #cdd9ff !important;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}
.register-intro h1 {
  margin: 0;
  font-size: clamp(40px, 4.4vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}
.register-intro h1 span {
  color: #80a8ff;
}
.register-lead {
  max-width: 540px;
  margin: 24px 0 36px;
  color: #c8d5f2;
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.7;
}
.register-benefits {
  display: grid;
  gap: 20px;
}
.register-benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.register-benefit strong,
.register-benefit small {
  display: block;
}
.register-benefit strong {
  margin-bottom: 4px;
  font-size: 16px;
}
.register-benefit small {
  color: #adbee3;
  font-size: 14px;
  line-height: 1.5;
}
.benefit-icon {
  display: grid;
  flex: 0 0 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgba(85, 234, 179, 0.16);
  color: #67edbd;
  font-weight: 900;
}
.register-orb {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}
.register-orb-one {
  right: -120px;
  bottom: -170px;
  width: 440px;
  height: 440px;
}
.register-orb-two {
  right: 40px;
  bottom: -90px;
  width: 240px;
  height: 240px;
  background: rgba(255, 255, 255, 0.035);
}
.register-form-wrap {
  display: grid;
  place-items: center;
  padding: 48px clamp(24px, 7vw, 110px);
  background: linear-gradient(145deg, #fff, #f8faff);
}
.register-card {
  width: 100%;
  max-width: 650px;
}
.register-heading {
  margin-bottom: 30px;
}
.register-heading h2 {
  margin: 10px 0 8px;
  font-size: clamp(30px, 3vw, 42px);
  letter-spacing: -0.035em;
}
.register-heading p {
  margin: 0;
  color: var(--muted);
}
.step-pill {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.field-group {
  margin-bottom: 18px;
}
.field-group label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 800;
}
.input-wrap {
  position: relative;
}
.register-card input,
.register-card select {
  height: 54px;
  margin: 0;
  border: 1px solid #dce4f1;
  border-radius: 14px;
  outline: none;
  background: #fff;
  color: var(--dark);
  font-size: 15px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
.register-card input {
  padding: 0 48px;
}
.register-card select {
  padding: 0 42px 0 16px;
  appearance: none;
}
.register-card input:focus,
.register-card select:focus {
  border-color: #5c82ff;
  box-shadow: 0 0 0 4px rgba(11, 76, 255, 0.1);
}
.field-icon {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 17px;
  width: 18px;
  color: #8090aa;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  transform: translateY(-50%);
  pointer-events: none;
}
.field-lock {
  color: #a3afc2;
  font-size: 10px;
}
.select-wrap::after {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #8290a7;
  border-bottom: 2px solid #8290a7;
  content: "";
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.register-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.password-toggle {
  position: absolute;
  top: 50%;
  right: 14px;
  border: 0;
  background: transparent;
  color: var(--blue);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transform: translateY(-50%);
}
.terms-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  cursor: pointer;
}
.terms-check input {
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--blue);
}
.terms-check a {
  color: var(--blue);
  font-weight: 700;
}
.register-submit {
  display: flex;
  width: 100%;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  border-radius: 15px;
  background: linear-gradient(100deg, #0b4cff, #553bdf);
  box-shadow: 0 14px 28px rgba(11, 76, 255, 0.22);
  font-size: 16px;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    opacity 0.2s;
}
.register-submit:hover {
  box-shadow: 0 18px 34px rgba(11, 76, 255, 0.3);
  transform: translateY(-2px);
}
.register-submit:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}
.secure-note {
  margin: 17px 0 0;
  color: #8390a4;
  font-size: 12px;
  text-align: center;
}
.form-message {
  display: none;
  margin-top: 14px;
  padding: 11px 13px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
}
.form-message.error,
.form-message.success {
  display: block;
}
.form-message.error {
  color: #a22232;
  background: #fff0f2;
}
.form-message.success {
  color: #087550;
  background: #eafbf5;
}

@media (max-width: 960px) {
  .register-shell {
    grid-template-columns: 1fr;
  }
  .register-intro {
    min-height: auto;
    padding: 64px 7%;
  }
  .register-intro h1 br {
    display: none;
  }
  .register-benefits {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 680px) {
  .register-nav-actions > span {
    display: none;
  }
  .register-nav .brand {
    font-size: 19px;
  }
  .brand-mark {
    width: 34px;
    height: 34px;
  }
  .register-intro {
    padding: 48px 24px;
  }
  .register-benefits,
  .register-field-grid {
    grid-template-columns: 1fr;
  }
  .register-benefits {
    gap: 16px;
  }
  .register-form-wrap {
    padding: 42px 22px 58px;
  }
  .register-field-grid {
    gap: 0;
  }
}

/* Homepage */
.home-page {
  overflow-x: hidden;
  background: #fff;
}
.home-nav {
  height: 82px;
  padding: 0 max(5%, calc((100% - 1380px) / 2));
  border-color: rgba(226, 232, 243, 0.75);
}
.home-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}
.home-links {
  gap: 32px;
}
.home-links a,
.nav-login {
  color: #35435b;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s;
}
.home-links a:hover,
.nav-login:hover {
  color: var(--blue);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.user-menu {
  position: relative;
}
.user-avatar-button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 22px rgba(11, 76, 255, 0.24);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}
.user-avatar-button:hover,
.user-avatar-button:focus-visible {
  outline: 3px solid rgba(11, 76, 255, 0.18);
  outline-offset: 3px;
}
.user-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: none;
  width: 220px;
  overflow: hidden;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(6, 20, 46, 0.16);
}
.user-menu.open .user-dropdown {
  display: grid;
}
.user-dropdown-identity {
  display: grid;
  gap: 3px;
  padding: 10px 11px 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 5px;
}
.user-dropdown-identity strong {
  overflow: hidden;
  color: var(--dark);
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.user-dropdown-identity span {
  color: var(--muted);
  font-size: 12px;
  text-transform: capitalize;
}
.user-dropdown a,
.user-logout-button {
  width: 100%;
  padding: 10px 11px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #35435b;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}
.user-dropdown a:hover,
.user-logout-button:hover {
  background: #f2f6ff;
  color: var(--blue);
}
.session-nav-actions {
  margin-left: auto;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 17px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(11, 76, 255, 0.18);
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--dark);
}
.home-hero {
  position: relative;
  overflow: hidden;
  min-height: 790px;
  padding: 104px max(5%, calc((100% - 1380px) / 2)) 110px;
  color: #fff;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(135deg, #07142f 0%, #0a2051 52%, #0b2869 100%);
  background-size:
    48px 48px,
    48px 48px,
    auto;
}
.home-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(50px, 7vw, 110px);
  max-width: 1380px;
  margin: auto;
  align-items: center;
}
.hero-copy {
  max-width: 620px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 24px;
  padding: 8px 13px;
  border: 1px solid rgba(139, 168, 255, 0.24);
  border-radius: 999px;
  color: #c6d4f5;
  background: rgba(255, 255, 255, 0.055);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #65e5ad;
  box-shadow: 0 0 0 5px rgba(101, 229, 173, 0.1);
}
.home-hero h1 {
  margin: 0;
  font-size: clamp(48px, 5.2vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.home-hero h1 em {
  color: #89aaff;
  font-style: normal;
}
.hero-description {
  max-width: 590px;
  margin: 26px 0 0;
  color: #b9c7e5;
  font-size: 19px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}
.hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-radius: 14px;
  background: linear-gradient(105deg, #3268ff, #7048ee);
  box-shadow: 0 16px 34px rgba(33, 88, 255, 0.3);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.hero-primary:hover {
  box-shadow: 0 20px 40px rgba(33, 88, 255, 0.4);
  transform: translateY(-2px);
}
.hero-secondary {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e9efff;
  font-size: 14px;
  font-weight: 800;
}
.play-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  font-size: 10px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 42px;
}
.avatar-stack {
  display: flex;
}
.avatar-stack span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-left: -8px;
  place-items: center;
  border: 2px solid #0a1c43;
  border-radius: 50%;
  color: #fff;
  background: #2f68dc;
  font-size: 9px;
  font-weight: 900;
}
.avatar-stack span:first-child {
  margin-left: 0;
  background: #be6c52;
}
.avatar-stack span:nth-child(2) {
  background: #6f5bc4;
}
.avatar-stack span:nth-child(3) {
  background: #348b7b;
}
.avatar-stack span:last-child {
  background: #263d6c;
}
.hero-proof strong,
.hero-proof small {
  display: block;
}
.hero-proof strong {
  font-size: 13px;
}
.hero-proof small {
  margin-top: 3px;
  color: #8fa1c6;
  font-size: 11px;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
}
.hero-glow-one {
  top: -300px;
  left: 28%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(48, 99, 255, 0.18), transparent 68%);
}
.hero-glow-two {
  right: -180px;
  bottom: -270px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(105, 65, 238, 0.2), transparent 68%);
}
.product-preview {
  position: relative;
  min-width: 650px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 22px;
  color: #13203a;
  background: #f5f7fb;
  box-shadow: 0 38px 90px rgba(0, 5, 25, 0.46);
  transform: perspective(1400px) rotateY(-3deg) rotateX(1deg);
}
.preview-topbar {
  display: flex;
  height: 54px;
  align-items: center;
  gap: 26px;
  padding: 0 18px;
  border-bottom: 1px solid #e6eaf2;
  border-radius: 22px 22px 0 0;
  background: #fff;
}
.preview-brand {
  color: #184dce;
  font-size: 12px;
  font-weight: 900;
}
.preview-brand span {
  display: inline-grid;
  width: 23px;
  height: 23px;
  margin-right: 5px;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  background: #1558ed;
}
.preview-search {
  flex: 1;
  padding: 8px 14px;
  border: 1px solid #edf0f5;
  border-radius: 8px;
  color: #9ba6b8;
  background: #f8f9fc;
  font-size: 9px;
}
.preview-user {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #5c6f9e;
  font-size: 9px;
  font-weight: 800;
}
.preview-body {
  display: grid;
  grid-template-columns: 50px 1fr;
  min-height: 410px;
}
.preview-sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 27px;
  padding-top: 28px;
  border-right: 1px solid #e6eaf2;
  border-radius: 0 0 0 22px;
  color: #9aa5b7;
  background: #fff;
  font-size: 11px;
}
.preview-sidebar .active {
  color: #1558ed;
}
.preview-main {
  padding: 24px;
}
.preview-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.preview-heading small,
.preview-heading strong {
  display: block;
}
.preview-heading small {
  margin-bottom: 5px;
  color: #8b96aa;
  font-size: 8px;
}
.preview-heading strong {
  font-size: 16px;
}
.preview-heading button {
  padding: 9px 11px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #1558ed;
  font-size: 8px;
  font-weight: 800;
}
.preview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}
.preview-stats > div {
  position: relative;
  padding: 13px;
  border: 1px solid #e8ecf3;
  border-radius: 11px;
  background: #fff;
}
.preview-stats small,
.preview-stats strong {
  display: block;
}
.preview-stats small {
  margin: 8px 0 5px;
  color: #8490a4;
  font-size: 7px;
}
.preview-stats strong {
  font-size: 18px;
}
.preview-stats i {
  position: absolute;
  right: 10px;
  bottom: 14px;
  color: #20a574;
  font-size: 7px;
  font-style: normal;
}
.stat-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 7px;
  font-size: 10px;
}
.stat-icon.blue {
  color: #1558ed;
  background: #edf3ff;
}
.stat-icon.purple {
  color: #7546db;
  background: #f2ecff;
}
.stat-icon.green {
  color: #16966a;
  background: #e9fbf4;
}
.preview-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 10px;
  margin-top: 10px;
}
.chart-card,
.pipeline-card {
  min-height: 190px;
  padding: 14px;
  border: 1px solid #e8ecf3;
  border-radius: 11px;
  background: #fff;
}
.card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-title strong {
  font-size: 10px;
}
.card-title small {
  color: #929db0;
  font-size: 7px;
}
.chart-bars {
  display: flex;
  height: 110px;
  align-items: end;
  gap: 9px;
  padding: 18px 8px 0;
  border-bottom: 1px solid #e9edf4;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 35px,
    #f0f2f7 36px
  );
}
.chart-bars span {
  flex: 1;
  max-width: 15px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(#5280fa, #1859ed);
}
.chart-labels {
  display: flex;
  justify-content: space-between;
  padding-top: 8px;
  color: #98a2b3;
  font-size: 6px;
}
.pipeline-row {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 0;
  border-bottom: 1px solid #edf0f5;
}
.pipeline-row:last-child {
  border: 0;
}
.candidate-dot {
  display: grid;
  flex: 0 0 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 7px;
  font-weight: 800;
}
.candidate-dot.c1 {
  background: #6078bb;
}
.candidate-dot.c2 {
  background: #3c9484;
}
.candidate-dot.c3 {
  background: #bb7260;
}
.pipeline-row div {
  flex: 1;
}
.pipeline-row b,
.pipeline-row small {
  display: block;
}
.pipeline-row b {
  font-size: 8px;
}
.pipeline-row small {
  margin-top: 3px;
  color: #929db0;
  font-size: 6px;
}
.pipeline-row i {
  color: #168b63;
  font-size: 7px;
  font-style: normal;
  font-weight: 900;
}
.floating-match {
  position: absolute;
  right: -28px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 40px rgba(6, 20, 46, 0.25);
}
.floating-match > span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 9px;
  background: #edf3ff;
}
.floating-match small,
.floating-match strong {
  display: block;
}
.floating-match small {
  color: #748098;
  font-size: 8px;
}
.floating-match strong {
  margin-top: 3px;
  font-size: 10px;
}
.trust-strip {
  padding: 30px max(5%, calc((100% - 1280px) / 2));
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.trust-strip p {
  margin: 0 0 20px;
  color: #8a96a9;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.country-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #43516a;
  font-size: 14px;
  font-weight: 900;
}
.home-section {
  padding: 110px max(5%, calc((100% - 1280px) / 2));
}
.platform-section,
.pricing-section {
  background: #f7f9fd;
}
.section-heading {
  max-width: 720px;
}
.section-heading.centered {
  margin: 0 auto 55px;
  text-align: center;
}
.section-label {
  margin: 0 0 13px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.section-heading h2,
.solutions-copy h2,
.ai-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.section-heading > p:last-child,
.solutions-copy > p,
.ai-copy > p,
.final-cta > div > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}
.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 350px;
  padding: 34px;
  border: 1px solid #e3e9f3;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(20, 45, 90, 0.055);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.feature-card:hover {
  box-shadow: 0 24px 55px rgba(20, 45, 90, 0.1);
  transform: translateY(-5px);
}
.feature-large {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 70px 0.9fr 1fr;
  gap: 24px;
  min-height: 300px;
  align-items: center;
}
.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  font-size: 19px;
  font-weight: 900;
}
.feature-icon.blue {
  color: #1b5ced;
  background: #ebf1ff;
}
.feature-icon.purple {
  color: #7546dc;
  background: #f1ebff;
}
.feature-icon.green {
  color: #14926a;
  background: #e8faf3;
}
.feature-icon.light {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
}
.feature-number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: #dce3ee;
  font-size: 28px;
  font-weight: 900;
}
.feature-card h3 {
  margin: 20px 0 12px;
  font-size: 26px;
  letter-spacing: -0.025em;
}
.feature-large h3 {
  margin-top: 0;
  font-size: 32px;
}
.feature-card p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.65;
}
.feature-card > div > a {
  display: inline-flex;
  gap: 8px;
  margin-top: 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}
.mini-candidates {
  padding: 10px 18px;
  border: 1px solid #edf0f5;
  border-radius: 16px;
  background: #f9fafe;
}
.mini-candidates > div {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 0;
  border-bottom: 1px solid #e9edf4;
}
.mini-candidates > div:last-child {
  border: 0;
}
.mini-candidates > div > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #5f78b7;
  font-size: 9px;
  font-weight: 900;
}
.mini-candidates p {
  flex: 1;
  margin: 0;
}
.mini-candidates b,
.mini-candidates small {
  display: block;
}
.mini-candidates b {
  color: #1a2841;
  font-size: 11px;
}
.mini-candidates small {
  margin-top: 3px;
  font-size: 8px;
}
.mini-candidates strong {
  color: #168c65;
  font-size: 12px;
}
.progress-visual {
  margin-top: 35px;
  padding: 20px;
  border-radius: 15px;
  background: #f7f5ff;
}
.progress-visual div {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
.progress-visual i {
  display: block;
  height: 8px;
  margin: 14px 0 10px;
  overflow: hidden;
  border-radius: 8px;
  background: #e2ddf4;
}
.progress-visual i span {
  display: block;
  width: 82%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7650dc, #a069ed);
}
.progress-visual small {
  color: #7e8798;
}
.region-visual {
  display: flex;
  gap: 10px;
  margin-top: 38px;
}
.region-visual span {
  flex: 1;
  padding: 18px 10px;
  border: 1px solid #def0e9;
  border-radius: 14px;
  color: #5e6f78;
  background: #f2fbf7;
  font-size: 11px;
  text-align: center;
}
.region-visual b {
  display: block;
  margin-top: 7px;
  color: #137957;
  font-size: 19px;
}
.feature-dark {
  color: #fff;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(76, 119, 244, 0.24),
      transparent 40%
    ),
    #081a3b;
}
.feature-dark .feature-number {
  color: rgba(255, 255, 255, 0.12);
}
.feature-dark p {
  color: #aabada;
}
.compliance-list {
  display: grid;
  gap: 12px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}
.compliance-list li {
  color: #dce6fa;
  font-size: 13px;
}
.compliance-list span {
  margin-right: 8px;
  color: #64dfad;
}
.solutions-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
}
.solutions-copy > p {
  max-width: 550px;
}
.role-list {
  display: grid;
  gap: 10px;
  margin-top: 36px;
}
.role-list a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px;
  border: 1px solid transparent;
  border-radius: 14px;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.2s;
}
.role-list a:hover {
  border-color: #e0e7f3;
  background: #f8faff;
  transform: translateX(5px);
}
.role-icon {
  display: grid;
  flex: 0 0 43px;
  height: 43px;
  place-items: center;
  border-radius: 12px;
  color: var(--blue);
  background: #edf3ff;
}
.role-list div {
  flex: 1;
}
.role-list b,
.role-list small {
  display: block;
}
.role-list b {
  margin-bottom: 4px;
}
.role-list small {
  color: var(--muted);
  line-height: 1.5;
}
.role-list i {
  color: var(--blue);
  font-style: normal;
  font-weight: 900;
}
.global-visual {
  position: relative;
  min-height: 570px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at center,
      rgba(31, 87, 226, 0.12),
      rgba(244, 247, 252, 0.5) 43%,
      transparent 44%
    ),
    repeating-radial-gradient(
      circle at center,
      transparent 0,
      transparent 75px,
      rgba(22, 79, 209, 0.09) 76px,
      transparent 77px
    );
}
.global-visual::before,
.global-visual::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(23, 81, 216, 0.15);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}
.global-visual::before {
  width: 75%;
  height: 36%;
}
.global-visual::after {
  width: 36%;
  height: 75%;
}
.globe-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(24, 81, 216, 0.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.ring-one {
  width: 72%;
  height: 72%;
}
.ring-two {
  width: 48%;
  height: 48%;
}
.globe-core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 150px;
  height: 150px;
  place-content: center;
  border: 12px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #0d4ce0, #663fda);
  box-shadow: 0 30px 60px rgba(24, 74, 199, 0.28);
  text-align: center;
  transform: translate(-50%, -50%);
}
.globe-core span {
  font-size: 38px;
  font-weight: 900;
}
.globe-core small {
  margin-top: 3px;
  color: #d9e4ff;
  line-height: 1.4;
}
.location-pin {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid #e3e9f3;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 13px 35px rgba(23, 47, 92, 0.12);
}
.location-pin b {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: #1857e8;
  font-size: 8px;
}
.location-pin span {
  font-size: 11px;
  font-weight: 800;
}
.pin-one {
  top: 15%;
  left: 15%;
}
.pin-two {
  top: 24%;
  right: 7%;
}
.pin-three {
  bottom: 19%;
  left: 5%;
}
.pin-four {
  right: 13%;
  bottom: 12%;
}
.stats-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 55px max(5%, calc((100% - 1280px) / 2));
  color: #fff;
  background: #081a3b;
}
.stats-section div {
  padding: 10px 35px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}
.stats-section div:last-child {
  border: 0;
}
.stats-section strong,
.stats-section span {
  display: block;
}
.stats-section strong {
  color: #88a9ff;
  font-size: 35px;
}
.stats-section span {
  margin-top: 7px;
  color: #afbdd9;
  font-size: 12px;
}
.home-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1120px;
  margin: auto;
}
.home-price-card {
  position: relative;
  display: flex;
  min-height: 530px;
  flex-direction: column;
  padding: 36px;
  border: 1px solid #e0e7f1;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(20, 45, 90, 0.05);
}
.home-price-card.popular {
  border: 2px solid #2862ed;
  box-shadow: 0 24px 60px rgba(28, 82, 218, 0.15);
  transform: translateY(-12px);
}
.popular-label {
  position: absolute;
  top: 0;
  right: 24px;
  padding: 8px 13px;
  border-radius: 0 0 10px 10px;
  color: #fff;
  background: #2862ed;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.price-name {
  margin: 0;
  color: #44536b;
  font-size: 14px;
  font-weight: 900;
}
.home-price-card h3 {
  margin: 18px 0 5px;
  font-size: 46px;
  letter-spacing: -0.04em;
}
.home-price-card h3 small {
  color: #77849a;
  font-size: 13px;
  font-weight: 600;
}
.home-price-card > span {
  color: #67758b;
  font-size: 12px;
}
.price-description {
  min-height: 42px;
  margin: 27px 0 20px;
  color: #34445e;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
.home-price-card ul {
  display: grid;
  gap: 15px;
  margin: 0 0 30px;
  padding: 22px 0 0;
  border-top: 1px solid #e8edf4;
  list-style: none;
}
.home-price-card li {
  color: #526079;
  font-size: 13px;
}
.home-price-card li::before {
  margin-right: 9px;
  color: #1b9a70;
  content: "\2713";
  font-weight: 900;
}
.price-button {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  border-radius: 12px;
  color: #fff;
  background: #1857e8;
  font-size: 13px;
  font-weight: 900;
}
.secondary-price {
  border: 1px solid #dce4f1;
  color: #1f4db8;
  background: #f5f8ff;
}
.ai-demo-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  padding: clamp(40px, 6vw, 80px);
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 10% 10%, rgba(49, 98, 239, 0.3), transparent 35%),
    linear-gradient(135deg, #071936, #0c285d);
  box-shadow: 0 35px 80px rgba(7, 25, 54, 0.2);
}
.light-label {
  color: #82a4ff;
}
.ai-copy > p {
  color: #aebddb;
}
.ai-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.ai-points span {
  color: #cdd9ef;
  font-size: 12px;
}
.ai-tool {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
}
.ai-tool label {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 900;
}
.ai-tool textarea {
  min-height: 115px;
  border-color: rgba(255, 255, 255, 0.15);
  outline: none;
  color: #eaf0ff;
  background: rgba(1, 10, 30, 0.42);
  resize: vertical;
}
.ai-tool textarea::placeholder {
  color: #8292b2;
}
.ai-button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}
.ai-tool pre {
  min-height: 70px;
  margin: 12px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #aebddb;
  background: rgba(1, 8, 25, 0.42);
  font-family: Inter, Arial, sans-serif;
  font-size: 12px;
  line-height: 1.6;
}
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 110px 6%;
  color: #fff;
  background: linear-gradient(135deg, #154ed7, #5838ce);
  text-align: center;
}
.final-cta > div:not(.cta-glow) {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
}
.final-cta > div > p {
  color: #d7e1ff;
}
.final-cta .hero-primary {
  color: #1750c9;
  background: #fff;
  box-shadow: 0 15px 34px rgba(7, 20, 60, 0.2);
}
.centered-actions {
  justify-content: center;
}
.cta-contact {
  padding: 15px 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 900;
}
.cta-glow {
  position: absolute;
  top: -220px;
  left: 50%;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  transform: translateX(-50%);
}
.home-footer {
  padding: 75px max(5%, calc((100% - 1280px) / 2)) 30px;
  background: #06142e;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 55px;
}
.footer-brand .home-brand {
  color: #fff;
}
.footer-brand p {
  max-width: 340px;
  color: #8fa0c0;
  font-size: 13px;
  line-height: 1.7;
}
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-column strong {
  margin-bottom: 6px;
  color: #fff;
  font-size: 13px;
}
.footer-column a,
.footer-column span {
  color: #8fa0c0;
  font-size: 12px;
  line-height: 1.5;
}
.footer-column a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #7788a7;
  font-size: 11px;
}
.footer-bottom div {
  display: flex;
  gap: 22px;
}

@media (max-width: 1180px) {
  .home-hero-content {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    max-width: 760px;
    margin: auto;
    text-align: center;
  }
  .hero-description {
    margin-right: auto;
    margin-left: auto;
  }
  .hero-actions,
  .hero-proof {
    justify-content: center;
  }
  .product-preview {
    width: min(800px, 92%);
    min-width: 0;
    margin: 15px auto 0;
    transform: none;
  }
}
@media (max-width: 900px) {
  .home-links {
    position: absolute;
    top: 82px;
    right: 20px;
    left: 20px;
    display: none;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(20, 45, 90, 0.13);
  }
  .home-links.open {
    display: flex;
    align-items: stretch;
    flex-direction: column;
  }
  .home-links a {
    padding: 8px;
  }
  .menu-toggle {
    display: block;
  }
  .nav-login {
    display: none;
  }
  .home-hero {
    padding-top: 75px;
  }
  .feature-grid,
  .solutions-section,
  .ai-demo-card {
    grid-template-columns: 1fr;
  }
  .feature-large {
    grid-template-columns: 1fr;
  }
  .solutions-section {
    gap: 30px;
  }
  .global-visual {
    min-height: 480px;
  }
  .home-pricing {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
  .home-price-card.popular {
    transform: none;
  }
  .stats-section {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-section div:nth-child(2) {
    border-right: 0;
  }
  .stats-section div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .footer-main {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
  .footer-column:last-child {
    grid-column: 1 / -1;
  }
}
@media (max-width: 680px) {
  .home-nav {
    height: 72px;
  }
  .home-brand {
    font-size: 18px;
  }
  .nav-cta {
    display: none;
  }
  .home-links {
    top: 72px;
  }
  .home-hero {
    min-height: auto;
    padding: 62px 20px 75px;
  }
  .home-hero h1 {
    font-size: 45px;
  }
  .hero-description {
    font-size: 16px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-proof {
    align-items: flex-start;
  }
  .product-preview {
    display: none;
  }
  .country-list {
    justify-content: center;
    flex-wrap: wrap;
    font-size: 12px;
  }
  .home-section {
    padding: 75px 20px;
  }
  .section-heading.centered {
    margin-bottom: 35px;
  }
  .feature-card {
    min-height: auto;
    padding: 26px;
  }
  .mini-candidates {
    margin-top: 10px;
  }
  .global-visual {
    min-height: 400px;
  }
  .location-pin {
    padding: 7px 9px;
  }
  .pin-one {
    left: 2%;
  }
  .pin-two {
    right: 0;
  }
  .globe-core {
    width: 125px;
    height: 125px;
  }
  .stats-section {
    padding: 35px 15px;
  }
  .stats-section div {
    padding: 22px 8px;
  }
  .stats-section strong {
    font-size: 28px;
  }
  .home-price-card {
    min-height: auto;
    padding: 28px;
  }
  .ai-demo-card {
    gap: 35px;
    padding: 35px 22px;
  }
  .ai-points {
    flex-direction: column;
  }
  .final-cta {
    padding: 80px 20px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}

/* Shared public navigation */
.public-nav .home-links a {
  position: relative;
}
.public-nav .home-links a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s;
}
.public-nav .home-links a:hover::after {
  transform: scaleX(1);
}
.public-nav .nav-login.active {
  color: var(--blue);
}

/* Connected platform */
.platform-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 5% 15%,
      rgba(43, 101, 255, 0.08),
      transparent 26%
    ),
    radial-gradient(
      circle at 95% 70%,
      rgba(116, 70, 220, 0.08),
      transparent 25%
    ),
    #f7f9fd;
}
.connected-flow {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  max-width: 1180px;
  margin: -12px auto 28px;
  padding: 22px 24px;
  border: 1px solid rgba(216, 226, 243, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 20px 55px rgba(20, 45, 90, 0.08);
  backdrop-filter: blur(16px);
  align-items: center;
}
.flow-hub {
  display: flex;
  align-items: center;
  gap: 12px;
}
.flow-logo {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(145deg, #1759ed, #7048e7);
  box-shadow: 0 10px 22px rgba(35, 87, 226, 0.24);
  font-size: 20px;
  font-weight: 900;
}
.flow-hub strong,
.flow-hub small,
.flow-insight small {
  display: block;
}
.flow-hub strong {
  font-size: 13px;
}
.flow-hub small {
  margin-top: 4px;
  color: #8290a7;
  font-size: 10px;
}
.flow-track {
  position: absolute;
  z-index: 0;
  right: 210px;
  left: 230px;
  height: 2px;
  background: linear-gradient(
    90deg,
    #bfd0ff,
    #d7c8fa,
    #bce9d9,
    #ffd5a9,
    #fac5db
  );
}
.flow-track span {
  position: absolute;
  top: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2662ef;
  box-shadow: 0 0 0 5px rgba(38, 98, 239, 0.1);
  animation: flowPulse 4s linear infinite;
}
@keyframes flowPulse {
  from {
    left: 0;
  }
  to {
    left: calc(100% - 8px);
  }
}
.flow-modules {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-around;
  gap: 14px;
}
.flow-modules span {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid #e8edf5;
  border-radius: 999px;
  color: #4d5c74;
  background: #fff;
  box-shadow: 0 6px 16px rgba(20, 45, 90, 0.06);
  font-size: 10px;
  font-weight: 800;
}
.flow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.flow-dot.blue {
  background: #2362ef;
}
.flow-dot.purple {
  background: #774bdc;
}
.flow-dot.green {
  background: #1ba474;
}
.flow-dot.orange {
  background: #ee8d35;
}
.flow-dot.pink {
  background: #db5d91;
}
.flow-insight {
  padding-left: 23px;
  border-left: 1px solid #e4eaf3;
  text-align: right;
}
.flow-insight b {
  color: #168b63;
  font-size: 21px;
}
.flow-insight small {
  margin-top: 3px;
  color: #8491a5;
  font-size: 9px;
}
.platform-section .feature-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #2c68f4, #764bdf, #2bb486);
  content: "";
  opacity: 0;
  transition: opacity 0.25s;
}
.platform-section .feature-card:hover::before,
.platform-section .feature-dark::before {
  opacity: 1;
}

/* Login */
.login-page {
  min-height: 100vh;
  background: #f7f9fd;
}
.auth-shell {
  display: grid;
  grid-template-columns: minmax(460px, 0.95fr) minmax(500px, 1.05fr);
  min-height: calc(100vh - 82px);
}
.auth-story {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: center;
  padding: clamp(52px, 7vw, 105px);
  color: #fff;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(
      circle at 15% 12%,
      rgba(72, 118, 255, 0.28),
      transparent 32%
    ),
    linear-gradient(145deg, #06142f, #0a2862);
  background-size:
    42px 42px,
    42px 42px,
    auto,
    auto;
}
.auth-story-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 620px;
}
.auth-story h1 {
  margin: 0;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}
.auth-story h1 em {
  color: #8dadff;
  font-style: normal;
}
.auth-story-content > p:not(.hero-badge) {
  max-width: 570px;
  margin: 24px 0 34px;
  color: #b8c7e5;
  font-size: 18px;
  line-height: 1.7;
}
.auth-proof-card {
  max-width: 560px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 25px 60px rgba(0, 7, 25, 0.25);
  backdrop-filter: blur(14px);
}
.auth-proof-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.proof-spark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  background: rgba(104, 142, 255, 0.17);
}
.auth-proof-top div {
  flex: 1;
}
.auth-proof-top small,
.auth-proof-top strong {
  display: block;
}
.auth-proof-top small {
  color: #90a5cd;
  font-size: 10px;
}
.auth-proof-top strong {
  margin-top: 4px;
  font-size: 14px;
}
.auth-proof-top b {
  padding: 6px 9px;
  border-radius: 999px;
  color: #6ce0b3;
  background: rgba(64, 202, 150, 0.12);
  font-size: 9px;
  text-transform: uppercase;
}
.auth-proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 18px;
}
.auth-proof-stats span {
  padding: 10px;
  border-radius: 12px;
  background: rgba(2, 12, 37, 0.22);
}
.auth-proof-stats strong,
.auth-proof-stats small {
  display: block;
}
.auth-proof-stats strong {
  color: #fff;
  font-size: 20px;
}
.auth-proof-stats small {
  margin-top: 5px;
  color: #91a3c6;
  font-size: 9px;
}
.auth-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
.orbit-one {
  right: -180px;
  bottom: -230px;
  width: 600px;
  height: 600px;
}
.orbit-two {
  right: -25px;
  bottom: -75px;
  width: 290px;
  height: 290px;
  background: rgba(255, 255, 255, 0.025);
}
.auth-form-wrap {
  display: grid;
  place-items: center;
  padding: 55px clamp(28px, 8vw, 125px);
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(52, 101, 246, 0.07),
      transparent 32%
    ),
    #fff;
}
.auth-card {
  width: 100%;
  max-width: 520px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid #e5ebf4;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 65px rgba(20, 45, 90, 0.1);
}
.auth-card input {
  height: 56px;
  margin: 0;
  padding: 0 50px;
  border-color: #dce4f1;
  outline: none;
}
.auth-card input:focus {
  border-color: #5c82ff;
  box-shadow: 0 0 0 4px rgba(11, 76, 255, 0.1);
}
.field-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.field-label-row a {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}
.remember-check {
  margin-top: 4px;
}
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0 16px;
  color: #8a96a9;
  font-size: 11px;
}
.auth-divider::before,
.auth-divider::after {
  flex: 1;
  height: 1px;
  background: #e5eaf2;
  content: "";
}
.auth-create-link {
  display: grid;
  min-height: 50px;
  place-items: center;
  border: 1px solid #dce4f1;
  border-radius: 13px;
  color: #174dbd;
  background: #f6f8ff;
  font-size: 13px;
  font-weight: 900;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.auth-create-link:hover {
  border-color: #aebff0;
  background: #edf2ff;
}

@media (max-width: 960px) {
  .auth-shell {
    grid-template-columns: 1fr;
  }
  .auth-story {
    min-height: 520px;
  }
}
@media (max-width: 900px) {
  .connected-flow {
    grid-template-columns: 1fr auto;
  }
  .flow-track {
    display: none;
  }
  .flow-modules {
    grid-column: 1 / -1;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media (max-width: 680px) {
  .connected-flow {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .flow-insight {
    padding: 15px 0 0;
    border-top: 1px solid #e4eaf3;
    border-left: 0;
    text-align: left;
  }
  .auth-story {
    min-height: 490px;
    padding: 52px 24px;
  }
  .auth-story h1 {
    font-size: 43px;
  }
  .auth-story-content > p:not(.hero-badge) {
    font-size: 16px;
  }
  .auth-proof-stats {
    grid-template-columns: 1fr;
  }
  .auth-proof-stats span {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .auth-form-wrap {
    padding: 38px 18px 55px;
  }
  .auth-card {
    padding: 27px 21px;
    border-radius: 21px;
  }
}
/* Employer AI Job Builder */
.employer-page,
.jobs-page {
  background: #f5f7fb;
}
.employer-nav .brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.employer-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  padding: 76px 6%;
  align-items: center;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(11, 76, 255, 0.16),
      transparent 32%
    ),
    linear-gradient(135deg, #eef4ff 0%, #ffffff 70%);
}
.employer-hero h1,
.jobs-hero h1 {
  margin: 8px 0 16px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.employer-hero p,
.jobs-hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 760px;
}
.employer-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.employer-lock-card {
  margin-top: 16px;
  padding: 28px;
  border: 2px dashed #dbe4f0;
  border-radius: 28px;
  background: #f8fbff;
  text-align: center;
}

.lock-icon {
  font-size: 42px;
  margin-bottom: 18px;
}

.employer-lock-card h3 {
  margin: 0 0 12px;
  color: var(--dark);
  font-size: 24px;
}

.employer-lock-card p {
  max-width: 480px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.lock-register-btn {
  min-width: 300px;
  text-align: center;
}

.lock-login-text {
  margin-top: 18px !important;
  margin-bottom: 0 !important;
}

.lock-login-text a {
  color: var(--blue);
  font-weight: 800;
}

.job-post-form.locked {
  opacity: 0.55;
  pointer-events: none;
}
.employer-hero-card,
.ai-job-card,
.job-post-form,
.side-card,
.recent-job-card,
.job-list-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(6, 20, 46, 0.08);
}
.employer-hero-card {
  padding: 28px;
}
.hero-card-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eaf0ff;
  color: var(--blue);
  font-weight: 900;
  font-size: 13px;
}
.employer-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 22px 0;
}
.employer-stat-grid div {
  padding: 18px;
  border-radius: 20px;
  background: #f6f8fc;
  border: 1px solid var(--line);
}
.employer-stat-grid strong {
  display: block;
  font-size: 30px;
  color: var(--dark);
}
.employer-stat-grid span,
.job-card-top p,
.job-list-header p,
.job-card-footer,
.job-list-footer,
.form-section-title span {
  color: var(--muted);
  font-size: 14px;
}
.employer-mini-pipeline {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}
.employer-mini-pipeline div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}
.employer-mini-pipeline span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 7px rgba(11, 76, 255, 0.09);
}
.employer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  padding: 54px 6%;
  align-items: start;
}
.employer-main-panel {
  display: grid;
  gap: 22px;
}
.section-heading.compact {
  max-width: 860px;
  margin-bottom: 4px;
}
.section-heading.compact h2 {
  margin: 4px 0 8px;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.04em;
}
.section-heading.compact p:last-child {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}
.ai-job-card,
.job-post-form,
.side-card {
  padding: 26px;
}
.ai-job-card label,
.job-post-form label {
  display: block;
  color: var(--dark);
  font-weight: 900;
  margin-bottom: 8px;
}
textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin: 8px 0;
  font-size: 16px;
  font-family: inherit;
  resize: vertical;
  background: #fff;
}
.ai-job-actions,
.publish-actions,
.jobs-toolbar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 12px;
}
.form-message {
  margin: 12px 0 0;
  min-height: 22px;
  color: var(--muted);
  font-weight: 800;
}
.form-message.success {
  color: #137a43;
}
.form-message.error,
.empty-state.error {
  color: #b42318;
}
.job-post-form {
  display: grid;
  gap: 20px;
}
.form-section-title {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.form-section-title h3 {
  margin: 4px 0 0;
  font-size: 28px;
}
.form-grid {
  display: grid;
  gap: 16px;
}
.form-grid.two {
  grid-template-columns: repeat(2, 1fr);
}
.form-grid.three {
  grid-template-columns: repeat(3, 1fr);
}
.quality-box {
  padding: 18px;
  border: 1px solid #cfe0ff;
  border-radius: 18px;
  background: #f2f6ff;
}
.quality-box strong {
  display: block;
  margin-bottom: 6px;
}
.quality-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.employer-side-panel {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 96px;
}
.side-card h3 {
  margin: 0 0 12px;
  font-size: 21px;
}
.side-card p {
  color: var(--muted);
  line-height: 1.65;
}
.side-card.warning {
  background: #fff9ee;
  border-color: #ffe1ad;
}
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-weight: 700;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 900;
}
.pipeline-steps {
  display: grid;
  gap: 10px;
}
.pipeline-steps span {
  padding: 12px 14px;
  border-radius: 14px;
  background: #f6f8fc;
  color: var(--dark);
  font-weight: 800;
  border: 1px solid var(--line);
}
.recent-jobs-section {
  padding: 24px 6% 80px;
}
.recent-jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}
.recent-job-card,
.job-list-card {
  padding: 24px;
}
.job-card-top,
.job-list-header,
.job-card-footer,
.job-list-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}
.job-card-top h3,
.job-list-header h2 {
  margin: 0 0 6px;
  font-size: 22px;
}
.job-card-top span,
.job-list-header span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eaf0ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: capitalize;
}
.job-summary,
.job-list-card > p {
  color: var(--muted);
  line-height: 1.6;
}
.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}
.job-meta span,
.job-tags span {
  padding: 8px 10px;
  border-radius: 999px;
  background: #f6f8fc;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.job-meta.large span {
  font-size: 14px;
}
.empty-state {
  padding: 24px;
  border: 1px dashed var(--line);
  border-radius: 20px;
  background: #fff;
  color: var(--muted);
  font-weight: 800;
}
.jobs-shell {
  padding: 52px 6% 80px;
}
.jobs-hero {
  padding: 40px;
  background: linear-gradient(135deg, #eef4ff, #fff);
  border: 1px solid var(--line);
  border-radius: 32px;
  margin-bottom: 28px;
}
.jobs-toolbar input {
  max-width: 540px;
  margin: 0;
}
.jobs-list {
  display: grid;
  gap: 18px;
}
.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}
.job-list-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 18px;
}

@media (max-width: 1080px) {
  .employer-hero,
  .employer-layout {
    grid-template-columns: 1fr;
  }
  .employer-side-panel {
    position: static;
  }
  .recent-jobs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .employer-hero,
  .employer-layout,
  .recent-jobs-section,
  .jobs-shell {
    padding-left: 22px;
    padding-right: 22px;
  }
  .form-grid.two,
  .form-grid.three,
  .recent-jobs-grid,
  .employer-stat-grid {
    grid-template-columns: 1fr;
  }
  .form-section-title,
  .job-card-top,
  .job-list-header,
  .job-card-footer,
  .job-list-footer {
    flex-direction: column;
  }
}

/* Employer page refinement: cleaner typography, combined job textarea, preview panel */
.employer-page,
.jobs-page {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #162033;
  -webkit-font-smoothing: antialiased;
}
.employer-page h1,
.employer-page h2,
.employer-page h3,
.jobs-page h1,
.jobs-page h2,
.jobs-page h3 {
  font-weight: 700;
  letter-spacing: -0.025em;
}
.employer-hero h1,
.jobs-hero h1 {
  letter-spacing: -0.035em;
  font-weight: 750;
}
.employer-page .btn,
.jobs-page .btn,
.employer-page label,
.jobs-page label,
.employer-mini-pipeline div,
.pipeline-steps span,
.check-list li,
.form-message,
.empty-state,
.job-meta span,
.job-tags span {
  font-weight: 650;
}
.employer-stat-grid strong {
  font-weight: 700;
}
.hero-card-badge,
.job-card-top span,
.job-list-header span {
  font-weight: 700;
}
/* 
.access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
} */
.job-post-form.locked {
  opacity: 0.62;
  pointer-events: none;
}
.employer-access-notice {
  padding: 13px 6%;
  border-bottom: 1px solid #ffd59a;
  background: #fff7e8;
  color: #8a4b08;
  font-weight: 700;
  text-align: center;
}
.optional-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}
.field-hint {
  margin: -2px 0 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
#jobDescription {
  min-height: 430px;
  line-height: 1.65;
}
#screeningQuestions {
  line-height: 1.65;
}
.btn.ghost {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--line);
  box-shadow: none;
}
.job-preview-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(10, 18, 34, 0.48);
  backdrop-filter: blur(6px);
}
.job-preview-panel {
  position: fixed;
  z-index: 1210;
  top: 0;
  right: 0;
  width: min(640px, 94vw);
  height: 100vh;
  overflow-y: auto;
  background: #ffffff;
  border-left: 1px solid var(--line);
  box-shadow: -24px 0 80px rgba(8, 18, 38, 0.18);
  transform: translateX(105%);
  transition: transform 0.28s ease;
  padding: 28px;
}
.job-preview-panel.open {
  transform: translateX(0);
}
.preview-panel-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.preview-panel-header h2 {
  margin: 6px 0 0;
  font-size: 30px;
}
.preview-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #f6f8fc;
  border-radius: 999px;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  color: var(--dark);
}
.preview-job-card h1 {
  margin: 14px 0 16px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.08;
}
.preview-company-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}
.preview-company-row strong {
  padding: 7px 10px;
  border-radius: 999px;
  background: #eaf0ff;
  color: var(--blue);
  font-size: 12px;
  text-transform: capitalize;
}
.preview-job-card section {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.preview-job-card h3,
.job-more-details h3 {
  margin: 0 0 10px;
  font-size: 18px;
}
.preview-description,
.job-full-description {
  color: #3c465b;
  line-height: 1.75;
  white-space: normal;
}
.job-more-details {
  margin: 12px 0 2px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  background: #fbfcff;
}
.job-more-details summary {
  cursor: pointer;
  color: var(--blue);
  font-weight: 650;
}
.job-more-details[open] summary {
  margin-bottom: 14px;
}

@media (max-width: 720px) {
  .job-preview-panel {
    width: 100vw;
    padding: 22px;
  }
  .publish-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Employer dashboard */
.employer-dashboard-page {
  background: #f5f7fb;
  color: #162033;
}
.employer-dashboard-shell {
  display: grid;
  gap: 24px;
  padding: 38px max(5%, calc((100% - 1380px) / 2)) 80px;
}
.dashboard-topbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.dashboard-topbar h1 {
  margin: 5px 0 8px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.04em;
}
.dashboard-topbar p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}
.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.dashboard-alert {
  padding: 14px 16px;
  border: 1px solid #cfe0ff;
  border-radius: 8px;
  background: #f2f6ff;
  color: #174dbd;
  font-weight: 700;
}
.dashboard-alert.error {
  border-color: #ffd0c8;
  background: #fff4f2;
  color: #b42318;
}
.dashboard-alert.success {
  border-color: #bce7cf;
  background: #f0fff6;
  color: #137a43;
}
.dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.dashboard-kpis article,
.dashboard-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 70px rgba(8, 18, 38, 0.07);
}
.dashboard-kpis article {
  display: grid;
  gap: 7px;
  padding: 20px;
}
.dashboard-kpis span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.dashboard-kpis strong {
  color: var(--dark);
  font-size: 34px;
  line-height: 1;
}
.dashboard-kpis small {
  color: #7a879b;
  line-height: 1.45;
}
.dashboard-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 18px;
  align-items: start;
}
.dashboard-panel {
  padding: 24px;
}
.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}
.panel-heading.stacked {
  display: grid;
  gap: 8px;
}
.panel-heading h2 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.02em;
}
.panel-heading p,
.dashboard-note {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.55;
}
.panel-heading select {
  width: min(270px, 100%);
  margin: 0;
  background: #fff;
}
.job-performance-list {
  display: grid;
  gap: 10px;
}
.job-performance-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.job-performance-row:first-child {
  border-top: 0;
}
.job-performance-row h3 {
  margin: 0 0 5px;
  font-size: 18px;
}
.job-performance-row p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.job-performance-metrics {
  display: grid;
  grid-template-columns: repeat(3, 96px);
  gap: 8px;
}
.job-performance-metrics span {
  display: grid;
  gap: 3px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
  text-align: center;
}
.job-performance-metrics strong {
  color: var(--dark);
  font-size: 20px;
}
.job-performance-metrics small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.ai-shortlist-panel {
  position: sticky;
  top: 96px;
}
.ai-pill {
  display: inline-flex;
  width: max-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eaf0ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}
.shortlist-meter {
  display: grid;
  place-items: center;
  width: 168px;
  height: 168px;
  margin: 22px auto;
  border: 12px solid #eaf0ff;
  border-top-color: var(--blue);
  border-radius: 50%;
  text-align: center;
}
.shortlist-meter span {
  display: block;
  color: var(--dark);
  font-size: 34px;
  font-weight: 900;
}
.shortlist-meter small {
  max-width: 100px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}
.ai-shortlist-panel .btn {
  width: 100%;
  text-align: center;
}
.applicants-panel {
  overflow: hidden;
}
.applicant-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7f9fd;
}
.applicant-tabs button {
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
}
.applicant-tabs button.active {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 6px 18px rgba(8, 18, 38, 0.08);
}
.applicants-table-wrap {
  overflow-x: auto;
}
.applicants-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}
.applicants-table th,
.applicants-table td {
  padding: 15px 12px;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}
.applicants-table th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.candidate-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}
.candidate-cell > span,
.activity-item > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #eaf0ff;
  color: var(--blue);
  font-weight: 900;
}
.candidate-cell strong,
.candidate-cell small {
  display: block;
}
.candidate-cell small {
  margin-top: 3px;
  color: var(--muted);
}
.match-cell {
  display: grid;
  gap: 7px;
  min-width: 120px;
}
.match-cell strong {
  color: var(--dark);
}
.match-cell i {
  display: block;
  overflow: hidden;
  height: 7px;
  border-radius: 999px;
  background: #eaf0ff;
}
.match-cell i span {
  display: block;
  width: var(--match-width);
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
}
.status-pill {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  font-size: 12px;
  font-weight: 900;
}
.status-pill.shortlisted {
  background: #ecfdf3;
  color: #137a43;
}
.status-pill.reviewing {
  background: #fff7e8;
  color: #8a4b08;
}
.status-pill.rejected {
  background: #fff4f2;
  color: #b42318;
}
.status-pill.interview,
.status-pill.hired {
  background: #eaf0ff;
  color: var(--blue);
}
.table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.table-actions button {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--dark);
  cursor: pointer;
  font-weight: 800;
}
.table-actions button:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.table-empty-state {
  display: grid;
  gap: 5px;
  padding: 20px 0;
  text-align: center;
}
.table-empty-state strong {
  color: var(--dark);
}
.table-empty-state span {
  color: var(--muted);
}
.dashboard-lower-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.activity-list {
  display: grid;
  gap: 12px;
}
.activity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.activity-item:first-child {
  border-top: 0;
}
.activity-item strong,
.activity-item small {
  display: block;
}
.activity-item small {
  margin-top: 3px;
  color: var(--muted);
}
.next-action-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.next-action-list li {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}
.next-action-list strong {
  color: var(--dark);
}
.next-action-list span {
  color: var(--muted);
  line-height: 1.45;
}

@media (max-width: 1120px) {
  .dashboard-kpis {
    grid-template-columns: repeat(3, 1fr);
  }
  .dashboard-workspace,
  .dashboard-lower-grid {
    grid-template-columns: 1fr;
  }
  .ai-shortlist-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .employer-dashboard-shell {
    padding-right: 22px;
    padding-left: 22px;
  }
  .dashboard-topbar,
  .panel-heading {
    flex-direction: column;
    align-items: stretch;
  }
  .dashboard-actions,
  .dashboard-actions .btn {
    width: 100%;
  }
  .dashboard-kpis,
  .job-performance-row,
  .job-performance-metrics {
    grid-template-columns: 1fr;
  }
}

/* Candidate profile and dashboard */
.candidate-profile-page,
.candidate-dashboard-page {
  background: #f5f7fb;
  color: #162033;
}
.candidate-profile-shell,
.candidate-dashboard-shell {
  display: grid;
  gap: 24px;
  padding: 38px max(5%, calc((100% - 1380px) / 2)) 80px;
}
.candidate-profile-intro,
.candidate-dashboard-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.candidate-profile-intro h1,
.candidate-dashboard-hero h1 {
  max-width: 780px;
  margin: 5px 0 10px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.045em;
}
.candidate-profile-intro p,
.candidate-dashboard-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.profile-completion-panel {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 310px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(8, 18, 38, 0.07);
}
.profile-completion-panel > span {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border: 8px solid #eaf0ff;
  border-top-color: var(--blue);
  border-radius: 50%;
  color: var(--blue);
  font-size: 22px;
  font-weight: 900;
}
.profile-completion-panel strong,
.profile-completion-panel small {
  display: block;
}
.profile-completion-panel small {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.45;
}
.candidate-profile-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}
.candidate-profile-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
}
.freelancer-profile-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(8, 18, 38, 0.08);
}
.freelancer-photo-wrap {
  position: relative;
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  overflow: hidden;
  border: 4px solid #eaf0ff;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f2350, #2563eb);
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.freelancer-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.freelancer-identity h2 {
  margin: 4px 0;
  color: var(--dark);
  font-size: 28px;
  letter-spacing: -0.035em;
}
.freelancer-identity p:last-child,
.freelancer-summary-preview {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.freelancer-status-row,
.freelancer-skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.freelancer-status-row span,
.freelancer-skill-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid #dbe5f3;
  border-radius: 999px;
  background: #f8fbff;
  color: #48607f;
  font-size: 13px;
  font-weight: 800;
}
.freelancer-skill-list span {
  color: var(--blue);
}
.freelancer-profile-actions {
  display: grid;
  gap: 9px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.freelancer-profile-actions .btn {
  width: 100%;
  justify-content: center;
}
.freelancer-profile-actions small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}
.profile-steps-panel {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(8, 18, 38, 0.06);
}
.profile-steps-panel a {
  padding: 12px 13px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 800;
}
.profile-steps-panel a.active,
.profile-steps-panel a:hover {
  background: #eaf0ff;
  color: var(--blue);
}
.candidate-profile-form {
  display: grid;
  gap: 18px;
}
.profile-form-section {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 70px rgba(8, 18, 38, 0.06);
}
.profile-form-section h2 {
  margin: 4px 0 0;
  font-size: 27px;
  letter-spacing: -0.025em;
}
.profile-form-section label {
  display: block;
  color: var(--dark);
  font-weight: 800;
  margin-bottom: 8px;
}
.profile-form-section input:disabled {
  background: #f5f7fb;
  color: #7a879b;
}
.profile-photo-upload-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px dashed #cbd7e8;
  border-radius: 8px;
  background: #f8fbff;
}
.profile-photo-upload-box input {
  margin-bottom: 0;
}
.cv-upload-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px dashed #cbd7e8;
  border-radius: 8px;
  background: #f8fbff;
}
.cv-upload-box input {
  margin-bottom: 0;
}
.cv-upload-box p:last-child {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}
.profile-save-bar {
  position: sticky;
  bottom: 18px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(8, 18, 38, 0.12);
  backdrop-filter: blur(12px);
}
.profile-save-bar .form-message {
  margin: 0;
}
.candidate-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.candidate-dashboard-grid article {
  display: grid;
  gap: 12px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(8, 18, 38, 0.07);
}
.candidate-dashboard-grid span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.candidate-dashboard-grid h2 {
  margin: 0;
  font-size: 24px;
}
.candidate-dashboard-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.candidate-dashboard-grid a {
  width: max-content;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 900;
}

@media (max-width: 1040px) {
  .candidate-profile-intro,
  .candidate-dashboard-hero,
  .candidate-profile-layout {
    grid-template-columns: 1fr;
  }
  .candidate-profile-sidebar {
    position: static;
  }
  .candidate-profile-intro,
  .candidate-dashboard-hero {
    display: grid;
  }
  .profile-completion-panel {
    min-width: 0;
  }
  .profile-steps-panel {
    position: static;
    grid-template-columns: repeat(4, 1fr);
  }
  .candidate-dashboard-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .candidate-profile-shell,
  .candidate-dashboard-shell {
    padding-right: 22px;
    padding-left: 22px;
  }
  .profile-steps-panel,
  .profile-photo-upload-box,
  .cv-upload-box,
  .profile-save-bar {
    grid-template-columns: 1fr;
  }
  .profile-save-bar,
  .profile-save-bar .btn {
    width: 100%;
  }
}
