@property --wtp-score-progress {
  syntax: '<number>';
  inherits: false;
  initial-value: 0;
}

:root {
  --wtp-navy-950: #06162f;
  --wtp-navy-900: #0a2348;
  --wtp-blue-600: #1769e8;
  --wtp-blue-500: #2f7df4;
  --wtp-sky-400: #55b9f3;
  --wtp-green-600: #0b9365;
  --wtp-green-500: #13ad79;
  --wtp-ink: #0b1528;
  --wtp-muted: #5a6880;
  --wtp-line: #dfe7f1;
  --wtp-canvas: #f5f8fc;
  --wtp-white: #fff;
  --wtp-radius-sm: 14px;
  --wtp-radius-md: 20px;
  --wtp-radius-lg: 30px;
  --wtp-shadow-sm: 0 12px 34px rgba(15, 40, 77, .08);
  --wtp-shadow-lg: 0 30px 80px rgba(15, 47, 91, .16);
}

body.wt-premium-home {
  overflow-x: hidden;
  background: var(--wtp-white);
  color: var(--wtp-ink);
}

.wt-premium-home .wtp-legacy-hidden {
  display: none !important;
}

.wt-premium-home .site-header {
  background: rgba(255, 255, 255, .93);
  border-bottom: 1px solid rgba(215, 225, 237, .85);
  box-shadow: none;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.wt-premium-home .site-header .container,
.wt-premium-home .wtp-container {
  width: min(1380px, calc(100% - 96px));
  margin-inline: auto;
}

.wt-premium-home .header-inner {
  min-height: 86px;
}

.wt-premium-home .main-nav {
  gap: 42px;
  margin-left: 56px;
}

.wt-premium-home .main-nav a,
.wt-premium-home .header-actions .text-button {
  color: #263752;
  font-size: 15px;
  font-weight: 620;
}

.wt-premium-home .main-nav a {
  position: relative;
}

.wt-premium-home .main-nav a::after {
  content: '';
  width: 100%;
  height: 2px;
  background: var(--wtp-blue-600);
  border-radius: 2px;
  opacity: 0;
  transform: translateY(6px) scaleX(.65);
  transition: opacity .2s ease, transform .2s ease;
  position: absolute;
  left: 0;
  bottom: -7px;
}

.wt-premium-home .main-nav a:hover::after {
  opacity: 1;
  transform: translateY(0) scaleX(1);
}

.wt-premium-home .header-actions .button,
.wt-premium-home .wtp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--wtp-radius-sm);
  font-size: 15px;
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}

.wt-premium-home .header-actions .button,
.wt-premium-home .wtp-button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--wtp-blue-600), var(--wtp-blue-500));
  box-shadow: 0 14px 30px rgba(23, 105, 232, .22);
}

.wt-premium-home .header-actions .button:hover,
.wt-premium-home .wtp-button:hover {
  transform: translateY(-2px);
}

.wt-premium-home .wtp-button--primary:hover {
  box-shadow: 0 18px 38px rgba(23, 105, 232, .3);
}

.wt-premium-home .wtp-button--secondary {
  color: var(--wtp-navy-900);
  background: rgba(255, 255, 255, .9);
  border-color: #bfd0e6;
  box-shadow: 0 10px 26px rgba(15, 47, 91, .06);
}

.wt-premium-home .hero.wtp-hero {
  min-height: auto;
  padding: 56px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 14%, rgba(71, 157, 244, .2), transparent 32%),
    radial-gradient(circle at 10% 85%, rgba(35, 119, 232, .08), transparent 34%),
    linear-gradient(135deg, #fff 0%, #f8fbff 53%, #eef6ff 100%);
  position: relative;
}

