@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Inter+Tight:wght@600;700;800&family=Manrope:wght@400;500;600;700&display=swap");

.ke-preview {
  --ke-plum: #111318;
  --ke-ivory: #f7f8fa;
  --ke-white: #ffffff;
  --ke-coral: #ffb000;
  --ke-coral-hover: #e69d00;
  --ke-violet: #111318;
  --ke-violet-hover: #262a32;
  --ke-citron: #ffb000;
  --ke-teal: #16a34a;
  --ke-primary: #111318;
  --ke-secondary: #4b5563;
  --ke-muted: #6b7280;
  --ke-subtle: #9ca3af;
  --ke-border: #d9dde5;
  --ke-soft-border: #eceef2;
  --ke-elevated: #ffffff;
  --ke-soft-coral: #fff6d8;
  --ke-soft-violet: #f7f8fa;
  --ke-soft-citron: #fff6d8;
  --ke-soft-teal: #ecfdf3;
  --ke-soft-plum: #eceef2;
  background: var(--ke-white);
  color: var(--ke-primary);
  font-family: "Inter", "Manrope", "Avenir Next", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  min-height: 100vh;
  overflow: hidden;
}

.ke-preview *,
.ke-preview *::before,
.ke-preview *::after {
  box-sizing: border-box;
}

.ke-preview a {
  color: inherit;
  text-decoration: none;
}

.ke-preview button,
.ke-preview input,
.ke-preview select {
  font: inherit;
}

.ke-preview button {
  cursor: pointer;
}

.ke-preview h1,
.ke-preview h2,
.ke-preview h3 {
  font-family: "Inter Tight", "Manrope", "Avenir Next Condensed", Arial, sans-serif;
  font-weight: 700;
}

.ke-preview :where(a, button, input):focus-visible {
  border-radius: 8px;
  box-shadow: 0 0 0 2px var(--ke-white), 0 0 0 5px var(--ke-coral);
  outline: none;
}

.ke-shell {
  margin: 0 auto;
  max-width: 1440px;
  padding-left: clamp(20px, 4vw, 60px);
  padding-right: clamp(20px, 4vw, 60px);
  width: 100%;
}

.ke-header {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--ke-soft-border);
  color: var(--ke-primary);
  height: 84px;
  position: relative;
  z-index: 20;
}

.ke-header-inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
}

.ke-brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
}

.ke-brand-logo {
  display: block;
  height: auto;
  width: 208px;
}

.ke-header .ke-brand-logo {
  filter: none;
}

.ke-desktop-nav {
  align-items: center;
  display: flex;
  gap: clamp(19px, 2vw, 32px);
}

.ke-desktop-nav a,
.ke-nav-login {
  background: none;
  border: 0;
  color: #343840;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 0;
  transition: color 180ms ease;
}

.ke-desktop-nav a:hover,
.ke-nav-login:hover {
  color: var(--ke-primary);
}

.ke-header-actions {
  align-items: center;
  display: flex;
  gap: 12px;
}

.ke-button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 12px;
  display: inline-flex;
  font-weight: 650;
  gap: 8px;
  justify-content: center;
  min-height: 50px;
  padding: 0 23px;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ke-button:hover {
  transform: translateY(-2px);
}

.ke-button-small {
  min-height: 44px;
  padding: 0 19px;
}

.ke-button-coral {
  background: var(--ke-coral);
  color: var(--ke-plum);
}

.ke-button-coral:hover {
  background: var(--ke-coral-hover);
}

.ke-preview .ke-button-violet {
  background: var(--ke-violet);
  color: var(--ke-white);
}

.ke-button-violet:hover {
  background: var(--ke-violet-hover);
}

.ke-button-ghost {
  background: transparent;
  border-color: var(--ke-border);
  color: var(--ke-primary);
}

.ke-nav-status {
  background: none;
  border: 0;
  color: var(--ke-muted);
  font-size: 13px;
}

.ke-menu-trigger {
  background: var(--ke-plum);
  border: 1px solid var(--ke-plum);
  border-radius: 10px;
  display: none;
  height: 44px;
  padding: 0 12px;
  width: 48px;
}

.ke-menu-trigger span {
  background: var(--ke-white);
  display: block;
  height: 2px;
  margin: 5px auto;
  width: 20px;
}

.ke-mobile-menu,
.ke-mobile-backdrop {
  display: none;
}

.ke-hero {
  background: var(--ke-white);
  padding: 28px 0 76px;
}

.ke-hero-grid {
  align-items: stretch;
  background: var(--ke-plum);
  border-radius: 28px;
  color: var(--ke-white);
  display: grid;
  gap: clamp(36px, 4.5vw, 70px);
  grid-template-columns: minmax(0, 1.04fr) minmax(480px, 0.96fr);
  min-height: 700px;
  overflow: hidden;
  padding: clamp(42px, 5vw, 74px);
  position: relative;
}

.ke-hero-grid::before {
  background: radial-gradient(circle, rgba(255, 176, 0, 0.22), transparent 66%);
  content: "";
  height: 520px;
  left: -270px;
  pointer-events: none;
  position: absolute;
  top: -230px;
  width: 520px;
}

.ke-hero-copy {
  align-self: center;
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.ke-eyebrow,
.ke-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ke-eyebrow {
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  gap: 12px;
  margin: 0;
}

.ke-eyebrow > span {
  background: var(--ke-coral);
  border-radius: 20px;
  height: 3px;
  position: relative;
  width: 48px;
}

.ke-eyebrow > span::after {
  background: var(--ke-coral);
  border-radius: 50%;
  content: "";
  height: 9px;
  position: absolute;
  right: -2px;
  top: -3px;
  width: 9px;
}

.ke-hero h1 {
  font-size: clamp(56px, 5.2vw, 78px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.94;
  margin: 28px 0 25px;
}

.ke-hero h1 em {
  color: var(--ke-coral);
  font-family: inherit;
  font-style: normal;
}

.ke-hero h1 i {
  background: var(--ke-coral);
  border-radius: 2px;
  display: inline-block;
  height: 10px;
  margin-left: 10px;
  transform: translateY(-28px) rotate(8deg);
  width: 10px;
}

.ke-hero-lede {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.65;
  margin: 0 0 27px;
  max-width: 640px;
}

.ke-market-search {
  background: var(--ke-white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
  color: var(--ke-primary);
  padding: 8px;
}

.ke-market-search > label {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.ke-search-tabs {
  display: flex;
  gap: 4px;
  padding: 2px 2px 7px;
}

.ke-search-tabs button {
  background: transparent;
  border: 0;
  border-radius: 9px;
  color: var(--ke-muted);
  font-size: 12px;
  font-weight: 700;
  min-height: 38px;
  padding: 0 14px;
}

.ke-search-tabs button.active {
  background: var(--ke-plum);
  color: var(--ke-white);
}

.ke-search-control {
  align-items: center;
  border: 1px solid var(--ke-border);
  border-radius: 12px;
  display: grid;
  gap: 8px;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  min-height: 58px;
  padding: 6px 6px 6px 15px;
}

.ke-search-control > span {
  color: var(--ke-primary);
  font-family: Georgia, serif;
  font-size: 29px;
  line-height: 1;
  transform: rotate(-18deg);
}

.ke-search-control input {
  background: transparent;
  border: 0;
  color: var(--ke-primary);
  min-width: 0;
  outline: 0;
  padding: 8px 0;
  width: 100%;
}

.ke-search-control input::placeholder {
  color: #7b818d;
}

.ke-search-submit {
  align-items: center;
  background: var(--ke-coral);
  border-radius: 9px;
  color: var(--ke-primary);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
}

.ke-search-submit:hover {
  background: var(--ke-coral-hover);
}

.ke-popular-searches {
  align-items: center;
  color: rgba(255, 255, 255, 0.58);
  display: flex;
  flex-wrap: wrap;
  font-size: 11px;
  gap: 8px 13px;
  margin-top: 16px;
}

.ke-popular-searches a {
  border-bottom: 1px solid rgba(255, 176, 0, 0.55);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  padding-bottom: 2px;
}

.ke-popular-searches a:hover {
  border-color: var(--ke-coral);
  color: var(--ke-coral);
}

.ke-hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 27px;
}

.ke-hero .ke-button-violet {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--ke-white);
}

.ke-hero .ke-button-violet:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.78);
}

.ke-hero .ke-text-link {
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 2px;
}

.ke-hero-media {
  align-self: stretch;
  background: #252930;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 21px;
  min-height: 570px;
  overflow: hidden;
  position: relative;
}

.ke-hero-video {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  opacity: 0.77;
  pointer-events: none;
  position: absolute;
  width: 100%;
}

.ke-hero-media-scrim {
  background:
    linear-gradient(180deg, rgba(17, 19, 24, 0.18), rgba(17, 19, 24, 0.75)),
    linear-gradient(90deg, rgba(17, 19, 24, 0.2), transparent 58%);
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.ke-media-label {
  align-items: center;
  background: rgba(17, 19, 24, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--ke-white);
  display: inline-flex;
  font-size: 10px;
  font-weight: 700;
  gap: 8px;
  left: 20px;
  letter-spacing: 0.07em;
  margin: 0;
  padding: 9px 13px;
  position: absolute;
  text-transform: uppercase;
  top: 20px;
  z-index: 2;
}

.ke-media-label span {
  background: var(--ke-teal);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2);
  height: 7px;
  width: 7px;
}

.ke-marketplace-story {
  bottom: 95px;
  display: grid;
  gap: 10px;
  left: 20px;
  position: absolute;
  right: 20px;
  z-index: 2;
}

.ke-story-card {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 13px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  color: var(--ke-primary);
  display: grid;
  padding: 14px 16px;
}

.ke-story-card small,
.ke-story-card span {
  color: var(--ke-muted);
  font-size: 9px;
}

