@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/cfy/fonts/Inter-Regular.woff2") format("woff2");
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/cfy/fonts/Inter-Medium.woff2") format("woff2");
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/cfy/fonts/Inter-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/cfy/fonts/Inter-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/cfy/fonts/GeistMono-Bold.woff2") format("woff2");
}

:root {
  --cfy-font-sans: Inter, system-ui, sans-serif;
  --cfy-font-display: "Geist Mono", ui-monospace, monospace;
  --cfy-color-accent: #ff5500;
  --cfy-color-demo: #ff6000;
  --cfy-color-ink: #0a0e19;
  --cfy-color-muted: rgba(0, 0, 0, 0.5);
  --cfy-color-label: #444444;
  --cfy-color-white: #ffffff;
  --cfy-color-bg: #f9f9f9;
  --cfy-color-line: rgba(0, 0, 0, 0.1);
  --cfy-color-nav-pill: #e4e4e4;
  --cfy-color-btn-light: #eeeeee;
  --cfy-radius-sm: 8px;
  --cfy-content: 1280px;
  --cfy-gutter: 160px;
  --cfy-gutter-m: 20px;
  --cfy-nav-h: 72px;
  --cfy-fs-tag: 14px;
  --cfy-lh-tag: 19.6px;
  --cfy-fs-body: 18px;
  --cfy-fs-display: 48px;
  --cfy-lh-display: 50.4px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body.cfy-page {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--cfy-font-sans);
  font-weight: 400;
  color: var(--cfy-color-ink);
  background: var(--cfy-color-white);
  -webkit-font-smoothing: antialiased;
}

.cfy-page h1,
.cfy-page h2,
.cfy-page h3,
.cfy-page p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.cfy-font-display {
  font-family: var(--cfy-font-display);
  font-weight: 700;
}

.cfy-wrap {
  width: 100%;
  max-width: var(--cfy-content);
  margin: 0 auto;
  padding: 0 var(--cfy-gutter-m);
}

@media (min-width: 992px) {
  .cfy-wrap {
    padding: 0;
  }
  .cfy-header .cfy-wrap,
  .cfy-footer .cfy-wrap {
    max-width: var(--cfy-content);
  }
}

.cfy-header {
  height: var(--cfy-nav-h);
  display: flex;
  align-items: center;
  position: relative;
}

.cfy-header .cfy-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

@media (min-width: 992px) {
  .cfy-header {
    padding: 0 var(--cfy-gutter);
  }
}

.cfy-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.cfy-logo-mark {
  display: block;
  height: 16px;
  width: auto;
}

.cfy-logo-word {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1;
}

.cfy-burger {
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.cfy-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cfy-color-ink);
}

.cfy-nav {
  display: none;
}

.cfy-nav-left {
  display: flex;
  align-items: center;
  background: var(--cfy-color-nav-pill);
  border-radius: var(--cfy-radius-sm);
  padding: 4px;
}

.cfy-nav-left a,
.cfy-drop__btn {
  font-size: 16px;
  line-height: 22.4px;
  color: var(--cfy-color-ink);
  padding: 11.5px 12px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.cfy-drop {
  position: relative;
}

.cfy-drop__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cfy-drop__btn img {
  display: block;
  width: 16px;
  height: 16px;
}

.cfy-drop__menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid var(--cfy-color-line);
  border-radius: var(--cfy-radius-sm);
  padding: 8px 0;
  z-index: 20;
}

.cfy-drop.is-open .cfy-drop__menu,
.cfy-drop:focus-within .cfy-drop__menu {
  display: block;
}

.cfy-drop__menu a {
  display: block;
  padding: 8px 16px;
}

.cfy-nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.cfy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11.5px 16px;
  border-radius: var(--cfy-radius-sm);
  font-size: 16px;
  line-height: 22.4px;
  border: 0;
}

.cfy-btn.cfy-btn--ghost {
  background: var(--cfy-color-btn-light);
  color: var(--cfy-color-ink);
}

.cfy-btn.cfy-btn--accent {
  background: var(--cfy-color-demo);
  color: #fff;
}

.cfy-btn--soft {
  background: #e2e2e2;
  color: #000;
  border-radius: 12px;
  padding: 11.5px 48px;
}

.cfy-btn--dark {
  background: #1f1f1f;
  color: #fff;
  border-radius: 12px;
  padding: 11.5px 48px;
  font-family: inherit;
  cursor: pointer;
}

