:root {
  --acid: #c8ff00;
  --ink: #070707;
  --paper: #f7f7f1;
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }

body {
  margin: 0;
  background: var(--acid);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

button, input, select { font: inherit; }

.hiring-page {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  padding: 34px clamp(24px, 4vw, 72px);
}

.noise {
  position: absolute;
  inset: 0;
  z-index: -5;
  opacity: .18;
  background-image:
    linear-gradient(110deg, transparent 0 67%, rgba(0,0,0,.13) 67.1% 67.25%, transparent 67.35%),
    repeating-linear-gradient(17deg, transparent 0 58px, rgba(0,0,0,.06) 59px 60px);
}

.brand {
  position: relative;
  z-index: 10;
  display: inline-flex;
  align-items: flex-end;
  gap: 6px;
  transform: skew(-9deg);
}

.brand span {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 29px;
  line-height: .85;
  letter-spacing: 1px;
}

.brand small { font-size: 9px; font-weight: 950; }

.content {
  width: min(1420px, 100%);
  min-height: calc(100svh - 96px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(430px, 1.07fr);
  align-items: center;
  gap: clamp(24px, 4vw, 70px);
}

.copy {
  position: relative;
  z-index: 4;
  padding: 46px 0 58px;
}

.eyebrow {
  margin: 0 0 21px;
  font: 900 12px/1 monospace;
  letter-spacing: .16em;
}

h1 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(76px, 9.4vw, 158px);
  font-weight: 900;
  line-height: .77;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

h1 span {
  color: var(--paper);
  -webkit-text-stroke: 3px var(--ink);
  text-shadow: 8px 8px 0 var(--ink);
}

.subtitle {
  max-width: 620px;
  margin: 34px 0 28px;
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 750;
  line-height: 1.45;
}

.application-form {
  width: min(620px, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 20px;
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
}

.field { min-width: 0; }

.field-label {
  display: block;
  margin: 0 0 8px;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .13em;
}

.application-form input,
.application-form select,
.multi-trigger {
  width: 100%;
  min-height: 50px;
  border: 2px solid var(--ink);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  padding: 0 13px;
}

.application-form input:focus,
.application-form select:focus,
.multi-trigger:focus-visible { box-shadow: 4px 4px 0 var(--acid); }
.application-form input::placeholder { color: rgba(7,7,7,.45); }

.field.has-error input,
.field.has-error select,
.field.has-error .multi-trigger { border-color: #d52222; }

.field-error {
  display: block;
  min-height: 14px;
  margin-top: 5px;
  color: #b31313;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
}

.multi-select { position: relative; }

.multi-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  cursor: pointer;
}

.multi-trigger > span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.multi-trigger > i {
  flex: 0 0 auto;
  font-style: normal;
  font-size: 22px;
  line-height: 1;
  transition: transform .18s ease;
}

.multi-trigger[aria-expanded="true"] > i { transform: rotate(180deg); }

.multi-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  padding: 8px;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 7px 7px 0 var(--ink);
}

.check-option {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.check-option:hover { background: var(--acid); }

.check-option input {
  width: 19px;
  min-height: 19px;
  height: 19px;
  margin: 0;
  padding: 0;
  accent-color: var(--ink);
}

.submit-button {
  grid-column: 1 / -1;
  min-height: 58px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--acid);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  font-weight: 950;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.submit-button:hover {
  transform: translate(-3px, -3px);
  background: var(--acid);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}

.submit-button:disabled { opacity: .55; cursor: wait; }
.submit-button i { font-size: 22px; font-style: normal; }

.form-message {
  grid-column: 1 / -1;
  margin: 0;
  padding: 11px 12px;
  border: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.form-message.is-success { background: var(--acid); }
.form-message.is-error { background: #ffd6d6; }

.visual {
  align-self: stretch;
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
  z-index: 2;
}

.visual img {
  position: absolute;
  z-index: 2;
  right: 2%;
  bottom: -9%;
  height: 113%;
  width: auto;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 30px 26px rgba(0,0,0,.3));
}

.planet {
  position: absolute;
  z-index: -1;
  width: min(38vw, 570px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 25px 22px 0 rgba(255,255,255,.25), inset -35px -25px 0 rgba(200,255,0,.08);
}

.orbit {
  position: absolute;
  z-index: -2;
  width: 112%;
  height: 38%;
  border: 2px solid rgba(7,7,7,.5);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.orbit--two {
  width: 72%;
  height: 78%;
  border-color: rgba(255,255,255,.55);
  transform: rotate(39deg);
}

.signal {
  position: absolute;
  z-index: 3;
  left: 2%;
  bottom: 13%;
  margin: 0;
  padding: 10px 13px;
  background: var(--ink);
  color: var(--acid);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 18px;
  line-height: .92;
  letter-spacing: .04em;
  transform: rotate(-6deg);
  box-shadow: 5px 5px 0 rgba(255,255,255,.45);
}

.ufo {
  position: absolute;
  z-index: 1;
  width: 88px;
  height: 48px;
  filter: drop-shadow(7px 8px 0 rgba(0,0,0,.16));
  animation: float 5.5s ease-in-out infinite;
}

.ufo i {
  position: absolute;
  left: 31px;
  top: 2px;
  width: 30px;
  height: 23px;
  border: 3px solid var(--ink);
  border-radius: 50% 50% 22% 22%;
  background: rgba(255,255,255,.75);
}

.ufo span {
  position: absolute;
  left: 6px;
  top: 20px;
  width: 78px;
  height: 20px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
}

.ufo b {
  position: absolute;
  left: 24px;
  top: 34px;
  width: 43px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
}

.ufo--one { top: 7%; left: 43%; transform: rotate(-9deg); }
.ufo--two { top: 23%; right: 4%; transform: scale(.7) rotate(9deg); animation-delay: -2.2s; }
.ufo--three { bottom: 5%; left: 42%; transform: scale(.55) rotate(5deg); animation-delay: -3.6s; }

@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}

@media (max-width: 1000px) {
  .hiring-page { padding-bottom: 0; }
  .content { grid-template-columns: 1fr; }
  .copy { padding-top: 70px; }
  .visual { min-height: 580px; margin-top: -45px; }
  .planet { width: min(68vw, 520px); }
  .visual img { right: 50%; transform: translateX(52%); }
  .ufo--one { left: auto; right: 9%; top: 7%; }
  .ufo--three { left: 8%; bottom: 27%; }
}

@media (max-width: 620px) {
  .hiring-page { padding: 24px 18px 0; }
  .brand span { font-size: 25px; }
  .copy { padding: 62px 0 40px; }
  .eyebrow { margin-bottom: 16px; }
  h1 { font-size: clamp(70px, 22.5vw, 104px); }
  h1 span { -webkit-text-stroke-width: 2px; text-shadow: 5px 5px 0 var(--ink); }
  .subtitle { margin: 27px 0 22px; font-size: 16px; }
  .application-form { grid-template-columns: 1fr; padding: 16px; box-shadow: 7px 7px 0 var(--ink); }
  .submit-button, .form-message { grid-column: 1; }
  .visual { min-height: 440px; margin-top: -12px; }
  .visual img { height: 106%; bottom: -9%; }
  .planet { width: 320px; }
  .signal { left: 0; bottom: 14%; font-size: 15px; }
  .ufo { transform: scale(.68); }
  .ufo--one { right: -5%; top: 7%; }
  .ufo--two { top: 47%; right: -8%; transform: scale(.5); }
  .ufo--three { bottom: 25%; left: -3%; transform: scale(.45); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
}
