:root {
  --primary-2: #0024a6;
  --primary-1: #113dd9;
  --primary0: #2469ff;
  --primary4: #ebf1ff;

  --text-header: #0d0e0f;
  --text-body: #111827;
  --text-muted: rgba(17, 24, 39, 0.64);

  --bg: #f6f8fb;
  --bg-soft: #f6f8fb;

  --border: #e6edf6;
  --shadow: 0px 8px 16px rgba(15, 23, 42, 0.06);
  --shadow-strong: 0px 12px 26px rgba(0, 36, 166, 0.14);

  --space-4: 4px;
  --space-6: 6px;
  --space-8: 8px;
  --space-10: 10px;
  --space-12: 12px;
  --space-14: 14px;
  --space-16: 16px;
  --space-18: 18px;
  --space-20: 20px;
  --space-24: 24px;
  --space-28: 28px;
  --space-32: 32px;
  --space-36: 36px;
  --space-40: 40px;
  --space-48: 48px;
  --space-56: 56px;
}

.jr-page {
  font-family: "gordita", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-body);
  min-height: 100vh;
}

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

.jr-page a {
  color: inherit;
  text-decoration: none;
}

.jr-page button,
.jr-page input {
  font: inherit;
}

.jr-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 12px;
}

/* Header */
.jr-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.jr-header__inner {
  height: 66px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.jr-brand {
  display: inline-flex;
  align-items: center;
}

.jr-brand__logo {
  height: 24px;
  width: auto;
  display: block;
}

.jr-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  justify-content: center;
}

.jr-nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-header);
  line-height: 22px;
  white-space: nowrap;
}

.jr-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.jr-mobile-nav__toggle {
  appearance: none;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--text-header);
  cursor: pointer;
}

.jr-mobile-nav {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  background: #ffffff;
}

.jr-mobile-nav__inner {
  padding: 14px 12px 18px;
  display: grid;
  gap: 16px;
}

.jr-mobile-nav__links {
  display: grid;
  gap: 8px;
}

.jr-mobile-nav__link {
  display: flex;
  align-items: center;
  height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(15, 23, 42, 0.02);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-header);
}

.jr-mobile-nav__actions {
  display: grid;
  gap: 10px;
}

.jr-mobile-nav__action {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-header);
  padding: 8px 2px;
}

body.jr-mobile-nav-open {
  overflow: hidden;
}

.jr-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-header);
}

.jr-btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 11px 18px;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: box-shadow 0.18s ease, transform 0.18s ease, background-color 0.18s ease;
}

.jr-page .jr-btn--primary,
.jr-page a.jr-btn--primary {
  background: var(--primary0);
  color: #ffffff !important;
}

.jr-page .jr-btn--primary:hover,
.jr-page a.jr-btn--primary:hover {
  box-shadow: var(--shadow-strong);
  color: #ffffff !important;
}

.jr-btn--outline {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.12);
  color: var(--text-header);
}

.jr-btn--outline:hover {
  box-shadow: var(--shadow);
}

.jr-btn--lg {
  padding: 16px 26px;
  border-radius: 12px;
}

.jr-btn--full {
  width: 100%;
}

/* Hero */
.jr-hero {
  padding: var(--space-56) 0 var(--space-36);
  background: #ffffff;
  min-height: auto;
  display: flex;
  align-items: center;
  margin-top: 70px;
}

.jr-hero__inner {
  text-align: center;
  width: 100%;
}

.jr-hero__title {
  font-size: 66px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text-header);
  margin: 0 auto;
  max-width: 980px;
}

.jr-hero__title-blue {
  color: var(--primary0);
}

.jr-hero__subtitle {
  margin: var(--space-14) auto 0;
  max-width: 640px;
  font-size: 16px;
  line-height: 26px;
  color: var(--text-muted);
}

.jr-hero__cta {
  margin-top: var(--space-20);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.jr-hero__visual {
  margin-top: var(--space-24);
  display: flex;
  justify-content: center;
}

.jr-hero__image {
  width: 100%;
  max-width: 1180px;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 34px rgba(15, 23, 42, 0.14));
}