.cfy-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 3.8px 9px;
  border: 1px solid var(--cfy-color-line);
  border-radius: var(--cfy-radius-sm);
  background: #fff;
  font-size: var(--cfy-fs-tag);
  line-height: var(--cfy-lh-tag);
  color: var(--cfy-color-label);
}

.cfy-tag i {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--cfy-color-accent);
  flex-shrink: 0;
  font-style: normal;
  border-radius: 0;
}

.cfy-nav-panel {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: var(--cfy-nav-h);
  background: #fff;
  padding: 16px 20px 32px;
  z-index: 30;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.cfy-nav-panel.is-open {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 992px) {
  .cfy-burger {
    display: none;
  }
  .cfy-nav {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 24px;
  }
  .cfy-nav-panel {
    display: none !important;
  }
}

.cfy-footer {
  margin-top: auto;
  padding: 48px 0 16px;
  position: relative;
  background: var(--cfy-color-bg);
}

@media (min-width: 992px) {
  .cfy-footer {
    padding: 60px var(--cfy-gutter) 60px;
  }
}

.cfy-footer-top {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cfy-footer-cols {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cfy-footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cfy-footer-col__title {
  font-size: 12px;
  line-height: 16.8px;
  color: var(--cfy-color-muted);
}

.cfy-footer-col a {
  font-size: 16px;
  line-height: 22.4px;
  padding: 6px 0;
}

.cfy-footer-bottom {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--cfy-color-line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cfy-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cfy-social a {
  display: flex;
  width: 24px;
  height: 24px;
}

.cfy-social img {
  display: block;
  width: 24px;
  height: 24px;
}

.cfy-legal {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 12px;
  line-height: 16.8px;
}

.cfy-legal .cfy-copy {
  color: var(--cfy-color-muted);
}

.cfy-corners {
  pointer-events: none;
  position: absolute;
  inset: 8px;
}

.cfy-corners i {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(0, 0, 0, 0.2);
}

.cfy-corners i:nth-child(1) {
  top: 0;
  left: 0;
}

.cfy-corners i:nth-child(2) {
  top: 0;
  right: 0;
}

.cfy-corners i:nth-child(3) {
  bottom: 0;
  left: 0;
}

.cfy-corners i:nth-child(4) {
  bottom: 0;
  right: 0;
}

@media (min-width: 992px) {
  .cfy-footer-top {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 261px;
    padding-bottom: 80px;
  }
  .cfy-footer-cols {
    flex-direction: row;
    gap: 20px;
  }
  .cfy-footer-col {
    width: 196px;
  }
  .cfy-footer-col__title {
    font-size: 16px;
    line-height: 22px;
  }
  .cfy-footer-col a {
    padding: 0;
  }
  .cfy-footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 0;
    padding-top: 12px;
  }
  .cfy-legal {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    order: 1;
  }
  .cfy-social {
    order: 2;
  }
  .cfy-footer .cfy-corners {
    left: 88px;
    right: 88px;
  }
}

.cfy-page {
  background: var(--cfy-color-white);
  overflow-x: hidden;
}

.cfy-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 3.8px 9px;
  border: 1px solid var(--cfy-color-line);
  border-radius: var(--cfy-radius-sm);
  background: #fff;
  font-size: var(--cfy-fs-tag);
  line-height: var(--cfy-lh-tag);
  color: var(--cfy-color-label);
}

.cfy-tag i {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--cfy-color-accent);
  flex-shrink: 0;
  font-style: normal;
  border-radius: 0;
}

.cfy-tag--pink i {
  background: #eb55eb;
}

.cfy-btn--soft {
  background: #e2e2e2;
  color: #000;
  border-radius: 12px;
  padding: 11.5px 48px;
}

.cfy-btn--outline {
  background: #fff;
  border: 1px solid var(--cfy-color-line);
  border-radius: 12px;
  padding: 8.5px 34px;
}

.cfy-hero,
.cfy-quote,
.cfy-join,
.cfy-cta,
.cfy-stats,
.cfy-benefits,
.cfy-awards,
.cfy-life {
  position: relative;
}

.cfy-hero .cfy-corners,
.cfy-quote .cfy-corners,
.cfy-join .cfy-corners,
.cfy-cta .cfy-corners,
.cfy-stats .cfy-corners,
.cfy-benefits .cfy-corners,
.cfy-awards .cfy-corners,
.cfy-life .cfy-corners {
  inset: 8px;
}

.cfy-hero .cfy-corners {
  top: calc(8px - var(--cfy-nav-h));
}

.cfy-hero {
  padding: 64px 0 48px;
}

.cfy-hero__copy {
  max-width: 768px;
  margin: 0 auto 48px;
  padding: 0 var(--cfy-gutter-m);
  text-align: center;
}

.cfy-hero__copy .cfy-tag {
  margin-bottom: 15px;
}

.cfy-hero__copy h1 {
  font-size: 36px;
  line-height: 1.05;
  color: var(--cfy-color-ink);
  margin-bottom: 24px;
}

.cfy-hero__copy p {
  font-size: var(--cfy-fs-body);
  line-height: 1.2;
  color: var(--cfy-color-muted);
  margin-bottom: 24px;
}

.cfy-hero__img {
  display: block;
  width: 100%;
  height: 192px;
  object-fit: cover;
}

.cfy-quote {
  background: var(--cfy-color-bg);
  padding: 64px var(--cfy-gutter-m);
}

.cfy-quote p {
  max-width: 1024px;
  margin: 0 auto;
  font-size: 36px;
  line-height: 1.05;
  color: var(--cfy-color-ink);
  opacity: 0.79;
}

.cfy-cta,
.cfy-join,
.cfy-stats,
.cfy-awards {
  background: var(--cfy-color-bg);
}

.cfy-join {
  padding: 64px 0;
}

.cfy-join__head h2,
.cfy-stats h2,
.cfy-awards h2,
.cfy-life h2 {
  margin: 24px 0 0;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.05;
  color: var(--cfy-color-ink);
}

.cfy-join__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.cfy-chips {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}

.cfy-chip {
  flex-shrink: 0;
  border: 1px solid #e5e5e5;
  background: var(--cfy-color-white);
  border-radius: 12px;
  padding: 8.5px 25px;
  font-family: inherit;
  font-size: 16px;
  line-height: 22.4px;
  color: #000;
  cursor: pointer;
}

.cfy-chip.is-on {
  background: var(--cfy-color-btn-light);
}

.cfy-jobs {
  background: var(--cfy-color-btn-light);
}

.cfy-job-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cfy-job-row:last-of-type {
  border-bottom: 0;
}

.cfy-job-row.is-hidden {
  display: none;
}

.cfy-job-row__name {
  display: block;
  font-size: 16px;
  line-height: 1.2;
  color: var(--cfy-color-ink);
}

.cfy-job-row__loc {
  display: block;
  margin-top: 2px;
  font-size: 14px;
  line-height: 19.6px;
  color: var(--cfy-color-muted);
}

.cfy-job-row__go {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 58px;
  height: 42px;
  border-radius: 12px;
}

.cfy-job-row__go img {
  display: block;
  width: 24px;
  height: 24px;
}

.cfy-jobs__empty {
  padding: 24px 20px;
  color: var(--cfy-color-muted);
}

.cfy-join__empty {
  margin-top: 48px;
  text-align: center;
}

.cfy-join__empty p {
  font-size: 22px;
  line-height: 24px;
  margin-bottom: 20px;
  color: var(--cfy-color-ink);
}

.cfy-cta {
  padding: 0 0 0;
}

.cfy-cta__inner {
  position: relative;
  overflow: hidden;
  min-height: 474px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 64px 20px;
  text-align: center;
}

.cfy-cta__sky {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.cfy-cta__icons {
  position: relative;
  height: 48px;
  width: auto;
}

.cfy-cta__inner p {
  position: relative;
  max-width: 614px;
  font-size: 28px;
  line-height: 1.2;
  color: #fff;
}

.cfy-stats {
  padding: 64px 0;
}

.cfy-stats h2 {
  margin-bottom: 32px;
}

.cfy-stats__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cfy-stats__item {
  background: var(--cfy-color-btn-light);
  padding: 16px 20px 16px;
  min-height: 159px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cfy-stats__num {
  font-size: 64px;
  line-height: 83.2px;
  color: var(--cfy-color-ink);
}

.cfy-stats__item > p:last-child {
  font-size: 16px;
  line-height: 1.2;
  color: var(--cfy-color-muted);
}

.cfy-benefits,
.cfy-life {
  background: var(--cfy-color-white);
}

.cfy-benefits {
  padding: 64px 0;
}

.cfy-benefits h2 {
  max-width: 768px;
  margin: 24px 0 32px;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.05;
}

.cfy-carousel__viewport {
  overflow: hidden;
}

.cfy-carousel__track {
  display: flex;
  gap: 16px;
  transition: transform 0.35s ease;
}

.cfy-benefit {
  flex: 0 0 327px;
  min-height: 350px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.cfy-benefit img {
  width: 65px;
  height: 65px;
  margin-bottom: 24px;
}

.cfy-benefit h3 {
  margin: auto 0 16px;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}

.cfy-benefit p {
  font-size: 16px;
  line-height: 1.2;
  color: var(--cfy-color-muted);
}

.cfy-benefit--yellow {
  background: #fcfccf;
}

.cfy-benefit--lilac {
  background: #f7e8ff;
}

.cfy-benefit--green {
  background: #e8ffe2;
}

.cfy-carousel__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
}

.cfy-dots {
  display: flex;
  gap: 6px;
  padding: 10px 3px 0;
}

.cfy-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: rgba(10, 14, 25, 0.2);
  cursor: pointer;
}

.cfy-dots button.is-on {
  background: var(--cfy-color-ink);
}

.cfy-carousel__arrows {
  display: flex;
  gap: 16px;
}

.cfy-carousel__arrows button {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 48px;
  background: var(--cfy-color-btn-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.cfy-awards {
  padding: 64px 0;
}

.cfy-awards__intro p {
  margin-top: 16px;
  font-size: var(--cfy-fs-body);
  line-height: 1.2;
  color: var(--cfy-color-muted);
}

.cfy-awards__cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 32px;
}

.cfy-award {
  display: grid;
  grid-template-columns: 1fr 24px;
  grid-template-rows: auto auto;
  gap: 8px 16px;
  padding: 20px;
  background: var(--cfy-color-btn-light);
  align-items: start;
}

.cfy-award > span {
  grid-column: 1;
}

.cfy-award > img:nth-of-type(1) {
  grid-column: 2;
  grid-row: 1;
}

.cfy-award__name {
  display: block;
  font-size: 16px;
  line-height: 1.2;
}

.cfy-award__desc {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.2;
  color: var(--cfy-color-muted);
}

.cfy-award__logo {
  grid-column: 1 / -1;
  margin-top: 16px;
  height: 32px;
  width: auto;
  max-width: 206px;
  object-fit: contain;
  object-position: left center;
  justify-self: start;
}

.cfy-award__logo--inc {
  height: 48px;
  width: 48px;
}

.cfy-award__logo--endeavor {
  height: 28px;
}

.cfy-life {
  padding: 64px 0 80px;
  overflow: hidden;
}

.cfy-life h2 {
  margin-bottom: 32px;
}

.cfy-life__viewport {
  overflow: hidden;
  padding-left: var(--cfy-gutter-m);
}

.cfy-life__track {
  display: flex;
  gap: 20px;
  height: 300px;
  transition: transform 0.35s ease;
}

.cfy-life__track img {
  height: 300px;
  width: auto;
  object-fit: cover;
  flex-shrink: 0;
}

.cfy-life__track img:nth-child(1),
.cfy-life__track img:nth-child(3),
.cfy-life__track img:nth-child(6) {
  width: 450px;
}

.cfy-life__track img:nth-child(2),
.cfy-life__track img:nth-child(4) {
  width: 225px;
}

.cfy-life__track img:nth-child(5) {
  width: 210px;
}

@media (min-width: 992px) {
  .cfy-hero {
    padding: 112px 0;
  }

  .cfy-hero .cfy-corners,
  .cfy-quote .cfy-corners,
  .cfy-join .cfy-corners,
  .cfy-cta .cfy-corners,
  .cfy-stats .cfy-corners,
  .cfy-benefits .cfy-corners,
  .cfy-awards .cfy-corners,
  .cfy-life .cfy-corners {
    left: 88px;
    right: 88px;
  }

  .cfy-hero .cfy-corners {
    top: calc(8px - var(--cfy-nav-h));
    bottom: 8px;
  }

  .cfy-hero__copy {
    max-width: var(--cfy-content);
    margin-bottom: 120px;
  }

  .cfy-hero__copy h1 {
    font-size: var(--cfy-fs-display);
    line-height: var(--cfy-lh-display);
    letter-spacing: -0.48px;
  }

  .cfy-hero__title-a {
    white-space: nowrap;
  }

  .cfy-hero__copy p {
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
  }

  .cfy-hero__img {
    height: 700px;
  }

  .cfy-quote {
    padding: 111px var(--cfy-gutter) 112px;
  }

  .cfy-quote p {
    font-size: var(--cfy-fs-display);
    line-height: var(--cfy-lh-display);
    text-align: left;
  }

  .cfy-join,
  .cfy-stats,
  .cfy-benefits,
  .cfy-awards,
  .cfy-life {
    padding: 112px 0;
  }

  .cfy-join__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .cfy-chips {
    overflow: visible;
  }

  .cfy-job-row {
    padding: 16px 24px;
  }

  .cfy-join__empty {
    text-align: left;
  }

  .cfy-cta__inner {
    min-height: 386px;
    padding: 100px 256px;
  }

  .cfy-cta__inner p {
    font-size: 32px;
  }

  .cfy-stats__grid {
    flex-direction: row;
    gap: 16px;
  }

  .cfy-stats__item {
    flex: 1;
    height: 240px;
    padding: 32px;
  }

  .cfy-benefit {
    flex-basis: 624px;
    padding: 32px;
  }

  .cfy-awards__grid {
    display: flex;
    gap: 80px;
    align-items: flex-start;
  }

  .cfy-awards__intro {
    flex: 1;
    position: sticky;
    top: 24px;
  }

  .cfy-awards__cards {
    width: 600px;
    flex: none;
    display: grid;
    grid-template-columns: 294px 294px;
    gap: 10px;
    margin-top: 0;
  }

  .cfy-award {
    width: 294px;
    min-height: 170px;
    padding: 24px;
    align-content: space-between;
  }

  .cfy-life__viewport {
    padding-left: var(--cfy-gutter);
  }

  .cfy-life__track img:nth-child(1),
  .cfy-life__track img:nth-child(3),
  .cfy-life__track img:nth-child(6) {
    width: 450px;
  }
}

body.cfy-page {
  background: var(--cfy-color-bg);
  overflow-x: hidden;
}

.cfy-job-hero,
.cfy-job-desc,
.cfy-apply {
  position: relative;
}

.cfy-job-hero {
  padding: 64px 0;
}

.cfy-job-hero__copy {
  padding: 0 var(--cfy-gutter-m);
  text-align: center;
}

.cfy-job-hero__copy .cfy-tag {
  margin-bottom: 15px;
}

.cfy-job-hero h1 {
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.36px;
  color: var(--cfy-color-ink);
  margin-bottom: 20px;
}

.cfy-job-hero__copy p {
  font-size: 16px;
  line-height: 1.2;
  color: var(--cfy-color-muted);
}

.cfy-job-hero__apply {
  display: none;
  margin-top: 12px;
}

.cfy-job-hero__corners {
  inset: 8px;
  top: calc(8px - var(--cfy-nav-h));
}

.cfy-job-desc {
  background: var(--cfy-color-white);
  padding: 64px 0;
}

.cfy-job-desc .cfy-corners,
.cfy-apply .cfy-corners {
  inset: 8px;
}

.cfy-job-body {
  color: var(--cfy-color-ink);
}

.cfy-job-body p {
  font-size: 16px;
  line-height: 1.2;
}

.cfy-job-body p + p {
  margin-top: 16px;
}

.cfy-job-body strong {
  font-weight: 700;
}

.cfy-job-body h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
}

.cfy-job-body h2 + p {
  font-size: 16px;
  line-height: 1.2;
}

.cfy-job-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cfy-job-body li {
  position: relative;
  padding-left: 16px;
  font-size: 16px;
  line-height: 19px;
}

.cfy-job-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6.5px;
  width: 6px;
  height: 6px;
  background: var(--cfy-color-accent);
}

.cfy-apply {
  padding: 64px 0;
}

.cfy-apply__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.cfy-apply__layout {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cfy-apply__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.cfy-apply__title {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--cfy-color-ink);
}

.cfy-apply__intro > p {
  font-size: var(--cfy-fs-body);
  line-height: 1.2;
  color: var(--cfy-color-muted);
}

.cfy-apply__card {
  background: #fff;
  border-radius: var(--cfy-radius-sm);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.cfy-apply__fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
}

.cfy-field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.cfy-field span:first-child {
  font-size: 16px;
  line-height: 1.1;
  color: var(--cfy-color-ink);
}

.cfy-field input[type="text"],
.cfy-field input[type="email"],
.cfy-field input[type="tel"],
.cfy-field input[type="url"] {
  width: 100%;
  height: 44px;
  padding: 0 11px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--cfy-radius-sm);
  background: var(--cfy-color-bg);
  font-family: inherit;
  font-size: 16px;
  color: var(--cfy-color-ink);
}

