@import "https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css";
/* [project]/app/globals.css [app-client] (css) */
:root {
  --ink: #111116;
  --muted: #6f717b;
  --line: #e5e5ea;
  --soft: #f7f7fb;
  --purple: #8816ff;
  --purple-dark: #5200aa;
  --pink: #ff4f92;
  --section: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  word-break: keep-all;
  background: #fff;
  margin: 0;
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
}

button, input {
  font: inherit;
}

button, a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

table th, table td {
  text-align: left;
}

.loofit-site {
  min-width: 320px;
  overflow-x: clip;
}

.sr-only, .loofit-site .sr-only {
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.section-shell {
  width: min(calc(100% - 48px), var(--section));
  margin-inline: auto;
}

.site-header {
  z-index: 200;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: #fbfbffb8;
  align-items: center;
  height: 72px;
  padding: 0 32px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.site-header + main {
  padding-top: 72px;
}

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

.standalone-header-label {
  color: #746d84;
  letter-spacing: 1.4px;
  margin-left: auto;
  font-size: 11px;
  font-weight: 800;
}

.workspace-brand > span, .workspace-mobile-menu-button, .workspace-mobile-drawer-root {
  display: none;
}

.desktop-nav {
  align-items: center;
  gap: 46px;
  height: 40px;
  margin-left: clamp(70px, 12vw, 255px);
  font-size: 17px;
  font-weight: 600;
  display: flex;
}

.desktop-nav a, .quick-menu {
  justify-content: center;
  align-items: center;
  min-height: 40px;
  line-height: 1;
  transition: color .16s;
  display: inline-flex;
  position: relative;
}

.desktop-nav a:after, .quick-menu:after {
  content: "";
  transform-origin: center;
  background: #24242c;
  height: 2px;
  transition: transform .28s;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: scaleX(0);
}

.desktop-nav a:hover:after, .desktop-nav a:focus-visible:after, .quick-menu:hover:after, .quick-menu:focus-visible:after {
  transform: scaleX(1);
}

.quick-menu {
  cursor: pointer;
  background: none;
  border: 0;
  gap: 8px;
  padding: 0;
  font-size: 17px;
  font-weight: 600;
}

.mini-chevron {
  color: #0000;
  background: #24004a14;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  font-size: 0;
  display: inline-flex;
  position: relative;
}

.mini-chevron:before {
  content: "";
  border-bottom: 1.5px solid #24242c;
  border-right: 1.5px solid #24242c;
  width: 6px;
  height: 6px;
  transform: translateY(-2px)rotate(45deg);
}

.clvr-link {
  letter-spacing: -.02em;
  font-size: 21px;
}

.header-actions {
  align-items: center;
  gap: 14px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  position: relative;
}

.icon-button {
  cursor: pointer;
  background: none;
  border: 0;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  padding: 0;
  display: inline-flex;
  position: relative;
}

.icon-button:after {
  z-index: 10;
  color: #fff;
  content: attr(data-tooltip);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  background: #24242c;
  border-radius: 4px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  transition: opacity .16s, transform .16s;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translate(-50%, -4px);
}

.icon-button:hover:after, .icon-button:focus-visible:after {
  opacity: 1;
  transform: translate(-50%);
}

.divider {
  background: #09090b;
  width: 1px;
  height: 12px;
}

.header-actions .login-link {
  align-items: center;
  height: 48px;
  line-height: 1;
  display: inline-flex;
}

.workspace-button, .join-button {
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  height: 44px;
  padding: 0 25px;
  transition: background .2s, border-color .2s;
  display: inline-flex;
}

.workspace-button {
  color: #fff;
  background: #17171d;
}

.join-button {
  background: #fff;
  border: 1px solid #d9d9e0;
}

.workspace-button:hover, .workspace-button:focus-visible, .workspace-button.is-active {
  background: radial-gradient(167.5% 50%, #7b00ffcc 0%, #7b00ff66 100%), #151519;
}

.join-button:hover, .join-button:focus-visible {
  border-color: #24242c;
}

.header-auth-loading {
  align-items: center;
  gap: 10px;
  height: 44px;
  display: flex;
}

.header-auth-loading i {
  background: linear-gradient(90deg, #f1f1f5 25%, #fafafd 50%, #f1f1f5 75%) 0 0 / 200% 100%;
  border-radius: 8px;
  width: 58px;
  height: 13px;
  animation: 1.2s linear infinite header-auth-pulse;
  display: block;
}

.header-auth-loading i:last-child {
  border-radius: 4px;
  width: 112px;
  height: 40px;
}

.header-user-name {
  color: #44444f;
  white-space: nowrap;
  text-overflow: ellipsis;
  align-items: center;
  gap: 7px;
  max-width: 145px;
  font-size: 13px;
  display: inline-flex;
  overflow: hidden;
}

.header-user-name i {
  color: #526dde;
  background: #eef1ff;
  border-radius: 50%;
  flex: none;
  place-items: center;
  width: 28px;
  height: 28px;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  display: grid;
}

.logout-button {
  color: #6d6d78;
  height: 36px;
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0 3px;
  font-size: 13px;
}

.logout-button:hover, .logout-button:focus-visible {
  color: #19191f;
  text-underline-offset: 3px;
  text-decoration: underline;
}

.logout-button:disabled {
  cursor: wait;
  opacity: .55;
}

.header-auth-error {
  color: #ad4636;
  white-space: nowrap;
  background: #fff7f5;
  border: 1px solid #ffd2ca;
  border-radius: 6px;
  padding: 6px 9px;
  font-size: 11px;
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
}

@keyframes header-auth-pulse {
  from {
    background-position: 100% 0;
  }

  to {
    background-position: -100% 0;
  }
}

.mobile-menu-button, .mobile-nav {
  display: none;
}

.hero {
  isolation: isolate;
  background: #fbfbff;
  place-items: center;
  min-height: calc(100svh - 78px);
  display: grid;
  position: relative;
  overflow: hidden;
}

.hero:after {
  z-index: -3;
  content: "";
  background: linear-gradient(#fbfbff66, #ffffffb8);
  position: absolute;
  inset: 0;
}

.hero-aurora {
  z-index: -2;
  filter: blur(26px);
  opacity: .85;
  pointer-events: none;
  width: min(68vw, 1080px);
  height: min(55vw, 770px);
  position: absolute;
}

.hero-aurora-red {
  background: radial-gradient(#ff58608a 0, #ff947340 35%, #fff0 72%);
  top: 24%;
  left: 8%;
}

.hero-aurora-purple {
  background: radial-gradient(#af48ff8a 0, #e56de83d 38%, #fff0 73%);
  top: 25%;
  right: 5%;
}

.hero-content {
  text-align: center;
  width: min(100% - 40px, 900px);
  margin-top: -5vh;
}

@keyframes aurora-bloom {
  0% {
    opacity: 0;
    filter: blur(90px);
    transform: scale(.3);
  }

  58% {
    opacity: .94;
  }

  100% {
    opacity: .85;
    filter: blur(26px);
    transform: scale(1);
  }
}

@keyframes loading-mark-arrive {
  0% {
    opacity: 0;
    transform: translateY(10px)scale(.65)rotate(-14deg);
  }

  68% {
    opacity: 1;
    transform: translateY(-3px)scale(1.08)rotate(4deg);
  }

  100% {
    opacity: 1;
    transform: translateY(0)scale(1)rotate(0);
  }
}

@keyframes title-character-pop {
  0% {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(20px)scale(.78);
  }

  62% {
    opacity: 1;
    filter: blur();
    transform: translateY(-5px)scale(1.07);
  }

  82% {
    transform: translateY(2px)scale(.985);
  }

  100% {
    opacity: 1;
    filter: blur();
    transform: translateY(0)scale(1);
  }
}

@keyframes copy-line-jump-land {
  0% {
    opacity: 0;
    filter: blur(2px);
    text-shadow: none;
    animation-timing-function: cubic-bezier(.18, .72, .24, 1);
    transform: translate3d(0, 10px, 0)scale(.985);
  }

  30% {
    opacity: 1;
    filter: blur();
    text-shadow: none;
    animation-timing-function: cubic-bezier(.38, 0, .68, .56);
    transform: translate3d(0, -7px, 0)scale(1.01);
  }

  62% {
    opacity: 1;
    filter: blur();
    text-shadow: 0 4px 8px #3f2f4a1f;
    animation-timing-function: cubic-bezier(.22, .75, .3, 1);
    transform: translate3d(0, 3px, 0)scaleX(1.008)scaleY(.97);
  }

  80% {
    text-shadow: 0 1px 3px #3f2f4a0d;
    transform: translate3d(0, -1px, 0)scale(1.002);
  }

  100% {
    opacity: 1;
    filter: blur();
    text-shadow: none;
    transform: translate3d(0, 0, 0)scale(1);
  }
}

@keyframes search-group-focus-in {
  0% {
    opacity: .16;
    filter: blur(18px);
    transform: scale(.985);
  }

  45% {
    opacity: .72;
  }

  100% {
    opacity: 1;
    filter: blur();
    transform: scale(1);
  }
}

@keyframes greeting-jump-in {
  0% {
    opacity: 0;
    transform: translateY(52px)scale(.9);
  }

  58% {
    opacity: 1;
    transform: translateY(-9px)scale(1.035);
  }

  76% {
    transform: translateY(4px)scale(.99);
  }

  90% {
    transform: translateY(-2px)scale(1.01);
  }

  100% {
    opacity: 1;
    transform: translateY(0)scale(1);
  }
}

.hero-aurora {
  animation: 1.35s cubic-bezier(.16, 1, .3, 1) both aurora-bloom;
}

.hero-aurora-purple {
  animation-delay: 90ms;
}

.visual-loading {
  animation: .575s cubic-bezier(.22, 1, .36, 1) .16s both loading-mark-arrive;
}

.hero-title-word, .hero-title-character {
  display: inline-block;
}

.hero-title-character {
  transform-origin: bottom;
  animation: .52s cubic-bezier(.2, .9, .24, 1.24) both title-character-pop;
}

.hero-copy span {
  backface-visibility: hidden;
  transform-origin: bottom;
  will-change: opacity, filter, transform;
  animation: .65s linear both copy-line-jump-land;
  display: block;
}

.hero-copy span:first-child {
  animation-delay: 1.15s;
}

.hero-copy span:last-child {
  animation-delay: 1.93s;
}

.hero-copy {
  overflow: hidden;
}

.hero-search-group {
  transform-origin: center;
  will-change: filter, opacity, transform;
  animation: .86s 2.63s both search-group-focus-in;
}

.spark {
  width: 26px;
  height: 26px;
  margin-bottom: 58px;
  animation: 2.2s ease-in-out infinite float;
  display: inline-block;
  position: relative;
}

.spark i {
  background: linear-gradient(135deg, #ff5d7f, #9728ff);
  border-radius: 8px 1px;
  width: 10px;
  height: 10px;
  position: absolute;
}

.spark i:first-child {
  top: 1px;
  left: 1px;
  transform: rotate(10deg);
}

.spark i:nth-child(2) {
  top: 1px;
  right: 1px;
  transform: rotate(90deg);
}

.spark i:nth-child(3) {
  bottom: 1px;
  left: 1px;
  transform: rotate(270deg);
}

.spark i:nth-child(4) {
  bottom: 1px;
  right: 1px;
  transform: rotate(180deg);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0)rotate(0);
  }

  50% {
    transform: translateY(-8px)rotate(8deg);
  }
}

.hero h1 {
  letter-spacing: -.055em;
  margin: 0;
  font-size: clamp(38px, 3.2vw, 58px);
  line-height: 1.2;
}

.mobile-title-break {
  display: none;
}

.hero-copy {
  letter-spacing: -.025em;
  margin: 27px 0 43px;
  font-size: 19px;
  line-height: 1.7;
}

.search-form {
  background: #fff;
  border-radius: 999px;
  align-items: center;
  width: min(100%, 760px);
  height: 64px;
  margin-inline: auto;
  padding: 0 11px 0 28px;
  display: flex;
  position: relative;
  box-shadow: 0 14px 44px #963c9b14;
}

.search-form input {
  color: #24242c;
  background: none;
  border: 0;
  outline: 0;
  flex: 1;
  min-width: 0;
  font-size: 16px;
  font-weight: 600;
}

.search-form input::placeholder {
  color: #0000;
  background: linear-gradient(90deg, #ff5e6d, #dd3aef, #7b38ff);
  -webkit-background-clip: text;
  background-clip: text;
}

.search-form button {
  cursor: pointer;
  background: linear-gradient(135deg, #df8bff, #a45cf2);
  border: 0;
  border-radius: 50%;
  flex: none;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  transition: transform .16s;
  display: grid;
}

.search-form button:hover {
  transform: scale(1.05);
}

.search-form svg {
  fill: none;
  stroke: #fff;
  stroke-width: 1.5px;
  width: 23px;
  height: 23px;
}

.ai-notice {
  color: #565660;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 19px 0 29px;
  font-size: 12px;
  display: flex;
}

.hero-mobile-scroll {
  display: none;
}

.suggestions {
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  display: flex;
}

.suggestions button {
  color: #4f5058;
  cursor: pointer;
  background: #ffffffed;
  border: 1px solid #d8d8de;
  border-radius: 999px;
  align-items: center;
  gap: 9px;
  height: 48px;
  padding: 0 21px;
  font-weight: 500;
  transition: border-color .2s, color .2s, box-shadow .2s;
  display: inline-flex;
}

.suggestions button:hover, .suggestions button:focus-visible {
  color: #24242c;
  border-color: #ba79ff;
  box-shadow: 0 0 0 1px #ba79ff2e;
}

.hello-pill {
  color: #09090b;
  background: #fff;
  border-radius: 999px;
  align-items: center;
  height: 58px;
  padding-right: 22px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  position: absolute;
  bottom: 60px;
  left: 50%;
  overflow: hidden;
  transform: translateX(-50%);
  box-shadow: 0 12px 35px #44295b1a;
}

.hello-pill .avatar {
  color: #fff;
  background: linear-gradient(150deg, #9a2eff, #5a00c8);
  border-radius: 30px 30px 2px;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-right: 13px;
  font-size: 20px;
  display: grid;
}

.hello-pill strong {
  color: #0000;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg, #f8481f 0%, #ff3cc7 50%, #7b01ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 700;
}

.scroll-cue {
  background: #fff;
  border-radius: 50%;
  place-items: center;
  width: 48px;
  height: 48px;
  display: grid;
  position: absolute;
  bottom: 62px;
  left: calc(50% + 150px);
  box-shadow: 0 12px 35px #44295b1a;
}

.scroll-cue:before {
  content: "";
  opacity: 0;
  background: linear-gradient(90deg, #fa7f62 0%, #ff77d8 50%, #a24dff 100%);
  border-radius: 50%;
  position: absolute;
  inset: 0;
  transform: scale(.36);
}

.scroll-button {
  z-index: 1;
  background: #ffffffd9;
  border: 1px solid #e5e5ea;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  display: inline-flex;
  position: relative;
  box-shadow: 0 12px 28px #13131814;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
}

.dashboard-greeting .hello-pill {
  transform-origin: bottom;
  animation: .7s cubic-bezier(.2, .9, .24, 1.18) 3.67s both greeting-jump-in;
}

.dashboard-greeting .scroll-cue {
  transform-origin: bottom;
  animation: .61s cubic-bezier(.2, .9, .24, 1.14) 3.74s both greeting-jump-in;
}

@keyframes scroll-cue-pop {
  0% {
    opacity: 0;
    transform: scale(.36);
  }

  58% {
    opacity: 1;
    transform: scale(1.08);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes scroll-arrow-bounce {
  0% {
    transform: translateY(0);
  }

  45% {
    transform: translateY(8px);
  }

  72% {
    transform: translateY(-2px);
  }

  100% {
    transform: translateY(0);
  }
}

.scroll-cue:hover:before, .scroll-cue:focus-visible:before {
  animation: .42s ease-out forwards scroll-cue-pop;
}

.scroll-cue:hover .scroll-arrow, .scroll-cue:focus-visible .scroll-arrow {
  animation: .58s ease-out scroll-arrow-bounce;
}

.user-dashboard {
  grid-template-columns: 190px 300px 1fr;
  gap: 28px;
  padding: 108px 0 80px;
  display: grid;
}

.record-card, .dashboard-links a, .summary-board {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 9px;
}

.record-card {
  padding: 18px 16px;
}

.record-row {
  color: #09090b;
  letter-spacing: -.56px;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  display: flex;
  position: relative;
}

.record-row > span {
  transition: padding-left .2s;
  position: relative;
}

.record-row > span:before {
  content: "";
  opacity: 0;
  border-top: 1.5px solid #24242c;
  border-right: 1.5px solid #24242c;
  width: 6px;
  height: 6px;
  transition: opacity .2s;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%)rotate(45deg);
}

.record-row + .record-row {
  border-top: 1px solid #f1f1f4;
}

.record-row b {
  letter-spacing: -.48px;
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 500;
  transition: color .2s, background-color .2s;
}

.record-row .done {
  color: #5068ff;
  background: #f0f3ff;
}

.record-row .empty {
  color: #ff6868;
  background: #fff0f0;
}

.record-row:hover > span {
  padding-left: 12px;
}

.record-row:hover > span:before {
  opacity: 1;
}

.record-row:hover .done {
  color: #fff;
  background: #333aff99;
}

.record-row:hover .empty {
  color: #fff;
  background: #f009;
}

.dashboard-links {
  gap: 12px;
  display: grid;
}

.dashboard-links a {
  isolation: isolate;
  justify-content: space-between;
  align-items: center;
  padding: 0 18px;
  transition: color .24s, box-shadow .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.dashboard-link-fill {
  z-index: 2;
  border-radius: inherit;
  clip-path: inset(0 100% 0 0);
  pointer-events: none;
  will-change: clip-path;
  background: linear-gradient(75deg, #151519 72.58%, #7b01ff 99.63%);
  justify-content: space-between;
  align-items: center;
  padding: 0 18px;
  transition: clip-path .42s;
  display: flex;
  position: absolute;
  inset: 0;
}

.dashboard-links span {
  z-index: 1;
  color: #717188;
  gap: 8px;
  font-size: 13px;
  line-height: 1.5;
  transition: color .18s;
  display: grid;
  position: relative;
}

.dashboard-links strong {
  color: #09090b;
  letter-spacing: -.6px;
  font-size: 15px;
  font-weight: 600;
  transition: color .18s;
}

.dashboard-links svg {
  z-index: 1;
  border: 1px solid #dedee4;
  border-radius: 50%;
  padding: 3px;
  transition: border-color .3s, color .3s, transform .3s;
  position: relative;
}

.dashboard-links a:hover, .dashboard-links a:focus-visible {
  color: #fff;
  box-shadow: 0 8px 18px #362b471a;
}

.dashboard-links a:hover .dashboard-link-fill, .dashboard-links a:focus-visible .dashboard-link-fill {
  clip-path: inset(0);
}

.dashboard-link-fill span, .dashboard-link-fill strong {
  color: #fff;
}

.dashboard-link-fill svg {
  color: #fff;
  border-color: #ffffff8c;
}

.dashboard-links a:hover .dashboard-link-fill svg, .dashboard-links a:focus-visible .dashboard-link-fill svg {
  transform: translateX(2px);
}

.summary-board {
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  padding: 22px 28px;
  display: grid;
}

.summary-board > a {
  text-align: center;
  gap: 8px;
  display: grid;
}

.summary-board > a strong {
  letter-spacing: -.04em;
  font-size: 44px;
  font-weight: 600;
  transition: top .2s;
  position: relative;
  top: 0;
}

.summary-board > a strong .rolling-number, .summary-board > a strong .rolling-number span {
  font-size: inherit;
}

.rolling-number {
  font-variant-numeric: tabular-nums;
  vertical-align: top;
  align-items: flex-start;
  height: 1em;
  line-height: 1;
  display: inline-flex;
  overflow: hidden;
}

.rolling-digit, .rolling-static-digit {
  text-align: center;
  width: .62em;
  height: 1em;
  line-height: 1;
  display: inline-block;
  overflow: hidden;
}

.rolling-prefix, .rolling-separator {
  flex: none;
  height: 1em;
  line-height: 1;
  display: inline-block;
}

.rolling-prefix {
  margin-right: -.02em;
}

.rolling-separator {
  text-align: center;
  width: .34em;
}

.rolling-strip {
  will-change: transform;
  flex-direction: column;
  line-height: 1;
  transition-property: transform;
  transition-timing-function: cubic-bezier(.16, 1, .3, 1);
  display: flex;
}

.rolling-value {
  text-align: center;
  flex: 0 0 1em;
  height: 1em;
  line-height: 1;
  display: block;
}

.rolling-suffix {
  height: 1em;
  margin-left: -.02em;
  line-height: 1;
  display: inline-block;
}

.summary-board > a strong:after {
  content: "";
  background: #ff2020;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  margin: 3px 0 0 2px;
  position: absolute;
}

.summary-board > a span {
  font-size: 14px;
  font-weight: 600;
}

.summary-board > a:hover strong, .summary-board > a:focus-visible strong {
  top: -4px;
}

.summary-board > a:hover .rolling-value, .summary-board > a:hover .rolling-static-digit, .summary-board > a:hover .rolling-suffix, .summary-board > a:focus-visible .rolling-value, .summary-board > a:focus-visible .rolling-static-digit, .summary-board > a:focus-visible .rolling-suffix {
  color: #0000;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(131deg, #f8481f .42%, #ff3cc7 47.5%, #7b01ff 94.58%);
  -webkit-background-clip: text;
  background-clip: text;
}

.summary-board > a:hover > span, .summary-board > a:focus-visible > span {
  text-underline-offset: 2px;
  text-decoration: underline;
}

.summary-tags {
  grid-column: 1 / -1;
  justify-content: center;
  gap: 7px;
  margin-top: 23px;
  display: flex;
}

.summary-tags span, .job-tags span {
  letter-spacing: -.48px;
  border-radius: 3px;
  align-items: center;
  min-height: 27px;
  padding: 0 10px;
  font-size: 12px;
  display: inline-flex;
}

.summary-tags span:nth-child(4n+1), .job-tags .category {
  background: #dcf6ff;
}

.summary-tags span:nth-child(4n+2) {
  background: #dce8ff;
}

.summary-tags span:nth-child(4n+3) {
  background: #e2e9f7;
}

.summary-tags span:nth-child(4n), .job-tags .skill {
  background: #e3f8ce;
}

.job-section {
  background: #fff;
  padding: 44px 0 82px;
}

.recommend-section {
  padding-top: 36px;
}

.job-groups {
  background: #f8f8fc;
}

.job-groups > .job-section {
  background: none;
  padding: 100px 0;
}

.section-heading-row {
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
  display: flex;
}

.section-heading {
  align-items: center;
  gap: 13px;
  display: flex;
}

.section-heading > span {
  font-size: 20px;
  font-weight: 750;
  display: none;
}

.section-heading h2 {
  letter-spacing: normal;
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.section-heading p {
  color: #464654;
  margin: 0 0 0 6px;
  font-size: 16px;
}

.section-select {
  cursor: pointer;
  background: #f3f3f8;
  border: 0;
  align-items: center;
  gap: 15px;
  min-height: 40px;
  padding: 0 12px;
  font-weight: 700;
  transition: background-color .2s, color .2s;
  display: inline-flex;
}

.section-select:hover, .section-select:focus-visible {
  color: #6200c9;
  background: #e9e2f2;
}

.recommend-select {
  z-index: 20;
  flex: none;
  width: max-content;
  min-width: 112px;
  max-width: 190px;
  display: inline-block;
  position: relative;
}

.recommend-select .recommend-select-trigger {
  color: #09090b;
  background: #f1f1f9;
  border: 0;
  border-radius: 4px;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  width: 100%;
  height: 38px;
  min-height: 38px;
  padding: 4px 0 4px 10px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
}

.recommend-select .recommend-select-trigger > span:first-child {
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  overflow: hidden;
}

.recommend-select .recommend-select-trigger:hover, .recommend-select .recommend-select-trigger:focus-visible {
  color: #09090b;
  background: #f1f1f9;
}

.recommend-select .recommend-select-trigger:focus-visible {
  outline-offset: 2px;
  outline: 2px solid #7b01ff4d;
}

.recommend-select-arrow {
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  transition: transform .18s;
  display: flex;
}

.recommend-select-arrow img {
  width: 16px;
  height: 16px;
}

.recommend-select.is-open .recommend-select-arrow {
  transform: rotate(180deg);
}

.recommend-select-panel {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  background: #fff;
  border-radius: 4px;
  width: max-content;
  min-width: 100%;
  transition: opacity .1s, transform .1s, visibility .1s;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  overflow: hidden;
  transform: translateY(-8px);
  box-shadow: 0 10px 10px #3f3f5329;
}

.mobile-select-backdrop, .mobile-select-header, .mobile-select-footer {
  display: none;
}

.recommend-select.is-open .recommend-select-panel {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
}

.recommend-select-options {
  scrollbar-color: #c9c9d1 transparent;
  scrollbar-width: thin;
  max-height: 250px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-y: auto;
}

.recommend-select-options::-webkit-scrollbar {
  width: 6px;
}

.recommend-select-options::-webkit-scrollbar-thumb {
  background: #c9c9d1;
  border-radius: 999px;
}

.recommend-select-option {
  color: #717188;
  cursor: pointer;
  text-align: left;
  white-space: nowrap;
  background: #fff;
  border: 0;
  align-items: center;
  width: 100%;
  height: 40px;
  padding: 0 6px 0 8px;
  font-size: 14px;
  font-weight: 500;
  transition: background-color .15s;
  display: flex;
}

.recommend-select-option:hover, .recommend-select-option:focus-visible {
  background: #f0f0f9;
  outline: none;
}

.recommend-select-option.is-selected {
  color: #7b01ff;
  background: #f0f0f9;
  justify-content: space-between;
  font-weight: 600;
}

.recommend-select-option.is-selected:after {
  content: "";
  background: url("/images/common/ico-check-purple.svg") 0 0 / 100% no-repeat;
  width: 12px;
  height: 9px;
  margin-left: 20px;
}

.job-groups .section-heading > span {
  display: inline;
}

.job-groups .section-select {
  background: #fff;
}

.slider-tools {
  align-items: center;
  gap: 9px;
  display: flex;
}

.slider-tools a {
  margin-right: 16px;
  font-size: 13px;
  font-weight: 650;
}

.slider-tools a:hover, .slider-tools a:focus-visible {
  text-underline-offset: 3px;
  text-decoration: underline;
}

.slider-tools button {
  color: #8b8b93;
  cursor: pointer;
  background: none;
  border: 1px solid #e0e0e5;
  border-radius: 50%;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0 0 2px;
  font-size: 24px;
  transition: border-color .2s, background-color .2s, color .2s, transform .2s;
  display: grid;
}

.slider-tools button:hover, .slider-tools button:focus-visible {
  color: #fff;
  background: #60606a;
  border-color: #60606a;
  transform: scale(1.04);
}

.job-list {
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  gap: 22px;
  display: grid;
  overflow-x: auto;
}

.job-list::-webkit-scrollbar {
  display: none;
}

.service-card-list::-webkit-scrollbar {
  display: none;
}

.family-card-list::-webkit-scrollbar {
  display: none;
}

.job-list.single-row {
  grid-auto-columns: calc(25% - 16.5px);
  grid-auto-flow: column;
}

.job-list.double-row {
  grid-template-rows: repeat(2, 220px);
  grid-auto-columns: calc(25% - 16.5px);
  grid-auto-flow: column;
}

.job-card {
  cursor: pointer;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #dedee5;
  border-radius: 7px;
  min-width: 0;
  padding: 20px;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  position: relative;
}

.job-card:before {
  z-index: 0;
  content: "";
  opacity: 0;
  pointer-events: none;
  -webkit-mask-composite: xor;
  background: linear-gradient(135deg, #ff7157 0%, #ff3cc7 28%, #0000 42% 58%, #7b01ff 82%, #503aff 100%);
  border-radius: 9px;
  padding: 2px;
  transition: opacity .3s;
  position: absolute;
  inset: -2px;
  -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  -webkit-mask-position: 0 0, 0 0;
  -webkit-mask-size: auto, auto;
  -webkit-mask-repeat: repeat, repeat;
  -webkit-mask-clip: content-box, border-box;
  -webkit-mask-origin: content-box, border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-mask-source-type: auto, auto;
  mask-mode: match-source, match-source;
}

.job-card > * {
  z-index: 1;
  position: relative;
}

.job-card:hover, .job-card:focus-within {
  border-color: #0000;
  transform: translateY(-2px);
  box-shadow: 0 5px 10px #362b471f;
}

.job-card:hover:before, .job-card:focus-within:before {
  opacity: 1;
}

.job-card:not(.compact) {
  background: #fcfaff;
  min-height: 270px;
}

.company-row {
  grid-template-columns: 100px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 13px;
  display: grid;
  position: relative;
}

.company-logo {
  background: #fff;
  border: 1px solid #ececf0;
  place-items: center;
  height: 60px;
  padding: 9px;
  display: grid;
}

.company-logo img {
  object-fit: contain;
  width: 100%;
  height: auto;
  max-height: 32px;
}

.company-copy {
  gap: 7px;
  min-width: 0;
  display: grid;
}

.company-copy strong {
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #09090b;
  font-size: 15px;
  font-weight: 600;
  overflow: hidden;
}

.company-copy span {
  color: #717188;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  line-height: 1.2;
  overflow: hidden;
}

.bookmark {
  cursor: pointer;
  background: url("/images/common/ico-bookmark-add.png") center / 24px no-repeat;
  border: 0;
  align-self: start;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  transition: background-image .2s;
  display: grid;
}

.bookmark:hover, .bookmark:focus-visible {
  background-image: url("/images/common/ico-bookmark-add-purple.png");
}

.bookmark.active {
  background-image: url("/images/common/ico-bookmark-delete.png");
}

.bookmark.active:hover, .bookmark.active:focus-visible {
  background-image: url("/images/common/ico-bookmark-delete-purple.png");
}

.job-card h3 {
  color: #09090b;
  letter-spacing: normal;
  min-height: 45px;
  margin: 24px 0 5px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  overflow: hidden;
}

.job-role {
  color: #09090b;
  margin: 0;
  font-size: 14px;
}

.job-card:not(.compact) h3 {
  white-space: nowrap;
  text-overflow: ellipsis;
  min-height: 0;
  margin: 24px 0 0;
}

.job-card:not(.compact) .job-role {
  margin-top: 8px;
}

.match-row {
  color: #464654;
  white-space: nowrap;
  gap: 4px;
  margin: 24px 0 16px;
  font-size: 13px;
  display: grid;
}

.match-label {
  justify-self: end;
  align-items: baseline;
  gap: 5px;
  height: 15px;
  line-height: 1;
  display: inline-flex;
}

.match-value {
  align-items: baseline;
  gap: 0;
  font-size: 13px;
  line-height: 1;
  transition: font-size .24s cubic-bezier(.2, .8, .2, 1);
  display: inline-flex;
}

.match-unit {
  color: #464654;
  font-size: inherit;
  font-weight: 600;
}

.job-card:hover .match-row strong, .job-card:focus-within .match-row strong {
  color: var(--purple);
}

.job-card:hover .match-value, .job-card:focus-within .match-value {
  font-size: 18px;
}

.match-row strong {
  color: #09090b;
  font-size: inherit;
  transition: color .2s;
  display: inline-block;
}

.match-line {
  background: #e9e6ed;
  border-radius: 999px;
  width: 100%;
  height: 4px;
  position: relative;
  overflow: hidden;
}

.match-line i {
  transform-origin: 0;
  will-change: transform;
  background: linear-gradient(90deg, #7e00ed, #d100ff);
  position: absolute;
  inset: 0 auto 0 0;
  transform: scaleX(1);
}

@keyframes match-line-refill {
  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}

.job-card:hover .match-line i, .job-card:focus-within .match-line i {
  animation: .72s cubic-bezier(.16, 1, .3, 1) both match-line-refill;
}

.job-footer {
  justify-content: space-between;
  margin-top: 24px;
  display: flex;
}

.job-tags {
  flex-wrap: wrap;
  gap: 6px;
  display: flex;
}

.job-tags span {
  white-space: nowrap;
  height: 28px;
}

.job-tags .source {
  color: #09090b;
  background: #fff;
  border: 1px solid #dbdbe1;
  border-radius: 4px;
  padding: 8px 10px 8px 26px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  display: inline-block;
  position: relative;
}

.job-tags .source:before {
  content: "";
  background: url("/images/common/ico-thumbs-up.svg") 0 0 / 100% no-repeat;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 8px;
  left: 10px;
}

.job-tags .category, .job-tags .skill {
  color: #151519;
  letter-spacing: -.48px;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  display: inline-flex;
}

.job-tags .category.blue {
  background: #d4f2ff;
  border: 1px solid #b9e0f1;
}

.job-tags .category.indigo {
  background: #dee8ff;
  border: 1px solid #c5d3f3;
}

.job-tags .skill {
  background: #e5fbce;
  border: 1px solid #d0e6ba;
}

.job-date {
  flex-shrink: 0;
}

.job-date-item {
  color: #7b00ff;
  white-space: nowrap;
  background: #f7efff;
  align-items: center;
  gap: 5px;
  margin-top: 3px;
  padding: 4px 6px;
  font-size: 12px;
  display: flex;
}

.job-card.compact {
  flex-direction: column;
  align-self: stretch;
  height: 100%;
  min-height: 0;
  padding: 20px;
  display: flex;
  overflow: hidden;
}

.job-card.compact .company-row {
  grid-template-columns: 120px minmax(0, 1fr) 30px;
  gap: 16px;
}

.job-card.compact .company-logo {
  height: 60px;
}

.job-card.compact h3 {
  white-space: nowrap;
  text-overflow: ellipsis;
  min-height: auto;
  margin: 24px 0 0;
}

.job-card.compact .job-role {
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 8px;
  overflow: hidden;
}

.job-card.compact .job-footer {
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.job-card.compact .job-tags {
  flex-wrap: nowrap;
  flex: auto;
  min-width: 0;
  overflow: hidden;
}

.job-card.compact .job-tags .category {
  text-overflow: ellipsis;
  max-width: 112px;
  overflow: hidden;
}

.job-card.compact .job-tags .skill {
  text-overflow: ellipsis;
  flex: auto;
  min-width: 0;
  line-height: 28px;
  display: block;
  overflow: hidden;
}

.job-detail-overlay {
  z-index: 500;
  color: #09090b;
  overscroll-behavior: contain;
  background: #fff;
  animation: .52s cubic-bezier(.16, 1, .3, 1) both job-detail-enter;
  position: fixed;
  inset: 0;
  overflow: hidden auto;
}

.job-detail-overlay.is-closing {
  pointer-events: none;
  animation: .42s cubic-bezier(.65, 0, .35, 1) both job-detail-leave;
}

@keyframes job-detail-enter {
  from {
    opacity: .65;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes job-detail-leave {
  from {
    opacity: 1;
    transform: none;
  }

  to {
    opacity: .65;
    transform: translate3d(0, 100%, 0);
  }
}

.job-detail-shell {
  width: min(100% - 72px, 1396px);
  min-height: 100%;
  margin: 0 auto;
  padding: 16px 0 80px;
}

.job-detail-header {
  grid-template-columns: minmax(0, 1fr) 324px;
  align-items: start;
  gap: 32px;
  min-height: 116px;
  display: grid;
}

.job-detail-identity {
  align-items: center;
  gap: 20px;
  min-width: 0;
  display: flex;
}

.job-detail-logo {
  background: #fff;
  border: 1px solid #efeff2;
  flex: 0 0 120px;
  place-items: center;
  width: 120px;
  height: 60px;
  padding: 7px;
  display: grid;
}

.job-detail-logo img {
  object-fit: contain;
  max-width: 100%;
  max-height: 38px;
}

.job-detail-title {
  min-width: 0;
}

.job-detail-title strong {
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 600;
  display: block;
}

.job-detail-title h1 {
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  overflow: hidden;
}

.job-detail-date {
  color: #7b00ff;
  white-space: nowrap;
  background: #f7efff;
  flex: none;
  align-self: flex-end;
  margin-bottom: 8px;
  padding: 4px 6px;
  font-size: 12px;
}

.job-detail-actions {
  justify-content: flex-end;
  align-items: center;
  gap: 3px;
  padding-top: 12px;
  display: flex;
}

.job-detail-actions button {
  color: #3d3d49;
  cursor: pointer;
  height: 36px;
  font: inherit;
  background: #fff;
  border: 1px solid #efeff2;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  font-size: 13px;
  transition: border-color .18s, color .18s, background-color .18s;
  display: inline-flex;
}

.job-detail-actions button:not(.error-report):not(.job-detail-close) {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
  width: 36px;
  padding: 0;
}

.detail-action-share {
  background-image: url("https://code-heim.com/images/common/ico-share.png") !important;
}

.detail-action-bookmark {
  background-image: url("https://code-heim.com/images/common/ico-bookmark.png") !important;
}

.detail-action-newtab {
  background-image: url("https://code-heim.com/images/common/ico-newtab.png") !important;
}

.job-detail-actions button:hover, .job-detail-actions button:focus-visible, .job-detail-actions button.is-active {
  color: #7b00ff;
  border-color: #8a15ff;
}

.job-detail-actions .error-report {
  background: #fff url("https://code-heim.com/images/common/ico-alarm.png") 8px / 24px no-repeat;
  width: 97px;
  padding: 0 10px 0 36px;
  font-size: 14px;
  font-weight: 500;
}

.job-detail-actions .job-detail-close {
  z-index: 2;
  background: none;
  border: 0;
  width: 28px;
  height: 28px;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 32px;
  left: calc(100vw - 60px);
  right: auto;
}

.job-detail-close span:before, .job-detail-close span:after {
  content: "";
  background: #151519;
  width: 20px;
  height: 2px;
  position: absolute;
  top: 13px;
  left: 4px;
}

.job-detail-close span:before {
  transform: rotate(45deg);
}

.job-detail-close span:after {
  transform: rotate(-45deg);
}

.job-detail-main-grid {
  grid-template-columns: minmax(0, 1fr) 325px;
  align-items: start;
  gap: 32px;
  display: grid;
}

.job-detail-content {
  min-width: 0;
}

.job-detail-tabs {
  border-top: 1px solid #dddde5;
  border-bottom: 1px solid #dddde5;
  grid-template-columns: repeat(6, 1fr);
  height: 54px;
  display: grid;
}

.job-detail-tabs button {
  color: #101014;
  cursor: pointer;
  font: inherit;
  background: none;
  border: 0;
  font-size: 15px;
  font-weight: 600;
  position: relative;
}

.job-detail-tabs button:before, .job-detail-tabs button:after {
  content: "";
  opacity: 0;
  background: #8715ff;
  height: 3px;
  transition: opacity .18s, transform .26s cubic-bezier(.16, 1, .3, 1);
  position: absolute;
  left: 0;
  right: 0;
  transform: scaleX(.25);
}

.job-detail-tabs button:before {
  top: -1px;
}

.job-detail-tabs button:after {
  bottom: -1px;
}

.job-detail-tabs button.is-active:before, .job-detail-tabs button.is-active:after {
  opacity: 1;
  transform: scaleX(1);
}

.job-detail-content section h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.job-ai-summary {
  padding-top: 46px;
}

.job-ai-summary > div {
  text-align: center;
  background: #f1f1f4;
  place-items: center;
  min-height: 500px;
  margin-top: 60px;
  padding: 48px;
  font-size: 14px;
  line-height: 1.8;
  display: grid;
}

.job-ai-summary > div p {
  max-width: 680px;
  margin: 0;
  font-size: 16px;
}

.job-ai-summary > div small {
  color: #717188;
  margin-top: 16px;
}

.job-detail-error {
  color: #d93025;
}

.job-detail-empty {
  color: #717188;
  text-align: center;
  background: #f7f7fa;
  border-radius: 8px;
  width: 100%;
  margin: 24px 0 0;
  padding: 28px;
  font-size: 14px;
  line-height: 1.7;
}

.job-company-detail {
  padding: 80px 0 20px;
}

.job-company-detail h3 {
  align-items: center;
  gap: 7px;
  margin: 62px 0 20px;
  font-size: 18px;
  display: flex;
}

.job-company-detail h3 span {
  border: 5px solid #9d35ff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
}

.job-company-detail dl {
  gap: 18px;
  margin: 0;
  display: grid;
}

.job-company-detail dl div {
  grid-template-columns: 58px 1fr;
  gap: 0;
  font-size: 14px;
  line-height: 1.65;
  display: grid;
}

.job-company-detail dt {
  color: #717188;
}

.job-company-detail dd {
  margin: 0;
  font-weight: 600;
}

.job-company-detail dd a {
  text-underline-offset: 3px;
  text-decoration: underline;
}

.company-stat-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 32px;
  margin-top: 60px;
  display: grid;
}

.company-stat-card {
  text-align: center;
  background: #fff;
  border: 1px solid #e7e7f2;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 179px;
  padding: 100px 20px 32px;
  display: flex;
  position: relative;
}

.company-stat-card:before {
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 58px;
  height: 48px;
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.company-stat-card.stat-icon-1:before {
  background-image: url("https://code-heim.com/images/pages/ico-info1.png");
}

.company-stat-card.stat-icon-2:before {
  background-image: url("https://code-heim.com/images/pages/ico-info2.png");
}

.company-stat-card.stat-icon-3:before {
  background-image: url("https://code-heim.com/images/pages/ico-info3.png");
}

.company-stat-card.stat-icon-4:before {
  background-image: url("https://code-heim.com/images/pages/ico-info4.png");
}

.company-stat-card.stat-icon-5:before {
  background-image: url("https://code-heim.com/images/pages/ico-info5.png");
}

.company-stat-card span {
  color: #464654;
  font-size: 14px;
}

.company-stat-card strong {
  color: #09090b;
  white-space: nowrap;
  margin-top: 7px;
  font-size: 18px;
  font-weight: 700;
}

.job-detail-overlay.motion-ready .detail-scroll-reveal {
  opacity: 0;
  filter: blur(8px);
  will-change: opacity, filter, transform;
  transition: opacity .68s, filter .72s, transform .88s cubic-bezier(.16, 1, .3, 1);
  transform: translate3d(0, 28px, 0)scale(.985);
}

.job-detail-overlay.motion-ready .detail-scroll-reveal.is-revealed {
  opacity: 1;
  filter: blur();
  transform: translate3d(0, 0, 0)scale(1);
}

.company-stat-grid .detail-scroll-reveal:nth-child(2), .spec-donut-grid .detail-scroll-reveal:nth-child(2), .experience-chart-grid .detail-scroll-reveal:nth-child(2) {
  transition-delay: 80ms;
}

.company-stat-grid .detail-scroll-reveal:nth-child(3), .spec-donut-grid .detail-scroll-reveal:nth-child(3), .experience-chart-grid .detail-scroll-reveal:nth-child(3) {
  transition-delay: .16s;
}

.company-stat-grid .detail-scroll-reveal:nth-child(4), .spec-donut-grid .detail-scroll-reveal:nth-child(4), .experience-chart-grid .detail-scroll-reveal:nth-child(4) {
  transition-delay: .24s;
}

.company-stat-grid .detail-scroll-reveal:nth-child(5) {
  transition-delay: .32s;
}

.job-detail-overlay.motion-ready .company-stat-card:before {
  opacity: 0;
  transition: opacity .52s .18s, transform .72s cubic-bezier(.16, 1, .3, 1) .18s;
  transform: translateX(-50%)translateY(9px)scale(.9);
}

.job-detail-overlay.motion-ready .company-stat-card.is-revealed:before {
  opacity: 1;
  transform: translateX(-50%)translateY(0)scale(1);
}

.applicant-specs {
  margin-top: 60px;
}

.applicant-specs > h3 {
  align-items: center;
  gap: 7px;
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  display: flex;
}

.applicant-specs > h3 > span {
  border: 5px solid #9d35ff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
}

.job-detail-overlay.motion-ready .applicant-specs > h3 > span {
  transition: transform .64s cubic-bezier(.34, 1.56, .64, 1) .14s;
  transform: scale(.35);
}

.job-detail-overlay.motion-ready .applicant-specs > h3.is-revealed > span {
  transform: scale(1);
}

.spec-donut-grid, .experience-chart-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3.2%;
  display: grid;
}

.spec-donut-grid {
  margin-top: 18px;
}

.spec-donut-card {
  background: #fff;
  border: 1px solid #efeff2;
  min-width: 0;
  min-height: 408px;
  padding: 20px 12px;
}

.spec-donut {
  width: 188px;
  height: 188px;
  margin: 0 auto;
}

.spec-donut canvas {
  width: 188px !important;
  height: 188px !important;
}

.spec-legend {
  color: #464654;
  flex-wrap: wrap;
  place-content: flex-start center;
  gap: 7px 10px;
  min-height: 48px;
  margin-top: 16px;
  font-size: 11px;
  display: flex;
}

.spec-legend span {
  white-space: nowrap;
  align-items: center;
  gap: 5px;
  display: inline-flex;
}

.spec-legend i {
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

.legend-color-1 {
  background: #5418fa;
}

.legend-color-2 {
  background: #5f67ff;
}

.legend-color-3 {
  background: #7490ff;
}

.legend-color-4 {
  background: #6cb8ff;
}

.legend-color-5 {
  background: #71d8ed;
}

.spec-stat-list {
  gap: 8px;
  margin-top: 10px;
  display: grid;
}

.spec-stat-row {
  color: #25252d;
  grid-template-columns: 30px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  display: grid;
}

.spec-stat-row > i {
  background: #eeeef2;
  height: 4px;
  display: block;
  position: relative;
}

.spec-stat-row > i > b {
  background: #717188;
  height: 100%;
  display: block;
}

.spec-stat-row > strong {
  color: #464654;
  text-align: right;
  font-size: 11px;
}

.spec-stat-row.average > i > b {
  background: #5377ff;
}

.spec-stat-row.average > strong {
  color: #5377ff;
}

.spec-stat-row.mine > i > b {
  background: #ff5c66;
}

.spec-stat-row.mine > strong {
  color: #ff5c66;
}

.job-detail-overlay.motion-ready .spec-donut-card .spec-stat-row > i > b {
  transform-origin: 0;
  transform: scaleX(0);
}

.job-detail-overlay.motion-ready .spec-donut-card.is-revealed .spec-stat-row > i > b {
  transition: transform .82s cubic-bezier(.16, 1, .3, 1) .36s;
  transform: scaleX(1);
}

.job-detail-overlay.motion-ready .spec-donut-card.is-revealed .spec-stat-row:nth-child(2) > i > b {
  transition-delay: .41s;
}

.job-detail-overlay.motion-ready .spec-donut-card.is-revealed .spec-stat-row:nth-child(3) > i > b {
  transition-delay: .46s;
}

.job-detail-overlay.motion-ready .spec-donut-card.is-revealed .spec-stat-row:nth-child(4) > i > b {
  transition-delay: .51s;
}

.job-detail-overlay.motion-ready .spec-donut-card.is-revealed .spec-stat-row:nth-child(5) > i > b {
  transition-delay: .56s;
}

.experience-chart-grid {
  margin-top: 32px;
}

.experience-chart-card {
  background: #fff;
  border: 1px solid #efeff2;
  height: 322px;
  padding: 20px;
}

.experience-chart-card h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.experience-bars {
  height: 183px;
  margin-top: 20px;
  padding: 0;
}

.experience-bars canvas {
  width: 100% !important;
  height: 183px !important;
}

.experience-summary {
  background: #f7f8fc;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  margin-top: 20px;
  padding: 0 10px;
  font-size: 12px;
  display: flex;
}

.experience-summary strong {
  color: #5377ff;
  font-size: 28px;
  font-weight: 600;
}

.job-detail-overlay.motion-ready .experience-chart-card .experience-summary {
  opacity: 0;
  transform: translateY(8px);
}

.job-detail-overlay.motion-ready .experience-chart-card.is-revealed .experience-summary {
  opacity: 1;
  transition: opacity .56s .48s, transform .72s cubic-bezier(.16, 1, .3, 1) .48s;
  transform: translateY(0);
}

.education-spec-table {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 60px;
  display: grid;
  overflow: hidden;
}

.education-spec-column h4 {
  color: #fff;
  background: #464654;
  justify-content: center;
  align-items: center;
  height: 40px;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  display: flex;
}

.education-spec-column:first-child h4 {
  border-right: 1px solid #25252d;
  border-radius: 4px 0 0 4px;
}

.education-spec-column:last-child h4 {
  border-radius: 0 4px 4px 0;
}

.education-spec-column ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.education-spec-column li {
  color: #464654;
  border-bottom: 1px solid #e7e7f2;
  grid-template-columns: minmax(0, 1fr) 80px;
  align-items: center;
  height: 40px;
  font-size: 14px;
  display: grid;
}

.education-spec-column li > span {
  white-space: nowrap;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding-left: 30px;
  display: flex;
}

.education-spec-column li > span b {
  color: #25252d;
  flex: 0 0 8px;
  width: 8px;
  font-weight: 600;
}

.education-spec-column li > strong {
  color: #486ff9;
  background: #fbfbfc;
  justify-content: center;
  align-items: center;
  height: 39px;
  font-weight: 600;
  display: flex;
}

.education-spec-column:first-child li > strong {
  border-right: 1px solid #dedee9;
}

.job-detail-overlay.motion-ready .education-spec-table .education-spec-column h4, .job-detail-overlay.motion-ready .education-spec-table .education-spec-column li {
  opacity: 0;
  transform: translateY(10px);
}

.job-detail-overlay.motion-ready .education-spec-table.is-revealed .education-spec-column h4, .job-detail-overlay.motion-ready .education-spec-table.is-revealed .education-spec-column li {
  opacity: 1;
  transition: opacity .48s, transform .62s cubic-bezier(.16, 1, .3, 1);
  transform: translateY(0);
}

.job-detail-overlay.motion-ready .education-spec-table.is-revealed .education-spec-column h4 {
  transition-delay: .18s;
}

.job-detail-overlay.motion-ready .education-spec-table.is-revealed .education-spec-column li:first-child {
  transition-delay: .25s;
}

.job-detail-overlay.motion-ready .education-spec-table.is-revealed .education-spec-column li:nth-child(2) {
  transition-delay: .3s;
}

.job-detail-overlay.motion-ready .education-spec-table.is-revealed .education-spec-column li:nth-child(3) {
  transition-delay: .35s;
}

.job-detail-overlay.motion-ready .education-spec-table.is-revealed .education-spec-column li:nth-child(4) {
  transition-delay: .4s;
}

.job-detail-overlay.motion-ready .education-spec-table.is-revealed .education-spec-column li:nth-child(5) {
  transition-delay: .45s;
}

.company-trends {
  padding: 60px 0 20px;
}

.job-detail-content .company-trends > h2 {
  font-weight: 600;
}

.company-trend-block {
  margin-top: 60px;
}

.company-trend-block h3 {
  align-items: center;
  gap: 7px;
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  display: flex;
}

.company-trend-block h3 span {
  border: 5px solid #9d35ff;
  border-radius: 50%;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
}

.company-trend-block p {
  color: #464654;
  margin: 16px 0 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

.job-detail-overlay.motion-ready .company-trend-block h3 span {
  transition: transform .64s cubic-bezier(.34, 1.56, .64, 1) .16s;
  transform: scale(.35);
}

.job-detail-overlay.motion-ready .company-trend-block.is-revealed h3 span {
  transform: scale(1);
}

.company-news-slider {
  width: 100%;
  margin-top: 60px;
  padding: 2px 34px 30px;
  position: relative;
}

.company-news-track {
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  grid-auto-columns: calc(33.3333% - 16px);
  grid-auto-flow: column;
  column-gap: 24px;
  padding: 0 5px 0 2px;
  display: grid;
  overflow-x: auto;
}

.company-news-track::-webkit-scrollbar {
  display: none;
}

.job-detail-overlay.motion-ready .company-news-slider .company-news-card {
  opacity: 0;
  filter: blur(7px);
}

.job-detail-overlay.motion-ready .company-news-slider.is-revealed .company-news-card {
  opacity: 1;
  filter: blur();
  transition: opacity .62s .18s, filter .72s .18s, border-color .2s, box-shadow .26s, transform .36s cubic-bezier(.16, 1, .3, 1);
}

.job-detail-overlay.motion-ready .company-news-slider.is-revealed .company-news-card:nth-child(2) {
  transition-delay: .26s, .26s, 0s, 0s, 0s;
}

.job-detail-overlay.motion-ready .company-news-slider.is-revealed .company-news-card:nth-child(3) {
  transition-delay: .34s, .34s, 0s, 0s, 0s;
}

.job-detail-overlay.motion-ready .company-news-slider.is-revealed .company-news-card:nth-child(4) {
  transition-delay: .42s, .42s, 0s, 0s, 0s;
}

.company-news-card {
  color: #09090b;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #e7e7f2;
  border-radius: 8px;
  min-width: 0;
  min-height: 167px;
  padding: 20px;
  text-decoration: none;
  transition: border-color .2s, box-shadow .26s, transform .36s cubic-bezier(.16, 1, .3, 1);
  display: block;
}

.company-news-card:hover, .company-news-card:focus-visible {
  border-color: #aa5cff;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px #362b471f;
}

.company-news-source {
  color: #464654;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  display: flex;
}

.company-news-source img {
  object-fit: contain;
  width: 16px;
  height: 16px;
}

.company-news-card h4 {
  color: #09090b;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 32px 0 0;
  font-size: 16px;
  font-weight: 600;
  overflow: hidden;
}

.company-news-card > p {
  color: #464654;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 16px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
}

.company-news-prev, .company-news-next {
  z-index: 2;
  cursor: pointer;
  background: #fff;
  border: 1px solid #e7e7f2;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  padding: 0;
  transition: background-color .2s, border-color .2s, opacity .2s;
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.company-news-prev {
  left: 0;
}

.company-news-next {
  right: 0;
}

.company-news-prev:after, .company-news-next:after {
  content: "";
  border-top: 1.5px solid #25252d;
  border-right: 1.5px solid #25252d;
  width: 8px;
  height: 8px;
}

.company-news-prev:after {
  margin-left: 2px;
  transform: rotate(-135deg);
}

.company-news-next:after {
  margin-right: 2px;
  transform: rotate(45deg);
}

.company-news-prev:hover:not(:disabled), .company-news-next:hover:not(:disabled) {
  background: #464654;
  border-color: #464654;
}

.company-news-prev:hover:not(:disabled):after, .company-news-next:hover:not(:disabled):after {
  border-color: #fff;
}

.company-news-prev:disabled, .company-news-next:disabled {
  opacity: .3;
  cursor: default;
}

.company-report-section {
  margin-top: 60px;
}

.company-report-heading {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 40px;
  display: flex;
}

.company-report-heading h3 {
  align-items: center;
  gap: 7px;
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  display: flex;
}

.company-report-heading h3 > span {
  border: 5px solid #9d35ff;
  border-radius: 50%;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
}

.company-report-plan {
  color: #fff;
  cursor: pointer;
  width: 311px;
  height: 40px;
  font: inherit;
  white-space: nowrap;
  background: #6900da;
  border: 0;
  border-radius: 4px;
  flex: 0 0 311px;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  transition: background-color .2s, transform .26s cubic-bezier(.16, 1, .3, 1);
  display: flex;
}

.company-report-plan:hover, .company-report-plan:focus-visible {
  background: #7b00ff;
  transform: translateY(-2px);
}

.company-report-plan span, .company-report-plan strong {
  font-size: 14px;
  line-height: 14px;
}

.company-report-plan span {
  font-weight: 400;
}

.company-report-plan strong {
  align-items: center;
  margin-left: 13px;
  font-weight: 700;
  display: inline-flex;
}

.company-report-plan strong:before {
  content: "";
  background: #ffffff73;
  width: 1px;
  height: 14px;
  margin-right: 13px;
}

.company-report-list {
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
  display: flex;
}

.company-report-item {
  background: #fff;
  border: 1px solid #e7e7f2;
  border-radius: 4px;
  outline: none;
  align-items: center;
  gap: 20px;
  width: 100%;
  height: 74px;
  padding: 6px 20px;
  transition: border-color .2s, box-shadow .26s, transform .36s cubic-bezier(.16, 1, .3, 1);
  display: flex;
}

.company-report-item:hover, .company-report-item:focus-visible {
  border-color: #aa5cff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px #362b4714;
}

.company-report-rank {
  color: #151519;
  flex: 0 0 38px;
  justify-content: center;
  align-items: center;
  width: 38px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
}

.company-report-main {
  flex: 1;
  align-items: center;
  gap: 10px;
  min-width: 0;
  display: flex;
}

.company-report-logo {
  background: #fff;
  border-radius: 4px;
  flex: 0 0 120px;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 60px;
  padding: 10px;
  display: flex;
}

.company-report-logo img {
  object-fit: contain;
  width: 100px;
  height: 40px;
}

.company-report-text {
  color: #151519;
  border-left: 1px solid #dedee9;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding-left: 12px;
  line-height: 1.5;
  display: flex;
}

.company-report-text strong, .company-report-text span {
  white-space: nowrap;
  font-size: 15px;
}

.company-report-text strong {
  font-weight: 600;
}

.company-report-badge {
  color: #09090b;
  background: #f0f0f3;
  border-radius: 4px;
  flex: 0 0 100px;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 33px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
}

.company-report-badge.is-highlighted {
  color: #7b00ff;
  background: #f7efff;
}

.job-detail-overlay.motion-ready .company-report-section .company-report-heading h3 > span {
  transform: scale(.35);
}

.job-detail-overlay.motion-ready .company-report-section.is-revealed .company-report-heading h3 > span {
  transition: transform .64s cubic-bezier(.34, 1.56, .64, 1) .18s;
  transform: scale(1);
}

.job-detail-overlay.motion-ready .company-report-section .company-report-item {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(16px);
}

.job-detail-overlay.motion-ready .company-report-section.is-revealed .company-report-item {
  opacity: 1;
  filter: blur();
  transition: opacity .56s .24s, filter .64s .24s, transform .72s cubic-bezier(.16, 1, .3, 1) .24s, border-color .2s, box-shadow .26s;
  transform: translateY(0);
}

.job-detail-overlay.motion-ready .company-report-section.is-revealed .company-report-item:nth-child(2) {
  transition-delay: .31s, .31s, .31s, 0s, 0s;
}

.job-detail-overlay.motion-ready .company-report-section.is-revealed .company-report-item:nth-child(3) {
  transition-delay: .38s, .38s, .38s, 0s, 0s;
}

.job-detail-overlay.motion-ready .company-report-section.is-revealed .company-report-item:nth-child(4) {
  transition-delay: .45s, .45s, .45s, 0s, 0s;
}

.job-detail-overlay.motion-ready .company-report-section.is-revealed .company-report-item:nth-child(5) {
  transition-delay: .52s, .52s, .52s, 0s, 0s;
}

.job-detail-overlay.motion-ready .company-report-section.is-revealed .company-report-item:hover, .job-detail-overlay.motion-ready .company-report-section.is-revealed .company-report-item:focus-visible {
  transform: translateY(-2px);
}

.ai-company-review {
  padding: 60px 0 40px;
}

.job-detail-content .ai-company-review > h2 {
  font-weight: 600;
}

.ai-review-info {
  justify-content: space-between;
  align-items: center;
  min-height: 40px;
  margin-top: 10px;
  display: flex;
}

.ai-review-info p {
  color: #717188;
  margin: 0;
  padding-left: 16px;
  font-size: 14px;
  position: relative;
}

.ai-review-info p:before {
  color: #717188;
  content: "ⓘ";
  font-size: 12px;
  position: absolute;
  top: 1px;
  left: 0;
}

.ai-review-info button {
  color: #09090b;
  cursor: pointer;
  width: 173px;
  height: 40px;
  font: inherit;
  letter-spacing: -.56px;
  white-space: nowrap;
  background: #fff;
  border: 1px solid #dbdbe1;
  border-radius: 4px;
  flex: 0 0 173px;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  transition: border-color .2s, color .2s, transform .26s cubic-bezier(.16, 1, .3, 1);
  display: flex;
}

.ai-review-info button:hover, .ai-review-info button:focus-visible {
  color: #7b00ff;
  border-color: #8a15ff;
  transform: translateY(-2px);
}

.ai-review-info button span {
  margin-right: 4px;
}

.ai-review-list {
  flex-direction: column;
  gap: 40px;
  margin-top: 50px;
  display: flex;
}

.ai-review-item {
  gap: 24px;
  display: flex;
}

.ai-review-face {
  border-radius: 50%;
  flex: 0 0 60px;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
  overflow: hidden;
}

.ai-review-face img {
  object-fit: cover;
  width: 60px;
  height: 60px;
}

.ai-review-copy {
  flex: 1;
  min-width: 0;
}

.ai-review-copy h3 {
  color: #151519;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}

.ai-review-copy p {
  color: #151519;
  margin: 12px 0 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

.job-detail-overlay.motion-ready .ai-review-item .ai-review-face {
  opacity: 0;
  transform: scale(.72)rotate(-6deg);
}

.job-detail-overlay.motion-ready .ai-review-item.is-revealed .ai-review-face {
  opacity: 1;
  transition: opacity .48s .13s, transform .72s cubic-bezier(.34, 1.56, .64, 1) .13s;
  transform: scale(1)rotate(0);
}

.job-detail-sidebar {
  position: sticky;
  top: 16px;
}

.job-apply {
  color: #fff;
  cursor: pointer;
  width: 100%;
  height: 54px;
  font: inherit;
  background: #ff4828;
  border: 0;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  gap: 32px;
  font-size: 13px;
  display: flex;
}

.job-apply-meta {
  gap: 10px;
  display: flex;
}

.job-apply-view, .job-apply-bookmark {
  padding-left: 16px;
  display: block;
  position: relative;
}

.job-apply-view:before, .job-apply-bookmark:before {
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 1px;
  left: 0;
}

.job-apply-view:before {
  background-image: url("https://code-heim.com/images/common/ico-eye.svg");
}

.job-apply-bookmark:before {
  background-image: url("https://code-heim.com/images/common/ico-bookmark-white.svg");
}

.job-apply strong {
  font-size: 18px;
  font-weight: 600;
}

.related-heading {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  margin-top: 40px;
  display: grid;
}

.related-filter {
  width: 112px;
  position: relative;
}

.related-filter-trigger {
  cursor: pointer;
  width: 112px;
  height: 38px;
  font: inherit;
  background: #f1f1f9;
  border: 0;
  border-radius: 4px;
  justify-content: space-between;
  align-items: center;
  padding: 4px 10px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
}

.related-filter-trigger img {
  transition: transform .18s;
}

.related-filter.is-open .related-filter-trigger {
  z-index: 12;
  background: #fff;
  border: 1px solid #09090b;
  position: relative;
}

.related-filter.is-open .related-filter-trigger img {
  transform: rotate(180deg);
}

.related-filter-options {
  z-index: 11;
  clip-path: inset(0 0 100%);
  opacity: 0;
  pointer-events: none;
  transform-origin: top;
  visibility: hidden;
  will-change: clip-path, opacity, transform;
  background: #fff;
  border-radius: 4px;
  width: 112px;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: clip-path .28s cubic-bezier(.22, 1, .36, 1), opacity .18s, transform .28s cubic-bezier(.22, 1, .36, 1), visibility 0s linear .28s;
  position: absolute;
  top: 31px;
  left: 0;
  overflow: hidden;
  transform: translateY(-8px);
  box-shadow: 0 10px 10px #3f3f5329;
}

.related-filter-options.is-open {
  clip-path: inset(0);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition: clip-path .32s cubic-bezier(.22, 1, .36, 1), opacity .2s, transform .32s cubic-bezier(.22, 1, .36, 1), visibility linear;
  transform: translateY(0);
}

.related-filter-options button {
  color: #464654;
  cursor: pointer;
  width: 100%;
  height: 40px;
  font: inherit;
  background: none;
  border: 0;
  justify-content: space-between;
  align-items: center;
  padding: 0 6px 0 8px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
}

.related-filter-options button:hover, .related-filter-options button:focus-visible, .related-filter-options button.is-selected {
  color: #7b00ff;
  background: #f0f0f9;
}

.related-filter-options button.is-selected {
  font-weight: 600;
}

.related-heading h2 {
  margin: 0 0 0 10px;
  font-size: 20px;
}

.related-heading a {
  font-size: 14px;
}

.related-job-list {
  gap: 12px;
  margin-top: 20px;
  display: grid;
}

.related-job {
  color: #09090b;
  cursor: pointer;
  text-align: left;
  background: #fbfaff;
  border: 1px solid #dedee7;
  border-radius: 8px;
  gap: 10px;
  width: 100%;
  min-height: 166px;
  padding: 18px 16px;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  display: grid;
  position: relative;
  overflow: visible;
}

.related-job:before {
  z-index: 0;
  content: "";
  opacity: 0;
  pointer-events: none;
  -webkit-mask-composite: xor;
  background: linear-gradient(135deg, #ff7157 0%, #ff3cc7 28%, #0000 42% 58%, #7b01ff 82%, #503aff 100%);
  border-radius: 10px;
  padding: 2px;
  transition: opacity .3s;
  position: absolute;
  inset: -2px;
  -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  -webkit-mask-position: 0 0, 0 0;
  -webkit-mask-size: auto, auto;
  -webkit-mask-repeat: repeat, repeat;
  -webkit-mask-clip: content-box, border-box;
  -webkit-mask-origin: content-box, border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-mask-source-type: auto, auto;
  mask-mode: match-source, match-source;
}

.related-job > * {
  z-index: 1;
  position: relative;
}

.related-job strong, .related-job b, .related-job span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.related-job strong {
  font-size: 13px;
  font-weight: 500;
}

.related-job b {
  font-size: 15px;
}

.related-job span {
  color: #858596;
  font-size: 12px;
}

.related-job em {
  gap: 7px;
  margin-top: 4px;
  font-style: normal;
  display: flex;
}

.related-job em i {
  background: #d4f2ff;
  border: 1px solid #b9e0f1;
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 11px;
  font-style: normal;
}

.related-job em i:last-child {
  background: #e5fbce;
  border-color: #d0e6ba;
}

.related-job:hover, .related-job:focus-visible {
  border-color: #0000;
  outline: 0;
  transform: translateY(-2px);
  box-shadow: 0 5px 10px #362b471f;
}

.related-job:hover:before, .related-job:focus-visible:before {
  opacity: 1;
}

.service-links, .family-links {
  padding: 110px 0;
}

.content-heading {
  align-items: baseline;
  gap: 25px;
  margin-bottom: 35px;
  display: flex;
}

.content-heading h2 {
  letter-spacing: normal;
  margin: 0;
  font-size: 26px;
  font-weight: 600;
}

.content-heading p {
  color: #62626b;
  margin: 0;
  font-size: 14px;
}

.service-card-list {
  grid-template-columns: 2.2fr repeat(3, .75fr);
  gap: 15px;
  display: grid;
}

.service-card {
  color: #fff;
  border-radius: 8px;
  outline: none;
  flex-direction: column;
  min-height: 310px;
  padding: 34px 29px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.service-card:after {
  z-index: 0;
  content: "";
  background: linear-gradient(155deg, #36abf9fa, #377bfff5);
  position: absolute;
  inset: 0;
}

.service-card > * {
  z-index: 3;
  position: relative;
}

.service-card-scrim {
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(90deg, #1f11697a 0%, #26157e4d 40%, #2b169114 66%, #0000 78%);
  transition: opacity .45s;
  position: absolute;
  inset: 0;
}

.service-card.active .service-card-scrim {
  opacity: 1;
}

.service-card.where:before {
  z-index: 1;
  content: "";
  background: url("/images/img-woman.png") 100% 100% / contain no-repeat;
  width: 58%;
  height: 93%;
  position: absolute;
  bottom: 0;
  right: -8px;
}

.service-card.company:after {
  background: linear-gradient(145deg, #536dff, #4932e9);
}

.service-card.cover-letter:after {
  background: linear-gradient(145deg, #6855fb, #4317dd);
}

.service-card.interview:after {
  background: linear-gradient(145deg, #a64aef, #7442d7);
}

.service-eyebrow {
  margin-bottom: 35px;
  font-size: 15px;
  font-weight: 600;
}

.service-card h3 {
  letter-spacing: normal;
  max-width: 290px;
  margin: 0;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.2;
}

.service-card h3 strong {
  color: inherit;
}

.service-card p {
  max-width: 310px;
  margin: auto 0 0;
  font-size: 14px;
  line-height: 1.5;
}

.service-card:not(.where) p {
  display: none;
}

@keyframes service-image-focus {
  0% {
    opacity: 0;
    filter: blur(18px) saturate(.72) brightness(.82);
    transform: translate3d(20px, 9px, 0)scale(.965);
  }

  38% {
    opacity: .72;
    filter: blur(9px) saturate(.86) brightness(.9);
  }

  100% {
    opacity: 1;
    filter: blur() saturate() brightness();
    transform: translate3d(0, 0, 0)scale(1);
  }
}

@keyframes family-title-ink-open {
  0%, 2% {
    clip-path: inset(0 100% 0 0);
  }

  5% {
    clip-path: inset(0 79% 0 0);
  }

  10% {
    clip-path: inset(0 47% 0 0);
  }

  15% {
    clip-path: inset(0 17% 0 0);
  }

  19%, 100% {
    clip-path: inset(0);
  }
}

.family-card-list {
  grid-template-columns: 2fr 1fr 1fr;
  gap: 18px;
  display: grid;
}

.family-card {
  color: #fff;
  border-radius: 8px;
  outline: none;
  flex-direction: column;
  min-height: 295px;
  padding: 35px 34px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.family-card.educe {
  --family-accent: #ff7105;
  color: #fff;
  background: #ff720d;
}

.family-card.inear {
  --family-accent: #f45957;
  background: #ff565b;
}

.family-card.auland {
  --family-accent: #c62f55;
  background: #c92858;
}

.family-card.educe:after {
  content: "";
  background: url("/images/img-educe.png") center / cover no-repeat;
  border-radius: 3px;
  width: 42%;
  height: 68%;
  position: absolute;
  bottom: 27px;
  right: 28px;
}

.family-card > span {
  letter-spacing: -.04em;
  font-size: 13px;
  font-weight: 400;
}

.family-card h3 {
  letter-spacing: normal;
  max-width: 300px;
  margin: 33px 0 20px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
}

.family-card p {
  color: #ffffffd1;
  max-width: 340px;
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.family-card.educe p {
  color: #2a2a2d8c;
  max-width: 52%;
}

.family-card > img {
  filter: brightness(0) invert();
  max-width: 76px;
  position: absolute;
  bottom: 15px;
  right: 18px;
}

.family-card.educe > img {
  filter: none;
}

.support-list {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 75px;
  display: grid;
}

.support-list a {
  background: #fff;
  border-radius: 8px;
  align-items: center;
  gap: 18px;
  min-height: 105px;
  padding: 17px 20px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  display: flex;
}

.support-list img {
  object-fit: contain;
  width: 60px;
  height: 60px;
}

.support-list span {
  color: #464654;
  gap: 10px;
  font-size: 14px;
  line-height: normal;
  display: grid;
}

.support-list strong {
  color: #151519;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
}

.support-title-arrow {
  background: url("/images/ico-angle-right-top.png") center / 100% no-repeat;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  display: block;
}

.support-list a:hover, .support-list a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px #362b4714;
}

.support-list a:hover strong, .support-list a:focus-visible strong {
  text-underline-offset: 3px;
  text-decoration: underline;
}

.site-footer {
  color: #717188;
  background: #fff;
  border-top: 0;
  min-height: 296px;
  padding: 40px 40px 0;
  font-size: 15px;
}

.footer-grid {
  grid-template-columns: 31.23% 14.68% 5.95% 7.16% 11.25% 7.16% 22.57%;
  min-height: 157px;
  display: grid;
}

.footer-grid > div {
  flex-direction: column;
  font-size: 15px;
  display: flex;
}

.footer-grid h3 {
  color: #717188;
  margin: 0 0 32px;
  font-size: 16px;
  font-weight: 700;
}

.footer-grid p {
  margin: 0;
}

.footer-grid p strong {
  color: #717188;
  width: 60px;
  font-weight: 600;
  display: inline-block;
}

.footer-company {
  color: #717188;
  grid-column: 1;
}

.footer-company .footer-logo {
  width: 70px;
  height: 16px;
  margin-bottom: 32px;
}

.footer-company-toggle {
  color: #717188;
  cursor: pointer;
  width: max-content;
  font: inherit;
  background: none;
  border: 0;
  align-items: center;
  gap: 12px;
  padding: 0;
  font-size: 16px;
  font-weight: 700;
  display: flex;
}

.footer-toggle-icon {
  background: #717188;
  border-radius: 50%;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  transition: transform .2s;
  display: block;
  position: relative;
}

.footer-toggle-icon:before {
  content: "";
  border-bottom: 1.3px solid #fff;
  border-right: 1.3px solid #fff;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 4px;
  left: 5px;
  transform: rotate(45deg);
}

.footer-company-toggle.is-open .footer-toggle-icon {
  transform: rotate(180deg);
}

.footer-company-info {
  clip-path: inset(0 0 100%);
  opacity: 0;
  transform-origin: top;
  visibility: hidden;
  pointer-events: none;
  will-change: clip-path, opacity, transform;
  flex-direction: column;
  gap: 8px;
  height: 71px;
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.3;
  transition: clip-path .38s cubic-bezier(.22, 1, .36, 1), opacity .24s, transform .38s cubic-bezier(.22, 1, .36, 1), visibility 0s linear .38s;
  display: flex;
  transform: translateY(-10px);
}

.footer-company-info.is-open {
  clip-path: inset(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: clip-path .42s cubic-bezier(.22, 1, .36, 1), opacity .28s, transform .42s cubic-bezier(.22, 1, .36, 1), visibility linear;
  transform: translateY(0);
}

.footer-company-row {
  align-items: center;
  gap: 22px;
  display: flex;
}

.footer-company-row p {
  white-space: nowrap;
  align-items: center;
  gap: 6px;
  display: flex;
}

.footer-company-row p strong {
  color: #717188;
  width: auto;
  font-weight: 600;
}

.footer-guide {
  grid-column: 3;
  gap: 16px;
}

.footer-guide h3 {
  margin-bottom: 16px;
}

.footer-guide a {
  white-space: nowrap;
  align-items: center;
  gap: 4px;
  display: flex;
}

.footer-guide img {
  width: 14px;
  height: 14px;
}

.footer-site-links {
  grid-column: 5;
  gap: 16px;
  font-size: 14px !important;
}

.footer-site-links h3 {
  margin-bottom: 16px;
}

.footer-contact {
  grid-column: 7;
  gap: 10px;
}

.contact-link {
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
}

.contact-link-icon {
  background: #717188;
  border-radius: 50%;
  flex: 0 0 30px;
  place-items: center;
  width: 30px;
  height: 30px;
  transition: transform .2s;
  display: grid;
}

.contact-link-icon img {
  width: 10px;
  height: 10px;
}

.contact-link:hover .contact-link-icon, .contact-link:focus-visible .contact-link-icon {
  transform: translate(2px, -2px);
}

.contact-link:hover, .contact-link:focus-visible, .footer-grid a:hover, .footer-grid a:focus-visible, .footer-bottom a:hover, .footer-bottom a:focus-visible {
  color: #24242c;
  text-underline-offset: 3px;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 0;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding: 10px 0 40px;
  display: flex;
}

.footer-bottom div {
  gap: 32px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 26px;
    margin-left: 70px;
  }

  .header-actions {
    gap: 13px;
  }

  .workspace-button, .join-button {
    padding-inline: 17px;
  }

  .user-dashboard {
    grid-template-columns: 180px 265px 1fr;
    gap: 16px;
  }

  .job-list.single-row, .job-list.double-row {
    grid-auto-columns: calc(33.3333% - 14.6667px);
  }

  .service-card-list {
    grid-template-columns: 1.75fr repeat(3, .75fr);
  }
}

@media (max-width: 1279px) {
  .spec-donut-grid, .experience-chart-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 1079px) {
  .job-detail-shell {
    width: min(100% - 40px, 1396px);
  }

  .job-detail-main-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .job-detail-sidebar {
    display: none;
  }
}

@media (max-width: 959px) {
  .section-shell {
    width: min(calc(100% - 34px), var(--section));
  }

  .site-header {
    height: 72px;
    padding: 0 6px 0 20px;
  }

  .workspace-mobile-menu-button {
    color: #222229;
    cursor: pointer;
    background: none;
    border: 0;
    flex: 0 0 38px;
    place-items: center;
    width: 38px;
    height: 44px;
    margin: 0 8px 0 -6px;
    padding: 0;
    display: grid;
  }

  .workspace-mobile-menu-button svg {
    width: 19px;
    height: 19px;
  }

  .site-header + main {
    padding-top: 72px;
  }

  .site-header .brand img {
    width: 71px;
    height: auto;
  }

  .site-header .workspace-brand {
    gap: 8px;
    width: auto;
  }

  .site-header .workspace-brand > span {
    color: #17171c;
    letter-spacing: -.04em;
    white-space: nowrap;
    font-size: 15px;
    font-weight: 700;
    display: inline;
  }

  .desktop-nav, .header-actions {
    display: none;
  }

  .mobile-menu-button {
    z-index: 2;
    cursor: pointer;
    background: none;
    border: 0;
    place-content: center;
    gap: 8px;
    width: 48px;
    height: 48px;
    margin-left: auto;
    padding: 0;
    display: grid;
  }

  .workspace-mobile-drawer-root {
    z-index: 1100;
    display: block;
    position: fixed;
    inset: 0;
  }

  .workspace-mobile-drawer-dim {
    cursor: pointer;
    background: #0c0c1194;
    border: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    animation: .24s ease-out both workspace-drawer-dim-in;
    position: absolute;
    inset: 0;
  }

  .workspace-mobile-drawer {
    background: #fff;
    border-radius: 0 18px 18px 0;
    width: min(84.7vw, 340px);
    animation: .26s cubic-bezier(.2, .8, .2, 1) both workspace-drawer-in;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    box-shadow: 18px 0 50px #0d0a1829;
  }

  .workspace-mobile-drawer-root.is-closing .workspace-mobile-drawer-dim {
    animation: .24s ease-in both workspace-drawer-dim-out;
  }

  .workspace-mobile-drawer-root.is-closing .workspace-mobile-drawer {
    animation: .24s cubic-bezier(.4, 0, 1, 1) both workspace-drawer-out;
  }

  .workspace-mobile-drawer > header {
    grid-template-columns: 46px minmax(0, 1fr) 38px;
    align-items: center;
    gap: 11px;
    min-height: 96px;
    padding: 20px 17px 14px 20px;
    display: grid;
  }

  .workspace-drawer-avatar {
    color: #fff;
    background: linear-gradient(145deg, #a33cff, #6510c5);
    border-radius: 50% 50% 0;
    place-items: center;
    width: 46px;
    height: 46px;
    font-size: 17px;
    font-weight: 500;
    display: grid;
  }

  .workspace-drawer-member {
    min-width: 0;
  }

  .workspace-drawer-member strong, .workspace-drawer-member small {
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    overflow: hidden;
  }

  .workspace-drawer-member strong {
    color: #17171c;
    letter-spacing: -.035em;
    font-size: 21px;
    font-weight: 700;
  }

  .workspace-drawer-member small {
    color: #666771;
    margin-top: 4px;
    font-size: 11px;
  }

  .workspace-drawer-close {
    color: #17171c;
    cursor: pointer;
    background: none;
    border: 0;
    border-radius: 50%;
    place-items: center;
    width: 38px;
    height: 38px;
    padding: 0;
    transition: background .15s, transform .15s;
    display: grid;
  }

  .workspace-drawer-close:hover, .workspace-drawer-close:focus-visible {
    background: #f4eff8;
    outline: none;
    transform: rotate(4deg);
  }

  .workspace-drawer-close svg {
    stroke-width: 1.7px;
    width: 23px;
    height: 23px;
  }

  .workspace-mobile-drawer > nav {
    overscroll-behavior: contain;
    scrollbar-color: #ebe6f1 transparent;
    scrollbar-width: thin;
    height: calc(100dvh - 96px);
    padding: 13px 10px 30px 20px;
    overflow-y: auto;
  }

  .workspace-drawer-group {
    gap: 4px;
    margin: 0 0 7px;
    padding: 0 0 11px;
    display: grid;
  }

  .workspace-drawer-group + .workspace-drawer-group {
    padding-top: 2px;
  }

  .workspace-mobile-drawer nav a, .workspace-mobile-drawer nav button {
    color: #202026;
    cursor: pointer;
    width: 100%;
    min-height: 52px;
    font: inherit;
    text-align: left;
    background: none;
    border: 0;
    border-radius: 7px;
    grid-template-columns: 25px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    padding: 0 13px;
    font-size: 16px;
    font-weight: 600;
    transition: background .15s, color .15s, transform .15s;
    display: grid;
  }

  .workspace-mobile-drawer nav a:hover, .workspace-mobile-drawer nav a:focus-visible, .workspace-mobile-drawer nav a.is-active, .workspace-mobile-drawer nav button:hover, .workspace-mobile-drawer nav button:focus-visible {
    color: #7415ca;
    background: #f7effd;
    outline: none;
  }

  .workspace-mobile-drawer nav a:active, .workspace-mobile-drawer nav button:active {
    transform: translateX(2px);
  }

  .workspace-mobile-drawer nav svg {
    width: 21px;
    height: 21px;
  }

  .mobile-menu-button span {
    background: #111;
    width: 18px;
    height: 2px;
    transition: transform .18s, width .18s;
  }

  .mobile-menu-button[aria-expanded="true"] span:first-child {
    width: 20px;
    transform: translateY(5px)rotate(45deg);
  }

  .mobile-menu-button[aria-expanded="true"] span:last-child {
    width: 20px;
    transform: translateY(-5px)rotate(-45deg);
  }

  .mobile-nav {
    box-shadow: none;
    background: #fff;
    border-top: 1px solid #ededf2;
    flex-direction: column;
    padding: 20px 20px 80px;
    display: flex;
    position: fixed;
    inset: 72px 0 0;
    overflow-y: auto;
  }

  .mobile-nav a {
    align-items: center;
    min-height: 48px;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 600;
    display: flex;
  }

  .mobile-nav .mobile-login-link {
    border-bottom: 1px solid #ededf2;
    min-height: 54px;
    margin-bottom: 18px;
    font-size: 20px;
  }

  .mobile-auth-loading {
    color: #85858f;
    border-bottom: 1px solid #ededf2;
    min-height: 54px;
    margin: 0 0 18px;
    padding: 15px 0;
  }

  .mobile-user-summary {
    border-bottom: 1px solid #ededf2;
    align-items: center;
    gap: 12px;
    padding: 6px 0 18px;
    display: flex;
  }

  .mobile-user-summary > i {
    color: #526dde;
    background: #eef1ff;
    border-radius: 50%;
    place-items: center;
    width: 42px;
    height: 42px;
    font-style: normal;
    font-weight: 800;
    display: grid;
  }

  .mobile-user-summary > span {
    gap: 3px;
    display: grid;
  }

  .mobile-user-summary small {
    color: #888893;
    font-size: 11px;
    font-weight: 500;
  }

  .mobile-user-summary strong {
    font-size: 16px;
  }

  .mobile-nav .mobile-workspace-link {
    color: #fff;
    background: #24242c;
    border-radius: 8px;
    justify-content: center;
    gap: 2px;
    min-height: 56px;
    margin-bottom: 24px;
  }

  .mobile-nav .mobile-workspace-link span {
    color: #0000;
    background: linear-gradient(135deg, #ff9997 0%, #ff75c5 47.6%, #bd7eff 100%);
    -webkit-background-clip: text;
    background-clip: text;
  }

  .mobile-logout-button {
    color: #6d6d78;
    min-height: 44px;
    font: inherit;
    cursor: pointer;
    background: none;
    border: 0;
    margin: -13px 0 18px;
    font-size: 14px;
    font-weight: 650;
  }

  .mobile-auth-error {
    color: #ad4636;
    margin: 12px 0 0;
    font-size: 12px;
  }

  .mobile-nav .mobile-join-link {
    border: 1px solid #d9d9e0;
    border-radius: 8px;
    justify-content: center;
    margin-top: 20px;
  }

  .hero {
    height: calc(100svh - 72px);
    min-height: calc(100svh - 72px);
  }

  .hero-content {
    width: calc(100% - 34px);
    margin-top: -145px;
  }

  .hero-aurora {
    filter: blur(12px);
    width: 130vw;
    height: 460px;
    top: 20%;
  }

  .hero-aurora-red {
    left: -74%;
  }

  .hero-aurora-purple {
    right: -67%;
  }

  .spark {
    width: 24px;
    height: 24px;
    margin-bottom: 43px;
  }

  .hero h1 {
    max-width: 200px;
    margin-inline: auto;
    font-size: 36px;
    line-height: 1.2;
  }

  .mobile-title-break {
    display: initial;
  }

  .hero-copy, .ai-notice, .suggestions, .hello-pill {
    display: none;
  }

  .search-form {
    height: 68px;
    margin-top: 28px;
    padding-left: 22px;
  }

  .search-form input {
    font-size: 14px;
  }

  .search-form button {
    width: 48px;
    height: 48px;
  }

  .scroll-cue {
    width: 44px;
    height: 44px;
    box-shadow: none;
    background: none;
    bottom: 52px;
    left: 50%;
    transform: translateX(-50%);
  }

  .user-dashboard {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    padding: 245px 20px 70px;
    position: relative;
  }

  .record-card {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    height: 96px;
    padding: 20px 0;
    display: grid;
  }

  .record-row {
    text-align: center;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 55px;
    padding: 0 8px;
  }

  .record-row + .record-row {
    border-top: 0;
    border-left: 1px solid #f1f1f4;
  }

  .dashboard-greeting {
    height: 95px;
    display: block;
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
  }

  .dashboard-greeting .hello-pill {
    width: 100%;
    height: 95px;
    box-shadow: none;
    background: none;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 0;
    font-size: 20px;
    position: static;
    overflow: visible;
    transform: none;
  }

  .dashboard-greeting .hello-pill .avatar {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    margin: 0;
  }

  .dashboard-greeting .scroll-cue {
    display: none;
  }

  .dashboard-links a {
    min-height: 96px;
    padding: 0 16px;
  }

  .dashboard-links {
    gap: 16px;
  }

  .summary-board {
    min-height: 222px;
    padding: 24px 14px;
  }

  .summary-board > a strong {
    font-size: 30px;
  }

  .summary-board > a span {
    font-size: 11px;
    line-height: 1.4;
  }

  .summary-tags {
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 24px;
  }

  .summary-tags span {
    min-height: 24px;
    padding-inline: 8px;
    font-size: 10px;
  }

  .job-section, .job-groups > .job-section {
    padding: 60px 0;
  }

  .section-heading-row {
    align-items: center;
    margin-bottom: 22px;
  }

  .section-heading {
    gap: 9px;
  }

  .section-heading > span {
    font-size: 17px;
  }

  .section-heading h2 {
    font-size: 19px;
  }

  .section-heading p {
    display: none;
  }

  .section-select {
    min-height: 36px;
    padding-inline: 9px;
    font-size: 13px;
  }

  .recommend-section .section-heading > span {
    display: none;
  }

  .slider-tools {
    margin-left: auto;
  }

  .slider-tools a {
    margin: 0;
    font-size: 12px;
  }

  .slider-tools button {
    display: none;
  }

  .job-list {
    width: calc(100vw - 17px);
    padding-right: 34px;
  }

  .job-list.single-row {
    grid-auto-columns: min(76vw, 310px);
    gap: 10px;
  }

  .job-list.double-row {
    grid-template-rows: repeat(2, 230px);
    grid-auto-columns: min(76vw, 310px);
    gap: 10px;
  }

  .job-card {
    padding: 16px;
  }

  .job-card.compact {
    align-self: stretch;
    height: 100%;
  }

  .company-row, .job-card.compact .company-row {
    grid-template-columns: 70px minmax(0, 1fr) 22px;
    gap: 11px;
  }

  .company-logo, .job-card.compact .company-logo {
    height: 57px;
  }

  .company-copy strong {
    font-size: 13px;
  }

  .job-card h3 {
    white-space: nowrap;
    text-overflow: ellipsis;
    min-height: auto;
    margin-top: 23px;
  }

  .job-role {
    margin-top: 9px;
  }

  .match-row {
    margin: 23px 0 16px;
  }

  .job-footer {
    flex-direction: column;
    align-items: flex-end;
    margin-top: 19px;
  }

  .job-card.compact .job-footer {
    align-items: flex-start;
    margin-top: 20px;
  }

  .job-date {
    align-self: flex-start;
  }

  .job-detail-shell {
    width: calc(100% - 40px);
    padding: 16px 0 56px;
  }

  .job-detail-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    min-height: 154px;
    padding-right: 42px;
    display: flex;
    position: relative;
  }

  .job-detail-identity {
    align-items: flex-start;
    gap: 12px;
  }

  .job-detail-logo {
    flex-basis: 78px;
    width: 78px;
    height: 52px;
  }

  .job-detail-title strong {
    font-size: 14px;
  }

  .job-detail-title h1 {
    white-space: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 17px;
    line-height: 1.35;
    display: -webkit-box;
  }

  .job-detail-date {
    display: inline-flex;
  }

  .job-detail-actions {
    align-self: flex-end;
    padding: 0;
    position: static;
  }

  .job-detail-actions button:not(.job-detail-close) {
    display: inline-flex;
  }

  .job-detail-actions .job-detail-close {
    margin: 0;
    display: inline-flex;
    top: 16px;
    left: calc(100vw - 44px);
    right: auto;
  }

  .job-detail-main-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .job-detail-tabs {
    scrollbar-width: none;
    height: 50px;
    display: flex;
    overflow-x: auto;
  }

  .job-detail-tabs button {
    flex: 1 0 auto;
    min-width: 100px;
    font-size: 13px;
  }

  .job-ai-summary {
    padding-top: 34px;
  }

  .job-detail-content section h2 {
    font-size: 21px;
  }

  .job-ai-summary > div {
    min-height: 330px;
    margin-top: 34px;
  }

  .job-company-detail {
    padding-top: 58px;
  }

  .job-company-detail h3 {
    margin-top: 36px;
  }

  .company-stat-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-auto-flow: row;
    gap: 16px;
    width: 100%;
    margin-top: 42px;
    padding-right: 0;
    overflow: visible;
  }

  .company-stat-card {
    height: 160px;
    padding: 92px 14px 24px;
  }

  .company-stat-card:before {
    top: 27px;
  }

  .applicant-specs {
    margin-top: 48px;
  }

  .spec-donut-grid, .experience-chart-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .spec-donut-card {
    min-height: 400px;
  }

  .experience-chart-grid {
    margin-top: 18px;
  }

  .education-spec-table {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin-top: 48px;
    overflow: hidden;
  }

  .education-spec-column:first-child h4 {
    border-right: 1px solid #25252d;
    border-radius: 4px 0 0 4px;
  }

  .education-spec-column:last-child h4 {
    border-radius: 0 4px 4px 0;
  }

  .education-spec-column:first-child li > strong {
    border-right: 1px solid #dedee7;
  }

  .company-trends {
    padding-top: 56px;
  }

  .company-trend-block {
    margin-top: 40px;
  }

  .company-trend-block p {
    font-size: 16px;
  }

  .company-news-slider {
    margin-top: 40px;
  }

  .company-news-track {
    grid-auto-columns: calc(50% - 8px);
    column-gap: 16px;
  }

  .company-report-heading {
    align-items: flex-start;
  }

  .company-report-plan {
    width: 311px;
    min-width: 311px;
  }

  .company-report-plan > span, .company-report-plan strong:before {
    display: inline-flex;
  }

  .company-report-plan strong {
    margin-left: 13px;
  }

  .company-report-logo {
    display: flex;
  }

  .company-report-text {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .company-report-text strong, .company-report-text span {
    white-space: nowrap;
  }

  .ai-company-review {
    padding-top: 60px;
  }

  .ai-review-info {
    flex-direction: row;
    align-items: center;
    gap: 0;
    margin-top: 10px;
  }

  .ai-review-info button {
    align-self: auto;
  }

  .ai-review-item {
    gap: 16px;
  }

  .content-heading {
    text-align: center;
    justify-items: center;
    gap: 20px;
    margin-bottom: 36px;
    display: grid;
  }

  .content-heading h2 {
    font-size: 24px;
  }

  .content-heading p {
    max-width: 330px;
    font-size: 14px;
    line-height: 1.65;
  }

  .service-links, .family-links {
    padding: 85px 0;
  }

  .service-card-list, .family-card-list {
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    grid-template-columns: none;
    grid-auto-columns: min(76vw, 310px);
    grid-auto-flow: column;
    gap: 10px;
    width: calc(100vw - 17px);
    padding-right: 34px;
    display: grid;
    overflow-x: auto;
  }

  .service-card {
    scroll-snap-align: start;
    min-height: 430px;
    padding: 28px 20px;
  }

  .service-card.where:before {
    width: 88%;
    height: 58%;
  }

  .service-card h3 {
    max-width: 235px;
    font-size: 24px;
  }

  .service-card p {
    max-width: 235px;
  }

  .service-card.where p {
    margin-bottom: 165px;
  }

  .family-card {
    scroll-snap-align: start;
    border: 1px solid #e7e7ed;
    border-radius: 6px;
    min-height: 465px;
    padding: 22px 18px;
    color: #15151b !important;
    background: #fff !important;
  }

  .family-card > span {
    color: #fff;
    background: #ff720d;
    align-self: flex-start;
    padding: 9px 11px;
  }

  .family-card.inear > span {
    background: #ff565b;
  }

  .family-card.auland > span {
    background: #c92858;
  }

  .family-card h3 {
    margin: 25px 0 15px;
    font-size: 24px;
  }

  .family-card p, .family-card.educe p {
    color: #888892;
    max-width: none;
  }

  .family-card:after {
    content: "";
    background-position: center;
    background-size: cover;
    border-radius: 3px;
    width: auto;
    height: 220px;
    position: absolute;
    bottom: 22px;
    left: 18px;
    right: 18px;
  }

  .family-card.educe:after {
    background-image: url("/images/img-educe.png");
  }

  .family-card.inear:after {
    background-image: url("/images/img-inear.png");
  }

  .family-card.auland:after {
    background-image: url("/images/img-auland.png");
  }

  .family-card > img {
    display: none;
  }

  .support-list {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 65px;
  }

  .support-list a {
    min-height: 90px;
    padding: 13px 20px;
  }

  .support-list img {
    width: 56px;
    height: 56px;
  }

  .site-footer {
    padding: 55px 17px 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-grid > div {
    flex-direction: column;
    grid-column: 1;
    gap: 10px;
    font-size: 12px;
    display: flex;
  }

  .footer-grid > div h3 {
    margin-bottom: 6px;
  }

  .footer-grid .footer-company {
    gap: 0;
    display: flex;
  }

  .footer-company .footer-logo {
    filter: grayscale() contrast(1.35);
    opacity: .72;
    width: 70px;
    height: 16px;
    margin: 0 0 20px;
  }

  .footer-company-toggle {
    gap: 9px;
    font-size: 14px;
  }

  .footer-company-info {
    height: auto;
    min-height: 71px;
    font-size: 12px;
  }

  .footer-company-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-guide, .footer-site-links, .footer-contact {
    gap: 10px;
  }

  .footer-site-links {
    font-size: 12px !important;
  }

  .footer-contact {
    line-height: 1.5;
  }

  .footer-bottom {
    justify-content: stretch;
    gap: 20px;
    margin-top: 50px;
    padding-top: 25px;
    display: grid;
  }

  .footer-bottom div {
    justify-content: space-between;
    gap: 10px;
  }

  .footer-bottom p {
    text-align: center;
  }
}

@keyframes workspace-drawer-in {
  from {
    transform: translateX(-104%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes workspace-drawer-out {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-104%);
  }
}

@keyframes workspace-drawer-dim-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes workspace-drawer-dim-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .workspace-mobile-drawer, .workspace-mobile-drawer-dim, .workspace-mobile-drawer-root.is-closing .workspace-mobile-drawer, .workspace-mobile-drawer-root.is-closing .workspace-mobile-drawer-dim {
    animation-duration: 1ms;
  }
}

html::-webkit-scrollbar {
  width: 8px;
}

html::-webkit-scrollbar-thumb {
  background: #c9c9d1;
  border-radius: 999px;
}

.visual-loading, .visual-loading img {
  width: 60px;
  height: 60px;
}

.family-logo {
  width: auto;
  height: auto;
}

@media (min-width: 960px) {
  :root {
    --section: 1396px;
  }

  .section-shell {
    width: min(calc(100% - 80px), var(--section));
  }

  .site-header {
    height: 72px;
    padding: 0 40px;
  }

  .site-header + main {
    padding-top: 72px;
  }

  .site-header .brand, .site-header .brand img {
    width: 71px;
    height: auto;
  }

  .desktop-nav {
    gap: 60px;
    margin-left: 69px;
    font-size: 17px;
  }

  .clvr-link {
    font-size: 0;
  }

  .clvr-link:before {
    content: "";
    background: url("/images/logo-clvr.svg") center / contain no-repeat;
    width: 40px;
    height: 20px;
    display: block;
  }

  .header-actions {
    gap: 20px;
    font-size: 14px;
  }

  .workspace-button {
    width: 128px;
    height: 40px;
    padding: 0;
  }

  .join-button {
    width: 88px;
    height: 40px;
    padding: 0;
  }

  .hero {
    height: calc(100vh - 72px);
    min-height: 650px;
    padding: 0 40px;
  }

  .hero-aurora {
    filter: none;
    opacity: 1;
    width: 80%;
    height: 100%;
    top: 0;
  }

  .hero-aurora-red {
    background: url("/images/blur_red.png") center / contain no-repeat;
    left: 0;
  }

  .hero-aurora-purple {
    background: url("/images/blur_purple.png") center / contain no-repeat;
    right: 0;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
    gap: 60px;
    width: 100%;
    max-width: 1396px;
    margin-top: 0;
    display: flex;
    transform: translateY(-70px);
  }

  .hero-title-group {
    text-align: center;
  }

  .hero h1 {
    letter-spacing: -1.92px;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
  }

  .hero-copy {
    color: #3f3f4c;
    letter-spacing: -.8px;
    margin: 20px 0 0;
    font-size: 20px;
    line-height: 1.5;
  }

  .hero-search-group {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
    display: flex;
  }

  .hero-search-wrap {
    width: 688px;
  }

  .search-form {
    width: 688px;
    height: 60px;
    box-shadow: none;
    padding: 8px 25px 8px 24px;
  }

  .search-form input {
    font-size: 16px;
    font-weight: 500;
  }

  .search-form button {
    background: url("/images/btn-search.png") center / 100% no-repeat;
    width: 32px;
    height: 32px;
    position: absolute;
    bottom: 14px;
    right: 14px;
  }

  .ai-notice {
    height: 14px;
    margin: 22px 0 0;
    font-size: 12px;
    line-height: 1.2;
  }

  .suggestions {
    flex-wrap: nowrap;
    gap: 10px;
    width: 100%;
  }

  .suggestions button {
    height: auto;
    padding: 12px 20px;
    font-size: 15px;
    line-height: 1.3;
  }

  .hello-pill {
    gap: 10px;
    min-width: 235px;
    height: 64px;
    padding: 4px 28px 4px 4px;
    bottom: 56px;
  }

  .hello-pill .avatar {
    background: linear-gradient(315deg, #5900b9 0%, #9343eb 83.48%);
    border-radius: 30px 30px 2px;
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    margin-right: 0;
    font-size: 22px;
    font-weight: 300;
  }

  .scroll-cue {
    z-index: 1;
    width: 68px;
    height: 68px;
    box-shadow: none;
    background: none;
    padding: 13px;
    bottom: 54px;
    left: calc(50% + 117px);
    transform: none;
  }

  .scroll-cue:before {
    content: none;
  }

  .scroll-button {
    flex: 0 0 42px;
  }

  .user-dashboard {
    grid-template-columns: 14.7% 23.2% 57.3%;
    justify-content: space-between;
    gap: 1.7%;
    height: auto;
    padding: 248px 0 50px;
  }

  .record-card, .dashboard-links, .summary-board {
    height: 198px;
  }

  .record-card {
    padding: 10px 0;
  }

  .record-row {
    flex: 1;
    min-height: 0;
    padding: 10px 20px;
  }

  .dashboard-links {
    gap: 10px;
  }

  .dashboard-links a {
    padding: 20px;
  }

  .summary-board {
    align-content: center;
    gap: 34px;
    padding: 16px;
  }

  .summary-board > a strong {
    font-size: 48px;
  }

  .summary-tags {
    margin-top: 0;
  }

  .recommend-section {
    padding: 28px 0 50px;
  }

  .section-heading-row {
    margin-bottom: 20px;
  }

  .job-list {
    gap: 32px;
    padding: 2px 5px 30px 2px;
  }

  .job-list.single-row, .job-list.double-row {
    grid-auto-columns: 400px;
  }

  .job-list.double-row {
    grid-template-rows: repeat(2, 225px);
    row-gap: 32px;
  }

  .job-card:not(.compact) {
    height: 268px;
  }

  .job-card.compact {
    align-self: stretch;
    height: 100%;
  }

  .job-groups > .job-section:first-child {
    padding: 80px 0 0;
  }

  .job-groups > .job-section:nth-child(2) {
    padding: 80px 0 50px;
  }

  .job-groups > .job-section:nth-child(4) {
    padding: 80px 0 0;
  }

  .service-links, .family-links {
    width: min(calc(100% - 80px), var(--section));
  }

  .service-links {
    height: 357px;
    padding: 0;
  }

  .content-heading {
    gap: 24px;
    margin-bottom: 28px;
  }

  .content-heading h2 {
    font-size: 24px;
  }

  .content-heading p {
    font-size: 18px;
  }

  .service-card-list {
    gap: 1.1%;
    display: flex;
  }

  .service-card {
    flex: 0 0 15.9%;
    width: 15.9%;
    height: 300px;
    min-height: 300px;
    padding: 50px 2.2% 0;
    transition: flex-basis .72s cubic-bezier(.65, 0, .35, 1), width .72s cubic-bezier(.65, 0, .35, 1);
  }

  .service-card.active {
    flex-basis: 48.8%;
    width: 48.8%;
  }

  .service-card:before {
    z-index: 1;
    opacity: 0;
    content: "";
    filter: blur(16px) saturate(.82) brightness(.88);
    transform-origin: 100% 100%;
    will-change: opacity, filter, transform;
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 314px;
    height: 300px;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate3d(18px, 8px, 0)scale(.97);
  }

  .service-card.where:before {
    background-image: url("/images/img-woman.png");
    background-position: 100% 100%;
    background-size: 100%;
    width: 314px;
    height: 300px;
    top: 0;
    bottom: auto;
    right: 0;
  }

  .service-card.company:before {
    background-image: url("/images/img-building.png");
  }

  .service-card.cover-letter:before {
    background-image: url("/images/img-roket.png");
  }

  .service-card.interview:before {
    background-image: url("/images/img-man.png");
  }

  .service-card.active:before {
    animation: .72s cubic-bezier(.65, 0, .35, 1) both service-image-focus;
  }

  .service-card.active .service-eyebrow, .service-card.active h3, .service-card.active p {
    text-shadow: 0 1px 9px #160a4e33;
  }

  .service-eyebrow {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .service-card h3 {
    max-width: 300px;
    font-size: 24px;
  }

  .service-card p {
    max-width: 300px;
    margin-top: 24px;
    font-size: 16px;
    display: none;
  }

  .service-card.active p {
    display: block;
  }

  .family-links {
    height: 741px;
    padding: 80px 0 120px;
  }

  .family-card-list {
    gap: 1.4%;
    display: flex;
  }

  .family-card {
    isolation: isolate;
    border: 1px solid #0000;
    flex: 0 0 24.1%;
    width: 24.1%;
    height: 300px;
    min-height: 300px;
    padding: 40px 2.8%;
    transition: flex-basis .52s cubic-bezier(.22, 1, .36, 1), width .52s cubic-bezier(.22, 1, .36, 1);
  }

  .family-card > * {
    z-index: 2;
    position: relative;
  }

  .family-card.active {
    color: #24242c;
    background: #fff;
    border: 1px solid #dedee5;
    flex-basis: 48.8%;
    width: 48.8%;
    transition: flex-basis .52s cubic-bezier(.22, 1, .36, 1), width .52s cubic-bezier(.22, 1, .36, 1);
  }

  .family-card > span {
    flex: 0 0 43px;
    align-self: flex-start;
    min-height: 43px;
    padding: 12px 0;
    font-size: 16px;
  }

  .family-card.active > span {
    color: #fff;
    border-radius: 4px;
    padding: 12px 16px;
  }

  .family-card.educe.active > span {
    background: #ff7105;
  }

  .family-card.inear.active > span {
    background: #f45957;
  }

  .family-card.auland.active > span {
    background: #c62f55;
  }

  .family-card h3 {
    color: #fff;
    flex: 0 0 67px;
    min-height: 67px;
    margin-top: 20px;
    font-size: 28px;
    position: relative;
  }

  .family-title-layer {
    display: block;
  }

  .family-title-dark {
    color: #24242c;
    clip-path: inset(0 100% 0 0);
    will-change: clip-path;
    transition: clip-path .3s;
    position: absolute;
    inset: 0;
  }

  .family-card.active .family-title-dark {
    animation: .52s linear both family-title-ink-open;
  }

  .family-card p {
    color: #858590;
    opacity: 0;
    visibility: hidden;
    will-change: opacity;
    flex: 0 0 63px;
    width: 330px;
    max-width: 330px;
    min-height: 63px;
    margin-top: auto;
    font-size: 14px;
    transition: opacity .12s, visibility 0s linear .12s;
  }

  .family-card.active p {
    opacity: 1;
    visibility: visible;
    transition: opacity .2s .18s, visibility linear;
  }

  .family-card.educe:before, .family-card.inear:before, .family-card.auland:before {
    z-index: 1;
    opacity: 0;
    filter: blur(12px) saturate(.85);
    transform-origin: center;
    content: "";
    will-change: opacity, filter, transform;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 0;
    width: 220px;
    height: 220px;
    transition: opacity .3s, filter .3s, transform .3s;
    position: absolute;
    bottom: 40px;
    left: auto;
    right: 40px;
    transform: scale(.985);
  }

  .family-card.educe:before {
    background-image: url("/images/img-educe.png");
  }

  .family-card.inear:before {
    background-image: url("/images/img-inear.png");
  }

  .family-card.auland:before {
    background-image: url("/images/img-auland.png");
  }

  .family-card.active:before {
    opacity: 1;
    filter: blur() saturate();
    transition: opacity .34s 60ms, filter .52s cubic-bezier(.22, 1, .36, 1), transform .52s cubic-bezier(.22, 1, .36, 1);
    transform: scale(1);
  }

  .family-card.educe:after, .family-card.inear:after, .family-card.auland:after {
    z-index: 0;
    background: var(--family-accent);
    content: "";
    border-radius: 0;
    width: auto;
    height: auto;
    transition: transform .52s cubic-bezier(.22, 1, .36, 1);
    position: absolute;
    inset: 0;
    transform: translateX(0);
  }

  .family-card.active:after {
    transition: transform .52s cubic-bezier(.22, 1, .36, 1);
    transform: translateX(calc(100% - 150px));
  }

  .family-card .family-logo {
    z-index: 3;
    opacity: 0;
    filter: none;
    width: auto;
    max-width: none;
    height: auto;
    transition: opacity .2s;
    bottom: 16px;
    right: 40px;
  }

  .family-card.active .family-logo {
    opacity: 1;
    transition: opacity .18s .24s;
  }

  .family-card .family-balloon {
    z-index: 3;
    opacity: 1;
    filter: none;
    width: 40px;
    max-width: none;
    height: 40px;
    transition: opacity .3s;
    bottom: 40px;
    left: 40px;
    right: auto;
  }

  .family-card.active .family-balloon {
    opacity: 0;
  }

  .support-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.2%;
    margin-top: 80px;
  }

  .support-list a {
    gap: 16px;
    min-height: 104px;
    padding: 16px;
  }

  .support-list img {
    width: 72px;
    height: 72px;
  }

  .site-footer {
    min-height: 296px;
    padding: 40px 40px 0;
  }

  .footer-bottom {
    margin-top: 30px;
  }
}

@media (max-width: 959px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: calc(100% - 40px);
    margin-top: 0;
    display: flex;
    transform: translateY(-150px);
  }

  .hero-title-group, .hero-search-group, .hero-search-wrap {
    width: 100%;
  }

  .hero-title-group {
    text-align: center;
  }

  .hero-copy, .ai-notice, .suggestions {
    display: none;
  }

  .search-form {
    border-radius: 40px;
    width: 100%;
    min-height: 80px;
    margin-top: 0;
    padding-top: 25px;
  }

  .search-form button {
    background: url("/images/btn-search.png") center / 100% no-repeat;
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
  }

  .job-list.single-row, .job-list.double-row, .service-card-list, .family-card-list {
    grid-auto-columns: 310px;
  }

  .service-card {
    width: 310px;
  }

  .service-card:before {
    z-index: 1;
    content: "";
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 210px;
    height: 210px;
    position: absolute;
    top: auto;
    bottom: 0;
    right: 0;
  }

  .service-card.where:before {
    background-image: url("/images/img-woman.png");
  }

  .service-card.company:before {
    background-image: url("/images/img-building-m.png");
  }

  .service-card.cover-letter:before {
    background-image: url("/images/img-roket.png");
  }

  .service-card.interview:before {
    background-image: url("/images/img-man.png");
  }

  .family-card {
    width: 310px;
    height: 450px;
    min-height: 450px;
  }

  .scroll-button {
    box-shadow: none;
    background: none;
    border: 0;
  }
}

@media (min-width: 768px) and (max-width: 959px) {
  .hero {
    height: calc(100svh - 72px);
    min-height: 650px;
    padding: 0 40px;
  }

  .hero:after {
    background: none;
  }

  .hero-aurora {
    filter: none;
    opacity: 1;
    width: 200%;
    height: 100%;
    animation: none;
    top: 0;
  }

  .hero-aurora-red {
    background: url("/images/blur_red.png") center / contain no-repeat;
    left: -50%;
  }

  .hero-aurora-purple {
    background: url("/images/blur_purple.png") center / contain no-repeat;
    right: -50%;
  }

  .hero-content {
    gap: 60px;
    width: 100%;
    max-width: 1396px;
    transform: translateY(-70px);
  }

  .hero h1 {
    letter-spacing: -1.92px;
    white-space: nowrap;
    max-width: none;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
  }

  .mobile-title-break {
    display: none;
  }

  .hero-copy {
    color: #3f3f4c;
    letter-spacing: -.8px;
    margin: 20px 0 0;
    font-size: 18px;
    line-height: 1.5;
    display: block;
  }

  .hero-search-group {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
    display: flex;
  }

  .hero-search-wrap {
    width: 80%;
  }

  .search-form {
    width: 100%;
    height: 60px;
    min-height: 60px;
    box-shadow: none;
    border-radius: 30px;
    margin-top: 0;
    padding: 8px 25px 8px 24px;
  }

  .search-form input {
    font-size: 16px;
    font-weight: 500;
  }

  .search-form button {
    width: 32px;
    height: 32px;
    bottom: 14px;
    right: 14px;
  }

  .ai-notice {
    height: 14px;
    margin: 22px 0 0;
    font-size: 12px;
    line-height: 1.2;
    display: flex;
  }

  .suggestions {
    display: none;
  }

  .suggestions button {
    height: auto;
    padding: 12px 20px;
    font-size: 15px;
    line-height: 1.3;
  }

  .hero-mobile-scroll {
    place-items: center;
    width: 48px;
    height: 48px;
    display: grid;
    position: absolute;
    bottom: 110px;
    right: 50%;
    transform: translateX(50%);
  }

  .hero-mobile-scroll img {
    width: 40px;
    height: 40px;
  }
}

@media (min-width: 960px) {
  .user-dashboard {
    position: relative;
  }

  .dashboard-greeting {
    --greeting-top: -120px;
    --greeting-font-size: 16px;
    --greeting-padding-y: 4px;
    --greeting-padding-right: 28px;
    --greeting-padding-left: 4px;
    --greeting-background-alpha: 1;
    --greeting-shadow-alpha: .1;
    --greeting-arrow-opacity: 1;
    top: var(--greeting-top);
    z-index: 5;
    will-change: top;
    height: 64px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .dashboard-greeting .hello-pill {
    width: max-content;
    min-width: 0;
    height: auto;
    min-height: 56px;
    padding: var(--greeting-padding-y) var(--greeting-padding-right)
      var(--greeting-padding-y) var(--greeting-padding-left);
    background: rgba(255, 255, 255, var(--greeting-background-alpha));
    box-shadow: 0 12px 35px rgba(68, 41, 91, var(--greeting-shadow-alpha));
    font-size: var(--greeting-font-size);
    white-space: nowrap;
    will-change: padding, background-color, box-shadow, font-size;
    border-radius: 999px;
    gap: 10px;
    position: relative;
    bottom: auto;
    left: auto;
    overflow: visible;
    transform: none;
  }

  .dashboard-greeting .scroll-cue {
    opacity: var(--greeting-arrow-opacity);
    pointer-events: auto;
    will-change: opacity;
    position: absolute;
    inset: -2px -68px auto auto;
    transform: none;
  }

  .dashboard-greeting .scroll-button {
    flex: 0 0 42px;
  }
}

@media (max-width: 959px) {
  .dashboard-greeting {
    display: block;
  }
}

@media (max-width: 767px) {
  .job-detail-shell {
    width: 100%;
    padding: 24px 20px 56px;
  }

  .job-detail-header {
    min-height: 184px;
    padding-right: 36px;
  }

  .job-detail-logo {
    display: none;
  }

  .job-detail-identity {
    width: 100%;
    padding-bottom: 42px;
    position: relative;
  }

  .job-detail-title {
    width: 100%;
  }

  .job-detail-title strong {
    font-size: 14px;
  }

  .job-detail-title h1 {
    margin-top: 14px;
    font-size: 20px;
    line-height: 1.45;
  }

  .job-detail-date {
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .job-detail-actions {
    margin-right: -24px;
  }

  .job-detail-actions .detail-action-newtab {
    display: none;
  }

  .job-detail-tabs button {
    min-width: 82px;
    padding-inline: 12px;
  }

  .company-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .company-stat-grid > :nth-child(5) {
    grid-column: span 2;
  }

  .company-stat-card {
    height: 160px;
  }

  .spec-donut-card {
    min-height: 380px;
    padding: 16px;
  }

  .experience-chart-card {
    padding: 16px;
  }

  .education-spec-table {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    overflow: visible;
  }

  .education-spec-column:first-child h4, .education-spec-column:last-child h4 {
    border: 0;
    border-radius: 4px;
  }

  .education-spec-column:first-child li > strong {
    border-right: 0;
  }

  .company-report-heading {
    align-items: flex-start;
  }

  .company-report-plan {
    flex-basis: auto;
    width: auto;
    min-width: 112px;
  }

  .company-report-plan > span, .company-report-plan strong:before {
    display: none;
  }

  .company-report-plan strong {
    margin-left: 0;
  }

  .company-report-logo {
    display: none;
  }

  .company-report-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .company-report-text strong, .company-report-text span {
    white-space: normal;
  }

  .ai-review-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-top: 16px;
  }

  .ai-review-info button {
    align-self: flex-end;
  }

  .ai-review-item {
    gap: 16px;
  }
}

@media (max-width: 575px) {
  .education-spec-column li > span {
    gap: 8px;
    padding-left: 18px;
  }

  .company-news-slider {
    padding: 2px 28px 30px;
  }

  .company-news-track {
    grid-auto-columns: 100%;
  }

  .company-report-item {
    gap: 10px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .company-report-rank {
    flex-basis: 28px;
    width: 28px;
  }

  .company-report-badge {
    flex-basis: 88px;
    width: 88px;
  }

  .ai-review-item {
    gap: 12px;
  }

  .ai-review-face, .ai-review-face img {
    width: 40px;
    height: 40px;
  }

  .ai-review-face {
    flex-basis: 40px;
  }
}

@media (max-width: 499px) {
  .job-detail-tabs button {
    min-width: 82px;
  }

  .spec-donut-grid, .experience-chart-grid {
    gap: 10px;
  }

  .spec-donut-card, .experience-chart-card {
    padding: 12px 8px;
  }

  .spec-donut {
    aspect-ratio: 1;
    width: min(152px, 100%);
    height: auto;
  }
}

@media (min-width: 960px) and (max-width: 1079px) {
  .family-links {
    height: 857px;
  }

  .user-dashboard {
    grid-template-columns: minmax(0, 38fr) minmax(0, 60.3fr);
    gap: 24px 1.7%;
  }

  .summary-board {
    grid-column: 1 / -1;
  }

  .service-card, .service-card.active {
    flex-basis: 24.7%;
    width: 24.7%;
    height: auto;
    min-height: 310px;
    padding: 20px;
  }

  .service-card:before, .service-card.active:before {
    opacity: 0;
  }

  .service-card.where:before, .service-card.company:before, .service-card.cover-letter:before, .service-card.interview:before, .service-card.active:before {
    opacity: 0;
    visibility: hidden;
    animation: none;
  }

  .service-card .service-card-scrim, .service-card.active .service-card-scrim {
    opacity: 0;
  }

  .service-card p, .service-card.where p, .service-card:not(.where) p, .service-card.active p {
    width: 100%;
    max-width: none;
    margin-top: auto;
    font-size: 16px;
    line-height: 1.5;
    display: block;
  }

  .service-card .service-eyebrow {
    flex: 0 0 42px;
    min-height: 42px;
    margin-bottom: 20px;
  }

  .family-card, .family-card.active {
    color: #fff;
    background: var(--family-accent);
    border-color: #0000;
    flex-basis: 32.2%;
    width: 32.2%;
    padding: 20px;
  }

  .family-card.active > span {
    background: none;
    border-radius: 0;
    padding: 12px 0;
  }

  .family-card .family-title-light {
    display: block;
  }

  .family-card .family-title-dark {
    animation: none;
    display: none;
  }

  .family-card h3, .family-card.active h3 {
    flex-basis: 58px;
    min-height: 58px;
    margin: 16px 0 0;
    font-size: 24px;
  }

  .family-card p, .family-card.educe p, .family-card.active p {
    color: #ffffffd1;
    opacity: 1;
    visibility: visible;
    flex: none;
    width: 100%;
    max-width: none;
    min-height: 0;
    margin-top: auto;
    transition: none;
  }

  .family-card:before, .family-card.active:before {
    opacity: 0;
    visibility: hidden;
  }

  .family-card:after, .family-card.active:after {
    transform: translateX(0);
  }

  .family-card .family-logo, .family-card.active .family-logo {
    opacity: 0;
  }

  .family-card .family-balloon, .family-card.active .family-balloon {
    opacity: 0;
    visibility: hidden;
  }

  .support-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .site-footer {
    min-height: 0;
    padding: 40px 40px 0;
  }

  .footer-grid {
    grid-template-columns: 82.83px 157.16px minmax(0, 1fr);
    gap: 40px;
    min-height: 0;
  }

  .footer-company {
    grid-column: 1 / -1;
  }

  .footer-company-info {
    height: 0;
    margin-top: 0;
    overflow: hidden;
  }

  .footer-company-info.is-open {
    height: 71px;
    margin-top: 20px;
  }

  .footer-guide {
    grid-column: 1;
  }

  .footer-site-links {
    grid-column: 2;
  }

  .footer-contact {
    grid-column: 3;
  }
}

@media (max-width: 959px) {
  .footer-company-toggle {
    outline: 0;
  }

  .footer-company-info {
    height: 0;
    min-height: 0;
    margin-top: 0;
    overflow: hidden;
  }

  .footer-company-info.is-open {
    height: auto;
    min-height: 71px;
    margin-top: 20px;
  }

  .service-links {
    padding-top: 0;
    padding-bottom: 0;
  }

  .service-links .content-heading {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
    display: flex;
  }

  .service-links .content-heading h2 {
    font-size: 28px;
  }

  .service-links .content-heading p {
    max-width: none;
    font-size: 18px;
    line-height: 1.5;
  }

  .service-card {
    padding: 20px;
  }

  .service-card.where:before {
    background-size: 100%;
    width: 210px;
    height: 210px;
    right: 0;
  }

  .service-eyebrow {
    margin-bottom: 16px;
    font-size: 18px;
  }

  .service-card h3 {
    width: 100%;
    max-width: none;
    min-height: 87px;
    font-size: 24px;
    line-height: 1.2;
  }

  .service-card p, .service-card.where p, .service-card:not(.where) p {
    width: 100%;
    max-width: none;
    margin: 24px 0 0;
    font-size: 18px;
    line-height: 1.5;
    display: block;
  }

  .family-links {
    padding-top: 80px;
    padding-bottom: 0;
  }

  .job-groups > .job-section:nth-child(4) {
    padding-bottom: 0;
  }

  .family-links .content-heading {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
    display: flex;
  }

  .family-links .content-heading h2 {
    font-size: 28px;
  }

  .family-links .content-heading p {
    max-width: none;
    font-size: 18px;
    line-height: 1.5;
  }

  .family-card {
    border-radius: 8px;
    padding: 20px;
  }

  .family-card > span {
    border-radius: 4px;
    min-height: 43px;
    padding: 12px;
    font-size: 16px;
    line-height: 1.2;
  }

  .family-card h3 {
    min-height: 0;
    margin: 16px 0 0;
    font-size: 24px;
    line-height: 1.2;
  }

  .family-title-light {
    display: none;
  }

  .family-title-dark {
    color: #15151b;
    clip-path: none;
    display: inline;
    position: static;
    animation: none !important;
  }

  .family-card p, .family-card.educe p {
    color: #858590;
    opacity: 1;
    visibility: visible;
    width: 100%;
    max-width: none;
    min-height: 0;
    margin: 10px 0 0;
    font-size: 16px;
    line-height: 1.5;
  }

  .family-card p br {
    display: none;
  }

  .family-card.educe:after, .family-card.inear:after, .family-card.auland:after {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    border-radius: 0;
    width: auto;
    height: 191px;
    bottom: 20px;
    left: 18px;
    right: 20px;
  }
}

@media (min-width: 768px) and (max-width: 959px) {
  .section-shell {
    width: min(calc(100% - 80px), var(--section));
  }

  .user-dashboard {
    grid-template-columns: minmax(0, 38fr) minmax(0, 60.3fr);
    gap: 24px 1.7%;
    padding: 100px 0 50px;
  }

  .dashboard-greeting {
    height: 56px;
    top: 0;
  }

  .dashboard-greeting .hello-pill {
    flex-direction: row;
    gap: 10px;
    width: max-content;
    min-width: 0;
    height: 56px;
    margin-inline: auto;
    font-size: 24px;
    display: flex;
  }

  .dashboard-greeting .hello-pill .avatar {
    flex-basis: 56px;
    width: 56px;
    height: 56px;
  }

  .record-card {
    height: auto;
    padding: 10px 0;
    display: block;
  }

  .record-row {
    text-align: left;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: 56px;
    padding: 10px 20px;
  }

  .record-row + .record-row {
    border-top: 1px solid #f1f1f4;
    border-left: 0;
  }

  .dashboard-links {
    gap: 10px;
  }

  .dashboard-links a {
    min-height: 88px;
    padding: 20px;
  }

  .summary-board {
    grid-column: 1 / -1;
    align-content: center;
    gap: 34px;
    min-height: 198px;
    padding: 16px;
  }

  .summary-board > a strong {
    font-size: 48px;
  }

  .summary-board > a strong .rolling-number, .summary-board > a strong .rolling-number span {
    height: 1em;
    line-height: 1;
  }

  .summary-board > a span {
    font-size: 14px;
  }

  .summary-tags {
    margin-top: 0;
  }

  .job-section {
    padding: 44px 0 82px;
  }

  .recommend-section {
    padding: 28px 0 50px;
  }

  .job-groups > .job-section {
    padding: 80px 0 50px;
  }

  .section-heading-row {
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .section-heading {
    gap: 13px;
  }

  .section-heading h2 {
    font-size: 20px;
  }

  .section-select {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 16px;
  }

  .slider-tools a {
    margin-right: 16px;
    font-size: 13px;
  }

  .slider-tools button {
    display: grid;
  }

  .job-list {
    gap: 32px;
    width: 100%;
    padding: 2px 5px 30px 2px;
  }

  .job-list.single-row, .job-list.double-row {
    grid-auto-columns: 400px;
    gap: 32px;
  }

  .job-list.double-row {
    grid-template-rows: repeat(2, 225px);
    row-gap: 32px;
  }

  .job-card {
    padding: 20px;
  }

  .job-card:not(.compact) {
    height: 268px;
  }

  .company-row, .job-card.compact .company-row {
    grid-template-columns: 100px minmax(0, 1fr) 24px;
    gap: 13px;
  }

  .company-logo, .job-card.compact .company-logo {
    height: 60px;
  }

  .company-copy strong {
    font-size: 15px;
  }

  .job-card h3, .job-card.compact h3 {
    margin-top: 24px;
    font-size: 16px;
  }

  .job-role, .job-card.compact .job-role {
    margin-top: 8px;
    font-size: 14px;
  }

  .match-row {
    margin: 24px 0 16px;
  }

  .job-footer, .job-card.compact .job-footer {
    flex-direction: row;
    align-items: flex-start;
    margin-top: 24px;
  }

  .job-date {
    align-self: auto;
  }

  .service-links, .family-links {
    width: min(calc(100% - 80px), var(--section));
  }

  .family-links {
    padding-bottom: 120px;
  }

  .support-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 80px;
  }

  .support-list a {
    gap: 16px;
    min-height: 104px;
    padding: 16px;
  }

  .support-list img {
    width: 72px;
    height: 72px;
  }

  .site-footer {
    min-height: 0;
    padding: 40px 20px 0;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    min-height: 0;
  }

  .footer-grid > div, .footer-grid .footer-company {
    grid-column: 1;
    gap: 0;
    font-size: 14px;
  }

  .footer-company .footer-logo {
    margin-bottom: 32px;
  }

  .footer-company-toggle {
    outline: 0;
    font-size: 16px;
  }

  .footer-company-info {
    height: 0;
    min-height: 0;
    margin-top: 0;
    overflow: hidden;
  }

  .footer-company-info.is-open {
    height: auto;
    min-height: 71px;
    margin-top: 20px;
  }

  .footer-guide {
    grid-template-columns: 80px max-content max-content minmax(0, 1fr);
    align-items: start;
    column-gap: 20px !important;
    display: grid !important;
  }

  .footer-guide h3, .footer-site-links h3, .footer-contact h3 {
    margin: 0;
  }

  .footer-guide h3 {
    grid-column: 1;
  }

  .footer-guide a:first-of-type {
    grid-column: 2;
  }

  .footer-guide a:last-of-type {
    grid-column: 3;
  }

  .footer-site-links, .footer-contact {
    grid-template-columns: 80px minmax(0, 1fr);
    align-items: start;
    gap: 10px 20px !important;
    display: grid !important;
  }

  .footer-site-links h3, .footer-contact h3 {
    grid-area: 1 / 1 / span 3;
  }

  .footer-site-links p, .footer-contact p, .footer-contact .contact-link {
    grid-column: 2;
  }

  .footer-contact .contact-link {
    margin-top: 0;
  }

  .footer-bottom {
    margin-top: 40px;
  }

  .service-card-list, .family-card-list {
    grid-auto-columns: 310px;
    gap: 12px;
    width: calc(100% + 40px);
    padding: 0;
    transform: none;
  }

  .service-card {
    width: 310px;
    min-height: 430px;
  }

  .family-card {
    width: 310px;
    min-height: 450px;
  }
}

@keyframes aurora-mobile-bloom {
  from {
    opacity: 0;
    transform: scale(.72);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 767px) {
  .section-shell {
    width: min(calc(100% - 40px), var(--section));
  }

  .hero {
    min-height: 650px;
    padding: 0 20px;
  }

  .hero:after {
    background: none;
  }

  .hero-aurora {
    filter: none;
    opacity: 1;
    width: 200%;
    height: 100%;
    animation: 1.35s cubic-bezier(.16, 1, .3, 1) both aurora-mobile-bloom;
    top: 0;
  }

  .hero-aurora-red {
    background: url("/images/blur_red.png") center / contain no-repeat;
    left: -50%;
  }

  .hero-aurora-purple {
    background: url("/images/blur_purple.png") center / contain no-repeat;
    animation-delay: 90ms;
    right: -50%;
  }

  .hero-content {
    gap: 30px;
    width: 100%;
    transform: translateY(-120px);
  }

  .hero h1 {
    letter-spacing: -1.92px;
    max-width: 199px;
    font-weight: 600;
  }

  .search-form {
    padding: 8px 25px 8px 24px;
  }

  .search-form input {
    height: 32px;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    top: 1px;
  }

  .search-form button {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 20px;
    bottom: auto;
    right: 14px;
  }

  .hero-mobile-scroll {
    z-index: 2;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    display: block;
    position: absolute;
    bottom: 110px;
    left: 0;
    right: 0;
  }

  .dashboard-greeting {
    top: 100px;
  }

  .user-dashboard {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .dashboard-greeting .hello-pill {
    gap: 10px;
    font-size: 24px;
    display: flex;
  }

  .dashboard-greeting .hello-pill .avatar {
    font-size: 22px;
    font-weight: 300;
  }

  .record-card {
    height: 97px;
  }

  .record-row {
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
  }

  .record-row b {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 500;
  }

  .dashboard-links {
    gap: 10px;
  }

  .dashboard-links a {
    height: 100px;
    min-height: 100px;
    padding: 0 20px;
  }

  .dashboard-links span {
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
  }

  .dashboard-links strong {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
  }

  .summary-board {
    padding: 20px 10px;
  }

  .summary-board > a strong {
    font-size: 32px;
  }

  .summary-board > a strong .rolling-number, .summary-board > a strong .rolling-number span {
    height: 1em;
    line-height: 1;
  }

  .summary-board > a span {
    word-break: keep-all;
    font-size: 15px;
    line-height: 1.2;
  }

  .summary-tags span {
    min-height: 27px;
    padding-inline: 10px;
    font-size: 12px;
  }

  .job-list {
    gap: 12px;
    width: calc(100% + 20px);
    padding-left: 0;
    padding-right: 20px;
    transform: none;
  }

  .job-list.single-row, .job-list.double-row {
    grid-auto-columns: 310px;
    gap: 12px;
  }

  .job-list.double-row {
    grid-template-rows: repeat(2, 325px);
    row-gap: 12px;
  }

  .job-card, .job-card.compact, .job-card:not(.compact) {
    width: 310px;
    min-height: 325px;
    padding: 20px;
  }

  .company-row, .job-card.compact .company-row {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 16px;
    padding-right: 34px;
  }

  .company-logo, .job-card.compact .company-logo {
    width: 60px;
    height: 60px;
    padding: 5px;
  }

  .company-copy strong {
    font-size: 17px;
  }

  .bookmark {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 10px;
    right: 10px;
  }

  .job-card h3, .job-card.compact h3 {
    margin-top: 24px;
    font-size: 18px;
  }

  .job-role, .job-card.compact .job-role {
    margin-top: 12px;
    font-size: 16px;
  }

  .match-value {
    font-size: 20px;
  }

  .job-footer, .job-card.compact .job-footer {
    flex-flow: wrap;
    align-items: flex-start;
    gap: 16px;
  }

  .job-tags {
    width: 100%;
  }

  .job-date {
    align-self: auto;
  }

  .recommend-select.is-open {
    z-index: 300;
  }

  .mobile-select-backdrop {
    z-index: 0;
    opacity: 0;
    pointer-events: none;
    background: #0003;
    border: 0;
    width: 100vw;
    height: 100vh;
    padding: 0;
    transition: opacity .3s;
    display: block;
    position: fixed;
    inset: 0;
  }

  .recommend-select.is-open .mobile-select-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .recommend-select-panel {
    z-index: 1;
    opacity: 1;
    pointer-events: none;
    visibility: visible;
    background: #fff;
    border-radius: 16px 16px 0 0;
    width: 100vw;
    max-height: 80vh;
    padding-bottom: 20px;
    transition: transform .3s cubic-bezier(.25, 1, .5, 1);
    position: fixed;
    inset: auto 0 0;
    overflow: hidden;
    transform: translateY(100%);
    box-shadow: 0 -10px 30px #2623311f;
  }

  .recommend-select.is-open .recommend-select-panel {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-select-header {
    border-bottom: 1px solid #efeff2;
    justify-content: space-between;
    align-items: center;
    height: 56px;
    padding: 0 20px;
    font-size: 18px;
    display: flex;
  }

  .mobile-select-header > button {
    background: none;
    border: 0;
    width: 24px;
    height: 24px;
    padding: 0;
    position: relative;
  }

  .mobile-select-header > button:before, .mobile-select-header > button:after {
    content: "";
    background: #151519;
    border-radius: 1px;
    width: 18px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
  }

  .mobile-select-header > button:before {
    transform: translate(-50%, -50%)rotate(45deg);
  }

  .mobile-select-header > button:after {
    transform: translate(-50%, -50%)rotate(-45deg);
  }

  .recommend-select-options {
    max-height: calc(80vh - 150px);
  }

  .recommend-select-option {
    min-height: 48px;
    padding: 0 20px;
    font-size: 16px;
  }

  .mobile-select-footer {
    padding: 16px 20px 0;
    display: block;
  }

  .mobile-select-footer > button {
    color: #fff;
    background: #44008e;
    border: 0;
    border-radius: 8px;
    width: 100%;
    height: 58px;
    font-size: 18px;
    font-weight: 600;
  }

  .service-card-list, .family-card-list {
    grid-auto-columns: 310px;
    gap: 12px;
  }

  .service-card {
    width: 310px;
    min-height: 430px;
  }

  .family-card {
    width: 310px;
    min-height: 450px;
  }
}

@media (min-width: 576px) and (max-width: 959px) {
  .family-links {
    padding-bottom: 120px;
  }

  .support-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 80px;
  }

  .support-list a {
    gap: 16px;
    min-height: 104px;
    padding: 16px;
  }

  .support-list img {
    width: 72px;
    height: 72px;
  }

  .site-footer {
    min-height: 0;
    padding: 40px 20px 0;
    font-size: 14px;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    min-height: 0;
  }

  .footer-grid > div, .footer-grid .footer-company {
    grid-column: 1;
    gap: 0;
    font-size: 14px;
  }

  .footer-company .footer-logo {
    width: 105px;
    height: 24px;
    margin-bottom: 32px;
  }

  .footer-company-toggle {
    outline: 0;
    font-size: 16px;
  }

  .footer-company-info {
    height: 0;
    min-height: 0;
    margin-top: 0;
    overflow: hidden;
  }

  .footer-company-info.is-open {
    height: auto;
    min-height: 71px;
    margin-top: 20px;
  }

  .footer-guide {
    grid-template-columns: 80px max-content max-content minmax(0, 1fr);
    align-items: start;
    column-gap: 20px !important;
    display: grid !important;
  }

  .footer-guide h3, .footer-site-links h3, .footer-contact h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
  }

  .footer-guide h3 {
    grid-column: 1;
  }

  .footer-guide a:first-of-type {
    grid-column: 2;
  }

  .footer-guide a:last-of-type {
    grid-column: 3;
  }

  .footer-guide a {
    font-size: 14px;
    font-weight: 700;
  }

  .footer-site-links, .footer-contact {
    grid-template-columns: 80px minmax(0, 1fr);
    align-items: start;
    gap: 10px 20px !important;
    display: grid !important;
  }

  .footer-site-links {
    font-size: 14px !important;
  }

  .footer-site-links p, .footer-contact p {
    font-size: 14px;
    line-height: 1.5;
  }

  .footer-site-links p strong {
    font-size: 14px;
    font-weight: 700;
  }

  .footer-site-links h3, .footer-contact h3 {
    grid-area: 1 / 1 / span 3;
  }

  .footer-site-links p, .footer-contact p, .footer-contact .contact-link {
    grid-column: 2;
  }

  .footer-contact .contact-link {
    margin-top: 0;
    font-size: 15px;
    font-weight: 700;
  }

  .footer-bottom {
    margin-top: 40px;
  }
}

@media (max-width: 959px) {
  .family-links {
    padding-bottom: 120px;
  }

  .site-footer {
    min-height: 0;
    padding: 40px 20px 0;
    font-size: 15px;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    min-height: 0;
  }

  .footer-grid > div, .footer-grid .footer-company {
    grid-column: 1;
    gap: 0;
    font-size: 15px;
  }

  .footer-company .footer-logo {
    filter: none;
    opacity: 1;
    width: 106px;
    height: 24px;
    margin: 0 0 32px;
  }

  .footer-company-toggle {
    outline: 0;
    gap: 12px;
    width: 100%;
    font-size: 16px;
  }

  .footer-company-info {
    height: 0;
    min-height: 0;
    margin-top: 0;
    font-size: 14px;
    overflow: hidden;
  }

  .footer-company-info.is-open {
    height: auto;
    min-height: 71px;
    margin-top: 20px;
  }

  .footer-guide {
    grid-template-columns: 80px max-content max-content minmax(0, 1fr);
    align-items: start;
    column-gap: 12px !important;
    display: grid !important;
  }

  .footer-grid .footer-guide h3, .footer-grid .footer-site-links h3, .footer-grid .footer-contact h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 !important;
  }

  .footer-guide h3 {
    grid-column: 1;
  }

  .footer-guide a:first-of-type {
    grid-column: 2;
  }

  .footer-guide a:last-of-type {
    grid-column: 3;
    margin-left: 8px;
  }

  .footer-guide a {
    font-size: 14px;
    font-weight: 700;
  }

  .footer-site-links, .footer-contact {
    grid-template-columns: 80px minmax(0, 1fr);
    align-items: start;
    gap: 10px 12px !important;
    display: grid !important;
  }

  .footer-site-links {
    row-gap: 16px !important;
  }

  .footer-site-links h3, .footer-contact h3 {
    grid-area: 1 / 1 / span 3;
  }

  .footer-site-links p, .footer-contact p, .footer-contact .contact-link {
    grid-column: 2;
  }

  .footer-site-links, .footer-site-links p {
    font-size: 14px !important;
  }

  .footer-site-links p, .footer-contact p {
    line-height: 1.2;
  }

  .footer-site-links p {
    line-height: normal;
  }

  .footer-site-links p strong {
    font-size: 14px;
    font-weight: 700;
  }

  .footer-contact p {
    font-size: 15px;
  }

  .footer-contact .contact-link {
    margin-top: 10px;
    font-size: 15px;
    font-weight: 700;
  }

  .footer-bottom {
    border-top: 1px solid #f1f1f4;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0;
    margin-top: 40px;
    padding: 30px 0 70px;
    display: flex;
  }

  .footer-bottom div, .footer-bottom p {
    width: 100%;
  }

  .footer-bottom div {
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    height: 18px;
    margin-bottom: 20px;
    font-size: 15px;
  }

  .footer-bottom a {
    padding: 15px 0;
  }

  .footer-bottom p {
    text-align: center;
    font-size: 14px;
  }
}

.ai-mentor-section {
  min-height: 780px;
  padding: 46px 0 0;
}

.ai-mentor-desktop {
  display: block;
}

.mentor-desktop-stage {
  place-items: center;
  min-height: 500px;
  padding: 42px 30px 24px;
  display: grid;
}

.mentor-intro {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.mentor-profile {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.mentor-profile-head {
  align-items: center;
  gap: 13px;
  display: flex;
}

.mentor-profile-image {
  background: #ffd47d;
  border-radius: 50%;
  place-items: center;
  width: 84px;
  height: 84px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.mentor-profile-image:after {
  content: "";
  background: linear-gradient(135deg, #ff4977, #c000ff);
  border: 3px solid #fff;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 2px;
  right: -1px;
  box-shadow: 0 4px 12px #9100ff2e;
}

.mentor-profile-image img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.mentor-profile-head strong {
  font-size: 20px;
  font-weight: 700;
}

.mentor-profile-meta {
  margin-top: 20px;
}

.mentor-profile-meta p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.mentor-profile-meta div {
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  display: flex;
}

.mentor-profile-meta span {
  color: #55137d;
  background: #f9edff;
  border: 1px solid #e7d6f8;
  border-radius: 4px;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  font-size: 12px;
  display: inline-flex;
}

.mentor-profile-meta span + span {
  color: #24556b;
  background: #ddf5ff;
  border-color: #b9e4f4;
}

.mentor-intro-copy {
  margin-top: 70px;
}

.mentor-intro-copy h3 {
  letter-spacing: -.045em;
  margin: 0;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.25;
}

.mentor-intro-copy p {
  color: #24242c;
  margin: 22px 0 0;
  font-size: 17px;
  line-height: 1.6;
}

.mentor-intro-copy p + p {
  margin-top: 0;
}

.mentor-composer {
  z-index: 1;
  padding: 0 0 42px;
  position: relative;
}

.mentor-composer form {
  background: #fff;
  border: 1px solid #e7e7ee;
  border-radius: 32px;
  align-items: center;
  gap: 12px;
  width: min(700px, 100% - 100px);
  min-height: 62px;
  margin: 0 auto;
  padding: 7px 9px 7px 24px;
  display: flex;
  box-shadow: 0 15px 36px #582d821a;
}

.mentor-composer textarea {
  resize: none;
  color: #17171b;
  width: 100%;
  min-height: 24px;
  max-height: 92px;
  font: inherit;
  background: none;
  border: 0;
  outline: 0;
  font-size: 15px;
  line-height: 1.55;
  overflow: auto;
}

.mentor-composer textarea::placeholder {
  color: #0000;
  opacity: 1;
  background: linear-gradient(90deg, #ff5757, #f532b5 54%, #7b14ff);
  -webkit-background-clip: text;
  background-clip: text;
}

.mentor-composer form > button {
  cursor: pointer;
  background: #cf83f5 url("/images/btn-search.png") center / 100% no-repeat;
  border: 0;
  border-radius: 50%;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  padding: 0;
  transition: opacity .18s, transform .18s, box-shadow .18s;
  position: relative;
}

.mentor-composer form > button:hover:not(:disabled), .mentor-composer form > button:focus-visible:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 7px 16px #831cff47;
}

.mentor-composer form > button:disabled {
  cursor: default;
  opacity: .58;
}

.mentor-composer form > button span:before {
  content: none;
}

.mentor-suggestions {
  justify-content: center;
  gap: 10px;
  margin: 38px auto 0;
  padding: 0 10px;
  display: flex;
}

.mentor-suggestions button {
  color: #3d3d49;
  cursor: pointer;
  min-height: 42px;
  font: inherit;
  white-space: nowrap;
  background: #fff;
  border: 1px solid #dfdfe6;
  border-radius: 23px;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  font-size: 13px;
  transition: border-color .18s, color .18s, box-shadow .18s, transform .18s;
  display: inline-flex;
}

.mentor-suggestions button:hover, .mentor-suggestions button:focus-visible {
  color: #7200de;
  border-color: #b574ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px #6f18d517;
}

.mentor-suggestions button span {
  color: #c366ff;
  font-size: 17px;
}

.mentor-caution {
  color: #81818e;
  text-align: center;
  margin: 18px 0 0;
  font-size: 11px;
}

.mentor-chat-view {
  background: #fbfaff;
  border: 1px solid #e8e6ed;
  border-radius: 18px;
  width: min(820px, 100%);
  height: 455px;
  overflow: hidden;
  box-shadow: 0 18px 45px #4c208214;
}

.mentor-chat-header {
  background: #fff;
  border-bottom: 1px solid #ece9f1;
  align-items: center;
  gap: 12px;
  height: 74px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
}

.mentor-profile.is-compact, .mentor-profile.is-compact .mentor-profile-head {
  flex-direction: row;
}

.mentor-profile.is-compact .mentor-profile-image {
  width: 46px;
  height: 46px;
}

.mentor-profile.is-compact .mentor-profile-image:after {
  border-width: 2px;
  width: 16px;
  height: 16px;
}

.mentor-profile.is-compact .mentor-profile-head strong {
  font-size: 15px;
}

.mentor-message-log {
  scroll-behavior: smooth;
  flex-direction: column;
  gap: 18px;
  height: calc(100% - 74px);
  padding: 24px;
  display: flex;
  overflow-y: auto;
}

.mentor-message {
  align-items: flex-end;
  gap: 9px;
  display: flex;
}

.mentor-message.user {
  justify-content: flex-end;
}

.mentor-message-avatar {
  background: #ffd47d;
  border-radius: 50%;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  overflow: hidden;
}

.mentor-message-avatar img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.mentor-message p {
  white-space: pre-wrap;
  background: #fff;
  border-radius: 18px 18px 18px 4px;
  max-width: min(610px, 78%);
  margin: 0;
  padding: 13px 16px;
  font-size: 14px;
  line-height: 1.65;
  box-shadow: 0 5px 14px #42285a12;
}

.mentor-message .mentor-markdown {
  overflow-wrap: break-word;
  background: #fff;
  border-radius: 18px 18px 18px 4px;
  max-width: min(610px, 78%);
  padding: 13px 16px;
  font-size: 14px;
  line-height: 1.65;
  box-shadow: 0 5px 14px #42285a12;
}

.mentor-message.is-error .mentor-markdown {
  color: #a02d38;
  background: #fff8f8;
  border: 1px solid #ffd9dc;
}

.mentor-markdown > :first-child {
  margin-top: 0;
}

.mentor-markdown > :last-child {
  margin-bottom: 0;
}

.mentor-message .mentor-markdown p {
  max-width: none;
  box-shadow: none;
  font: inherit;
  line-height: inherit;
  white-space: normal;
  background: none;
  border-radius: 0;
  margin: 0 0 10px;
  padding: 0;
}

.mentor-markdown h1, .mentor-markdown h2, .mentor-markdown h3, .mentor-markdown h4 {
  letter-spacing: -.025em;
  margin: 18px 0 8px;
  font-weight: 700;
  line-height: 1.4;
}

.mentor-markdown h1 {
  font-size: 1.35em;
}

.mentor-markdown h2 {
  font-size: 1.25em;
}

.mentor-markdown h3 {
  font-size: 1.16em;
}

.mentor-markdown h4 {
  font-size: 1.08em;
}

.mentor-markdown ul, .mentor-markdown ol {
  margin: 8px 0 12px;
  padding-left: 22px;
}

.mentor-markdown li + li {
  margin-top: 5px;
}

.mentor-markdown blockquote {
  color: #5e5668;
  background: #f8f2ff;
  border-left: 3px solid #9b39ff;
  margin: 12px 0;
  padding: 9px 12px;
}

.mentor-markdown code {
  color: #6710a6;
  background: #f0edf4;
  border-radius: 4px;
  padding: 2px 5px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: .9em;
}

.mentor-markdown pre {
  color: #f8f6fb;
  background: #24212a;
  border-radius: 8px;
  max-width: 100%;
  margin: 12px 0;
  padding: 12px;
  overflow-x: auto;
}

.mentor-markdown pre code {
  color: inherit;
  background: none;
  padding: 0;
}

.mentor-markdown table {
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
  margin: 12px 0;
  display: block;
  overflow-x: auto;
}

.mentor-markdown th, .mentor-markdown td {
  text-align: left;
  border: 1px solid #e1dde6;
  min-width: 90px;
  padding: 7px 9px;
}

.mentor-markdown th {
  background: #f7f3fa;
  font-weight: 700;
}

.mentor-markdown a {
  color: #7416d9;
  text-underline-offset: 2px;
  font-weight: 600;
  text-decoration: underline;
}

.mentor-message.user p {
  color: #fff;
  background: linear-gradient(135deg, #851cff, #6f00d8);
  border-radius: 18px 18px 4px;
}

.mentor-message.is-typing p {
  justify-content: center;
  align-items: center;
  gap: 5px;
  min-width: 60px;
  display: flex;
}

.mentor-message.is-typing i {
  background: #8c68aa;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  animation: .9s ease-in-out infinite alternate mentor-typing;
}

.mentor-message.is-typing i:nth-child(2) {
  animation-delay: .14s;
}

.mentor-message.is-typing i:nth-child(3) {
  animation-delay: .28s;
}

@keyframes mentor-typing {
  from {
    opacity: .35;
    transform: translateY(2px);
  }

  to {
    opacity: 1;
    transform: translateY(-2px);
  }
}

.ai-mentor-mobile-launch, .mentor-mobile-modal {
  display: none;
}

.job-original-section {
  padding: 40px 0;
}

.job-detail-content .job-original-section > h2 {
  font-size: 24px;
  font-weight: 600;
}

.job-original-frame {
  background: #fff;
  border: 1px solid #e7e7f2;
  margin-top: 34px;
  padding: 20px;
}

.job-original-frame img {
  width: 80%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.job-original-frame iframe {
  background: #fff;
  border: 0;
  width: 100%;
  min-height: 1200px;
  display: block;
}

@media (min-width: 768px) and (max-width: 959px) {
  .job-original-section {
    margin-inline: 20px;
  }
}

@media (max-width: 959px) {
  .ai-mentor-section {
    min-height: 650px;
    padding-top: 34px;
  }

  .ai-mentor-desktop {
    display: none;
  }

  .ai-mentor-mobile-launch {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 560px;
    padding: 46px 20px 80px;
    display: flex;
  }

  .mentor-intro.is-mobile .mentor-profile-image {
    width: 76px;
    height: 76px;
  }

  .mentor-intro.is-mobile .mentor-intro-copy {
    margin-top: 52px;
  }

  .mentor-intro.is-mobile .mentor-intro-copy h3 {
    max-width: 540px;
    font-size: clamp(28px, 5vw, 36px);
  }

  .mentor-intro.is-mobile .mentor-intro-copy p {
    font-size: 15px;
  }

  .ai-mentor-mobile-launch > button {
    color: #fff;
    cursor: pointer;
    min-width: 200px;
    min-height: 52px;
    font: inherit;
    background: linear-gradient(90deg, #9019ff, #6611df);
    border: 0;
    border-radius: 27px;
    margin-top: 44px;
    padding: 0 28px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 12px 28px #7515e133;
  }

  .mentor-mobile-modal {
    z-index: 900;
    place-items: center;
    padding: 24px;
    display: grid;
    position: fixed;
    inset: 0;
  }

  .mentor-mobile-dim {
    cursor: pointer;
    background: #0e0b167a;
    border: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    animation: .22s both mentor-dim-in;
    position: absolute;
    inset: 0;
  }

  .mentor-mobile-dialog {
    background: #fff;
    border-radius: 20px;
    flex-direction: column;
    width: min(720px, 100%);
    height: min(790px, 100svh - 48px);
    animation: .42s cubic-bezier(.16, 1, .3, 1) both mentor-dialog-in;
    display: flex;
    position: relative;
    overflow: hidden;
    box-shadow: 0 28px 80px #10071e47;
  }

  .mentor-mobile-close {
    z-index: 3;
    cursor: pointer;
    background: #ffffffeb;
    border: 1px solid #e8e5ed;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 0;
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .mentor-mobile-close span:before, .mentor-mobile-close span:after {
    content: "";
    background: #25242b;
    width: 15px;
    height: 1.5px;
    position: absolute;
    top: 17px;
    left: 10px;
  }

  .mentor-mobile-close span:before {
    transform: rotate(45deg);
  }

  .mentor-mobile-close span:after {
    transform: rotate(-45deg);
  }

  .mentor-mobile-body {
    flex: auto;
    place-items: center;
    min-height: 0;
    padding: 60px 24px 16px;
    display: grid;
    overflow: hidden;
  }

  .mentor-mobile-body > .mentor-intro {
    max-height: 100%;
  }

  .mentor-chat-view.is-mobile {
    width: 100%;
    height: 100%;
    box-shadow: none;
    border: 0;
    border-radius: 0;
  }

  .mentor-chat-view.is-mobile .mentor-chat-header {
    padding-inline: 0;
  }

  .mentor-chat-view.is-mobile .mentor-message-log {
    padding: 20px 0 12px;
  }

  .mentor-composer.is-mobile {
    background: #fff;
    border-top: 1px solid #eeeaf2;
    flex: none;
    padding: 16px 24px 22px;
  }

  .mentor-composer.is-mobile form {
    width: 100%;
    min-height: 58px;
    padding-left: 18px;
  }

  .mentor-composer.is-mobile .mentor-suggestions {
    justify-content: flex-start;
    margin-top: 14px;
    padding: 2px 0 4px;
    overflow-x: auto;
  }

  .mentor-composer.is-mobile .mentor-suggestions button {
    flex: none;
    min-height: 36px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .mentor-composer.is-mobile .mentor-caution {
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .ai-mentor-section {
    min-height: 610px;
  }

  .ai-mentor-mobile-launch {
    min-height: 520px;
    padding-inline: 0;
  }

  .mentor-intro.is-mobile .mentor-intro-copy {
    margin-top: 42px;
  }

  .mentor-intro.is-mobile .mentor-intro-copy h3 {
    max-width: 330px;
    font-size: 28px;
  }

  .mentor-intro.is-mobile .mentor-intro-copy p {
    max-width: 340px;
    font-size: 14px;
  }

  .mentor-mobile-modal {
    padding: 0;
  }

  .mentor-mobile-dialog {
    border-radius: 0;
    width: 100%;
    height: 100svh;
    max-height: none;
  }

  .mentor-mobile-body {
    padding: 58px 18px 12px;
  }

  .mentor-mobile-body .mentor-intro-copy {
    margin-top: 34px;
  }

  .mentor-mobile-body .mentor-intro-copy h3 {
    max-width: 300px;
    font-size: 25px;
  }

  .mentor-mobile-body .mentor-intro-copy p {
    font-size: 13px;
  }

  .mentor-composer.is-mobile {
    padding: 12px 14px 16px;
  }

  .mentor-composer.is-mobile form > button {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .mentor-message p {
    max-width: 82%;
    padding: 11px 13px;
    font-size: 13px;
  }

  .job-original-frame img {
    width: 100%;
  }
}

@keyframes mentor-dim-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes mentor-dialog-in {
  from {
    opacity: 0;
    transform: translateY(28px)scale(.985);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 959px) {
  .mentor-mobile-modal {
    justify-content: stretch;
    align-items: flex-end;
    padding: 0;
    display: flex;
  }

  .mentor-mobile-dialog {
    background: #fff;
    border-radius: 8px 8px 0 0;
    width: 100%;
    height: calc(100svh - 60px);
    max-height: none;
    animation: .44s cubic-bezier(.16, 1, .3, 1) both mentor-sheet-in;
  }

  .mentor-mobile-dialog:before {
    z-index: 0;
    content: "";
    opacity: 0;
    pointer-events: none;
    background: radial-gradient(circle at 18% 76%, #ffa89f85, #0000 48%), radial-gradient(circle at 73% 66%, #d88bff8a, #0000 54%), linear-gradient(#fff0, #fff 92%);
    height: 60%;
    transition: opacity .26s;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .mentor-mobile-dialog.is-intro:before {
    opacity: 1;
  }

  .mentor-mobile-titlebar {
    z-index: 2;
    flex: 0 0 100px;
    align-items: flex-start;
    height: 100px;
    padding: 20px 20px 0;
    display: flex;
    position: relative;
  }

  .mentor-mobile-titlebar h2 {
    letter-spacing: -.045em;
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
  }

  .mentor-mobile-close {
    background: none;
    border: 0;
    border-radius: 0;
    width: 28px;
    height: 28px;
    top: 20px;
    right: 10px;
  }

  .mentor-mobile-close span:before, .mentor-mobile-close span:after {
    width: 22px;
    height: 1.5px;
    top: 13px;
    left: 3px;
  }

  .mentor-mobile-body {
    z-index: 1;
    flex: auto;
    min-height: 0;
    padding: 0 20px;
    display: block;
    position: relative;
    overflow: hidden;
  }

  .mentor-popup-intro {
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding-top: 24px;
    display: flex;
  }

  .mentor-popup-profile {
    align-items: center;
    gap: 13px;
    display: flex;
  }

  .mentor-popup-image {
    background: #ffd47d;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    overflow: hidden;
  }

  .mentor-popup-image img {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }

  .mentor-popup-profile strong {
    letter-spacing: -.035em;
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
  }

  .mentor-popup-intro > p {
    margin: 31px 0 0;
    font-size: 18px;
    font-weight: 500;
  }

  .mentor-popup-tags {
    gap: 6px;
    margin-top: 16px;
    display: flex;
  }

  .mentor-popup-tags span {
    color: #5d2b72;
    background: #faedff;
    border: 1px solid #ead7fa;
    border-radius: 4px;
    align-items: center;
    min-height: 40px;
    padding: 0 13px;
    font-size: 12px;
    display: inline-flex;
  }

  .mentor-popup-tags span + span {
    color: #315d6d;
    background: #ddf5ff;
    border-color: #b9e2f0;
  }

  .mentor-composer.is-mobile {
    z-index: 2;
    background: none;
    border-top: 0;
    flex: none;
    position: relative;
  }

  .mentor-mobile-dialog.is-intro .mentor-composer.is-mobile {
    padding: 0 20px 100px;
  }

  .mentor-mobile-dialog.is-chatting .mentor-composer.is-mobile {
    background: linear-gradient(#fff0, #fff 22%);
    padding: 0 20px 40px;
  }

  .mentor-mobile-prompt {
    color: #fff;
    letter-spacing: -.035em;
    text-align: center;
    margin: 0 0 30px;
    font-size: 24px;
    font-weight: 500;
  }

  .mentor-mobile-dialog.is-chatting .mentor-mobile-prompt {
    display: none;
  }

  .mentor-composer.is-mobile form {
    border-radius: 38px;
    width: min(688px, 100%);
    min-height: 70px;
    padding: 8px 10px 8px 24px;
    box-shadow: 0 12px 30px #47236a1f;
  }

  .mentor-composer.is-mobile form > button {
    flex-basis: 50px;
    width: 50px;
    height: 50px;
  }

  .mentor-composer.is-mobile textarea {
    font-size: 16px;
    font-weight: 500;
  }

  .mentor-composer.is-mobile .mentor-suggestions, .mentor-composer.is-mobile .mentor-caution {
    display: none;
  }

  .mentor-chat-view.is-mobile {
    width: 100%;
    height: 100%;
    box-shadow: none;
    background: #fff;
    border: 0;
    border-radius: 0;
    flex-direction: column;
    display: flex;
  }

  .mentor-chat-view.is-mobile .mentor-chat-header {
    border: 0;
    flex: 0 0 60px;
    align-items: center;
    gap: 6px;
    height: 60px;
    padding: 0;
    font-size: 17px;
    display: flex;
  }

  .mentor-chat-view.is-mobile .mentor-chat-header > strong {
    font-size: 19px;
    font-weight: 700;
  }

  .mentor-chat-view.is-mobile .mentor-chat-header > span {
    margin-left: 1px;
    font-size: 16px;
    font-weight: 400;
  }

  .mentor-chat-view.is-mobile .mentor-chat-header > i {
    clip-path: polygon(50% 0, 63% 36%, 100% 50%, 63% 64%, 50% 100%, 37% 64%, 0 50%, 37% 36%);
    background: linear-gradient(135deg, #ff5275, #d400ff);
    flex: 0 0 13px;
    width: 13px;
    height: 13px;
  }

  .mentor-chat-view.is-mobile .mentor-message-log {
    flex: auto;
    gap: 34px;
    height: auto;
    min-height: 0;
    padding: 5px 0 24px;
  }

  .mentor-chat-view.is-mobile .mentor-message {
    display: block;
  }

  .mentor-chat-view.is-mobile .mentor-message-avatar {
    display: none;
  }

  .mentor-chat-view.is-mobile .mentor-message p {
    max-width: 100%;
    box-shadow: none;
    color: #26262b;
    background: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.85;
  }

  .mentor-chat-view.is-mobile .mentor-message.user p {
    color: #33333a;
    background: #f1f1f1;
    border-radius: 18px 18px 0;
    width: min(302px, 76%);
    margin-left: auto;
    padding: 14px 16px;
    line-height: 1.75;
  }

  .mentor-chat-view.is-mobile .mentor-message .mentor-markdown {
    max-width: 100%;
    box-shadow: none;
    color: #26262b;
    background: none;
    border-radius: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.85;
  }

  .mentor-chat-view.is-mobile .mentor-message.is-error .mentor-markdown {
    color: #a02d38;
    background: #fff8f8;
    border: 1px solid #ffd9dc;
    border-radius: 10px;
    padding: 12px 14px;
  }

  .mentor-chat-view.is-mobile .mentor-message .mentor-markdown p {
    max-width: none;
    box-shadow: none;
    color: inherit;
    font: inherit;
    line-height: inherit;
    background: none;
    border-radius: 0;
    margin: 0 0 10px;
    padding: 0;
  }

  .mentor-chat-view.is-mobile .mentor-message.is-typing p {
    background: #f6f3f8;
    border-radius: 18px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 60px;
    min-height: 36px;
    display: flex;
  }
}

@media (max-width: 767px) {
  .mentor-popup-profile strong {
    font-size: 40px;
  }

  .mentor-mobile-dialog.is-intro .mentor-composer.is-mobile {
    padding-bottom: 100px;
  }

  .mentor-mobile-prompt {
    font-size: 22px;
  }

  .mentor-composer.is-mobile form {
    min-height: 80px;
  }

  .mentor-chat-view.is-mobile .mentor-message p {
    font-size: 15px;
  }
}

@keyframes mentor-sheet-in {
  from {
    opacity: .65;
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.mentor-mobile-modal.is-closing .mentor-mobile-dialog {
  animation: .3s cubic-bezier(.65, 0, .35, 1) both mentor-sheet-out;
}

.mentor-mobile-modal.is-closing .mentor-mobile-dim {
  animation: .3s both mentor-dim-out;
}

@keyframes mentor-sheet-out {
  from {
    opacity: 1;
    transform: none;
  }

  to {
    opacity: .72;
    transform: translateY(100%);
  }
}

@keyframes mentor-dim-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.quick-menu-root {
  align-items: center;
  height: 40px;
  display: flex;
}

.site-header.is-quick-menu-open {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background: #f1f1f4;
}

.site-header.is-mobile-menu-open {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background: #fff;
}

.quick-menu[aria-expanded="true"]:after {
  transform: scaleX(1);
}

.quick-menu[aria-expanded="true"] .mini-chevron:before {
  transform: translateY(1px)rotate(225deg);
}

.quick-menu-panel {
  z-index: 190;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  background: #f1f1f4;
  padding: 20px 0;
  transition: opacity .18s, transform .24s cubic-bezier(.22, 1, .36, 1), visibility 0s linear .24s;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  transform: translateY(-12px);
}

.quick-menu-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
  transform: none;
}

.quick-menu-surface {
  background: #fff;
  border-radius: 8px;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 20px;
  width: min(100% - 80px, 1396px);
  height: 142px;
  margin: 0 auto;
  padding: 20px;
  display: grid;
}

.quick-menu-intro {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.quick-menu-intro p {
  color: #09090b;
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}

.desktop-nav .quick-menu-intro a {
  color: #17171d;
  justify-content: flex-start;
  gap: 3px;
  width: max-content;
  min-height: 24px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
}

.desktop-nav .quick-menu-panel a:after {
  display: none;
}

.quick-menu-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  display: grid;
}

.desktop-nav .quick-menu-item {
  align-items: center;
  justify-content: initial;
  border-radius: 8px;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  min-width: 0;
  height: 41px;
  line-height: 1.2;
  transition: background-color .16s, transform .16s;
  display: grid;
}

.desktop-nav .quick-menu-item:hover, .desktop-nav .quick-menu-item:focus-visible {
  background: none;
  transform: none;
}

.quick-menu-icon {
  color: #fff;
  isolation: isolate;
  background: linear-gradient(145deg, #595963 15.972%, #09090b 84.722%);
  border-radius: 50%;
  flex: none;
  place-items: center;
  width: 24px;
  height: 24px;
  transition: background .18s, box-shadow .18s, transform .22s cubic-bezier(.2, .8, .25, 1);
  display: grid;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px #ffffff26;
}

.quick-menu-icon:before {
  z-index: 0;
  border-radius: inherit;
  content: "";
  filter: brightness(.72) saturate(.82);
  opacity: 0;
  background: linear-gradient(145deg, #8f5be8 0%, #c95cdd 54%, #ed68c8 100%);
  transition: opacity .3s, filter .36s cubic-bezier(.18, .74, .24, 1);
  position: absolute;
  inset: 0;
}

.quick-menu-icon > img:not(.quick-menu-icon-part) {
  z-index: 1;
  position: relative;
}

.desktop-nav .quick-menu-item:hover .quick-menu-icon, .desktop-nav .quick-menu-item:focus-visible .quick-menu-icon {
  transform: none;
  box-shadow: 0 3px 8px #eb56bf2e, inset 0 0 0 1px #ffffff3d;
}

.desktop-nav .quick-menu-item:hover .quick-menu-icon:before, .desktop-nav .quick-menu-item:focus-visible .quick-menu-icon:before {
  filter: brightness(1.1) saturate(1.04);
  opacity: 1;
}

.quick-menu-icon-part {
  z-index: 1;
  position: absolute;
  top: 6.5px;
}

@media (prefers-reduced-motion: reduce) {
  .quick-menu-icon, .quick-menu-icon:before {
    transition: none;
  }

  .desktop-nav .quick-menu-item:hover .quick-menu-icon:before, .desktop-nav .quick-menu-item:focus-visible .quick-menu-icon:before {
    filter: none;
    opacity: 1;
  }
}

.quick-menu-icon-part.is-left {
  left: 7px;
}

.quick-menu-icon-part.is-right {
  right: 7px;
}

.quick-menu-item > span:last-child, .mobile-quick-menu a > span:last-child {
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  display: flex;
}

.quick-menu-item strong, .mobile-quick-menu strong {
  color: #15151b;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 600;
  overflow: hidden;
}

.desktop-nav .quick-menu-item strong {
  text-overflow: clip;
  width: max-content;
  max-width: 100%;
  position: relative;
  overflow: visible;
}

.desktop-nav .quick-menu-item strong:after {
  content: "";
  opacity: 0;
  transform-origin: 0;
  background: #15151b;
  height: 1px;
  transition: opacity .14s, transform .2s cubic-bezier(.2, .8, .25, 1);
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  transform: scaleX(0);
}

.desktop-nav .quick-menu-item:hover strong:after, .desktop-nav .quick-menu-item:focus-visible strong:after {
  opacity: 1;
  transform: scaleX(1);
}

.desktop-nav .quick-menu-item:focus-visible {
  outline-offset: 4px;
  outline: 2px solid #ef4bba38;
}

.quick-menu-item small, .mobile-quick-menu small {
  color: #464654;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.25;
  overflow: hidden;
}

@media (min-width: 960px) and (max-width: 1180px) {
  .quick-menu-surface {
    grid-template-columns: 165px minmax(0, 1fr);
    gap: 18px;
    width: calc(100% - 48px);
  }

  .quick-menu-grid {
    column-gap: 10px;
  }

  .desktop-nav .quick-menu-item {
    gap: 8px;
    padding-inline: 2px;
  }

  .quick-menu-item strong {
    font-size: 14px;
  }

  .quick-menu-item small {
    font-size: 11px;
  }
}

@media (max-width: 959px) {
  .quick-menu-panel {
    display: none;
  }

  .mobile-quick-menu {
    border-top: 1px solid #ededf2;
    margin-top: 18px;
    padding-top: 22px;
  }

  .mobile-quick-menu h2 {
    color: #717188;
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 700;
  }

  .mobile-quick-menu > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    display: grid;
  }

  .mobile-nav .mobile-quick-menu a {
    background: #fafafe;
    border: 1px solid #ececf2;
    border-radius: 9px;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
    min-width: 0;
    min-height: 66px;
    padding: 10px;
    display: grid;
  }

  .mobile-quick-menu .quick-menu-icon {
    width: 30px;
    height: 30px;
  }

  .mobile-quick-menu strong {
    font-size: 13px;
  }

  .mobile-quick-menu small {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, :before, :after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    animation-delay: 0s !important;
  }
}

/* [project]/components/job-report-modal-provider.module.css [app-client] (css) */
.job-report-modal-provider-module__cdbdba__backdrop {
  z-index: 5000;
  -webkit-backdrop-filter: blur(2.5px);
  backdrop-filter: blur(2.5px);
  background: #17181f6b;
  place-items: center;
  padding: 24px 16px;
  animation: .22s ease-out both job-report-modal-provider-module__cdbdba__backdrop-in;
  display: grid;
  position: fixed;
  inset: 0;
  overflow-y: auto;
}

.job-report-modal-provider-module__cdbdba__dialog {
  color: #20212a;
  background: #fff;
  border-radius: 7px;
  width: min(400px, 100vw - 32px);
  max-height: calc(100dvh - 48px);
  animation: .26s cubic-bezier(.18, .82, .24, 1) both job-report-modal-provider-module__cdbdba__dialog-in;
  overflow: auto;
  box-shadow: 0 24px 80px #1612263d;
}

.job-report-modal-provider-module__cdbdba__isClosing {
  animation: .22s ease-in both job-report-modal-provider-module__cdbdba__backdrop-out;
}

.job-report-modal-provider-module__cdbdba__isClosing .job-report-modal-provider-module__cdbdba__dialog {
  animation: .2s ease-in both job-report-modal-provider-module__cdbdba__dialog-out;
}

.job-report-modal-provider-module__cdbdba__header {
  border-bottom: 1px solid #e7e8ef;
  place-items: center;
  height: 58px;
  display: grid;
  position: relative;
}

.job-report-modal-provider-module__cdbdba__header h2 {
  letter-spacing: -.045em;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.job-report-modal-provider-module__cdbdba__closeButton {
  cursor: pointer;
  background: none;
  border: 0;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
}

.job-report-modal-provider-module__cdbdba__closeButton:before, .job-report-modal-provider-module__cdbdba__closeButton:after {
  content: "";
  background: #16171c;
  width: 19px;
  height: 1.5px;
  position: absolute;
  top: 15px;
  left: 7px;
}

.job-report-modal-provider-module__cdbdba__closeButton:before {
  transform: rotate(45deg);
}

.job-report-modal-provider-module__cdbdba__closeButton:after {
  transform: rotate(-45deg);
}

.job-report-modal-provider-module__cdbdba__closeButton:hover:before, .job-report-modal-provider-module__cdbdba__closeButton:hover:after {
  background: #7042ef;
}

.job-report-modal-provider-module__cdbdba__intro {
  color: #723cff;
  text-align: center;
  letter-spacing: -.03em;
  word-break: keep-all;
  overflow-wrap: break-word;
  flex-direction: column;
  margin: 20px 30px 31px;
  font-size: 13px;
  line-height: 1.55;
  display: flex;
}

.job-report-modal-provider-module__cdbdba__intro strong {
  font-weight: 700;
}

.job-report-modal-provider-module__cdbdba__form {
  padding: 0 30px 30px;
  position: relative;
}

.job-report-modal-provider-module__cdbdba__honeypot {
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  position: absolute !important;
  overflow: hidden !important;
}

.job-report-modal-provider-module__cdbdba__form label {
  display: block;
}

.job-report-modal-provider-module__cdbdba__form label > span {
  color: #4a4c58;
  margin-bottom: 9px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  display: block;
}

.job-report-modal-provider-module__cdbdba__form label b {
  color: #ff5e5e;
  margin-left: 4px;
}

.job-report-modal-provider-module__cdbdba__form input, .job-report-modal-provider-module__cdbdba__form textarea {
  color: #2c2e38;
  width: 100%;
  font: inherit;
  background: #fff;
  border: 1px solid #d8dae5;
  border-radius: 4px;
  outline: none;
  font-size: 12px;
  transition: border-color .16s, box-shadow .16s;
}

.job-report-modal-provider-module__cdbdba__form input {
  height: 41px;
  padding: 0 12px;
}

.job-report-modal-provider-module__cdbdba__form textarea {
  resize: vertical;
  height: 160px;
  padding: 12px;
  line-height: 1.55;
}

.job-report-modal-provider-module__cdbdba__form input::placeholder, .job-report-modal-provider-module__cdbdba__form textarea::placeholder {
  color: #9295a3;
}

.job-report-modal-provider-module__cdbdba__form input:focus, .job-report-modal-provider-module__cdbdba__form textarea:focus {
  border-color: #7947f3;
  box-shadow: 0 0 0 3px #7947f31c;
}

.job-report-modal-provider-module__cdbdba__hint {
  color: #8b8e9c;
  letter-spacing: -.03em;
  word-break: keep-all;
  align-items: flex-start;
  gap: 4px;
  margin: 8px 0 28px;
  font-size: 10px;
  line-height: 1.5;
  display: flex;
}

.job-report-modal-provider-module__cdbdba__hint i {
  border: 1px solid;
  border-radius: 50%;
  flex: 0 0 11px;
  place-items: center;
  width: 11px;
  height: 11px;
  margin-top: 1px;
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  display: inline-grid;
}

.job-report-modal-provider-module__cdbdba__opinion {
  margin-bottom: 40px;
}

.job-report-modal-provider-module__cdbdba__formError {
  color: #e24655;
  text-align: center;
  word-break: keep-all;
  margin: -27px 0 15px;
  font-size: 11px;
  line-height: 1.45;
}

.job-report-modal-provider-module__cdbdba__submitButton, .job-report-modal-provider-module__cdbdba__success button {
  color: #fff;
  cursor: pointer;
  background: #4f00a8;
  border: 0;
  height: 52px;
  font-size: 14px;
  font-weight: 700;
  transition: background-color .16s, transform .16s;
}

.job-report-modal-provider-module__cdbdba__submitButton {
  width: calc(100% + 60px);
  margin: 0 -30px -30px;
}

.job-report-modal-provider-module__cdbdba__submitButton:hover, .job-report-modal-provider-module__cdbdba__success button:hover {
  background: #6421c5;
}

.job-report-modal-provider-module__cdbdba__submitButton:active, .job-report-modal-provider-module__cdbdba__success button:active {
  transform: translateY(1px);
}

.job-report-modal-provider-module__cdbdba__submitButton:disabled {
  cursor: wait;
  opacity: .72;
}

.job-report-modal-provider-module__cdbdba__success {
  text-align: center;
  flex-direction: column;
  align-items: center;
  min-height: 390px;
  padding: 56px 30px 0;
  display: flex;
}

.job-report-modal-provider-module__cdbdba__success > span {
  color: #7042ef;
  background: #f0e9ff;
  border-radius: 50%;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 800;
  display: grid;
}

.job-report-modal-provider-module__cdbdba__success h3 {
  margin: 0 0 9px;
  font-size: 18px;
}

.job-report-modal-provider-module__cdbdba__success p {
  color: #777b8c;
  word-break: keep-all;
  margin: 0;
  font-size: 12px;
}

.job-report-modal-provider-module__cdbdba__success button {
  width: calc(100% + 60px);
  margin: auto -30px 0;
}

@keyframes job-report-modal-provider-module__cdbdba__backdrop-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes job-report-modal-provider-module__cdbdba__backdrop-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes job-report-modal-provider-module__cdbdba__dialog-in {
  from {
    opacity: 0;
    transform: translateY(14px)scale(.975);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes job-report-modal-provider-module__cdbdba__dialog-out {
  from {
    opacity: 1;
    transform: none;
  }

  to {
    opacity: 0;
    transform: translateY(8px)scale(.985);
  }
}

@media (max-width: 479px) {
  .job-report-modal-provider-module__cdbdba__backdrop {
    padding: 12px;
  }

  .job-report-modal-provider-module__cdbdba__dialog {
    width: min(400px, 100vw - 24px);
    max-height: calc(100dvh - 24px);
  }

  .job-report-modal-provider-module__cdbdba__intro {
    margin-inline: 22px;
  }

  .job-report-modal-provider-module__cdbdba__form {
    padding-inline: 22px;
  }

  .job-report-modal-provider-module__cdbdba__submitButton {
    width: calc(100% + 44px);
    margin-inline: -22px;
  }

  .job-report-modal-provider-module__cdbdba__success {
    padding-inline: 22px;
  }

  .job-report-modal-provider-module__cdbdba__success button {
    width: calc(100% + 44px);
    margin-inline: -22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .job-report-modal-provider-module__cdbdba__backdrop, .job-report-modal-provider-module__cdbdba__dialog, .job-report-modal-provider-module__cdbdba__isClosing, .job-report-modal-provider-module__cdbdba__isClosing .job-report-modal-provider-module__cdbdba__dialog {
    animation-duration: 1ms;
  }
}

/*# sourceMappingURL=_1-77mt9._.css.map*/