/* ===== HOME V2 — about open call landing ===== */

.home-v2 {
  --home-ink: #171b18;
  --home-coal: #edf2ed;
  --home-coal-2: #f7f7f2;
  --home-paper: #f6f5ef;
  --home-paper-soft: #fffdf7;
  --home-warm: #d8eadf;
  --home-line: rgba(23, 27, 24, 0.16);
  --home-line-strong: rgba(23, 27, 24, 0.74);
  --home-muted: #657069;
  --home-accent: #b45a42;
  --home-blue: #376d8f;
  --home-green: #416f54;
  --home-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Noto Sans SC", sans-serif;
  background: var(--home-paper);
  color: var(--home-ink);
  overflow-x: hidden;
}

@keyframes homeFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes homeSlowDrift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(2deg); }
  50% { transform: translate3d(-10px, 12px, 0) rotate(1deg); }
}
@keyframes homeCoverFloat {
  0%, 100% { transform: translateY(0) rotate(var(--cover-rotate, -2deg)); }
  50% { transform: translateY(-10px) rotate(calc(var(--cover-rotate, -2deg) + 1.2deg)); }
}
@keyframes homeShelfGlide {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-4deg); }
  50% { transform: translate3d(-12px, 10px, 0) rotate(-3deg); }
}
@keyframes homeMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes homeAdCoverFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(var(--ad-cover-rotate, -3deg)); }
  50% { transform: translate3d(0, -7px, 0) rotate(calc(var(--ad-cover-rotate, -3deg) + 0.8deg)); }
}
@keyframes homeWavePulse {
  0%, 100% { transform: scaleY(0.72); opacity: 0.56; }
  45% { transform: scaleY(1); opacity: 0.96; }
}
@keyframes homeMapPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(65,111,84,0.1); opacity: 0.78; }
  50% { box-shadow: 0 0 0 11px rgba(65,111,84,0.03); opacity: 1; }
}
@keyframes homeStatusLive {
  0%, 100% { box-shadow: 0 0 0 0 rgba(47,125,72,0.34), 0 0 14px rgba(47,125,72,0.18); }
  50% { box-shadow: 0 0 0 7px rgba(47,125,72,0), 0 0 18px rgba(47,125,72,0.28); }
}

.home-v2 a { text-decoration: none; }

.home-v2 .chat-fab {
  bottom: var(--space-6);
}

.home-nav {
  position: fixed;
  top: 18px;
  left: clamp(18px, 4vw, 54px);
  right: clamp(18px, 4vw, 54px);
  z-index: 220;
  min-height: 42px;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(23,27,24,0.08);
  border-radius: 999px;
  background: rgba(251,250,245,0.62);
  color: var(--home-ink);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px rgba(23,27,24,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-size: 14px;
}
.home-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--home-ink);
  font-weight: 560;
  letter-spacing: 0.02em;
}
.home-nav__brand img {
  width: clamp(86px, 8.8vw, 128px);
  height: auto;
  display: block;
}
.home-nav__links {
  display: flex;
  gap: 24px;
  color: rgba(23,27,24,0.62);
  flex-shrink: 0;
}
.home-nav__links a,
.home-nav__cta {
  transition: color 180ms ease, transform 180ms ease, background 180ms ease;
}
.home-nav__links a:hover { color: var(--home-ink); }
.home-nav__cta {
  min-height: 38px;
  padding: 0 17px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--home-ink);
  color: var(--home-paper-soft);
  font-weight: 650;
  box-shadow: 0 10px 26px rgba(23,27,24,0.08);
}
.home-nav__cta:hover { transform: translateY(-1px); }