.cfy-field input::placeholder {
  color: rgba(0, 0, 0, 0.6);
}

.cfy-field input:focus {
  outline: 1px solid var(--cfy-color-line);
}

.cfy-file {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 44px;
  padding: 0 44px 0 11px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--cfy-radius-sm);
  background: var(--cfy-color-bg);
  cursor: pointer;
}

.cfy-file input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.cfy-file__name {
  font-size: 16px;
  line-height: 1.2;
  color: var(--cfy-color-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cfy-file img {
  position: absolute;
  right: 11px;
  top: 10px;
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.cfy-field__hint {
  font-size: 12px;
  line-height: 1.4;
  color: var(--cfy-color-muted);
}

.cfy-field.is-invalid input,
.cfy-field.is-invalid .cfy-file {
  border-color: #c0392b;
}

@media (min-width: 992px) {
  .cfy-job-hero {
    padding: 112px 0;
  }

  .cfy-job-hero__copy {
    padding: 0;
  }

  .cfy-job-hero h1 {
    font-size: var(--cfy-fs-display);
    line-height: var(--cfy-lh-display);
    letter-spacing: -0.48px;
    margin-bottom: 12px;
  }

  .cfy-job-hero__copy p {
    font-size: var(--cfy-fs-body);
  }

  .cfy-job-hero__apply {
    display: inline-flex;
    margin-top: 12px;
  }

  .cfy-job-hero__corners {
    display: none;
  }

  .cfy-job-desc {
    padding: 112px 0;
  }

  .cfy-job-desc .cfy-corners,
  .cfy-apply .cfy-corners {
    left: 88px;
    right: 88px;
  }

  .cfy-job-body > p:first-child,
  .cfy-job-body h2 + p {
    font-size: 16px;
    line-height: 1.2;
  }

  .cfy-job-body h2 {
    margin-top: 60px;
  }

  .cfy-apply {
    padding: 112px 0;
  }

  .cfy-apply__layout {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
  }

  .cfy-apply__intro {
    width: 514px;
    flex-shrink: 0;
  }

  .cfy-apply__card {
    width: 632px;
    flex-shrink: 0;
    padding: 32px;
  }

  .cfy-apply__fields {
    grid-template-columns: 1fr 1fr;
  }

  .cfy-field--file {
    grid-column: 1 / -1;
  }
}

/* Оверрайди лише для Odoo: сторінка рендериться всередині #wrapwrap.cfy-page
   (website.layout), а не в body.cfy-page, як у статичному макеті. Файл іде
   останнім у збірці /cfy/careers.css, тож перекриває і тему Odoo, і макет. */

.cfy-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: var(--cfy-font-sans);
  font-weight: 400;
  color: var(--cfy-color-ink);
  background: var(--cfy-color-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.cfy-page > main {
  flex: 1 0 auto;
}

/* Тема Odoo задає заголовкам свій шрифт і колір. Відступи тут не чіпати: скидання
   margin уже є на початку cfy.css, а цей файл іде останнім і перебив би відступи макета. */
.cfy-page h1,
.cfy-page h2,
.cfy-page h3,
.cfy-page h4 {
  font-family: inherit;
  color: inherit;
}

.cfy-page .cfy-font-display {
  font-family: var(--cfy-font-display);
  font-weight: 700;
}

.cfy-page a,
.cfy-page a:hover,
.cfy-page a:focus {
  color: inherit;
  text-decoration: none;
}

.cfy-page button {
  font-family: inherit;
}

/* Кольорові кнопки: оверрайд посилань вище не має перебивати білий текст. */
.cfy-page .cfy-btn--dark,
.cfy-page .cfy-btn--dark:hover,
.cfy-page .cfy-btn--accent,
.cfy-page .cfy-btn--accent:hover {
  color: #fff;
}

.cfy-page .hidden,
.cfy-page .s_website_form_dnone {
  display: none !important;
}

/* Тло сторінок: список вакансій білий, сторінки вакансії та заявки на fog. */
.cfy-careers {
  background: var(--cfy-color-white);
}

.cfy-job {
  background: var(--cfy-color-bg);
}

/* Тіло вакансії з Odoo: секції там h3, є <b>, списки після абзаців. */
.cfy-job-body h3 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.cfy-job-body b {
  font-weight: 700;
}

.cfy-job-body p + ul,
.cfy-job-body ul + p,
.cfy-job-body ul + ul {
  margin-top: 16px;
}

.cfy-job-body ol {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cfy-job-body a {
  text-decoration: underline;
}

@media (min-width: 992px) {
  .cfy-job-body h3 {
    margin-top: 48px;
  }
}

/* Пагінація Odoo (website.pager), якщо вакансій більше за сторінку. */
.cfy-pager {
  margin-top: 24px;
}

.cfy-pager .pagination {
  gap: 6px;
}

.cfy-pager .page-link {
  border: 1px solid var(--cfy-color-line);
  border-radius: var(--cfy-radius-sm);
  color: var(--cfy-color-ink);
  background: var(--cfy-color-white);
}

.cfy-pager .page-item.active .page-link {
  background: var(--cfy-color-btn-light);
  border-color: var(--cfy-color-line);
  color: var(--cfy-color-ink);
}

/* Форма заявки: розмітка Odoo (s_website_form) у стилях макета. */
.cfy-apply__form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
}

.cfy-field > .s_website_form_label {
  display: block;
  margin: 0;
  font-size: 16px;
  line-height: 1.1;
  color: var(--cfy-color-ink);
}

.cfy-field .s_website_form_mark {
  color: var(--cfy-color-muted);
}

.cfy-field .form-control,
.cfy-field .form-select {
  width: 100%;
  height: 44px;
  padding: 0 11px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--cfy-radius-sm);
  background: var(--cfy-color-bg);
  font-family: inherit;
  font-size: 16px;
  line-height: 42px;
  color: var(--cfy-color-ink);
  box-shadow: none;
}

.cfy-field textarea.form-control {
  height: auto;
  min-height: 120px;
  padding: 10px 11px;
  line-height: 1.3;
  resize: vertical;
}

.cfy-field .form-control::placeholder {
  color: rgba(0, 0, 0, 0.45);
}

.cfy-field .form-control:focus,
.cfy-field .form-select:focus {
  outline: 0;
  border-color: rgba(0, 0, 0, 0.2);
  box-shadow: none;
}

.cfy-field .form-control.is-invalid,
.cfy-field .form-select.is-invalid,
.cfy-field.o_has_error .form-control,
.cfy-field .form-control.border-warning {
  border-color: #c0392b;
  background-image: none;
}

.cfy-field input[type="file"].form-control {
  height: auto;
  padding: 8px 11px;
  line-height: 1.4;
  cursor: pointer;
}

.cfy-field input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 6px 14px;
  border: 1px solid var(--cfy-color-line);
  border-radius: var(--cfy-radius-sm);
  background: var(--cfy-color-white);
  font-family: inherit;
  font-size: 14px;
  color: var(--cfy-color-ink);
  cursor: pointer;
}

/* Після вибору файлу Odoo ховає інпут і малює блок файла з кнопкою заміни. */
.cfy-field .o_files_zone {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  width: 100%;
}

.cfy-field .o_files_zone:empty {
  display: none;
}

.cfy-field .o_file_block {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  max-width: 100%;
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid var(--cfy-color-line);
  border-radius: var(--cfy-radius-sm);
  background: var(--cfy-color-white);
  font-size: 14px;
  line-height: 1.2;
}

.cfy-field .o_file_block .o_file_delete {
  cursor: pointer;
}

.cfy-field .o_add_files_button {
  width: auto;
  height: auto;
  padding: 8px 16px;
  border: 1px solid var(--cfy-color-line);
  border-radius: var(--cfy-radius-sm);
  background: var(--cfy-color-white);
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
}

.cfy-field__row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.cfy-field__row .form-control {
  flex: 1;
  min-width: 0;
}

.cfy-field .form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0;
  margin: 0;
}

.cfy-field .form-check-input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.cfy-apply .alert {
  width: 100%;
  margin: 0;
  padding: 8px 10px;
  border: 1px solid rgba(192, 57, 43, 0.25);
  border-radius: var(--cfy-radius-sm);
  background: #fff3f1;
  font-size: 13px;
  line-height: 1.4;
  color: #8a2a1f;
}

.cfy-apply .s_website_form_custom_error,
.cfy-apply .s_website_form_status_error,
.cfy-apply #s_website_form_result {
  display: block;
  width: 100%;
  font-size: 13px;
  line-height: 1.4;
  color: #c0392b;
}