.wt-premium-home .hero.wtp-hero::before {
  content: '';
  width: 360px;
  height: 360px;
  opacity: .65;
  background-image: radial-gradient(circle, rgba(23, 105, 232, .3) 1.35px, transparent 1.45px);
  background-size: 14px 14px;
  mask-image: radial-gradient(circle, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle, #000 0%, transparent 72%);
  position: absolute;
  top: 120px;
  left: -110px;
}

.wtp-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(520px, 1.05fr);
  align-items: center;
  gap: clamp(56px, 7vw, 112px);
}

.wtp-hero__copy {
  z-index: 2;
  padding: 62px 0;
  position: relative;
}

.wtp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: var(--wtp-blue-600);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 830;
}

.wtp-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--wtp-green-500);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(19, 173, 121, .11);
}

.wt-premium-home .hero.wtp-hero h1 {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--wtp-ink);
  letter-spacing: -.055em;
  font-size: clamp(48px, 3.75vw, 56px);
  line-height: 1.02;
}

.wtp-hero__lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--wtp-muted);
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.55;
}

.wtp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.wtp-hero__actions .wtp-button {
  min-width: 208px;
}

.wtp-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0 0;
  padding: 0;
  color: #3e4f68;
  list-style: none;
  font-size: 13px;
  font-weight: 650;
}

.wtp-hero__proof li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.wtp-hero__proof i {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  color: #fff;
  background: var(--wtp-green-500);
  border-radius: 50%;
  font-style: normal;
  font-size: 12px;
}

.wtp-hero__visual {
  min-height: 560px;
  position: relative;
}

.wtp-profile-backdrop {
  z-index: 0;
  width: 410px;
  height: 370px;
  padding: 28px;
  background: rgba(255, 255, 255, .68);
  border: 1px solid rgba(190, 208, 229, .9);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(21, 70, 128, .1);
  position: absolute;
  top: 116px;
  right: 0;
}

.wtp-match-pill {
  display: inline-flex;
  padding: 8px 12px;
  color: var(--wtp-blue-600);
  background: #eaf3ff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.wtp-profile-backdrop__line {
  display: block;
  width: 62%;
  height: 12px;
  margin-top: 18px;
  background: #dfe8f3;
  border-radius: 999px;
}

.wtp-profile-backdrop__line--wide {
  width: 82%;
  margin-top: 36px;
}

.wtp-profile-backdrop__line--short {
  width: 44%;
}

.wtp-profile-preview {
  z-index: 2;
  width: min(520px, 88%);
  padding: 24px;
  background: rgba(255, 255, 255, .985);
  border: 1px solid rgba(215, 226, 239, .92);
  border-radius: 28px;
  box-shadow: 0 24px 64px rgba(12, 43, 84, .22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: absolute;
  left: 0;
  bottom: 8px;
}

.wtp-profile-preview__identity {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  align-items: stretch;
  gap: 20px;
}

.wtp-profile-preview__avatar {
  width: 142px;
  height: 178px;
  object-fit: cover;
  object-position: 50% 25%;
  border: 1px solid #d9e5f2;
  border-radius: 20px;
}

.wtp-profile-preview__identity-main {
  min-width: 0;
}

.wtp-profile-preview__name {
  min-width: 0;
}

.wtp-profile-preview__name strong,
.wtp-profile-preview__name span {
  display: block;
}

.wtp-profile-preview__name strong {
  overflow: hidden;
  color: var(--wtp-ink);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 22px;
}

.wtp-profile-preview__name span {
  margin-top: 5px;
  color: var(--wtp-muted);
  font-size: 13px;
}

.wtp-profile-preview__score-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
  padding: 12px 14px;
  background: #f7faff;
  border: 1px solid #dce7f3;
  border-radius: 17px;
}

.wtp-profile-preview__score-panel > div:first-child > span,
.wtp-profile-preview__score-panel > div:first-child > strong {
  display: block;
}

.wtp-profile-preview__score-panel > div:first-child > span {
  color: #66748a;
  font-size: 11px;
  font-weight: 700;
}

