@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@500;600;700&family=Noto+Sans+KR:wght@400;500;600;700;800;900&display=swap");

:root {
  --ink: #17181c;
  --muted: #73767e;
  --line: #dedfe3;
  --paper: #f7f7f5;
  --white: #ffffff;
  --cobalt: #2c36de;
  --violet: #5224dc;
  --coral: #ff6169;
  --navy: #101b2e;
  --lime: #d8ff56;
  --radius: 2px;
  --page: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Sans KR", sans-serif;
  word-break: keep-all;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  width: var(--page);
  height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

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

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

.header-cta {
  display: inline-flex;
  gap: 24px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
}

.header-cta span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
}

.job-shell {
  width: var(--page);
  margin: 0 auto;
  padding: 76px 0 120px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 72px;
  align-items: start;
}

.title-wrap {
  margin-bottom: 54px;
}

.eyebrow,
.mini-label,
.summary-kicker {
  margin: 0 0 18px;
  color: var(--cobalt);
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(44px, 5.35vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.065em;
  font-weight: 900;
}

.lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: #555861;
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: -0.025em;
}

.hero-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #073b3a;
}

.hero-media::before {
  content: "TALK / REACT / CONNECT";
  position: absolute;
  z-index: 2;
  left: 30px;
  top: 28px;
  max-width: 210px;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 28px;
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.hero-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.5 / 1;
  display: block;
  object-fit: cover;
}

.hero-media figcaption {
  position: absolute;
  z-index: 2;
  left: 30px;
  right: 30px;
  bottom: 25px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.86);
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.job-copy {
  margin-top: 98px;
}

.content-section {
  position: relative;
  padding: 90px 0 98px;
  border-top: 1px solid var(--line);
}

.section-number {
  position: absolute;
  top: 102px;
  right: 0;
  margin: 0;
  color: #a5a7ad;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.content-section > h2,
.apply-copy h2 {
  margin: 0 0 55px;
  font-size: clamp(32px, 3.2vw, 49px);
  line-height: 1.18;
  letter-spacing: -0.055em;
}

.copy-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 58px;
}