.cfy-apply #s_website_form_result:empty {
  display: none;
}

.cfy-apply__submit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.cfy-apply__legal {
  width: 100%;
  font-size: 12px;
  line-height: 1.5;
  color: var(--cfy-color-muted);
}

.cfy-apply__legal a {
  text-decoration: underline;
}

.cfy-thanks .cfy-job-hero__copy p {
  max-width: 560px;
  margin: 0 auto 24px;
}

.cfy-thanks .cfy-job-hero__back {
  display: inline-flex;
}

@media (min-width: 992px) {
  .cfy-field--wide {
    grid-column: 1 / -1;
  }
}

/* Ховери й фокус на клікабельних елементах. Тільки для пристроїв з курсором,
   на тачі ховер залипає. Клавіатурний фокус: рамка в акцентному кольорі. */
.cfy-page a,
.cfy-page button,
.cfy-page .cfy-btn,
.cfy-page .cfy-chip,
.cfy-page .cfy-job-row__go img,
.cfy-page .cfy-award > img:nth-of-type(1) {
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease,
    opacity 0.15s ease, transform 0.15s ease;
}

@media (hover: hover) {
  .cfy-page .cfy-logo:hover {
    opacity: 0.7;
  }

  .cfy-page .cfy-btn--ghost:hover,
  .cfy-page .cfy-btn--soft:hover {
    background: #d9d9d9;
  }

  .cfy-page .cfy-btn--dark:hover {
    background: #000;
  }

  .cfy-page .cfy-btn--accent:hover {
    background: #e65600;
  }

  .cfy-page .cfy-btn--outline:hover {
    background: var(--cfy-color-btn-light);
    border-color: rgba(0, 0, 0, 0.2);
  }

  .cfy-page .cfy-chip:hover {
    background: var(--cfy-color-btn-light);
    border-color: rgba(0, 0, 0, 0.15);
  }

  .cfy-page .cfy-job-row:hover {
    background: #e4e4e4;
  }

  .cfy-page .cfy-job-row:hover .cfy-job-row__go {
    background: var(--cfy-color-white);
  }

  .cfy-page .cfy-job-row:hover .cfy-job-row__go img {
    transform: translateX(4px);
  }

  .cfy-page .cfy-award:hover {
    background: #e4e4e4;
  }

  .cfy-page .cfy-award:hover > img:nth-of-type(1) {
    transform: translate(3px, -3px);
  }

  .cfy-page .cfy-carousel__arrows button:hover {
    background: #d9d9d9;
  }

  .cfy-page .cfy-dots button:hover {
    background: rgba(10, 14, 25, 0.5);
  }

  .cfy-page .cfy-dots button.is-on:hover {
    background: var(--cfy-color-ink);
  }

  .cfy-page .cfy-footer-col a:hover,
  .cfy-page .cfy-legal a:hover,
  .cfy-page .cfy-apply__legal a:hover,
  .cfy-page .cfy-job-body a:hover {
    color: var(--cfy-color-accent);
  }

  .cfy-page .cfy-social a:hover {
    opacity: 0.6;
  }

  .cfy-page .cfy-file:hover,
  .cfy-page .cfy-field input[type="file"].form-control:hover,
  .cfy-page .cfy-field .o_add_files_button:hover {
    background: var(--cfy-color-btn-light);
  }
}