.wtp-profile-preview__score-panel > div:first-child > strong {
  margin-top: 4px;
  color: var(--wtp-green-600);
  letter-spacing: -.04em;
  font-size: 27px;
  line-height: 1;
}

.wtp-profile-preview__score-panel > div:first-child > strong small {
  color: #66748a;
  letter-spacing: 0;
  font-size: 11px;
}

.wtp-profile-preview__score-panel .wtp-score {
  width: 64px;
  height: 64px;
}

.wtp-profile-preview__score-panel .wtp-score__value {
  display: none;
}

.wtp-verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: max-content;
  margin-top: 9px;
  padding: 6px 9px;
  color: var(--wtp-green-600);
  background: #e9faf3;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 760;
}

.wtp-score {
  --score: 92;
  --wtp-score-progress: var(--score);
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  color: var(--wtp-navy-900);
  background: conic-gradient(var(--wtp-green-500) calc(var(--wtp-score-progress) * 1%), #e5edf5 0);
  border-radius: 50%;
  animation: wtp-score-in .95s cubic-bezier(.2,.8,.2,1) both;
  position: relative;
}

.wtp-score::before {
  content: '';
  background: #fff;
  border-radius: 50%;
  position: absolute;
  inset: 7px;
}

.wtp-score__value {
  z-index: 1;
  letter-spacing: -.04em;
  font-size: 23px;
  font-weight: 860;
  line-height: .9;
  position: relative;
}

.wtp-score__value small {
  display: block;
  margin-top: 5px;
  color: #708097;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  font-size: 7px;
  font-weight: 780;
}

@keyframes wtp-score-in {
  from { --wtp-score-progress: 0; transform: scale(.9); }
  to { --wtp-score-progress: var(--score); transform: scale(1); }
}

.wtp-profile-preview__facts-heading {
  margin: 20px 0 10px;
  color: #34445c;
  font-size: 11px;
  font-weight: 800;
}

.wtp-profile-preview__facts {
  display: grid;
  gap: 7px;
}

.wtp-profile-preview__fact {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 11px;
  min-width: 0;
  padding: 9px 11px;
  background: #f7faff;
  border: 1px solid #e2eaf4;
  border-radius: 13px;
}

.wtp-profile-preview__fact div strong,
.wtp-profile-preview__fact div span {
  display: block;
}

.wtp-profile-preview__fact div span {
  color: #6a7890;
  font-size: 9px;
}

.wtp-profile-preview__fact div strong {
  margin-top: 2px;
  color: var(--wtp-navy-900);
  font-size: 12px;
}

.wtp-profile-preview__fact-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--wtp-blue-600);
  background: #eaf3ff;
  border-radius: 10px;
}

.wtp-profile-preview__fact-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wtp-profile-preview__fact > i {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  color: #fff;
  background: var(--wtp-green-500);
  border-radius: 50%;
  font-style: normal;
  font-size: 11px;
}

.wtp-profile-preview__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  margin-top: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--wtp-blue-600), var(--wtp-blue-500));
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(23, 105, 232, .2);
  font-size: 13px;
  font-weight: 800;
}

.wtp-profile-preview__cta b {
  font-size: 17px;
}

.wtp-confirm-badge {
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 220px;
  padding: 13px 16px;
  color: #075a40;
  background: rgba(235, 252, 245, .97);
  border: 1px solid #a8e7cf;
  border-radius: 15px;
  box-shadow: var(--wtp-shadow-sm);
  font-size: 12px;
  font-weight: 730;
  position: absolute;
  top: 28px;
  right: 0;
}

.wtp-confirm-badge i {
  display: grid;
  place-items: center;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  color: #fff;
  background: var(--wtp-green-500);
  border-radius: 50%;
  font-style: normal;
}

.wtp-feature-strip {
  background: var(--wtp-navy-950);
}

.wtp-feature-strip__inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.wtp-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 116px;
  padding: 18px 24px;
  color: #fff;
  position: relative;
}