.home-btn {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(23,27,24,0.18);
  background: rgba(255,255,255,0.38);
  color: var(--home-ink);
  font-size: 14px;
  font-weight: 610;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.home-btn:hover {
  transform: translateY(-1px);
  background: rgba(255,253,247,0.84);
  border-color: rgba(23,27,24,0.34);
}
.home-btn--paper {
  background: var(--home-ink);
  color: var(--home-paper-soft);
  border-color: var(--home-ink);
}

.home-hero {
  min-height: auto;
  color: var(--home-ink);
  background:
    linear-gradient(90deg, rgba(23,27,24,0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23,27,24,0.035) 1px, transparent 1px),
    linear-gradient(135deg, #fbfaf5 0%, #edf4ef 52%, #f5f1e8 100%);
  background-size: 64px 64px, 64px 64px, auto;
  padding: 104px clamp(24px, 5vw, 72px) 30px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0;
  border-bottom: 1px solid rgba(23,27,24,0.14);
  position: relative;
  overflow: hidden;
}
.home-hero__stage {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(420px, 1fr);
  gap: clamp(42px, 7vw, 116px);
  align-items: start;
  min-height: clamp(600px, 78svh, 760px);
  padding: clamp(36px, 5vh, 58px) 0 clamp(34px, 5vh, 64px);
}
.home-hero__object {
  position: relative;
  z-index: 1;
  width: min(100%, 770px);
  justify-self: end;
  align-self: start;
}
.home-cover-shelf {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(48px, 1fr));
  gap: clamp(10px, 1.2vw, 16px);
  padding: clamp(14px, 2vw, 22px);
  animation: homeShelfGlide 9s ease-in-out infinite;
  transform-origin: center;
}
.home-cover-shelf:hover .home-cover {
  animation-play-state: paused;
}
.home-cover-shelf::before,
.home-cover-shelf::after {
  display: none;
}
.home-cover {
  --cover-rotate: -1.8deg;
  aspect-ratio: 0.72;
  min-height: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  display: block;
  overflow: visible;
  position: relative;
  isolation: isolate;
  animation: homeCoverFloat 6.4s ease-in-out infinite;
  animation-delay: var(--cover-delay);
}
.home-cover:nth-child(2n) {
  --cover-rotate: 1.6deg;
  margin-top: clamp(14px, 2.4vw, 30px);
}
.home-cover:nth-child(3n) {
  --cover-rotate: -2.4deg;
}
.home-cover::after {
  display: none;
}
.home-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  transform: translateZ(0);
  filter: drop-shadow(0 24px 26px rgba(0,0,0,0.32));
}
.home-project-board {
  position: relative;
  display: grid;
  gap: 12px;
  padding: clamp(12px, 1.8vw, 20px);
  background:
    linear-gradient(180deg, rgba(255,253,247,0.58), rgba(255,253,247,0.24)),
    rgba(246,245,239,0.34);
  box-shadow: 0 28px 70px rgba(36,48,38,0.08);
}
.home-project-board__rail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 2px 8px;
  border-bottom: 1px solid rgba(23,27,24,0.09);
  color: rgba(23,27,24,0.52);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.home-project-card {
  --project-media-w: clamp(150px, 13.5vw, 196px);
  --project-media-h: clamp(132px, 12vw, 166px);
  min-height: clamp(160px, 15.5vw, 204px);
  border: 0;
  background: var(--card-bg, #fffdf7);
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--project-media-w);
  gap: clamp(16px, 2vw, 26px);
  align-items: center;
  padding: clamp(20px, 2.2vw, 28px);
  overflow: hidden;
  cursor: default;
  box-shadow: inset 0 0 0 1px rgba(23,27,24,0.08);
  transform: translateZ(0);
}
.home-project-card:hover {
  box-shadow: inset 0 0 0 1px rgba(23,27,24,0.08);
}
.home-project-card--publication { --card-bg: #f7f0e6; }
.home-project-card--audio { --card-bg: #e9f1f4; }
.home-project-card--field { --card-bg: #edf4ea; }
.home-project-card__copy {
  min-width: 0;
}
.home-project-card--publication .home-project-card__copy {
  padding-right: clamp(18px, 2.4vw, 42px);
}
.home-project-card__kicker {
  display: block;
  color: rgba(23,27,24,0.58);
  font-size: 13px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.home-project-card strong {
  display: block;
  color: var(--home-ink);
  font-size: clamp(22px, 2.05vw, 29px);
  line-height: 1.04;
  font-weight: 720;
  white-space: nowrap;
  text-wrap: normal;
}
.home-project-card p {
  margin: 12px 0 0;
  max-width: 440px;
  color: rgba(23,27,24,0.62);
  font-size: clamp(12px, 0.92vw, 14px);
  line-height: 1.52;
}
.home-project-card__media {
  position: relative;
  width: var(--project-media-w);
  height: var(--project-media-h);
  min-height: 0;
  align-self: center;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-project-card__covers {
  position: relative;
  min-height: 0;
  --ad-cover-w: clamp(54px, 5vw, 76px);
  --ad-cover-h: clamp(73px, 6.75vw, 102px);
}
.home-project-card__covers img {
  position: absolute;
  bottom: 8px;
  width: var(--ad-cover-w);
  height: var(--ad-cover-h);
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(23,27,24,0.18);
  box-shadow: 0 18px 26px rgba(36,48,38,0.16);
  transform-origin: center bottom;
  will-change: transform;
  animation: homeAdCoverFloat 6.8s ease-in-out infinite;
}
.home-project-card__covers img:first-child {
  right: 42%;
  z-index: 1;
  --ad-cover-rotate: -7deg;
  animation-delay: -1.4s;
}
.home-project-card__covers img:nth-child(2) {
  right: 21%;
  z-index: 2;
  --ad-cover-rotate: 1.5deg;
  animation-delay: -2.2s;
}
.home-project-card__covers img:nth-child(3) {
  right: 0;
  z-index: 3;
  --ad-cover-rotate: 7deg;
  animation-delay: -3.1s;
}
.home-project-card__media--logo img {
  width: min(100%, 148px);
  max-height: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 16px 24px rgba(36,48,38,0.14));
  animation: homeAdCoverFloat 7.4s ease-in-out infinite;
  --ad-cover-rotate: -2deg;
}
.home-project-card__media--photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border: 0;
  filter: drop-shadow(0 14px 18px rgba(36,48,38,0.12));
  animation: homeAdCoverFloat 7.8s ease-in-out infinite;
  --ad-cover-rotate: 1.4deg;
}
.home-waveform {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.home-waveform i {
  width: 7px;
  height: var(--wave-h, 42px);
  background: var(--home-blue);
  border-radius: 999px;
  display: block;
  transform-origin: center;
  animation: homeWavePulse 2.4s ease-in-out infinite;
}
.home-waveform i:nth-child(2) { --wave-h: 66px; opacity: 0.84; animation-delay: -0.35s; }
.home-waveform i:nth-child(3) { --wave-h: 38px; opacity: 0.7; animation-delay: -0.7s; }
.home-waveform i:nth-child(4) { --wave-h: 82px; opacity: 0.9; animation-delay: -1.05s; }
.home-waveform i:nth-child(5) { --wave-h: 52px; opacity: 0.66; animation-delay: -1.4s; }
.home-waveform i:nth-child(6) { --wave-h: 72px; opacity: 0.78; animation-delay: -1.75s; }
.home-waveform i:nth-child(7) { --wave-h: 30px; opacity: 0.58; animation-delay: -2.1s; }
.home-field-map {
  position: relative;
  height: 104px;
  border: 1px solid rgba(23,27,24,0.2);
  background:
    linear-gradient(90deg, rgba(23,27,24,0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23,27,24,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}
.home-field-map::before,
.home-field-map::after {
  content: "";
  position: absolute;
  background: rgba(180,90,66,0.72);
}
.home-field-map::before {
  left: 20%;
  right: 18%;
  top: 50%;
  height: 1px;
  transform: rotate(-12deg);
}
.home-field-map::after {
  left: 42%;
  top: 18%;
  bottom: 18%;
  width: 1px;
  transform: rotate(18deg);
}
.home-field-map span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--home-green);
  box-shadow: 0 0 0 5px rgba(65,111,84,0.12);
  animation: homeMapPulse 3.6s ease-in-out infinite;
}
.home-field-map span:nth-child(1) { left: 16%; top: 26%; animation-delay: -0.4s; }
.home-field-map span:nth-child(2) { right: 18%; top: 20%; animation-delay: -1.2s; }
.home-field-map span:nth-child(3) { left: 34%; bottom: 16%; animation-delay: -2s; }
.home-field-map span:nth-child(4) { right: 32%; bottom: 30%; animation-delay: -2.8s; }
.home-hero__footer {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
  padding-top: 16px;
  border-top: 2px solid rgba(23,27,24,0.18);
}
.home-hero__recruit {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  order: 1;
  white-space: nowrap;
}
.home-hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  min-height: 0;
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  row-gap: clamp(22px, 3.6vh, 42px);
  padding-top: 0;
  animation: homeFadeUp 700ms ease both;
}
.home-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(23,27,24,0.58);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0;
}
.home-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(23,27,24,0.42);
}
.home-hero h1 {
  margin: 0;
  max-width: 690px;
  color: var(--home-ink);
  font-size: clamp(58px, 6.6vw, 96px);
  line-height: 0.92;
  letter-spacing: 0;
  font-weight: 720;
}
.home-hero h1 span {
  display: block;
}
.home-hero__content p {
  color: rgba(23,27,24,0.72);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.52;
  max-width: 620px;
  margin: 0;
}
.home-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.home-hero__meta {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 180px;
  gap: 24px;
  align-items: center;
  color: rgba(23,27,24,0.66);
}
.home-open-count {
  color: rgba(23,27,24,0.66);
  padding: 0;
  text-align: left;
  min-width: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}
.home-open-count__line {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
}
.home-open-count strong {
  color: var(--home-ink);
  font-size: 42px;
  line-height: 1;
  font-weight: 650;
}
.home-open-count__unit {
  color: rgba(23,27,24,0.72);
  font-size: 15px;
  line-height: 1;
  padding-bottom: 0;
}
.home-open-count__sub {
  display: inline;
  margin-top: 0;
  font-size: 13px;
  text-align: left;
  line-height: 1;
}
.home-ticker {
  order: 2;
  border-bottom: 0;
  min-height: 34px;
  overflow: hidden;
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: clamp(12px, 1.12vw, 15px);
  letter-spacing: 0.04em;
  color: rgba(23,27,24,0.52);
}
.home-ticker__track {
  display: flex;
  width: max-content;
  animation: homeMarquee 24s linear infinite;
}
.home-ticker span {
  display: inline-block;
  padding-right: 0;
}
.home-ticker em {
  color: var(--home-accent);
  font-style: normal;
  padding: 0 14px;
}

.home-section {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 76px);
  background: var(--home-paper);
}
.home-section__head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(24px, 6vw, 84px);
  align-items: end;
  margin-bottom: 42px;
}
.home-kicker {
  color: var(--home-accent);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 760;
  margin-bottom: 14px;
}
.home-section h2 {
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 0.94;
  letter-spacing: 0;
  font-weight: 720;
  text-wrap: balance;
}
.home-section__head p {
  color: var(--home-muted);
  font-size: 18px;
  line-height: 1.72;
  margin: 0;
  max-width: 690px;
}

