:root {
  --blue: #365fe5;
  --blue-soft: #6d8cff;
  --ink: #071329;
  --muted: #566277;
  --paper: #ffffff;
  --soft: #f2f4f8;
  --line: #d5dae3;
  --dark: #1c202b;
  --dark-2: #151a24;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(7, 19, 41, .10);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.container.narrow {
  width: min(980px, calc(100% - 40px));
}

.center {
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 70px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(213, 218, 227, .72);
  transition: box-shadow .28s ease, height .28s ease, background .28s ease;
}

.site-header.is-scrolled {
  height: 62px;
  box-shadow: 0 14px 40px rgba(7, 19, 41, .08);
  background: rgba(255, 255, 255, .96);
}

.nav-wrap {
  width: min(1180px, calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -.05em;
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(54, 95, 229, .08);
}

.brand.light {
  color: white;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 15px;
  color: #3b465b;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  transition: color .22s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--ink);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  min-height: 48px;
  padding: 0 24px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.nav-cta,
.btn.primary,
.btn.compact {
  color: white;
  background: var(--blue);
  box-shadow: 0 15px 30px rgba(54, 95, 229, .25);
}

.nav-cta:hover,
.btn.primary:hover,
.btn.compact:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(54, 95, 229, .32);
}

.btn.ghost {
  color: white;
  border: 1px solid rgba(255, 255, 255, .58);
  background: rgba(255, 255, 255, .08);
  box-shadow: none;
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, .16);
  transform: translateY(-2px);
}

.btn.compact {
  min-height: 38px;
  padding: 0 18px;
  font-size: 13px;
  white-space: nowrap;
}

.btn.full {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  padding: 0;
  cursor: pointer;
  place-items: center;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 99px;
  transition: transform .25s ease, opacity .2s ease;
}

.menu-toggle span:nth-child(1) { transform: translateY(-6px); }
.menu-toggle span:nth-child(3) { transform: translateY(6px); }

body.menu-open .menu-toggle span:nth-child(1) { transform: rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0;
  transition: opacity .28s ease;
}

.mobile-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 19, 41, .54);
  backdrop-filter: blur(10px);
}

.mobile-menu-inner {
  position: absolute;
  inset: 14px;
  min-height: calc(100dvh - 28px);
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(145deg, #ffffff 0%, #f2f4f8 100%);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .25);
  transform: translateY(-18px) scale(.98);
  transition: transform .32s cubic-bezier(.2, .8, .2, 1);
  display: flex;
  flex-direction: column;
}

body.menu-open .mobile-menu {
  pointer-events: auto;
  opacity: 1;
}

body.menu-open .mobile-menu-inner {
  transform: translateY(0) scale(1);
}

.mobile-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
}

.mobile-brand {
  color: var(--ink);
}

.mobile-label,
.eyebrow,
.section-label {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
}

.mobile-links {
  display: grid;
  gap: 6px;
  margin: 52px 0 auto;
}

.mobile-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 64px;
  padding: 0 4px;
  font-size: clamp(34px, 11vw, 62px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.07em;
  border-bottom: 1px solid rgba(213, 218, 227, .85);
}

.mobile-links a::after {
  content: "→";
  color: var(--blue);
  font-size: .48em;
}

.mobile-cta {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  font-weight: 900;
}

.hero {
  min-height: calc(100dvh - 70px);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -4%;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: heroDrift 16s ease-in-out infinite alternate;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 19, 41, .37), rgba(7, 19, 41, .60)),
    radial-gradient(circle at center, rgba(255,255,255,.08), transparent 48%);
}

.hero-content {
  width: min(920px, calc(100% - 30px));
  text-align: center;
  color: white;
  padding: 80px 0;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .92);
  color: #101826;
  border-radius: 999px;
  padding: 9px 18px;
  margin: 0 0 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
}

.hero-pill span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.hero h1,
.section-title,
.about-copy h2,
.section-heading-row h2,
.cta-section h2,
.page-hero h1,
.form-shell h1,
.contact-form-panel h1 {
  margin: 0;
  font-weight: 950;
  letter-spacing: -.075em;
  line-height: .95;
}