.wtp-feature + .wtp-feature::before {
  content: '';
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, .14);
  position: absolute;
  left: 0;
}

.wtp-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  color: #9ad7ff;
  background: rgba(70, 160, 241, .13);
  border: 1px solid rgba(134, 202, 251, .18);
  border-radius: 14px;
}

.wtp-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wtp-feature strong {
  font-size: 14px;
  line-height: 1.35;
}

.wtp-section {
  padding: 112px 0;
}

.wtp-section--soft {
  background:
    linear-gradient(180deg, rgba(240, 246, 253, .72), rgba(250, 252, 255, .94)),
    var(--wtp-canvas);
}

.wtp-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}

.wtp-section-head__copy {
  max-width: 760px;
}

.wtp-section-head h2 {
  margin: 18px 0 0;
  color: var(--wtp-ink);
  letter-spacing: -.045em;
  font-size: clamp(38px, 3.5vw, 52px);
  line-height: 1.08;
}

.wtp-section-head > p {
  max-width: 420px;
  margin: 0 0 4px;
  color: var(--wtp-muted);
  font-size: 16px;
  line-height: 1.65;
}

.wtp-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.wtp-step {
  min-height: 250px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--wtp-line);
  border-radius: var(--wtp-radius-md);
  box-shadow: var(--wtp-shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.wtp-step:hover {
  border-color: #bdd6f4;
  box-shadow: 0 20px 46px rgba(15, 55, 103, .12);
  transform: translateY(-6px);
}

.wtp-step__number {
  display: inline-flex;
  color: var(--wtp-blue-600);
  letter-spacing: .08em;
  font-size: 13px;
  font-weight: 840;
}

.wtp-step .wtp-icon {
  width: 54px;
  height: 54px;
  margin-top: 31px;
  color: var(--wtp-blue-600);
  background: #edf5ff;
  border-color: #d9eaff;
}

.wtp-step h3 {
  margin: 25px 0 0;
  color: var(--wtp-ink);
  letter-spacing: -.02em;
  font-size: 18px;
  line-height: 1.3;
}

.wtp-step p {
  margin: 11px 0 0;
  color: var(--wtp-muted);
  font-size: 13px;
  line-height: 1.6;
}

.wtp-candidates {
  background: #fff;
}

.wt-premium-home #dla-pracownikow {
  background:
    radial-gradient(circle at 78% 35%, rgba(40, 111, 213, .22), transparent 27%),
    linear-gradient(135deg, var(--wtp-navy-950), #0a2348 72%, #0b2f61);
}

.wt-premium-home #dla-pracownikow .button,
.wt-premium-home #dla-pracownikow .text-link,
.wt-premium-home #cennik .button {
  border-radius: var(--wtp-radius-sm);
}

.wt-premium-home #cennik .price-card {
  border-radius: var(--wtp-radius-md);
  box-shadow: var(--wtp-shadow-sm);
}

.wtp-candidate-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.wtp-candidate-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--wtp-line);
  border-radius: var(--wtp-radius-lg);
  box-shadow: var(--wtp-shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}

.wtp-candidate-card:hover {
  box-shadow: 0 26px 58px rgba(14, 48, 91, .15);
  transform: translateY(-7px);
}

.wtp-candidate-card__header {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 22px 22px 16px;
  background: linear-gradient(135deg, #f7faff, #fff);
}

.wtp-candidate-card__media {
  width: 96px;
  height: 96px;
  overflow: hidden;
  background: #dce8f4;
  border: 1px solid #d9e4ef;
  border-radius: 18px;
  position: relative;
}

.wtp-candidate-card__media::after {
  display: none;
}

.wtp-candidate-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  transition: transform .55s ease;
}

.wtp-candidate-card:hover .wtp-candidate-card__media img {
  transform: scale(1.035);
}

.wtp-candidate-card__verified {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  color: #075c41;
  background: #edfbf6;
  border: 1px solid rgba(161, 226, 202, .95);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  margin-top: 10px;
}