/* Sections */
.jr-section {
  padding: 64px 0;
}

.jr-section--alt {
  background: #ffffff;
  padding: 64px 0;
  overflow: hidden;
}

.jr-section__heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 24px;
}

.jr-stars {
  margin-top: 14px;
  height: 28px;
  width: auto;
  display: inline-block;
}

.jr-h2 {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-header);
}

.jr-p {
  margin-top: var(--space-10);
  font-size: 14px;
  line-height: 22px;
  color: var(--text-muted);
}

/* Cards */
.jr-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-20);
}

.jr-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.jr-card__top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: var(--space-12);
}

.jr-pill {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

.jr-pill--green {
  background: rgba(16, 185, 129, 0.14);
  color: #0f766e;
}

.jr-pill--blue {
  background: rgba(36, 105, 255, 0.14);
  color: var(--primary0);
}

.jr-pill--orange {
  background: rgba(245, 158, 11, 0.16);
  color: #b45309;
}

.jr-card__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 22px;
  color: var(--text-header);
}

.jr-card__text {
  margin-top: var(--space-8);
  font-size: 14px;
  line-height: 22px;
  color: var(--text-muted);
  min-height: 40px;
}

.jr-card__cta {
  margin-top: var(--space-16);
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-header);
}

/* How it works */
.jr-hiw {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

.jr-hiw__left {
  justify-self: start;
}

.jr-hiw__right {
  justify-self: end;
}

.jr-hiw__title {
  text-align: left;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.jr-hiw__image {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  margin-left: auto;
}

.jr-steps {
  margin-top: 26px;
  position: relative;
  display: grid;
  gap: 34px;
  padding-left: 0;
  padding-bottom: 22px;
}

.jr-steps::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 10px;
  bottom: 22px;
  width: 2px;
  background: #e6eef8;
  z-index: 0;
}

.jr-step {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
}

.jr-step__icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: transparent;
  border: 0;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  position: relative;
  z-index: 2;
  margin-left: 0;
}

.jr-step__icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #ffffff;
  z-index: 0;
}

.jr-step__icon-img {
  width: 48px;
  height: 48px;
  display: block;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.jr-step__icon-img[src*="get-hired.svg"] {
  transform: scale(1.42);
  transform-origin: center;
}

.jr-step:last-child .jr-step__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 6px;
  height: 420px;
  background: #ffffff;
  z-index: 0;
}

.jr-step__title {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
}

.jr-step__text {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(15, 23, 42, 0.62);
  max-width: 420px;
}

.jr-step--active .jr-step__icon {
  box-shadow: none;
}

.jr-step--active .jr-step__text {
  color: rgba(15, 23, 42, 0.72);
}

.jr-mock {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: var(--space-20);
  display: grid;
  gap: var(--space-14);
}

.jr-mock__row {
  display: grid;
  grid-template-columns: 36px 1fr 88px;
  gap: 12px;
  align-items: center;
}

.jr-skeleton {
  background: rgba(15, 23, 42, 0.06);
  border-radius: 999px;
  height: 12px;
}

.jr-skeleton--avatar {
  width: 36px;
  height: 36px;
  border-radius: 12px;
}

.jr-skeleton--line {
  height: 12px;
  border-radius: 999px;
}

.jr-skeleton--chip {
  height: 22px;
  border-radius: 999px;
  background: rgba(36, 105, 255, 0.12);
}

/* Pricing */
.jr-pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
  max-width: 760px;
  margin: 0 auto;
}

.jr-price {
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.05);
  position: relative;
  display: flex;
  flex-direction: column;
}

.jr-price .jr-btn--full {
  margin-top: auto;
}

.jr-price--pro {
  border: 2px solid var(--primary0);
  box-shadow: 0 16px 30px rgba(36, 105, 255, 0.14);
}

.jr-price__badge {
  position: absolute;
  right: -2px;
  top: -2px;
  background: var(--primary0);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 7px 12px;
  border-radius: 0 18px 0 18px;
}

.jr-price__head {
  display: grid;
  gap: var(--space-6);
  margin-bottom: var(--space-14);
}

