.hiring-page {
  --hire-black: #100c09;
  --hire-ink: #17120e;
  --hire-cream: #f5efdf;
  --hire-paper: #fffaf0;
  --hire-orange: #f04a10;
  --hire-yellow: #ffc342;
  --hire-green: #083923;
  --hire-green-bright: #91ad16;
  --hire-line: rgba(23, 18, 14, .16);
  color: var(--hire-cream);
  background: var(--hire-black);
}

.hiring-page .ecosystem-header.is-solid {
  background: rgba(12, 9, 7, .95);
}

.hiring-page .ecosystem-links a[aria-current="page"] {
  color: var(--hire-yellow);
}

.hire-hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: var(--hire-black);
}

.hire-hero::before,
.hire-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hire-hero::before {
  z-index: -2;
  background:
    radial-gradient(circle at 18% 22%, rgba(240, 74, 16, .22), transparent 30%),
    radial-gradient(circle at 86% 42%, rgba(145, 173, 22, .18), transparent 30%),
    linear-gradient(115deg, rgba(16, 12, 9, .96), rgba(16, 12, 9, .7) 45%, rgba(3, 31, 23, .92));
}

.hire-hero::after {
  z-index: -1;
  background:
    linear-gradient(0deg, rgba(16, 12, 9, .96), transparent 54%),
    repeating-linear-gradient(90deg, transparent 0 74px, rgba(255, 255, 255, .03) 74px 75px);
}

.hire-hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .58;
}

.hire-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.08);
  transform: scale(1.02);
  animation: hireImageFloat 18s ease-in-out infinite alternate;
}

.hire-hero-chef {
  object-position: center right;
}

.hire-hero-grid {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .38fr);
  gap: clamp(32px, 7vw, 100px);
  align-items: end;
  padding-block: clamp(110px, 14vw, 190px) clamp(74px, 8vw, 120px);
}

.hire-hero-copy {
  max-width: 910px;
}

.hire-hero h1,
.hire-section h2,
.hire-review h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .84;
  text-transform: uppercase;
  text-wrap: balance;
}

.hire-hero h1 {
  max-width: 900px;
  font-size: clamp(76px, 12vw, 176px);
}

.hire-lede {
  max-width: 740px;
  margin: 28px 0 0;
  color: rgba(245, 239, 223, .78);
  font-size: clamp(18px, 1.8vw, 24px);
}

.hire-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hire-btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: transform .24s var(--ease), background .24s var(--ease), color .24s var(--ease), border-color .24s var(--ease);
}

.hire-btn:hover {
  transform: translateY(-3px);
}

.hire-btn--orange {
  color: #fff;
  border-color: var(--hire-orange);
  background: var(--hire-orange);
}

.hire-btn--ghost {
  color: var(--hire-cream);
  background: rgba(255, 255, 255, .06);
}

.hire-btn--dark {
  color: var(--hire-cream);
  border-color: var(--hire-ink);
  background: var(--hire-ink);
}

.hire-btn--ghost-dark {
  color: var(--hire-ink);
  background: transparent;
}

.hire-btn--fresh {
  color: var(--hire-green);
  border-color: var(--hire-green-bright);
  background: var(--hire-green-bright);
}

.hire-signal-card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(245, 239, 223, .22);
  border-radius: 28px;
  background: rgba(8, 57, 35, .8);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .24);
  overflow: hidden;
}

.hire-signal-card::after {
  content: "SMASH";
  position: absolute;
  right: -20px;
  bottom: -20px;
  color: rgba(255, 255, 255, .06);
  font-family: var(--display);
  font-size: 118px;
  line-height: .8;
}

.hire-signal-card span {
  color: var(--hire-yellow);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
}

.hire-signal-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 14px;
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400;
  line-height: .9;
}

.hire-signal-card p {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: rgba(245, 239, 223, .72);
}

.hire-strip {
  color: var(--hire-ink);
  background: var(--hire-yellow);
}

.hire-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hire-strip-grid div {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 0;
}

.hire-strip-grid div + div {
  padding-left: clamp(18px, 4vw, 44px);
  border-left: 1px solid rgba(23, 18, 14, .25);
}

.hire-strip-grid b {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
}

.hire-strip-grid span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hire-section {
  padding: clamp(88px, 11vw, 160px) 0;
}

.hire-section--cream {
  color: var(--hire-ink);
  background: var(--hire-cream);
}