.wtp-candidate-card__score-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 22px;
  padding: 11px 14px;
  background: #f7faff;
  border: 1px solid #dfe8f3;
  border-radius: 15px;
}

.wtp-candidate-card__score-panel > div {
  display: grid;
  gap: 3px;
}

.wtp-candidate-card__score-panel > div > span {
  color: #718096;
  font-size: 10px;
  font-weight: 700;
}

.wtp-candidate-card__score-panel > div > strong {
  color: var(--wtp-green-600);
  font-size: 24px;
  line-height: 1;
}

.wtp-candidate-card__score-panel > div > strong small {
  color: #40516a;
  font-size: 11px;
}

.wtp-candidate-card__score-panel > .wtp-score {
  width: 58px;
  height: 58px;
  box-shadow: 0 8px 20px rgba(4, 25, 55, .1);
}

.wtp-candidate-card__score-panel .wtp-score__value {
  display: none;
}

.wtp-candidate-card__body {
  padding: 0 22px 22px;
}

.wtp-candidate-card h3 {
  margin: 0;
  color: var(--wtp-ink);
  letter-spacing: -.025em;
  font-size: 20px;
}

.wtp-candidate-card__role {
  margin: 8px 0 0;
  color: #33455f;
  font-size: 14px;
  font-weight: 690;
}

.wtp-candidate-card__location {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  color: #728096;
  font-size: 12px;
}

.wtp-candidate-card__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.wtp-candidate-card__stat {
  padding: 14px;
  background: #f5f8fc;
  border-radius: 14px;
}

.wtp-candidate-card__stat strong,
.wtp-candidate-card__stat span {
  display: block;
}

.wtp-candidate-card__stat strong {
  color: var(--wtp-navy-900);
  font-size: 15px;
}

.wtp-candidate-card__stat span {
  margin-top: 5px;
  color: #718096;
  font-size: 10px;
}

.wtp-history-progress {
  margin-top: 22px;
}

.wtp-history-progress__label {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #4f5f76;
  font-size: 11px;
  font-weight: 690;
}

.wtp-history-progress__label strong {
  color: var(--wtp-green-600);
}

.wtp-history-progress__track {
  height: 7px;
  margin-top: 9px;
  overflow: hidden;
  background: #e6edf5;
  border-radius: 999px;
}

.wtp-history-progress__track i {
  display: block;
  width: var(--history, 75%);
  height: 100%;
  background: linear-gradient(90deg, var(--wtp-green-500), #43c995);
  border-radius: inherit;
}

.wtp-final {
  padding: 36px 0 112px;
  background: #fff;
}

.wtp-final__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
  padding: 58px 64px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 86% 12%, rgba(87, 182, 247, .28), transparent 30%),
    linear-gradient(135deg, var(--wtp-navy-950), #0b3268);
  border-radius: var(--wtp-radius-lg);
  box-shadow: 0 30px 70px rgba(5, 28, 61, .18);
  position: relative;
}

.wtp-final h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  letter-spacing: -.04em;
  font-size: clamp(34px, 3.4vw, 50px);
  line-height: 1.08;
}

.wtp-final p {
  max-width: 660px;
  margin: 16px 0 0;
  color: #c7d8ed;
  font-size: 16px;
  line-height: 1.6;
}

.wtp-final .wtp-button {
  color: var(--wtp-navy-950);
  background: #fff;
  box-shadow: 0 16px 38px rgba(0, 0, 0, .14);
}