.jr-price__name {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-header);
}

.jr-price__value {
  font-size: 34px;
  font-weight: 800;
  color: var(--text-header);
  letter-spacing: -0.02em;
}

.jr-price__suffix {
  font-size: 13px;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.6);
}

.jr-price .jr-btn {
  height: 42px;
  border-radius: 999px;
  font-weight: 700;
}

.jr-price__meta {
  font-size: 12px;
  color: var(--text-muted);
}

.jr-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: var(--space-16) 0 var(--space-20);
}

.jr-list li {
  font-size: 14px;
  line-height: 22px;
  color: var(--text-muted);
  padding-left: 28px;
  position: relative;
}

.jr-list li::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  border: 1.5px solid rgba(16, 185, 129, 0.85);
  position: absolute;
  left: 0;
  top: 3px;
}

.jr-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 6px;
  height: 3px;
  border-left: 2px solid rgba(16, 185, 129, 0.95);
  border-bottom: 2px solid rgba(16, 185, 129, 0.95);
  transform: rotate(-45deg);
}

.jr-list li.is-muted::before {
  background: rgba(100, 116, 139, 0.08);
  border-color: rgba(100, 116, 139, 0.45);
}

.jr-list li.is-muted::after {
  width: 8px;
  height: 0;
  left: 4px;
  top: 11px;
  border-left: 0;
  border-bottom: 0;
  border-top: 2px solid rgba(100, 116, 139, 0.55);
  transform: none;
}

/* Testimonials */
.jr-testimonials {
  position: relative;
}

.jr-testimonials__viewport {
  overflow: hidden;
}

.jr-testimonials__track {
  display: flex;
  gap: 22px;
  will-change: transform;
  transition: transform 260ms ease;
}

.jr-testimonials__nav {
  pointer-events: none;
  position: absolute;
  left: -56px;
  right: -56px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
}

.jr-testimonials__btn {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(15, 23, 42, 0.8);
}

.jr-testimonials__btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.jr-testimonials__dots {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.jr-testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(148, 163, 184, 0.45);
}

.jr-testimonials__dot.is-active {
  width: 22px;
  background: rgba(36, 105, 255, 0.92);
}

.jr-quote {
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.05);
  flex: 0 0 calc((100% - 44px) / 3);
}

.jr-quote.is-featured {
  border-color: rgba(36, 105, 255, 0.22);
  box-shadow: 0 18px 34px rgba(36, 105, 255, 0.10);
}

.jr-quote__head {
  display: flex;
  gap: 10px;
  align-items: center;
}

.jr-avatar {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  object-fit: cover;
  flex: 0 0 auto;
}

.jr-quote__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-header);
  line-height: 18px;
}

.jr-quote__role {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 16px;
}

.jr-quote__text {
  margin-top: var(--space-12);
  font-size: 14px;
  line-height: 22px;
  color: var(--text-muted);
}

/* Footer */
.jr-footer {
  background: var(--primary-1);
  color: #ffffff;
  margin-top: var(--space-24);
}

.jr-footer__inner {
  padding: 40px 0 24px;
}

.jr-footer__top {
  padding: 0 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.jr-footer__headline {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.jr-footer__sub {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

.jr-footer__grid {
  display: grid;
  grid-template-columns: 180px 180px 1fr;
  gap: 24px;
  padding: 24px 0;
}

.jr-footer__title {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}

.jr-footer__link {
  display: block;
  font-size: 13px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.84);
}

.jr-footer__col--newsletter {
  justify-self: end;
  width: 100%;
  max-width: 320px;
}

.jr-newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-top: 12px;
}

.jr-input {
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 0 12px;
  outline: none;
}

.jr-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.jr-footer__bottom {
  padding-top: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

/* ===================== AI-POWERED JOB MATCHING ===================== */
.jr-matching {
  background: #f8fafc;
}

.jr-matching .jr-section__heading {
  margin-bottom: 44px;
}

.jr-matching .jr-h2 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.jr-matching .jr-p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  line-height: 22px;
  color: rgba(15, 23, 42, 0.6);
}

.jr-match-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.jr-match-card {
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 16px;
  padding: 14px 22px 22px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
}

.jr-match-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.jr-match-card__icon {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: transparent;
  flex: 0 0 auto;
}

.jr-match-card__icon-svg {
  width: 34px;
  height: 34px;
  display: block;
}

.jr-match-card__icon-img {
  width: 48px;
  height: 48px;
  display: block;
  object-fit: contain;
}

.jr-match-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 6px 10px;
  border-radius: 999px;
  line-height: 1;
  flex: 0 0 auto;
  white-space: nowrap;
}