.hero h1 {
  font-size: clamp(48px, 7vw, 90px);
  text-wrap: balance;
}

.hero h1 span {
  color: white;
}

.hero-copy {
  width: min(660px, 100%);
  margin: 30px auto 0;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.section {
  padding: 92px 0;
  position: relative;
}

.section-label {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 70px;
  padding-top: 2px;
  color: #384761;
  border-top: 1px solid rgba(213, 218, 227, .72);
}

.section-label.dark {
  color: #aeb8cc;
  border-color: rgba(255, 255, 255, .19);
}

.section-label.centered {
  width: fit-content;
  margin: 0 auto 22px;
  border-top: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: .96fr 1fr;
  gap: 84px;
  align-items: center;
}

.about-copy h2 {
  font-size: clamp(40px, 5.2vw, 56px);
  margin-bottom: 30px;
}

.about-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 24px;
}

.image-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-card img {
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.history-section,
.soft-page {
  background: var(--soft);
}

.section-title {
  font-size: clamp(46px, 6vw, 68px);
  margin-bottom: 86px;
}

.timeline {
  display: grid;
  gap: 96px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 72px;
}

.timeline-item.reverse .timeline-media {
  order: 2;
}

.timeline-media {
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(7, 19, 41, .08);
}

.timeline-media img {
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  transition: transform .7s ease;
}

.timeline-media:hover img {
  transform: scale(1.045);
}

.timeline-media figcaption {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(10, 14, 22, .72);
  color: white;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
}

.timeline-text {
  position: relative;
  min-height: 180px;
  display: grid;
  align-content: center;
}

.year-bg {
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-58%);
  z-index: 0;
  font-size: clamp(112px, 14vw, 170px);
  font-weight: 950;
  letter-spacing: -.08em;
  color: rgba(7, 19, 41, .055);
  line-height: 1;
  pointer-events: none;
}

.timeline-text h3,
.partner-card h3,
.job-card h3,
.job-row h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 31px;
  line-height: 1.02;
  letter-spacing: -.045em;
}

.timeline-text p {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}

.brands-section {
  background: white;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 120px;
}

.partner-card {
  min-height: 180px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  background: rgba(255, 255, 255, .7);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.partner-card:hover {
  transform: translateY(-6px);
  border-color: rgba(54, 95, 229, .55);
  box-shadow: 0 22px 60px rgba(7, 19, 41, .09);
}

.partner-card span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  border-radius: 12px;
  color: #637087;
  background: #e1e4e9;
  font-size: 23px;
  font-weight: 950;
  letter-spacing: -.05em;
}

.partner-card h3 {
  font-size: 21px;
}

.partner-card p,
.job-card span,
.job-row span,
.page-hero p,
.contact-form-panel p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.testimonial-section,
.cta-section,
.site-footer {
  background: var(--dark);
  color: white;
}

.testimonial-section {
  padding: 100px 0 118px;
}

.testimonial-slider {
  text-align: center;
  min-height: 280px;
  position: relative;
}

.testimonial {
  display: none;
  margin: 0;
  font-size: clamp(38px, 5.5vw, 62px);
  line-height: 1.03;
  letter-spacing: -.065em;
  font-weight: 920;
}

.testimonial.is-active {
  display: block;
  animation: fadeLift .45s ease both;
}

.testimonial cite {
  display: grid;
  gap: 8px;
  margin-top: 48px;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  font-style: normal;
  font-weight: 700;
}

.testimonial cite span {
  color: #aeb8cc;
  font-weight: 600;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 34px;
}

.testimonial-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 99px;
  padding: 0;
  background: rgba(255, 255, 255, .38);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.testimonial-dots button.is-active {
  width: 36px;
  background: white;
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 56px;
}

.section-heading-row h2 {
  font-size: clamp(44px, 5vw, 64px);
}

.section-heading-row a {
  color: var(--blue);
  font-weight: 900;
}

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

.job-card {
  min-height: 174px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f1f3f7;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 54px rgba(7, 19, 41, .08);
}