.wt-premium-home .site-footer.wtp-premium-footer {
  width: min(1780px, calc(100% - 64px));
  margin: 0 auto 36px;
  padding: 58px 64px 0;
  background:
    radial-gradient(circle at 92% 10%, rgba(94, 176, 241, .24), transparent 30%),
    linear-gradient(135deg, #f2f4ff 0%, #f7f9ff 44%, #eaf7ff 100%);
  border: 1px solid #e1eaf5;
  border-radius: 34px;
  box-shadow: 0 24px 70px rgba(15, 55, 103, .08);
}

.wt-premium-home .wtp-premium-footer > .container {
  width: 100%;
}

.wt-premium-home .wtp-premium-footer .footer-main {
  gap: 56px;
  padding-bottom: 54px;
}

.wt-premium-home .wtp-premium-footer .footer-brand p {
  max-width: 330px;
  color: #53637a;
  font-size: 14px;
  line-height: 1.65;
}

.wt-premium-home .wtp-premium-footer .footer-brand a {
  color: var(--wtp-navy-900);
  font-weight: 760;
}

.wt-premium-home .wtp-premium-footer .footer-col h4 {
  color: var(--wtp-navy-950);
  font-size: 14px;
}

.wt-premium-home .wtp-premium-footer .footer-col a {
  color: #5f6e83;
}

.wt-premium-home .wtp-premium-footer .footer-col a:hover {
  color: var(--wtp-blue-600);
}

.wt-premium-home .wtp-premium-footer .footer-bottom {
  color: #77869a;
  border-color: rgba(175, 193, 214, .56);
  padding: 24px 0 27px;
}

.wt-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2,.8,.2,1);
}

.wt-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.wtp-steps .wt-reveal:nth-child(2),
.wtp-candidate-grid .wt-reveal:nth-child(2) { transition-delay: .06s; }
.wtp-steps .wt-reveal:nth-child(3),
.wtp-candidate-grid .wt-reveal:nth-child(3) { transition-delay: .12s; }
.wtp-steps .wt-reveal:nth-child(4) { transition-delay: .18s; }
.wtp-steps .wt-reveal:nth-child(5) { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .wt-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .wtp-score {
    animation: none;
  }

  .wt-premium-home .wtp-button,
  .wtp-candidate-card,
  .wtp-candidate-card__media img,
  .wtp-step {
    transition: none;
  }
}

@media (max-width: 1240px) {
  .wt-premium-home .site-header .container,
  .wt-premium-home .wtp-container {
    width: min(1160px, calc(100% - 48px));
  }

  .wt-premium-home .main-nav {
    gap: 25px;
    margin-left: 30px;
  }

  .wtp-hero__inner {
    grid-template-columns: minmax(0, .94fr) minmax(480px, 1.06fr);
    gap: 44px;
  }

  .wtp-profile-preview {
    width: min(500px, 90%);
  }

  .wtp-feature {
    gap: 10px;
    padding: 16px 14px;
  }

  .wtp-feature strong {
    font-size: 12px;
  }

  .wtp-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .wtp-hero__inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .wtp-hero__copy {
    max-width: 780px;
    padding: 42px 0 20px;
  }

  .wtp-hero__visual {
    width: min(680px, 100%);
    min-height: 570px;
    margin-inline: auto;
  }

  .wtp-profile-preview {
    width: min(520px, 86%);
    left: 24px;
  }

  .wtp-profile-backdrop {
    right: 20px;
  }

  .wtp-feature-strip__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 14px 0;
  }

  .wtp-feature {
    min-height: 86px;
  }

  .wtp-feature:nth-child(4)::before {
    display: none;
  }

  .wtp-section-head {
    display: block;
  }

  .wtp-section-head > p {
    margin-top: 20px;
  }

  .wtp-final__panel {
    grid-template-columns: 1fr;
  }

  .wtp-final .wtp-button {
    width: max-content;
  }
}

