/* biome-ignore-all lint/style/noDescendingSpecificity: Named component selectors are independent; media queries intentionally override their own components. */
/* Landing page do SIT — cópia estática (HTML/CSS/JS) para uso fora da plataforma. */

:root {
  --landing-ink: #292631;
  --landing-muted: #706b78;
  --landing-purple: #493d9a;
  --landing-line: #e8e5eb;
  --landing-paper: #fdfcfb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--landing-paper);
  color: var(--landing-ink);
  font-family: "Inter", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

:is(a, button, summary, input):focus-visible {
  outline: 3px solid #8271ce;
  outline-offset: 5px;
}

:is(section, main) {
  scroll-margin-top: 108px;
}

a {
  text-decoration: none;
}

a:not(.landing-button) {
  color: inherit;
}

button {
  font: inherit;
  border: 0;
  background: none;
}

/* CTAs sem destino habilitado (vagas / entrar / cadastro) ficam visualmente
   presentes, mas não navegam para lugar nenhum por enquanto. */
a[href="#"] {
  cursor: default;
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--landing-paper);
  border-bottom: 1px solid var(--landing-line);
}
.landing-header-inner {
  max-width: 1200px;
  min-height: 92px;
  margin: auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-inline: 1px solid var(--landing-line);
  gap: 28px;
}
.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}
.landing-brand > svg {
  width: 34px;
  height: 34px;
  color: var(--landing-purple);
}
.landing-brand > span:first-of-type {
  font-size: 40px;
  font-weight: 720;
  letter-spacing: -3px;
  line-height: 1;
  padding-bottom: 8px;
}
.landing-brand .landing-brand-tagline {
  border-left: 1px solid #d7d2de;
  margin-left: 14px;
  padding-left: 18px;
  font-size: 11px;
  line-height: 1.45;
  color: var(--landing-muted);
}
.landing-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
}
.landing-nav > a:not(.landing-button):hover,
.landing-footer nav a:hover {
  color: var(--landing-purple);
}
.landing-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-radius: 999px;
  background: var(--landing-purple);
  color: white;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 550;
  line-height: 1.5;
  transition:
    background 160ms,
    transform 160ms;
}
.landing-button:hover {
  background: #382d80;
  transform: translateY(-2px);
}
.landing-button svg,
.landing-text-link svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}
.landing-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 44px;
  font-size: 14px;
  font-weight: 550;
  text-underline-offset: 5px;
}
.landing-text-link:hover {
  text-decoration: underline;
}
.landing-frame {
  max-width: 1200px;
  margin: auto;
  border-inline: 1px solid var(--landing-line);
}
.landing-audiences {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  border-bottom: 1px solid var(--landing-line);
}
.landing-audience-caption {
  font-size: 11px;
  color: var(--landing-muted);
}
.landing-tabs {
  display: flex;
  height: auto;
  padding: 0;
  gap: 28px;
  background: transparent;
  border-radius: 0;
  list-style: none;
  margin: 0;
}
.landing-tab {
  height: 61px;
  padding: 0;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  font-size: 12px;
  color: var(--landing-muted);
  box-shadow: none;
  cursor: pointer;
}
.landing-tab[data-state="active"] {
  color: var(--landing-purple);
  border-color: var(--landing-purple);
  background: transparent;
  box-shadow: none;
}
.landing-tab:hover {
  color: var(--landing-purple);
}
.landing-audience-panel[data-state="inactive"] {
  display: none;
}
.landing-hero {
  padding: 0 40px 25px;
}
.landing-hero-copy {
  text-align: center;
  padding: 70px 0 65px;
}
.landing-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 550;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.7;
  color: var(--landing-purple);
}
.landing-hero-copy > .landing-eyebrow {
  justify-content: center;
  letter-spacing: 0.025em;
  text-transform: none;
  font-size: 13px;
}
.landing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
  background: currentColor;
  flex-shrink: 0;
}
.landing-hero h1 {
  margin: 22px auto 0;
  max-width: 1000px;
  font-size: clamp(42px, 6.1vw, 76px);
  line-height: 1.04;
  font-weight: 550;
  letter-spacing: -0.057em;
  text-wrap: balance;
}
.landing-hero h1 > span {
  display: block;
  color: var(--landing-purple);
}
.landing-description {
  max-width: 575px;
  margin: 26px auto 0;
  color: var(--landing-muted);
  font-size: 16px;
  line-height: 1.8;
  text-wrap: pretty;
}
.landing-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 27px;
  margin-top: 28px;
}
.landing-hero-copy .landing-actions {
  justify-content: center;
}
.landing-reassurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  color: var(--landing-muted);
  margin-top: 17px;
}
.landing-reassurance svg {
  width: 13px;
  height: 13px;
}
.landing-preview-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--landing-muted);
}
.landing-preview-heading a {
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0;
  font-size: 11px;
  min-height: 30px;
}
.landing-preview-heading svg {
  height: 14px;
  width: 14px;
}
.landing-product-stage {
  position: relative;
  background: #e9e4f5;
  padding: 32px 32px 40px;
  border-radius: 10px;
}
.landing-product-window {
  overflow: hidden;
  background: #fff;
  border: 1px solid #d7d1e4;
  border-radius: 8px;
  box-shadow: 0 12px 24px -16px #3a285b35;
}
.landing-product-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ece9ef;
  padding: 13px 20px;
}
.landing-mini-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 23px;
  font-weight: 650;
  letter-spacing: -1px;
}
.landing-mini-brand > svg {
  height: 22px;
  width: 22px;
  color: var(--landing-purple);
}
.landing-mini-brand > span {
  font-size: 11px;
  color: var(--landing-muted);
  font-weight: 400;
  letter-spacing: 0;
  margin-left: 10px;
}
.landing-mini-brand > span:first-of-type {
  color: #ccc7d3;
  font-size: 19px;
}
.landing-window-tools {
  display: flex;
  gap: 16px;
  align-items: center;
  color: #827a8e;
}
.landing-window-tools > svg {
  height: 15px;
  width: 15px;
}
.landing-avatar {
  display: grid;
  place-items: center;
  height: 28px;
  width: 28px;
  border-radius: 50%;
  background: #eee8f9;
  color: var(--landing-purple);
  font-size: 10px;
  font-weight: 600;
}
.landing-product-body {
  display: grid;
  grid-template-columns: 175px minmax(0, 1fr);
}
.landing-product-sidebar {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 22px 11px 14px;
  border-right: 1px solid #ece9ef;
  background: #fdfcfe;
}
.landing-product-sidebar > span {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 10px;
  font-size: 10px;
  color: var(--landing-muted);
}
.landing-product-sidebar > .landing-sidebar-label {
  font-size: 8px;
  letter-spacing: 0.09em;
  padding-top: 0;
  margin-bottom: 6px;
}
.landing-product-sidebar svg {
  height: 14px;
  width: 14px;
  flex-shrink: 0;
}
.landing-product-sidebar .is-active {
  background: #eee9f8;
  border-radius: 5px;
  color: var(--landing-purple);
  font-weight: 600;
}
.landing-product-sidebar .is-active svg:last-child {
  margin-left: auto;
  width: 12px;
}
.landing-sidebar-bottom {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding: 24px 10px 15px;
  color: #8b8396;
  font-size: 9px;
}
.landing-product-main {
  padding: 27px;
  min-width: 0;
}
.landing-product-greeting {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}
.landing-product-greeting p {
  font-size: 25px;
  font-weight: 550;
  letter-spacing: -0.8px;
  margin: 0;
}
.landing-product-greeting div > span {
  display: block;
  margin-top: 5px;
  font-size: 10px;
  color: var(--landing-muted);
}
.landing-demo-label {
  border: 1px solid #e9e5ed;
  border-radius: 4px;
  padding: 5px 7px;
  font-size: 8px;
  color: #837a90;
  white-space: nowrap;
}
.landing-candidate-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 20px;
}
.landing-preview-search {
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #e4e0e9;
  border-radius: 5px;
  padding: 9px;
  font-size: 9px;
  color: #8a8392;
}
.landing-preview-search > svg {
  height: 12px;
  width: 12px;
}
.landing-preview-search > span:last-child {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  color: var(--landing-purple);
}
.landing-preview-search span > svg {
  height: 11px;
  width: 11px;
}
.landing-preview-filters {
  display: flex;
  gap: 6px;
  margin: 12px 0 16px;
  font-size: 8px;
  color: var(--landing-muted);
}
.landing-preview-filters > span {
  padding: 5px 8px;
  border-radius: 20px;
  border: 1px solid #e9e5ed;
  white-space: nowrap;
}
.landing-preview-filters .is-active {
  background: #eeebf6;
  border-color: #eeebf6;
  color: var(--landing-purple);
}
.landing-preview-job {
  display: flex;
  gap: 12px;
  border-top: 1px solid #ece9ef;
  padding: 18px 0;
}
.landing-company-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 39px;
  height: 39px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -3px;
  padding-bottom: 4px;
}
.landing-company-mark > span {
  font-size: 20px;
  color: #ac684d;
}
.landing-company-mark.peach {
  background: #f8e4d8;
  color: #94573c;
}
.landing-company-mark.lilac {
  background: #e6e2f3;
  color: #5c4ba2;
}
.landing-company-mark.lilac > span {
  color: #5c4ba2;
}
.landing-job-company {
  font-size: 9px;
  color: var(--landing-muted);
}
.landing-preview-job p {
  margin-top: 3px;
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 600;
}
.landing-preview-job > svg {
  height: 13px;
  width: 13px;
  margin-left: auto;
  color: #938a9e;
}
.landing-job-meta {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-top: 9px;
  color: var(--landing-muted);
  font-size: 8px;
}
.landing-job-meta > span {
  display: flex;
  align-items: center;
  gap: 3px;
}
.landing-job-meta svg {
  height: 10px;
  width: 10px;
}
.landing-job-meta > span:last-child {
  padding-left: 9px;
  border-left: 1px solid #dcd6e4;
}
.landing-journey-preview {
  background: #f6f3fb;
  padding: 19px 18px 0;
  border-radius: 6px;
}
.landing-preview-overline {
  font-size: 8px;
  color: var(--landing-purple);
  letter-spacing: 0.08em;
}
.landing-journey-preview > p,
.landing-network-activity > p {
  font-size: 23px;
  line-height: 1.16;
  letter-spacing: -0.8px;
  margin: 10px 0 20px;
  font-weight: 500;
}
.landing-journey-preview ol {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.landing-journey-preview li {
  display: flex;
  gap: 10px;
  position: relative;
  min-height: 49px;
  font-size: 9px;
  font-weight: 500;
}
.landing-journey-preview li:not(:last-child)::before {
  content: "";
  width: 1px;
  position: absolute;
  left: 9px;
  top: 21px;
  bottom: 0;
  background: #d6cde9;
}
.landing-journey-preview li > span {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid #d7cfea;
  border-radius: 50%;
  color: var(--landing-purple);
  flex-shrink: 0;
}
.landing-journey-preview li:first-child > span,
.landing-journey-preview li:nth-child(2) > span {
  background: var(--landing-purple);
  color: white;
  border-color: var(--landing-purple);
}
.landing-journey-preview li svg {
  width: 11px;
  height: 11px;
}
.landing-journey-preview small {
  display: block;
  font-size: 8px;
  color: #8a8098;
  margin-top: 3px;
  font-weight: 400;
}
.landing-journey-footer {
  padding: 12px 0;
  border-top: 1px solid #e4ddef;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  font-size: 8px;
  color: var(--landing-purple);
}
.landing-journey-footer svg {
  width: 12px;
  height: 12px;
}
.landing-product-stamp {
  position: absolute;
  right: 17px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid #d6cce9;
  background: #fffdfa;
  box-shadow: 0 3px 8px #30264c08;
  border-radius: 5px;
  transform: rotate(-3deg);
  font-size: 11px;
}
.landing-product-stamp > svg {
  background: #eee7f8;
  border-radius: 50%;
  padding: 4px;
  color: var(--landing-purple);
  width: 24px;
  height: 24px;
}
.landing-product-figure {
  margin: 0;
}
.landing-product-figure figcaption {
  font-size: 9px;
  text-align: center;
  color: #81788c;
  margin-top: 14px;
  line-height: 1.7;
}
.landing-section {
  padding: 84px 48px;
  border-top: 1px solid var(--landing-line);
  position: relative;
}
.landing-section::before {
  content: "+";
  position: absolute;
  top: -13px;
  left: -5px;
  color: #bbb2c7;
  font-weight: 300;
  background: var(--landing-paper);
}
.landing-section h2,
.landing-join h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.13;
  letter-spacing: -0.04em;
  font-weight: 500;
  text-wrap: balance;
  margin: 0;
}
.landing-section-heading .landing-eyebrow {
  margin-bottom: 17px;
}
.landing-section-heading > p:last-child {
  font-size: 14px;
  color: var(--landing-muted);
  margin-top: 20px;
  line-height: 1.8;
}
.landing-benefits .landing-section-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}
.landing-benefits .landing-section-heading .landing-eyebrow {
  flex-shrink: 0;
  margin-top: 6px;
}
.landing-benefits h2 {
  max-width: 590px;
}
.landing-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 50px;
}
.landing-benefit {
  padding: 0 30px;
  border-left: 1px solid var(--landing-line);
}
.landing-benefit:first-child {
  border-left: 0;
  padding-left: 0;
}
.landing-benefit:last-child {
  padding-right: 0;
}
.landing-benefit-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.landing-benefit-top svg {
  width: 29px;
  height: 29px;
  color: var(--landing-purple);
  stroke-width: 1.3;
}
.landing-benefit-top span {
  font-size: 10px;
  color: #9a91a5;
}
.landing-benefit h3,
.landing-steps h3 {
  font-size: 19px;
  font-weight: 550;
  line-height: 1.35;
  letter-spacing: -0.5px;
  margin: 0;
}
.landing-benefit p,
.landing-steps p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--landing-muted);
  margin-top: 14px;
}
.landing-search-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 30px 48px 42px;
}
.landing-search-section h2 {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.6px;
  margin-top: 7px;
}
.landing-search {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #aba0bd;
  padding: 7px 0;
}
.landing-search > svg {
  width: 17px;
  height: 17px;
  color: var(--landing-purple);
  flex-shrink: 0;
}
.landing-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  font-size: 12px;
  height: 38px;
  font-family: inherit;
}
.landing-search input::placeholder {
  color: var(--landing-muted);
}
.landing-search button {
  display: grid;
  place-items: center;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--landing-purple);
  color: white;
  flex-shrink: 0;
}
.landing-search button:hover {
  background: #382d80;
}
.landing-search button svg {
  width: 16px;
  height: 16px;
}
.landing-search-section search {
  display: block;
}
.landing-search-section search > p {
  color: var(--landing-muted);
  font-size: 10px;
  margin-top: 10px;
}
.landing-how {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  background: #f7f5f9;
}
.landing-how .landing-text-link {
  margin-top: 24px;
  color: var(--landing-purple);
}
.landing-steps {
  display: grid;
  list-style: none;
  margin: 0;
  padding: 0;
}
.landing-steps li {
  display: grid;
  grid-template-columns: 37px 1fr;
  gap: 22px;
  padding: 25px 0;
  border-bottom: 1px solid #e3dce9;
}
.landing-steps li:first-child {
  padding-top: 0;
}
.landing-steps li:last-child {
  padding-bottom: 0;
  border: 0;
}
.landing-step-number {
  font-size: 25px;
  letter-spacing: -1px;
  font-weight: 400;
  color: #9685b3;
}
.landing-steps p {
  margin-top: 8px;
}
.landing-steps h3 {
  margin: 0;
}
.landing-join {
  margin: 42px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  background: #33294f;
  color: #fffefa;
  border-radius: 8px;
  padding: 56px;
}
.landing-join .landing-eyebrow {
  color: #d0c1ed;
  font-size: 10px;
}
.landing-join h2 {
  margin-top: 22px;
  font-size: 39px;
}
.landing-join-copy > p:not(.landing-eyebrow) {
  font-size: 13px;
  line-height: 1.85;
  color: #c9c0d7;
  margin-top: 20px;
}
.landing-button-light {
  background: #ede5fa;
  color: #33294f;
  font-size: 12px;
  gap: 14px;
  padding-inline: 20px;
}
.landing-button-light:hover {
  background: white;
}
.landing-join .landing-actions {
  gap: 16px;
}
.landing-join .landing-text-link {
  font-size: 11px;
  color: #e5dcee;
}
.landing-join-note {
  border-left: 1px solid #655776;
  padding-left: 46px;
  align-self: center;
}
.landing-price {
  display: flex;
  align-items: baseline;
  font-size: 100px;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -7px;
}
.landing-price > span:first-child {
  font-size: 21px;
  letter-spacing: -1px;
  margin-right: 8px;
}
.landing-price > span:last-child {
  font-size: 33px;
  letter-spacing: -1px;
}
.landing-join-note > p {
  color: #e4d9f0;
  font-size: 12px;
  margin-top: 8px;
}
.landing-join-divider {
  height: 1px;
  background: #655776;
  margin: 25px 0 20px;
}
.landing-join-note > span:last-child {
  color: #c9c0d7;
  font-size: 11px;
  line-height: 1.9;
  display: block;
}
.landing-faq {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 76px;
  border-top: 0;
  padding-top: 42px;
}
.landing-faq h2 {
  font-size: 35px;
}
.landing-questions {
  border-top: 1px solid var(--landing-line);
}
.landing-questions details {
  border-bottom: 1px solid var(--landing-line);
}
.landing-questions summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  list-style: none;
  font-size: 13px;
  font-weight: 500;
  min-height: 72px;
  padding: 18px 0;
  cursor: pointer;
}
.landing-questions summary::-webkit-details-marker {
  display: none;
}
.landing-questions summary svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--landing-purple);
  transition: transform 180ms;
}
.landing-questions details[open] summary svg {
  transform: rotate(45deg);
}
.landing-questions details > p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--landing-muted);
  padding: 0 25px 24px 0;
  margin: 0;
}
.landing-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
}
.landing-about h2 {
  font-size: 35px;
  margin-top: 18px;
}
.landing-about h2 > span {
  color: #9787b0;
}
.landing-about-copy > p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--landing-muted);
  margin: 0;
}
.landing-about-copy > p + p {
  margin-top: 15px;
}
.landing-word-network {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 27px;
  font-size: 12px;
  color: var(--landing-purple);
}
.landing-word-network svg {
  width: 15px;
  height: 15px;
  color: #aa9cbf;
}
.landing-footer {
  border-top: 1px solid var(--landing-line);
  max-width: 1200px;
  border-inline: 1px solid var(--landing-line);
  margin: auto;
  padding: 45px 40px 0;
}
.landing-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  padding-bottom: 40px;
}
.landing-footer-top p {
  font-size: 11px;
  color: var(--landing-muted);
  margin-top: 17px;
}
.landing-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 11px;
}
.landing-footer nav a {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 32px;
}
.landing-footer nav svg {
  width: 13px;
  height: 13px;
}
.landing-footer-bottom {
  border-top: 1px solid var(--landing-line);
  display: flex;
  justify-content: space-between;
  padding: 22px 0;
  gap: 20px;
  color: #898090;
  font-size: 10px;
}
.landing-process-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.landing-process-heading > svg {
  width: 33px;
  height: 33px;
  background: #eee9f7;
  padding: 8px;
  border-radius: 5px;
  color: var(--landing-purple);
}
.landing-process-heading strong {
  display: block;
  font-size: 12px;
  font-weight: 550;
}
.landing-process-heading div > span {
  font-size: 9px;
  color: var(--landing-muted);
}
.landing-status {
  font-size: 8px;
  margin-left: auto;
  color: #486249;
  background: #edf3e8;
  border-radius: 20px;
  padding: 5px 8px;
}
.landing-kanban {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
  max-height: 280px;
  overflow: hidden;
}
.landing-kanban-column {
  padding: 10px;
  background: #f7f5f9;
  border-radius: 5px;
}
.landing-kanban-column > div:first-child {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  margin-bottom: 12px;
}
.landing-kanban-column > div:first-child > span {
  color: #9b90a6;
}
.landing-talent {
  padding: 12px;
  border: 1px solid #e7e2ec;
  background: #fff;
  border-radius: 5px;
  margin-top: 9px;
}
.landing-talent strong {
  display: block;
  font-size: 10px;
  margin-top: 8px;
}
.landing-talent > span:not(.landing-avatar) {
  font-size: 8px;
  color: var(--landing-muted);
}
.landing-talent > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #eee9f2;
  padding-top: 8px;
  margin-top: 10px;
  font-size: 8px;
  color: var(--landing-purple);
}
.landing-talent > div svg {
  height: 12px;
  width: 12px;
}
.landing-government-preview {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 22px;
}
.landing-network-map {
  padding: 20px;
  border-radius: 5px;
  background: #f4f0f9;
}
.landing-network-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 23px 0 30px;
  position: relative;
}
.landing-network-center::after {
  content: "";
  width: 1px;
  height: 30px;
  position: absolute;
  bottom: -30px;
  background: #cfc2e3;
}
.landing-network-center svg {
  width: 44px;
  height: 44px;
  color: var(--landing-purple);
}
.landing-network-center strong {
  font-size: 17px;
  font-weight: 550;
  margin-top: 6px;
  letter-spacing: -0.4px;
}
.landing-network-center > span {
  font-size: 8px;
  color: var(--landing-muted);
  margin-top: 6px;
}
.landing-network-branches {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #cfc2e3;
}
.landing-network-branches > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 21px 0 0;
  gap: 8px;
  font-size: 9px;
  color: var(--landing-purple);
  position: relative;
}
.landing-network-branches > div::before {
  content: "";
  height: 13px;
  top: 0;
  width: 1px;
  background: #cfc2e3;
  position: absolute;
}
.landing-network-branches svg {
  width: 20px;
  height: 20px;
}
.landing-network-activity {
  padding: 16px 0;
}
.landing-network-activity > div {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 0;
  border-bottom: 1px solid #e8e3ed;
  font-size: 9px;
}
.landing-network-activity > div svg {
  width: 13px;
  height: 13px;
  color: var(--landing-purple);
}
.landing-network-activity > div svg:last-child {
  margin-left: auto;
}
.landing-network-activity > span:last-child {
  display: block;
  margin-top: 16px;
  font-size: 9px;
  color: var(--landing-muted);
  line-height: 1.7;
}