.hire-section--dark {
  color: var(--hire-cream);
  background:
    radial-gradient(circle at 80% 10%, rgba(240, 74, 16, .14), transparent 30%),
    linear-gradient(135deg, #100c09, #083923);
}

.hire-section--apply {
  color: var(--hire-ink);
  background: var(--hire-paper);
}

.hire-section-head {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(32px, 7vw, 100px);
  align-items: end;
}

.hire-section h2,
.hire-review h2 {
  max-width: 830px;
  font-size: clamp(52px, 7.5vw, 112px);
}

.hire-section-head > p:last-child,
.hire-fit-grid p,
.hire-apply-copy > p,
.hire-review p {
  margin: 0;
  color: rgba(23, 18, 14, .68);
  font-size: clamp(17px, 1.5vw, 22px);
}

.hire-role-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hire-role-showcase {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(220px, .28fr);
  margin: clamp(28px, 4vw, 46px) 0 0;
  border: 1px solid rgba(23, 18, 14, .14);
  border-radius: 34px;
  background: #071b12;
  box-shadow: 0 24px 70px rgba(23, 18, 14, .16);
}

.hire-role-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 55%, rgba(7, 27, 18, .82)),
    radial-gradient(circle at 10% 10%, rgba(240, 74, 16, .2), transparent 34%);
}

.hire-role-showcase img {
  width: 100%;
  height: min(58vw, 470px);
  min-height: 320px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  transition: transform .75s var(--ease), filter .75s var(--ease);
}

.hire-role-showcase:hover img {
  filter: saturate(1.07) contrast(1.05);
  transform: scale(1.055);
}

.hire-role-showcase figcaption {
  position: relative;
  z-index: 1;
  align-self: end;
  margin: 0;
  padding: clamp(24px, 4vw, 42px);
  color: rgba(245, 239, 223, .86);
  font-size: clamp(17px, 1.7vw, 24px);
  font-weight: 900;
  line-height: 1.25;
  text-wrap: balance;
}

.hire-role-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  border: 1px solid var(--hire-line);
  border-radius: 26px;
  color: #fff;
  background:
    linear-gradient(0deg, rgba(16, 12, 9, .96), rgba(16, 12, 9, .18)),
    url("/img/hiring/smash-hiring-role-grill-v2.webp") center/cover;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.hire-role-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(23, 18, 14, .2);
}

.hire-role-card--burger {
  background:
    linear-gradient(0deg, rgba(16, 12, 9, .96), rgba(16, 12, 9, .14)),
    url("/img/hiring/smash-hiring-role-grill-v2.webp") center/cover;
}

.hire-role-card--fresh {
  background:
    linear-gradient(0deg, rgba(3, 31, 23, .96), rgba(3, 31, 23, .10)),
    url("/img/hiring/smash-hiring-role-fresh-v2.webp") center/cover;
}

.hire-role-card--front {
  background:
    linear-gradient(0deg, rgba(16, 12, 9, .96), rgba(16, 12, 9, .16)),
    url("/img/hiring/smash-hiring-role-front-v2.webp") center/cover;
}

.hire-role-card small {
  color: var(--hire-yellow);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
}

.hire-role-card h3 {
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  line-height: .9;
  text-transform: uppercase;
}

.hire-role-card p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .73);
}

.hire-fit-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(42px, 8vw, 120px);
  align-items: start;
}

.hire-section--dark .hire-fit-grid p {
  color: rgba(245, 239, 223, .74);
}

.hire-values ul {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.hire-values li {
  position: relative;
  padding: 18px 18px 18px 52px;
  border: 1px solid rgba(245, 239, 223, .18);
  border-radius: 18px;
  background: rgba(255, 255, 255, .05);
  font-weight: 800;
}

.hire-values li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 16px;
  color: var(--hire-yellow);
  font-weight: 900;
}

.hire-apply-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(36px, 7vw, 90px);
  align-items: start;
}

.hire-apply-copy {
  position: sticky;
  top: calc(var(--header-height) + 34px);
}

.hire-contact-cards {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}

.hire-contact-cards a {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(23, 18, 14, .14);
  border-radius: 16px;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .05em;
  transition: transform .2s var(--ease), border-color .2s var(--ease);
}

.hire-contact-cards button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--hire-orange);
  font: inherit;
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: .08em;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(240, 74, 16, .24);
  transition: transform .25s var(--ease), background .25s var(--ease);
}

.hire-contact-cards button::after {
  content: "↗";
  font-size: 17px;
}

.hire-contact-cards a:hover {
  transform: translateX(5px);
  border-color: var(--hire-orange);
}

.hire-contact-cards button:hover {
  background: #ff5a1d;
  transform: translateX(5px);
}

.hire-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(23, 18, 14, .12);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(23, 18, 14, .11);
}

.hire-honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.hire-form label {
  display: grid;
  gap: 8px;
}