.cfy-page a:focus-visible,
.cfy-page button:focus-visible,
.cfy-page .form-control:focus-visible,
.cfy-page .form-select:focus-visible {
  outline: 2px solid var(--cfy-color-accent);
  outline-offset: 2px;
}

/* Стрілки на картках нагород: 24px з макета великі, робимо 16px. */
.cfy-page .cfy-award {
  grid-template-columns: 1fr 16px;
}

.cfy-page .cfy-award > img:nth-of-type(1) {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

/* Карусель Life at Cargofy: перше фото на одній лінії з заголовком. У макеті відступ
   фіксований 160px і збігається з контейнером лише на 1600px, тут рахуємо від ширини. */
.cfy-page .cfy-life__viewport {
  padding-left: max(var(--cfy-gutter-m), calc((100% - var(--cfy-content)) / 2));
}

/* Картки бенефітів вужчі за макет (624px), щоб у 1280px контейнер входило дві з хвостом третьої. */
@media (min-width: 992px) {
  .cfy-page .cfy-benefit {
    flex-basis: 560px;
  }
}

/* Небо в CTA: показуємо нижню частину картинки (чисте небо, хмарки по боках), велика хмара
   лишається над кадром, смуга землі внизу картинки в кадр не входить. */
.cfy-page .cfy-cta__sky {
  object-position: 50% 86%;
}

/* На мобільному контейнер вищий за пропорції картинки, cover показує її повністю разом із землею.
   Розтягуємо картинку понад контейнер і зсуваємо, щоб у кадрі було чисте небо під хмарою. */
@media (max-width: 991px) {
  .cfy-page .cfy-cta__sky {
    height: 220%;
    top: -105%;
    bottom: auto;
    object-position: 50% 50%;
  }
}