@media (max-width: 760px) {
  .wt-premium-home .site-header .container,
  .wt-premium-home .wtp-container {
    width: min(100% - 32px, 620px);
  }

  .wt-premium-home .header-inner {
    min-height: 76px;
  }

  .wt-premium-home .hero.wtp-hero {
    padding: 30px 0 52px;
  }

  .wtp-hero__copy {
    padding: 24px 0 18px;
  }

  .wt-premium-home .hero.wtp-hero h1 {
    margin-top: 20px;
    font-size: clamp(40px, 12vw, 53px);
  }

  .wtp-hero__lead {
    margin-top: 22px;
    font-size: 17px;
  }

  .wtp-hero__actions {
    display: grid;
  }

  .wtp-hero__actions .wtp-button {
    width: 100%;
  }

  .wtp-hero__proof {
    display: grid;
    gap: 10px;
  }

  .wtp-hero__visual {
    min-height: 535px;
  }

  .wtp-profile-backdrop {
    display: none;
  }

  .wtp-profile-preview {
    width: 100%;
    padding: 18px;
    border-radius: 20px;
    left: 0;
    bottom: 0;
  }

  .wtp-profile-preview__identity {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
  }

  .wtp-profile-preview__avatar {
    width: 112px;
    height: 156px;
    border-radius: 14px;
  }

  .wtp-profile-preview__name strong {
    font-size: 16px;
  }

  .wtp-profile-preview__name span {
    font-size: 11px;
  }

  .wtp-profile-preview__score-panel {
    margin-top: 11px;
    padding: 9px 11px;
  }

  .wtp-score,
  .wtp-candidate-card__score-panel > .wtp-score {
    width: 64px;
    height: 64px;
  }

  .wtp-score__value {
    font-size: 19px;
  }

  .wtp-profile-preview__facts {
    gap: 6px;
  }

  .wtp-profile-preview__fact {
    padding: 7px 9px;
  }

  .wtp-confirm-badge {
    display: none;
  }

  .wtp-feature-strip__inner {
    grid-template-columns: 1fr;
    padding: 14px 0;
  }

  .wtp-feature {
    min-height: 70px;
    padding: 12px 6px;
  }

  .wtp-feature + .wtp-feature::before {
    width: 100%;
    height: 1px;
    top: 0;
  }

  .wtp-feature strong {
    font-size: 14px;
  }

  .wtp-section {
    padding: 78px 0;
  }

  .wtp-section-head {
    margin-bottom: 34px;
  }

  .wtp-section-head h2 {
    font-size: 37px;
  }

  .wtp-steps,
  .wtp-candidate-grid {
    grid-template-columns: 1fr;
  }

  .wtp-step {
    min-height: 0;
  }

  .wtp-candidate-card__media {
    width: 90px;
    height: 90px;
  }

  .wtp-final {
    padding: 20px 0 78px;
  }

  .wtp-final__panel {
    gap: 30px;
    padding: 40px 28px;
    border-radius: 24px;
  }

  .wtp-final .wtp-button {
    width: 100%;
  }

  .wt-premium-home .site-footer.wtp-premium-footer {
    width: min(100% - 24px, 620px);
    margin-bottom: 18px;
    padding: 38px 24px 0;
    border-radius: 24px;
  }

  .wt-premium-home .wtp-premium-footer .footer-main {
    gap: 32px;
    padding-bottom: 38px;
  }
}

@media (max-width: 430px) {
  .wt-premium-home .hero.wtp-hero h1 {
    font-size: 39px;
  }

  .wtp-hero__visual {
    min-height: 535px;
  }

  .wtp-profile-preview {
    width: 98%;
    left: 0;
  }

  .wtp-profile-preview__facts {
    gap: 5px;
  }

  .wtp-profile-preview__identity {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .wtp-profile-preview__avatar {
    width: 92px;
    height: 132px;
  }

  .wtp-profile-preview__fact div strong {
    font-size: 12px;
  }

  .wtp-profile-preview__fact div span {
    font-size: 8px;
  }

  .wtp-candidate-card__media {
    width: 82px;
    height: 82px;
  }

  .wtp-candidate-card__header {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    padding: 18px;
  }

  .wtp-candidate-card__score-panel {
    margin: 0 18px;
  }

  .wtp-candidate-card__score-panel > .wtp-score {
    width: 58px;
    height: 58px;
  }
}
