:root {
  --blue: #2563eb;
  --blue-d: #1d4ed8;
  --ink: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --bg: #fff;
  --cream: #f6f3ec;
  --gray: #f5f6f8;
  --green: #16a34a;
  --wrap: 1120px;
  --font: Inter, system-ui, sans-serif;
  --card: #fff;
  --nav: #4b5563;
  --r: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
button, input, select { font: inherit; color: inherit; }
a { color: var(--blue); }
h1, h2, h3 { margin: 0; letter-spacing: -0.03em; font-weight: 700; }

.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.skip { position: absolute; left: 12px; top: -40px; background: #000; color: #fff; padding: 8px 12px; }
.skip:focus { top: 12px; }
.wrap { width: min(var(--wrap), calc(100% - 32px)); margin-inline: auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 18px;
  background: var(--blue); color: #fff; border: 0;
  border-radius: 12px; border-radius: var(--r); font-weight: 600; text-decoration: none; cursor: pointer;
}
.btn:hover { background: var(--blue-d); transform: translateY(-1px); box-shadow: 0 8px 20px rgb(37 99 235 / 0.22); }
.btn--ghost { background: var(--card); color: var(--ink); border: 1px solid var(--line); }
.btn--ghost:hover { background: var(--gray); }
.text-arrow { font-weight: 600; text-decoration: none; color: var(--blue); }
.text-arrow::after { content: " →"; }
.link-quiet { color: var(--ink); text-decoration: none; font-weight: 500; }
.link-quiet:hover { color: var(--blue); }

.site-header {
  position: sticky; top: 0; z-index: 10;
  background: var(--bg); border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; height: 64px; gap: 24px; }
.logo { font-weight: 800; font-size: 20px; color: var(--ink); text-decoration: none; letter-spacing: -0.04em; }
.nav { display: none; gap: 22px; margin-left: 12px; }
.nav a { color: var(--nav); text-decoration: none; font-size: 14.5px; }
.nav a:hover { color: var(--ink); }
.header__actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.lang-sel {
  width: auto; min-height: 30px; border: 1px solid var(--line); border-radius: 999px;
  background: var(--gray); padding: 0 10px; font-size: 12px; font-weight: 700; color: var(--ink);
}
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.menu-btn {
  width: 40px; height: 40px; border: 0; background: transparent;
  display: grid; place-content: center; gap: 6px;
}
.menu-btn span { display: block; width: 18px; height: 1.6px; background: var(--ink); }
.nav.is-open {
  display: flex; flex-direction: column;
  position: absolute; left: 0; right: 0; top: 64px;
  background: var(--bg); border-bottom: 1px solid var(--line); padding: 16px;
}

.hero { padding: 32px 0 8px; }
.hero__grid { display: grid; gap: 28px; }
h1 { font-size: clamp(30px, 5vw, 48px); line-height: 1.12; }
h1 em { font-style: normal; color: var(--blue); }
.lede { margin: 14px 0 22px; color: var(--muted); max-width: 40ch; font-size: 17px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero__social { display: flex; align-items: center; gap: 10px; margin-top: 22px; }
.hero__social p { margin: 0; font-size: 13px; color: var(--muted); max-width: 22ch; }
.faces { display: flex; }
.faces img {
  width: 32px; height: 32px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--bg); margin-left: -8px;
}
.faces img:first-child { margin-left: 0; }

.hero__media { margin: 0; position: relative; }
.hero__media img {
  width: 100%; height: min(56vw, 380px); object-fit: cover; border-radius: 20px; object-position: 50% 20%;
}
.pay-card {
  position: absolute; left: 14px; bottom: 14px;
  background: var(--card); border-radius: 14px; padding: 12px 14px;
  box-shadow: 0 10px 30px rgb(17 24 39 / 0.1);
  min-width: 150px;
}
.pay-card p { margin: 0; font-size: 13px; color: var(--muted); }
.pay-card__amt { font-size: 20px !important; font-weight: 800; color: var(--ink); }
.pay-card__up { color: var(--green) !important; font-weight: 600; margin-top: 4px !important; }

.search-block { padding: 8px 0 28px; }
.search {
  display: grid; gap: 12px;
  background: var(--gray); border-radius: var(--r-lg); padding: 16px;
}
.search__field { display: flex; flex-direction: column; gap: 6px; }
.search__field label { font-size: 12px; font-weight: 600; color: var(--muted); }
.search__input { position: relative; }
.search__input svg { position: absolute; left: 12px; top: 14px; color: var(--muted); }
.search input, .search select,
.lead input:not([type="checkbox"]):not([type="radio"]),
.lead select {
  width: 100%; min-height: 44px; border: 1px solid var(--line);
  border-radius: var(--r); background: var(--card); padding: 0 12px; color: var(--ink); appearance: none;
}
.lead input[type="checkbox"],
.consent input[type="checkbox"],
.choices input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 4px;
  background: transparent;
  appearance: auto;
  -webkit-appearance: checkbox;
  accent-color: var(--blue);
  cursor: pointer;
  flex-shrink: 0;
}
.lead input:focus, .lead select:focus,
.search input:focus, .search select:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
  border-color: var(--blue);
}
.lead select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%236b7280' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.search__input input { padding-left: 36px; }
.search__submit { width: 100%; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--card); border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 12px; font-size: 13px; color: var(--ink);
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }
.pill.is-on { border-color: #bfdbfe; background: #eff6ff; color: var(--blue); font-weight: 600; }

.jobs { padding: 12px 0 48px; }
.section-head { display: flex; justify-content: space-between; gap: 12px; align-items: center; margin-bottom: 20px; flex-wrap: wrap; }
h2 { font-size: clamp(22px, 3vw, 28px); }
.jobs-grid { display: grid; gap: 14px; }
.job-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 16px;
  cursor: pointer;
}
.job-card.is-hidden { display: none; }
.job-card__top { display: flex; justify-content: space-between; align-items: flex-start; }
.ico {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg, #eff6ff); color: var(--c, var(--blue));
  display: grid; place-items: center;
}
.heart {
  border: 0; background: transparent; font-size: 18px; color: #9ca3af; cursor: pointer; line-height: 1;
}
.heart.is-on { color: #ef4444; }
.job-card h3 { font-size: 16px; margin: 12px 0 6px; line-height: 1.3; }
.job-card__loc { margin: 0; font-size: 13px; color: var(--muted); }
.pay { margin: 10px 0 8px; font-weight: 700; color: var(--green); font-size: 14px; }
.tag {
  display: inline-block; background: #eff6ff; color: var(--blue);
  font-size: 12px; font-weight: 600; border-radius: 999px; padding: 4px 10px;
}
.job-card time { display: block; margin-top: 12px; font-size: 12px; color: var(--muted); }
.jobs__empty { color: var(--muted); }

.cats { padding: 8px 0 48px; }
.cat-row {
  list-style: none; margin: 18px 0 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 8px;
}
.cat-row a {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-decoration: none; color: var(--ink); font-size: 12px; font-weight: 600; text-align: center;
}
.cat-ico {
  width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 14px;
  display: grid; place-items: center; color: var(--nav);
}
.cat-more {
  width: 48px; height: 48px; border: 1px dashed #cbd5e1; border-radius: 14px;
  display: grid !important; place-items: center; color: var(--muted);
}

.how { padding: 40px 0 56px; background: var(--gray); }
.steps { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 28px; }
.steps li { position: relative; }
.step-n {
  position: absolute; left: -2px; top: -6px;
  width: 22px; height: 22px; border-radius: 50%; background: var(--blue); color: #fff;
  font-size: 12px; font-weight: 700; display: grid; place-items: center;
}
.step-ico {
  width: 56px; height: 56px; border-radius: 16px; background: var(--card); border: 1px solid var(--line);
  display: grid; place-items: center; margin: 0 0 12px 12px;
}
.steps h3 { font-size: 16px; margin-bottom: 6px; }
.steps p { margin: 0; color: var(--muted); font-size: 14px; }

.life { padding: 24px 0 48px; }
.life-card {
  background: var(--cream); border-radius: 24px; overflow: hidden;
  display: grid;
}
.life-card img { width: 100%; height: 240px; object-fit: cover; }
.life__copy { padding: 24px 22px 28px; }
.life__copy p { color: var(--muted); }
.checks { list-style: none; padding: 0; margin: 16px 0 0; }
.checks li { position: relative; padding: 6px 0 6px 26px; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: 12px;
  width: 14px; height: 14px; border-radius: 50%; background: var(--green);
  box-shadow: inset 0 0 0 3px #fff;
}
.checks li::after {
  content: ""; position: absolute; left: 4px; top: 15px;
  width: 6px; height: 4px; border-left: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.proof { padding: 8px 0 48px; }
.quotes { display: grid; gap: 14px; margin-top: 20px; }
blockquote {
  margin: 0; background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 20px;
}
blockquote p { margin: 0 0 16px; }
blockquote footer { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); }
blockquote footer img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }

.match { padding: 8px 0 56px; scroll-margin-top: 88px; }
.match-card {
  border: 1px solid var(--line); border-radius: 20px; padding: 22px 20px;
  display: grid; gap: 20px; background: var(--card);
}
.lead__head { margin-bottom: 4px; }
.lead__step-title {
  font-weight: 700; font-size: 17px; margin: 4px 0 0; line-height: 1.35;
}
.progress { font-weight: 700; font-size: 13px; color: var(--blue); margin: 0; }
.match__intro .progress { display: none; }
.lead { margin: 0; }
.lead__bar { height: 6px; background: var(--line); border-radius: 99px; margin-bottom: 16px; }
.lead__bar span { display: block; height: 100%; width: 25%; background: var(--blue); border-radius: inherit; }
.lead-done[hidden], .lead__step[hidden], .btn[hidden], .match__intro[hidden] { display: none !important; }
.lead-done { padding: 8px 0; }
.lead-done h2 { font-size: 22px; margin-bottom: 12px; }
.lead-done p { color: var(--muted); line-height: 1.55; margin: 0 0 12px; }
.lead-done .btn { margin-top: 8px; width: 100%; }
.lead fieldset { border: 0; padding: 0; margin: 0; min-height: 120px; }
.lead legend { font-weight: 700; font-size: 16px; margin-bottom: 12px; }
.lead legend.sr-step { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.lead label { display: block; font-size: 13px; font-weight: 600; margin: 12px 0 6px; }
.lead__nav { display: flex; gap: 10px; margin-top: 16px; }
.lead__nav .btn { flex: 1; }
.lead__error { color: #b91c1c; font-size: 14px; }
.choices { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.choices label {
  margin: 0; font-weight: 500; border: 1px solid var(--line); background: var(--card);
  border-radius: var(--r); min-height: 44px; display: flex; align-items: center; gap: 8px; padding: 0 12px; cursor: pointer;
}
.choices label:has(input:checked) { border-color: var(--blue); background: #eff6ff; }
.choices input[type="checkbox"] { accent-color: var(--blue); }
.consent {
  display: flex !important; align-items: flex-start; gap: 10px;
  font-weight: 500 !important; margin-top: 16px !important;
}
.consent input[type="checkbox"] {
  margin-top: 3px;
  align-self: flex-start;
}
.applied-to { font-weight: 600; color: var(--blue); font-size: 14px; margin: 8px 0 0; }

.hire { padding: 8px 0 48px; }
.hire-card {
  border: 1px solid var(--line); border-radius: 20px; padding: 22px 20px;
  display: grid; gap: 20px; background: var(--card);
}
.hire-form label { display: block; font-size: 13px; font-weight: 600; margin: 12px 0 6px; }
.hire-form input, .hire-form textarea {
  width: 100%; min-height: 44px; border: 1px solid var(--line);
  border-radius: var(--r); background: var(--card); padding: 10px 12px; color: var(--ink);
}
.hire-form textarea { min-height: 88px; resize: vertical; }
.hire-form .btn { margin-top: 16px; width: 100%; }
.hire-form[hidden] { display: none !important; }

.modal {
  position: fixed; inset: 0; z-index: 45;
  background: rgb(17 24 39 / 0.45);
  display: grid; place-items: center; padding: 20px;
}
.modal[hidden] { display: none !important; }
body.modal-open { overflow: hidden; }
.modal__panel {
  width: min(480px, 100%); background: var(--card); color: var(--ink);
  border-radius: 20px; padding: 24px; position: relative;
  border: 1px solid var(--line); max-height: min(88vh, 640px); overflow: auto;
}
.modal__close {
  position: absolute; top: 10px; right: 12px;
  border: 0; background: transparent; font-size: 28px; line-height: 1;
  color: var(--muted); cursor: pointer;
}
.modal__panel .ico { margin-bottom: 12px; }
.modal__panel h2 { font-size: 22px; margin-bottom: 6px; }
.modal__panel #modal-desc { color: var(--muted); line-height: 1.55; }
.modal__meta { display: flex; align-items: center; gap: 10px; margin: 12px 0 18px; }
.modal__panel .btn { width: 100%; }

.banner { padding: 0 0 48px; }
.banner__inner {
  background: var(--cream); border-radius: 20px; padding: 22px;
  display: grid; gap: 16px;
}
.banner__ico { margin: 0; color: var(--blue); }
.banner__inner p { margin: 6px 0 0; color: var(--muted); }

.site-footer { padding: 0 0 28px; }
.footer__base {
  display: flex; justify-content: space-between; gap: 8px; flex-wrap: wrap;
  color: var(--muted); font-size: 13px; padding-top: 8px; align-items: center;
}
.footer__links { display: flex; gap: 14px; flex-wrap: wrap; }
.footer__links a { color: var(--muted); text-decoration: none; font-weight: 600; }
.footer__links a:hover { color: var(--blue); }

.faq { padding: 48px 0 56px; border-top: 1px solid var(--line); margin-top: 12px; }
.faq-list { display: grid; gap: 8px; margin-top: 16px; }
.faq-list details {
  border: 1px solid var(--line); border-radius: var(--r); padding: 12px 16px; background: var(--card);
}
.faq-list summary { cursor: pointer; font-weight: 600; }
.faq-list details p { margin: 10px 0 0; color: var(--muted); font-size: 15px; }

.legal-page { padding: 36px 0 72px; }
.legal-page h1 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 8px; }
.legal-kicker { color: var(--muted); margin: 0 0 24px; }
#legal-body { max-width: 68ch; }
#legal-body h2 { font-size: 18px; margin: 28px 0 8px; }
#legal-body p, #legal-body li { color: var(--muted); line-height: 1.65; }
#legal-body ul { padding-left: 18px; }
.legal-note { font-size: 13px; margin-top: 28px; }
.legal-back { display: inline-block; margin-bottom: 18px; font-weight: 600; text-decoration: none; }

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: var(--bg); border-top: 1px solid var(--line);
}
.sticky-cta .btn { width: 100%; }
.sticky-cta.is-away { display: none; }

.trust-badges {
  display: flex; flex-wrap: wrap; gap: 8px 14px; list-style: none; padding: 0; margin: 14px 0 0;
  font-size: 13px; font-weight: 600; color: var(--muted);
}
.trust-badges li::before { content: "✓ "; color: var(--blue); }

.done-ref {
  font-weight: 700; font-size: 15px; color: var(--ink);
  padding: 10px 14px; border-radius: 10px; background: var(--gray);
  margin: 0 0 12px;
}

.cookie-bar {
  position: fixed; z-index: 50;
  left: 16px; right: 16px; bottom: 16px;
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between;
  background: var(--card); color: var(--ink);
  border: 1px solid var(--line); border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 18px 50px rgb(17 24 39 / 0.18);
}
.cookie-bar p { margin: 0; font-size: 14px; color: var(--muted); max-width: 64ch; line-height: 1.45; }
.cookie-bar__title { font-weight: 700; color: var(--ink) !important; margin-bottom: 4px !important; }
.cookie-bar__actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.cookie-bar__actions a { font-weight: 600; font-size: 14px; white-space: nowrap; }

@media (max-width: 759px) {
  body.has-sticky { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  body.has-cookie:not(.has-sticky) { padding-bottom: calc(130px + env(safe-area-inset-bottom)); }
  body.has-sticky.has-cookie { padding-bottom: calc(200px + env(safe-area-inset-bottom)); }
  body.modal-open { padding-bottom: 0; }
  .cookie-bar {
    left: 12px; right: 12px;
    bottom: calc(72px + env(safe-area-inset-bottom));
  }
  body:not(.has-sticky) .cookie-bar { bottom: calc(12px + env(safe-area-inset-bottom)); }
  .modal {
    padding: 12px 12px calc(80px + env(safe-area-inset-bottom));
    align-items: flex-end;
  }
  .modal__panel {
    max-height: min(78vh, 560px);
    overflow: auto;
    width: 100%;
  }
  body.modal-open .sticky-cta,
  body.modal-open .cookie-bar { display: none !important; }
}

.apply-page .apply-main { padding: 24px 0 48px; max-width: 560px; }
.apply-hero h1 { font-size: clamp(26px, 6vw, 34px); margin-bottom: 8px; }
.apply-header { position: sticky; top: 0; z-index: 10; background: var(--bg); border-bottom: 1px solid var(--line); }
.apply-card { margin-top: 20px; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--card); }

@media (min-width: 760px) {
  .wrap { width: min(var(--wrap), calc(100% - 48px)); }
  .menu-btn { display: none; }
  .nav { display: flex; }
  .hero { padding: 48px 0 20px; }
  .hero__grid { grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
  .hero__media img { height: 400px; }
  .pay-card { left: 20px; bottom: 20px; }
  .search {
    grid-template-columns: 1.4fr 1fr 1fr auto;
    align-items: end;
  }
  .search__submit { width: auto; min-width: 140px; }
  .jobs-grid { grid-template-columns: repeat(4, 1fr); }
  .cat-row { grid-template-columns: repeat(8, 1fr); }
  .steps {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
  }
  .steps li:not(:last-child)::after {
    content: "";
    position: absolute; top: 28px; left: 72px; right: -12px;
    border-top: 2px dotted #cbd5e1;
  }
  .life-card { grid-template-columns: 1fr 1fr; align-items: center; }
  .life-card img { height: 100%; min-height: 320px; }
  .quotes { grid-template-columns: 1fr 1fr; }
  .match-card { grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: start; padding: 32px; }
  .hire-card { grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; padding: 32px; }
  .hire-form .btn { width: auto; }
  .banner__inner { grid-template-columns: 1fr auto; align-items: center; padding: 28px 32px; }
  .sticky-cta { display: none; }
}

.theme-toggle {
  position: relative;
  width: 52px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--gray);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.theme-toggle:hover { border-color: var(--blue); }
.theme-toggle:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.theme-toggle__icons {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 7px;
}
.theme-toggle svg { width: 14px; height: 14px; }
.icon-sun { color: #d97706; }
.icon-moon { color: #93c5fd; opacity: .45; }
.theme-toggle__knob {
  position: absolute; top: 3px; left: 3px;
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgb(17 24 39 / 0.18);
  transition: transform .28s cubic-bezier(.22,1,.36,1), background .25s ease;
}
html[data-theme="dark"] .theme-toggle { background: #1e293b; }
html[data-theme="dark"] .theme-toggle__knob { transform: translateX(22px); background: #0f172a; }
html[data-theme="dark"] .icon-sun { opacity: .4; }
html[data-theme="dark"] .icon-moon { opacity: 1; }

html[data-theme="dark"] {
  color-scheme: dark;
  --blue: #60a5fa;
  --blue-d: #3b82f6;
  --ink: #e8edf4;
  --muted: #9aa4b2;
  --line: #2a323c;
  --bg: #0e1116;
  --cream: #1a1814;
  --gray: #161b22;
  --green: #34d399;
  --card: #161b22;
  --nav: #c5cdd6;
}
html[data-theme="dark"] .pill.is-on { background: #1e3a5f; border-color: #1e40af; }
html[data-theme="dark"] .tag { background: #1e3a5f; }
html[data-theme="dark"] .choices label:has(input:checked) { background: #1e3a5f; }
html[data-theme="dark"] .lead input,
html[data-theme="dark"] .lead select,
html[data-theme="dark"] .search input,
html[data-theme="dark"] .search select {
  border-color: #4b5563;
  background: #1c2330;
}
html[data-theme="dark"] .lead select option {
  background: #161b22;
  color: #e8edf4;
}
html[data-theme="dark"] .choices label {
  border-color: #4b5563;
  background: #1c2330;
}
html[data-theme="dark"] .lead input:-webkit-autofill,
html[data-theme="dark"] .lead select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #1c2330 inset;
  -webkit-text-fill-color: #e8edf4;
}
html[data-theme="dark"] .checks li::before { box-shadow: inset 0 0 0 3px var(--cream); }
html[data-theme="dark"] .steps li:not(:last-child)::after { border-top-color: #3a4450; }

.btn { transition: background .2s ease, transform .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgb(37 99 235 / 0.22); }
.btn:active { transform: translateY(0); }
.text-arrow { transition: gap .2s ease, color .2s ease; }
.text-arrow:hover { gap: 8px; }
.nav a { transition: color .2s ease; }
.job-card {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .3s ease, color .3s ease;
}
.job-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgb(17 24 39 / 0.08); }
.cat-row a { transition: transform .2s ease; }
.cat-row a:hover { transform: translateY(-3px); }
.cat-ico { transition: border-color .2s ease, background .2s ease; }
.cat-row a:hover .cat-ico { border-color: var(--blue); }
.heart { transition: color .2s ease, transform .2s ease; }
.heart:hover { transform: scale(1.15); }
.pay-card { animation: float 4.5s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes rise {
  from { opacity: 0; translate: 0 20px; }
  to { opacity: 1; translate: 0 0; }
}
.reveal {
  animation: rise .7s ease both;
}
.hero__media.reveal { animation-delay: .12s; }
.has-js .jobs.is-in .job-card {
  animation: rise .55s ease both;
}
.has-js .jobs.is-in .job-card:nth-child(1) { animation-delay: .04s; }
.has-js .jobs.is-in .job-card:nth-child(2) { animation-delay: .1s; }
.has-js .jobs.is-in .job-card:nth-child(3) { animation-delay: .16s; }
.has-js .jobs.is-in .job-card:nth-child(4) { animation-delay: .22s; }
.has-js .jobs.is-in .job-card:nth-child(5) { animation-delay: .28s; }
.has-js .jobs.is-in .job-card:nth-child(6) { animation-delay: .34s; }
.has-js .jobs.is-in .job-card.is-risen {
  animation: none;
  opacity: 1;
  translate: 0 0;
}
.has-js .search-block,
.has-js .jobs,
.has-js .cats,
.has-js .how,
.has-js .life,
.has-js .proof,
.has-js .banner,
.has-js .faq {
  opacity: 0;
  translate: 0 28px;
  transition: opacity .65s ease, translate .65s ease;
}
.has-js .search-block.is-in,
.has-js .jobs.is-in,
.has-js .cats.is-in,
.has-js .how.is-in,
.has-js .life.is-in,
.has-js .proof.is-in,
.has-js .banner.is-in,
.has-js .faq.is-in {
  opacity: 1;
  translate: 0 0;
}
.has-js .how.is-in .steps li,
.has-js .proof.is-in blockquote {
  animation: rise .6s ease both;
}
.has-js .how.is-in .steps li:nth-child(2) { animation-delay: .12s; }
.has-js .how.is-in .steps li:nth-child(3) { animation-delay: .24s; }
.has-js .proof.is-in blockquote:nth-child(2) { animation-delay: .12s; }
body, .site-header, .search, .match-card, .life-card, .banner__inner, .pay-card, blockquote, .theme-toggle {
  transition: background-color .3s ease, color .3s ease, border-color .3s ease;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal,
  .has-js .search-block,
  .has-js .jobs,
  .has-js .cats,
  .has-js .how,
  .has-js .life,
  .has-js .proof,
  .has-js .banner,
  .has-js .faq,
  .job-card {
    opacity: 1;
    translate: none;
    transform: none;
  }
}