.home-roles {
  border-bottom: 1px solid var(--home-line);
}
.home-call-sheet {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
}
.home-feature-card {
  min-height: 520px;
  border: 1px solid var(--home-line-strong);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0)),
    var(--home-warm);
  position: sticky;
  top: 96px;
  overflow: hidden;
  padding: clamp(24px, 4vw, 36px);
  display: grid;
  align-items: end;
}
.home-feature-card::before {
  content: "";
  position: absolute;
  right: 11%;
  top: 12%;
  width: 42%;
  height: 52%;
  border: 1px solid rgba(17,17,17,0.5);
  background: var(--home-paper-soft);
  transform: rotate(5deg);
  transition: transform 500ms ease;
}
.home-feature-card:hover::before {
  transform: rotate(2deg) translateY(-4px);
}
.home-feature-card::after {
  content: "";
  position: absolute;
  left: 10%;
  top: 18%;
  width: 25%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(17,17,17,0.48);
  background: rgba(51,72,61,0.22);
}
.home-feature-card__caption {
  position: absolute;
  left: 24px;
  top: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(17,17,17,0.58);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}
.home-feature-card__title {
  position: relative;
  z-index: 2;
  max-width: 520px;
}
.home-feature-card__title small {
  display: block;
  color: rgba(17,17,17,0.58);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.home-feature-card__title strong {
  display: block;
  font-size: clamp(38px, 5.4vw, 74px);
  line-height: 0.94;
  font-weight: 720;
}
.home-jobs-panel {
  min-width: 0;
}
.home-filter-bar {
  display: grid;
  grid-template-columns: minmax(260px, 360px);
  justify-content: end;
  gap: 16px;
  align-items: start;
  margin-bottom: 22px;
}
.home-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.home-filter-chip {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--home-line-strong);
  background: transparent;
  color: var(--home-ink);
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 620;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.home-filter-chip:hover {
  transform: translateY(-1px);
}
.home-filter-chip.active {
  background: var(--home-ink);
  color: #fff;
}
.home-search {
  border: 1px solid var(--home-line-strong);
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  gap: 10px;
  background: rgba(255,255,255,0.26);
}
.home-search span {
  color: var(--home-muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.home-search__icon {
  width: 12px;
  height: 12px;
  border: 1.5px solid var(--home-muted);
  border-radius: 50%;
  position: relative;
}
.home-search__icon::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 1.5px;
  background: var(--home-muted);
  right: -5px;
  bottom: -2px;
  transform: rotate(45deg);
  transform-origin: left center;
}
.home-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--home-ink);
  font-size: 14px;
}
.home-search input::placeholder { color: rgba(17,17,17,0.42); }
.home-job-list {
  border-top: 1px solid var(--home-line-strong);
}
.home-job-item {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  gap: 18px;
  padding: 24px 14px;
  margin: 0 -14px;
  border-bottom: 1px solid var(--home-line-strong);
  align-items: start;
  cursor: pointer;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
  --job-status-color: var(--home-accent);
  --job-status-glow: rgba(180,90,66,0.24);
}
.home-job-item--open {
  --job-status-color: #2f7d48;
  --job-status-glow: rgba(47,125,72,0.3);
}
.home-job-item--closed {
  --job-status-color: #a65444;
  --job-status-glow: rgba(166,84,68,0.2);
}
.home-job-item::before {
  content: "";
  position: absolute;
  inset: 13px auto 13px 0;
  width: 4px;
  z-index: -1;
  background: var(--job-accent, var(--home-accent));
  opacity: 0;
  transition: opacity 220ms ease;
}
.home-job-item:hover {
  transform: translateX(3px);
  background: rgba(255,253,247,0.52);
  border-bottom-color: rgba(23,27,24,0.74);
}
.home-job-item:hover::before {
  opacity: 1;
}
.home-job-item__mark {
  display: grid;
  align-content: start;
  gap: 9px;
}
.home-job-item__no {
  color: var(--home-blue);
  font-weight: 680;
  font-size: 28px;
  line-height: 1;
  transition: color 220ms ease, transform 220ms ease;
}
.home-job-item__label {
  max-width: 72px;
  color: rgba(17,17,17,0.48);
  font-size: 9px;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  overflow-wrap: anywhere;
  transition: color 220ms ease, transform 220ms ease;
}
.home-job-item__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--job-status-color);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  white-space: nowrap;
  transition: color 220ms ease, transform 220ms ease;
}
.home-job-item__status::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--job-status-color);
  box-shadow: 0 0 0 4px var(--job-status-glow);
}
.home-job-item--open .home-job-item__status::before {
  animation: homeStatusLive 1.9s ease-in-out infinite;
}
.home-job-item h3 {
  margin: 0 0 9px;
  color: var(--home-ink);
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1;
  font-weight: 700;
  transition: color 220ms ease, transform 220ms ease;
}
.home-job-item p {
  margin: 0;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.58;
  max-width: 500px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 220ms ease;
}
.home-job-item:hover .home-job-item__no {
  color: var(--home-accent);
  transform: translateX(3px);
}
.home-job-item:hover .home-job-item__label {
  color: rgba(23,27,24,0.56);
  transform: translateX(3px);
}
.home-job-item:hover .home-job-item__status {
  transform: translateX(3px);
}
.home-job-item:hover h3 { color: var(--home-ink); }
.home-job-item:hover p,
.home-job-item:hover .home-job-meta { color: var(--home-muted); }
.home-job-meta {
  text-align: right;
  min-width: 126px;
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.6;
  transition: color 220ms ease;
  display: grid;
  justify-items: end;
}
.home-job-meta span {
  display: block;
}
.home-job-item--closed .home-job-item__no,
.home-job-item--closed .home-job-item__label,
.home-job-item--closed h3 {
  color: rgba(23,27,24,0.5);
}
.home-job-item--closed p,
.home-job-item--closed .home-job-meta {
  color: rgba(23,27,24,0.48);
}
.home-job-item--closed:hover h3 {
  color: rgba(23,27,24,0.56);
}
.home-empty {
  padding: 42px 0;
  border-top: 1px solid var(--home-line-strong);
  border-bottom: 1px solid var(--home-line-strong);
}
.home-empty strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
}
.home-empty span {
  display: block;
  margin-top: 10px;
  color: var(--home-muted);
}
.home-loading {
  padding: 42px 0;
  color: var(--home-muted);
  border-top: 1px solid var(--home-line-strong);
  border-bottom: 1px solid var(--home-line-strong);
}
.home-footer {
  background: #e7eee7;
  color: var(--home-ink);
  padding: 56px clamp(20px, 5vw, 76px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
}
.home-footer strong {
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.92;
  font-weight: 720;
}
.home-footer span {
  color: rgba(23,27,24,0.58);
  font-size: 14px;
  max-width: 400px;
  line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
  .home-v2 *, .home-v2 *::before, .home-v2 *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 940px) {
  .home-nav__links {
    display: flex;
    gap: 16px;
    margin-left: auto;
    font-size: 13px;
    font-weight: 610;
  }
  .home-nav__links a:first-child {
    display: none;
  }
  .home-hero {
    min-height: auto;
    grid-template-rows: auto auto;
    padding-bottom: 30px;
  }
  .home-hero__stage {
    display: block;
    min-height: auto;
    padding: 0;
    border-top: 0;
  }
  .home-hero__content {
    max-width: 100%;
    min-height: 0;
    display: block;
  }
  .home-eyebrow {
    margin-bottom: 18px;
  }
  .home-hero__content p {
    margin-top: 22px;
  }
  .home-hero__object {
    position: relative;
    right: auto;
    top: auto;
    width: min(100%, 520px);
    margin-top: 30px;
    opacity: 1;
    justify-self: start;
  }
  .home-project-board {
    padding: 14px;
  }
  .home-project-card {
    --project-media-w: 140px;
    --project-media-h: 122px;
    min-height: 158px;
    grid-template-columns: minmax(0, 1fr) var(--project-media-w);
  }
  .home-project-card--publication .home-project-card__copy {
    padding-right: 18px;
  }
  .home-hero__footer {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .home-hero__recruit {
    display: grid;
    grid-template-columns: 1fr;
    order: 1;
    align-items: start;
    justify-content: start;
    gap: 10px;
  }
  .home-hero__recruit .home-btn {
    width: min(280px, 100%);
    min-width: 0;
  }
  .home-open-count {
    order: -1;
    display: flex;
    align-items: baseline;
    gap: 8px;
    min-width: 0;
    margin-right: 0;
  }
  .home-open-count__sub {
    margin-top: 0;
  }
  .home-ticker { order: 2; }
  .home-cover-shelf {
    transform: none;
    animation: none;
    grid-template-columns: repeat(5, minmax(44px, 1fr));
    border: 0;
  }
  .home-cover {
    box-shadow: none;
  }
  .home-section__head,
  .home-call-sheet,
  .home-filter-bar,
  .home-footer {
    grid-template-columns: 1fr;
  }
  .home-open-count { width: auto; }
  .home-feature-card {
    min-height: 360px;
    position: relative;
    top: 0;
  }
  .home-job-item {
    grid-template-columns: 48px minmax(0, 1fr);
  }
  .home-job-meta {
    grid-column: 2;
    text-align: left;
    justify-items: start;
  }
}

@media (max-width: 560px) {
  .home-nav {
    left: 12px;
    right: 12px;
    top: 8px;
    min-height: 40px;
    padding: 7px 8px 7px 12px;
    gap: 10px;
    justify-content: flex-start;
  }
  .home-nav__links {
    gap: 0;
    font-size: 12px;
    margin-left: auto;
    flex: 0 0 auto;
  }
  .home-nav__brand {
    flex: 1 1 auto;
    font-size: 14px;
    min-width: 0;
    white-space: nowrap;
  }
  .home-nav__brand img {
    width: 82px;
  }
  .home-nav__cta {
    flex: 0 0 auto;
    min-height: 32px;
    padding: 0 11px;
    font-size: 12px;
    white-space: nowrap;
  }
  .home-hero {
    min-height: auto;
    padding: 76px 18px max(24px, env(safe-area-inset-bottom));
    gap: 18px;
  }
  .home-hero__stage {
    display: flex;
    min-height: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
  }
  .home-eyebrow {
    font-size: 10px;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
  }
  .home-hero h1 {
    font-size: clamp(32px, 9.6vw, 42px);
    line-height: 1.02;
  }
  .home-hero__content p {
    max-width: 360px;
    font-size: 12.5px;
    line-height: 1.58;
    margin: 16px 0 0;
    overflow-wrap: anywhere;
    word-break: normal;
  }
  .home-hero__actions {
    gap: 10px;
  }
  .home-btn {
    min-height: 42px;
    padding: 0 16px;
    font-size: 13px;
  }
  .home-hero__object {
    width: 100%;
    margin-top: 18px;
    justify-self: center;
  }
  .home-project-board {
    gap: 10px;
    padding: 12px;
    box-shadow: none;
  }
  .home-project-board__rail {
    font-size: 10px;
    padding-bottom: 10px;
  }
  .home-project-card {
    --project-media-w: 88px;
    --project-media-h: 102px;
    --ad-cover-w: 38px;
    --ad-cover-h: 52px;
    min-height: 170px;
    grid-template-columns: minmax(0, 1fr) var(--project-media-w);
    gap: 10px;
    padding: 16px;
    align-items: center;
  }
  .home-project-card strong {
    font-size: 15.5px;
    line-height: 1.12;
    white-space: normal;
  }
  .home-project-card--publication .home-project-card__copy {
    padding-right: 8px;
  }
  .home-project-card p {
    margin-top: 9px;
    font-size: 11px;
    line-height: 1.5;
    max-width: none;
  }
  .home-project-card__kicker {
    font-size: 12px;
    margin-bottom: 7px;
  }
  .home-project-card__media {
    width: var(--project-media-w);
    height: var(--project-media-h);
    min-height: 0;
    align-self: center;
    justify-self: end;
    justify-content: center;
  }
  .home-project-card__covers {
    width: var(--project-media-w);
    justify-self: end;
    min-height: 0;
  }
  .home-project-card__covers img {
    width: var(--ad-cover-w);
    height: var(--ad-cover-h);
    bottom: 8px;
  }
  .home-project-card__covers img:first-child {
    right: 42%;
  }
  .home-project-card__covers img:nth-child(2) {
    right: 21%;
  }
  .home-project-card__media--logo img {
    width: min(100%, 80px);
  }
  .home-project-card__media--photo img {
    width: 100%;
    height: 100%;
  }
  .home-waveform {
    height: 72px;
    gap: 5px;
  }
  .home-waveform i {
    width: 5px;
  }
  .home-field-map {
    height: 74px;
    background-size: 18px 18px;
  }
  .home-hero__footer {
    gap: 10px;
    padding-top: 10px;
    align-self: end;
    width: 100%;
  }
  .home-hero__recruit {
    display: grid;
    width: 100%;
    margin-top: 0;
    padding: 0;
    gap: 12px;
    align-items: center;
  }
  .home-hero__recruit .home-btn {
    width: min(260px, 100%);
    flex: none;
    min-width: 0;
    border-radius: 999px;
  }
  .home-cover-shelf {
    display: flex;
    gap: 8px;
    padding: 9px 0 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    border: 0;
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 26px), transparent 100%);
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 26px), transparent 100%);
  }
  .home-cover-shelf::-webkit-scrollbar {
    display: none;
  }
  .home-cover {
    flex: 0 0 58px;
    aspect-ratio: 0.72;
    min-height: 0;
    scroll-snap-align: start;
    box-shadow: none;
    animation: homeCoverFloat 7s ease-in-out infinite;
  }
  .home-cover:nth-child(2n) {
    margin-top: 0;
  }
  .home-cover img {
    filter: drop-shadow(0 12px 14px rgba(0,0,0,0.28));
  }
  .home-cover::after {
    display: none;
  }
  .home-open-count {
    width: auto;
    max-width: none;
    flex-shrink: 0;
    min-width: 0;
    padding-top: 1px;
  }
  .home-open-count strong {
    font-size: 30px;
  }
  .home-open-count__unit {
    font-size: 12px;
    padding-bottom: 0;
  }
  .home-open-count__sub {
    font-size: 12px;
  }
  .home-ticker {
    min-height: 26px;
    font-size: 9px;
    letter-spacing: 0.1em;
    opacity: 0.78;
  }
  .home-ticker em {
    padding: 0 8px;
  }
  .home-section {
    padding: 48px 18px;
  }
  .home-section__head {
    gap: 18px;
    margin-bottom: 28px;
  }
  .home-section h2 {
    font-size: clamp(30px, 9.2vw, 39px);
    line-height: 1.04;
  }
  .home-section__head p {
    font-size: 13.5px;
    line-height: 1.58;
  }
  .home-feature-card {
    padding: 22px;
  }
  .home-filter-bar {
    grid-template-columns: 1fr;
  }
  .home-search { padding: 11px 13px; }
  .home-job-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 16px;
    margin: 0 -8px;
  }
  .home-job-item:hover {
    transform: none;
  }
  .home-job-item::before {
    inset: 7px 0;
    transform: scaleX(0);
  }
  .home-job-item__mark {
    display: grid;
    align-items: start;
    gap: 5px;
  }
  .home-job-item__no {
    font-size: 16px;
    letter-spacing: 0.08em;
  }
  .home-job-item__label {
    max-width: none;
    font-size: 9px;
    letter-spacing: 0.1em;
  }
  .home-job-item__status {
    font-size: 10.5px;
  }
  .home-job-item h3 {
    font-size: clamp(20px, 5.4vw, 22px);
    line-height: 1.18;
    margin-bottom: 8px;
  }
  .home-job-item p {
    font-size: 12px;
    line-height: 1.58;
    -webkit-line-clamp: 3;
  }
  .home-job-meta {
    grid-column: auto;
    min-width: 0;
    text-align: left;
    justify-items: start;
    font-size: 11.5px;
  }
  .home-footer {
    padding: 42px 16px;
    align-items: start;
  }
  .home-v2 .chat-fab {
    right: 14px;
    bottom: 14px;
    width: 46px;
    height: 46px;
  }
}