.ke-story-card small {
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ke-story-card strong {
  font-family: "Inter Tight", sans-serif;
  font-size: 15px;
  margin: 2px 0;
}

.ke-story-brief {
  margin-right: 18%;
}

.ke-story-match {
  background: var(--ke-coral);
  border-color: var(--ke-coral);
  margin-left: 13%;
}

.ke-story-match small,
.ke-story-match span {
  color: rgba(17, 19, 24, 0.68);
}

.ke-story-profile {
  align-items: center;
  gap: 11px;
  grid-template-columns: 45px minmax(0, 1fr) auto;
  margin-right: 5%;
}

.ke-story-avatar {
  align-items: center;
  background: var(--ke-soft-coral);
  border: 2px solid var(--ke-coral);
  border-radius: 50%;
  color: var(--ke-primary) !important;
  display: flex;
  font-size: 12px !important;
  font-weight: 700;
  height: 43px;
  justify-content: center;
  width: 43px;
}

.ke-story-profile > div {
  display: grid;
}

.ke-story-profile b {
  align-items: center;
  color: #137f3a;
  display: inline-flex;
  font-size: 9px;
  gap: 5px;
  text-transform: uppercase;
}

.ke-story-profile b i {
  background: var(--ke-teal);
  border-radius: 50%;
  height: 6px;
  width: 6px;
}

.ke-story-success {
  align-items: center;
  background: #fff4cf;
  gap: 11px;
  grid-template-columns: 37px 1fr;
  margin-left: 9%;
}

.ke-story-success > span {
  align-items: center;
  background: var(--ke-teal);
  border-radius: 50%;
  color: var(--ke-white);
  display: flex;
  font-size: 17px;
  height: 35px;
  justify-content: center;
  width: 35px;
}

.ke-story-success > div {
  display: grid;
}

.ke-media-caption {
  align-items: end;
  bottom: 20px;
  color: var(--ke-white);
  display: grid;
  grid-template-columns: 1fr auto;
  left: 20px;
  position: absolute;
  right: 20px;
  z-index: 2;
}

.ke-media-caption span,
.ke-media-caption small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ke-media-caption strong {
  font-family: "Inter Tight", sans-serif;
  font-size: 19px;
  grid-column: 1;
}

.ke-media-caption small {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.ke-section {
  padding: 106px 0;
}

.ke-section-heading {
  align-items: end;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1.18fr) minmax(270px, 0.82fr);
  margin-bottom: 50px;
}

.ke-section-heading h2 {
  font-size: clamp(38px, 4vw, 58px);
  letter-spacing: -0.055em;
  line-height: 1;
  margin: 10px 0 0;
  max-width: 850px;
}

.ke-section-heading > p {
  color: var(--ke-secondary);
  line-height: 1.7;
  margin: 0;
  max-width: 580px;
}

.ke-heading-row {
  align-items: end;
  display: flex;
  justify-content: space-between;
}

.ke-heading-row > div {
  max-width: 850px;
}

.ke-kicker {
  color: #8a6200;
  margin: 0;
}

.ke-momentum {
  background: var(--ke-coral);
  display: block;
  height: 3px;
  margin-bottom: 23px;
  position: relative;
  width: 74px;
}

.ke-momentum i {
  background: var(--ke-coral);
  border-radius: 50%;
  height: 9px;
  position: absolute;
  right: -3px;
  top: -3px;
  width: 9px;
}

.ke-text-link {
  border-bottom: 1px solid currentColor;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  padding-bottom: 4px;
}

.ke-value-section {
  background: var(--ke-white);
  padding-top: 48px;
}

.ke-value-grid {
  border-bottom: 1px solid var(--ke-border);
  border-left: 1px solid var(--ke-border);
  border-radius: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.ke-value-card {
  background: var(--ke-white);
  border-right: 1px solid var(--ke-border);
  border-top: 1px solid var(--ke-border);
  min-height: 270px;
  padding: 30px;
  position: relative;
}

.ke-value-card > span {
  color: var(--ke-subtle);
  font-size: 10px;
  font-weight: 700;
}

.ke-value-card h3 {
  font-size: 22px;
  letter-spacing: -0.03em;
  margin: 37px 0 10px;
}

.ke-value-card p {
  color: var(--ke-muted);
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}

.ke-geo-icon {
  align-items: end;
  border: 2px solid var(--ke-primary);
  border-radius: 12px;
  display: flex;
  height: 44px;
  justify-content: center;
  position: absolute;
  right: 28px;
  top: 28px;
  width: 44px;
}

.ke-geo-icon::before,
.ke-geo-icon::after,
.ke-geo-icon i {
  background: var(--ke-primary);
  content: "";
  display: block;
  margin: 3px;
  width: 6px;
}

.ke-geo-icon::before {
  height: 13px;
}

.ke-geo-icon i {
  background: var(--ke-coral);
  height: 25px;
}

.ke-geo-icon::after {
  height: 18px;
}

.ke-human-section {
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 176, 0, 0.12), transparent 28%),
    var(--ke-ivory);
  overflow: clip;
  padding-bottom: 120px;
  padding-top: 120px;
}

.ke-human-frame {
  align-items: stretch;
  background: var(--ke-white);
  border: 1px solid var(--ke-border);
  border-radius: 28px 28px 28px 6px;
  box-shadow: 0 28px 80px rgba(17, 19, 24, 0.1);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  min-height: 680px;
  overflow: hidden;
}

.ke-human-photo {
  background: var(--ke-plum);
  margin: 0;
  min-height: 680px;
  overflow: hidden;
  position: relative;
}

.ke-human-photo::after {
  background: linear-gradient(180deg, transparent 48%, rgba(17, 19, 24, 0.8));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.ke-human-photo img {
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
  transform: scale(1.045);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.ke-human-frame.is-visible .ke-human-photo img {
  transform: scale(1);
}

.ke-human-note {
  align-items: center;
  animation: ke-human-note-settle 880ms cubic-bezier(0.22, 1, 0.36, 1) 480ms both;
  background: var(--ke-coral);
  border-radius: 14px 14px 3px 14px;
  box-shadow: 0 16px 38px rgba(17, 19, 24, 0.2);
  color: var(--ke-plum);
  display: flex;
  gap: 10px;
  max-width: 245px;
  padding: 15px 18px;
  position: absolute;
  right: 26px;
  top: 28px;
  transform: rotate(2deg);
  z-index: 2;
}

.ke-human-note span {
  font-size: 18px;
}

.ke-human-note strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-style: italic;
  line-height: 1.2;
}

.ke-human-photo figcaption {
  align-items: end;
  bottom: 0;
  color: var(--ke-white);
  display: flex;
  font-size: 11px;
  justify-content: space-between;
  left: 0;
  padding: 34px;
  position: absolute;
  right: 0;
  z-index: 2;
}

.ke-human-photo figcaption span {
  font-size: 15px;
  font-weight: 700;
}

.ke-human-photo figcaption a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ke-human-copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 6vw, 82px);
}

.ke-human-copy .ke-kicker {
  color: #9a6900;
}

.ke-human-copy h2 {
  font-size: clamp(48px, 5vw, 74px);
  letter-spacing: -0.065em;
  line-height: 0.93;
  margin: 16px 0 28px;
  max-width: 720px;
  text-wrap: balance;
}

.ke-human-copy h2::after {
  background: var(--ke-coral);
  border-radius: 999px;
  content: "";
  display: block;
  height: 7px;
  margin-top: 18px;
  transform: rotate(-1deg);
  width: min(180px, 42%);
}

.ke-human-lede {
  color: var(--ke-secondary);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.75;
  margin: 0 0 34px;
  max-width: 640px;
}

