@font-face {
  font-family: "Onest";
  src: url("assets/onest.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0b0d0d;
  --bg-deep: #030404;
  --text: #ffffff;
  --muted: #cccccc;
  --soft: rgba(255, 255, 255, 0.66);
  --line: rgba(255, 255, 255, 0.18);
  --line-strong: rgba(255, 255, 255, 0.34);
  --blue: #4daaff;
  --blue-strong: #007bff;
  --blue-soft: #88c6ff;
  --green: #7cff8b;
  --green-soft: #c9ffd1;
  --gold: #f6b63f;
  --gold-soft: #ffe08a;
  --panel: rgba(255, 255, 255, 0.045);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --mouse-x: 50%;
  --mouse-y: 12%;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: "Onest", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

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

button {
  font: inherit;
}

.site-shell {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(11, 13, 13, 0) 30%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0%, rgba(11, 13, 13, 0) 34%),
    linear-gradient(135deg, rgba(255, 216, 106, 0.04), transparent 34%, rgba(124, 255, 139, 0.035)),
    var(--bg);
}

.site-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  animation: grid-drift 18s linear infinite;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 16%, #000 78%, transparent 100%);
}

.site-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at var(--mouse-x) var(--mouse-y), rgba(255, 216, 106, 0.08), transparent 28%),
    radial-gradient(ellipse at calc(var(--mouse-x) + 8%) calc(var(--mouse-y) + 12%), rgba(124, 255, 139, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.025));
  opacity: 0.9;
  animation: atmosphere-pulse 7s ease-in-out infinite;
}

.corner {
  position: absolute;
  z-index: 5;
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.corner::before,
.corner::after {
  content: "";
  position: absolute;
  background: var(--text);
  animation: corner-draw 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.corner::before {
  width: 18px;
  height: 4px;
}

.corner::after {
  width: 4px;
  height: 18px;
}

.corner-tl {
  top: 30px;
  left: 30px;
}

.corner-tl::before,
.corner-tl::after {
  top: 0;
  left: 0;
  transform-origin: top left;
}

.corner-tr {
  top: 30px;
  right: 30px;
}

.corner-tr::before,
.corner-tr::after {
  top: 0;
  right: 0;
  transform-origin: top right;
}

.corner-bl {
  bottom: 30px;
  left: 30px;
}

.corner-bl::before,
.corner-bl::after {
  bottom: 0;
  left: 0;
  transform-origin: bottom left;
}

.corner-br {
  right: 30px;
  bottom: 30px;
}

.corner-br::before,
.corner-br::after {
  right: 0;
  bottom: 0;
  transform-origin: bottom right;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  color: var(--text);
  background: var(--blue);
  box-shadow:
    2px -2px 3px 0 var(--blue-strong) inset,
    0 2px 2px 0 var(--blue-soft) inset,
    0 10px 24px rgba(77, 170, 255, 0.22);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-action:hover {
  transform: translateY(-1px);
  background: #60b5ff;
  box-shadow:
    2px -2px 3px 0 var(--blue-strong) inset,
    0 2px 2px 0 var(--blue-soft) inset,
    0 16px 34px rgba(77, 170, 255, 0.32);
}

.careers-layout {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 100dvh;
  padding: 58px 28px 72px;
}

.careers-panel {
  width: min(940px, 100%);
  max-height: calc(100dvh - 130px);
  overflow: auto;
  padding: 0 8px 28px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.28) transparent;
}

.careers-panel::-webkit-scrollbar {
  width: 8px;
}

.careers-panel::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
}

.heading-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 132px;
  text-align: center;
}

.heading-row > * {
  animation: fade-rise 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.heading-row .eyebrow {
  animation-delay: 70ms;
}

.heading-row h1 {
  animation-delay: 150ms;
}

.heading-row .hero-subtitle {
  animation-delay: 240ms;
}

.eyebrow {
  margin: 0 0 7px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: 56px;
  line-height: 0.95;
  font-weight: 500;
}

.hero-subtitle {
  width: min(520px, 100%);
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.55;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.job-card {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 92px;
  padding: 22px 64px 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.022)),
    rgba(255, 255, 255, 0.018);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    0 18px 58px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  text-align: center;
  animation: card-in 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.job-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    linear-gradient(135deg, rgba(124, 255, 139, 0.12), transparent 46%, rgba(255, 216, 106, 0.13)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 62%);
  transition: opacity 180ms ease;
}