.jr-match-badge--green {
  background: rgba(16, 185, 129, 0.14);
  color: #047857;
}

.jr-match-badge--orange {
  background: rgba(245, 158, 11, 0.16);
  color: #b45309;
}

.jr-match-card__title {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0f172a;
  line-height: 20px;
}

.jr-match-card__meta {
  margin-top: 2px;
  font-size: 12px;
  line-height: 18px;
  color: rgba(15, 23, 42, 0.55);
}

.jr-match-tags {
  margin-top: 20px;
  margin-bottom: 22px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 6px;
}

.jr-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 5px 8px;
  border-radius: 999px;
  background: #f1f5f9;
  border: 0;
  color: rgba(15, 23, 42, 0.6);
  line-height: 1;
}

.jr-tag--ai {
  background: rgba(36, 105, 255, 0.1);
  color: rgba(36, 105, 255, 0.95);
}

.jr-tag__icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  margin-right: 6px;
  vertical-align: -2px;
}

.jr-page .jr-match-cta,
.jr-page a.jr-match-cta {
  margin-top: auto;
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  padding: 11px 14px;
  line-height: 1;
  border-radius: 999px;
  background: var(--primary0);
  color: #ffffff !important;
  font-size: 11.5px;
  font-weight: 700;
  box-shadow: 0 10px 18px rgba(2, 6, 23, 0.12);
  text-decoration: none;
  pointer-events: none;
  cursor: default;
}

.jr-match-cta:hover {
  box-shadow: 0 14px 24px rgba(2, 6, 23, 0.16);
}

/* Responsive */
@media (max-width: 980px) {
  .jr-nav {
    display: none;
  }

  .jr-mobile-nav__toggle {
    display: inline-flex;
  }

  .jr-header__actions {
    display: none;
  }

  .jr-header__inner {
    justify-content: space-between;
  }

  .jr-hiw {
    grid-template-columns: 1fr;
  }

  .jr-footer__grid {
    grid-template-columns: 1fr;
  }

  .jr-footer__col--newsletter {
    justify-self: start;
    max-width: 420px;
  }
}

@media (max-width: 760px) {
  .jr-hero {
    min-height: auto;
    padding: var(--space-40) 0 var(--space-28);
    align-items: flex-start;
  }

  .jr-hero__title {
    font-size: 28px;
    line-height: 1.4;
  }

  .jr-hero__subtitle {
    margin-top: var(--space-16);
    font-size: 15px;
    line-height: 24px;
  }

  .jr-hero__cta {
    margin-top: var(--space-24);
  }

  .jr-hero__cta .jr-btn--lg {
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 18px;
  }

  .jr-hero__visual {
    margin-top: var(--space-18);
  }

  .jr-cards {
    grid-template-columns: 1fr;
  }

  .jr-pricing {
    grid-template-columns: 1fr;
  }

  .jr-testimonials {
    padding-left: 0;
    padding-right: 0;
  }

  .jr-quote {
    flex-basis: 100%;
  }

  .jr-testimonials__nav {
    display: flex;
    left: -6px;
    right: -6px;
  }

  .jr-testimonials__btn {
    width: 40px;
    height: 40px;
  }

  .jr-container {
    padding: 0 12px;
  }

  .jr-hero__cta {
    gap: 10px;
  }

  .jr-btn--lg {
    padding: 14px 20px;
  }

  .jr-match-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .jr-step:last-child .jr-step__icon::after {
    display: none;
  }

  .jr-steps::before {
    bottom: 34px;
  }
}