@media (min-width: 1320px) {
  .landing-header::before,
  .landing-header::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: calc((100% - 1200px) / 2);
    background: repeating-linear-gradient(45deg, transparent 0 8px, #eae6ef 8px 9px);
    opacity: 0.55;
  }
  .landing-header::before {
    left: 0;
  }
  .landing-header::after {
    right: 0;
  }
  .landing-header {
    position: sticky;
  }
}

@media (max-width: 1000px) {
  .landing-header-inner {
    padding-inline: 28px;
  }
  .landing-nav {
    gap: 22px;
  }
  .landing-brand .landing-brand-tagline {
    display: none;
  }
  .landing-hero,
  .landing-audiences {
    padding-inline: 28px;
  }
  .landing-hero-copy {
    padding-top: 58px;
  }
  .landing-section {
    padding: 64px 32px;
  }
  .landing-product-stage {
    padding: 24px 20px 35px;
  }
  .landing-product-body {
    grid-template-columns: 145px minmax(0, 1fr);
  }
  .landing-product-sidebar {
    padding-inline: 6px;
  }
  .landing-product-main {
    padding: 22px 18px;
  }
  .landing-candidate-preview {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 15px;
  }
  .landing-preview-search > span:last-child {
    display: none;
  }
  .landing-demo-label {
    display: none;
  }
  .landing-how,
  .landing-faq,
  .landing-about {
    gap: 44px;
  }
  .landing-join {
    margin: 30px;
    padding: 38px;
    gap: 30px;
  }
  .landing-join h2 {
    font-size: 33px;
  }
  .landing-join-note {
    padding-left: 30px;
  }
  .landing-search-section {
    padding-inline: 32px;
    gap: 30px;
  }
  .landing-government-preview {
    gap: 16px;
  }
  .landing-network-map {
    padding: 15px;
  }
}