.hire-form span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hire-form input,
.hire-form select,
.hire-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 18, 14, .16);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--hire-ink);
  background: #fffaf0;
}

.hire-form textarea {
  resize: vertical;
}

.hire-form-wide {
  grid-column: 1 / -1;
}

.hire-privacy-note {
  margin: 0;
  color: rgba(23, 18, 14, .62);
  font-size: 13px;
  line-height: 1.5;
}

.hire-privacy-note a {
  color: var(--hire-orange);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hire-message {
  display: grid;
  gap: 12px;
  padding-top: 8px;
}

.hire-message-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hire-form-note {
  min-height: 20px;
  margin: 0;
  color: rgba(23, 18, 14, .66);
  font-size: 13px;
  font-weight: 700;
}

.hire-form-note[data-state="success"] {
  color: #0b6b35;
}

.hire-form-note[data-state="error"] {
  color: #a52b0c;
}

.hire-review {
  padding: clamp(80px, 10vw, 130px) 0;
  color: var(--hire-cream);
  background: linear-gradient(135deg, #083923, #031f17);
}

.hire-review-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 38px;
  align-items: end;
}

.hire-review p {
  max-width: 660px;
  margin-top: 22px;
  color: rgba(245, 239, 223, .72);
}

.hire-review-actions {
  display: grid;
  gap: 10px;
  min-width: min(100%, 320px);
}

.hire-mobile-bar {
  display: none;
}

html.reveal-enabled .hiring-page [data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

html.reveal-enabled .hiring-page [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes hireImageFloat {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.8%, -1.4%, 0); }
}

@media (max-width: 980px) {
  .hiring-page .ecosystem-links {
    display: none;
  }

  .hiring-page .concept-context {
    display: none;
  }

  .hire-hero-grid,
  .hire-section-head,
  .hire-fit-grid,
  .hire-apply-grid,
  .hire-review-grid {
    grid-template-columns: 1fr;
  }

  .hire-signal-card,
  .hire-apply-copy {
    position: relative;
    top: auto;
  }

  .hire-role-grid {
    grid-template-columns: 1fr;
  }

  .hire-role-showcase {
    grid-template-columns: 1fr;
  }

  .hire-role-showcase::after {
    background: linear-gradient(0deg, rgba(7, 27, 18, .96), transparent 52%);
  }

  .hire-role-showcase figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
  }
}

@media (max-width: 760px) {
  .hire-hero {
    min-height: 92svh;
  }

  .hire-hero-chef {
    object-position: 63% center;
  }

  .hire-hero-grid {
    min-height: 92svh;
    padding-block: 88px 96px;
  }

  .hire-hero h1 {
    font-size: clamp(58px, 19vw, 92px);
  }

  .hire-lede {
    font-size: 16px;
  }

  .hire-strip-grid {
    grid-template-columns: 1fr;
  }

  .hire-strip-grid div {
    min-height: 74px;
  }

  .hire-strip-grid div + div {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(23, 18, 14, .22);
  }

  .hire-section h2,
  .hire-review h2 {
    font-size: clamp(42px, 13vw, 66px);
  }

  .hire-role-card {
    min-height: 300px;
  }

  .hire-form {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .hire-review-actions,
  .hire-message-actions,
  .hire-actions {
    width: 100%;
  }

  .hire-btn {
    width: 100%;
  }

  .hire-mobile-bar {
    position: fixed;
    z-index: 90;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 12px;
    min-height: 70px;
    display: grid;
    grid-template-columns: 1fr 1fr 1.25fr;
    gap: 6px;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 28px;
    background: rgba(16, 12, 9, .92);
    backdrop-filter: blur(18px);
    box-shadow: 0 16px 44px rgba(0, 0, 0, .28);
  }

  .hire-mobile-bar a {
    display: grid;
    place-items: center;
    border-radius: 21px;
    color: rgba(245, 239, 223, .76);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .hire-mobile-bar .is-primary {
    color: #fff;
    background: var(--hire-orange);
  }

  .hiring-page .ecosystem-footer {
    padding-bottom: 120px;
  }

  .hiring-page .smash-assist__bubble {
    bottom: calc(92px + env(safe-area-inset-bottom));
  }

  .hiring-page .smash-assist__hint {
    bottom: calc(92px + 64px + 12px + env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hire-hero-media img {
    animation: none;
  }

  .hire-btn,
  .hire-role-card,
  .hire-contact-cards a,
  .hire-contact-cards button,
  .hire-role-showcase img,
  html.reveal-enabled .hiring-page [data-reveal] {
    transition: none;
  }
}