.section-intro {
  margin: 0;
  font-size: 22px;
  line-height: 1.62;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.body-copy p,
.wide-copy {
  margin: 0 0 22px;
  color: #4f5259;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: -0.016em;
}

.wide-copy {
  max-width: 760px;
  margin-bottom: 42px;
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.project-showcase {
  margin-top: 64px;
}

.project-heading {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 48px;
  align-items: end;
}

.project-heading h3 {
  margin: 0;
  font-size: 29px;
  line-height: 1.42;
  letter-spacing: -0.045em;
}

.project-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.project-card {
  min-height: 302px;
  padding: 29px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--white);
}

.project-card.featured {
  color: var(--white);
  background: #073b3a;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  color: #8a8d94;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.project-card.featured .project-meta {
  color: #8ec9be;
}

.project-card h4 {
  margin: 31px 0 13px;
  font-family: "DM Sans", "Noto Sans KR", sans-serif;
  font-size: 27px;
  letter-spacing: -0.045em;
}

.project-card p {
  margin: 0 0 22px;
  color: #5a5d65;
  font-size: 14px;
  line-height: 1.75;
}

.project-card.featured p {
  color: #c7ded9;
}

.project-card ul {
  margin: auto 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.project-card.featured ul {
  border-color: #315d5a;
}

.project-card li {
  position: relative;
  padding-left: 15px;
  color: #5f6269;
  font-size: 12px;
  line-height: 1.75;
}

.project-card.featured li {
  color: #d8e8e4;
}

.project-card li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 900;
}

.content-bridge {
  margin-top: 20px;
  padding: 27px 30px;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 34px;
  background: #e9f5f1;
}

.content-bridge strong {
  font-size: 17px;
  line-height: 1.55;
}

.content-bridge p {
  margin: 0;
  color: #4f625e;
  font-size: 13px;
  line-height: 1.78;
}

.project-source {
  width: fit-content;
  display: inline-block;
  margin-top: 22px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.statement {
  position: relative;
  margin: 0 0 42px;
  padding: 42px 48px 45px;
  color: var(--white);
  background: linear-gradient(130deg, var(--cobalt), var(--violet) 72%);
}

.statement p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(27px, 3vw, 41px);
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.quote-mark {
  position: absolute;
  right: 28px;
  top: -6px;
  color: rgba(255, 255, 255, 0.14);
  font-family: Georgia, serif;
  font-size: 130px;
}

.topic-ticker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 56px 0 78px;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.topic-ticker span {
  min-height: 112px;
  padding: 27px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
}

.reference-heading {
  max-width: 640px;
  margin-bottom: 34px;
}

.reference-heading h3 {
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.reference-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

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

.reference-card {
  min-height: 248px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.reference-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  background: var(--white);
}

.content-type-card:hover {
  transform: none;
}

.reference-card.accent {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.ref-index,
.card-link {
  color: var(--muted);
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.reference-card.accent .ref-index,
.reference-card.accent .card-link {
  color: #b9bbc2;
}

.reference-card h4 {
  margin: 24px 0 10px;
  font-family: "DM Sans", "Noto Sans KR", sans-serif;
  font-size: 23px;
  letter-spacing: -0.04em;
}

.reference-card p {
  margin: 0 0 28px;
  color: #60636b;
  font-size: 14px;
  line-height: 1.72;
}

.reference-card.accent p {
  color: #d4d5da;
}

.card-link {
  margin-top: auto;
}

.editorial-rule {
  margin-top: 24px;
  padding: 26px 29px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  background: #f1f0ff;
}

.editorial-rule > span {
  color: var(--cobalt);
  font-size: 24px;
}

.editorial-rule p {
  margin: 0;
  color: #4d5061;
  font-size: 14px;
  line-height: 1.75;
}

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

.language-card {
  position: relative;
  min-height: 185px;
  padding: 28px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.language-card:nth-child(2) {
  background: var(--cobalt);
}

.language-card:nth-child(3) {
  color: var(--ink);
  background: var(--lime);
}

.language-card:nth-child(4) {
  background: var(--coral);
}

.language-card > span {
  position: absolute;
  right: 18px;
  top: 11px;
  color: rgba(255, 255, 255, 0.25);
  font-family: "DM Sans", sans-serif;
  font-size: 56px;
  font-weight: 700;
}

.language-card:nth-child(3) > span {
  color: rgba(0, 0, 0, 0.12);
}

.language-card h3 {
  position: relative;
  z-index: 1;
  margin: 36px 0 13px;
  font-family: "DM Sans", "Noto Sans KR", sans-serif;
  font-size: 29px;
  letter-spacing: -0.04em;
}

.language-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.language-card:nth-child(3) p {
  color: rgba(0, 0, 0, 0.65);
}

.criteria-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.criteria-columns h3 {
  margin: 0 0 25px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--ink);
  font-size: 18px;
  letter-spacing: -0.03em;
}

.check-list,
.plus-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plus-list li {
  position: relative;
  padding: 0 0 18px 29px;
  color: #4f5259;
  font-size: 14px;
  line-height: 1.7;
}

.check-list li::before,
.plus-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--cobalt);
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
}

.plus-list li::before {
  content: "+";
}

.note-line,
.legal-note {
  margin: 26px 0 0;
  padding: 21px 23px;
  color: #555861;
  background: var(--paper);
  font-size: 13px;
  line-height: 1.72;
}

.journey-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.journey-list li {
  padding: 28px 0;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.journey-list li > span {
  color: var(--cobalt);
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.journey-list h3 {
  margin: -3px 0 7px;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.journey-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.condition-list {
  margin: 0;
  border-top: 1px solid var(--ink);
}

.condition-list > div {
  padding: 23px 0;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.condition-list dt {
  color: var(--muted);
  font-size: 13px;
}

.condition-list dd {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.apply-section {
  margin-top: 10px;
  padding: 64px 54px;
  color: var(--white);
  background: var(--navy);
}

.apply-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
}

.eyebrow.light {
  color: var(--lime);
}

.apply-copy h2 {
  margin-bottom: 24px;
}

.apply-copy > p:last-child {
  margin: 0;
  color: #b8bdc7;
  font-size: 14px;
  line-height: 1.75;
}

.apply-form {
  display: grid;
  gap: 18px;
}

.honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.apply-form label {
  display: grid;
  gap: 8px;
}

.apply-form label > span {
  color: #c9cdd5;
  font-size: 12px;
}

.apply-form label > span em {
  margin-left: 5px;
  color: #747d8d;
  font-size: 10px;
  font-style: normal;
}

.field-help {
  margin: 8px 0 0;
  color: #747d8d;
  font-size: 10px;
  line-height: 1.65;
}

.upload-field {
  min-width: 0;
}

.upload-label {
  display: block;
  margin-bottom: 8px;
  color: #c9cdd5;
  font-size: 12px;
}

.upload-label em {
  margin-left: 5px;
  color: #747d8d;
  font-size: 10px;
  font-style: normal;
}

.drop-zone {
  min-height: 118px;
  padding: 23px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  border: 1px dashed #596274;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.drop-zone:hover,
.drop-zone:focus-visible,
.drop-zone.is-dragging {
  border-color: var(--lime);
  background: rgba(216, 255, 86, 0.05);
  outline: 0;
}

.drop-zone.is-uploading {
  cursor: wait;
}

.drop-zone.is-complete {
  border-style: solid;
  border-color: #63e6be;
}

.drop-zone > input {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0;
  pointer-events: none;
}

.drop-zone strong,
.drop-zone span {
  display: block;
}

.drop-zone strong {
  color: var(--white);
  font-size: 13px;
}

.drop-zone span {
  margin-top: 6px;
  color: #8f97a5;
  font-size: 10px;
  line-height: 1.55;
}

.browse-button {
  min-width: 82px;
  min-height: 38px;
  padding: 0 13px;
  color: var(--ink);
  background: var(--lime);
  border: 0;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

.upload-progress {
  margin-top: 12px;
  padding: 15px 17px;
  border: 1px solid #3b4658;
  background: rgba(255, 255, 255, 0.025);
}

.upload-file-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: start;
}

.upload-file-row strong,
.upload-file-row span {
  display: block;
}

.upload-file-row strong {
  overflow: hidden;
  max-width: 330px;
  color: #d9dde4;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.upload-file-row span {
  margin-top: 3px;
  color: #747d8d;
  font-size: 9px;
}

.upload-file-row button {
  padding: 0;
  color: #9ca3af;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 10px;
}

.progress-track {
  height: 3px;
  margin-top: 13px;
  overflow: hidden;
  background: #313b4c;
}

.progress-track i {
  width: 0;
  height: 100%;
  display: block;
  background: var(--lime);
  transition: width 140ms ease;
}

.upload-progress > p {
  margin: 9px 0 0;
  color: #929aa8;
  font-size: 10px;
}

.upload-progress[data-state="complete"] > p {
  color: #63e6be;
}

.upload-progress[data-state="error"] > p {
  color: #ff9ca1;
}

.language-picker {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.language-picker legend {
  width: 100%;
  margin-bottom: 12px;
  color: #c9cdd5;
  font-size: 12px;
}

.language-picker legend span {
  margin-left: 6px;
  color: var(--lime);
  font-size: 10px;
}

.language-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.age-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 250px;
}

.language-options label {
  position: relative;
  display: block;
  cursor: pointer;
}

.language-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.language-options label > span {
  min-height: 43px;
  display: grid;
  place-items: center;
  color: #c9cdd5;
  border: 1px solid #4c5565;
  font-size: 12px;
  font-weight: 700;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.language-options input:checked + span {
  color: var(--ink);
  border-color: var(--lime);
  background: var(--lime);
}

.language-options input:focus-visible + span {
  outline: 2px solid #8fb6ff;
  outline-offset: 2px;
}

.language-picker > p {
  margin: 7px 0 0;
  color: #747d8d;
  font-size: 10px;
}

.apply-form input,
.apply-form select,
.apply-form textarea {
  width: 100%;
  padding: 13px 0;
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid #4c5565;
  border-radius: 0;
  outline: 0;
}

.apply-form textarea {
  min-height: 115px;
  resize: vertical;
}

.apply-form input::placeholder,
.apply-form textarea::placeholder {
  color: #747d8d;
}

.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
  border-bottom-color: var(--lime);
}

.apply-form select option {
  color: var(--ink);
}

.apply-form .consent {
  margin-top: 4px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: start;
}

.consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
}

.consent span {
  line-height: 1.55;
}

.privacy-details {
  margin-top: -5px;
  color: #8f97a5;
  font-size: 10px;
  line-height: 1.65;
}

.privacy-details summary {
  width: fit-content;
  cursor: pointer;
  color: #aeb4bf;
}

.privacy-details p {
  margin: 9px 0 0;
}

.submit-button {
  margin-top: 7px;
  padding: 17px 19px;
  display: flex;
  justify-content: space-between;
  color: var(--ink);
  background: var(--lime);
  border: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
}

.submit-button:hover {
  filter: brightness(0.94);
}

.submit-button:disabled {
  cursor: wait;
  filter: saturate(0.55);
  opacity: 0.82;
}

.form-help {
  margin: 0;
  color: #8f97a5;
  font-size: 11px;
  line-height: 1.6;
}

.form-help.is-success {
  color: var(--lime);
}

.form-help.is-error {
  color: #ff9ca1;
}

.job-sidebar {
  position: sticky;
  top: 34px;
  padding-top: 183px;
}

.summary-card {
  padding: 26px 25px;
  border: 1px solid var(--line);
}

.summary-kicker {
  margin-bottom: 19px;
}

.summary-card dl {
  margin: 0;
}

.summary-card dl > div {
  padding: 17px 0;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 15px;
  border-top: 1px solid var(--line);
}

.summary-card dt {
  color: #9699a0;
  font-size: 12px;
}

.summary-card dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
}

.sidebar-cta {
  margin-top: 18px;
  min-height: 54px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  font-size: 14px;
  font-weight: 700;
  transition: background 160ms ease;
}

.sidebar-cta:hover {
  background: var(--cobalt);
}

.side-nav {
  margin-top: 23px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 15px;
}

.side-nav a {
  color: #a0a2a8;
  font-size: 11px;
}

.side-nav a:hover {
  color: var(--ink);
}

.site-footer {
  padding: 58px max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 40px;
  align-items: end;
  color: var(--white);
  background: var(--ink);
}

.footer-brand .brand-logo {
  filter: brightness(0) invert(1);
}

.footer-brand {
  margin-bottom: 13px;
}

.site-footer p {
  margin: 0;
  color: #888b93;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 12px;
}

.copyright {
  white-space: nowrap;
}

.tracking-consent {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 24px;
  width: min(460px, calc(100vw - 32px));
  padding: 20px;
  border: 1px solid #d9dce4;
  background: #fff;
  box-shadow: 0 18px 55px rgb(17 24 39 / 16%);
}

.tracking-consent[hidden] {
  display: none;
}

.tracking-consent p {
  margin: 0;
  color: #4f5562;
  font-size: 14px;
  line-height: 1.65;
}

.tracking-consent div {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 14px;
}

.tracking-consent button {
  min-width: 76px;
  padding: 10px 14px;
  border: 1px solid #111827;
  background: #fff;
  color: #111827;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.tracking-consent button:last-child {
  background: #111827;
  color: #fff;
}

@media (max-width: 640px) {
  .tracking-consent {
    right: 16px;
    bottom: 16px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 960px) {
  :root {
    --page: min(100% - 40px, 760px);
  }

  .job-shell {
    padding-top: 54px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .job-sidebar {
    position: static;
    grid-row: 1;
    padding: 0 0 42px;
  }

  .summary-card {
    display: none;
  }

  .sidebar-cta {
    position: fixed;
    z-index: 20;
    left: 20px;
    right: 20px;
    bottom: 16px;
    margin: 0;
    box-shadow: 0 12px 36px rgba(16, 27, 46, 0.28);
    transition: opacity 180ms ease, transform 180ms ease, background 160ms ease;
  }

  .apply-in-view .sidebar-cta {
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
  }

  .side-nav {
    display: none;
  }

  .job-main {
    grid-row: 2;
  }

  .hero-media::before {
    font-size: 24px;
  }

  .site-footer {
    padding-bottom: 110px;
  }
}

@media (max-width: 700px) {
  :root {
    --page: calc(100vw - 32px);
  }

  .site-header {
    height: 76px;
  }

  .brand {
    font-size: 19px;
  }

  .header-cta {
    gap: 8px;
    font-size: 12px;
  }

  .header-cta span {
    width: 30px;
    height: 30px;
  }

  .job-shell {
    padding: 38px 0 86px;
  }

  .title-wrap {
    margin-bottom: 38px;
  }

  .eyebrow {
    margin-bottom: 13px;
    font-size: 10px;
  }

  h1 {
    font-size: clamp(38px, 11vw, 53px);
    line-height: 1.1;
  }

  .lead {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.65;
  }

  .desktop-only {
    display: none;
  }

  .hero-media::before {
    left: 19px;
    top: 19px;
    max-width: 130px;
    font-size: 18px;
  }

  .hero-media figcaption {
    left: 19px;
    right: 19px;
    bottom: 16px;
    font-size: 8px;
  }

  .job-copy {
    margin-top: 70px;
  }

  .content-section {
    padding: 70px 0 78px;
  }

  .section-number {
    top: 78px;
  }

  .content-section > h2,
  .apply-copy h2 {
    margin-bottom: 38px;
    font-size: 34px;
  }

  .copy-grid,
  .project-heading,
  .content-bridge,
  .criteria-columns,
  .apply-section {
    grid-template-columns: 1fr;
  }

  .copy-grid {
    gap: 28px;
  }

  .project-heading {
    gap: 19px;
  }

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

  .project-card {
    min-height: 280px;
    padding: 25px;
  }

  .content-bridge {
    gap: 12px;
    padding: 24px;
  }

  .section-intro {
    font-size: 19px;
  }

  .statement {
    padding: 32px 26px 34px;
  }

  .statement p {
    font-size: 27px;
  }

  .topic-ticker,
  .reference-grid,
  .language-grid {
    grid-template-columns: 1fr;
  }

  .topic-ticker {
    margin: 42px 0 64px;
  }

  .topic-ticker span {
    min-height: 88px;
    padding: 22px;
  }

  .reference-card {
    min-height: 215px;
  }

  .criteria-columns {
    gap: 40px;
  }

  .journey-list li,
  .condition-list > div {
    grid-template-columns: 86px 1fr;
  }

  .apply-section {
    padding: 46px 25px;
    gap: 44px;
  }

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

  .language-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .drop-zone {
    grid-template-columns: 1fr;
  }

  .browse-button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
  }
}