@media (max-width: 760px) {
  .landing-header-inner {
    min-height: 74px;
    padding-inline: 20px;
    gap: 15px;
  }
  .landing-brand > span:first-of-type {
    font-size: 35px;
  }
  .landing-brand > svg {
    width: 29px;
    height: 29px;
  }
  .landing-nav {
    gap: 16px;
  }
  .landing-audience-caption {
    display: none;
  }
  .landing-audiences {
    justify-content: center;
    padding-inline: 20px;
  }
  .landing-tabs {
    width: 100%;
    gap: 12px;
    justify-content: space-between;
  }
  .landing-tab {
    height: 56px;
    font-size: 11px;
  }
  .landing-hero {
    padding-inline: 20px;
    padding-bottom: 24px;
  }
  .landing-hero-copy {
    padding: 48px 0;
  }
  .landing-hero h1 {
    font-size: clamp(36px, 6.8vw, 55px);
    letter-spacing: -0.055em;
    line-height: 1.09;
  }
  .landing-hero-copy > .landing-eyebrow {
    font-size: 11px;
  }
  .landing-description {
    font-size: 14px;
    line-height: 1.8;
    max-width: 475px;
    margin-top: 22px;
  }
  .landing-actions {
    gap: 22px;
    margin-top: 24px;
  }
  .landing-button {
    font-size: 12px;
    padding-inline: 20px;
    min-height: 47px;
    gap: 17px;
  }
  .landing-text-link {
    font-size: 12px;
  }
  .landing-reassurance {
    font-size: 10px;
  }
  .landing-preview-heading {
    font-size: 8px;
    letter-spacing: 0.02em;
  }
  .landing-preview-heading a {
    font-size: 9px;
    gap: 4px;
  }
  .landing-product-stage {
    padding: 17px 15px 29px;
  }
  .landing-product-body {
    grid-template-columns: 1fr;
  }
  .landing-product-sidebar {
    display: none;
  }
  .landing-product-main {
    padding: 24px 20px;
  }
  .landing-mini-brand > span {
    margin-left: 3px;
    font-size: 10px;
  }
  .landing-product-topbar {
    padding: 11px 17px;
  }
  .landing-window-tools {
    gap: 12px;
  }
  .landing-window-tools > svg {
    display: none;
  }
  .landing-product-greeting {
    margin-bottom: 20px;
  }
  .landing-product-greeting p {
    font-size: 24px;
  }
  .landing-candidate-preview {
    gap: 20px;
  }
  .landing-product-stamp {
    padding: 9px 13px;
    font-size: 10px;
    bottom: 12px;
    right: 10px;
  }
  .landing-product-figure figcaption {
    font-size: 8px;
    margin-inline: 15px;
  }
  .landing-search-section {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 15px 25px 40px;
  }
  .landing-search-section h2 {
    font-size: 24px;
  }
  .landing-section {
    padding: 52px 25px;
  }
  .landing-section h2 {
    font-size: 32px;
  }
  .landing-benefits .landing-section-heading {
    display: block;
  }
  .landing-benefits h2 {
    max-width: 450px;
  }
  .landing-benefit-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
  .landing-benefit {
    border-left: 0;
    border-top: 1px solid var(--landing-line);
    padding: 25px 0;
  }
  .landing-benefit:last-child {
    padding-bottom: 0;
  }
  .landing-benefit-top {
    margin-bottom: 18px;
  }
  .landing-benefit h3 {
    font-size: 20px;
  }
  .landing-benefit p {
    margin-top: 9px;
  }
  .landing-how,
  .landing-about,
  .landing-faq {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .landing-how h2 {
    max-width: 360px;
  }
  .landing-how .landing-text-link {
    margin-top: 18px;
  }
  .landing-steps li {
    padding-block: 23px;
  }
  .landing-join {
    grid-template-columns: 1fr;
    margin: 20px;
    padding: 32px 25px;
    gap: 32px;
  }
  .landing-join h2 {
    font-size: 32px;
    max-width: 380px;
  }
  .landing-join-note {
    border-left: 0;
    border-top: 1px solid #655776;
    padding: 24px 0 0;
  }
  .landing-price {
    font-size: 76px;
  }
  .landing-join-note > span:last-child {
    max-width: 400px;
  }
  .landing-join-divider {
    margin-block: 20px 15px;
  }
  .landing-join .landing-actions {
    align-items: flex-start;
    gap: 8px 20px;
  }
  .landing-faq {
    padding-top: 40px;
  }
  .landing-faq .landing-section-heading > p:last-child {
    margin-top: 14px;
  }
  .landing-about h2 {
    max-width: 400px;
  }
  .landing-footer {
    padding: 35px 25px 0;
  }
  .landing-footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    padding-bottom: 25px;
  }
  .landing-footer nav {
    gap: 14px 22px;
  }
  .landing-footer-bottom {
    font-size: 9px;
  }
}