.job-card.featured {
  border-color: var(--blue);
  background: #f7f9ff;
}

.job-card p,
.job-row p {
  margin: 0 0 14px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  color: #59657a;
}

.job-card h3 {
  font-size: 22px;
}

.job-card a {
  display: inline-block;
  margin-top: 20px;
  color: var(--blue);
  font-weight: 900;
}

.cta-section {
  padding: 104px 0 146px;
}

.cta-section h2 {
  font-size: clamp(44px, 6vw, 72px);
}

.cta-section p {
  color: #d7deed;
  margin: 18px auto 34px;
  font-size: 18px;
}

.site-footer {
  padding: 0 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 54px 80px;
}

.footer-brand p {
  color: #aeb8cc;
  line-height: 1.65;
  max-width: 350px;
  margin: 18px 0 0;
}

.footer-cta {
  justify-self: end;
  align-self: start;
}

.world-clock {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 34px;
}

.world-clock div {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.world-clock span {
  display: block;
  color: #aeb8cc;
  margin-bottom: 8px;
  font-size: 13px;
}

.world-clock strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .08em;
  font-size: 18px;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  padding-top: 26px;
  color: #aeb8cc;
  font-size: 12px;
}

.footer-bottom nav {
  display: flex;
  gap: 28px;
}

.page-main {
  min-height: 100dvh;
  padding: 92px 0 72px;
}

.page-hero h1,
.form-shell h1,
.contact-form-panel h1 {
  font-size: clamp(44px, 6vw, 76px);
  max-width: 860px;
}

.page-hero p {
  max-width: 630px;
  margin-top: 16px;
}

.eyebrow {
  color: #3a4962;
  margin: 0 0 20px;
}

.jobs-list {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}

.job-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  min-height: 118px;
  padding: 25px 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.job-row:hover {
  transform: translateY(-4px);
  border-color: rgba(54, 95, 229, .52);
  box-shadow: 0 18px 48px rgba(7, 19, 41, .07);
}

.job-row h2 {
  font-size: 21px;
}

.job-row span {
  display: block;
  max-width: 620px;
  margin-top: 8px;
}

.job-row small {
  display: block;
  color: #526075;
  margin-top: 12px;
}

.application-page {
  padding-top: 40px;
}

.form-shell,
.contact-shell {
  width: min(1040px, calc(100% - 44px));
  margin: 0 auto;
}

.form-shell {
  max-width: 860px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 36px;
  color: #5a667a;
  font-weight: 700;
}

.application-form,
.contact-form {
  margin-top: 58px;
  display: grid;
  gap: 28px;
}

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

label {
  display: grid;
  gap: 9px;
  color: #263248;
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #c6ccd7;
  background: transparent;
  color: var(--ink);
  outline: 0;
  padding: 13px 0 12px;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

select,
textarea {
  border: 1px solid #c6ccd7;
  border-radius: 10px;
  background: white;
  padding: 15px 18px;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 10px 30px rgba(54, 95, 229, .09);
}

.upload-field {
  display: grid;
  gap: 10px;
  color: #263248;
  font-size: 14px;
  font-weight: 700;
}

.dropzone {
  min-height: 136px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px dashed #bfc6d2;
  border-radius: 12px;
  background: rgba(255, 255, 255, .34);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.dropzone:hover {
  border-color: var(--blue);
  background: white;
  transform: translateY(-2px);
}

.dropzone input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.dropzone strong {
  font-weight: 600;
  color: #536177;
}

.dropzone small {
  color: #6c7789;
}

.upload-icon {
  color: #68758a;
  font-size: 42px;
  line-height: 1;
}

.form-message {
  min-height: 22px;
  margin: -10px 0 0;
  color: var(--blue);
  font-weight: 800;
}

.contact-shell {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: start;
}

.contact-form-panel > p {
  margin-top: 16px;
}

.contact-info {
  display: grid;
  gap: 28px;
  padding-top: 148px;
}

.info-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
}

.info-item > span {
  color: var(--blue);
  font-size: 20px;
}

.info-item strong {
  display: block;
  margin-bottom: 8px;
}

.info-item a,
.info-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .8, .2, 1);
}

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