.job-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  opacity: 0;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.24) 48%, transparent 62%);
  transform: translateX(-120%);
  transition: opacity 180ms ease;
}

.job-card:nth-child(1) {
  animation-delay: 320ms;
}

.job-card:nth-child(2) {
  animation-delay: 400ms;
}

.job-card:nth-child(3) {
  animation-delay: 480ms;
}

.job-card:nth-child(4) {
  animation-delay: 560ms;
}

.job-card > span {
  position: relative;
  z-index: 2;
}

.job-card > span:first-child {
  display: grid;
  place-content: center;
  justify-items: center;
  min-width: 0;
  width: 100%;
}

.job-card strong,
.job-card small {
  display: block;
}

.job-card strong {
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.job-card small {
  color: var(--soft);
  font-size: 12px;
  line-height: 1.35;
}

.comp-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--soft);
}

.job-card .comp-line {
  display: inline-flex;
}

.comp-token {
  position: relative;
  isolation: isolate;
  font-weight: 850;
}

.comp-token::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -3px -5px;
  border-radius: 999px;
  opacity: 0.56;
  filter: blur(9px);
  transform: translateZ(0);
}

.comp-salary {
  color: var(--green-soft);
  text-shadow:
    0 0 8px rgba(124, 255, 139, 0.72),
    0 0 24px rgba(124, 255, 139, 0.38),
    0 1px 0 rgba(255, 255, 255, 0.22);
}

.comp-salary::after {
  background: rgba(124, 255, 139, 0.52);
}

.comp-equity {
  color: var(--gold-soft);
  text-shadow:
    0 0 8px rgba(255, 191, 65, 0.82),
    0 0 26px rgba(255, 142, 23, 0.46),
    0 1px 0 rgba(255, 255, 255, 0.22);
}

.comp-equity::after {
  background: rgba(246, 182, 63, 0.66);
}

.comp-internship {
  color: var(--blue-soft);
  text-shadow:
    0 0 8px rgba(77, 170, 255, 0.82),
    0 0 24px rgba(0, 123, 255, 0.44),
    0 1px 0 rgba(255, 255, 255, 0.22);
}

.comp-internship::after {
  background: rgba(77, 170, 255, 0.58);
}

.comp-plus {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 850;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.18);
}

.job-card > .double-arrow,
.apply-strip > .double-arrow {
  position: absolute;
  top: 18px;
  right: 20px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--blue);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  opacity: 0.86;
  border: 1px solid rgba(77, 170, 255, 0.18);
  border-radius: 8px;
  background: rgba(77, 170, 255, 0.055);
  text-shadow: 0 0 12px rgba(77, 170, 255, 0.58);
  transform: translate(0, 0);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.job-card:hover,