.ke-human-perspectives {
  border-bottom: 1px solid var(--ke-border);
  border-top: 1px solid var(--ke-border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 34px;
  width: 100%;
}

.ke-human-perspectives > div {
  padding: 24px 22px 24px 0;
}

.ke-human-perspectives > div + div {
  border-left: 1px solid var(--ke-border);
  padding-left: 24px;
}

.ke-human-perspectives span {
  color: #8b6100;
  display: block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  margin-bottom: 9px;
  text-transform: uppercase;
}

.ke-human-perspectives strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.ke-human-perspectives p {
  color: var(--ke-muted);
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}

.ke-human-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.ke-human-primary {
  align-items: center;
  background: var(--ke-coral);
  border: 1px solid var(--ke-coral);
  border-radius: 12px 12px 12px 2px;
  color: var(--ke-plum);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 19px;
  width: 210px;
}

.ke-human-primary::after {
  content: "↗";
  font-size: 18px;
}

.ke-human-primary:hover {
  background: var(--ke-coral-hover);
  border-color: var(--ke-coral-hover);
}

.ke-human-secondary {
  border-bottom: 1px solid var(--ke-plum);
  color: var(--ke-plum);
  font-size: 13px;
  font-weight: 800;
  padding: 12px 0 8px;
}

.ke-talent-avatar img {
  border-radius: inherit;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

@keyframes ke-human-note-settle {
  from {
    opacity: 0;
    transform: translateY(-16px) rotate(5deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(2deg);
  }
}

.ke-categories-section {
  background: var(--ke-ivory);
}

.ke-category-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ke-category-card {
  background: var(--ke-white);
  border: 1px solid var(--ke-soft-border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  overflow: hidden;
  padding: 27px;
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ke-category-card:hover {
  border-color: #c8ccd4;
  box-shadow: 0 18px 46px rgba(17, 19, 24, 0.09);
  transform: translateY(-3px);
}

.ke-category-icon {
  align-items: center;
  background: var(--ke-plum);
  border-radius: 11px;
  color: var(--ke-coral);
  display: flex;
  font-size: 12px;
  font-weight: 700;
  height: 45px;
  justify-content: center;
  margin-bottom: 25px;
  width: 45px;
}

.ke-category-label {
  color: var(--ke-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ke-category-card h3 {
  font-size: 24px;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 7px 0 9px;
}

.ke-category-card p {
  color: var(--ke-muted);
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}

.ke-category-skills,
.ke-talent-skills,
.ke-job-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ke-category-skills {
  margin: 22px 0 25px;
}

.ke-category-skills span,
.ke-talent-skills span,
.ke-job-skills span {
  background: var(--ke-ivory);
  border: 1px solid var(--ke-soft-border);
  border-radius: 999px;
  color: var(--ke-secondary);
  font-size: 9px;
  font-weight: 600;
  padding: 6px 9px;
}

.ke-category-card footer {
  align-items: center;
  border-top: 1px solid var(--ke-soft-border);
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 17px;
}

.ke-category-card footer > span {
  color: var(--ke-muted);
  font-size: 9px;
}

.ke-category-card footer b {
  font-size: 10px;
}

.ke-category-card footer i {
  color: #8a6200;
  font-style: normal;
}

.ke-talent-section {
  background: var(--ke-plum);
  color: var(--ke-white);
}

.ke-heading-dark .ke-kicker {
  color: var(--ke-coral);
}

.ke-talent-section .ke-button-violet {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
}

.ke-talent-section .ke-button-violet:hover {
  background: rgba(255, 255, 255, 0.08);
}

.ke-talent-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ke-preview .ke-talent-card {
  background: var(--ke-white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  color: var(--ke-primary);
  display: flex;
  flex-direction: column;
  min-height: 455px;
  padding: 23px;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.ke-talent-card:hover {
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
}

.ke-talent-card header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 21px;
}

.ke-talent-number {
  color: var(--ke-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.ke-availability {
  align-items: center;
  color: #137f3a;
  display: inline-flex;
  font-size: 8px;
  font-weight: 700;
  gap: 5px;
  text-transform: uppercase;
}

.ke-availability i,
.ke-job-status i {
  background: var(--ke-teal);
  border-radius: 50%;
  height: 6px;
  width: 6px;
}

.ke-talent-identity {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: 66px 1fr;
  margin: 29px 0 21px;
}

.ke-talent-avatar {
  align-items: center;
  background: var(--ke-soft-coral);
  border: 2px solid var(--ke-coral);
  border-radius: 50%;
  display: flex;
  font-family: "Inter Tight", sans-serif;
  font-size: 17px;
  font-weight: 700;
  height: 64px;
  justify-content: center;
  width: 64px;
}

.ke-talent-identity h3 {
  font-size: 21px;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 5px;
}

.ke-talent-identity p {
  color: var(--ke-muted);
  font-size: 10px;
  line-height: 1.4;
  margin: 0;
}

.ke-talent-skills {
  isolation: isolate;
  min-height: 56px;
  overflow: hidden;
  position: relative;
}

.ke-talent-card.is-visible .ke-talent-skills::after {
  animation: ke-talent-skill-scan 1.25s cubic-bezier(0.22, 1, 0.36, 1) calc(var(--ke-delay, 0ms) + 420ms) both;
  background: linear-gradient(90deg, transparent, rgba(255, 176, 0, 0.48), transparent);
  content: "";
  height: 100%;
  left: -50%;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: skewX(-18deg);
  width: 38%;
  z-index: 2;
}

.ke-talent-meta {
  border-bottom: 1px solid var(--ke-soft-border);
  border-top: 1px solid var(--ke-soft-border);
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
  margin: 22px 0;
  padding: 17px 0;
}

.ke-talent-meta small,
.ke-talent-card footer small {
  color: var(--ke-muted);
  display: block;
  font-size: 8px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.ke-talent-meta strong {
  display: block;
  font-size: 9px;
  line-height: 1.4;
}

.ke-talent-card footer {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-top: auto;
}

.ke-talent-card footer strong {
  font-size: 17px;
}

.ke-talent-action {
  align-items: center;
  background: var(--ke-coral);
  border-radius: 9px;
  display: inline-flex;
  font-size: 10px;
  font-weight: 700;
  gap: 8px;
  min-height: 36px;
  padding: 0 11px;
}

.ke-talent-proof {
  color: var(--ke-muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 8px;
  gap: 8px;
  margin-top: 15px;
}

.ke-demo-profile-copy,
.ke-demo-copy {
  background: var(--ke-soft-coral);
  border-radius: 7px;
  color: #795700;
  font-size: 8px;
  margin: 10px 0 0;
  padding: 7px 8px;
}

.ke-process-section {
  background: var(--ke-white);
}

.ke-process-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

.ke-process-path {
  background: var(--ke-ivory);
  border: 1px solid var(--ke-soft-border);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 46px);
}

.ke-process-path header {
  align-items: end;
  border-bottom: 1px solid var(--ke-border);
  display: flex;
  justify-content: space-between;
  padding-bottom: 25px;
}

.ke-process-path header > span {
  font-family: "Inter Tight", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.ke-process-path header p {
  color: var(--ke-muted);
  font-size: 11px;
  margin: 0;
  max-width: 240px;
  text-align: right;
}

.ke-process-path ol {
  list-style: none;
  margin: 24px 0 30px;
  padding: 0;
}

.ke-process-path li {
  align-items: center;
  border-bottom: 1px solid var(--ke-soft-border);
  display: grid;
  gap: 15px;
  grid-template-columns: 34px 1fr;
  padding: 16px 0;
}

.ke-process-path li span {
  align-items: center;
  background: var(--ke-plum);
  border-radius: 50%;
  color: var(--ke-coral);
  display: flex;
  font-size: 15px;
  height: 31px;
  justify-content: center;
  width: 31px;
}

.ke-process-path li strong {
  font-size: 13px;
}

.ke-process-violet li span {
  background: var(--ke-coral);
  color: var(--ke-plum);
}

.ke-jobs-section {
  background: var(--ke-ivory);
}

.ke-job-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ke-job-card {
  background: var(--ke-white);
  border: 1px solid var(--ke-soft-border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 28px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ke-job-card:hover {
  border-color: #c8ccd4;
  box-shadow: 0 18px 46px rgba(17, 19, 24, 0.09);
  transform: translateY(-3px);
}

.ke-job-card header {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.ke-job-card header > span {
  color: var(--ke-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ke-job-card header > div {
  align-items: center;
  display: flex;
  gap: 6px;
}

.ke-job-status {
  align-items: center;
  color: #137f3a;
  display: inline-flex;
  font-size: 8px;
  gap: 5px;
  text-transform: uppercase;
}

.ke-demo-badge {
  background: var(--ke-soft-coral);
  border-radius: 999px;
  color: #795700;
  font-size: 8px;
  padding: 5px 7px;
  text-transform: uppercase;
}

.ke-job-card h3 {
  font-size: 27px;
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin: 43px 0 10px;
}

.ke-job-company {
  color: var(--ke-muted);
  font-size: 11px;
  margin: 0 0 22px;
}

.ke-job-company i {
  background: var(--ke-coral);
  border-radius: 50%;
  display: inline-block;
  height: 4px;
  margin: 0 4px 2px;
  width: 4px;
}

.ke-job-skills {
  margin-bottom: 30px;
}

.ke-job-card footer {
  border-top: 1px solid var(--ke-soft-border);
  display: grid;
  gap: 15px;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  margin-top: auto;
  padding-top: 20px;
}

.ke-job-card footer small {
  color: var(--ke-muted);
  display: block;
  font-size: 8px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.ke-job-card footer strong,
.ke-job-card footer span {
  font-size: 10px;
}

.ke-job-card footer > b {
  align-items: center;
  display: flex;
  font-size: 10px;
  grid-column: 1 / -1;
  justify-content: space-between;
  padding-top: 5px;
}

.ke-job-card footer > b i {
  align-items: center;
  background: var(--ke-coral);
  border-radius: 8px;
  display: flex;
  font-style: normal;
  height: 31px;
  justify-content: center;
  width: 31px;
}

.ke-managed {
  background: var(--ke-white);
  padding: 105px 0;
}

.ke-managed-grid {
  display: grid;
  grid-template-columns: 35fr 65fr;
}

.ke-managed-citron,
.ke-managed-plum {
  min-height: 490px;
  padding: clamp(44px, 5vw, 70px);
}

.ke-managed-citron {
  background: var(--ke-coral);
  border-radius: 24px 0 0 24px;
  color: var(--ke-plum);
}

.ke-managed-citron .ke-kicker {
  color: rgba(17, 19, 24, 0.66);
}

.ke-managed h2 {
  font-size: clamp(42px, 5vw, 66px);
  letter-spacing: -0.06em;
  line-height: 0.96;
  margin: 25px 0;
}

.ke-managed-citron > p:last-child {
  font-size: 15px;
  line-height: 1.7;
  max-width: 470px;
}

.ke-go-spark {
  background: var(--ke-plum);
  border-radius: 3px;
  display: block;
  height: 14px;
  transform: rotate(10deg);
  width: 14px;
}

.ke-managed-plum {
  background: var(--ke-plum);
  border-radius: 0 24px 24px 0;
  color: var(--ke-white);
}

.ke-preview-label {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ke-managed-plum ul {
  list-style: none;
  margin: 25px 0 32px;
  padding: 0;
}

.ke-managed-plum li {
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  gap: 14px;
  padding: 16px 0;
}

.ke-managed-plum li i {
  background: var(--ke-coral);
  border-radius: 50%;
  flex: 0 0 auto;
  height: 7px;
  margin-top: 7px;
  width: 7px;
}

.ke-managed-plum li strong,
.ke-managed-plum li small {
  display: block;
}

.ke-managed-plum li strong {
  font-size: 13px;
}

.ke-managed-plum li small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  line-height: 1.5;
  margin-top: 4px;
}

.ke-final-cta {
  background: var(--ke-white);
  padding: 0 0 96px;
}

.ke-final-inner {
  align-items: center;
  background: var(--ke-plum);
  border-radius: 24px;
  color: var(--ke-white);
  display: grid;
  gap: 45px;
  grid-template-columns: 1.2fr 0.8fr;
  overflow: hidden;
  padding: clamp(46px, 6vw, 78px);
  position: relative;
}

.ke-final-inner::after {
  background: radial-gradient(circle, rgba(255, 176, 0, 0.25), transparent 66%);
  content: "";
  height: 480px;
  pointer-events: none;
  position: absolute;
  right: -220px;
  top: -240px;
  width: 480px;
}

.ke-final-glow {
  display: none;
}

.ke-final-brand {
  align-items: center;
  display: grid;
  gap: 25px;
  grid-template-columns: 76px 1fr;
  position: relative;
  z-index: 1;
}

.ke-final-brand > img {
  filter: invert(1) hue-rotate(180deg);
  height: 72px;
  object-fit: contain;
  width: 72px;
}

.ke-final-brand .ke-go-spark {
  background: var(--ke-coral);
  margin-bottom: 18px;
}

.ke-final-inner h2 {
  font-size: clamp(40px, 4.7vw, 61px);
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 0 0 18px;
  max-width: 780px;
}

.ke-final-inner p {
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
  max-width: 650px;
}

.ke-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

.ke-final-actions .ke-button-violet {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
}

.ke-footer {
  background: var(--ke-plum);
  color: var(--ke-white);
  padding: 76px 0 30px;
}

.ke-footer .ke-brand-logo,
.ke-mobile-menu .ke-brand-logo {
  filter: invert(1) hue-rotate(180deg);
}

.ke-footer-main {
  display: grid;
  gap: 82px;
  grid-template-columns: 0.7fr 2.3fr;
  padding-bottom: 64px;
}

.ke-footer-brand .ke-brand-logo {
  width: 225px;
}

.ke-footer-brand p {
  color: rgba(255, 255, 255, 0.54);
  font-family: "Inter Tight", "Manrope", sans-serif;
  font-size: 23px;
  line-height: 1.3;
  margin: 27px 0;
}

.ke-footer-links {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ke-footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.ke-footer-links h3 {
  color: var(--ke-coral);
  font-size: 10px;
  letter-spacing: 0.12em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.ke-footer-links a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
}

.ke-footer-links a:hover {
  color: var(--ke-white);
}

.ke-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  font-size: 10px;
  justify-content: space-between;
  padding-top: 25px;
}

.ke-state {
  background: var(--ke-white);
  border: 1px solid var(--ke-border);
  border-radius: 18px;
  padding: 54px;
  text-align: center;
}

.ke-state > span {
  align-items: center;
  background: var(--ke-coral);
  border-radius: 11px;
  display: inline-flex;
  font-size: 20px;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.ke-state h3 {
  font-size: 28px;
  margin: 20px 0 10px;
}

.ke-state p {
  color: var(--ke-muted);
  margin: 0 auto 25px;
  max-width: 600px;
}

.ke-skeleton-grid > span {
  animation: ke-pulse 1.2s ease-in-out infinite alternate;
  background: linear-gradient(100deg, var(--ke-soft-plum), var(--ke-elevated), var(--ke-soft-plum));
  border-radius: 16px;
  min-height: 300px;
}

.ke-talent-section .ke-skeleton-grid > span {
  background: linear-gradient(100deg, #191c23, #252a33, #191c23);
  min-height: 420px;
}

body.ke-menu-open {
  overflow: hidden;
}

@keyframes ke-pulse {
  to {
    opacity: 0.55;
  }
}

@media (max-width: 1180px) {
  .ke-desktop-nav {
    display: none;
  }

  .ke-menu-trigger {
    display: block;
  }

  .ke-hero-grid {
    grid-template-columns: 1fr;
  }

  .ke-hero-copy {
    max-width: 840px;
  }

  .ke-hero-media {
    min-height: 600px;
  }

  .ke-mobile-backdrop {
    background: rgba(10, 12, 16, 0.7);
    display: block;
    inset: 0;
    position: fixed;
    z-index: 28;
  }

  .ke-mobile-menu {
    background: var(--ke-plum);
    box-shadow: -30px 0 80px rgba(0, 0, 0, 0.35);
    color: var(--ke-white);
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100vh;
    padding: 24px;
    position: fixed;
    right: 0;
    top: 0;
    width: min(88vw, 390px);
    z-index: 29;
  }

  .ke-mobile-menu[hidden],
  .ke-mobile-backdrop[hidden] {
    display: none;
  }

  .ke-mobile-menu > a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 16px;
    font-weight: 600;
    padding: 17px 4px;
  }

  .ke-mobile-menu-head {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 35px;
  }

  .ke-mobile-menu-head button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    color: var(--ke-white);
    font-size: 23px;
    height: 43px;
    width: 43px;
  }

  .ke-mobile-account {
    display: grid;
    gap: 10px;
    margin-top: 24px;
  }

  .ke-mobile-account .ke-button,
  .ke-mobile-account .ke-nav-login {
    width: 100%;
  }

  .ke-value-grid,
  .ke-talent-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ke-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ke-job-grid {
    grid-template-columns: 1fr;
  }

  .ke-job-card {
    min-height: 360px;
  }

  .ke-footer-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .ke-header {
    height: 76px;
  }

  .ke-section {
    padding: 80px 0;
  }

  .ke-section-heading {
    display: block;
    margin-bottom: 38px;
  }

  .ke-section-heading > p {
    margin-top: 18px;
  }

  .ke-heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .ke-hero {
    padding-top: 18px;
  }

  .ke-hero-grid {
    border-radius: 22px;
    min-height: 0;
    padding: 46px 32px 32px;
  }

  .ke-hero h1 {
    font-size: clamp(48px, 11vw, 68px);
  }

  .ke-hero-media {
    min-height: 570px;
  }

  .ke-value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ke-category-grid,
  .ke-process-grid {
    grid-template-columns: 1fr;
  }

  .ke-talent-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ke-managed-grid {
    grid-template-columns: 1fr;
  }

  .ke-managed-citron,
  .ke-managed-plum {
    min-height: auto;
  }

  .ke-managed-citron {
    border-radius: 24px 24px 0 0;
  }

  .ke-managed-plum {
    border-radius: 0 0 24px 24px;
  }

  .ke-final-inner {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .ke-final-actions {
    justify-content: flex-start;
  }

  .ke-footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .ke-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ke-brand-logo {
    width: 165px;
  }

  .ke-header-actions > .ke-button,
  .ke-header-actions > .ke-nav-login,
  .ke-header-actions > .ke-nav-status {
    display: none;
  }

  .ke-hero {
    padding-bottom: 62px;
  }

  .ke-hero-grid {
    gap: 36px;
    padding: 39px 18px 18px;
  }

  .ke-eyebrow {
    align-items: flex-start;
    font-size: 9px;
    line-height: 1.5;
  }

  .ke-eyebrow > span {
    flex: 0 0 38px;
    margin-top: 6px;
  }

  .ke-hero h1 {
    font-size: 43px;
    letter-spacing: -0.055em;
  }

  .ke-hero h1 i {
    height: 8px;
    transform: translateY(-20px) rotate(8deg);
    width: 8px;
  }

  .ke-hero-lede {
    font-size: 15px;
  }

  .ke-search-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .ke-search-tabs button {
    padding: 0 8px;
  }

  .ke-search-control {
    grid-template-columns: 23px minmax(0, 1fr);
    padding: 8px 10px;
  }

  .ke-search-submit {
    grid-column: 1 / -1;
    width: 100%;
  }

  .ke-popular-searches {
    line-height: 1.8;
  }

  .ke-hero-actions {
    display: grid;
  }

  .ke-hero-actions .ke-button,
  .ke-hero-actions .ke-text-link {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .ke-hero-media {
    min-height: 510px;
  }

  .ke-media-label {
    font-size: 8px;
    left: 13px;
    top: 13px;
  }

  .ke-marketplace-story {
    bottom: 75px;
    gap: 7px;
    left: 11px;
    right: 11px;
  }

  .ke-story-card {
    border-radius: 10px;
    padding: 10px 11px;
  }

  .ke-story-card strong {
    font-size: 12px;
  }

  .ke-story-card small,
  .ke-story-card span {
    font-size: 7px;
  }

  .ke-story-brief,
  .ke-story-profile {
    margin-right: 0;
  }

  .ke-story-match,
  .ke-story-success {
    margin-left: 0;
  }

  .ke-story-profile {
    grid-template-columns: 35px minmax(0, 1fr);
  }

  .ke-story-profile > b {
    grid-column: 2;
  }

  .ke-story-avatar {
    height: 34px;
    width: 34px;
  }

  .ke-media-caption {
    bottom: 14px;
    left: 12px;
    right: 12px;
  }

  .ke-media-caption strong {
    font-size: 15px;
  }

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

  .ke-value-grid,
  .ke-category-grid,
  .ke-talent-grid {
    grid-template-columns: 1fr;
  }

  .ke-value-card {
    min-height: 230px;
  }

  .ke-category-card {
    min-height: 315px;
  }

  .ke-talent-card {
    min-height: 450px;
  }

  .ke-process-path {
    padding: 25px;
  }

  .ke-process-path header {
    align-items: start;
    display: block;
  }

  .ke-process-path header p {
    margin-top: 8px;
    text-align: left;
  }

  .ke-job-card {
    min-height: 430px;
    padding: 24px;
  }

  .ke-job-card footer {
    grid-template-columns: 1fr 1fr;
  }

  .ke-job-card footer > div:first-child {
    grid-column: 1 / -1;
  }

  .ke-managed {
    padding: 80px 0;
  }

  .ke-managed-citron,
  .ke-managed-plum {
    padding: 45px 26px;
  }

  .ke-managed h2 {
    font-size: 38px;
  }

  .ke-final-cta {
    padding-bottom: 70px;
  }

  .ke-final-inner {
    padding: 42px 25px;
  }

  .ke-final-brand {
    display: block;
  }

  .ke-final-brand > img {
    height: 58px;
    margin-bottom: 25px;
    width: 58px;
  }

  .ke-final-inner h2 {
    font-size: 39px;
  }

  .ke-final-actions {
    display: grid;
  }

  .ke-final-actions .ke-button {
    width: 100%;
  }

  .ke-footer {
    padding-top: 58px;
  }

  .ke-footer-main {
    gap: 44px;
  }

  .ke-footer-brand .ke-brand-logo {
    width: 205px;
  }

  .ke-footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .ke-footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .ke-state {
    padding: 36px 21px;
  }

  .ke-state .ke-button + .ke-button,
  .ke-state .ke-button + .ke-text-link {
    display: block;
    margin: 10px 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ke-hero-video {
    display: none;
  }

  .ke-preview * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Marketplace section refinement */
.ke-preview [data-ke-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1) var(--ke-delay, 0ms),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1) var(--ke-delay, 0ms);
}

.ke-preview [data-ke-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ke-categories-section,
.ke-jobs-section {
  overflow: clip;
}

.ke-category-stage {
  align-items: stretch;
  display: grid;
  gap: clamp(24px, 4vw, 58px);
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  margin-bottom: clamp(46px, 6vw, 78px);
}

.ke-category-intro {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(8px, 2vw, 28px) 0;
}

.ke-category-intro h2,
.ke-talent-heading h2,
.ke-process-heading h2,
.ke-jobs-heading h2 {
  font-size: clamp(54px, 6.2vw, 88px);
  letter-spacing: -0.068em;
  line-height: 0.91;
  margin: 14px 0 28px;
  max-width: 940px;
  text-wrap: balance;
}

.ke-category-intro > p:last-of-type {
  color: var(--ke-secondary);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.65;
  margin: 0;
  max-width: 680px;
}

.ke-preview .ke-category-directory-action {
  align-items: center;
  background: var(--ke-plum);
  border: 1px solid var(--ke-plum);
  border-radius: 12px 12px 12px 2px;
  color: var(--ke-white);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: space-between;
  margin-top: 33px;
  min-height: 54px;
  padding: 0 20px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.ke-category-directory-action::after {
  color: var(--ke-coral);
  content: "↗";
  font-size: 19px;
  margin-left: 42px;
}

.ke-preview .ke-category-directory-action:hover {
  background: var(--ke-coral);
  color: var(--ke-plum);
  transform: translateY(-2px);
}

.ke-category-directory-action:hover::after {
  color: var(--ke-plum);
}

.ke-category-media {
  background: var(--ke-plum);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(17, 19, 24, 0.15);
  margin: 0;
  min-height: 500px;
  overflow: hidden;
  position: relative;
}

.ke-category-media::after {
  background:
    linear-gradient(180deg, transparent 35%, rgba(17, 19, 24, 0.88) 100%),
    linear-gradient(125deg, rgba(255, 176, 0, 0.18), transparent 55%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.ke-category-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.ke-category-media:hover img {
  transform: scale(1.035);
}

.ke-category-media figcaption {
  bottom: 0;
  color: var(--ke-white);
  display: grid;
  gap: 6px;
  left: 0;
  padding: clamp(26px, 4vw, 44px);
  position: absolute;
  right: 0;
  z-index: 1;
}

.ke-category-media figcaption span,
.ke-category-media figcaption small {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.ke-category-media figcaption span {
  color: var(--ke-coral);
}

.ke-category-media figcaption small {
  color: rgba(255, 255, 255, 0.58);
}

.ke-category-media figcaption strong {
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -0.04em;
  line-height: 1.02;
  max-width: 480px;
}

.ke-category-grid {
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ke-category-card {
  display: grid;
  gap: 0 24px;
  grid-template-columns: 58px minmax(0, 1fr);
  grid-template-rows: auto auto 1fr auto;
  min-height: 300px;
  padding: clamp(25px, 3vw, 36px);
}

.ke-category-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  margin: 0;
}

.ke-category-copy {
  grid-column: 2;
}

.ke-category-card h3 {
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1;
  margin: 8px 0 13px;
}

.ke-category-card p {
  font-size: 14px;
  max-width: 520px;
}

.ke-category-skills {
  grid-column: 2;
  margin: 25px 0 20px;
}

.ke-category-skills span,
.ke-talent-skills span,
.ke-job-skills span {
  border-radius: 8px;
  font-size: 10px;
  padding: 7px 10px;
}

.ke-category-card footer {
  background: transparent;
  border-top: 1px solid var(--ke-soft-border);
  grid-column: 1 / -1;
  margin-top: 20px;
  min-width: 0;
  padding-top: 20px;
}

.ke-category-card footer > span {
  font-size: 10px;
}

.ke-category-card footer b {
  align-items: center;
  color: var(--ke-plum);
  display: inline-flex;
  font-size: 12px;
  gap: 12px;
}

.ke-category-card footer i {
  align-items: center;
  background: var(--ke-plum);
  border-radius: 50%;
  color: var(--ke-coral);
  display: inline-flex;
  font-size: 15px;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.ke-talent-section {
  overflow: clip;
  padding-bottom: 118px;
  padding-top: 118px;
  position: relative;
}

.ke-talent-section::before {
  background: radial-gradient(circle, rgba(255, 176, 0, 0.15), transparent 70%);
  content: "";
  height: 650px;
  pointer-events: none;
  position: absolute;
  right: -260px;
  top: -250px;
  width: 650px;
}

.ke-talent-heading {
  align-items: end;
  display: grid;
  gap: clamp(36px, 6vw, 110px);
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  margin-bottom: clamp(48px, 6vw, 78px);
  position: relative;
  z-index: 1;
}

.ke-talent-heading h2 {
  margin-bottom: 0;
  max-width: 980px;
}

.ke-talent-heading > p {
  color: rgba(255, 255, 255, 0.65);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.7;
  margin: 0;
  max-width: 460px;
}

.ke-talent-showcase {
  align-items: stretch;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.8fr);
  position: relative;
  z-index: 1;
}

.ke-talent-promise {
  background: var(--ke-coral);
  border-radius: 18px 18px 18px 3px;
  color: var(--ke-plum);
  display: flex;
  flex-direction: column;
  min-height: 520px;
  overflow: hidden;
  padding: clamp(30px, 4vw, 48px);
  position: relative;
}

.ke-talent-promise-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ke-talent-orbit {
  align-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(17, 19, 24, 0.16);
  border-radius: 50%;
  display: flex;
  height: 196px;
  isolation: isolate;
  justify-content: center;
  margin: 24px auto 18px;
  position: relative;
  width: 196px;
}

.ke-talent-orbit::before {
  border: 1px solid rgba(17, 19, 24, 0.28);
  border-radius: 50%;
  content: "";
  inset: 22px;
  position: absolute;
}

.ke-talent-orbit::after {
  animation: ke-talent-radar 5.4s linear infinite;
  background: conic-gradient(from 15deg, transparent 0 74%, rgba(17, 19, 24, 0.34) 88%, transparent 100%);
  border-radius: 50%;
  content: "";
  inset: 8px;
  mask: radial-gradient(circle, transparent 0 30%, #000 31% 100%);
  position: absolute;
  z-index: -1;
}

.ke-talent-orbit-core {
  align-items: center;
  background: var(--ke-plum);
  border: 5px solid var(--ke-coral);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(17, 19, 24, 0.22);
  display: flex;
  flex-direction: column;
  height: 88px;
  justify-content: center;
  position: relative;
  width: 88px;
  z-index: 2;
}

.ke-talent-orbit-core img {
  filter: brightness(0) invert(1);
  height: 43px;
  object-fit: contain;
  width: 43px;
}

.ke-talent-orbit-core small {
  color: var(--ke-white);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-top: 2px;
  text-transform: uppercase;
}

.ke-talent-orbit-node {
  animation: ke-talent-node 2.7s ease-in-out infinite;
  background: var(--ke-plum);
  border: 4px solid var(--ke-coral);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(17, 19, 24, 0.24);
  height: 18px;
  position: absolute;
  width: 18px;
  z-index: 3;
}

.ke-talent-orbit-node::after {
  background: var(--ke-plum);
  border-radius: 6px;
  color: var(--ke-white);
  content: attr(data-label);
  font-size: 7px;
  font-weight: 800;
  left: 50%;
  letter-spacing: 0.06em;
  padding: 5px 7px;
  position: absolute;
  text-transform: uppercase;
  top: calc(100% + 6px);
  transform: translateX(-50%);
  white-space: nowrap;
}

.ke-talent-orbit-skills {
  animation-delay: 0ms;
  left: 12px;
  top: 73px;
}

.ke-talent-orbit-experience {
  animation-delay: 900ms;
  right: 22px;
  top: 27px;
}

.ke-talent-orbit-availability {
  animation-delay: 1800ms;
  bottom: 19px;
  right: 44px;
}

.ke-talent-match-legend {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin: 0 0 24px;
}

.ke-talent-match-legend span {
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(17, 19, 24, 0.16);
  border-radius: 6px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 6px 7px;
  text-transform: uppercase;
}

.ke-talent-match-legend i {
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.ke-talent-promise h3 {
  font-size: clamp(30px, 3vw, 42px);
  letter-spacing: -0.05em;
  line-height: 0.98;
  margin: 0 0 16px;
}

.ke-talent-promise > p:not(.ke-talent-match-legend) {
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 30px;
}

.ke-talent-browse-action {
  align-items: center;
  border-bottom: 2px solid var(--ke-plum);
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  justify-content: space-between;
  margin-top: auto;
  min-height: 48px;
}

.ke-talent-browse-action::after {
  content: "→";
  font-size: 21px;
}

.ke-talent-grid {
  align-content: stretch;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.ke-preview .ke-talent-card {
  min-height: 520px;
  padding: clamp(25px, 3vw, 34px);
}

.ke-talent-identity {
  grid-template-columns: 78px minmax(0, 1fr);
  margin: 34px 0 26px;
}

.ke-talent-avatar {
  font-size: 20px;
  height: 76px;
  width: 76px;
}

.ke-talent-identity h3 {
  font-size: clamp(24px, 2.1vw, 32px);
}

.ke-talent-identity p {
  font-size: 12px;
}

.ke-talent-meta {
  gap: 14px;
  margin: 27px 0;
  padding: 20px 0;
}

.ke-talent-meta strong {
  font-size: 10px;
  overflow-wrap: anywhere;
}

.ke-talent-review {
  background: var(--ke-ivory);
  border-left: 3px solid var(--ke-coral);
  border-radius: 0 10px 10px 0;
  margin-bottom: 24px;
  padding: 16px 17px;
}

.ke-talent-review span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ke-talent-review p {
  color: var(--ke-muted);
  font-size: 11px;
  line-height: 1.55;
  margin: 6px 0 0;
}

.ke-talent-card .ke-talent-proof {
  margin: 0 0 18px;
}

.ke-talent-card footer {
  align-items: center;
  background: transparent;
  border-top: 0;
  gap: 18px;
  min-width: 0;
  padding: 0;
}

.ke-talent-card footer strong {
  font-size: clamp(17px, 1.7vw, 23px);
  overflow-wrap: anywhere;
}

.ke-talent-action {
  background: var(--ke-plum);
  border-radius: 12px 12px 12px 2px;
  color: var(--ke-white);
  min-height: 48px;
  padding: 0 15px;
}

.ke-talent-action b {
  align-items: center;
  background: var(--ke-coral);
  border-radius: 50%;
  color: var(--ke-plum);
  display: inline-flex;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.ke-process-section {
  overflow: clip;
  padding-bottom: 120px;
  padding-top: 120px;
}

.ke-process-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.45fr);
  margin-bottom: 50px;
}

.ke-process-heading .ke-kicker,
.ke-process-heading h2 {
  grid-column: 1;
}

.ke-process-heading h2 {
  margin-bottom: 0;
}

.ke-process-heading > p:last-child {
  align-self: end;
  color: var(--ke-secondary);
  font-size: 18px;
  grid-column: 2;
  grid-row: 1 / span 2;
  line-height: 1.7;
  margin: 0;
}

.ke-process-journey {
  align-items: center;
  background: var(--ke-plum);
  border-radius: 16px;
  color: var(--ke-white);
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  margin-bottom: 20px;
  overflow: hidden;
  padding: 25px 30px;
}

.ke-process-journey span {
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 700;
}

.ke-process-journey i {
  background: rgba(255, 255, 255, 0.18);
  height: 2px;
  overflow: hidden;
  position: relative;
}

.ke-process-journey i::after {
  animation: ke-rail-flow 2.8s ease-in-out infinite;
  background: var(--ke-coral);
  content: "";
  height: 100%;
  left: -35%;
  position: absolute;
  width: 35%;
}

.ke-process-grid {
  gap: 20px;
}

.ke-process-path {
  border-radius: 18px;
  min-width: 0;
  overflow: hidden;
  padding: clamp(32px, 4vw, 54px);
  position: relative;
}

.ke-process-coral {
  background: #fff8e3;
  border-color: #f6df9f;
}

.ke-process-violet {
  background: var(--ke-plum);
  border-color: var(--ke-plum);
  color: var(--ke-white);
}

.ke-process-path header > span {
  font-size: clamp(36px, 4vw, 52px);
}

.ke-process-violet header,
.ke-process-violet li {
  border-color: rgba(255, 255, 255, 0.14);
}

.ke-process-violet header p {
  color: rgba(255, 255, 255, 0.62);
}

.ke-process-path li {
  grid-template-columns: 42px minmax(0, 1fr) auto;
  padding: 18px 0;
}

.ke-process-path li span {
  height: 36px;
  width: 36px;
}

.ke-process-path li strong {
  font-size: 15px;
}

.ke-process-path li i {
  color: var(--ke-muted);
  font-style: normal;
}

.ke-process-violet li i {
  color: var(--ke-coral);
}

.ke-process-action {
  align-items: center;
  border-radius: 12px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 18px;
  transition: transform 180ms ease;
}

.ke-process-action::after {
  content: "↗";
  font-size: 18px;
  margin-left: 34px;
}

.ke-process-action:hover {
  transform: translateY(-2px);
}

.ke-process-action-coral {
  background: var(--ke-coral);
  color: var(--ke-plum);
}

.ke-process-action-violet {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--ke-white);
}

.ke-process-action-violet:hover {
  background: var(--ke-white);
  color: var(--ke-plum);
}

.ke-jobs-section {
  padding-bottom: 120px;
  padding-top: 120px;
}

.ke-jobs-heading {
  align-items: end;
  display: grid;
  gap: clamp(40px, 7vw, 120px);
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  margin-bottom: 60px;
}

.ke-jobs-heading h2 {
  margin-bottom: 0;
}

.ke-jobs-heading > div:last-child {
  padding-bottom: 7px;
}

.ke-jobs-heading > div:last-child p {
  color: var(--ke-secondary);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 24px;
}

.ke-jobs-board-action {
  align-items: center;
  border: 1px solid var(--ke-plum);
  border-radius: 12px;
  display: flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 18px;
  transition: background 180ms ease, color 180ms ease;
}

.ke-jobs-board-action::after {
  background: var(--ke-coral);
  border-radius: 8px;
  content: "→";
  display: grid;
  font-size: 18px;
  height: 34px;
  place-items: center;
  width: 34px;
}

.ke-jobs-board-action:hover {
  background: var(--ke-plum);
  color: var(--ke-white);
}

.ke-job-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.ke-job-card {
  align-items: stretch;
  display: grid;
  gap: 26px;
  grid-template-columns: 70px minmax(0, 1.25fr) minmax(310px, 0.75fr);
  min-height: 270px;
  padding: clamp(28px, 3.4vw, 45px);
}

.ke-job-index {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ke-job-index span {
  color: var(--ke-muted);
  font-size: 11px;
  font-weight: 800;
}

.ke-job-index i {
  background: var(--ke-coral);
  border-radius: 10px;
  height: 54px;
  position: relative;
  width: 54px;
}

.ke-job-index i::before,
.ke-job-index i::after {
  background: var(--ke-plum);
  content: "";
  height: 12px;
  position: absolute;
  width: 7px;
}

.ke-job-index i::before {
  bottom: 10px;
  left: 14px;
}

.ke-job-index i::after {
  bottom: 10px;
  height: 25px;
  right: 14px;
}

.ke-job-main {
  min-width: 0;
}

.ke-job-card h3 {
  font-size: clamp(34px, 3.2vw, 48px);
  margin: 34px 0 12px;
  overflow-wrap: anywhere;
}

.ke-job-company {
  font-size: 13px;
}

.ke-job-card footer {
  border-left: 1px solid var(--ke-soft-border);
  border-top: 0;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  min-width: 0;
  padding: 4px 0 4px 34px;
}

.ke-job-card footer > div:first-child {
  grid-column: 1 / -1;
}

.ke-job-card footer strong {
  font-size: clamp(17px, 1.7vw, 24px);
  overflow-wrap: anywhere;
}

.ke-job-card footer span {
  font-size: 11px;
}

.ke-job-card footer > b {
  align-items: center;
  border-top: 1px solid var(--ke-soft-border);
  font-size: 12px;
  grid-column: 1 / -1;
  margin-top: auto;
  padding-top: 18px;
}

.ke-job-card footer > b i {
  border-radius: 50%;
  height: 44px;
  width: 44px;
}

.ke-managed {
  overflow: clip;
  padding: 120px 0;
}

.ke-managed-grid {
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
}

.ke-managed-citron,
.ke-managed-plum {
  min-height: 650px;
}

.ke-managed-citron {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 5vw, 76px);
}

.ke-managed h2 {
  font-size: clamp(52px, 6vw, 82px);
  line-height: 0.9;
  text-wrap: balance;
}

.ke-managed-citron > p:last-of-type {
  font-size: 17px;
  max-width: 560px;
}

.ke-preview .ke-managed-action {
  align-items: center;
  background: var(--ke-plum);
  border-radius: 12px 12px 12px 2px;
  color: var(--ke-white);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: space-between;
  margin-top: 32px;
  min-height: 54px;
  padding: 0 18px;
  width: min(100%, 300px);
}

@media (min-width: 1181px) {
  .ke-talent-showcase {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ke-talent-grid {
    display: contents;
  }

  .ke-talent-promise {
    height: 650px;
    min-height: 650px;
  }

  .ke-preview .ke-talent-card {
    height: 650px;
    min-height: 650px;
  }
}

.ke-managed-action::after {
  color: var(--ke-coral);
  content: "↗";
  font-size: 19px;
}

.ke-managed-plum {
  isolation: isolate;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.ke-managed-video,
.ke-managed-scrim {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.ke-managed-video {
  object-fit: cover;
  z-index: -3;
}

.ke-managed-scrim {
  background:
    linear-gradient(90deg, rgba(17, 19, 24, 0.95), rgba(17, 19, 24, 0.68)),
    linear-gradient(0deg, rgba(17, 19, 24, 0.76), transparent 50%);
  z-index: -2;
}

.ke-managed-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding: clamp(42px, 5vw, 76px);
}

.ke-managed-plum ul {
  display: grid;
  gap: 0 30px;
  grid-template-columns: 1fr 1fr;
  margin: 38px 0 28px;
}

.ke-managed-plum li {
  min-width: 0;
}

.ke-managed-plum li strong {
  font-size: 15px;
}

.ke-managed-plum li small {
  font-size: 11px;
}

.ke-managed-caption {
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  font-size: 12px;
  gap: 10px;
  margin: 0;
}

.ke-managed-caption i {
  animation: ke-soft-pulse 2.2s ease-in-out infinite;
  background: var(--ke-teal);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.14);
  height: 8px;
  width: 8px;
}

@keyframes ke-talent-radar {
  to {
    transform: rotate(1turn);
  }
}

@keyframes ke-talent-node {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(17, 19, 24, 0.24);
    transform: scale(0.9);
  }
  45% {
    box-shadow: 0 0 0 9px rgba(17, 19, 24, 0);
    transform: scale(1.12);
  }
}

@keyframes ke-talent-skill-scan {
  0% {
    left: -50%;
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  100% {
    left: 118%;
    opacity: 0;
  }
}

@keyframes ke-rail-flow {
  0% {
    transform: translateX(0);
  }
  60%,
  100% {
    transform: translateX(390%);
  }
}

@keyframes ke-soft-pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.86);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1180px) {
  .ke-human-frame {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 1fr);
    min-height: 620px;
  }

  .ke-human-photo {
    min-height: 620px;
  }

  .ke-human-copy {
    padding: 48px;
  }

  .ke-category-stage,
  .ke-talent-heading,
  .ke-process-heading,
  .ke-jobs-heading {
    grid-template-columns: 1fr 1fr;
  }

  .ke-talent-showcase {
    grid-template-columns: 1fr;
  }

  .ke-talent-promise {
    display: grid;
    gap: 18px 30px;
    grid-template-columns: minmax(210px, 0.7fr) minmax(0, 1.3fr);
    min-height: 0;
  }

  .ke-talent-promise-label,
  .ke-talent-orbit {
    grid-column: 1;
  }

  .ke-talent-orbit {
    grid-row: 2 / span 3;
    margin: 0 auto;
  }

  .ke-talent-promise h3,
  .ke-talent-promise p,
  .ke-talent-browse-action {
    grid-column: 2;
  }

  .ke-job-card {
    grid-template-columns: 64px minmax(0, 1fr) minmax(280px, 0.7fr);
  }
}

@media (max-width: 900px) {
  .ke-human-section {
    padding-bottom: 92px;
    padding-top: 92px;
  }

  .ke-human-frame {
    grid-template-columns: 1fr;
  }

  .ke-human-photo {
    min-height: 540px;
  }

  .ke-human-copy {
    padding: clamp(42px, 8vw, 68px);
  }

  .ke-category-stage,
  .ke-talent-heading,
  .ke-process-heading,
  .ke-jobs-heading {
    display: block;
  }

  .ke-category-media {
    margin-top: 42px;
    min-height: 440px;
  }

  .ke-talent-heading > p,
  .ke-process-heading > p:last-child,
  .ke-jobs-heading > div:last-child {
    margin-top: 26px;
    max-width: 680px;
  }

  .ke-process-heading > p:last-child {
    display: block;
  }

  .ke-category-grid {
    grid-template-columns: 1fr;
  }

  .ke-process-journey {
    gap: 10px;
    padding: 22px;
  }

  .ke-job-card {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .ke-job-card footer {
    border-left: 0;
    border-top: 1px solid var(--ke-soft-border);
    grid-column: 1 / -1;
    padding: 24px 0 0;
  }

  .ke-managed-grid {
    grid-template-columns: 1fr;
  }

  .ke-managed-citron,
  .ke-managed-plum {
    border-radius: 24px;
    min-height: 560px;
  }

  .ke-managed-plum {
    margin-top: -20px;
  }
}

@media (max-width: 640px) {
  .ke-human-frame {
    border-radius: 20px 20px 20px 5px;
  }

  .ke-human-photo {
    min-height: 400px;
  }

  .ke-human-note {
    left: 18px;
    max-width: 225px;
    right: auto;
    top: 18px;
  }

  .ke-human-photo figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    padding: 24px;
  }

  .ke-human-copy {
    padding: 38px 24px 42px;
  }

  .ke-human-copy h2 {
    font-size: clamp(42px, 13vw, 57px);
  }

  .ke-human-perspectives {
    grid-template-columns: 1fr;
  }

  .ke-human-perspectives > div {
    padding: 22px 0;
  }

  .ke-human-perspectives > div + div {
    border-left: 0;
    border-top: 1px solid var(--ke-border);
    padding-left: 0;
  }

  .ke-human-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .ke-human-primary {
    width: 100%;
  }

  .ke-human-secondary {
    align-self: flex-start;
  }

  .ke-category-intro h2,
  .ke-talent-heading h2,
  .ke-process-heading h2,
  .ke-jobs-heading h2 {
    font-size: clamp(43px, 13vw, 58px);
    line-height: 0.94;
  }

  .ke-category-media {
    min-height: 390px;
  }

  .ke-category-card {
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .ke-category-icon,
  .ke-category-copy,
  .ke-category-skills,
  .ke-category-card footer {
    grid-column: 1;
    grid-row: auto;
  }

  .ke-category-card footer {
    align-items: flex-start;
    gap: 16px;
  }

  .ke-talent-heading {
    margin-bottom: 38px;
  }

  .ke-talent-promise {
    display: flex;
    min-height: 520px;
  }

  .ke-talent-orbit {
    margin: 24px auto;
  }

  .ke-talent-grid {
    grid-template-columns: 1fr;
  }

  .ke-preview .ke-talent-card {
    min-height: 510px;
  }

  .ke-talent-meta {
    grid-template-columns: 1fr 1fr;
  }

  .ke-talent-meta span:last-child {
    grid-column: 1 / -1;
  }

  .ke-talent-card footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .ke-talent-action {
    justify-content: space-between;
    width: 100%;
  }

  .ke-process-journey {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .ke-process-journey span {
    text-align: center;
  }

  .ke-process-journey i {
    height: 28px;
    justify-self: center;
    width: 2px;
  }

  .ke-process-journey i::after {
    animation: none;
    height: 35%;
    left: 0;
    top: 0;
    width: 100%;
  }

  .ke-process-path header {
    display: block;
  }

  .ke-process-path header p {
    margin-top: 10px;
    text-align: left;
  }

  .ke-process-action {
    width: 100%;
  }

  .ke-job-card {
    display: block;
    min-height: 0;
  }

  .ke-job-index {
    align-items: center;
    flex-direction: row;
    margin-bottom: 25px;
  }

  .ke-job-index i {
    height: 42px;
    width: 42px;
  }

  .ke-job-index i::before {
    left: 11px;
  }

  .ke-job-index i::after {
    right: 11px;
  }

  .ke-job-card h3 {
    font-size: 34px;
    margin-top: 28px;
  }

  .ke-job-card header {
    align-items: flex-start;
    gap: 10px;
  }

  .ke-job-card header > div {
    align-items: flex-end;
    flex-direction: column;
  }

  .ke-job-card footer {
    grid-template-columns: 1fr 1fr;
    margin-top: 28px;
  }

  .ke-job-card footer > div:first-child {
    grid-column: 1 / -1;
  }

  .ke-managed-citron,
  .ke-managed-plum {
    min-height: 560px;
  }

  .ke-managed-citron,
  .ke-managed-content {
    padding: 42px 25px;
  }

  .ke-managed-plum ul {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ke-managed-video {
    display: none;
  }

  .ke-preview [data-ke-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Human motion and interactive marketplace storytelling */
.ke-media-controls {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  left: 20px;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 4;
}

.ke-media-controls .ke-media-label {
  left: auto;
  position: static;
  top: auto;
}

.ke-preview .ke-scene-toggle {
  align-items: center;
  backdrop-filter: blur(15px);
  background: rgba(17, 19, 24, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--ke-white);
  display: inline-flex;
  font-size: 9px;
  font-weight: 700;
  gap: 7px;
  min-height: 34px;
  padding: 0 12px;
  text-transform: uppercase;
}

.ke-preview .ke-scene-toggle:hover {
  background: rgba(17, 19, 24, 0.94);
  border-color: rgba(255, 176, 0, 0.72);
}

.ke-preview .ke-scene-toggle span {
  color: var(--ke-coral);
  font-size: 10px;
}

.ke-marketplace-story {
  bottom: 154px;
}

.ke-story-card {
  cursor: pointer;
  font: inherit;
  opacity: 0.72;
  position: relative;
  text-align: left;
  transform: translateX(0) scale(0.985);
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    opacity 240ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  width: auto;
}

.ke-story-card::after {
  background: var(--ke-coral);
  border: 3px solid rgba(17, 19, 24, 0.85);
  border-radius: 50%;
  content: "";
  height: 11px;
  opacity: 0;
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) scale(0.3);
  transition: opacity 220ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  width: 11px;
}

.ke-story-card:hover,
.ke-story-card:focus-visible,
.ke-story-card.is-active {
  opacity: 1;
  transform: translateX(-4px) scale(1);
}

.ke-story-card.is-active {
  border-color: var(--ke-coral);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32), 0 0 0 2px rgba(255, 176, 0, 0.25);
}

.ke-story-card.is-active::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.ke-story-match.is-active {
  border-color: var(--ke-white);
}

.ke-story-live {
  backdrop-filter: blur(18px);
  background: rgba(17, 19, 24, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 13px;
  bottom: 18px;
  color: var(--ke-white);
  display: grid;
  gap: 6px 18px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  left: 20px;
  padding: 14px 16px 12px;
  position: absolute;
  right: 20px;
  z-index: 3;
}

.ke-story-live > div {
  display: grid;
}

.ke-story-live span {
  color: var(--ke-coral);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.ke-story-live strong {
  font-family: "Inter Tight", sans-serif;
  font-size: 13px;
  line-height: 1.2;
}

.ke-story-live p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 9px;
  line-height: 1.45;
  margin: 0;
}

.ke-story-progress {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  grid-column: 1 / -1;
  height: 3px;
  overflow: hidden;
}

.ke-story-progress i {
  background: linear-gradient(90deg, var(--ke-coral), #ffd976);
  border-radius: inherit;
  display: block;
  height: 100%;
  transition: width 480ms cubic-bezier(0.22, 1, 0.36, 1);
  width: var(--ke-story-progress, 25%);
}

.ke-hero-video {
  height: calc(100% + 24px);
  inset: -12px;
  transform: translate(var(--ke-parallax-x, 0), var(--ke-parallax-y, 0)) scale(1.025);
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
  width: calc(100% + 24px);
}

.ke-human-frame.is-visible .ke-human-photo img {
  transform: translate(var(--ke-parallax-x, 0), var(--ke-parallax-y, 0)) scale(1.035);
}

.ke-human-photo img {
  transition: transform 750ms cubic-bezier(0.22, 1, 0.36, 1);
}

.ke-human-perspectives > button {
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--ke-primary);
  cursor: pointer;
  padding: 24px 22px 24px 0;
  position: relative;
  text-align: left;
}

.ke-human-perspectives > button + button {
  border-left: 1px solid var(--ke-border);
  padding-left: 24px;
}

.ke-human-perspectives > button::after {
  background: var(--ke-coral);
  bottom: -1px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
  width: calc(100% - 22px);
}

.ke-human-perspectives > button + button::after {
  left: 24px;
  width: calc(100% - 24px);
}

.ke-human-perspectives > button:hover::after,
.ke-human-perspectives > button.is-active::after {
  transform: scaleX(1);
}

.ke-human-perspectives > button:not(.is-active) {
  opacity: 0.64;
}

.ke-human-perspectives > button.is-active {
  opacity: 1;
}

.ke-human-perspectives > button span {
  color: #8b6100;
  display: block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  margin-bottom: 9px;
  text-transform: uppercase;
}

.ke-human-perspectives > button strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.ke-human-perspectives > button p {
  color: var(--ke-muted);
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}

.ke-human-prompt {
  align-items: start;
  background: var(--ke-ivory);
  border-left: 3px solid var(--ke-coral);
  border-radius: 0 12px 12px 0;
  display: grid;
  gap: 6px;
  margin: -12px 0 28px;
  padding: 15px 18px;
  width: 100%;
}

.ke-human-prompt span {
  align-items: center;
  color: var(--ke-muted);
  display: flex;
  font-size: 8px;
  font-weight: 800;
  gap: 7px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ke-human-prompt span i {
  background: var(--ke-teal);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.11);
  height: 6px;
  width: 6px;
}

.ke-human-prompt strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 600;
}

.ke-human-primary,
.ke-human-secondary {
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.ke-human-primary.is-emphasized,
.ke-human-primary:hover,
.ke-human-secondary.is-emphasized,
.ke-human-secondary:hover {
  transform: translateY(-2px);
}

.ke-human-secondary.is-emphasized {
  border-bottom-color: var(--ke-coral);
  box-shadow: inset 0 -3px 0 var(--ke-coral);
}

.ke-value-card,
.ke-category-card,
.ke-preview .ke-talent-card,
.ke-job-card {
  --ke-pointer-x: 50%;
  --ke-pointer-y: 50%;
  background-image: radial-gradient(circle 220px at var(--ke-pointer-x) var(--ke-pointer-y), rgba(255, 176, 0, 0), transparent 72%);
  transition:
    background-image 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.ke-value-card:hover,
.ke-category-card:hover,
.ke-preview .ke-talent-card:hover,
.ke-job-card:hover {
  background-image: radial-gradient(circle 220px at var(--ke-pointer-x) var(--ke-pointer-y), rgba(255, 176, 0, 0.13), transparent 72%);
}

@media (max-width: 640px) {
  .ke-media-controls {
    left: 13px;
    right: 13px;
    top: 13px;
  }

  .ke-media-controls .ke-media-label {
    left: auto;
    max-width: 190px;
    position: static;
    top: auto;
  }

  .ke-preview .ke-scene-toggle {
    font-size: 0;
    height: 34px;
    min-height: 34px;
    padding: 0;
    width: 34px;
  }

  .ke-preview .ke-scene-toggle span {
    font-size: 10px;
    margin: auto;
  }

  .ke-marketplace-story {
    bottom: 150px;
  }

  .ke-story-live {
    bottom: 12px;
    gap: 5px;
    grid-template-columns: 1fr;
    left: 11px;
    padding: 11px 12px 10px;
    right: 11px;
  }

  .ke-story-live p {
    font-size: 8px;
  }

  .ke-story-progress {
    grid-column: 1;
  }

  .ke-human-perspectives > button {
    padding: 22px 0;
  }

  .ke-human-perspectives > button + button {
    border-left: 0;
    border-top: 1px solid var(--ke-border);
    padding-left: 0;
  }

  .ke-human-perspectives > button + button::after {
    left: 0;
    width: 100%;
  }

  .ke-human-perspectives > button::after {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ke-preview .ke-scene-toggle {
    display: none;
  }

  .ke-story-card,
  .ke-story-card:hover,
  .ke-story-card:focus-visible,
  .ke-story-card.is-active,
  .ke-hero-video,
  .ke-human-frame.is-visible .ke-human-photo img {
    transform: none;
  }
}

/* Typography readability QA
   Keep meaningful marketplace copy comfortably readable on every viewport. */
.ke-preview .ke-kicker,
.ke-preview .ke-eyebrow {
  font-size: 12px;
  line-height: 1.5;
}

.ke-preview .ke-media-label {
  font-size: 11px;
  line-height: 1.4;
}

.ke-preview .ke-scene-toggle {
  font-size: 11px;
}

.ke-preview .ke-story-card small,
.ke-preview .ke-story-card span {
  font-size: 11px;
  line-height: 1.45;
}

.ke-preview .ke-story-card strong {
  font-size: 15px;
  line-height: 1.3;
}

.ke-preview .ke-story-live > div > span {
  font-size: 10px;
  line-height: 1.4;
}

.ke-preview .ke-story-live strong {
  font-size: 14px;
}

.ke-preview .ke-story-live p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  line-height: 1.5;
}

.ke-preview .ke-story-live b {
  font-size: 10px;
  line-height: 1.4;
}

.ke-preview .ke-story-success small,
.ke-preview .ke-story-success div > span {
  color: #4b5563;
}

.ke-preview .ke-value-card > span {
  color: #6b7280;
  font-size: 12px;
}

.ke-preview .ke-value-card p {
  font-size: 15px;
  line-height: 1.65;
}

.ke-preview .ke-human-perspectives > button span {
  font-size: 11px;
  line-height: 1.45;
}

.ke-preview .ke-human-perspectives > button p {
  font-size: 14px;
  line-height: 1.65;
}

.ke-preview .ke-human-prompt span {
  color: #4b5563;
  font-size: 10px;
  line-height: 1.45;
}

.ke-preview .ke-human-prompt strong {
  font-size: 18px;
  line-height: 1.45;
}

.ke-preview .ke-category-media figcaption span,
.ke-preview .ke-category-media figcaption small {
  font-size: 11px;
  line-height: 1.45;
}

.ke-preview .ke-category-media figcaption small {
  color: rgba(255, 255, 255, 0.78);
}

.ke-preview .ke-category-label {
  color: #4b5563;
  font-size: 12px;
  line-height: 1.45;
}

.ke-preview .ke-category-card p {
  font-size: 15px;
  line-height: 1.65;
}

.ke-preview .ke-category-skills span,
.ke-preview .ke-talent-skills span,
.ke-preview .ke-job-skills span {
  font-size: 12px;
  line-height: 1.35;
}

.ke-preview .ke-category-card footer > span {
  color: #4b5563;
  font-size: 12px;
  line-height: 1.45;
}

.ke-preview .ke-category-card footer b {
  font-size: 13px;
}

.ke-preview .ke-talent-promise-label {
  font-size: 12px;
  line-height: 1.45;
}

.ke-preview .ke-talent-orbit-core small,
.ke-preview .ke-talent-orbit-node::after {
  font-size: 10px;
}

.ke-preview .ke-talent-match-legend span {
  font-size: 11px;
  line-height: 1.35;
}

.ke-preview .ke-talent-number,
.ke-preview .ke-availability {
  font-size: 11px;
  line-height: 1.45;
}

.ke-preview .ke-talent-identity p {
  font-size: 14px;
  line-height: 1.5;
}

.ke-preview .ke-talent-meta small {
  color: #4b5563;
  font-size: 11px;
  line-height: 1.4;
}

.ke-preview .ke-talent-meta strong {
  font-size: 12px;
  line-height: 1.45;
}

.ke-preview .ke-talent-review span {
  font-size: 11px;
  line-height: 1.4;
}

.ke-preview .ke-talent-review p {
  font-size: 13px;
  line-height: 1.6;
}

.ke-preview .ke-talent-proof span,
.ke-preview .ke-talent-card footer small {
  color: #4b5563;
  font-size: 11px;
  line-height: 1.4;
}

.ke-preview .ke-talent-card footer strong {
  color: #111318;
}

.ke-preview .ke-talent-action {
  font-size: 13px;
}

.ke-preview .ke-process-path header p {
  font-size: 14px;
  line-height: 1.55;
}

.ke-preview .ke-process-path li > span {
  font-size: 11px;
}

.ke-preview .ke-process-path li strong {
  font-size: 16px;
  line-height: 1.45;
}

.ke-preview .ke-job-card header > span,
.ke-preview .ke-job-status,
.ke-preview .ke-demo-badge {
  font-size: 11px;
  line-height: 1.4;
}

.ke-preview .ke-demo-profile-copy,
.ke-preview .ke-demo-copy {
  font-size: 12px;
  line-height: 1.5;
}

.ke-preview .ke-job-company {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.5;
}

.ke-preview .ke-job-card footer small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  line-height: 1.4;
}

.ke-preview .ke-job-card footer strong,
.ke-preview .ke-job-card footer span,
.ke-preview .ke-job-card footer > b {
  font-size: 13px;
  line-height: 1.45;
}

.ke-preview .ke-job-card footer > b i {
  color: #111318;
}

.ke-preview .ke-preview-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.45;
}

.ke-preview .ke-managed-plum li strong {
  font-size: 15px;
  line-height: 1.45;
}

.ke-preview .ke-managed-plum li small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.55;
}

.ke-preview .ke-managed-caption {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.55;
}

.ke-preview .ke-footer-links h3 {
  font-size: 12px;
  line-height: 1.45;
}

.ke-preview .ke-footer-links a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.55;
}

.ke-preview .ke-footer-bottom {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.5;
}

.ke-preview .ke-button-coral {
  color: #111318;
}

@media (max-width: 640px) {
  .ke-preview .ke-scene-toggle {
    font-size: 0;
  }

  .ke-preview .ke-hero-media {
    min-height: 590px;
  }

  .ke-preview .ke-marketplace-story {
    bottom: 170px;
  }

  .ke-preview .ke-story-card small,
  .ke-preview .ke-story-card span {
    font-size: 10px;
    line-height: 1.4;
  }

  .ke-preview .ke-story-card strong {
    font-size: 14px;
    line-height: 1.3;
  }

  .ke-preview .ke-story-live > div > span {
    font-size: 9px;
  }

  .ke-preview .ke-story-live strong {
    font-size: 13px;
  }

  .ke-preview .ke-story-live p {
    font-size: 10px;
  }
}