.image-delay {
  transition-delay: .12s;
}

.stagger-grid > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.2, .8, .2, 1);
}

.stagger-grid.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger-grid.is-visible > *:nth-child(2) { transition-delay: .04s; }
.stagger-grid.is-visible > *:nth-child(3) { transition-delay: .08s; }
.stagger-grid.is-visible > *:nth-child(4) { transition-delay: .12s; }
.stagger-grid.is-visible > *:nth-child(5) { transition-delay: .16s; }
.stagger-grid.is-visible > *:nth-child(6) { transition-delay: .20s; }
.stagger-grid.is-visible > *:nth-child(7) { transition-delay: .24s; }
.stagger-grid.is-visible > *:nth-child(8) { transition-delay: .28s; }
.stagger-grid.is-visible > *:nth-child(9) { transition-delay: .32s; }
.stagger-grid.is-visible > *:nth-child(10) { transition-delay: .36s; }
.stagger-grid.is-visible > *:nth-child(11) { transition-delay: .40s; }
.stagger-grid.is-visible > *:nth-child(12) { transition-delay: .44s; }

@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(-.8%, -.5%, 0); }
  to { transform: scale(1.09) translate3d(.8%, .7%, 0); }
}

@keyframes fadeLift {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1060px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .nav-wrap {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
  }

  .about-grid,
  .timeline-item,
  .contact-shell {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .timeline-item.reverse .timeline-media {
    order: initial;
  }

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

  .contact-info {
    padding-top: 0;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 780px) {
  .container,
  .section-label,
  .nav-wrap {
    width: min(100% - 28px, 1120px);
  }

  .site-header,
  .site-header.is-scrolled {
    height: 64px;
  }

  .brand {
    font-size: 21px;
  }

  .hero {
    min-height: calc(100dvh - 64px);
    background-position: center;
  }

  .hero-content {
    padding: 54px 0;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 64px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions,
  .section-heading-row,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .section-heading-row a {
    width: 100%;
  }

  .section {
    padding: 68px 0;
  }

  .section-label {
    margin-bottom: 48px;
  }

  .section-title {
    margin-bottom: 52px;
  }

  .timeline {
    gap: 66px;
  }

  .year-bg {
    left: -4px;
    font-size: 112px;
  }

  .timeline-text h3 {
    font-size: 28px;
  }

  .timeline-text p {
    font-size: 17px;
  }

  .brand-grid,
  .job-card-grid,
  .world-clock,
  .contact-info,
  .form-grid.two {
    grid-template-columns: 1fr;
  }

  .partner-card,
  .job-card {
    min-height: auto;
  }

  .testimonial {
    font-size: clamp(34px, 11vw, 50px);
  }

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

  .footer-cta {
    justify-self: stretch;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
  }

  .job-row {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .job-row .btn {
    width: fit-content;
  }

  .page-main {
    padding-top: 62px;
  }

  .form-shell,
  .contact-shell {
    width: min(100% - 28px, 1040px);
  }

  .application-form,
  .contact-form {
    margin-top: 42px;
  }

  .mobile-links a {
    min-height: 58px;
  }
}

@media (max-width: 470px) {
  .hero-pill {
    max-width: 100%;
    white-space: normal;
    line-height: 1.3;
  }

  .btn,
  .nav-cta {
    min-height: 46px;
    padding-inline: 20px;
  }

  .section-title,
  .about-copy h2,
  .section-heading-row h2,
  .cta-section h2,
  .page-hero h1,
  .form-shell h1,
  .contact-form-panel h1 {
    letter-spacing: -.065em;
  }

  .page-hero h1,
  .form-shell h1,
  .contact-form-panel h1 {
    font-size: 44px;
  }

  .timeline-media img {
    aspect-ratio: 1.1 / 1;
  }

  .mobile-menu-inner {
    inset: 10px;
    min-height: calc(100dvh - 20px);
    border-radius: 24px;
    padding: 20px;
  }
}

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

  .reveal,
  .stagger-grid > * {
    opacity: 1;
    transform: none;
  }
}