.job-card:focus-visible {
  transform: translateY(-3px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 44px rgba(0, 0, 0, 0.28),
    0 0 32px rgba(124, 255, 139, 0.08),
    0 0 38px rgba(255, 216, 106, 0.07);
  outline: none;
}

.job-card:hover::before,
.job-card:focus-visible::before,
.job-card:hover::after,
.job-card:focus-visible::after,
.job-card:hover .double-arrow,
.job-card:focus-visible .double-arrow {
  opacity: 1;
}

.job-card:hover::after,
.job-card:focus-visible::after {
  animation: card-sweep 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.job-card:hover .double-arrow,
.job-card:focus-visible .double-arrow {
  border-color: rgba(77, 170, 255, 0.32);
  background: rgba(77, 170, 255, 0.1);
  transform: translate(3px, -3px);
}

.apply-strip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  gap: 18px;
  margin-top: 14px;
  padding: 28px 68px 24px;
  min-height: 146px;
  border: 1px solid rgba(77, 170, 255, 0.34);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(77, 170, 255, 0.13), rgba(77, 170, 255, 0.04));
  text-align: center;
  animation: cta-in 720ms cubic-bezier(0.16, 1, 0.3, 1) 660ms both;
  box-shadow: inset 0 0 0 1px rgba(77, 170, 255, 0.08), 0 0 34px rgba(77, 170, 255, 0.06);
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.apply-strip h2 {
  margin-bottom: 0;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 800;
}

.apply-strip-copy {
  max-width: 680px;
  margin: 10px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.5;
}

.apply-strip:hover .double-arrow,
.apply-strip:focus-visible .double-arrow {
  opacity: 1;
  border-color: rgba(77, 170, 255, 0.32);
  background: rgba(77, 170, 255, 0.1);
  transform: translate(3px, -3px);
}

.apply-strip:focus-visible {
  outline: 2px solid rgba(77, 170, 255, 0.72);
  outline-offset: 4px;
}

.focused-panel {
  width: min(760px, 100%);
}

.focused-panel .heading-row {
  min-height: 160px;
}

.focused-panel .hero-subtitle {
  width: min(620px, 100%);
}

.focused-jobs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.focused-jobs .job-card {
  min-height: 142px;
  padding: 34px 70px 28px;
}

.focused-jobs .job-card strong {
  font-size: 18px;
}

.dialog-backdrop {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  animation: backdrop-in 180ms ease both;
}

.dialog-backdrop[hidden],
.application-backdrop[hidden] {
  display: none;
}

.dialog {
  position: relative;
  width: min(560px, 100%);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    #0c0d0d;
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 48px rgba(255, 216, 106, 0.05);
  animation: dialog-in 280ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.close-dialog,
.close-application {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.close-dialog::before,
.close-dialog::after,
.close-application::before,
.close-application::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 9px;
  width: 16px;
  height: 2px;
  background: var(--text);
}

.close-dialog::before,
.close-application::before {
  transform: rotate(45deg);
}

.close-dialog::after,
.close-application::after {
  transform: rotate(-45deg);
}

.dialog h2 {
  width: calc(100% - 46px);
  margin-bottom: 8px;
  font-size: 34px;
  line-height: 1.05;
}

.dialog-comp {
  color: var(--soft);
  font-weight: 800;
}

.dialog-comp.comp-line {
  justify-content: flex-start;
  margin-bottom: 14px;
  font-size: 13px;
  text-transform: uppercase;
}

.dialog p,
.dialog li {
  color: var(--soft);
  font-size: 15px;
  line-height: 1.55;
}

.dialog ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 24px;
  padding-left: 18px;
}

.dialog .primary-action {
  justify-self: start;
}

.application-backdrop {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(12px);
  animation: backdrop-in 180ms ease both;
}

.application-modal {
  position: relative;
  width: min(640px, 100%);
  max-height: min(760px, calc(100dvh - 32px));
  overflow: auto;
  padding: 30px;
  border: 1px solid rgba(77, 170, 255, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(77, 170, 255, 0.1), rgba(77, 170, 255, 0.03)),
    #101010;
  box-shadow: var(--shadow), 0 0 54px rgba(77, 170, 255, 0.12);
  animation: dialog-in 280ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.application-modal h2 {
  width: calc(100% - 44px);
  margin-bottom: 10px;
  font-size: 34px;
  line-height: 1.05;
}

.application-context {
  max-width: 520px;
  margin-bottom: 22px;
  color: var(--soft);
  font-size: 15px;
  line-height: 1.55;
}

.application-form {
  display: grid;
  gap: 20px;
}

.application-progress {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.application-progress span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 0 18px rgba(77, 170, 255, 0.38);
  transition: width 220ms ease;
}

.application-step {
  display: grid;
  gap: 16px;
  min-height: 326px;
  margin: 0;
  padding: 0;
  border: 0;
  animation: fade-rise 280ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.application-step[hidden] {
  display: none;
}

.application-field {
  display: grid;
  gap: 9px;
  min-width: 0;
}

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

.application-field span {
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.application-field em {
  margin-top: -2px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  font-style: normal;
  line-height: 1.4;
}

.application-field input,
.application-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  font: inherit;
  font-size: 15px;
  line-height: 1.5;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.application-field input {
  min-height: 50px;
  padding: 0 14px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.choice-option {
  position: relative;
  min-width: 0;
}

.choice-option input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.choice-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  font-size: 15px;
  font-weight: 850;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.choice-option input:focus-visible + span {
  border-color: rgba(77, 170, 255, 0.82);
  box-shadow: 0 0 0 3px rgba(77, 170, 255, 0.13);
}

.choice-option input:checked + span {
  border-color: rgba(124, 255, 139, 0.62);
  color: var(--text);
  background: rgba(124, 255, 139, 0.13);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 12px 26px rgba(124, 255, 139, 0.08);
}

.application-field input[type="file"] {
  min-height: auto;
  padding: 11px 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.application-field input[type="file"]::file-selector-button {
  min-height: 34px;
  margin-right: 12px;
  padding: 0 12px;
  border: 1px solid rgba(124, 255, 139, 0.34);
  border-radius: 8px;
  color: var(--text);
  background: rgba(124, 255, 139, 0.1);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
}

.application-field textarea {
  min-height: 130px;
  padding: 13px 14px;
  resize: vertical;
}

.application-field input::placeholder,
.application-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

.application-field input:focus,
.application-field textarea:focus {
  border-color: rgba(77, 170, 255, 0.82);
  background: rgba(77, 170, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(77, 170, 255, 0.13);
}

.flow-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.secondary-action:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.secondary-action:disabled {
  cursor: default;
  opacity: 0.35;
}

.application-success {
  min-height: 268px;
  padding: 34px 0;
  animation: fade-rise 280ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.application-success h3 {
  margin-bottom: 10px;
  font-size: 34px;
  line-height: 1.05;
}

.application-success p:last-child {
  max-width: 430px;
  color: var(--soft);
  font-size: 15px;
  line-height: 1.55;
}

.application-error {
  padding: 11px 13px;
  border: 1px solid rgba(255, 97, 97, 0.44);
  border-radius: 8px;
  color: #ffd3d3;
  background: rgba(255, 97, 97, 0.1);
  font-size: 13px;
  font-weight: 750;
}

@keyframes grid-drift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 72px 72px, 72px 72px;
  }
}

@keyframes atmosphere-pulse {
  0%,
  100% {
    opacity: 0.72;
  }

  50% {
    opacity: 1;
  }
}

@keyframes corner-draw {
  from {
    opacity: 0;
    transform: scale(0);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fade-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes card-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
    filter: blur(8px);
  }

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

@keyframes card-sweep {
  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(120%);
  }
}

@keyframes cta-in {
  from {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes backdrop-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

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

@media (max-width: 820px) {
  .site-shell {
    min-height: 100dvh;
    overflow: visible;
  }

  .site-shell::before {
    background-size: 48px 48px;
  }

  .corner {
    width: 14px;
    height: 14px;
  }

  .corner::before {
    width: 14px;
    height: 3px;
  }

  .corner::after {
    width: 3px;
    height: 14px;
  }

  .corner-tl,
  .corner-tr {
    top: 18px;
  }

  .corner-bl,
  .corner-br {
    bottom: 18px;
  }

  .corner-tl,
  .corner-bl {
    left: 18px;
  }

  .corner-tr,
  .corner-br {
    right: 18px;
  }

  .primary-action {
    min-height: 40px;
    padding: 0 14px;
  }

  .careers-layout {
    min-height: auto;
    padding: 24px 18px 72px;
  }

  .careers-panel {
    max-height: none;
    overflow: visible;
    padding: 0;
  }

  h1 {
    font-size: 42px;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .focused-jobs {
    grid-template-columns: 1fr;
  }

  .focused-jobs .job-card {
    min-height: 118px;
    padding: 28px 56px 24px;
  }

  .apply-strip {
    min-height: 132px;
  }

  .application-backdrop {
    padding: 16px;
  }

  .application-modal {
    max-height: calc(100dvh - 32px);
    padding: 24px;
  }

  .application-step,
  .application-success {
    min-height: 312px;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 460px) {
  .heading-row {
    gap: 10px;
    min-height: 118px;
  }

  h1 {
    font-size: 34px;
  }

  .jobs-grid {
    gap: 12px;
  }

  .apply-strip {
    gap: 16px;
    min-height: 124px;
    padding: 28px 56px 24px;
  }

  .apply-strip h2 {
    font-size: 24px;
  }

  .job-card {
    min-height: 86px;
    padding: 22px 56px 18px;
  }

  .job-card > .double-arrow,
  .apply-strip > .double-arrow {
    top: 14px;
    right: 14px;
    width: 28px;
    height: 28px;
  }

  .dialog {
    padding: 24px;
  }

  .dialog h2,
  .application-modal h2,
  .application-success h3 {
    font-size: 29px;
  }

  .application-field span {
    font-size: 16px;
  }

  .flow-actions {
    align-items: stretch;
  }

  .flow-actions .primary-action,
  .flow-actions .secondary-action {
    flex: 1;
  }
}

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