@media (max-width: 480px) {
  .landing-candidate-preview {
    grid-template-columns: 1fr;
  }
  .landing-journey-preview {
    display: none;
  }
  .landing-product-main {
    padding: 20px 15px 13px;
  }
  .landing-product-greeting p {
    font-size: 23px;
  }
  .landing-product-greeting div > span {
    line-height: 1.6;
    font-size: 9px;
  }
  .landing-preview-heading > span {
    max-width: 160px;
  }
  .landing-preview-heading a {
    white-space: nowrap;
  }
  .landing-job-company {
    font-size: 10px;
  }
  .landing-job-meta {
    font-size: 9px;
  }
  .landing-preview-filters {
    font-size: 8px;
  }
  .landing-kanban {
    gap: 7px;
    max-height: 285px;
  }
  .landing-kanban-column {
    padding: 7px 5px;
  }
  .landing-kanban-column > div:first-child {
    font-size: 8px;
    gap: 3px;
  }
  .landing-talent {
    padding: 8px 5px;
  }
  .landing-talent strong {
    font-size: 9px;
  }
  .landing-talent > span:not(.landing-avatar) {
    font-size: 7px;
  }
  .landing-process-heading {
    gap: 9px;
  }
  .landing-process-heading strong {
    font-size: 11px;
  }
  .landing-status {
    display: none;
  }
  .landing-government-preview {
    grid-template-columns: 1fr;
  }
  .landing-network-activity {
    display: none;
  }
  .landing-network-map {
    padding: 18px 14px;
  }
  .landing-network-center {
    margin-top: 16px;
  }
  .landing-word-network {
    gap: 10px;
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
    transition: none;
    animation: none;
  }
}
