/*
 * Generated Landing stylesheet. Do not edit this file directly.
 * Run: node scripts/build-styles.mjs
 */
/* source: main.css */
@font-face {
  font-family: "Onest Local";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../assets/fonts/onest-cyrillic.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope Local";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../assets/fonts/manrope-cyrillic.woff2") format("woff2");
}

:root {
  --font-display: "Onest Local", "Arial", sans-serif;
  --font-body: "Manrope Local", "Arial", sans-serif;
  --navy-950: #06143b;
  --navy-900: #092358;
  --navy-800: #123a7a;
  --blue-700: #2b5da8;
  --blue-500: #4c82cf;
  --blue-200: #cddff6;
  --blue-100: #e5f0fd;
  --ice-50: #f7faff;
  --ice-100: #eef5fc;
  --ice-200: #e4edf7;
  --white: #ffffff;
  --ink: #081a44;
  --muted: #53647f;
  --line: rgba(20, 58, 116, 0.14);
  --coral: #ec194c;
  --coral-dark: #cf1140;
  --cyan: #59dce6;
  --success: #167955;
  --danger: #b42318;
  --shadow-sm: 0 10px 30px rgba(7, 31, 75, 0.08);
  --shadow-md: 0 24px 60px rgba(7, 31, 75, 0.13);
  --shadow-lg: 0 36px 90px rgba(4, 24, 64, 0.2);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 44px;
  --container: 1360px;
  --header-height: 96px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ice-50);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(72, 208, 224, 0.36);
  color: var(--navy-950);
}

:focus-visible {
  outline: 3px solid rgba(38, 107, 206, 0.42);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 4000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy-950);
  transform: translateY(-160%);
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(78px, 9vw, 132px) 0;
}

.section--compact {
  padding: clamp(42px, 5vw, 72px) 0;
}

.section-heading {
  margin-bottom: clamp(32px, 4.5vw, 58px);
}

.section-heading--inline,
.section-heading--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 44px;
}

.section-heading--inline > p,
.section-heading--split > p {
  max-width: 520px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 20px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow img {
  width: 18px;
  height: 18px;
}

.eyebrow--light,
.eyebrow--hero {
  color: rgba(255, 255, 255, 0.82);
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
}

h2 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(42px, 5.5vw, 78px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease),
    background-color 220ms var(--ease),
    border-color 220ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button--compact {
  min-height: 46px;
  padding: 12px 20px;
  font-size: 14px;
}

.button--full {
  width: 100%;
}

.button--primary {
  background: linear-gradient(110deg, var(--navy-800) 0%, #17368c 45%, var(--coral) 100%);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(22, 52, 134, 0.2);
}

.button--primary:hover {
  box-shadow: 0 18px 38px rgba(22, 52, 134, 0.3);
}

.button--secondary {
  border-color: rgba(19, 60, 129, 0.36);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy-900);
  backdrop-filter: blur(12px);
}

.button--secondary:hover {
  border-color: var(--navy-800);
  background: var(--white);
}

.button--light {
  background: var(--white);
  color: var(--navy-900);
  box-shadow: 0 12px 28px rgba(3, 19, 55, 0.18);
}

.button__icon {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.button--secondary .button__icon,
.button--light .button__icon {
  filter: none;
}

.button__icon--leading {
  margin-left: -2px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--navy-800);
  font-weight: 800;
  text-decoration: none;
}

.text-link img {
  width: 18px;
  height: 18px;
  transition: transform 200ms var(--ease);
}

.text-link:hover img {
  transform: translateX(4px);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition:
    height 240ms var(--ease),
    background-color 240ms var(--ease),
    box-shadow 240ms var(--ease),
    backdrop-filter 240ms var(--ease);
}

.site-header.is-scrolled {
  height: 78px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(248, 251, 255, 0.9);
  box-shadow: 0 10px 34px rgba(6, 27, 69, 0.08);
  backdrop-filter: blur(18px) saturate(140%);
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(180px, 250px) 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: min(220px, 100%);
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 30px);
}

.desktop-nav a {
  position: relative;
  padding: 10px 6px;
  color: var(--navy-950);
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 6px;
  bottom: 4px;
  left: 6px;
  height: 2px;
  border-radius: 999px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-button,
.icon-button {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
}

.menu-button img,
.icon-button img {
  width: 22px;
  height: 22px;
}

.mobile-nav {
  position: fixed;
  z-index: 1800;
  inset: 0;
  pointer-events: none;
  visibility: hidden;
}

.mobile-nav[aria-hidden="false"] {
  pointer-events: auto;
  visibility: visible;
}

.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: rgba(3, 15, 42, 0.56);
  opacity: 0;
  backdrop-filter: blur(5px);
  transition: opacity 250ms var(--ease);
}

.mobile-nav__panel {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  width: min(390px, calc(100% - 20px));
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateX(calc(100% + 20px));
  transition: transform 300ms var(--ease);
}

.mobile-nav[aria-hidden="false"] .mobile-nav__backdrop {
  opacity: 1;
}

.mobile-nav[aria-hidden="false"] .mobile-nav__panel {
  transform: translateX(0);
}

.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 750;
}

.mobile-nav .icon-button {
  display: inline-flex;
}

.mobile-nav nav {
  display: grid;
  margin: 24px 0 auto;
}

.mobile-nav nav a {
  padding: 15px 2px;
  border-bottom: 1px solid var(--line);
  font-size: 21px;
  font-weight: 700;
  text-decoration: none;
}

.hero {
  position: relative;
  padding: 14px;
}

.hero-scene {
  position: relative;
  min-height: min(820px, calc(100vh - 28px));
  overflow: hidden;
  border-radius: 28px;
  background: #bed3eb;
  box-shadow: var(--shadow-md);
  isolation: isolate;
}

.hero-scene__background,
.hero-scene__aurora-art,
.hero-scene__aurora,
.hero-scene__person {
  position: absolute;
  inset: 0;
}

.hero-scene__background {
  z-index: 1;
  overflow: hidden;
  transform: scale(1.035) translate3d(var(--hero-bg-x, 0), var(--hero-bg-y, 0), 0);
  transition: transform 90ms linear;
}

.hero-scene__background::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 251, 255, 0.98) 0%, rgba(247, 251, 255, 0.92) 30%, rgba(237, 246, 255, 0.52) 49%, rgba(237, 246, 255, 0.04) 69%),
    linear-gradient(180deg, rgba(6, 22, 60, 0.04) 0%, rgba(6, 22, 60, 0) 54%, rgba(4, 18, 48, 0.18) 100%);
  content: "";
  pointer-events: none;
}

.hero-scene__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 54%;
}

.hero-scene__aurora {
  z-index: 2;
  width: 100%;
  height: 100%;
  mix-blend-mode: normal;
  opacity: 1;
  pointer-events: none;
  transform: translateZ(0);
}

.hero-scene__person {
  z-index: 3;
  top: auto;
  right: 2.2%;
  bottom: -2%;
  left: auto;
  width: auto;
  height: 94%;
  max-width: none;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(-20px 26px 34px rgba(3, 17, 47, 0.2));
  transform: translate3d(var(--hero-person-x, 0), var(--hero-person-y, 0), 0);
  transition: transform 90ms linear;
}

.hero-scene__content {
  position: relative;
  z-index: 4;
  min-height: min(820px, calc(100vh - 28px));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 70px;
  padding-bottom: 70px;
}

.hero-scene__content > * {
  max-width: 650px;
}

.eyebrow--hero {
  color: var(--navy-800);
}

.hero-scene h1 {
  margin: 0;
  color: #082365;
  font-size: clamp(76px, 8.3vw, 132px);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero-scene__lead {
  margin: 28px 0 0;
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.1vw, 32px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.hero-scene__copy {
  margin: 12px 0 0;
  color: #263b5d;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.55;
}

.hero-scene__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-scene__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 26px;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 700;
}

.hero-scene__trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-scene__trust img {
  width: 19px;
  height: 19px;
}

.hero-scene__index {
  position: absolute;
  z-index: 5;
  right: 34px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.hero-scene__index span {
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, 0.75);
}

.hero-scene__index strong,
.hero-scene__index small {
  font-size: 14px;
}

.hero-scene__season {
  position: absolute;
  z-index: 5;
  top: calc(var(--header-height) + 14px);
  right: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background: rgba(5, 25, 66, 0.25);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.hero-scene__season img {
  width: 17px;
  height: 17px;
  filter: brightness(0) invert(1);
}

.route-showcase {
  background: var(--ice-50);
}

.route-showcase h2 {
  font-size: clamp(36px, 4vw, 60px);
}

.route-cards {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 14px;
}

.route-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: var(--radius-md);
  color: var(--white);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  isolation: isolate;
}

.route-card > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease);
}

.route-card__shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 17, 45, 0.03) 20%, rgba(3, 17, 45, 0.78) 100%);
}

.route-card:hover > img {
  transform: scale(1.045);
}

.route-card__meta {
  position: absolute;
  top: 18px;
  left: 20px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(4, 20, 53, 0.26);
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.route-card strong {
  position: absolute;
  right: 64px;
  bottom: 22px;
  left: 22px;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 36px);
  letter-spacing: -0.035em;
}

.route-card__arrow,
.story-card__button {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(5, 23, 58, 0.34);
  backdrop-filter: blur(10px);
}

.route-card__arrow img,
.story-card__button img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.route-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 8%, rgba(91, 211, 230, 0.15), transparent 30%),
    var(--white);
}

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

.step-card {
  position: relative;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--ice-50);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.step-card--accent {
  border-color: transparent;
  background: linear-gradient(145deg, var(--navy-900), #153b85 65%, #395db4);
  color: var(--white);
}

.step-card__number {
  position: absolute;
  top: 12px;
  right: 20px;
  color: rgba(10, 43, 99, 0.08);
  font-family: var(--font-display);
  font-size: 92px;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
}

.step-card--accent .step-card__number {
  color: rgba(255, 255, 255, 0.08);
}

.step-card__icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(49, 95, 169, 0.18);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.step-card__icon img {
  width: 27px;
  height: 27px;
}

.step-card h3 {
  max-width: 330px;
  margin: auto 0 10px;
  font-size: clamp(25px, 2.3vw, 34px);
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.step-card p {
  max-width: 410px;
  margin: 0;
  color: var(--muted);
}

.step-card--accent p {
  color: rgba(255, 255, 255, 0.74);
}

.step-card--accent .step-card__icon img {
  filter: none;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 44px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--ice-50);
}

.metrics article {
  min-height: 138px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 30px;
}

.metrics article + article {
  border-left: 1px solid var(--line);
}

.metrics strong {
  color: var(--navy-800);
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 58px);
  letter-spacing: -0.06em;
  line-height: 1;
}

.metrics span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.vacancies-section {
  background: var(--ice-100);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-chip {
  min-height: 44px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 750;
  transition: background-color 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease);
}

.filter-chip.is-active {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: var(--white);
}

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

.vacancy-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.vacancy-card[hidden] {
  display: none;
}

.vacancy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.vacancy-card--featured {
  border-color: transparent;
  background: linear-gradient(150deg, var(--navy-950), var(--navy-800));
  color: var(--white);
}

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

.vacancy-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--ice-100);
}

.vacancy-card__icon img {
  width: 25px;
  height: 25px;
}

.vacancy-card__badge {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vacancy-card--featured .vacancy-card__badge {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.75);
}

.vacancy-card__location {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 34px 0 8px;
  color: var(--muted);
  font-size: 13px;
}

.vacancy-card__location img {
  width: 16px;
  height: 16px;
}

.vacancy-card--featured .vacancy-card__location,
.vacancy-card--featured > p {
  color: rgba(255, 255, 255, 0.72);
}

.vacancy-card h3 {
  margin: 0;
  font-size: clamp(25px, 2.2vw, 34px);
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.vacancy-card > p:not(.vacancy-card__location) {
  margin: 12px 0 26px;
  color: var(--muted);
}

.vacancy-card__action {
  align-self: flex-start;
  margin-top: auto;
}

.vacancy-card--featured .vacancy-card__action {
  color: var(--white);
}

.vacancy-card--featured .vacancy-card__action img {
  filter: brightness(0) invert(1);
}

.map-section {
  overflow: hidden;
  background: var(--white);
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: 20px;
}

.region-map {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 25% 18%, rgba(92, 212, 228, 0.15), transparent 26%),
    linear-gradient(160deg, #f8fbff, #eaf3fe);
  box-shadow: var(--shadow-sm);
}

.region-map__shape {
  position: absolute;
  top: calc(50% - 16px);
  left: 50%;
  width: min(calc(100% - 80px), 690px);
  height: auto;
  aspect-ratio: 720 / 640;
  transform: translate(-50%, -50%);
  opacity: 0.98;
}

.region-map__markers {
  position: absolute;
  top: calc(50% - 16px);
  left: 50%;
  width: min(calc(100% - 80px), 690px);
  height: auto;
  aspect-ratio: 720 / 640;
  transform: translate(-50%, -50%);
}

.map-marker {
  position: absolute;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  transform: translate(
    calc(-50% + var(--marker-x, 0px)),
    calc(-50% + var(--marker-y, 0px))
  );
}

.map-marker__leader {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: var(--leader-length, 0);
  height: 1px;
  background: rgba(8, 37, 90, 0.48);
  opacity: var(--leader-opacity, 0);
  transform: rotate(var(--leader-angle, 0deg));
  transform-origin: 0 50%;
  pointer-events: none;
}

.map-marker__anchor {
  position: absolute;
  top: calc(50% - var(--marker-y, 0px));
  left: calc(50% - var(--marker-x, 0px));
  width: 6px;
  height: 6px;
  border: 1px solid var(--white);
  border-radius: 50%;
  background: var(--navy-800);
  box-shadow: 0 2px 8px rgba(8, 37, 90, 0.28);
  opacity: var(--leader-opacity, 0);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.map-marker__dot {
  position: absolute;
  inset: 15px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--blue-700);
  box-shadow: 0 3px 12px rgba(8, 37, 90, 0.32);
  transition: transform 180ms var(--ease), background-color 180ms var(--ease);
}

.map-marker__dot::after {
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(40, 92, 168, 0.3);
  border-radius: 50%;
  content: "";
}

.map-marker__label {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: max-content;
  padding: 6px 9px;
  border: 1px solid rgba(38, 83, 149, 0.15);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(4, 26, 69, 0.09);
  transform: translate(var(--label-x, 14px), var(--label-y, -28px));
  backdrop-filter: blur(8px);
  pointer-events: none;
}

.map-marker:hover .map-marker__dot,
.map-marker.is-active .map-marker__dot {
  background: var(--coral);
  transform: scale(1.32);
}

.map-marker.is-active {
  z-index: 4;
}

.map-marker.is-active .map-marker__label {
  border-color: rgba(235, 25, 76, 0.28);
  color: var(--coral-dark);
}

.region-map__legend {
  position: absolute;
  right: 22px;
  bottom: 18px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 11px;
}

.region-map__legend span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.region-map__legend i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.region-map__legend a {
  text-decoration: none;
}

.city-panel {
  min-height: 650px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 50px);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--navy-950), #10387c 76%, #235aa0);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.city-panel__top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.city-panel__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.09);
}

.city-panel__icon img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
}

.city-panel__eyebrow {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.city-panel h3 {
  margin: auto 0 14px;
  font-size: clamp(48px, 5vw, 76px);
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.city-panel > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(16px, 1.5vw, 20px);
}

.city-panel__sectors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.city-panel__sectors span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 12px;
  font-weight: 700;
}

.city-panel__note {
  margin-top: 18px !important;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px !important;
}

.city-panel__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.city-panel .text-link {
  color: var(--white);
}

.city-panel .text-link img {
  filter: brightness(0) invert(1);
}

.city-tabs {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  padding-bottom: 4px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.city-tab {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--ice-50);
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 750;
}

.city-tab.is-active {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: var(--white);
}

.support-section {
  background: linear-gradient(180deg, var(--ice-100), #eaf2fb);
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.74fr) minmax(0, 1.26fr);
  gap: 18px;
}

.support-tabs {
  display: grid;
  gap: 10px;
}

.support-tab {
  width: 100%;
  min-height: 104px;
  display: grid;
  grid-template-columns: 46px 1fr 20px;
  align-items: center;
  gap: 15px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  text-align: left;
  transition: transform 200ms var(--ease), background-color 200ms var(--ease), box-shadow 200ms var(--ease);
}

.support-tab:hover,
.support-tab.is-active {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateX(5px);
}

.support-tab > img:first-child {
  width: 29px;
  height: 29px;
  margin: auto;
}

.support-tab span {
  display: grid;
  gap: 3px;
}

.support-tab strong {
  font-family: var(--font-display);
  font-size: 19px;
}

.support-tab small {
  color: var(--muted);
  font-size: 12px;
}

.support-tab__arrow {
  width: 18px;
  height: 18px;
  opacity: 0.35;
}

.support-tab.is-active .support-tab__arrow {
  opacity: 1;
}

.support-detail {
  position: relative;
  min-height: 446px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
  box-shadow: var(--shadow-md);
  isolation: isolate;
}

.support-detail__photo,
.support-detail__shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.support-detail__photo {
  object-fit: cover;
  object-position: center;
  transition: transform 650ms var(--ease);
}

.support-detail:hover .support-detail__photo {
  transform: scale(1.025);
}

.support-detail__shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(5, 20, 54, 0.94) 0%, rgba(5, 23, 58, 0.8) 48%, rgba(5, 23, 58, 0.14) 100%);
}

.support-detail__content {
  width: min(590px, 70%);
  min-height: 446px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 58px);
}

.support-detail__eyebrow {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.support-detail h3 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.support-detail ul {
  display: grid;
  gap: 9px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.support-detail li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.8);
}

.support-detail li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
  transform: translateY(-50%);
}

.support-detail .button {
  align-self: flex-start;
}

.process-section {
  background: var(--white);
}

.process-section .section-heading--inline > p {
  max-width: 450px;
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(8, minmax(175px, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0 0 8px;
  overflow-x: auto;
  list-style: none;
  scroll-snap-type: x mandatory;
}

.process-rail li {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--ice-50);
  scroll-snap-align: start;
}

.process-rail li:nth-child(3n + 2) {
  background: var(--blue-100);
}

.process-rail span {
  color: var(--blue-500);
  font-size: 11px;
  font-weight: 800;
}

.process-rail img {
  width: 30px;
  height: 30px;
  margin: 30px 0 auto;
}

.process-rail strong {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.15;
}

.stories-section {
  background: var(--ice-100);
}

.stories-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 16px;
}

.story-card {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
  box-shadow: var(--shadow-md);
  isolation: isolate;
}

.story-card > img,
.story-card__shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.story-card > img {
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.story-card:hover > img {
  transform: scale(1.035);
}

.story-card__shade {
  z-index: -1;
  background: linear-gradient(180deg, rgba(3, 17, 45, 0.05) 28%, rgba(3, 17, 45, 0.88) 100%);
}

.story-card__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px;
}

.story-card__content > span {
  color: rgba(255, 255, 255, 0.67);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-card h3 {
  max-width: 680px;
  margin: 9px 70px 8px 0;
  font-size: clamp(32px, 4vw, 58px);
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.story-card:not(.story-card--large) h3 {
  font-size: clamp(29px, 3.1vw, 44px);
}

.story-card p {
  max-width: 560px;
  margin: 0 68px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.story-card__button {
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.students-section {
  background: var(--white);
}

.students-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--ice-50);
  box-shadow: var(--shadow-sm);
}

.students-panel__media {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}

.students-panel__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.students-panel__tag {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.students-panel__tag img {
  width: 18px;
  height: 18px;
}

.students-panel__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 76px);
}

.students-panel h2 {
  font-size: clamp(44px, 5vw, 72px);
}

.students-panel__content > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 20px);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--navy-900);
  font-weight: 650;
}

.feature-list img {
  width: 21px;
  height: 21px;
  margin-top: 2px;
}

.students-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.about-section {
  background: var(--ice-100);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.about-mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 350px 210px;
  gap: 10px;
}

.about-mosaic img,
.about-mosaic figure {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  object-fit: cover;
}

.about-mosaic figure {
  position: relative;
  grid-column: 1 / -1;
}

.about-mosaic figure > img {
  border-radius: 0;
}

.about-mosaic figcaption {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.about-mosaic figcaption img {
  width: 17px;
  height: 17px;
  border-radius: 0;
}

.about-copy h2 {
  font-size: clamp(44px, 5vw, 72px);
}

.about-copy > p:not(.eyebrow) {
  margin: 26px 0 34px;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 20px);
}

.resources {
  margin-top: clamp(48px, 6vw, 80px);
}

.resources h3 {
  margin: 0 0 18px;
  font-size: 24px;
}

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

.resources__grid a {
  min-height: 116px;
  display: grid;
  grid-template-columns: 34px 1fr 18px;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy-900);
  font-weight: 750;
  line-height: 1.25;
  text-decoration: none;
  transition: transform 200ms var(--ease), background-color 200ms var(--ease), box-shadow 200ms var(--ease);
}

.resources__grid a:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.resources__grid img:first-child {
  width: 31px;
  height: 31px;
}

.resources__grid img:last-child {
  width: 17px;
  height: 17px;
}

.application-section {
  background: var(--white);
}

.application-shell {
  display: grid;
  grid-template-columns: minmax(350px, 0.78fr) minmax(0, 1.22fr);
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--navy-950);
  box-shadow: var(--shadow-lg);
}

.application-intro {
  position: relative;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(38px, 5vw, 68px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4, 18, 51, 0.1), rgba(4, 18, 51, 0.92)),
    url("../assets/images/route-murmansk-port-summer.jpg") center / cover no-repeat;
  color: var(--white);
}

.application-intro h2 {
  font-size: clamp(48px, 5vw, 74px);
}

.application-intro > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.application-intro__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 30px;
}

.application-intro__facts span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
}

.application-intro__facts img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.application-form {
  min-height: 720px;
  padding: clamp(34px, 5vw, 64px);
  background: var(--ice-50);
}

.form-progress {
  display: grid;
  grid-template-columns: auto minmax(30px, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 38px;
}

.form-progress__step {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.form-progress__step span {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.form-progress__step.is-active {
  color: var(--navy-900);
}

.form-progress__step.is-active span {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: var(--white);
}

.form-progress > i {
  height: 1px;
  background: var(--line);
}

.form-progress > small {
  color: var(--muted);
  font-size: 11px;
}

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

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

.field {
  display: grid;
  align-content: start;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid rgba(30, 70, 130, 0.2);
  border-radius: 13px;
  background: var(--white);
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.field textarea {
  min-height: 98px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-500);
  outline: none;
  box-shadow: 0 0 0 4px rgba(64, 122, 205, 0.12);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: var(--danger);
}

.field__hint {
  color: var(--muted);
  font-size: 10px;
}

.field__error {
  min-height: 15px;
  color: var(--danger);
  font-size: 11px;
}

.field__error--consent {
  margin-top: -10px;
}

.file-input {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 8px;
  border: 1px dashed rgba(30, 70, 130, 0.28);
  border-radius: 13px;
  background: var(--white);
}

.file-input input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.file-input input:focus-visible + label {
  outline: 3px solid rgba(38, 89, 169, 0.26);
  outline-offset: 3px;
}

.file-input label {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 9px;
  background: var(--ice-100);
  cursor: pointer;
}

.file-input label img {
  width: 17px;
  height: 17px;
}

.file-input span {
  color: var(--muted);
  font-size: 11px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--navy-800);
  flex: 0 0 auto;
}

.consent a {
  color: var(--navy-800);
}

.form-feedback {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px;
}

.form-feedback.is-error {
  border: 1px solid rgba(180, 35, 24, 0.24);
  background: #fff2f1;
  color: var(--danger);
}

.form-feedback.is-success {
  border: 1px solid rgba(22, 121, 85, 0.22);
  background: #effaf5;
  color: var(--success);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.site-footer {
  padding: 74px 0 28px;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.76);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1fr 0.55fr;
  gap: 44px;
  padding-bottom: 54px;
}

.site-footer__brand > img {
  width: 220px;
  padding: 10px;
  border-radius: 12px;
  background: var(--white);
}

.site-footer__brand p {
  max-width: 300px;
  margin: 18px 0 0;
}

.site-footer h2 {
  margin: 4px 0 18px;
  color: var(--white);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__top > div:not(.site-footer__brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer a,
.site-footer__top p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 11px;
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
}

.site-footer a img,
.site-footer__top p img {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  filter: brightness(0) invert(1);
  opacity: 0.74;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.site-footer__bottom > div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer__bottom a {
  margin: 0;
}

.dialog {
  width: min(760px, calc(100% - 30px));
  max-height: min(860px, calc(100vh - 30px));
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 28px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}

.dialog::backdrop {
  background: rgba(3, 16, 45, 0.68);
  backdrop-filter: blur(7px);
}

.dialog__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 30px 22px;
  border-bottom: 1px solid var(--line);
}

.dialog__header h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.dialog__header .icon-button {
  display: inline-flex;
  flex: 0 0 auto;
}

.dialog__body {
  padding: 26px 30px 32px;
}

.dialog__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dialog__list li {
  position: relative;
  padding: 14px 16px 14px 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--ice-50);
}

.dialog__list li::before {
  position: absolute;
  top: 18px;
  left: 16px;
  width: 12px;
  height: 12px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--blue-500);
  box-shadow: 0 0 0 1px var(--blue-200);
  content: "";
}

.dialog__notice {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.dialog__footer {
  display: flex;
  justify-content: flex-end;
  padding: 20px 30px 28px;
  border-top: 1px solid var(--line);
}

.story-dialog__lead {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 18px;
}

.story-dialog__steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: story-step;
}

.story-dialog__steps li {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border-radius: 14px;
  background: var(--ice-100);
  counter-increment: story-step;
}

.story-dialog__steps li::before {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  content: counter(story-step, decimal-leading-zero);
  font-size: 11px;
  font-weight: 800;
}

.resume-dialog {
  width: min(1100px, calc(100% - 30px));
}

.resume-builder {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  padding: 26px 30px;
  background: var(--ice-100);
}

.resume-builder__form {
  display: grid;
  gap: 12px;
  align-content: start;
}

.resume-preview {
  min-height: 620px;
  padding: 50px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.resume-preview > p {
  margin: 0 0 34px;
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.resume-preview h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 38px;
  letter-spacing: -0.045em;
  line-height: 1;
}

.resume-preview > strong,
.resume-preview > span {
  display: block;
}

.resume-preview > strong {
  margin-top: 8px;
  color: var(--blue-700);
  font-size: 18px;
}

.resume-preview > span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.resume-preview section {
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.resume-preview h4 {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resume-preview section p {
  margin: 0;
  color: var(--muted);
  white-space: pre-line;
}

.resume-preview footer {
  margin-top: 48px;
  color: #8190a6;
  font-size: 10px;
}

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

.js .reveal.is-pending {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
}

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

@media (max-width: 1180px) {
  :root {
    --container: 1120px;
  }

  .site-header__inner {
    grid-template-columns: 190px 1fr auto;
    gap: 14px;
  }

  .desktop-nav {
    gap: 7px;
  }

  .desktop-nav a {
    font-size: 13px;
  }

  .hero-scene__person {
    right: -6%;
    height: 86%;
  }

  .hero-scene__content > * {
    max-width: 570px;
  }

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

  .map-layout {
    grid-template-columns: 1fr 0.72fr;
  }

  .region-map,
  .city-panel {
    min-height: 620px;
  }

  .students-panel {
    grid-template-columns: 1fr 1fr;
  }

  .students-panel__media {
    min-height: 580px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 82px;
  }

  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .desktop-nav,
  .site-header__actions > .button {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: 190px 1fr auto;
  }

  .site-header__actions {
    grid-column: 3;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero {
    padding: 8px;
  }

  .hero-scene {
    min-height: 760px;
    border-radius: 24px;
  }

  .hero-scene__content {
    min-height: 760px;
    padding-top: 96px;
    padding-bottom: 42px;
    justify-content: flex-start;
  }

  .hero-scene__person {
    right: -9%;
    bottom: -4%;
    height: 67%;
  }

  .hero-scene__background::after {
    background:
      linear-gradient(180deg, rgba(247, 251, 255, 0.98) 0%, rgba(247, 251, 255, 0.88) 39%, rgba(237, 246, 255, 0.23) 61%, rgba(4, 18, 48, 0.17) 100%);
  }

  .hero-scene__content > * {
    max-width: 600px;
  }

  .hero-scene__season {
    display: none;
  }

  .route-cards {
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    margin-right: -16px;
    padding-right: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .route-card {
    scroll-snap-align: start;
  }

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

  .step-card {
    min-height: 230px;
  }

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

  .metrics article:nth-child(3) {
    border-left: 0;
  }

  .metrics article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .map-layout {
    grid-template-columns: 1fr;
  }

  .region-map {
    min-height: 680px;
  }

  .city-panel {
    min-height: 440px;
  }

  .city-panel h3 {
    margin-top: 60px;
  }

  .support-layout {
    grid-template-columns: 1fr;
  }

  .support-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .support-tab:hover,
  .support-tab.is-active {
    transform: translateY(-3px);
  }

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

  .students-panel,
  .about-layout,
  .application-shell {
    grid-template-columns: 1fr;
  }

  .students-panel__media {
    min-height: 520px;
  }

  .application-intro {
    min-height: 500px;
  }

  .application-form {
    min-height: auto;
  }

  .site-footer__top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 74px 0;
  }

  .section--compact {
    padding: 42px 0;
  }

  .section-heading--inline,
  .section-heading--split {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  h2 {
    font-size: clamp(36px, 11vw, 54px);
    line-height: 0.98;
  }

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

  .site-header__inner {
    grid-template-columns: minmax(150px, 185px) 1fr auto;
  }

  .brand {
    width: 170px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  .hero-scene {
    min-height: 710px;
  }

  .hero-scene__content {
    min-height: 710px;
    padding: 92px 8px 34px;
  }

  .hero-scene h1 {
    max-width: 360px;
    font-size: clamp(62px, 20vw, 88px);
    line-height: 0.84;
  }

  .hero-scene__lead {
    margin-top: 20px;
    font-size: 22px;
  }

  .hero-scene__copy {
    display: none;
  }

  .hero-scene__actions {
    width: min(320px, 100%);
    display: grid;
    margin-top: 22px;
  }

  .hero-scene__actions .button {
    width: 100%;
  }

  .hero-scene__trust {
    display: none;
  }

  .hero-scene__person {
    right: -16%;
    bottom: -2%;
    height: 66%;
  }

  .hero-scene__background img {
    object-position: 57% 50%;
  }

  .hero-scene__index {
    right: 18px;
    bottom: 18px;
  }

  .route-cards {
    grid-template-columns: repeat(3, minmax(270px, 82vw));
  }

  .route-card {
    min-height: 220px;
  }

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

  .metrics article {
    min-height: 126px;
    padding: 20px;
  }

  .metrics strong {
    font-size: 39px;
  }

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

  .vacancy-card {
    min-height: 300px;
  }

  .region-map {
    min-height: 470px;
    border-radius: 24px;
  }

  .region-map__shape {
    top: calc(50% - 18px);
    width: calc(100% - 24px);
  }

  .region-map__markers {
    top: calc(50% - 18px);
    width: calc(100% - 24px);
  }

  .map-marker__label {
    display: none;
  }

  .map-marker.is-active .map-marker__label {
    display: block;
    z-index: 5;
  }

  .region-map__legend {
    right: 12px;
    left: 12px;
  }

  .region-map__legend span {
    display: none;
  }

  .city-panel {
    min-height: 470px;
    padding: 28px;
    border-radius: 24px;
  }

  .city-panel h3 {
    margin-top: 44px;
    font-size: 50px;
  }

  .city-panel__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .support-tabs {
    display: flex;
    margin-right: -12px;
    padding-right: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .support-tab {
    min-width: 250px;
    min-height: 94px;
    scroll-snap-align: start;
  }

  .support-detail {
    min-height: 560px;
    border-radius: 24px;
  }

  .support-detail__shade {
    background: linear-gradient(180deg, rgba(5, 20, 54, 0.12) 10%, rgba(5, 23, 58, 0.93) 68%);
  }

  .support-detail__content {
    width: 100%;
    min-height: 560px;
    justify-content: flex-end;
    padding: 28px;
  }

  .process-rail {
    grid-template-columns: repeat(8, 72vw);
  }

  .process-rail li {
    min-height: 190px;
  }

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

  .story-card {
    min-height: 480px;
    border-radius: 24px;
  }

  .story-card__content {
    padding: 24px;
  }

  .story-card h3,
  .story-card:not(.story-card--large) h3 {
    margin-right: 54px;
    font-size: 34px;
  }

  .story-card p {
    margin-right: 44px;
  }

  .students-panel {
    border-radius: 26px;
  }

  .students-panel__media {
    min-height: 360px;
  }

  .students-panel__content {
    padding: 32px 24px;
  }

  .students-panel__actions {
    display: grid;
  }

  .students-panel__actions .button {
    width: 100%;
  }

  .about-mosaic {
    grid-template-rows: 270px 150px;
  }

  .about-copy {
    padding-top: 8px;
  }

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

  .resources__grid a {
    min-height: 86px;
  }

  .application-shell {
    border-radius: 26px;
  }

  .application-intro {
    min-height: 440px;
    padding: 30px 24px;
  }

  .application-intro h2 {
    font-size: 48px;
  }

  .application-form {
    padding: 30px 20px;
  }

  .form-progress {
    grid-template-columns: auto 1fr auto;
  }

  .form-progress > small {
    display: none;
  }

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

  .field--full {
    grid-column: auto;
  }

  .file-input {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-actions {
    display: grid;
  }

  .form-actions .button {
    width: 100%;
  }

  .site-footer {
    padding-top: 54px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .dialog {
    width: calc(100% - 16px);
    max-height: calc(100vh - 16px);
    border-radius: 22px;
  }

  .dialog__header,
  .dialog__body,
  .dialog__footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .dialog__footer .button {
    width: 100%;
  }

  .resume-builder {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .resume-preview {
    min-height: 520px;
    padding: 30px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-scene__background,
  .hero-scene__person {
    transform: none !important;
  }
}

@media print {
  body > * {
    display: none !important;
  }

  #resume-dialog[open] {
    position: static;
    width: 100%;
    max-height: none;
    display: block !important;
    overflow: visible;
    border-radius: 0;
    box-shadow: none;
  }

  #resume-dialog[open] > * {
    display: none !important;
  }

  #resume-dialog[open] .resume-builder {
    display: block !important;
    padding: 0;
    background: var(--white);
  }

  #resume-dialog[open] .resume-builder__form {
    display: none !important;
  }

  #resume-dialog[open] .resume-preview {
    display: block !important;
    min-height: 0;
    padding: 20mm;
    box-shadow: none;
  }
}

/* source: art-direction.css */
/*
 * Premium editorial layer for the content below the hero.
 * Loaded after main.css: no layout or interaction contract is changed.
 */

:root {
  --art-navy: #041333;
  --art-navy-soft: #0a285c;
  --art-paper: #f4f8fc;
  --art-frost: rgba(255, 255, 255, 0.72);
  --art-frost-dark: rgba(255, 255, 255, 0.09);
  --art-line-light: rgba(255, 255, 255, 0.16);
  --art-shadow: 0 34px 90px rgba(3, 22, 58, 0.18);
  --art-radius: clamp(28px, 3vw, 46px);
}

/* Routes: one cinematic destination wall instead of three equal cards. */

.route-showcase {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(85, 216, 230, 0.16), transparent 29%),
    radial-gradient(circle at 92% 86%, rgba(236, 25, 76, 0.11), transparent 24%),
    linear-gradient(145deg, #03102d 0%, #061a43 56%, #09285d 100%);
  color: var(--white);
  isolation: isolate;
}

.route-showcase::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 48%, rgba(255, 255, 255, 0.028) 48.1% 48.2%, transparent 48.3%),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: auto, 100% 84px;
  content: "";
  pointer-events: none;
}

.route-showcase .container {
  position: relative;
  z-index: 1;
}

.route-showcase .section-heading {
  align-items: flex-end;
  margin-bottom: clamp(34px, 4vw, 54px);
}

.route-showcase .eyebrow {
  color: rgba(132, 229, 237, 0.82);
}

.route-showcase h2 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(52px, 6.5vw, 94px);
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.route-showcase .text-link {
  min-height: 48px;
  padding: 0 19px;
  border: 1px solid var(--art-line-light);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.route-showcase .text-link img {
  filter: brightness(0) invert(1);
}

.route-cards {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 210px;
  gap: 16px;
}

.route-card {
  grid-column: span 5;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--art-radius);
  box-shadow: 0 24px 64px rgba(0, 8, 28, 0.28);
}

.route-card:first-child {
  grid-column: span 7;
  grid-row: span 2;
}

.route-card:nth-child(2),
.route-card:nth-child(3) {
  grid-column: span 5;
}

.route-card::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  content: "";
  pointer-events: none;
}

.route-card > img {
  filter: saturate(0.92) contrast(1.03);
}

.route-card__shade {
  background:
    linear-gradient(180deg, rgba(2, 13, 39, 0.08) 20%, rgba(2, 13, 39, 0.88) 100%),
    linear-gradient(90deg, rgba(4, 18, 49, 0.24), transparent 60%);
}

.route-card__meta {
  top: 22px;
  left: 24px;
  padding: 9px 12px;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(4, 21, 55, 0.34);
  letter-spacing: 0.035em;
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
}

.route-card strong {
  right: 80px;
  bottom: 28px;
  left: 28px;
  font-size: clamp(29px, 3.2vw, 50px);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.route-card:first-child strong {
  font-size: clamp(46px, 5.2vw, 76px);
}

.route-card__arrow {
  right: 24px;
  bottom: 24px;
  width: 50px;
  height: 50px;
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Relocation: asymmetric editorial steps and open metrics. */

.route-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 6%, rgba(89, 220, 230, 0.15), transparent 25%),
    radial-gradient(circle at 2% 90%, rgba(43, 93, 168, 0.08), transparent 27%),
    var(--art-paper);
}

.route-section::before {
  position: absolute;
  top: 0;
  right: max(24px, calc((100vw - var(--container)) / 2));
  width: clamp(110px, 14vw, 210px);
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--coral));
  content: "";
}

.route-section .section-heading h2 {
  max-width: 860px;
  font-size: clamp(52px, 6.2vw, 88px);
  letter-spacing: -0.068em;
  line-height: 0.9;
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.steps-grid::before {
  position: absolute;
  z-index: 0;
  top: 74px;
  right: 5%;
  left: 5%;
  height: 1px;
  background: linear-gradient(90deg, rgba(31, 78, 147, 0.18), rgba(89, 220, 230, 0.55), rgba(236, 25, 76, 0.34));
  content: "";
}

.step-card {
  z-index: 1;
  grid-column: span 5;
  min-height: 410px;
  padding: clamp(28px, 3.2vw, 44px);
  border: 0;
  border-radius: var(--art-radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(235, 244, 252, 0.84));
  box-shadow:
    0 24px 70px rgba(5, 31, 75, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.step-card:nth-child(2) {
  grid-column: span 3;
  min-height: 334px;
  margin-top: 76px;
  background: rgba(225, 239, 248, 0.76);
  box-shadow: inset 0 0 0 1px rgba(19, 63, 126, 0.1);
}

.step-card:nth-child(3) {
  grid-column: span 4;
  min-height: 456px;
  margin-top: 26px;
}

.step-card--accent {
  background:
    radial-gradient(circle at 90% 12%, rgba(90, 220, 230, 0.19), transparent 28%),
    radial-gradient(circle at 10% 100%, rgba(236, 25, 76, 0.13), transparent 35%),
    linear-gradient(145deg, #041333, #0a2c63 72%, #124782);
  box-shadow: 0 36px 90px rgba(4, 23, 61, 0.25);
}

.step-card__number {
  top: 24px;
  right: 28px;
  color: rgba(7, 41, 93, 0.075);
  font-size: clamp(92px, 9vw, 136px);
  letter-spacing: -0.095em;
}

.step-card--accent .step-card__number {
  color: rgba(255, 255, 255, 0.075);
}

.step-card__icon {
  width: 62px;
  height: 62px;
  border: 1px solid rgba(31, 85, 158, 0.12);
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(9, 43, 92, 0.1);
}

.step-card:nth-child(2) .step-card__icon {
  width: 54px;
  height: 54px;
}

.step-card--accent .step-card__icon {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.step-card--accent .step-card__icon img {
  filter: brightness(0) invert(1);
}

.step-card h3 {
  margin-top: auto;
  font-size: clamp(30px, 3vw, 44px);
  letter-spacing: -0.052em;
}

.step-card:nth-child(2) h3 {
  font-size: clamp(27px, 2.4vw, 34px);
}

.step-card p {
  max-width: 460px;
  font-size: 15px;
}

.metrics {
  margin-top: clamp(70px, 8vw, 108px);
  overflow: visible;
  border: 0;
  border-top: 1px solid rgba(18, 58, 122, 0.15);
  border-bottom: 1px solid rgba(18, 58, 122, 0.15);
  border-radius: 0;
  background: transparent;
}

.metrics article {
  min-height: 174px;
  padding: 32px clamp(22px, 3vw, 46px);
}

.metrics article:first-child {
  padding-left: 0;
}

.metrics article:last-child {
  padding-right: 0;
}

.metrics article + article {
  border-left-color: rgba(18, 58, 122, 0.15);
}

.metrics strong {
  font-size: clamp(50px, 5.7vw, 84px);
  font-weight: 680;
  letter-spacing: -0.075em;
}

.metrics article:first-child strong {
  color: var(--coral);
}

.metrics span {
  max-width: 180px;
  font-size: 13px;
  line-height: 1.35;
}

/* Careers: a dense bento with one anchor story and smaller career notes. */

.vacancies-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 14%, rgba(81, 203, 221, 0.12), transparent 25%),
    linear-gradient(180deg, #e9f1f8 0%, #f5f8fb 100%);
}

.vacancies-section::after {
  position: absolute;
  top: 12%;
  right: -6vw;
  width: 32vw;
  aspect-ratio: 1;
  border: 1px solid rgba(33, 81, 150, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 7vw rgba(255, 255, 255, 0.12),
    0 0 0 14vw rgba(255, 255, 255, 0.08);
  content: "";
  pointer-events: none;
}

.vacancies-section .container {
  position: relative;
  z-index: 1;
}

.vacancies-section .section-heading h2 {
  max-width: 760px;
  font-size: clamp(52px, 6.3vw, 90px);
  letter-spacing: -0.07em;
  line-height: 0.89;
}

.filter-row {
  width: max-content;
  max-width: 100%;
  margin-bottom: 34px;
  padding: 6px;
  border: 1px solid rgba(19, 63, 126, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 15px 40px rgba(5, 31, 75, 0.06);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.filter-chip {
  min-height: 40px;
  padding: 8px 15px;
  border: 0;
  background: transparent;
}

.filter-chip.is-active {
  border: 0;
  background: var(--art-navy);
  box-shadow: 0 8px 20px rgba(4, 19, 51, 0.18);
}

.vacancy-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: minmax(216px, auto);
  gap: 16px;
}

.vacancy-card {
  position: relative;
  z-index: 0;
  grid-column: span 4;
  min-height: 310px;
  padding: clamp(24px, 2.6vw, 34px);
  overflow: hidden;
  border: 0;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 22px 60px rgba(5, 31, 75, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}

.vacancy-card::before {
  position: absolute;
  z-index: -1;
  right: -80px;
  bottom: -90px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 143, 204, 0.11), transparent 68%);
  content: "";
}

.vacancy-card--featured {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 448px;
  background:
    radial-gradient(circle at 90% 10%, rgba(89, 220, 230, 0.19), transparent 27%),
    radial-gradient(circle at 8% 96%, rgba(236, 25, 76, 0.13), transparent 31%),
    linear-gradient(145deg, #03102d, #08255a 70%, #0f3f7a);
  box-shadow: 0 36px 90px rgba(4, 21, 56, 0.24);
}

.vacancy-card:nth-child(2),
.vacancy-card:nth-child(3) {
  grid-column: span 5;
  min-height: 216px;
}

.vacancy-card:nth-child(3) {
  background:
    linear-gradient(145deg, rgba(217, 241, 245, 0.9), rgba(241, 248, 252, 0.86));
}

.vacancy-card:nth-child(5) {
  background:
    linear-gradient(145deg, rgba(224, 234, 248, 0.92), rgba(247, 250, 253, 0.82));
}

.vacancy-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(228, 239, 249, 0.9);
}

.vacancy-card--featured .vacancy-card__icon {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.vacancy-card--featured .vacancy-card__icon img {
  filter: brightness(0) invert(1);
}

.vacancy-card__badge {
  border-color: rgba(27, 76, 145, 0.12);
  background: rgba(255, 255, 255, 0.42);
}

.vacancy-card--featured .vacancy-card__badge {
  background: rgba(255, 255, 255, 0.06);
}

.vacancy-card__location {
  margin-top: auto;
  padding-top: 32px;
}

.vacancy-card h3 {
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.052em;
}

.vacancy-card--featured h3 {
  max-width: 520px;
  font-size: clamp(44px, 5.2vw, 74px);
  line-height: 0.93;
}

.vacancy-card > p:not(.vacancy-card__location) {
  max-width: 490px;
  margin-bottom: 22px;
}

.vacancy-card--featured > p:not(.vacancy-card__location) {
  font-size: 16px;
}

/* Support: controls float above a cinematic photo, like a premium guide. */

.support-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 5%, rgba(89, 220, 230, 0.14), transparent 27%),
    radial-gradient(circle at 94% 84%, rgba(236, 25, 76, 0.1), transparent 25%),
    linear-gradient(145deg, #03102d, #061943 64%, #09275a);
  color: var(--white);
  isolation: isolate;
}

.support-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 90px 90px;
  content: "";
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black, transparent 78%);
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 78%);
  pointer-events: none;
}

.support-section .container {
  position: relative;
  z-index: 1;
}

.support-section .eyebrow {
  color: rgba(132, 229, 237, 0.82);
}

.support-section .section-heading h2 {
  color: var(--white);
  font-size: clamp(52px, 6.4vw, 92px);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.support-section .section-heading--split > p {
  color: rgba(255, 255, 255, 0.62);
}

.support-layout {
  grid-template-columns: minmax(300px, 410px) minmax(0, 1fr);
  gap: 0;
  align-items: center;
}

.support-tabs {
  z-index: 2;
  gap: 8px;
  margin-right: -54px;
}

.support-tab {
  min-height: 98px;
  padding: 17px 19px;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(4, 20, 51, 0.65);
  color: var(--white);
  box-shadow: none;
  backdrop-filter: blur(22px) saturate(130%);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
}

.support-tab:hover,
.support-tab.is-active {
  border-color: rgba(130, 229, 237, 0.24);
  background: rgba(255, 255, 255, 0.13);
  box-shadow:
    0 20px 46px rgba(0, 8, 28, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
  transform: translateX(8px);
}

.support-tab > img:first-child,
.support-tab__arrow {
  filter: brightness(0) invert(1);
}

.support-tab strong {
  font-size: 20px;
}

.support-tab small {
  color: rgba(255, 255, 255, 0.55);
}

.support-tab__arrow {
  opacity: 0.4;
}

.support-detail {
  min-height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--art-radius);
  box-shadow: 0 40px 100px rgba(0, 8, 28, 0.36);
}

.support-detail__photo {
  filter: saturate(0.88) contrast(1.04);
}

.support-detail__shade {
  background:
    linear-gradient(90deg, rgba(2, 13, 38, 0.98) 0%, rgba(3, 17, 46, 0.86) 44%, rgba(3, 17, 46, 0.12) 86%),
    linear-gradient(180deg, rgba(3, 16, 45, 0.08), rgba(3, 16, 45, 0.55));
}

.support-detail__content {
  width: min(650px, 66%);
  min-height: 620px;
  padding: clamp(38px, 6vw, 78px);
}

.support-detail__eyebrow {
  color: rgba(132, 229, 237, 0.78);
}

.support-detail h3 {
  font-size: clamp(46px, 5.4vw, 76px);
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.support-detail ul {
  gap: 12px;
  margin-top: 30px;
}

.support-detail li {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.76);
}

/* Process: eight actions read as one coherent instrument panel. */

.process-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 14%, rgba(89, 220, 230, 0.13), transparent 24%),
    #f2f7fb;
}

.process-section .section-heading h2 {
  max-width: 830px;
  font-size: clamp(50px, 6vw, 86px);
  letter-spacing: -0.068em;
  line-height: 0.9;
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  overflow: hidden;
  border: 1px solid rgba(16, 57, 117, 0.1);
  border-radius: var(--art-radius);
  background: rgba(18, 58, 122, 0.12);
  box-shadow: 0 28px 76px rgba(5, 31, 75, 0.1);
}

.process-rail li {
  position: relative;
  min-height: 238px;
  padding: 26px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.88);
}

.process-rail li:nth-child(3n + 2) {
  background: rgba(235, 244, 251, 0.94);
}

.process-rail li:first-child,
.process-rail li:last-child {
  background:
    radial-gradient(circle at 90% 12%, rgba(89, 220, 230, 0.16), transparent 32%),
    var(--art-navy);
  color: var(--white);
}

.process-rail span {
  color: rgba(35, 89, 163, 0.6);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.process-rail li:first-child span,
.process-rail li:last-child span {
  color: rgba(132, 229, 237, 0.72);
}

.process-rail img {
  width: 38px;
  height: 38px;
  margin: 42px 0 auto;
}

.process-rail li:first-child img,
.process-rail li:last-child img {
  filter: brightness(0) invert(1);
}

.process-rail strong {
  max-width: 210px;
  font-size: clamp(20px, 1.7vw, 25px);
  letter-spacing: -0.03em;
}

/* Stories: editorial overlap and large image-led narratives. */

.stories-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 10%, rgba(89, 220, 230, 0.13), transparent 26%),
    radial-gradient(circle at 90% 92%, rgba(236, 25, 76, 0.1), transparent 23%),
    linear-gradient(145deg, #03102d, #061a43 66%, #0a2a5f);
  color: var(--white);
}

.stories-section .eyebrow {
  color: rgba(132, 229, 237, 0.82);
}

.stories-section .section-heading h2 {
  max-width: 900px;
  color: var(--white);
  font-size: clamp(52px, 6.5vw, 92px);
  letter-spacing: -0.072em;
  line-height: 0.88;
}

.stories-section .section-heading--split > p {
  color: rgba(255, 255, 255, 0.58);
}

.stories-grid {
  grid-template-columns: minmax(0, 1.48fr) minmax(340px, 0.62fr);
  gap: 0;
  align-items: end;
  padding-bottom: 56px;
}

.story-card {
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--art-radius);
  box-shadow: 0 36px 100px rgba(0, 8, 28, 0.4);
}

.story-card--large {
  min-height: 700px;
}

.story-card:not(.story-card--large) {
  z-index: 2;
  min-height: 520px;
  margin-left: -64px;
  transform: translateY(56px);
}

.story-card > img {
  filter: saturate(0.88) contrast(1.04);
}

.story-card__shade {
  background:
    linear-gradient(180deg, rgba(2, 13, 39, 0.04) 20%, rgba(2, 13, 39, 0.94) 100%),
    linear-gradient(90deg, rgba(2, 13, 39, 0.3), transparent 60%);
}

.story-card__content {
  padding: clamp(28px, 4vw, 54px);
}

.story-card__content > span {
  display: inline-flex;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  background: rgba(4, 20, 51, 0.23);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.story-card h3 {
  margin-top: 16px;
  font-size: clamp(46px, 5.4vw, 76px);
  letter-spacing: -0.068em;
  line-height: 0.9;
}

.story-card:not(.story-card--large) h3 {
  font-size: clamp(34px, 3.6vw, 48px);
  line-height: 0.94;
}

.story-card__button {
  width: 54px;
  height: 54px;
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Students: photography and a cinematic editorial panel share one frame. */

.students-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 0 18%, rgba(89, 220, 230, 0.13), transparent 26%),
    #f3f7fb;
}

.students-panel {
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
  overflow: hidden;
  border: 0;
  border-radius: clamp(34px, 4vw, 56px);
  background: var(--art-navy);
  box-shadow: var(--art-shadow);
}

.students-panel__media {
  min-height: 720px;
}

.students-panel__media > img {
  filter: saturate(0.9) contrast(1.03);
  transition: transform 850ms var(--ease);
}

.students-panel__tag {
  top: 28px;
  left: 28px;
  padding: 10px 14px;
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 34px rgba(4, 20, 51, 0.13);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}

.students-panel__content {
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: clamp(48px, 6vw, 84px);
  background:
    radial-gradient(circle at 100% 0, rgba(89, 220, 230, 0.2), transparent 28%),
    radial-gradient(circle at 0 100%, rgba(236, 25, 76, 0.13), transparent 32%),
    linear-gradient(145deg, #03102d, #09265b 74%, #0c3570);
  color: var(--white);
}

.students-panel__content::after {
  position: absolute;
  z-index: -1;
  right: -120px;
  bottom: -120px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(255, 255, 255, 0.025),
    0 0 0 110px rgba(255, 255, 255, 0.016);
  content: "";
}

.students-panel .eyebrow {
  color: rgba(132, 229, 237, 0.82);
}

.students-panel h2 {
  max-width: 620px;
  color: var(--white);
  font-size: clamp(48px, 5.6vw, 78px);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.students-panel__content > p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.66);
}

.students-panel .feature-list li {
  color: rgba(255, 255, 255, 0.84);
}

.students-panel .feature-list img {
  filter: brightness(0) invert(1);
}

.students-panel .button--secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.students-panel .button--secondary .button__icon {
  filter: brightness(0) invert(1);
}

/* About: a photographic spread, overlapping copy and a single resource dock. */

.about-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 12%, rgba(89, 220, 230, 0.11), transparent 25%),
    linear-gradient(180deg, #eaf2f8, #f5f8fb);
}

.about-layout {
  grid-template-columns: minmax(0, 1.18fr) minmax(410px, 0.82fr);
  gap: 0;
}

.about-mosaic {
  grid-template-rows: 440px 220px;
  gap: 12px;
}

.about-mosaic img,
.about-mosaic figure {
  border-radius: 26px;
}

.about-mosaic figure {
  border-radius: var(--art-radius);
  box-shadow: 0 28px 70px rgba(5, 31, 75, 0.14);
}

.about-mosaic > img {
  filter: saturate(0.9) contrast(1.03);
}

.about-mosaic figcaption {
  top: 24px;
  left: 24px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 30px rgba(4, 20, 51, 0.1);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.about-copy {
  z-index: 2;
  margin-left: -86px;
  padding: clamp(40px, 5vw, 68px);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--art-radius);
  background: rgba(249, 252, 255, 0.82);
  box-shadow: 0 30px 80px rgba(5, 31, 75, 0.14);
  backdrop-filter: blur(24px) saturate(125%);
  -webkit-backdrop-filter: blur(24px) saturate(125%);
}

.about-copy h2 {
  font-size: clamp(48px, 5.6vw, 78px);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.about-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: #475a75;
}

.resources {
  margin-top: clamp(54px, 7vw, 96px);
  padding: clamp(28px, 3.5vw, 46px);
  overflow: hidden;
  border-radius: var(--art-radius);
  background:
    radial-gradient(circle at 92% 10%, rgba(89, 220, 230, 0.18), transparent 25%),
    linear-gradient(145deg, #03102d, #08245a);
  box-shadow: 0 30px 80px rgba(4, 21, 56, 0.22);
  color: var(--white);
}

.resources h3 {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.resources__grid {
  gap: 0;
}

.resources__grid a {
  min-height: 132px;
  padding: 22px clamp(18px, 2.2vw, 30px);
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  box-shadow: none;
}

.resources__grid a:first-child {
  border-left: 0;
}

.resources__grid a:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  transform: translateY(-2px);
}

.resources__grid img {
  filter: brightness(0) invert(1);
}

.resources__grid img:first-child {
  opacity: 0.8;
}

.resources__grid img:last-child {
  opacity: 0.55;
}

/* Footer: calm, high-contrast closing frame. */

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(74px, 8vw, 116px) 0 30px;
  background:
    radial-gradient(circle at 9% 16%, rgba(89, 220, 230, 0.13), transparent 25%),
    radial-gradient(circle at 94% 86%, rgba(236, 25, 76, 0.08), transparent 22%),
    #020d28;
}

.site-footer::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(89, 220, 230, 0.62), rgba(236, 25, 76, 0.42), transparent);
  content: "";
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.site-footer__top {
  grid-template-columns: 1.35fr 0.85fr 1fr 0.56fr;
  gap: clamp(30px, 4vw, 64px);
  padding-bottom: clamp(54px, 6vw, 82px);
}

.site-footer__brand > img {
  width: min(255px, 100%);
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.site-footer__brand p {
  max-width: 320px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 15px;
}

.site-footer h2 {
  margin-bottom: 24px;
  color: rgba(132, 229, 237, 0.7);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.site-footer a,
.site-footer__top p {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.67);
}

.site-footer__top > div:nth-child(2) a:first-of-type {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.site-footer__bottom {
  padding-top: 28px;
  border-top-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
}

@media (hover: hover) {
  .route-card:hover > img,
  .story-card:hover > img,
  .students-panel:hover .students-panel__media > img {
    transform: scale(1.04);
  }

  .vacancy-card:hover {
    transform: translateY(-7px);
    box-shadow:
      0 32px 80px rgba(5, 31, 75, 0.13),
      inset 0 1px 0 rgba(255, 255, 255, 0.94);
  }
}

@media (max-width: 1100px) {
  .steps-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .step-card,
  .step-card:nth-child(2) {
    grid-column: span 3;
    min-height: 350px;
    margin-top: 0;
  }

  .step-card:nth-child(3) {
    grid-column: span 6;
    min-height: 340px;
    margin-top: 0;
  }

  .vacancy-card--featured {
    grid-column: span 12;
    grid-row: span 1;
    min-height: 410px;
  }

  .vacancy-card:nth-child(n + 2) {
    grid-column: span 6;
    min-height: 280px;
  }

  .support-layout {
    grid-template-columns: minmax(280px, 350px) minmax(0, 1fr);
  }

  .support-tabs {
    margin-right: -34px;
  }

  .support-detail__content {
    width: 74%;
  }

  .process-rail li {
    min-height: 220px;
    padding: 22px;
  }

  .stories-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
  }

  .about-layout {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
  }

  .about-copy {
    margin-left: -60px;
  }
}

@media (max-width: 960px) {
  .route-cards {
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    grid-auto-rows: auto;
  }

  .route-card,
  .route-card:first-child,
  .route-card:nth-child(2),
  .route-card:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
    min-height: 320px;
  }

  .route-card:first-child strong {
    font-size: clamp(34px, 5vw, 52px);
  }

  .metrics article:first-child,
  .metrics article:last-child {
    padding-inline: 28px;
  }

  .support-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .support-tabs {
    z-index: auto;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    margin-right: -16px;
    padding-right: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .support-tab {
    scroll-snap-align: start;
  }

  .support-tab:hover,
  .support-tab.is-active {
    transform: translateY(-3px);
  }

  .support-detail__content {
    width: 76%;
  }

  .process-rail {
    grid-template-columns: repeat(4, minmax(190px, 1fr));
  }

  .stories-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding-bottom: 0;
  }

  .story-card--large,
  .story-card:not(.story-card--large) {
    min-height: 570px;
    margin-left: 0;
    transform: none;
  }

  .students-panel {
    grid-template-columns: 1fr;
  }

  .students-panel__media {
    min-height: 560px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .about-copy {
    margin: -82px 28px 0;
  }

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

  .resources__grid a:nth-child(3) {
    border-left: 0;
  }

  .resources__grid a:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-footer__top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .route-showcase,
  .route-section,
  .vacancies-section,
  .support-section,
  .process-section,
  .stories-section,
  .students-section,
  .about-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .route-showcase .section-heading,
  .route-section .section-heading,
  .vacancies-section .section-heading,
  .support-section .section-heading,
  .process-section .section-heading,
  .stories-section .section-heading {
    margin-bottom: 32px;
  }

  .route-showcase h2,
  .route-section .section-heading h2,
  .vacancies-section .section-heading h2,
  .support-section .section-heading h2,
  .process-section .section-heading h2,
  .stories-section .section-heading h2 {
    font-size: clamp(42px, 13.5vw, 58px);
    line-height: 0.91;
  }

  .route-showcase .text-link {
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .route-cards {
    display: flex;
    gap: 12px;
    margin-right: -12px;
    padding: 0 12px 4px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .route-card,
  .route-card:first-child,
  .route-card:nth-child(2),
  .route-card:nth-child(3) {
    flex: 0 0 84vw;
    min-height: 430px;
    border-radius: 28px;
    scroll-snap-align: center;
  }

  .route-card strong,
  .route-card:first-child strong {
    right: 68px;
    bottom: 24px;
    left: 24px;
    font-size: 40px;
  }

  .route-card__meta {
    top: 18px;
    left: 18px;
    max-width: calc(100% - 36px);
    white-space: normal;
  }

  .route-card__arrow {
    right: 18px;
    bottom: 18px;
    width: 46px;
    height: 46px;
  }

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

  .steps-grid::before {
    top: 30px;
    bottom: 30px;
    left: 30px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(89, 220, 230, 0.55), rgba(236, 25, 76, 0.28));
  }

  .step-card,
  .step-card:nth-child(2),
  .step-card:nth-child(3) {
    grid-column: auto;
    min-height: 286px;
    margin-top: 0;
    padding: 28px;
    border-radius: 28px;
  }

  .step-card__number {
    font-size: 94px;
  }

  .step-card h3,
  .step-card:nth-child(2) h3 {
    font-size: 31px;
  }

  .metrics {
    margin-top: 54px;
  }

  .metrics article {
    min-height: 136px;
    padding: 22px 18px;
  }

  .metrics article:first-child,
  .metrics article:last-child {
    padding-inline: 18px;
  }

  .metrics strong {
    font-size: 43px;
  }

  .metrics span {
    font-size: 12px;
  }

  .filter-row {
    width: auto;
    margin-right: -12px;
    padding-right: 12px;
    overflow-x: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    flex-wrap: nowrap;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    scrollbar-width: none;
  }

  .filter-row::-webkit-scrollbar {
    display: none;
  }

  .filter-chip {
    flex: 0 0 auto;
    padding-inline: 16px;
    background: rgba(255, 255, 255, 0.68);
  }

  .vacancy-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 12px;
  }

  .vacancy-card,
  .vacancy-card--featured,
  .vacancy-card:nth-child(n + 2) {
    grid-column: auto;
    grid-row: auto;
    min-height: 292px;
    padding: 26px;
    border-radius: 28px;
  }

  .vacancy-card--featured {
    min-height: 430px;
  }

  .vacancy-card--featured h3 {
    font-size: 48px;
  }

  .support-tabs {
    display: flex;
    gap: 8px;
    margin-right: -12px;
    padding-right: 12px;
  }

  .support-tab {
    min-width: 264px;
    min-height: 96px;
  }

  .support-detail {
    min-height: 610px;
    border-radius: 28px;
  }

  .support-detail__shade {
    background:
      linear-gradient(180deg, rgba(2, 13, 38, 0.08) 8%, rgba(2, 13, 38, 0.94) 70%),
      linear-gradient(90deg, rgba(2, 13, 38, 0.2), transparent);
  }

  .support-detail__content {
    width: 100%;
    min-height: 610px;
    justify-content: flex-end;
    padding: 28px;
  }

  .support-detail h3 {
    font-size: 46px;
  }

  .process-rail {
    display: flex;
    gap: 1px;
    margin-right: -12px;
    padding-right: 12px;
    overflow-x: auto;
    border-radius: 28px 0 0 28px;
    scroll-snap-type: x mandatory;
  }

  .process-rail li {
    flex: 0 0 76vw;
    min-height: 250px;
    scroll-snap-align: start;
  }

  .stories-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .story-card--large,
  .story-card:not(.story-card--large) {
    min-height: 520px;
    margin: 0;
    border-radius: 28px;
    transform: none;
  }

  .story-card:not(.story-card--large) {
    min-height: 440px;
  }

  .story-card__content {
    padding: 26px;
  }

  .story-card h3,
  .story-card:not(.story-card--large) h3 {
    margin-right: 54px;
    font-size: 40px;
  }

  .students-panel {
    border-radius: 30px;
  }

  .students-panel__media {
    min-height: 370px;
  }

  .students-panel__content {
    padding: 38px 26px;
  }

  .students-panel h2 {
    font-size: 44px;
    line-height: 0.92;
  }

  .students-panel__actions {
    display: grid;
  }

  .students-panel__actions .button {
    width: 100%;
  }

  .about-mosaic {
    grid-template-rows: 300px 158px;
  }

  .about-mosaic img,
  .about-mosaic figure {
    border-radius: 22px;
  }

  .about-copy {
    margin: -48px 10px 0;
    padding: 30px 24px;
    border-radius: 28px;
  }

  .about-copy h2 {
    font-size: 44px;
    line-height: 0.92;
  }

  .resources {
    margin-top: 52px;
    padding: 28px 22px 16px;
    border-radius: 28px;
  }

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

  .resources__grid a {
    min-height: 86px;
    padding-inline: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .resources__grid a:first-child {
    border-top: 0;
  }

  .site-footer {
    padding-top: 70px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .site-footer__brand > img {
    width: 225px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .route-card > img,
  .story-card > img,
  .students-panel__media > img,
  .vacancy-card,
  .support-tab {
    transition: none;
  }
}

/* source: hero-map-v2.css */
/*
 * Approved hero refinement, exact Kola map and application finale.
 * Loaded last so these high-fidelity surfaces stay isolated from the content layer.
 */

/* Matte glass navigation — visible from the first hero frame. */

.site-header {
  top: 14px;
  height: 76px;
  padding: 0;
  background: transparent;
  pointer-events: none;
}

.site-header.is-scrolled {
  top: 8px;
  height: 68px;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header__inner {
  min-height: 72px;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.82), rgba(239, 247, 255, 0.64));
  box-shadow:
    0 14px 46px rgba(4, 25, 65, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(26px) saturate(155%);
  -webkit-backdrop-filter: blur(26px) saturate(155%);
  pointer-events: auto;
  transition:
    min-height 240ms var(--ease),
    padding 240ms var(--ease),
    background-color 240ms var(--ease),
    box-shadow 240ms var(--ease);
}

.site-header.is-scrolled .site-header__inner {
  min-height: 62px;
  padding-block: 5px;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.91), rgba(238, 247, 255, 0.82));
  box-shadow:
    0 12px 38px rgba(4, 25, 65, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.brand {
  width: min(224px, 100%);
}

.brand img {
  filter: saturate(1.03) contrast(1.03);
}

.desktop-nav a {
  color: #071b4a;
  font-size: 14px;
  font-weight: 760;
}

.site-header .button--compact {
  min-height: 48px;
  padding-inline: 20px;
  box-shadow: 0 10px 26px rgba(200, 13, 61, 0.18);
}

/* Hero: three physical layers and one living aurora drift. */

.hero {
  padding: 8px;
}

.hero-scene {
  min-height: min(850px, calc(100svh - 16px));
  border-radius: 34px;
  background: #bad0e5;
  box-shadow: 0 28px 80px rgba(4, 24, 62, 0.2);
}

.hero-scene__background::after {
  background:
    linear-gradient(90deg, rgba(247, 251, 255, 0.98) 0%, rgba(247, 251, 255, 0.92) 27%, rgba(241, 248, 255, 0.58) 46%, rgba(235, 245, 255, 0.08) 67%),
    linear-gradient(180deg, rgba(5, 20, 53, 0.02) 0%, rgba(5, 20, 53, 0) 56%, rgba(3, 15, 42, 0.21) 100%);
}

.hero-scene__background img {
  object-position: 50% 56%;
  filter: saturate(0.97) contrast(1.02);
}

.hero-scene__aurora {
  z-index: 2;
  opacity: 1;
  filter: saturate(1.28) contrast(1.04);
  mix-blend-mode: normal;
  -webkit-mask-image:
    radial-gradient(ellipse 78% 66% at 90% 6%, #000 0%, rgba(0, 0, 0, 0.98) 50%, rgba(0, 0, 0, 0.68) 72%, transparent 91%);
  mask-image:
    radial-gradient(ellipse 78% 66% at 90% 6%, #000 0%, rgba(0, 0, 0, 0.98) 50%, rgba(0, 0, 0, 0.68) 72%, transparent 91%);
}

.hero-scene.is-aurora-unavailable .hero-scene__background::after {
  background:
    radial-gradient(ellipse 42% 26% at 82% 4%, rgba(74, 220, 230, 0.44), transparent 74%),
    radial-gradient(ellipse 34% 24% at 96% 8%, rgba(219, 91, 220, 0.32), transparent 78%),
    linear-gradient(90deg, rgba(247, 251, 255, 0.98) 0%, rgba(247, 251, 255, 0.92) 27%, rgba(241, 248, 255, 0.58) 46%, rgba(235, 245, 255, 0.08) 67%),
    linear-gradient(180deg, rgba(5, 20, 53, 0.02) 0%, rgba(5, 20, 53, 0) 56%, rgba(3, 15, 42, 0.21) 100%);
}

.hero-scene__motion-toggle {
  position: absolute;
  z-index: 5;
  right: 24px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 999px;
  background: rgba(6, 22, 55, 0.42);
  color: rgba(255, 255, 255, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 10px 30px rgba(2, 15, 41, 0.2);
  font: 700 11px/1 var(--font-body);
  letter-spacing: 0.02em;
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  cursor: pointer;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.hero-scene__motion-toggle:hover {
  background: rgba(6, 22, 55, 0.56);
  transform: translateY(-1px);
}

.hero-scene__motion-toggle:focus-visible {
  outline: 3px solid rgba(99, 243, 194, 0.66);
  outline-offset: 3px;
}

.hero-scene__motion-toggle:disabled {
  cursor: default;
  opacity: 0.72;
  transform: none;
}

.hero-scene__motion-dot {
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: #63f3c2;
  box-shadow: 0 0 12px rgba(99, 243, 194, 0.9);
}

.hero-scene__motion-toggle[aria-pressed="true"] .hero-scene__motion-dot {
  background: rgba(255, 255, 255, 0.62);
  box-shadow: none;
}

.hero-scene__person {
  right: 1.5%;
  bottom: -2.5%;
  height: 95%;
  filter:
    drop-shadow(-24px 28px 36px rgba(3, 17, 47, 0.19))
    saturate(0.98);
}

.hero-scene__content {
  min-height: min(850px, calc(100svh - 16px));
  padding-top: 112px;
  padding-bottom: 70px;
}

.hero-scene__content > * {
  max-width: 670px;
}

.hero-scene h1 {
  max-width: 680px;
  font-size: clamp(78px, 8.5vw, 136px);
  letter-spacing: -0.078em;
  line-height: 0.8;
}

.hero-scene__lead {
  margin-top: 30px;
  font-size: clamp(23px, 2vw, 32px);
}

.hero-scene__copy {
  max-width: 590px;
}

.hero-scene__index,
.hero-scene__season {
  display: none;
}

/* Exact Kola geometry over a generated relief surface. */

.map-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(76, 218, 229, 0.12), transparent 24%),
    radial-gradient(circle at 92% 84%, rgba(45, 93, 168, 0.1), transparent 22%),
    #eef5fa;
}

.map-section .section-heading h2 {
  max-width: 980px;
  font-size: clamp(52px, 6.4vw, 92px);
  letter-spacing: -0.072em;
  line-height: 0.88;
}

.kola-map-shell {
  position: relative;
}

.region-map {
  position: relative;
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(142, 227, 237, 0.22);
  border-radius: clamp(34px, 4vw, 56px);
  background: #061536;
  box-shadow:
    0 42px 110px rgba(3, 21, 55, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  isolation: isolate;
}

.region-map::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 12, 35, 0.62), transparent 48%),
    linear-gradient(180deg, rgba(3, 15, 42, 0.04) 48%, rgba(2, 12, 35, 0.55) 100%);
  content: "";
  pointer-events: none;
}

.region-map__art,
.region-map__art img,
.region-map__art video,
.region-map__outline,
.region-map__markers {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.region-map__art {
  z-index: 1;
  display: block;
}

.region-map__art img,
.region-map__art video {
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.002);
}

.region-map__outline {
  z-index: 3;
  opacity: 0.72;
  pointer-events: none;
}

.region-map__markers {
  z-index: 5;
  aspect-ratio: auto;
  transform: none;
}

.region-map__intro {
  position: absolute;
  z-index: 4;
  top: clamp(30px, 4vw, 58px);
  left: clamp(30px, 4vw, 58px);
  width: min(430px, 40%);
  padding: clamp(28px, 3.3vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  background: rgba(3, 17, 48, 0.56);
  box-shadow:
    0 26px 70px rgba(0, 8, 28, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
  color: var(--white);
  backdrop-filter: blur(25px) saturate(125%);
  -webkit-backdrop-filter: blur(25px) saturate(125%);
}

.region-map__intro .eyebrow {
  color: rgba(128, 231, 238, 0.78);
}

.region-map__intro h3 {
  margin: 0;
  font-size: clamp(42px, 4.6vw, 68px);
  font-weight: 690;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.region-map__intro > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.region-map__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 30px;
}

.region-map__facts span {
  min-width: 0;
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.region-map__facts strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(23px, 2.4vw, 34px);
  font-weight: 670;
  letter-spacing: -0.055em;
  line-height: 1;
  text-transform: none;
}

.region-map__legend {
  z-index: 7;
  right: clamp(24px, 3vw, 42px);
  bottom: clamp(20px, 2.8vw, 38px);
  left: clamp(24px, 3vw, 42px);
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(3, 17, 48, 0.48);
  color: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.region-map__legend i {
  background: #69e0e7;
  box-shadow: 0 0 18px rgba(105, 224, 231, 0.72);
}

.region-map__legend a {
  color: rgba(255, 255, 255, 0.55);
}

.region-map .map-marker {
  z-index: 6;
}

.region-map .map-marker__dot {
  border-color: rgba(255, 255, 255, 0.9);
  background: #65e1e8;
  box-shadow:
    0 0 0 5px rgba(101, 225, 232, 0.14),
    0 0 24px rgba(101, 225, 232, 0.68);
}

.region-map .map-marker__label {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(3, 17, 48, 0.76);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(0, 8, 28, 0.28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.region-map .map-marker:hover .map-marker__dot,
.region-map .map-marker.is-active .map-marker__dot {
  background: var(--coral);
}

.region-map .city-panel {
  position: absolute;
  z-index: 8;
  right: clamp(28px, 4vw, 58px);
  bottom: clamp(74px, 7vw, 104px);
  width: min(430px, 40%);
  min-height: 0;
  padding: clamp(28px, 3.2vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background: rgba(3, 17, 48, 0.72);
  box-shadow: 0 30px 80px rgba(0, 8, 28, 0.34);
  backdrop-filter: blur(26px) saturate(130%);
  -webkit-backdrop-filter: blur(26px) saturate(130%);
}

.region-map .city-panel h3 {
  margin: 48px 0 14px;
  font-size: clamp(42px, 4.4vw, 64px);
}

/* Application: premium closing scene, not a detached utility form. */

.application-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 4%, rgba(85, 216, 230, 0.13), transparent 25%),
    linear-gradient(180deg, #edf4f9, #f7f9fb);
}

.application-shell {
  grid-template-columns: minmax(390px, 0.88fr) minmax(0, 1.12fr);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: clamp(34px, 4vw, 56px);
  background: #041333;
  box-shadow: 0 42px 110px rgba(3, 21, 55, 0.25);
}

.application-intro {
  min-height: 760px;
  padding: clamp(44px, 5vw, 74px);
  background:
    linear-gradient(180deg, rgba(3, 15, 42, 0.04) 8%, rgba(3, 15, 42, 0.9) 82%),
    linear-gradient(90deg, rgba(3, 15, 42, 0.2), transparent 68%),
    url("../assets/images/route-murmansk-port-summer.jpg") center / cover no-repeat;
}

.application-intro::before {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 96px;
  height: 1px;
  background: linear-gradient(90deg, #6de1e7, var(--coral));
  content: "";
}

.application-intro .eyebrow {
  color: rgba(131, 230, 238, 0.82);
}

.application-intro h2 {
  font-size: clamp(52px, 5.6vw, 82px);
  letter-spacing: -0.072em;
  line-height: 0.88;
}

.application-intro > p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.66);
}

.application-form {
  min-height: 760px;
  padding: clamp(38px, 5vw, 70px);
  background:
    radial-gradient(circle at 100% 0, rgba(85, 216, 230, 0.1), transparent 26%),
    rgba(248, 251, 253, 0.97);
}

.form-progress {
  margin-bottom: 44px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(18, 58, 122, 0.11);
}

.form-progress__step span {
  width: 36px;
  height: 36px;
  border-color: rgba(18, 58, 122, 0.12);
  box-shadow: 0 8px 20px rgba(5, 31, 75, 0.07);
}

.field input,
.field select,
.field textarea,
.file-input {
  border-color: rgba(18, 58, 122, 0.13);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.field input,
.field select {
  min-height: 56px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(36, 92, 174, 0.46);
  box-shadow:
    0 0 0 4px rgba(64, 122, 205, 0.1),
    0 12px 28px rgba(5, 31, 75, 0.06);
}

.file-input {
  min-height: 58px;
}

.resume-builder-callout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-top: 4px;
  padding: 14px 14px 14px 16px;
  border: 1px solid rgba(18, 58, 122, 0.12);
  border-radius: 15px;
  background:
    radial-gradient(circle at 100% 0, rgba(85, 216, 230, 0.12), transparent 44%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(235, 244, 250, 0.82));
  box-shadow: 0 14px 34px rgba(5, 31, 75, 0.07);
}

.resume-builder-callout__icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(145deg, #0b285f, #254f9b);
  box-shadow: 0 10px 24px rgba(5, 31, 75, 0.2);
}

.resume-builder-callout__icon img {
  width: 21px;
  height: 21px;
  filter: brightness(0) invert(1);
}

.resume-builder-callout__copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.resume-builder-callout__copy strong {
  color: var(--navy-950);
  font-size: 14px;
  line-height: 1.2;
}

.resume-builder-callout__copy small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.resume-builder-callout .button {
  min-height: 42px;
  padding-inline: 17px;
  white-space: nowrap;
}

.form-actions {
  margin-top: 34px;
}

@media (max-width: 1180px) {
  .site-header__inner {
    grid-template-columns: 190px 1fr auto;
  }

  .hero-scene__person {
    right: -5%;
    height: 88%;
  }

  .region-map__intro,
  .region-map .city-panel {
    width: min(410px, 45%);
  }
}

@media (max-width: 960px) {
  .site-header {
    top: 10px;
    height: 70px;
  }

  .site-header__inner {
    min-height: 66px;
    padding: 7px 9px 7px 14px;
    border-radius: 21px;
  }

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

  .site-header.is-scrolled .site-header__inner {
    min-height: 60px;
  }

  .brand {
    width: 184px;
  }

  .menu-button {
    border-color: rgba(10, 40, 92, 0.1);
    background: rgba(255, 255, 255, 0.36);
  }

  .hero-scene {
    min-height: 780px;
  }

  .hero-scene__content {
    min-height: 780px;
    padding-top: 106px;
  }

  .hero-scene__person {
    right: -7%;
    bottom: -3%;
    height: 69%;
  }

  .hero-scene__aurora {
    opacity: 0.94;
    -webkit-mask-image:
      radial-gradient(ellipse 86% 61% at 100% 2%, #000 0%, rgba(0, 0, 0, 0.94) 46%, transparent 86%);
    mask-image:
      radial-gradient(ellipse 86% 61% at 100% 2%, #000 0%, rgba(0, 0, 0, 0.94) 46%, transparent 86%);
  }

  .region-map__intro {
    width: min(390px, 48%);
    padding: 28px;
  }

  .region-map__intro h3 {
    font-size: 44px;
  }

  .region-map .city-panel {
    width: min(390px, 48%);
  }

  .application-shell {
    grid-template-columns: 1fr;
  }

  .application-intro {
    min-height: 560px;
  }

  .application-form {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 7px;
    height: 64px;
  }

  .site-header__inner {
    width: calc(100% - 14px);
    min-height: 60px;
    padding: 6px 7px 6px 11px;
    border-radius: 19px;
  }

  .site-header.is-scrolled {
    top: 6px;
    height: 60px;
  }

  .site-header.is-scrolled .site-header__inner {
    min-height: 56px;
    padding-block: 4px;
  }

  .brand {
    width: 162px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  .hero {
    padding: 4px;
  }

  .hero-scene {
    min-height: 728px;
    border-radius: 25px;
  }

  .hero-scene__content {
    min-height: 728px;
    padding: 92px 4px 32px;
  }

  .hero-scene h1 {
    max-width: 340px;
    font-size: clamp(61px, 19.5vw, 86px);
  }

  .hero-scene__person {
    right: -18%;
    bottom: -1.5%;
    height: 64%;
  }

  .hero-scene__background::after {
    background:
      linear-gradient(180deg, rgba(247, 251, 255, 0.97) 0%, rgba(247, 251, 255, 0.88) 38%, rgba(235, 245, 255, 0.22) 62%, rgba(3, 15, 42, 0.18) 100%);
  }

  .hero-scene__aurora {
    opacity: 1;
    -webkit-mask-image:
      radial-gradient(ellipse 104% 60% at 100% 1%, #000 0%, rgba(0, 0, 0, 0.93) 47%, rgba(0, 0, 0, 0.5) 69%, transparent 88%);
    mask-image:
      radial-gradient(ellipse 104% 60% at 100% 1%, #000 0%, rgba(0, 0, 0, 0.93) 47%, rgba(0, 0, 0, 0.5) 69%, transparent 88%);
  }

  .hero-scene__motion-toggle {
    right: 12px;
    bottom: 11px;
    min-height: 34px;
    padding: 7px 10px;
    font-size: 10px;
  }

  .map-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .map-section .section-heading {
    margin-bottom: 30px;
  }

  .map-section .section-heading h2 {
    font-size: clamp(42px, 13vw, 57px);
  }

  .region-map {
    min-height: 0;
    aspect-ratio: auto;
    padding-top: 75%;
    padding-bottom: 430px;
    border-radius: 28px;
  }

  .region-map::after {
    bottom: auto;
    height: auto;
    aspect-ratio: 4 / 3;
    background:
      linear-gradient(180deg, rgba(3, 15, 42, 0.02), rgba(2, 12, 35, 0.35));
  }

  .region-map__art,
  .region-map__art img,
  .region-map__art video,
  .region-map__outline,
  .region-map__markers {
    bottom: auto;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .region-map__intro {
    top: calc(75vw - 6px);
    right: 12px;
    left: 12px;
    width: auto;
    padding: 25px 23px;
    border-radius: 23px;
    background: rgba(8, 29, 69, 0.86);
  }

  .region-map__intro h3 {
    font-size: 39px;
  }

  .region-map__intro > p:not(.eyebrow) {
    margin-top: 14px;
    font-size: 13px;
  }

  .region-map__facts {
    margin-top: 20px;
  }

  .region-map__legend {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 9px 11px;
  }

  .region-map__legend > span {
    display: flex;
  }

  .region-map__legend a {
    font-size: 9px;
  }

  .region-map .city-panel {
    top: calc(75vw - 6px);
    right: 12px;
    bottom: 54px;
    left: 12px;
    width: auto;
    overflow: auto;
    border-radius: 23px;
  }

  .region-map .city-panel h3 {
    margin-top: 30px;
    font-size: 42px;
  }

  .application-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .application-shell {
    border-radius: 30px;
  }

  .application-intro {
    min-height: 480px;
    padding: 34px 27px;
  }

  .application-intro h2 {
    font-size: 48px;
  }

  .application-form {
    padding: 34px 22px;
  }

  .form-progress {
    grid-template-columns: auto 1fr auto;
    gap: 9px;
  }

  .form-progress > small {
    grid-column: 1 / -1;
  }

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

  .field--full {
    grid-column: auto;
  }

  .form-actions {
    display: grid;
  }

  .form-actions .button {
    width: 100%;
  }

  .resume-builder-callout {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 14px;
  }

  .resume-builder-callout .button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scene__background,
  .hero-scene__person {
    transition: none;
  }
}

/* source: chrome-footer-v3.css */
/*
 * Full-bleed navigation and premium footer.
 * This file is intentionally isolated and must be loaded after hero-map-v2.css.
 */

/* -------------------------------------------------------------------------- */
/* Full-bleed matte navigation                                                 */
/* -------------------------------------------------------------------------- */

.site-header {
  --chrome-inline: max(24px, calc((100% - var(--container)) / 2));
  top: 0;
  height: 86px;
  padding: 0;
  background: transparent;
}

.site-header.is-scrolled {
  top: 0;
  height: 70px;
}

.site-header__inner {
  width: 100%;
  max-width: none;
  min-height: 86px;
  margin-inline: 0;
  padding: 10px var(--chrome-inline);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 0;
  background: linear-gradient(
    112deg,
    rgba(249, 252, 255, 0.88),
    rgba(233, 244, 255, 0.72)
  );
  box-shadow:
    0 18px 52px rgba(4, 24, 62, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(18, 62, 125, 0.04);
  backdrop-filter: blur(28px) saturate(162%);
  -webkit-backdrop-filter: blur(28px) saturate(162%);
  transition:
    min-height 240ms var(--ease),
    padding 240ms var(--ease),
    background 240ms var(--ease),
    box-shadow 240ms var(--ease);
}

.site-header.is-scrolled .site-header__inner {
  min-height: 70px;
  padding-top: 6px;
  padding-bottom: 6px;
  background: linear-gradient(
    112deg,
    rgba(250, 253, 255, 0.95),
    rgba(235, 246, 255, 0.88)
  );
  box-shadow:
    0 12px 38px rgba(4, 24, 62, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset 0 -1px 0 rgba(18, 62, 125, 0.06);
}

.site-header .brand {
  width: min(220px, 100%);
  min-width: 0;
}

.site-header .brand img {
  width: 100%;
  height: auto;
  filter: saturate(1.04) contrast(1.025)
    drop-shadow(0 2px 8px rgba(5, 31, 75, 0.06));
}

.site-header .desktop-nav {
  gap: clamp(12px, 2vw, 32px);
}

.site-header .desktop-nav a {
  padding: 11px 5px;
  color: #06183f;
  font-size: 14px;
  font-weight: 740;
  letter-spacing: -0.01em;
}

.site-header .desktop-nav a::after {
  right: 5px;
  bottom: 5px;
  left: 5px;
  height: 2px;
  background: linear-gradient(90deg, #1f64c0, var(--coral));
}

.site-header .button--compact {
  min-height: 48px;
  padding-inline: 21px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    0 12px 28px rgba(193, 16, 61, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.site-header a:focus-visible,
.site-header button:focus-visible {
  outline-color: rgba(24, 92, 188, 0.72);
  outline-offset: 3px;
}

@supports not (
  (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))
) {
  .site-header__inner,
  .site-header.is-scrolled .site-header__inner {
    background: rgba(245, 250, 255, 0.97);
  }
}

/* The drawer repeats the same calm matte-glass language on tablet and mobile. */

.mobile-nav__backdrop {
  background: rgba(2, 12, 36, 0.62);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
}

.mobile-nav__panel {
  top: 0;
  right: 0;
  bottom: 0;
  width: min(410px, 100%);
  padding: max(24px, env(safe-area-inset-top))
    max(24px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom))
    28px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-right: 0;
  border-radius: 32px 0 0 32px;
  background: linear-gradient(
    150deg,
    rgba(251, 253, 255, 0.98),
    rgba(232, 243, 255, 0.96)
  );
  box-shadow:
    -24px 0 80px rgba(2, 17, 49, 0.26),
    inset 1px 0 0 rgba(255, 255, 255, 0.84);
}

.mobile-nav__head {
  padding-bottom: 20px;
  border-bottom-color: rgba(17, 57, 115, 0.12);
  color: var(--navy-950);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-nav .icon-button {
  border-color: rgba(14, 54, 113, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 22px rgba(4, 30, 75, 0.08);
}

.mobile-nav nav {
  margin-top: 22px;
}

.mobile-nav nav a {
  padding: 14px 2px;
  border-bottom-color: rgba(17, 57, 115, 0.1);
  color: #06183f;
  font-family: var(--font-display);
  font-size: clamp(20px, 5.8vw, 25px);
  font-weight: 700;
  letter-spacing: -0.035em;
  transition:
    color 180ms var(--ease),
    padding-left 180ms var(--ease);
}

.mobile-nav nav a:hover,
.mobile-nav nav a:focus-visible {
  padding-left: 8px;
  color: var(--blue-700);
}

/* -------------------------------------------------------------------------- */
/* Premium closing frame                                                       */
/* -------------------------------------------------------------------------- */

.site-footer {
  --footer-line: rgba(188, 226, 255, 0.14);
  --footer-muted: rgba(222, 237, 255, 0.62);
  position: relative;
  z-index: 1;
  min-height: 0;
  margin-top: -1px;
  padding: clamp(54px, 5vw, 78px) 0 24px;
  overflow: hidden;
  border-radius: clamp(34px, 4vw, 58px) clamp(34px, 4vw, 58px) 0 0;
  background:
    linear-gradient(
      118deg,
      rgba(9, 31, 68, 0.82) 0%,
      rgba(3, 14, 39, 0.38) 46%,
      rgba(2, 8, 25, 0.18) 100%
    ),
    #030a1c;
  color: var(--footer-muted);
  box-shadow:
    0 -24px 80px rgba(4, 24, 62, 0.12),
    inset 0 1px 0 rgba(147, 232, 241, 0.18);
  isolation: isolate;
}

.site-footer::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  height: auto;
  background:
    linear-gradient(
        90deg,
        transparent 2%,
        rgba(110, 225, 236, 0.76) 29%,
        rgba(125, 158, 255, 0.42) 62%,
        rgba(137, 142, 230, 0.28) 86%,
        transparent 100%
      )
      top / 100% 1px no-repeat,
    radial-gradient(
      ellipse 50% 32% at 12% -6%,
      rgba(70, 207, 225, 0.2),
      transparent 70%
    ),
    radial-gradient(
      ellipse 42% 28% at 86% 5%,
      rgba(103, 103, 228, 0.16),
      transparent 72%
    ),
    radial-gradient(
      ellipse 30% 24% at 92% 92%,
      rgba(119, 126, 221, 0.07),
      transparent 74%
    );
  content: "";
  opacity: 1;
  pointer-events: none;
}

.site-footer::after {
  position: absolute;
  z-index: -1;
  top: clamp(34px, 4vw, 62px);
  right: clamp(-190px, -8vw, -80px);
  width: clamp(520px, 47vw, 790px);
  aspect-ratio: 4 / 3;
  background: url("../assets/maps/kola-peninsula-outline.svg") center / contain
    no-repeat;
  content: "";
  opacity: 0.055;
  pointer-events: none;
  transform: rotate(-5deg);
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.site-footer__top {
  display: grid;
  grid-template-columns:
    minmax(330px, 1.26fr) minmax(190px, 0.86fr) minmax(220px, 1fr)
    minmax(150px, 0.62fr);
  align-items: start;
  gap: clamp(26px, 2.8vw, 44px);
  padding-bottom: clamp(30px, 3.2vw, 42px);
}

.site-footer__brand {
  position: relative;
  align-self: start;
  min-height: 0;
  padding: clamp(20px, 2.1vw, 28px);
  overflow: hidden;
  border: 1px solid rgba(189, 228, 255, 0.13);
  border-radius: 27px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.018)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 64px rgba(0, 7, 27, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-footer__brand::after {
  position: absolute;
  right: 24px;
  bottom: 23px;
  width: 9px;
  height: 9px;
  border: 2px solid rgba(119, 225, 235, 0.88);
  border-radius: 50%;
  box-shadow:
    0 0 0 8px rgba(105, 218, 230, 0.06),
    0 0 34px rgba(89, 220, 230, 0.38);
  content: "";
}

.site-footer__brand > img {
  width: min(304px, 100%);
  height: auto;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(250, 253, 255, 0.98), rgba(225, 237, 247, 0.93));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 14px 32px rgba(0, 5, 20, 0.18);
  filter: none;
}

.site-footer__brand p {
  max-width: 340px;
  margin: clamp(19px, 2vw, 25px) 0 0;
  color: rgba(245, 250, 255, 0.88);
  font-family: var(--font-display);
  font-size: clamp(20px, 1.7vw, 25px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.site-footer__top > div:not(.site-footer__brand) {
  position: relative;
  align-items: flex-start;
  padding-top: 9px;
}

.site-footer h2 {
  margin: 0 0 18px;
  color: rgba(135, 229, 238, 0.76);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer a,
.site-footer__top > div:not(.site-footer__brand) p {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 0 0 12px;
  color: var(--footer-muted);
  font-size: 13.5px;
  line-height: 1.48;
  text-decoration: none;
  transition:
    color 180ms var(--ease),
    border-color 180ms var(--ease),
    background-color 180ms var(--ease),
    transform 180ms var(--ease);
}

.site-footer__top > div:nth-child(2) a:first-of-type {
  margin-bottom: 15px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(19px, 1.5vw, 23px);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.site-footer a img,
.site-footer__top p img {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  margin-top: -5px;
  padding: 8px;
  border: 1px solid rgba(172, 220, 255, 0.12);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.045);
  filter: brightness(0) invert(1);
  opacity: 0.78;
}

.site-footer__top > div:nth-child(4) a {
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 11px 16px;
  border: 1px solid rgba(190, 227, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.site-footer a:hover {
  color: #ffffff;
}

.site-footer__top > div:nth-child(4) a:hover {
  border-color: rgba(113, 224, 235, 0.38);
  background: rgba(105, 218, 230, 0.09);
  transform: translateY(-2px);
}

.site-footer a:focus-visible {
  outline-color: rgba(116, 226, 237, 0.86);
  outline-offset: 4px;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--footer-line);
  color: rgba(218, 233, 250, 0.43);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.site-footer__bottom > div {
  gap: 12px 24px;
}

.site-footer__bottom a {
  width: auto;
  margin: 0;
  color: rgba(222, 237, 255, 0.48);
}

@media (hover: hover) {
  .site-header .brand {
    transition: transform 220ms var(--ease);
  }

  .site-header .brand:hover {
    transform: translateY(-1px);
  }
}

/* -------------------------------------------------------------------------- */
/* Tablet                                                                      */
/* -------------------------------------------------------------------------- */

@media (max-width: 1180px) {
  .site-header {
    --chrome-inline: clamp(18px, 3vw, 32px);
  }

  .site-header__inner {
    grid-template-columns: 190px 1fr auto;
    gap: 16px;
  }

  .site-footer__top {
    grid-template-columns: minmax(280px, 1.2fr) repeat(3, minmax(150px, 0.72fr));
    gap: 28px;
  }
}

@media (max-width: 960px) {
  .site-header {
    --chrome-inline: clamp(14px, 3.3vw, 24px);
    top: 0;
    height: 72px;
  }

  .site-header.is-scrolled {
    top: 0;
    height: 66px;
  }

  .site-header__inner {
    min-height: 72px;
    padding-top: 8px;
    padding-bottom: 8px;
    grid-template-columns: minmax(164px, 190px) 1fr auto;
  }

  .site-header.is-scrolled .site-header__inner {
    min-height: 66px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .site-header .brand {
    width: 184px;
  }

  .site-header .menu-button {
    width: 46px;
    height: 46px;
    border-color: rgba(9, 43, 98, 0.11);
    background: rgba(255, 255, 255, 0.54);
    box-shadow:
      0 8px 22px rgba(4, 29, 73, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.82);
  }

  .site-footer {
    min-height: 0;
  }

  .site-footer::after {
    top: 64px;
    right: -190px;
    width: 620px;
    opacity: 0.07;
  }

  .site-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 44px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .site-footer__top > div:nth-child(4) {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 190px));
    column-gap: 10px;
  }

  .site-footer__top > div:nth-child(4) h2 {
    grid-column: 1 / -1;
  }
}

/* -------------------------------------------------------------------------- */
/* Mobile                                                                      */
/* -------------------------------------------------------------------------- */

@media (max-width: 680px) {
  .site-header {
    --chrome-inline: max(12px, env(safe-area-inset-left));
    top: 0;
    height: 68px;
  }

  .site-header.is-scrolled {
    top: 0;
    height: 62px;
  }

  .site-header__inner {
    width: 100%;
    min-height: 68px;
    padding: 7px max(12px, env(safe-area-inset-right)) 7px
      max(12px, env(safe-area-inset-left));
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .site-header.is-scrolled .site-header__inner {
    min-height: 62px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .site-header .brand {
    width: clamp(154px, 43vw, 170px);
  }

  .site-header__actions {
    grid-column: 2;
  }

  .site-header .menu-button {
    width: 44px;
    height: 44px;
  }

  .site-header.is-scrolled .menu-button {
    width: 42px;
    height: 42px;
  }

  .mobile-nav__panel {
    width: 100%;
    padding-right: max(20px, env(safe-area-inset-right));
    padding-left: max(20px, env(safe-area-inset-left));
    border: 0;
    border-radius: 0;
  }

  .site-footer {
    padding: 46px 0 22px;
    border-radius: 34px 34px 0 0;
  }

  .site-footer::after {
    top: 116px;
    right: -168px;
    width: 480px;
    opacity: 0.065;
    transform: rotate(-8deg);
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 28px;
  }

  .site-footer__brand {
    grid-column: auto;
    min-height: 0;
    margin-bottom: 22px;
    padding: 18px;
    border-radius: 24px;
  }

  .site-footer__brand > img {
    width: min(236px, 90%);
    padding: 10px 12px;
    border-radius: 15px;
  }

  .site-footer__brand p {
    max-width: 270px;
    margin-top: 20px;
    font-size: clamp(20px, 6.4vw, 24px);
  }

  .site-footer__top > div:not(.site-footer__brand) {
    padding: 20px 0 11px;
    border-top: 1px solid var(--footer-line);
  }

  .site-footer h2 {
    margin-bottom: 17px;
  }

  .site-footer a,
  .site-footer__top > div:not(.site-footer__brand) p {
    max-width: 330px;
    margin-bottom: 14px;
  }

  .site-footer__top > div:nth-child(2) a:first-of-type {
    font-size: clamp(21px, 6.4vw, 25px);
  }

  .site-footer__top > div:nth-child(4) {
    grid-column: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 9px;
  }

  .site-footer__top > div:nth-child(4) h2 {
    grid-column: 1 / -1;
  }

  .site-footer__top > div:nth-child(4) a {
    min-height: 44px;
    padding-inline: 10px;
    font-size: 13px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding-top: 20px;
    line-height: 1.55;
  }

  .site-footer__bottom > div {
    display: grid;
    gap: 8px;
  }
}

@media (max-width: 390px) {
  .site-header .brand {
    width: 150px;
  }

  .site-header .menu-button {
    width: 42px;
    height: 42px;
  }

  .site-footer__brand {
    min-height: 0;
    padding: 17px;
  }

  .site-footer__brand::after {
    right: 21px;
    bottom: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header__inner,
  .site-header .brand,
  .mobile-nav nav a,
  .site-footer a {
    transition: none;
  }
}

/* source: vacancy-people-v5.css */
/* Photographic career cards. ImageGen creates the candid base scenes; the
   supplied project mark is composited afterwards from one immutable master. */

.vacancy-card {
  isolation: isolate;
  min-height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #061536;
  color: #fff;
  box-shadow:
    0 30px 72px rgba(2, 18, 50, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.vacancy-card--featured {
  min-height: 616px;
}

.vacancy-card:nth-child(2),
.vacancy-card:nth-child(3) {
  min-height: 300px;
}

.vacancy-card__media {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}

.vacancy-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--vacancy-media-position, 50% 28%);
  transform: scale(1.005);
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.vacancy-card::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: auto;
  height: auto;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(2, 12, 34, 0.05) 0%, rgba(2, 12, 34, 0.04) 34%, rgba(2, 12, 34, 0.66) 67%, rgba(2, 12, 34, 0.97) 100%),
    linear-gradient(90deg, rgba(3, 16, 44, 0.13), transparent 58%);
  content: "";
  pointer-events: none;
}

.vacancy-card::after {
  position: absolute;
  z-index: 1;
  inset: 1px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: calc(30px - 1px);
  content: "";
  pointer-events: none;
}

.vacancy-card:hover .vacancy-card__media img {
  transform: scale(1.035);
}

.vacancy-card > :not(.vacancy-card__media) {
  position: relative;
  z-index: 2;
}

.vacancy-card__top {
  justify-content: flex-end;
}

.vacancy-card__icon {
  display: none;
}

.vacancy-card__badge,
.vacancy-card--featured .vacancy-card__badge {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(3, 18, 49, 0.38);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(14px) saturate(125%);
  backdrop-filter: blur(14px) saturate(125%);
}

.vacancy-card__location,
.vacancy-card--featured .vacancy-card__location {
  color: rgba(255, 255, 255, 0.76);
}

.vacancy-card__location img,
.vacancy-card__action img {
  filter: brightness(0) invert(1);
}

.vacancy-card h3,
.vacancy-card--featured h3 {
  color: #fff;
  text-wrap: balance;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.34);
}

.vacancy-card > p:not(.vacancy-card__location),
.vacancy-card--featured > p:not(.vacancy-card__location) {
  color: rgba(255, 255, 255, 0.8);
}

.vacancy-card__action,
.vacancy-card--featured .vacancy-card__action {
  color: #fff;
}

.vacancy-card__action::before {
  position: absolute;
  right: -10px;
  bottom: -8px;
  left: -10px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  content: "";
  transition: opacity 180ms ease;
}

.vacancy-card__action:hover::before,
.vacancy-card__action:focus-visible::before {
  opacity: 1;
}

@media (max-width: 1100px) {
  .vacancy-card--featured {
    min-height: 520px;
  }

  .vacancy-card:nth-child(n + 2) {
    min-height: 390px;
  }
}

@media (max-width: 680px) {
  .vacancy-card,
  .vacancy-card:nth-child(n + 2) {
    min-height: 450px;
    padding: 24px;
  }

  .vacancy-card--featured {
    min-height: 490px;
  }

  .vacancy-card--featured h3 {
    font-size: clamp(38px, 12vw, 48px);
  }

  .vacancy-card::before {
    background:
      linear-gradient(180deg, rgba(2, 12, 34, 0.03) 0%, rgba(2, 12, 34, 0.08) 36%, rgba(2, 12, 34, 0.78) 68%, rgba(2, 12, 34, 0.98) 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .vacancy-card__media img {
    transition: none;
  }

  .vacancy-card:hover .vacancy-card__media img {
    transform: scale(1.005);
  }
}

/* source: map-v3.css */
/* Full Murmansk Oblast map. The artistic raster and interactive coordinates
   share the same north-up 4:3 projection; admin points remain WGS84 data. */

.region-map {
  background: #02152f;
  border-color: rgba(131, 225, 235, 0.24);
}

.region-map::after {
  background:
    linear-gradient(270deg, rgba(2, 12, 35, 0.7) 0%, rgba(2, 12, 35, 0.38) 31%, rgba(2, 12, 35, 0.03) 58%),
    linear-gradient(180deg, rgba(3, 15, 42, 0.03) 53%, rgba(2, 12, 35, 0.48) 100%);
}

.region-map__art img,
.region-map__art video {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.04) brightness(0.95);
}

.region-map__art .section-motion-art__video {
  transition: none;
}

.region-map__art.is-motion-ready .section-motion-art__poster {
  visibility: hidden;
  opacity: 0;
}

.region-map__outline {
  display: none;
}

.region-map__intro {
  right: clamp(30px, 4vw, 58px);
  left: auto;
  width: min(430px, 39%);
  background: rgba(3, 17, 48, 0.6);
  transition:
    opacity 240ms ease,
    transform 240ms ease,
    visibility 240ms ease;
}

.region-map.has-selection .region-map__intro {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
}

.region-map__intro h3 {
  max-width: 360px;
  font-size: clamp(38px, 4vw, 58px);
  overflow-wrap: normal;
  word-break: normal;
}

.region-map__facts strong {
  font-size: clamp(22px, 2.1vw, 31px);
}

.region-map .city-panel {
  right: clamp(28px, 4vw, 58px);
  left: auto;
  text-align: center;
  animation: city-panel-arrive 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.region-map .city-panel__top,
.region-map .city-panel__sectors,
.region-map .city-panel__actions {
  justify-content: center;
}

.region-map .city-panel h3 {
  margin: 26px auto 14px;
  text-align: center;
}

.region-map .city-panel > p:not(.city-panel__note) {
  max-width: 34ch;
  margin-inline: auto;
  text-align: center;
}

.region-map .city-panel__note {
  text-align: left;
}

.region-map__legend {
  display: none;
}

.region-map__connector {
  position: absolute;
  z-index: 4;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.region-map.has-connector .region-map__connector {
  opacity: 1;
}

.region-map__connector path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.region-map__connector-shadow {
  stroke: rgba(56, 151, 222, 0.28);
  stroke-width: 11;
  filter: blur(6px);
}

.region-map__connector-dashes {
  stroke: rgba(192, 247, 249, 0.84);
  stroke-width: 2.2;
  stroke-dasharray: 3 13;
  animation: map-connector-flow 760ms linear infinite;
}

.region-map__connector-trace {
  stroke: #fff;
  stroke-width: 3.5;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  filter: drop-shadow(0 0 7px rgba(192, 247, 249, 0.78));
}

.region-map.is-routing .region-map__connector-trace {
  animation: map-connector-trace 980ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.region-map__connector-runner {
  opacity: 0;
  filter: drop-shadow(0 0 7px rgba(192, 247, 249, 0.92));
}

.region-map.is-routing .region-map__connector-runner {
  opacity: 1;
}

.region-map__connector-runner path {
  stroke: #fff;
  stroke-width: 2.5;
}

.region-map__connector-target {
  fill: #ef4829;
  stroke: #fff;
  stroke-width: 4;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  vector-effect: non-scaling-stroke;
}

.region-map.has-connector .region-map__connector-target {
  opacity: 1;
}

.region-map.is-routing .region-map__connector-target {
  animation: map-connector-target 720ms 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes city-panel-arrive {
  from {
    opacity: 0;
    transform: translate3d(18px, 0, 0) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes map-connector-flow {
  to { stroke-dashoffset: -32; }
}

@keyframes map-connector-trace {
  to { stroke-dashoffset: 0; }
}

@keyframes map-connector-target {
  0% { opacity: 0; transform: scale(0.35); }
  60% { opacity: 1; transform: scale(1.5); }
  100% { opacity: 1; transform: scale(1); }
}

@media (max-width: 960px) {
  .region-map__intro,
  .region-map .city-panel {
    right: 26px;
    left: auto;
  }
}

@media (max-width: 680px) {
  .region-map::after {
    background:
      linear-gradient(180deg, rgba(3, 15, 42, 0.02), rgba(2, 12, 35, 0.34));
  }

  .region-map__outline {
    display: none;
  }

  .region-map__intro,
  .region-map .city-panel {
    right: 12px;
    left: 12px;
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .region-map .city-panel,
  .region-map__connector-dashes,
  .region-map__connector-target,
  .region-map__connector-trace {
    animation: none !important;
  }

  .region-map__connector-trace {
    stroke-dashoffset: 0;
  }
}

/* source: section-parallax.css */
/*
 * Decorative section-parallax primitives.
 * Artwork is intentionally external: a layer can contain an <img>/<picture>
 * or use one of the lightweight procedural variants below.
 */

[data-parallax-section] {
  position: relative;
  isolation: isolate;
}

/* Keep the decorative plane behind every direct content wrapper. */
[data-parallax-section] > :not(.section-parallax) {
  position: relative;
  z-index: 1;
}

.section-parallax {
  position: absolute;
  z-index: 0;
  inset: -7% 0;
  overflow: hidden;
  contain: layout paint;
  pointer-events: none;
  user-select: none;
}

.section-parallax--edge-fade {
  -webkit-mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 12%,
      #000 88%,
      transparent 100%
    );
  mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 12%,
      #000 88%,
      transparent 100%
    );
}

[data-parallax-layer] {
  --parallax-x: 0px;
  --parallax-y: 0px;
  --parallax-rotate: 0deg;
  --parallax-scale: 1;
  --parallax-opacity: 0.14;

  position: absolute;
  max-width: none;
  opacity: clamp(0, var(--parallax-opacity), 0.24);
  transform:
    translate3d(var(--parallax-x), var(--parallax-y), 0)
    rotate(var(--parallax-rotate))
    scale(var(--parallax-scale));
  transform-origin: center;
  transition: opacity 500ms ease;
  will-change: transform;
  backface-visibility: hidden;
}

/* Suitable for softly blended ImageGen landscape/texture cutouts. */
.section-parallax__layer--image {
  width: min(48vw, 760px);
  min-width: 360px;
  overflow: hidden;
  border-radius: 42%;
  filter: saturate(0.82) contrast(0.94);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 28%, rgba(0, 0, 0, 0.88) 54%, transparent 84%);
  mask-image: radial-gradient(ellipse at center, #000 28%, rgba(0, 0, 0, 0.88) 54%, transparent 84%);
}

.section-parallax__layer--image > picture,
.section-parallax__layer--image img {
  display: block;
  width: 100%;
  height: 100%;
}

.section-parallax__layer--image img {
  object-fit: cover;
}

.section-parallax__layer--wide {
  inset: -5% -3%;
  width: 106%;
  height: 110%;
}

.section-parallax__layer--wide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Optional asset-free accents for composition and prototyping. */
.section-parallax__layer--orb {
  width: clamp(280px, 33vw, 580px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 46% 42%,
      var(--parallax-color, rgba(79, 211, 227, 0.68)) 0%,
      color-mix(in srgb, var(--parallax-color, #4fd3e3) 36%, transparent) 36%,
      transparent 72%
    );
  filter: blur(clamp(20px, 3vw, 54px));
}

.section-parallax__layer--contours {
  width: clamp(360px, 50vw, 820px);
  aspect-ratio: 1.25;
  border: 1px solid color-mix(in srgb, var(--parallax-color, #77d9e7) 42%, transparent);
  border-radius: 42% 58% 63% 37% / 47% 36% 64% 53%;
  box-shadow:
    24px 18px 0 -23px color-mix(in srgb, var(--parallax-color, #77d9e7) 30%, transparent),
    52px 40px 0 -51px color-mix(in srgb, var(--parallax-color, #77d9e7) 24%, transparent),
    -28px 56px 0 -27px color-mix(in srgb, var(--parallax-color, #77d9e7) 18%, transparent);
}

.section-parallax__layer--grain {
  inset: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 18% 28%, currentColor 0 0.7px, transparent 0.9px),
    radial-gradient(circle at 72% 62%, currentColor 0 0.6px, transparent 0.8px);
  background-size: 27px 31px, 39px 43px;
  opacity: 0.045;
}

.section-parallax__layer--top-left {
  top: -12%;
  left: -9%;
}

.section-parallax__layer--top-right {
  top: -12%;
  right: -9%;
}

.section-parallax__layer--bottom-left {
  bottom: -12%;
  left: -9%;
}

.section-parallax__layer--bottom-right {
  right: -9%;
  bottom: -12%;
}

[data-parallax-mode="static"] [data-parallax-layer] {
  transform: none;
  will-change: auto;
}

@media (max-width: 767px), (pointer: coarse) {
  .section-parallax {
    inset-block: -3%;
  }

  [data-parallax-layer] {
    --parallax-opacity: 0.09;
    filter: none;
    will-change: auto;
  }

  [data-parallax-mobile="hide"] {
    display: none;
  }

  .section-parallax__layer--image {
    width: min(82vw, 520px);
    min-width: 260px;
  }

  .section-parallax__layer--orb {
    width: min(78vw, 420px);
    filter: blur(28px);
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-parallax-layer] {
    transform: none !important;
    transition: none;
    will-change: auto;
  }
}

@media print {
  .section-parallax {
    display: none !important;
  }
}

/* source: landing-premium-v6.css */
/*
 * Landing v6 — regional art direction.
 * One documentary rhythm: people, tactile instruments, exact geography and
 * sparse natural motifs. Loaded after the legacy art layers by design.
 */

/* Regional background chapters */

.vacancies-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(238, 245, 249, 0.96), rgba(229, 239, 246, 0.98)),
    #eaf2f7;
}

.vacancies-section .section-heading,
.vacancies-section .filter-row,
.vacancies-section .vacancy-grid {
  position: relative;
  z-index: 2;
}

.section-parallax__layer--sea {
  top: 2%;
  right: -18%;
  bottom: auto;
  left: auto;
  width: min(88vw, 1320px);
  height: 78%;
  opacity: 0.16;
  filter: saturate(0.72) contrast(0.9);
  mix-blend-mode: multiply;
  -webkit-mask-image:
    radial-gradient(ellipse 82% 72% at 72% 44%, #000 12%, rgba(0, 0, 0, 0.84) 54%, transparent 88%);
  mask-image:
    radial-gradient(ellipse 82% 72% at 72% 44%, #000 12%, rgba(0, 0, 0, 0.84) 54%, transparent 88%);
}

.section-parallax__layer--sea img {
  object-position: 68% 46%;
}

.route-section {
  overflow: hidden;
}

.route-section > .section-parallax {
  inset: 0;
}

.route-section .section-parallax__layer--khibiny {
  inset: auto -6% -7% auto;
  width: min(68vw, 1040px);
  height: 54%;
  opacity: 0.12;
  filter: saturate(0.64) contrast(0.86);
  mix-blend-mode: multiply;
  -webkit-mask-image:
    radial-gradient(ellipse 88% 82% at 72% 86%, #000 0%, rgba(0, 0, 0, 0.82) 48%, transparent 90%);
  mask-image:
    radial-gradient(ellipse 88% 82% at 72% 86%, #000 0%, rgba(0, 0, 0, 0.82) 48%, transparent 90%);
}

.route-section .section-parallax__layer--khibiny img {
  object-position: 72% 68%;
  transform: scale(1.035);
}

.support-section .section-parallax__layer--whale {
  top: -4%;
  right: -9%;
  bottom: auto;
  left: auto;
  width: min(84vw, 1240px);
  height: 98%;
  opacity: 0.2;
  filter: saturate(0.78) brightness(1.28) contrast(0.94);
  mix-blend-mode: screen;
  -webkit-mask-image:
    radial-gradient(ellipse 84% 76% at 70% 48%, #000 8%, rgba(0, 0, 0, 0.86) 62%, transparent 94%);
  mask-image:
    radial-gradient(ellipse 84% 76% at 70% 48%, #000 8%, rgba(0, 0, 0, 0.86) 62%, transparent 94%);
}

.support-section .section-parallax__layer--whale img {
  object-fit: contain;
  object-position: 100% 38%;
  transform: rotate(-7deg) scale(0.98);
}

.support-detail__photo {
  object-position: var(--support-position-desktop, 78% 42%);
  transition:
    opacity 220ms ease,
    transform 650ms var(--ease);
}

.support-detail.is-media-changing .support-detail__photo {
  opacity: 0.64;
}

.support-detail.is-media-error {
  background:
    radial-gradient(circle at 82% 18%, rgba(92, 220, 230, 0.15), transparent 32%),
    #020d26;
}

.support-detail.is-media-error .support-detail__photo {
  opacity: 0;
}

.about-section {
  position: relative;
  overflow: hidden;
}

.about-section .section-parallax__layer--crab {
  right: -8%;
  bottom: -12%;
  left: auto;
  width: min(74vw, 1120px);
  height: 86%;
  opacity: 0.16;
  filter: saturate(0.72) contrast(0.94);
  mix-blend-mode: multiply;
  -webkit-mask-image:
    radial-gradient(ellipse 82% 78% at 76% 66%, #000 18%, rgba(0, 0, 0, 0.82) 62%, transparent 93%);
  mask-image:
    radial-gradient(ellipse 82% 78% at 76% 66%, #000 18%, rgba(0, 0, 0, 0.82) 62%, transparent 93%);
}

.about-section .section-parallax__layer--crab img {
  object-fit: contain;
  object-position: 100% 100%;
  transform: rotate(-8deg) scale(0.96);
}

.application-section .section-parallax__layer--port {
  top: -12%;
  right: -10%;
  bottom: -12%;
  left: 38%;
  width: auto;
  height: auto;
  opacity: 0.13;
  filter: saturate(0.62) contrast(1.06);
  mix-blend-mode: screen;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.68) 22%, #000 58%, rgba(0, 0, 0, 0.52) 100%);
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.68) 22%, #000 58%, rgba(0, 0, 0, 0.52) 100%);
}

/* Career composition */

.vacancy-grid--v6 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.vacancy-grid--v6 .vacancy-grid__human {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 16px;
}

.vacancy-grid--v6 .vacancy-grid__objects {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.vacancy-grid--v6 .vacancy-card {
  position: relative;
  isolation: isolate;
  display: block;
  grid-column: auto;
  grid-row: auto;
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 46, 84, 0.09);
  border-radius: 30px;
  color: #071735;
  box-shadow:
    0 28px 72px rgba(6, 31, 69, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    transform 520ms cubic-bezier(0.2, 0.75, 0.25, 1),
    box-shadow 520ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.vacancy-grid--v6 .vacancy-card[hidden] {
  display: none;
}

.vacancy-grid--v6 .vacancy-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 36px 92px rgba(6, 31, 69, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.vacancy-grid--v6 .vacancy-card::before,
.vacancy-grid--v6 .vacancy-card::after {
  pointer-events: none;
}

.vacancy-grid--v6 .vacancy-card::after {
  z-index: 5;
  inset: 1px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 29px;
  background: none;
}

.vacancy-grid--v6 .vacancy-card__body {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
}

.vacancy-grid--v6 .vacancy-card__top {
  justify-content: space-between;
}

.vacancy-grid--v6 .vacancy-card__badge {
  width: max-content;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  opacity: 0.7;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.vacancy-grid--v6 .vacancy-card__index {
  color: currentColor;
  font: 650 12px/1 var(--font-body);
  letter-spacing: 0.16em;
  opacity: 0.42;
}

.vacancy-grid--v6 .vacancy-card__location {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 0;
  color: inherit;
  font-size: 12px;
  opacity: 0.68;
}

.vacancy-grid--v6 .vacancy-card__location img {
  width: 15px;
  height: 15px;
}

.vacancy-grid--v6 .vacancy-card h3 {
  margin: 0;
  color: inherit;
  letter-spacing: -0.06em;
  text-shadow: none;
}

.vacancy-grid--v6 .vacancy-card__description {
  margin: 0;
  color: inherit;
  opacity: 0.7;
}

/* Two documentary human cards */

.vacancy-grid--v6 .vacancy-card--human {
  height: 606px;
  background: #071735;
  color: #fff;
}

.vacancy-grid--v6 .vacancy-card--human::before {
  z-index: 2;
  inset: 0;
  border-radius: inherit;
  content: "";
}

.vacancy-grid--v6 .vacancy-card--human .vacancy-card__media {
  z-index: 1;
  border-radius: 0;
}

.vacancy-grid--v6 .vacancy-card--human .vacancy-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.vacancy-grid--v6 .vacancy-card--human:hover .vacancy-card__media img {
  transform: scale(1.025);
}

.vacancy-grid--v6 .vacancy-card--featured .vacancy-card__media {
  inset: 0 0 0 42%;
}

.vacancy-grid--v6 .vacancy-card--featured .vacancy-card__media img {
  object-position: 52% 18%;
}

.vacancy-grid--v6 .vacancy-card--featured::before {
  background:
    linear-gradient(90deg, #071735 0%, #071735 39%, rgba(7, 23, 53, 0.96) 48%, rgba(7, 23, 53, 0.2) 71%, transparent 100%),
    linear-gradient(180deg, transparent 52%, rgba(4, 14, 34, 0.2) 100%);
}

.vacancy-grid--v6 .vacancy-card--featured .vacancy-card__body {
  inset: 0 auto 0 0;
  width: 52%;
  padding: 34px;
}

.vacancy-grid--v6 .vacancy-card--featured .vacancy-card__location {
  margin-top: auto;
}

.vacancy-grid--v6 .vacancy-card--featured h3 {
  margin-top: 12px;
  font-size: clamp(48px, 4.8vw, 72px);
  line-height: 0.92;
}

.vacancy-grid--v6 .vacancy-card--featured .vacancy-card__description {
  max-width: 430px;
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.55;
}

.vacancy-grid--v6 .vacancy-card--human .vacancy-card__action {
  position: relative;
  align-self: flex-start;
  min-height: 48px;
  margin-top: 26px;
  color: #071735;
}

.vacancy-grid--v6 .vacancy-card--human .vacancy-card__action::before {
  display: none;
}

.vacancy-grid--v6 .vacancy-card--human .vacancy-card__action img {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  filter: none;
}

.vacancy-grid--v6 .vacancy-card--doctor .vacancy-card__media {
  inset: 0 0 28%;
}

.vacancy-grid--v6 .vacancy-card--doctor .vacancy-card__media img {
  object-position: 50% 40%;
}

.vacancy-grid--v6 .vacancy-card--doctor::before {
  background:
    linear-gradient(180deg, transparent 0%, transparent 53%, rgba(7, 23, 53, 0.22) 63%, #071735 73%, #071735 100%);
}

.vacancy-grid--v6 .vacancy-card--doctor .vacancy-card__body {
  inset: auto 0 0;
  height: 44%;
  padding: 26px 28px 28px;
}

.vacancy-grid--v6 .vacancy-card--doctor .vacancy-card__location {
  margin-top: auto;
}

.vacancy-grid--v6 .vacancy-card--doctor h3 {
  margin-top: 8px;
  font-size: clamp(35px, 3.4vw, 50px);
  line-height: 0.94;
}

.vacancy-grid--v6 .vacancy-card--doctor .vacancy-card__description {
  display: none;
}

.vacancy-grid--v6 .vacancy-card--doctor .vacancy-card__action {
  margin-top: 18px;
}

/* Four tactile object cards */

.vacancy-grid--v6 .vacancy-card--object {
  height: 304px;
}

.vacancy-grid--v6 .vacancy-card--object::before {
  z-index: 0;
  inset: auto -28% -46% 18%;
  width: auto;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 177, 202, 0.16), transparent 72%);
  content: "";
}

.vacancy-grid--v6 .vacancy-card--object .vacancy-card__body {
  z-index: 2;
  inset: 0;
  padding: 22px;
}

.vacancy-grid--v6 .vacancy-card__object {
  position: absolute;
  z-index: 1;
  top: 30px;
  right: -12px;
  width: 58%;
  height: 54%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 20px 24px rgba(5, 25, 57, 0.16));
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.vacancy-grid--v6 .vacancy-card--object:hover .vacancy-card__object {
  transform: translateY(-5px) rotate(-1.5deg);
}

.vacancy-grid--v6 .vacancy-card--object .vacancy-card__location {
  margin-top: auto;
}

.vacancy-grid--v6 .vacancy-card--object h3 {
  max-width: 78%;
  margin-top: 8px;
  font-size: clamp(24px, 2.1vw, 31px);
  line-height: 0.98;
}

.vacancy-grid--v6 .vacancy-card--object .vacancy-card__description {
  max-width: 72%;
  margin-top: 9px;
  font-size: 12px;
  line-height: 1.4;
}

.vacancy-card__object-action {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(7, 23, 53, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.vacancy-card__object-action:hover,
.vacancy-card__object-action:focus-visible {
  background: #fff;
  transform: translateX(3px);
}

.vacancy-card__object-action:focus-visible {
  outline: 3px solid rgba(79, 211, 227, 0.48);
  outline-offset: 3px;
}

.vacancy-card__object-action img {
  width: 18px;
  height: 18px;
}

.vacancy-grid--v6 .vacancy-card--education {
  background:
    linear-gradient(145deg, rgba(249, 252, 251, 0.97), rgba(212, 231, 235, 0.96));
}

.vacancy-grid--v6 .vacancy-card--port {
  border-color: rgba(115, 191, 211, 0.18);
  background:
    radial-gradient(circle at 84% 18%, rgba(72, 196, 213, 0.14), transparent 34%),
    linear-gradient(145deg, #061735, #092958);
  color: #fff;
}

.vacancy-grid--v6 .vacancy-card--port .vacancy-card__object-action {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.vacancy-grid--v6 .vacancy-card--port .vacancy-card__object-action img,
.vacancy-grid--v6 .vacancy-card--port .vacancy-card__location img {
  filter: brightness(0) invert(1);
}

.vacancy-grid--v6 .vacancy-card--energy {
  background:
    linear-gradient(145deg, rgba(252, 249, 244, 0.98), rgba(232, 224, 213, 0.96));
}

.vacancy-grid--v6 .vacancy-card--analytics {
  background:
    radial-gradient(circle at 84% 28%, rgba(100, 66, 136, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(248, 247, 252, 0.98), rgba(221, 219, 233, 0.96));
}

.vacancy-grid--v6 .vacancy-card--analytics .vacancy-card__object {
  top: 18px;
  right: -3px;
  height: 58%;
}

@media (max-width: 1100px) {
  .vacancy-grid--v6 .vacancy-grid__human {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  }

  .vacancy-grid--v6 .vacancy-grid__objects {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vacancy-grid--v6 .vacancy-card--object {
    height: 292px;
  }
}

@media (max-width: 720px) {
  .support-detail {
    --support-media-height: clamp(350px, 108vw, 420px);
    min-height: calc(var(--support-media-height) + 390px);
    background: #020d26;
  }

  .section-parallax__layer--sea {
    top: 6%;
    right: -56%;
    width: 156vw;
    height: 46%;
    opacity: 0.1;
  }

  .route-section .section-parallax__layer--khibiny {
    inset: auto -58% 1% auto;
    width: 164vw;
    height: 32%;
    opacity: 0.07;
  }

  .support-section .section-parallax__layer--whale {
    top: 8%;
    right: -58%;
    width: 176vw;
    height: 72%;
    opacity: 0.12;
  }

  .about-section .section-parallax__layer--crab {
    right: -42%;
    bottom: -1%;
    width: 142vw;
    height: 56%;
    opacity: 0.09;
  }

  .application-section .section-parallax__layer--port {
    top: 0;
    right: -46%;
    bottom: 0;
    left: 24%;
    opacity: 0.08;
  }

  .support-detail__photo {
    bottom: auto;
    height: var(--support-media-height);
    object-position: var(--support-position-mobile, 88% 50%);
  }

  .support-detail__shade {
    background:
      linear-gradient(180deg,
        rgba(2, 13, 38, 0.02) 0,
        rgba(2, 13, 38, 0.08) calc(var(--support-media-height) - 92px),
        rgba(2, 13, 38, 0.78) calc(var(--support-media-height) - 16px),
        #020d26 var(--support-media-height),
        #020d26 100%),
      linear-gradient(90deg, rgba(2, 13, 38, 0.12), rgba(2, 13, 38, 0.01) 88%);
  }

  .support-detail__content {
    min-height: calc(var(--support-media-height) + 390px);
    justify-content: flex-start;
    padding: calc(var(--support-media-height) + 22px) 24px 28px;
  }

  .support-detail h3 {
    font-size: clamp(40px, 12vw, 48px);
  }

  .vacancy-grid--v6 {
    display: block;
  }

  .vacancy-grid--v6 .vacancy-grid__human {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .vacancy-grid--v6 .vacancy-card--human {
    height: 492px;
    border-radius: 26px;
  }

  .vacancy-grid--v6 .vacancy-card--featured .vacancy-card__media,
  .vacancy-grid--v6 .vacancy-card--doctor .vacancy-card__media {
    inset: 0 0 28%;
  }

  .vacancy-grid--v6 .vacancy-card--featured .vacancy-card__media img {
    object-position: 50% 18%;
  }

  .vacancy-grid--v6 .vacancy-card--doctor .vacancy-card__media img {
    object-position: 50% 40%;
  }

  .vacancy-grid--v6 .vacancy-card--featured::before,
  .vacancy-grid--v6 .vacancy-card--doctor::before {
    background:
      linear-gradient(180deg, transparent 0%, transparent 52%, rgba(7, 23, 53, 0.3) 64%, #071735 74%, #071735 100%);
  }

  .vacancy-grid--v6 .vacancy-card--featured .vacancy-card__body,
  .vacancy-grid--v6 .vacancy-card--doctor .vacancy-card__body {
    inset: auto 0 0;
    width: 100%;
    height: 44%;
    padding: 22px;
  }

  .vacancy-grid--v6 .vacancy-card--human .vacancy-card__location {
    margin-top: auto;
  }

  .vacancy-grid--v6 .vacancy-card--featured h3,
  .vacancy-grid--v6 .vacancy-card--doctor h3 {
    margin-top: 8px;
    font-size: 39px;
    line-height: 0.94;
  }

  .vacancy-grid--v6 .vacancy-card--featured h3 br,
  .vacancy-grid--v6 .vacancy-card--doctor h3 br {
    display: none;
  }

  .vacancy-grid--v6 .vacancy-card--human .vacancy-card__description {
    display: none;
  }

  .vacancy-grid--v6 .vacancy-card--human .vacancy-card__action {
    min-height: 43px;
    margin-top: 15px;
    padding: 10px 16px;
    font-size: 13px;
  }

  .vacancy-grid--v6 .vacancy-grid__objects {
    display: flex;
    gap: 12px;
    margin: 12px -12px 0 0;
    padding: 0 12px 12px 0;
    overflow-x: auto;
    scroll-padding-inline: 0 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .vacancy-grid--v6 .vacancy-grid__objects::-webkit-scrollbar {
    display: none;
  }

  .vacancy-grid--v6 .vacancy-card--object {
    flex: 0 0 min(82vw, 322px);
    height: 276px;
    border-radius: 26px;
    scroll-snap-align: start;
  }

  .vacancy-grid--v6 .vacancy-card--object .vacancy-card__body {
    padding: 20px;
  }

  .vacancy-grid--v6 .vacancy-card__object {
    top: 28px;
    right: -8px;
    width: 56%;
    height: 50%;
  }

  .vacancy-grid--v6 .vacancy-card--object h3 {
    max-width: 78%;
    font-size: 27px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vacancy-grid--v6 .vacancy-card,
  .vacancy-grid--v6 .vacancy-card__object,
  .vacancy-grid--v6 .vacancy-card--human .vacancy-card__media img {
    transition: none;
  }

  .vacancy-grid--v6 .vacancy-card:hover,
  .vacancy-grid--v6 .vacancy-card--object:hover .vacancy-card__object,
  .vacancy-grid--v6 .vacancy-card--human:hover .vacancy-card__media img {
    transform: none;
  }
}

/* source: landing-v8.css */
/*
 * Landing v8 — interface layer for the transport chapter, relocation stories,
 * application helpers and branded resume builder. Loaded after all legacy CSS.
 */

:root {
  --v8-brand-orange: #ea5b13;
  --v8-brand-sky: #71c4ef;
  --v8-brand-blue: #0070b3;
  --v8-brand-deep: #00588d;
  --v8-brand-mustard: #d3b22b;
  --v8-night: #03112e;
  --v8-night-soft: #082656;
  --v8-frost: rgba(255, 255, 255, 0.82);
  --v8-frost-dark: rgba(255, 255, 255, 0.09);
  --v8-line-dark: rgba(255, 255, 255, 0.14);
  --v8-shadow: 0 34px 90px rgba(3, 22, 58, 0.2);
}

[hidden] {
  display: none !important;
}

/* Exact transport map */

.transport-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 4%, rgba(113, 196, 239, 0.13), transparent 26%),
    linear-gradient(180deg, #eef5fa 0%, #f7fafc 100%);
}

.transport-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(310px, 0.68fr) minmax(0, 1.32fr);
  min-height: 680px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: clamp(32px, 4vw, 58px);
  background:
    radial-gradient(circle at 15% 12%, rgba(113, 196, 239, 0.18), transparent 30%),
    linear-gradient(140deg, var(--v8-night) 0%, #061d46 54%, #092c61 100%);
  box-shadow: var(--v8-shadow);
  color: var(--white);
  isolation: isolate;
}

.transport-showcase__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 76px) clamp(34px, 4.6vw, 68px);
}

.transport-showcase__copy h2 {
  max-width: 560px;
  color: var(--white);
  font-size: clamp(52px, 5.5vw, 84px);
  letter-spacing: -0.072em;
  line-height: 0.88;
}

.transport-showcase__copy > p:not(.eyebrow):not(.transport-showcase__note) {
  max-width: 540px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(16px, 1.25vw, 19px);
}

.transport-showcase__facts {
  display: grid;
  gap: 10px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.transport-showcase__facts li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  min-height: 68px;
  padding: 11px 14px 11px 11px;
  border: 1px solid var(--v8-line-dark);
  border-radius: 18px;
  background: var(--v8-frost-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.transport-showcase__facts li > img {
  width: 44px;
  height: 44px;
  padding: 11px;
  border-radius: 14px;
  background: rgba(113, 196, 239, 0.14);
  filter: brightness(0) invert(1);
}

.transport-showcase__facts li:last-child > img {
  background: rgba(234, 91, 19, 0.15);
}

.transport-showcase__facts span {
  display: grid;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.transport-showcase__facts strong {
  color: var(--white);
  font-size: 14px;
  font-weight: 750;
}

.transport-showcase__note {
  max-width: 470px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.transport-showcase__visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  align-items: center;
  margin: 0;
  padding: clamp(24px, 3vw, 48px) clamp(18px, 2vw, 34px) clamp(24px, 3vw, 48px) 0;
}

.transport-showcase__visual picture {
  display: block;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: clamp(24px, 3vw, 42px);
  background: #061a3b;
  box-shadow: 0 28px 70px rgba(0, 8, 28, 0.34);
}

.transport-showcase__visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 1672 / 941;
  object-fit: contain;
  background: #061a3b;
}

.transport-showcase__visual figcaption {
  max-width: min(520px, 100%);
  display: grid;
  justify-self: end;
  gap: 2px;
  margin-top: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(3, 17, 46, 0.7);
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.04em;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.transport-showcase__visual figcaption strong {
  color: var(--white);
  font-size: 11px;
}

.transport-showcase__visual figcaption a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.35;
  text-decoration: none;
}

/* Stories as a curated messenger feed */

.stories-section--v8 .section-heading {
  margin-bottom: 34px;
}

.story-filters {
  display: flex;
  gap: 9px;
  margin: 0 -2px 36px;
  padding: 2px 2px 8px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(113, 196, 239, 0.34) transparent;
}

.story-filter {
  min-height: 44px;
  flex: 0 0 auto;
  padding: 10px 17px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 750;
  transition:
    color 180ms var(--ease),
    background-color 180ms var(--ease),
    border-color 180ms var(--ease),
    transform 180ms var(--ease);
}

.story-filter.is-active,
.story-filter[aria-pressed="true"] {
  border-color: rgba(113, 196, 239, 0.56);
  background: rgba(113, 196, 239, 0.16);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(113, 196, 239, 0.1);
}

.story-filter:focus-visible,
.story-message:focus-visible {
  outline: 3px solid rgba(113, 196, 239, 0.72);
  outline-offset: 4px;
}

.story-feed {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 32px);
  align-items: start;
}

.story-message {
  --story-accent: #ea5b13;
  --story-accent-soft: rgba(234, 91, 19, 0.13);
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: end;
  gap: 13px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  transition: transform 240ms var(--ease);
}

.story-message--berry {
  --story-accent: #ec194c;
  --story-accent-soft: rgba(236, 25, 76, 0.13);
}

.story-message--cyan {
  --story-accent: #37bfcd;
  --story-accent-soft: rgba(55, 191, 205, 0.13);
}

.story-message--blue {
  --story-accent: #4f83d1;
  --story-accent-soft: rgba(79, 131, 209, 0.13);
}

.story-message:nth-child(2) {
  margin-top: 46px;
}

.story-message:nth-child(3) {
  margin-top: 16px;
}

.story-message__avatar {
  position: relative;
  width: 76px;
  height: 76px;
  display: block;
  margin-bottom: 10px;
  border: 3px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background: #dce8f2;
  box-shadow: 0 14px 32px rgba(0, 7, 24, 0.32);
}

.story-message__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.story-message__avatar > i {
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 17px;
  height: 17px;
  border: 3px solid #061a43;
  border-radius: 50%;
  background: #45c788;
}

.story-message__bubble {
  position: relative;
  min-height: 296px;
  display: flex;
  flex-direction: column;
  padding: 23px 22px 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 28px 28px 28px 9px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(237, 245, 251, 0.94));
  box-shadow: 0 24px 64px rgba(0, 7, 28, 0.28);
  transition:
    box-shadow 240ms var(--ease),
    border-color 240ms var(--ease);
}

.story-message__bubble::before {
  position: absolute;
  bottom: -1px;
  left: -12px;
  width: 20px;
  height: 24px;
  background: linear-gradient(135deg, transparent 48%, #edf5fa 50%);
  content: "";
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.story-message__bubble::after {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--story-accent);
  box-shadow: 0 0 0 6px var(--story-accent-soft);
  content: "";
}

.story-message__meta,
.story-message__quote,
.story-message__tags,
.story-message__time {
  display: flex;
}

.story-message__meta {
  min-width: 0;
  flex-direction: column;
  padding-right: 24px;
}

.story-message__meta strong {
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.025em;
}

.story-message__meta small {
  margin-top: 2px;
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 750;
}

.story-message__quote {
  margin-top: 19px;
  color: #263955;
  font-size: 14px;
  line-height: 1.62;
}

.story-message__tags {
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}

.story-message__tags i {
  padding: 6px 9px;
  border: 1px solid rgba(18, 58, 122, 0.1);
  border-radius: 999px;
  background: rgba(18, 58, 122, 0.055);
  color: #526681;
  font-size: 10px;
  font-style: normal;
  font-weight: 750;
}

.story-message__time {
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 20px;
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 800;
}

.story-message__time img {
  width: 15px;
  height: 15px;
}

.story-disclaimer {
  max-width: 900px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 60px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  text-align: center;
}

.story-disclaimer img {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  filter: brightness(0) invert(1);
  opacity: 0.62;
}

/* Expanded story */

.story-dialog {
  width: min(920px, calc(100% - 30px));
}

.story-dialog .dialog__header {
  position: sticky;
  z-index: 12;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.story-dialog .dialog__body {
  display: grid;
  gap: 24px;
}

.story-dialog__profile {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(135deg, #eef6fb, #f8fbfd);
}

.story-dialog__profile > img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(5, 35, 78, 0.14);
}

.story-dialog__profile > div {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.story-dialog__profile strong {
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.025em;
}

.story-dialog__profile > div > span {
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 750;
}

.story-dialog__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 7px;
}

.story-dialog__tags span {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(0, 112, 179, 0.09);
  color: var(--v8-brand-deep);
  font-size: 10px;
  font-weight: 800;
}

.story-dialog__quote {
  position: relative;
  margin: 0;
  padding: 22px 24px;
  border-left: 4px solid var(--v8-brand-sky);
  border-radius: 8px 22px 22px 8px;
  background: var(--navy-950);
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -0.025em;
  line-height: 1.34;
}

.story-dialog__lead {
  margin: 0;
  color: #41536e;
  font-size: 16px;
  line-height: 1.7;
}

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

.story-dialog__gallery figure {
  min-width: 0;
  height: 190px;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--ice-100);
}

.story-dialog__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-dialog__steps-title {
  margin: 5px 0 -12px;
  color: var(--navy-950);
  font-size: 20px;
  letter-spacing: -0.025em;
}

.story-dialog__notice {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  padding: 13px 15px;
  border-radius: 14px;
  background: #f1f6fa;
  color: var(--muted);
  font-size: 11px;
}

.story-dialog__notice img {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

/* Student photography wrapper */

.students-panel__media > picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.students-panel__media > picture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(0.92) contrast(1.03);
  transition: transform 850ms var(--ease);
}

/* Application helpers */

.birthdate-input {
  display: grid;
  grid-template-columns: minmax(58px, 0.78fr) auto minmax(58px, 0.78fr) auto minmax(96px, 1.34fr);
  align-items: center;
  gap: 7px;
  padding: 0;
}

.birthdate-input > input[type="text"] {
  min-width: 0;
  padding-inline: 8px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.birthdate-input > input[type="text"]::placeholder {
  color: #8d9bb0;
  opacity: 1;
}

.birthdate-input > span {
  color: #98a7bb;
  font-size: 18px;
  font-weight: 500;
}

.field.is-invalid .birthdate-input > input[type="text"] {
  border-color: var(--danger);
}

.applicant-type {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.applicant-type > legend {
  margin: 0 0 9px;
  padding: 0;
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 800;
}

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

.applicant-type__options label {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.applicant-type__options input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.applicant-type__options label > span {
  min-height: 112px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 13px;
  padding: 17px;
  border: 1px solid rgba(30, 70, 130, 0.17);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(6, 31, 72, 0.04);
  transition:
    border-color 190ms var(--ease),
    box-shadow 190ms var(--ease),
    transform 190ms var(--ease),
    background-color 190ms var(--ease);
}

.applicant-type__options label > span > img {
  grid-row: 1 / 3;
  width: 46px;
  height: 46px;
  padding: 11px;
  border-radius: 15px;
  background: var(--ice-100);
}

.applicant-type__options strong,
.applicant-type__options small {
  min-width: 0;
  display: block;
}

.applicant-type__options strong {
  align-self: end;
  color: var(--navy-950);
  font-size: 14px;
}

.applicant-type__options small {
  align-self: start;
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.4;
}

.applicant-type__options input:checked + span {
  border-color: rgba(0, 112, 179, 0.48);
  background: linear-gradient(135deg, rgba(113, 196, 239, 0.12), rgba(255, 255, 255, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(0, 112, 179, 0.1),
    0 14px 32px rgba(0, 88, 141, 0.1);
}

.applicant-type__options input:checked + span > img {
  background: rgba(0, 112, 179, 0.12);
}

.applicant-type__options input:focus-visible + span {
  outline: 3px solid rgba(0, 112, 179, 0.35);
  outline-offset: 3px;
}

.region-combobox {
  position: relative;
  min-width: 0;
}

.region-combobox > input {
  padding-right: 48px;
}

.region-combobox > img {
  position: absolute;
  z-index: 1;
  top: 17px;
  right: 16px;
  width: 20px;
  height: 20px;
  opacity: 0.62;
  pointer-events: none;
}

.region-combobox__options {
  position: absolute;
  z-index: 120;
  top: calc(100% + 7px);
  right: 0;
  left: 0;
  max-height: 276px;
  margin: 0;
  padding: 7px;
  overflow-y: auto;
  border: 1px solid rgba(20, 58, 116, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 52px rgba(3, 25, 67, 0.2);
  list-style: none;
  overscroll-behavior: contain;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.region-combobox__option,
.region-combobox__empty {
  padding: 10px 12px;
  border-radius: 10px;
  color: #243a5b;
  font-size: 12px;
  line-height: 1.35;
}

.region-combobox__option {
  cursor: pointer;
}

.region-combobox__option.is-active,
.region-combobox__option[aria-selected="true"] {
  background: rgba(0, 112, 179, 0.1);
  color: var(--v8-brand-deep);
  font-weight: 750;
}

.region-combobox__empty {
  color: var(--muted);
}

.student-fields {
  min-width: 0;
  margin-top: 2px;
  padding: 19px;
  border: 1px solid rgba(0, 112, 179, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(113, 196, 239, 0.105), rgba(255, 255, 255, 0.78));
}

.student-fields:not([hidden]) {
  display: grid;
  gap: 18px;
}

.student-fields__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.student-fields__head > span {
  width: 44px;
  height: 44px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  background: var(--v8-brand-deep);
  box-shadow: 0 10px 24px rgba(0, 88, 141, 0.16);
}

.student-fields__head img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.student-fields__head > div {
  display: grid;
}

.student-fields__head strong {
  color: var(--navy-950);
  font-size: 14px;
}

.student-fields__head small {
  color: var(--muted);
  font-size: 10px;
}

.student-fields > .form-grid {
  gap: 14px;
}

/* Branded resume builder */

.resume-dialog {
  width: min(1240px, calc(100% - 30px));
  max-height: min(940px, calc(100vh - 24px));
  border-radius: 30px;
}

.resume-dialog .dialog__header {
  position: sticky;
  z-index: 12;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.resume-builder {
  grid-template-columns: minmax(360px, 0.78fr) minmax(500px, 1.22fr);
  gap: 22px;
  padding: 24px 28px 30px;
  background:
    radial-gradient(circle at 100% 0, rgba(113, 196, 239, 0.12), transparent 24%),
    #edf4f8;
}

.resume-builder__form {
  gap: 14px;
}

.resume-builder__section {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(20, 58, 116, 0.11);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(4, 29, 68, 0.055);
}

.resume-builder__section-head {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.resume-builder__section-head > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.resume-builder__section-head > div > span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--v8-brand-deep);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.resume-builder__section-head strong {
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: -0.02em;
}

.resume-add-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(0, 112, 179, 0.2);
  border-radius: 999px;
  background: rgba(113, 196, 239, 0.1);
  color: var(--v8-brand-deep);
  font-size: 11px;
  font-weight: 800;
  transition:
    background-color 180ms var(--ease),
    border-color 180ms var(--ease),
    transform 180ms var(--ease);
}

.resume-add-button > span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--v8-brand-deep);
  color: var(--white);
  font-size: 16px;
  line-height: 1;
}

.resume-add-button:focus-visible,
.resume-repeat-item__remove:focus-visible {
  outline: 3px solid rgba(0, 112, 179, 0.3);
  outline-offset: 3px;
}

.resume-repeat-list {
  display: grid;
  gap: 11px;
}

.resume-repeat-item {
  position: relative;
  min-width: 0;
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 15px;
  border: 1px solid rgba(20, 58, 116, 0.11);
  border-radius: 17px;
  background: #f8fbfd;
}

.resume-repeat-item > legend {
  max-width: calc(100% - 72px);
  padding: 0 4px;
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 800;
}

.resume-repeat-item__remove {
  position: absolute;
  z-index: 1;
  top: 10px;
  right: 10px;
  min-height: 32px;
  padding: 6px 9px;
  border: 0;
  border-radius: 9px;
  background: rgba(180, 35, 24, 0.07);
  color: var(--danger);
  font-size: 9px;
  font-weight: 800;
}

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

.resume-builder__form .field {
  gap: 5px;
}

.resume-builder__form .field label {
  font-size: 10px;
}

.resume-builder__form .field input,
.resume-builder__form .field textarea {
  min-height: 46px;
  padding: 11px 12px;
  border-radius: 11px;
  font-size: 13px;
}

.resume-builder__form .field textarea {
  min-height: 82px;
}

.resume-preview {
  position: relative;
  aspect-ratio: auto;
  height: max-content;
  min-height: clamp(760px, 64vw, 920px);
  align-self: start;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(34px, 4vw, 58px);
  border: 1px solid rgba(0, 88, 141, 0.1);
  border-radius: 3px;
  background:
    linear-gradient(90deg, var(--v8-brand-blue) 0 8px, transparent 8px),
    var(--white);
  box-shadow: 0 30px 70px rgba(4, 29, 68, 0.18);
}

.resume-preview::before {
  position: absolute;
  right: -5%;
  bottom: 18%;
  color: rgba(0, 112, 179, 0.035);
  content: "КУРС НА СЕВЕР";
  font-family: var(--font-display);
  font-size: clamp(54px, 7vw, 92px);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.78;
  transform: rotate(-90deg);
  transform-origin: bottom right;
  pointer-events: none;
}

.resume-preview__brand {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(0, 88, 141, 0.14);
}

.resume-preview__brand img {
  width: 132px;
  height: auto;
  object-fit: contain;
}

.resume-preview__brand span {
  color: var(--v8-brand-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.resume-preview__identity {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: clamp(28px, 3.5vw, 48px);
}

.resume-preview__identity h3 {
  max-width: 90%;
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.052em;
  line-height: 0.98;
}

.resume-preview__identity strong {
  margin-top: 10px;
  color: var(--v8-brand-blue);
  font-size: 17px;
}

.resume-preview__identity > span {
  margin-top: 8px;
  color: #687a91;
  font-size: 11px;
}

.resume-preview section {
  position: relative;
  z-index: 1;
  margin-top: clamp(24px, 2.5vw, 34px);
  padding-top: 15px;
  border-top: 1px solid rgba(0, 88, 141, 0.12);
}

.resume-preview h4 {
  margin: 0 0 10px;
  color: var(--v8-brand-deep);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.resume-preview section p {
  color: #52647d;
  font-size: 11px;
  line-height: 1.55;
}

.resume-preview__entries {
  display: grid;
  gap: 12px;
}

.resume-preview__entries article {
  display: grid;
  gap: 4px;
}

.resume-preview__entries article > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.resume-preview__entries article strong {
  color: var(--navy-950);
  font-size: 12px;
}

.resume-preview__entries article span {
  flex: 0 0 auto;
  color: var(--v8-brand-blue);
  font-size: 9px;
  font-weight: 800;
}

.resume-preview__entries article p {
  margin: 0;
}

.resume-preview__footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 88, 141, 0.13);
  color: var(--v8-brand-deep);
  font-size: 9px;
}

.resume-preview__footer strong {
  font-weight: 800;
}

.resume-dialog .dialog__footer {
  position: sticky;
  z-index: 12;
  bottom: 0;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.resume-dialog__status {
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.resume-dialog__status.is-success {
  color: var(--success);
}

.resume-dialog__status.is-error {
  color: var(--danger);
}

@media (hover: hover) {
  .story-filter:hover {
    border-color: rgba(113, 196, 239, 0.42);
    color: var(--white);
    transform: translateY(-1px);
  }

  .story-message:hover {
    transform: translateY(-5px);
  }

  .story-message:hover .story-message__bubble {
    border-color: rgba(255, 255, 255, 0.78);
    box-shadow: 0 32px 74px rgba(0, 7, 28, 0.38);
  }

  .students-panel:hover .students-panel__media > picture > img {
    transform: scale(1.025);
  }

  .applicant-type__options label:hover > span {
    border-color: rgba(0, 112, 179, 0.34);
    transform: translateY(-2px);
  }

  .region-combobox__option:hover {
    background: rgba(0, 112, 179, 0.075);
    color: var(--v8-brand-deep);
  }

  .resume-add-button:hover {
    border-color: rgba(0, 112, 179, 0.36);
    background: rgba(113, 196, 239, 0.18);
    transform: translateY(-1px);
  }

  .resume-repeat-item__remove:hover {
    background: rgba(180, 35, 24, 0.12);
  }
}

@media (max-width: 1180px) {
  .transport-showcase {
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    min-height: 620px;
  }

  .transport-showcase__copy {
    padding-right: 24px;
  }

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

  .story-message:nth-child(2),
  .story-message:nth-child(3) {
    margin-top: 0;
  }

  .story-message:nth-child(3) {
    grid-column: 1 / -1;
    width: calc(50% - 16px);
    justify-self: center;
  }

  .resume-builder {
    grid-template-columns: minmax(330px, 0.88fr) minmax(470px, 1.12fr);
  }
}

@media (max-width: 960px) {
  .transport-showcase {
    grid-template-columns: 1fr;
  }

  .transport-showcase__copy {
    padding-bottom: 26px;
  }

  .transport-showcase__copy > p:not(.eyebrow):not(.transport-showcase__note) {
    max-width: 660px;
  }

  .transport-showcase__facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .transport-showcase__facts li {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .transport-showcase__facts li > img {
    width: 38px;
    height: 38px;
    padding: 9px;
  }

  .transport-showcase__visual {
    padding: 0 24px 24px;
  }

  .transport-showcase__visual figcaption {
    margin-right: 0;
  }

  .resume-builder {
    grid-template-columns: 1fr;
  }

  .resume-builder__form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .resume-builder__section:first-child {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resume-builder__section:first-child .resume-builder__section-head {
    grid-column: 1 / -1;
  }

  .resume-preview {
    width: min(720px, 100%);
    justify-self: center;
  }
}

@media (max-width: 680px) {
  .transport-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .transport-showcase {
    min-height: 0;
    border-radius: 30px;
  }

  .transport-showcase__copy {
    padding: 34px 24px 24px;
  }

  .transport-showcase__copy h2 {
    font-size: clamp(46px, 14vw, 66px);
  }

  .transport-showcase__copy > p:not(.eyebrow):not(.transport-showcase__note) {
    margin-top: 22px;
    font-size: 15px;
  }

  .transport-showcase__facts {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .transport-showcase__facts li {
    min-height: 62px;
  }

  .transport-showcase__visual {
    padding: 0 10px 10px;
  }

  .transport-showcase__visual picture {
    border-radius: 22px;
  }

  .transport-showcase__visual img {
    aspect-ratio: 980 / 941;
  }

  .transport-showcase__visual figcaption {
    max-width: 100%;
    padding: 8px 11px;
    white-space: normal;
  }

  .transport-showcase__visual figcaption a {
    font-size: 9px;
  }

  .stories-section--v8 .section-heading {
    margin-bottom: 26px;
  }

  .story-filters {
    margin-right: -12px;
    margin-bottom: 26px;
    padding-right: 12px;
    scroll-snap-type: x proximity;
  }

  .story-filter {
    scroll-snap-align: start;
  }

  .story-feed {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .story-message,
  .story-message:nth-child(3) {
    width: 100%;
    grid-column: auto;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 9px;
  }

  .story-message__avatar {
    width: 58px;
    height: 58px;
    margin-bottom: 8px;
    border-width: 2px;
  }

  .story-message__avatar > i {
    width: 14px;
    height: 14px;
    border-width: 2px;
  }

  .story-message__bubble {
    min-height: 0;
    padding: 20px 18px 16px;
    border-radius: 23px 23px 23px 8px;
  }

  .story-message__quote {
    font-size: 13px;
  }

  .story-disclaimer {
    margin-top: 36px;
    text-align: left;
  }

  .story-dialog {
    width: calc(100% - 16px);
  }

  .story-dialog__profile {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 13px;
    padding: 13px;
    border-radius: 19px;
  }

  .story-dialog__profile > img {
    width: 68px;
    height: 68px;
  }

  .story-dialog__profile strong {
    font-size: 18px;
  }

  .story-dialog__quote {
    padding: 19px;
    font-size: 19px;
  }

  .story-dialog__gallery {
    display: flex;
    margin-right: -20px;
    padding-right: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .story-dialog__gallery figure {
    min-width: min(76vw, 300px);
    height: 185px;
    scroll-snap-align: start;
  }

  .students-panel__media > picture > img {
    object-position: 50% center;
  }

  .birthdate-input {
    grid-template-columns: minmax(52px, 0.76fr) auto minmax(52px, 0.76fr) auto minmax(88px, 1.38fr);
    gap: 5px;
  }

  .birthdate-input > input[type="text"] {
    padding-inline: 5px;
  }

  .applicant-type__options {
    grid-template-columns: 1fr;
  }

  .applicant-type__options label > span {
    min-height: 96px;
  }

  .region-combobox__options {
    max-height: 232px;
  }

  .student-fields {
    margin-inline: -4px;
    padding: 15px;
    border-radius: 18px;
  }

  .student-fields > .form-grid {
    grid-template-columns: 1fr;
  }

  .resume-dialog {
    width: calc(100% - 12px);
    max-height: calc(100vh - 12px);
    border-radius: 22px;
  }

  .resume-builder {
    padding: 16px;
  }

  .resume-builder__form,
  .resume-builder__section:first-child {
    grid-template-columns: 1fr;
  }

  .resume-builder__form .field input,
  .resume-builder__form .field textarea {
    font-size: 16px;
  }

  .resume-builder__section {
    padding: 15px;
    border-radius: 18px;
  }

  .resume-builder__section-head {
    align-items: flex-start;
  }

  .resume-add-button {
    flex: 0 0 auto;
  }

  .resume-repeat-item__years {
    grid-template-columns: 1fr;
  }

  .resume-preview {
    width: 100%;
    min-height: 760px;
    padding: 26px 22px 24px 28px;
  }

  .resume-preview::before {
    display: none;
  }

  .resume-preview__brand img {
    width: 100px;
  }

  .resume-preview__brand span {
    font-size: 8px;
  }

  .resume-preview__identity h3 {
    max-width: 100%;
    font-size: 32px;
  }

  .resume-preview section {
    margin-top: 20px;
  }

  .resume-preview__entries article > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .resume-dialog .dialog__footer {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 420px) {
  .story-message {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .story-message__avatar {
    width: 48px;
    height: 48px;
  }

  .story-message__bubble {
    padding-right: 15px;
    padding-left: 15px;
  }

  .birthdate-input {
    gap: 3px;
  }

  .birthdate-input > input[type="text"] {
    min-height: 48px;
    font-size: 16px;
  }

  .resume-builder__section-head {
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .resume-builder__form .field input,
  .resume-builder__form .field textarea,
  .birthdate-input > input[type="text"] {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-filter,
  .story-message,
  .story-message__bubble,
  .students-panel__media > picture > img,
  .applicant-type__options label > span,
  .resume-add-button {
    transition: none;
  }
}

@media print {
  #resume-dialog[open] .resume-preview {
    width: 210mm;
    min-height: 297mm;
    aspect-ratio: auto;
    padding: 18mm 16mm 16mm 18mm;
    border: 0;
    background:
      linear-gradient(90deg, var(--v8-brand-blue) 0 3mm, transparent 3mm),
      var(--white);
    box-shadow: none;
  }
}

/* source: human-ui-v9.css */
/*
 * Human UI v9
 * A restrained final layer: fewer pills, fewer decorative circles, clearer
 * hierarchy and motion that explains state instead of advertising itself.
 */

:root {
  --human-radius-control: 11px;
  --human-radius-card: 18px;
  --human-radius-feature: 26px;
  --human-line-light: rgba(17, 57, 115, 0.14);
  --human-line-dark: rgba(197, 226, 247, 0.17);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Controls: shape follows purpose. Pills remain only for compact metadata. */

.button {
  min-height: 52px;
  padding: 14px 22px;
  border-radius: var(--human-radius-control);
  box-shadow: none;
  transition:
    color 180ms var(--ease),
    background-color 180ms var(--ease),
    border-color 180ms var(--ease),
    box-shadow 180ms var(--ease);
}

.button:hover,
.button:active {
  transform: none;
}

.button--primary {
  background: #123a7a;
  box-shadow: 0 10px 24px rgba(8, 39, 96, 0.16);
}

.button--primary:hover {
  background: #0b2d67;
  box-shadow: 0 12px 28px rgba(8, 39, 96, 0.2);
}

.button--secondary {
  border-color: rgba(14, 54, 113, 0.3);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.button--secondary:hover {
  border-color: #123a7a;
  background: #ffffff;
}

.button--light {
  box-shadow: none;
}

.button__icon {
  transition: transform 180ms var(--ease);
}

.button:hover .button__icon {
  transform: translateX(3px);
}

.button__icon--leading,
.button:hover .button__icon--leading {
  transform: none;
}

.menu-button,
.icon-button,
.route-card__arrow,
.vacancy-card__object-action,
.city-panel__icon,
.support-tab__arrow,
.resume-add-button,
.hero-scene__motion-toggle {
  border-radius: var(--human-radius-control) !important;
}

.filter-row {
  border-radius: 14px !important;
}

.step-card__icon,
.vacancy-card__icon,
.process-rail li > img,
.resume-add-button > span,
.story-dialog__steps li::before {
  border-radius: 10px !important;
}

.hero-scene__trust span {
  border-radius: 8px !important;
}

.menu-button,
.icon-button {
  box-shadow: none !important;
}

.route-card__arrow,
.vacancy-card__object-action {
  border-color: rgba(255, 255, 255, 0.5) !important;
  background: rgba(3, 17, 49, 0.5) !important;
  box-shadow: none !important;
}

.route-card:hover .route-card__arrow,
.vacancy-card__object-action:hover {
  background: rgba(3, 17, 49, 0.78) !important;
  transform: none !important;
}

.filter-chip,
.vacancy-card__badge,
.students-panel__tag,
.story-message__tags i,
.story-dialog__tags span,
.sector-tag,
.support-detail__eyebrow {
  border-radius: 6px !important;
}

/* Transport: the supplied image is the visual, the UI stays quiet around it. */

.transport-section {
  padding: clamp(66px, 8vw, 112px) 0;
}

.transport-showcase {
  min-height: 0;
  grid-template-columns: minmax(270px, 0.56fr) minmax(0, 1.44fr);
  gap: clamp(26px, 3.2vw, 48px);
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid rgba(166, 207, 241, 0.14);
  border-radius: var(--human-radius-feature);
  background: #061430;
  box-shadow: 0 28px 72px rgba(2, 15, 43, 0.18);
}

.transport-showcase::before,
.transport-showcase::after {
  display: none;
}

.transport-showcase__copy {
  padding: clamp(8px, 1vw, 16px) 0;
}

.transport-showcase__copy h2 {
  font-size: clamp(48px, 4vw, 60px);
}

.transport-showcase__facts {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
}

.transport-showcase__facts div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  padding: 15px 0;
  border-top: 1px solid var(--human-line-dark);
}

.transport-showcase__facts dt,
.transport-showcase__facts dd {
  margin: 0;
}

.transport-showcase__facts dt {
  color: #ffffff;
  font-weight: 750;
}

.transport-showcase__facts dd {
  color: rgba(221, 236, 251, 0.64);
  font-size: 13px;
  line-height: 1.5;
}

.transport-showcase__note {
  margin-top: 22px;
  color: rgba(221, 236, 251, 0.48);
}

.transport-showcase__visual {
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.transport-showcase__visual picture {
  aspect-ratio: 3 / 2;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(177, 213, 240, 0.16);
  border-radius: var(--human-radius-card);
  background: #020817;
}

.transport-showcase__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.transport-showcase__visual figcaption {
  position: static;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-top: 12px;
  padding: 0 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(222, 237, 250, 0.54);
  box-shadow: none;
  font-size: 10px;
}

.transport-showcase__visual figcaption strong {
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 700;
}

/* Stories: stable slots, deliberate filter tabs and quiet motion control. */

.story-controls {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.story-filters {
  min-width: 0;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.story-filter {
  min-height: 42px;
  padding: 8px 0 12px;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  box-shadow: none;
}

.story-filter.is-active,
.story-filter[aria-pressed="true"] {
  border-color: #72dce7;
  background: transparent;
  color: #ffffff;
  box-shadow: none;
}

.story-filter:hover {
  color: #ffffff;
  transform: none;
}

.story-rotation-toggle {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  padding: 8px 0 12px 18px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  font-weight: 720;
}

.story-rotation-toggle:hover {
  color: #ffffff;
}

.story-rotation-toggle:disabled {
  cursor: default;
  opacity: 0.55;
}

.story-rotation-toggle__mark {
  width: 8px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.story-rotation-toggle[aria-pressed="true"] .story-rotation-toggle__mark {
  width: 0;
  height: 0;
  border: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
}

.story-feed {
  align-items: stretch;
}

.story-slot {
  min-width: 0;
  min-height: 344px;
  display: grid;
}

.story-slot:nth-child(2) {
  margin-top: 38px;
}

.story-slot:nth-child(3) {
  margin-top: 14px;
}

.story-slot > .story-message {
  grid-area: 1 / 1;
  height: 100%;
}

.story-message {
  transition: none;
}

.story-message__bubble {
  height: 100%;
  min-height: 304px;
  border-radius: 18px 18px 18px 5px;
  box-shadow: 0 18px 46px rgba(0, 7, 28, 0.21);
}

.story-message__bubble::after {
  width: 20px;
  height: 2px;
  border-radius: 0;
  box-shadow: none;
}

.story-message__tags i {
  padding: 5px 8px;
}

.story-message--entering,
.story-message--leaving {
  pointer-events: none;
  will-change: opacity, transform;
}

.story-message--entering {
  z-index: 2;
  opacity: 0;
  transform: translateY(14px) scale(0.986);
}

.story-message--entering.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.story-message--entering .story-message__avatar,
.story-message--entering .story-message__bubble {
  opacity: 0;
  transform: translateY(8px);
}

.story-message--entering.is-active .story-message__avatar,
.story-message--entering.is-active .story-message__bubble {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.story-message--entering.is-active .story-message__bubble {
  transition-delay: 70ms;
}

.story-message--leaving {
  z-index: 1;
  opacity: 0;
  transform: translateY(-8px) scale(0.988);
  transition:
    opacity 280ms ease,
    transform 320ms ease;
}

/* Footer: one plane, three concise groups, no decorative hero treatment. */

.site-footer {
  min-height: 0;
  margin: 0;
  padding: 36px 0 20px;
  overflow: hidden;
  border-radius: 0;
  background: #030b1e;
  box-shadow: none;
  color: rgba(222, 237, 255, 0.62);
}

.site-footer::before {
  z-index: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(121, 216, 228, 0.5), transparent);
  opacity: 0.7;
}

.site-footer::after,
.site-footer__brand::after {
  display: none;
}

.site-footer__top {
  grid-template-columns: minmax(280px, 1.2fr) minmax(220px, 0.9fr) auto;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding-bottom: 28px;
}

.site-footer__brand {
  min-height: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-footer__brand > img {
  width: min(252px, 100%);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.site-footer__brand p {
  max-width: 330px;
  margin: 14px 0 0;
  color: rgba(235, 244, 255, 0.7);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.45;
}

.site-footer__contact {
  display: grid;
  gap: 7px;
  padding: 0;
  font-style: normal;
}

.site-footer__contact a,
.site-footer__contact span,
.site-footer__social a {
  width: auto;
  margin: 0;
  color: rgba(222, 237, 255, 0.66);
  font-size: 13px;
  line-height: 1.45;
}

.site-footer__contact a:first-child {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 650;
}

.site-footer__contact span {
  margin-top: 4px;
  color: rgba(222, 237, 255, 0.4);
  font-size: 11px;
}

.site-footer__social {
  display: grid;
  justify-items: start;
  gap: 9px;
}

.site-footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 0 3px;
  border: 0;
  border-bottom: 1px solid rgba(222, 237, 255, 0.18);
  border-radius: 0;
  background: transparent;
  font-weight: 650;
}

.site-footer__social a:hover {
  border-color: rgba(118, 221, 233, 0.7);
  background: transparent;
  transform: none;
}

.site-footer__bottom {
  padding-top: 17px;
  border-top-color: rgba(198, 226, 247, 0.1);
}

.site-footer__bottom,
.site-footer__bottom a {
  color: rgba(222, 237, 255, 0.38);
  font-size: 10px;
}

@media (max-width: 1180px) {
  .story-slot:nth-child(2),
  .story-slot:nth-child(3) {
    margin-top: 0;
  }

  .story-slot:nth-child(3) {
    grid-column: 1 / -1;
    width: calc(50% - 16px);
    justify-self: center;
  }
}

@media (max-width: 960px) {
  .transport-showcase {
    grid-template-columns: 1fr;
  }

  .transport-showcase__copy {
    padding: 0;
  }

  .story-controls {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .story-rotation-toggle {
    align-self: flex-end;
    border-left: 0;
  }

  .story-slot,
  .story-slot:nth-child(3) {
    width: 100%;
    min-height: 300px;
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .button {
    min-height: 50px;
    padding: 13px 18px;
  }

  .transport-section {
    padding: 58px 0;
  }

  .transport-section .container {
    width: min(100%, calc(100% - 24px));
  }

  .transport-showcase {
    gap: 22px;
    padding: 20px 12px 14px;
    border-radius: 20px;
  }

  .transport-showcase__copy {
    padding: 0 8px;
  }

  .transport-showcase__copy h2 {
    font-size: clamp(42px, 15vw, 58px);
  }

  .transport-showcase__facts div {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 10px;
  }

  .transport-showcase__visual picture {
    border-radius: 12px;
  }

  .transport-showcase__visual figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    padding: 0 4px 2px;
  }

  .story-filters {
    gap: 20px;
  }

  .story-filter {
    min-height: 40px;
    font-size: 12px;
  }

  .story-message__bubble {
    min-height: 0;
    border-radius: 16px 16px 16px 4px;
  }

  .site-footer {
    padding: 28px 0 18px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 24px;
  }

  .site-footer__brand {
    margin: 0;
    padding: 0;
  }

  .site-footer__brand > img {
    width: min(224px, 76vw);
    padding: 0;
  }

  .site-footer__brand p {
    max-width: 280px;
    margin-top: 12px;
    font-size: 12px;
  }

  .site-footer__contact,
  .site-footer__social {
    padding: 0;
    border: 0;
  }

  .site-footer__bottom {
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-message--entering,
  .story-message--entering.is-active,
  .story-message--leaving,
  .story-message--entering .story-message__avatar,
  .story-message--entering .story-message__bubble,
  .story-message--entering.is-active .story-message__avatar,
  .story-message--entering.is-active .story-message__bubble {
    transition: none !important;
  }
}

/* source: editorial-v10.css */
/*
 * Editorial v10 — a quieter northern magazine direction.
 * Loaded last: it deliberately removes audit controls, oversized radii and
 * repetitive card treatment without changing the underlying content flows.
 */

:root {
  --editorial-ink: #071b43;
  --editorial-muted: #49617c;
  --editorial-paper: #f4f6f4;
  --editorial-warm: #f5f1e9;
  --editorial-line: rgba(8, 35, 75, 0.16);
  --editorial-radius-control: 4px;
  --editorial-radius-card: 8px;
  --editorial-radius-feature: 12px;
}

body {
  color: var(--editorial-ink);
  font-weight: 440;
  letter-spacing: -0.008em;
}

p {
  line-height: 1.68;
}

h1,
h2,
h3 {
  font-weight: 650;
  letter-spacing: -0.065em;
}

.section-heading > p,
.hero-scene__copy,
.about-copy > p,
.students-panel__content > p,
.application-intro > p {
  color: var(--editorial-muted);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.65;
}

.button,
.menu-button,
.icon-button,
.filter-row,
.filter-chip,
.story-filter,
.support-tab,
.resume-add-button,
.form-progress__step,
.file-input label,
.applicant-type__options label > span {
  border-radius: var(--editorial-radius-control) !important;
}

.step-card,
.vacancy-card,
.support-layout,
.support-detail,
.students-panel,
.about-mosaic__large,
.resources__grid a,
.transport-showcase,
.transport-showcase__visual picture,
.application-shell,
.application-form,
.kola-map-shell,
.region-map,
.city-panel,
.dialog,
.resume-preview,
.resume-repeat-item {
  border-radius: var(--editorial-radius-feature) !important;
}

.field input,
.field select,
.field textarea,
.birthdate-input,
.region-combobox__options,
.file-input,
.form-feedback,
.consent {
  border-radius: var(--editorial-radius-control) !important;
}

.button {
  min-height: 50px;
  padding: 13px 21px;
  font-weight: 690;
  letter-spacing: -0.015em;
}

.button--primary {
  background: #113b7e;
  box-shadow: 0 12px 26px rgba(7, 38, 90, 0.13);
}

.site-header .button--compact {
  border-radius: 3px !important;
  box-shadow: none;
}

.site-header__inner {
  border-radius: 0 !important;
}

/* Hero: a photographic cover, not a floating app card. */

.hero {
  padding: 0 10px;
}

.hero-scene {
  border-radius: var(--editorial-radius-feature) var(--editorial-radius-feature) 0 0;
  box-shadow: none;
}

.hero-scene__content {
  padding-top: 132px;
  padding-bottom: 78px;
}

.hero-scene h1 {
  max-width: 640px;
  font-weight: 660;
  letter-spacing: -0.083em;
}

.hero-scene__lead {
  margin-top: 34px;
  font-weight: 540;
  letter-spacing: -0.035em;
}

.hero-scene__copy {
  max-width: 410px;
  margin-top: 10px;
}

.hero-scene__trust span,
.vacancy-card__badge,
.students-panel__tag,
.story-message__tags i,
.story-dialog__tags span,
.sector-tag,
.support-detail__eyebrow,
.route-card__meta {
  border-radius: 3px !important;
}

.hero-scene__motion-toggle {
  display: none !important;
}

/* Routes: a light editorial window with a real northern botanical layer. */

.route-showcase--editorial {
  position: relative;
  min-height: 980px;
  padding: clamp(104px, 10vw, 152px) 0;
  overflow: hidden;
  background: #edf2f3;
  color: var(--editorial-ink);
  isolation: isolate;
}

.route-showcase--editorial::before {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(246, 248, 247, 0.98) 0%, rgba(246, 248, 247, 0.9) 44%, rgba(246, 248, 247, 0.42) 72%, rgba(246, 248, 247, 0.12) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(218, 228, 230, 0.15));
}

.route-showcase__botanical {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.route-showcase__botanical picture {
  display: block;
  width: 100%;
  height: 100%;
}

.route-showcase__botanical img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(0.96);
}

.route-showcase--editorial .route-showcase__heading {
  align-items: end;
  margin-bottom: clamp(54px, 7vw, 92px);
}

.route-showcase--editorial .eyebrow {
  color: #466276;
}

.route-showcase--editorial h2 {
  max-width: 760px;
  color: var(--editorial-ink);
  font-size: clamp(68px, 8vw, 122px);
  font-weight: 560;
  letter-spacing: -0.082em;
  line-height: 0.83;
}

.route-showcase--editorial .section-heading > p {
  align-self: end;
  max-width: 250px;
  margin-bottom: 6px;
  color: #203a57;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.48;
}

.route-cards--editorial {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 214px;
  gap: 14px;
}

.route-cards--editorial .route-card {
  position: relative;
  grid-column: span 5;
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--editorial-radius-card);
  background: #0a1833;
  color: #fff;
  box-shadow: 0 22px 60px rgba(5, 31, 62, 0.16);
  text-align: left;
  cursor: pointer;
}

.route-cards--editorial .route-card:first-child {
  grid-column: span 7;
  grid-row: span 2;
}

.route-cards--editorial .route-card::after {
  display: none;
}

.route-cards--editorial .route-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 900ms cubic-bezier(0.2, 0.74, 0.22, 1), filter 400ms ease;
}

.route-cards--editorial .route-card:hover > img,
.route-cards--editorial .route-card:focus-visible > img {
  filter: saturate(1) contrast(1.03);
  transform: scale(1.035);
}

.route-cards--editorial .route-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 14, 34, 0.04) 16%, rgba(3, 14, 34, 0.84) 100%);
}

.route-cards--editorial .route-card__meta {
  position: absolute;
  top: 22px;
  left: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.route-cards--editorial .route-card strong {
  position: absolute;
  right: 24px;
  bottom: 58px;
  left: 24px;
  color: #fff;
  font-size: clamp(30px, 3.4vw, 52px);
  font-weight: 570;
  line-height: 0.96;
}

.route-cards--editorial .route-card:first-child strong {
  font-size: clamp(52px, 6vw, 88px);
}

.route-card__action {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 650;
}

.route-card__action img {
  width: 15px;
  filter: brightness(0) invert(1);
}

/* Careers: one human documentary system for all six directions. */

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

.vacancy-grid--v6 .vacancy-grid__human,
.vacancy-grid--v6 .vacancy-grid__objects {
  display: contents;
}

.vacancy-grid--v6 .vacancy-card {
  grid-column: span 4;
  min-height: 520px;
  padding: 24px;
  border-radius: var(--editorial-radius-card) !important;
  box-shadow: 0 22px 56px rgba(2, 18, 50, 0.14);
}

.vacancy-grid--v6 .vacancy-card--featured,
.vacancy-grid--v6 .vacancy-card--port {
  grid-column: span 5;
}

.vacancy-grid--v6 .vacancy-card--doctor,
.vacancy-grid--v6 .vacancy-card--energy {
  grid-column: span 4;
}

.vacancy-grid--v6 .vacancy-card--education,
.vacancy-grid--v6 .vacancy-card--analytics {
  grid-column: span 3;
}

.vacancy-grid--v6 .vacancy-card::after {
  inset: 0;
  border-radius: inherit;
}

.vacancy-grid--v6 .vacancy-card__body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.vacancy-grid--v6 .vacancy-card__top {
  position: absolute;
  top: 22px;
  right: 22px;
  left: 22px;
}

.vacancy-grid--v6 .vacancy-card__description {
  margin: 10px 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.vacancy-grid--v6 .vacancy-card__action {
  width: fit-content;
  min-height: 38px;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0 !important;
  background: transparent;
  box-shadow: none;
}

.vacancy-grid--v6 .vacancy-card h3 {
  max-width: 90%;
  margin-top: 8px;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 590;
  line-height: 0.96;
}

.vacancy-grid--v6 .vacancy-card--analytics h3 {
  max-width: 100%;
  font-size: clamp(29px, 2.3vw, 35px);
}

/* Stories: Telegram-like, but composed as a magazine spread. */

.story-controls {
  margin-bottom: 42px;
}

.story-message__bubble {
  border-radius: 8px 8px 8px 2px !important;
  box-shadow: 0 16px 42px rgba(0, 7, 28, 0.16);
}

.story-message__avatar {
  border-radius: 6px !important;
}

.story-message__avatar img {
  border-radius: 6px !important;
}

.story-message__quote {
  font-weight: 480;
  line-height: 1.55;
}

.story-rotation-toggle {
  display: none !important;
}

/* Dialogs and legal controls. */

.route-dialog {
  width: min(1120px, calc(100vw - 36px));
  max-width: 1120px;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  padding: 0;
  overflow: hidden;
}

.route-dialog[open] {
  display: grid;
}

.route-dialog__media {
  min-height: 680px;
  background: #061532;
}

.route-dialog__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-dialog__content {
  display: flex;
  flex-direction: column;
  background: #f4f2ec;
}

.route-dialog__content .dialog__header,
.route-dialog__content .dialog__footer {
  flex: 0 0 auto;
}

.route-dialog__body {
  flex: 1;
  padding: 16px 34px 34px;
}

.route-dialog__body > p {
  color: #3d536c;
  font-size: 18px;
}

.route-dialog__body ul,
.legal-dialog__body ul {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.route-dialog__body li,
.legal-dialog__body li {
  padding: 13px 0;
  border-top: 1px solid var(--editorial-line);
}

.legal-dialog {
  width: min(760px, calc(100vw - 32px));
  max-width: 760px;
}

.legal-dialog__body {
  color: #304863;
}

.legal-dialog__body h3 {
  margin: 28px 0 0;
  color: var(--editorial-ink);
  font-size: 20px;
}

.legal-source-link {
  display: inline-block;
  margin-top: 26px;
  border-bottom: 1px solid currentColor;
  color: #123e81;
  font-weight: 700;
}

.legal-dialog__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.legal-inline-button,
.legal-text-button,
.site-footer__bottom button {
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.legal-inline-button {
  color: #113f81;
  font-weight: 700;
}

.cookie-banner {
  position: fixed;
  z-index: 30;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  max-width: 1180px;
  margin-inline: auto;
  padding: 18px 20px;
  border: 1px solid rgba(8, 35, 75, 0.15);
  border-radius: 8px;
  background: rgba(248, 248, 245, 0.96);
  box-shadow: 0 24px 70px rgba(2, 18, 47, 0.2);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  font-size: 16px;
}

.cookie-banner p {
  max-width: 650px;
  margin: 4px 0 0;
  color: #52677f;
  font-size: 13px;
  line-height: 1.45;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-banner .button {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 12px;
}

/* A light, compact footer where both official marks stay legible. */

.site-footer {
  --footer-line: rgba(7, 27, 67, 0.14);
  --footer-muted: #566980;
  padding: 38px 0 20px;
  border-top: 1px solid rgba(7, 27, 67, 0.13);
  background: #f4f3ee;
  color: var(--footer-muted);
}

.site-footer::before,
.site-footer::after {
  display: none;
}

.site-footer__top {
  padding-bottom: 28px;
}

.site-footer__brand > img {
  width: min(250px, 100%);
  filter: none;
}

.site-footer__brand p,
.site-footer__contact a,
.site-footer__contact span,
.site-footer__social a,
.site-footer__bottom,
.site-footer__bottom a,
.site-footer__bottom button {
  color: #53667c;
}

.site-footer__contact a:first-child {
  color: #071b43;
}

.site-footer__social a {
  border-bottom-color: rgba(7, 27, 67, 0.22);
}

.site-footer__bottom {
  border-top-color: rgba(7, 27, 67, 0.12);
}

.site-footer__bottom > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

/* Keep other large surfaces editorial and restrained. */

.transport-showcase,
.students-panel,
.application-shell {
  box-shadow: 0 22px 60px rgba(2, 18, 50, 0.12);
}

.steps-grid,
.process-rail,
.resources__grid {
  gap: 12px;
}

.step-card,
.process-rail li,
.resources__grid a {
  border-radius: var(--editorial-radius-card) !important;
}

@media (max-width: 1100px) {
  .vacancy-grid--v6 .vacancy-card,
  .vacancy-grid--v6 .vacancy-card--featured,
  .vacancy-grid--v6 .vacancy-card--doctor,
  .vacancy-grid--v6 .vacancy-card--education,
  .vacancy-grid--v6 .vacancy-card--port,
  .vacancy-grid--v6 .vacancy-card--energy,
  .vacancy-grid--v6 .vacancy-card--analytics {
    grid-column: span 6;
    min-height: 500px;
  }
}

@media (max-width: 780px) {
  .route-dialog[open] {
    display: block;
  }

  .route-dialog__media {
    min-height: 330px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cookie-banner__actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 680px) {
  .site-header__inner {
    border-radius: 0 !important;
  }

  .hero {
    padding: 0 4px;
  }

  .hero-scene {
    border-radius: 8px 8px 0 0;
  }

  .hero-scene__content {
    padding-top: 96px;
    padding-bottom: 32px;
  }

  .hero-scene h1 {
    font-size: clamp(62px, 18.6vw, 76px);
    line-height: 0.82;
  }

  .hero-scene__lead {
    margin-top: 24px;
    font-size: 21px;
    line-height: 1.16;
  }

  .hero-scene__copy {
    max-width: 280px;
    font-size: 14px;
  }

  .hero-scene__actions {
    margin-top: 24px;
  }

  .route-showcase--editorial {
    min-height: 0;
    padding: 82px 0 72px;
  }

  .route-showcase--editorial::before {
    background: linear-gradient(180deg, rgba(246, 248, 247, 0.98) 0%, rgba(246, 248, 247, 0.88) 42%, rgba(246, 248, 247, 0.42) 100%);
  }

  .route-showcase__botanical img {
    object-position: 72% center;
  }

  .route-showcase--editorial .route-showcase__heading {
    display: block;
    margin-bottom: 40px;
  }

  .route-showcase--editorial h2 {
    font-size: clamp(54px, 17vw, 72px);
    line-height: 0.86;
  }

  .route-showcase--editorial .section-heading > p {
    margin: 24px 0 0;
    font-size: 16px;
  }

  .route-cards--editorial {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 10px;
    overflow: visible;
  }

  .route-cards--editorial .route-card,
  .route-cards--editorial .route-card:first-child {
    grid-column: auto;
    grid-row: auto;
    min-width: 0;
    height: 330px;
    border-radius: 6px;
  }

  .route-cards--editorial .route-card:first-child {
    height: 440px;
  }

  .route-cards--editorial .route-card strong,
  .route-cards--editorial .route-card:first-child strong {
    font-size: 42px;
  }

  .vacancy-grid--v6 {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .vacancy-grid--v6 .vacancy-card,
  .vacancy-grid--v6 .vacancy-card--featured,
  .vacancy-grid--v6 .vacancy-card--doctor,
  .vacancy-grid--v6 .vacancy-card--education,
  .vacancy-grid--v6 .vacancy-card--port,
  .vacancy-grid--v6 .vacancy-card--energy,
  .vacancy-grid--v6 .vacancy-card--analytics {
    grid-column: auto;
    min-height: 470px;
    border-radius: 6px !important;
  }

  .vacancy-grid--v6 .vacancy-card h3 {
    max-width: 100%;
    font-size: clamp(30px, 9.2vw, 38px);
  }

  .vacancy-grid--v6 .vacancy-card--analytics h3 {
    font-size: clamp(30px, 8.8vw, 36px);
  }

  .story-message__bubble {
    border-radius: 6px 6px 6px 2px !important;
  }

  .route-dialog,
  .legal-dialog {
    width: calc(100vw - 16px);
    max-height: calc(100dvh - 16px);
    border-radius: 8px !important;
  }

  .route-dialog__media {
    min-height: 260px;
    max-height: 34dvh;
  }

  .route-dialog__body {
    padding: 8px 22px 24px;
  }

  .legal-dialog__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-banner {
    right: 8px;
    bottom: 8px;
    left: 8px;
    padding: 16px;
    border-radius: 6px;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-banner__actions .legal-text-button {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .site-footer {
    padding: 30px 0 18px;
    border-radius: 0 !important;
  }

  .site-footer__brand {
    padding: 0;
    background: transparent;
  }

  .site-footer__brand > img {
    width: min(226px, 74vw);
    padding: 0;
    background: transparent;
  }
}

@media (prefers-reduced-motion: reduce) {
  .route-cards--editorial .route-card > img {
    transition: none;
  }
}

/* source: north-life-v1.css */
/* North-life advantages: one long cinematic chapter, isolated from legacy route cards. */

.north-life {
  --north-life-line: rgba(255, 255, 255, 0.18);
  --north-life-muted: rgba(232, 241, 245, 0.74);
  position: relative;
  padding: clamp(112px, 11vw, 176px) 0 clamp(128px, 13vw, 208px);
  overflow: clip;
  background-color: #071426;
  color: #f8fbfc;
  isolation: isolate;
}

.north-life__backdrop {
  position: absolute;
  z-index: -2;
  inset: 0;
  pointer-events: none;
}

.north-life__backdrop::before {
  position: sticky;
  top: 0;
  display: block;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background:
    linear-gradient(180deg, rgba(4, 14, 28, 0.3), rgba(4, 14, 28, 0.76)),
    linear-gradient(90deg, rgba(4, 14, 28, 0.62), rgba(4, 14, 28, 0.14) 54%, rgba(4, 14, 28, 0.56)),
    image-set(
      url("../assets/images/north-life-backdrop-v1.webp") type("image/webp"),
      url("../assets/images/north-life-backdrop-v1.jpg") type("image/jpeg")
    ) center / cover no-repeat;
  content: "";
  filter: saturate(0.82) contrast(1.05);
}

.north-life::before,
.north-life::after {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  content: "";
}

.north-life::before {
  inset: 0;
  background:
    radial-gradient(circle at 82% 14%, rgba(119, 181, 187, 0.13), transparent 25%),
    radial-gradient(circle at 10% 56%, rgba(198, 154, 90, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(4, 14, 28, 0.52) 0%, rgba(6, 19, 37, 0.86) 19%, rgba(6, 18, 34, 0.9) 82%, #071426 100%);
}

.north-life::after {
  top: 0;
  right: max(22px, calc((100vw - var(--container)) / 2));
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--north-life-line) 8%, var(--north-life-line) 92%, transparent);
  opacity: 0.62;
}

.north-life__inner {
  position: relative;
}

.north-life__intro {
  position: relative;
  min-height: min(72vh, 760px);
  padding-bottom: clamp(96px, 10vw, 156px);
}

.north-life__intro::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.06));
  content: "";
}

.north-life .eyebrow {
  color: #a8dce0;
}

.north-life__intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 10fr) minmax(120px, 2fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: end;
  margin-top: clamp(30px, 5vw, 66px);
}

.north-life h2 {
  max-width: 1140px;
  margin: 0;
  color: #fff;
  font-size: clamp(68px, 9.15vw, 142px);
  font-weight: 540;
  letter-spacing: -0.082em;
  line-height: 0.87;
  text-wrap: balance;
}

.north-life__count {
  display: grid;
  grid-template-columns: auto minmax(36px, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin: 0 0 10px;
  color: var(--north-life-muted);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.14em;
}

.north-life__count i {
  height: 1px;
  background: var(--north-life-line);
}

.north-life__features {
  display: grid;
  gap: clamp(118px, 13vw, 210px);
  margin: 0;
  padding: clamp(120px, 12vw, 184px) 0 0;
  list-style: none;
  counter-reset: north-life;
}

.north-life__signature {
  margin: clamp(28px, 4.2vh, 48px) 0 0;
  padding-top: clamp(18px, 2.5vh, 28px);
  border-top: 1px solid var(--north-life-line);
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-display);
  font-size: clamp(44px, 6.1vw, 92px);
  font-weight: 720;
  letter-spacing: -0.075em;
  line-height: 0.86;
  text-align: right;
  white-space: nowrap;
}

.north-life__feature {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  min-height: clamp(570px, 68vw, 780px);
  counter-increment: north-life;
}

.north-life__feature::after {
  position: absolute;
  right: 0;
  bottom: clamp(-60px, -5vw, -38px);
  width: clamp(94px, 11vw, 168px);
  height: 1px;
  background: var(--north-life-line);
  content: "";
}

.north-life__media {
  position: relative;
  grid-column: 1 / span 8;
  grid-row: 1;
  width: 100%;
  min-height: clamp(520px, 53vw, 720px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #10253d;
  box-shadow: 0 42px 110px rgba(0, 5, 14, 0.42);
}

.north-life__media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 54%, rgba(3, 13, 26, 0.54) 100%),
    linear-gradient(180deg, transparent 58%, rgba(3, 13, 26, 0.24));
  content: "";
  pointer-events: none;
}

.north-life__media picture,
.north-life__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.north-life__media img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.025);
  transform: scale(1.015);
  transition: transform 1200ms cubic-bezier(0.2, 0.72, 0.18, 1), filter 500ms ease;
}

.north-life__copy {
  position: relative;
  z-index: 2;
  grid-column: 8 / -1;
  grid-row: 1;
  align-self: center;
  padding: clamp(38px, 5vw, 74px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(11, 30, 51, 0.88), rgba(6, 18, 34, 0.72));
  box-shadow: 0 28px 76px rgba(0, 5, 14, 0.38);
  backdrop-filter: blur(22px) saturate(1.08);
}

.north-life__number {
  display: inline-block;
  margin-bottom: clamp(54px, 7vw, 92px);
  color: #9ed7dc;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.16em;
}

.north-life__number::after {
  display: inline-block;
  width: clamp(46px, 6vw, 82px);
  height: 1px;
  margin: 0 0 3px 14px;
  background: rgba(158, 215, 220, 0.48);
  content: "";
}

.north-life__copy h3 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: clamp(40px, 4.3vw, 66px);
  font-weight: 550;
  letter-spacing: -0.065em;
  line-height: 0.98;
  text-wrap: balance;
}

.north-life__copy p {
  max-width: 560px;
  margin: clamp(24px, 3vw, 38px) 0 0;
  color: var(--north-life-muted);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.52;
}

.north-life__feature--reverse .north-life__media {
  grid-column: 5 / -1;
}

.north-life__feature--reverse .north-life__media::after {
  background:
    linear-gradient(270deg, transparent 54%, rgba(3, 13, 26, 0.54) 100%),
    linear-gradient(180deg, transparent 58%, rgba(3, 13, 26, 0.24));
}

.north-life__feature--reverse .north-life__copy {
  grid-column: 1 / span 5;
}

.north-life__feature:hover .north-life__media img {
  filter: saturate(1) contrast(1.04);
  transform: scale(1.045);
}

.js [data-life-feature].is-pending .north-life__media,
.js [data-life-feature].is-pending .north-life__copy {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 800ms ease,
    transform 1000ms cubic-bezier(0.2, 0.72, 0.18, 1);
}

.js [data-life-feature].is-pending .north-life__copy {
  transition-delay: 120ms;
}

.js [data-life-feature].is-visible .north-life__media,
.js [data-life-feature].is-visible .north-life__copy {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .north-life {
    padding: 88px 0 112px;
  }

  .north-life__backdrop::before {
    position: absolute;
    inset: 0 0 auto;
    height: 780px;
    background-position: 62% top;
  }

  .north-life::after {
    right: 20px;
  }

  .north-life::before {
    background:
      radial-gradient(circle at 82% 14%, rgba(119, 181, 187, 0.08), transparent 25%),
      linear-gradient(180deg, rgba(4, 14, 28, 0.74) 0%, rgba(6, 19, 37, 0.92) 26%, rgba(6, 18, 34, 0.94) 82%, #071426 100%);
  }

  .north-life__intro {
    min-height: 0;
    padding-bottom: 74px;
  }

  .north-life__intro-grid {
    display: block;
    margin-top: 28px;
  }

  .north-life h2 {
    max-width: 720px;
    font-size: clamp(54px, 12.5vw, 92px);
    line-height: 0.9;
  }

  .north-life__count {
    width: min(220px, 65%);
    margin: 48px 0 0;
  }

  .north-life__features {
    gap: 112px;
    padding-top: 88px;
  }

  .north-life__signature {
    margin-top: 54px;
    padding-top: 24px;
    font-size: clamp(38px, 10vw, 72px);
    text-align: left;
  }

  .north-life__feature,
  .north-life__feature--reverse {
    display: block;
    min-height: 0;
  }

  .north-life__media,
  .north-life__feature--reverse .north-life__media {
    min-height: 0;
    aspect-ratio: 4 / 4.7;
  }

  .north-life__media::after,
  .north-life__feature--reverse .north-life__media::after {
    background: linear-gradient(180deg, transparent 42%, rgba(3, 13, 26, 0.42) 100%);
  }

  .north-life__copy,
  .north-life__feature--reverse .north-life__copy {
    width: calc(100% - 32px);
    margin: -74px 16px 0;
    padding: 32px;
  }

  .north-life__number {
    margin-bottom: 48px;
  }

  .north-life__copy h3 {
    font-size: clamp(39px, 8vw, 56px);
  }

  .north-life__feature::after {
    right: 0;
    bottom: -56px;
  }
}

@media (max-width: 560px) {
  .north-life {
    padding: 78px 0 96px;
  }

  .north-life::after {
    display: none;
  }

  .north-life h2 {
    font-size: clamp(48px, 14.8vw, 64px);
    letter-spacing: -0.075em;
    line-height: 0.91;
  }

  .north-life__features {
    gap: 94px;
    padding-top: 74px;
  }

  .north-life__signature {
    margin-top: 42px;
    padding-top: 20px;
    font-size: clamp(31px, 9.2vw, 48px);
    letter-spacing: -0.065em;
  }

  .north-life__media,
  .north-life__feature--reverse .north-life__media {
    aspect-ratio: 4 / 5;
    border-radius: 6px;
  }

  .north-life__copy,
  .north-life__feature--reverse .north-life__copy {
    width: calc(100% - 20px);
    margin: -58px 10px 0;
    padding: 26px 24px 28px;
    border-radius: 6px;
    backdrop-filter: blur(16px) saturate(1.06);
  }

  .north-life__number {
    margin-bottom: 34px;
  }

  .north-life__copy h3 {
    font-size: clamp(34px, 10.6vw, 46px);
    line-height: 1;
  }

  .north-life__copy p {
    margin-top: 20px;
    font-size: 17px;
    line-height: 1.48;
  }
}

@media (prefers-reduced-motion: reduce) {
  .north-life__media img,
  .js [data-life-feature].is-pending .north-life__media,
  .js [data-life-feature].is-pending .north-life__copy {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* source: client-revision-v12.css */
/* Client revision 12: compact narrative, vacancy catalog, press and application polish. */

.site-header__inner {
  grid-template-columns: minmax(190px, 230px) minmax(0, 1fr) auto;
}

.site-header .desktop-nav {
  gap: clamp(14px, 1.7vw, 28px);
}

.site-header__actions {
  gap: 14px;
}

.site-header__phone,
.mobile-nav__phone {
  color: var(--navy-950);
  font-size: 14px;
  font-weight: 760;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.mobile-nav__phone {
  display: block;
  margin: 6px 0 18px;
  color: var(--white);
  font-size: 18px;
}

.hero-scene__lead {
  max-width: 820px;
}

.project-summary {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(36px, 6vw, 96px);
  margin-top: clamp(48px, 6vw, 84px);
  padding: clamp(30px, 4vw, 52px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-summary h3 {
  max-width: 680px;
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.35vw, 52px);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.project-summary__copy {
  align-self: end;
  max-width: 760px;
}

.project-summary__copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.65;
}

.project-summary__copy p + p {
  margin-top: 18px;
  color: var(--ink);
}

.project-summary + .metrics {
  margin-top: clamp(26px, 3vw, 42px);
}

/* One-screen desktop composition for “Живи и работай…” */
@media (min-width: 901px) {
  .north-life {
    min-height: 100vh;
    min-height: 100svh;
    padding: clamp(38px, 5vh, 58px) 0;
  }

  .north-life__intro {
    min-height: 0;
    padding-bottom: clamp(16px, 2.2vh, 24px);
  }

  .north-life__intro-grid {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    margin-top: 14px;
  }

  .north-life h2 {
    max-width: 1080px;
    font-size: clamp(44px, 4.7vw, 70px);
    letter-spacing: -0.065em;
    line-height: 0.94;
  }

  .north-life__count {
    width: 118px;
    margin-bottom: 4px;
  }

  .north-life__features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: clamp(10px, 1.15vw, 16px);
    row-gap: clamp(24px, 3.2vh, 38px);
    padding-top: clamp(18px, 2.5vh, 28px);
  }

  .north-life__feature,
  .north-life__feature--reverse {
    display: block;
    min-height: clamp(150px, 20.5vh, 215px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: #10253d;
  }

  .north-life__feature::after {
    display: none;
  }

  .north-life__media,
  .north-life__feature--reverse .north-life__media {
    position: absolute;
    inset: 0;
    width: auto;
    min-height: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .north-life__media::after,
  .north-life__feature--reverse .north-life__media::after {
    background: linear-gradient(180deg, rgba(3, 13, 26, 0.03) 25%, rgba(3, 13, 26, 0.94) 100%);
  }

  .north-life__copy,
  .north-life__feature--reverse .north-life__copy {
    position: absolute;
    z-index: 2;
    inset: auto 0 0;
    width: auto;
    margin: 0;
    padding: 16px 18px;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    backdrop-filter: none;
  }

  .north-life__number {
    margin-bottom: 5px;
    font-size: 10px;
  }

  .north-life__number::after {
    width: 34px;
  }

  .north-life__copy h3 {
    font-size: clamp(18px, 1.55vw, 25px);
    letter-spacing: -0.04em;
    line-height: 1.02;
  }

  .north-life__copy p {
    display: -webkit-box;
    max-width: none;
    margin-top: 6px;
    overflow: hidden;
    color: rgba(242, 248, 250, 0.82);
    font-size: clamp(11px, 0.88vw, 13px);
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

/* Six sector covers and data-driven vacancy list. */
.career-directions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(34px, 4vw, 58px);
}

.career-direction {
  position: relative;
  min-height: clamp(330px, 34vw, 430px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: var(--navy-900);
  box-shadow: var(--shadow-sm);
  color: var(--white);
  text-align: left;
  isolation: isolate;
}

.career-direction > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  transition: transform 650ms var(--ease), filter 300ms ease;
}

.career-direction > .career-direction__media {
  position: absolute;
  z-index: -2;
  inset: 0;
  display: block;
}

.career-direction > .career-direction__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  transition: transform 650ms var(--ease), filter 300ms ease;
}

.career-direction__shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 15, 37, 0.04) 28%, rgba(3, 15, 37, 0.95) 100%);
}

.career-direction__index {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(4, 23, 54, 0.28);
  font-size: 11px;
  font-weight: 760;
  backdrop-filter: blur(8px);
}

.career-direction__copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 7px;
  padding: 30px 26px 25px;
}

.career-direction__copy small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.career-direction__copy strong {
  font-family: var(--font-display);
  font-size: clamp(25px, 2.4vw, 36px);
  font-weight: 610;
  letter-spacing: -0.05em;
  line-height: 1;
}

.career-direction__copy > span {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
}

.career-direction__copy > span img {
  width: 17px;
  filter: brightness(0) invert(1);
}

.career-direction:hover > img,
.career-direction:focus-visible > img,
.career-direction:hover > .career-direction__media img,
.career-direction:focus-visible > .career-direction__media img {
  filter: saturate(1.06);
  transform: scale(1.045);
}

.career-direction.is-active {
  box-shadow: 0 0 0 4px var(--coral), var(--shadow-md);
}

.vacancy-results {
  margin-top: 22px;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.vacancy-results__header {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}

.vacancy-results__header h3 {
  margin: 7px 0 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 46px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.vacancy-results__header p:not(.eyebrow),
.vacancy-results__status {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.vacancy-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.vacancy-list-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.vacancy-list-card__meta,
.vacancy-dialog__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--muted);
  font-size: 12px;
}

.vacancy-list-card h4 {
  margin: 8px 0 5px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.vacancy-list-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.vacancy-list-card__actions {
  display: flex;
  gap: 8px;
}

.vacancy-resume-cta {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  padding: 20px 22px;
  border-radius: 16px;
  background: var(--ice-100);
}

.vacancy-resume-cta div {
  display: grid;
  gap: 3px;
}

.vacancy-resume-cta span {
  color: var(--muted);
  font-size: 13px;
}

.vacancy-dialog {
  width: min(760px, calc(100% - 28px));
}

.vacancy-dialog__body {
  display: grid;
  gap: 24px;
}

.vacancy-dialog__meta strong {
  color: var(--ink);
}

.vacancy-dialog__summary {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.vacancy-dialog__body section h3 {
  margin: 0 0 10px;
  font-size: 17px;
}

.vacancy-dialog__body ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.vacancy-dialog__notice {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--ice-100);
  color: var(--muted);
  font-size: 13px;
}

.vacancy-dialog__notice img {
  width: 19px;
}

/* More stories per viewport. */
.stories-section .story-feed {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stories-section .story-slot,
.stories-section .story-slot:nth-child(2),
.stories-section .story-slot:nth-child(3),
.stories-section .story-slot:nth-child(4) {
  width: auto;
  min-height: 250px;
  margin-top: 0;
}

.stories-section .story-message {
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 9px;
}

.stories-section .story-message__avatar {
  width: 52px;
  height: 52px;
}

.stories-section .story-message__bubble {
  min-height: 244px;
  padding: 17px 15px 14px;
}

.stories-section .story-message__quote {
  font-size: 13px;
  line-height: 1.5;
}

/* Press block replaces the removed oversized about mosaic. */
.press-section {
  background: #071426;
  color: var(--white);
}

.press-section .eyebrow,
.press-section .section-heading > p {
  color: rgba(235, 246, 251, 0.7);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(32px, 4vw, 56px);
}

.press-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  padding: clamp(22px, 2.8vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  text-decoration: none;
  transition: transform 220ms var(--ease), background 220ms ease, border-color 220ms ease;
}

.press-card:hover,
.press-card:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.press-card__source {
  color: #9ed7dc;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.press-card strong {
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: clamp(20px, 1.9vw, 28px);
  font-weight: 570;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.press-card__link {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: auto;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
}

.press-card__link img {
  width: 17px;
  filter: brightness(0) invert(1);
}

.application-context {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 15px 17px;
  border: 1px solid rgba(89, 220, 230, 0.3);
  border-radius: 15px;
  background: rgba(89, 220, 230, 0.08);
}

.application-context__icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: rgba(89, 220, 230, 0.16);
}

.application-context__icon img {
  width: 20px;
}

.application-context > span:nth-child(2) {
  display: grid;
  gap: 2px;
}

.application-context small,
.application-context em {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-style: normal;
}

.application-context a {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 730;
}

@media (max-width: 1180px) {
  .site-header__phone {
    font-size: 12px;
  }

  .site-header .desktop-nav {
    gap: 12px;
  }

  .site-header .desktop-nav a {
    font-size: 12px;
  }

  .stories-section .story-feed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .site-header__phone {
    display: none;
  }

  .career-directions,
  .press-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .career-direction {
    min-height: 390px;
  }
}

@media (max-width: 900px) {
  .north-life {
    min-height: 100svh;
    padding: 62px 0 52px;
  }

  .north-life__intro {
    min-height: 0;
    padding-bottom: 22px;
  }

  .north-life__intro-grid {
    margin-top: 18px;
  }

  .north-life h2 {
    font-size: clamp(40px, 9.8vw, 72px);
  }

  .north-life__features {
    display: grid;
    grid-auto-columns: min(78vw, 350px);
    grid-auto-flow: column;
    gap: 12px;
    padding: 18px 18px 14px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .north-life__features::-webkit-scrollbar {
    display: none;
  }

  .north-life__feature,
  .north-life__feature--reverse {
    display: block;
    min-height: 340px;
    overflow: hidden;
    border-radius: 12px;
    scroll-snap-align: start;
  }

  .north-life__feature::after {
    display: none;
  }

  .north-life__media,
  .north-life__feature--reverse .north-life__media {
    position: absolute;
    inset: 0;
    min-height: 0;
    border-radius: 12px;
  }

  .north-life__copy,
  .north-life__feature--reverse .north-life__copy {
    position: absolute;
    z-index: 2;
    inset: auto 0 0;
    width: auto;
    padding: 20px;
    border: 0;
    background: linear-gradient(180deg, transparent, rgba(3, 13, 26, 0.96));
    box-shadow: none;
    backdrop-filter: none;
  }

  .north-life__number {
    margin-bottom: 12px;
  }

  .north-life__copy h3 {
    font-size: 28px;
  }

  .north-life__copy p {
    margin-top: 8px;
    font-size: 14px;
  }
}

@media (max-width: 780px) {
  .project-summary {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .vacancy-list-card {
    grid-template-columns: 1fr;
  }

  .vacancy-list-card__actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 680px) {
  .career-directions,
  .press-grid,
  .stories-section .story-feed {
    grid-template-columns: 1fr;
  }

  .career-direction {
    min-height: 410px;
  }

  .vacancy-results {
    padding: 22px 16px;
    border-radius: 20px;
  }

  .vacancy-results__header,
  .vacancy-resume-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .vacancy-list-card__actions .button {
    flex: 1;
  }

  .stories-section .story-slot,
  .stories-section .story-slot:nth-child(2),
  .stories-section .story-slot:nth-child(3),
  .stories-section .story-slot:nth-child(4) {
    min-height: 0;
  }

  .stories-section .story-message__bubble {
    min-height: 220px;
  }

  .application-context {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .application-context a {
    grid-column: 2;
  }
}

/* source: landing-refinement-v13.css */
/* Final refinement layer — disciplined rhythm, purposeful motion and clear states. */

:root {
  --color-ink: var(--navy-950);
  --color-surface: var(--white);
  --color-surface-soft: var(--ice-100);
  --color-accent: var(--coral);
  --color-success: var(--success);
  --motion-fast: 130ms;
  --motion-medium: 480ms;
  --ease-standard: cubic-bezier(0.22, 0.8, 0.24, 1);
}

body {
  background: #f6f9fc;
}

h1,
h2,
h3 {
  letter-spacing: -0.045em;
}

.map-section h2,
.stories-section h2,
.press-section h2 {
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.02;
}

.button {
  transition:
    color var(--motion-fast) ease,
    background-color var(--motion-fast) ease,
    border-color var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease,
    transform var(--motion-fast) var(--ease-standard);
}

.button:hover {
  transform: none;
}

.button:hover .button__icon {
  transform: translateX(3px);
}

.button:active {
  filter: brightness(0.96);
  transform: scale(0.985);
}

.button__icon {
  transition: transform var(--motion-fast) var(--ease-standard);
}

.button__icon--leading,
.button:hover .button__icon--leading {
  transform: none;
}

.career-direction,
.press-card,
.support-tab {
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.career-direction:hover,
.career-direction:focus-visible,
.press-card:hover,
.press-card:focus-visible {
  transform: none;
}

.career-direction:hover > img,
.career-direction:focus-visible > img,
.career-direction:hover > .career-direction__media img,
.career-direction:focus-visible > .career-direction__media img {
  transform: scale(1.02);
}

.career-direction:active {
  filter: brightness(0.96);
}

/* Atmospheric motion always has an explicit, quiet control. */
.hero-scene__motion-toggle {
  display: inline-flex !important;
  right: clamp(14px, 2vw, 28px);
  bottom: clamp(14px, 2vw, 24px);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(4, 20, 51, 0.5);
  color: rgba(255, 255, 255, 0.92);
}

.hero-scene__motion-toggle:hover {
  background: rgba(4, 20, 51, 0.68);
  transform: none;
}

.hero-scene__mobile-proof {
  display: none;
}

.cookie-banner {
  gap: 18px;
  max-width: 980px;
  padding: 14px 16px;
  border-radius: 14px;
}

.cookie-banner strong {
  font-size: 14px;
}

.cookie-banner p {
  margin-top: 2px;
  font-size: 12px;
}

.cookie-banner .button {
  min-height: 38px;
}

/* Reveal only supporting content. Headings and critical paths stay visible. */
.motion-item {
  transition:
    opacity var(--motion-medium) var(--ease-standard),
    transform var(--motion-medium) var(--ease-standard);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-item.is-pending {
  opacity: 0;
  transform: translateY(20px);
}

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

/* Resume studio: one strong, independent entry point before the long-form journey. */
.resume-studio {
  padding: clamp(64px, 7.4vw, 108px) 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 19, 39, 0.99) 0%, rgba(5, 19, 39, 0.95) 42%, rgba(5, 19, 39, 0.48) 63%, rgba(5, 19, 39, 0.18) 78%),
    linear-gradient(180deg, rgba(3, 14, 29, 0.08), rgba(3, 14, 29, 0.48)),
    url("../assets/images/resume-studio-background-v14.jpg") center / cover no-repeat,
    #071932;
  color: var(--white);
}

.resume-studio::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(118, 219, 225, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(3, 14, 29, 0.04), rgba(3, 14, 29, 0.3));
  content: "";
  pointer-events: none;
}

.resume-studio__shell {
  position: relative;
  z-index: 1;
  display: block;
}

.resume-studio__copy {
  max-width: 790px;
}

.resume-studio h2 {
  max-width: 680px;
  color: var(--white);
  font-size: clamp(46px, 6.1vw, 84px);
  font-weight: 650;
  line-height: 0.96;
}

.resume-studio__copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(237, 247, 255, 0.78);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.55;
}

.resume-studio__benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.resume-studio__benefits li {
  display: grid;
  gap: 13px;
  min-height: 112px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(10px);
}

.resume-studio__benefits span {
  color: #7fe0e7;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.resume-studio__benefits strong {
  align-self: end;
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.25;
}

.resume-studio__actions {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 30px;
}

.resume-studio__actions > a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  text-underline-offset: 4px;
}

.resume-studio__preview {
  position: relative;
  display: grid;
  min-height: 490px;
  place-items: center;
}

.resume-studio__preview::before,
.resume-studio__preview::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.resume-studio__preview::before {
  width: 460px;
  height: 460px;
}

.resume-studio__preview::after {
  width: 340px;
  height: 340px;
}

.resume-studio__paper {
  position: relative;
  z-index: 2;
  width: min(330px, 82%);
  min-height: 438px;
  padding: 30px 28px;
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 34px 90px rgba(0, 9, 29, 0.46);
  color: var(--navy-950);
  transform: rotate(2.5deg);
}

.resume-studio__paper::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(#0878b8, #5adbe5);
  content: "";
}

.resume-studio__paper-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(8, 57, 105, 0.12);
}

.resume-studio__paper-head img {
  width: 108px;
  height: auto;
}

.resume-studio__paper-head span {
  color: #0878b8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.resume-studio__portrait {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 29px 0 19px;
  place-items: center;
  border-radius: 50%;
  background: #e7f3f8;
}

.resume-studio__portrait img {
  width: 26px;
}

.resume-studio__paper > strong,
.resume-studio__paper > small {
  display: block;
}

.resume-studio__paper > strong {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.045em;
}

.resume-studio__paper > small {
  margin: 5px 0 26px;
  color: #2775a4;
  font-weight: 700;
}

.resume-studio__paper > i {
  display: block;
  width: 100%;
  height: 8px;
  margin-top: 10px;
  border-radius: 99px;
  background: #e9f0f4;
}

.resume-studio__paper > i:nth-of-type(2) {
  width: 82%;
}

.resume-studio__paper > i:nth-of-type(3) {
  width: 63%;
}

.resume-studio__paper-status {
  display: flex;
  gap: 7px;
  align-items: center;
  margin-top: 31px;
  padding-top: 17px;
  border-top: 1px solid rgba(8, 57, 105, 0.12);
  color: var(--success);
  font-size: 11px;
  font-weight: 800;
}

.resume-studio__paper-status img {
  width: 17px;
}

/* Compact trust block. */
.press-section.section {
  padding: clamp(54px, 6vw, 82px) 0;
}

.press-section .section-heading {
  margin-bottom: 0;
}

.press-grid {
  gap: 12px;
  margin-top: clamp(24px, 3vw, 38px);
}

.press-card {
  min-height: 158px;
  padding: 21px 22px;
  border-radius: 16px;
}

.press-card:hover,
.press-card:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.09);
}

.press-card strong {
  margin-top: 13px;
  font-size: clamp(17px, 1.45vw, 21px);
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.press-card__link {
  padding-top: 16px;
}

/* Selected vacancy and file/PDF success states are unmistakable. */
.application-context {
  padding: 17px 18px;
  border-color: rgba(0, 112, 179, 0.26);
  background: linear-gradient(135deg, #e8f7fa, #edf5ff);
  box-shadow: inset 4px 0 0 #1a9ab0, 0 12px 26px rgba(7, 49, 95, 0.08);
}

.application-context__icon {
  background: #d0edf2;
}

.application-context small,
.application-context em {
  color: #52677b;
  font-size: 12px;
}

.application-context strong {
  color: #071f48;
  font-size: 15px;
}

.application-context a {
  color: #075c91;
}

.file-input {
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.file-input__status {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  min-width: 0;
}

.file-input__status > img {
  display: none;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.file-input.is-attached {
  border-style: solid;
  border-color: rgba(22, 121, 85, 0.42);
  background: #f0faf6;
  box-shadow: 0 0 0 3px rgba(22, 121, 85, 0.06);
}

.file-input.is-attached .file-input__status,
.file-input.is-attached .file-input__status span {
  color: #126646;
  font-weight: 750;
}

.file-input.is-attached .file-input__status > img {
  display: block;
}

.consent__required {
  display: inline-block;
  margin-top: 3px;
  color: #832822;
  font-size: 11px;
  font-weight: 800;
}

/* Optional resume photograph and a calmer, clearer preview. */
.resume-photo-field {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(20, 58, 116, 0.11);
  border-radius: 14px;
  background: #f7fbfd;
}

.resume-photo-field__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.resume-photo-field__head > div {
  display: flex;
  gap: 7px;
  align-items: baseline;
}

.resume-photo-field__head strong {
  color: var(--navy-950);
  font-size: 12px;
}

.resume-photo-field__head span {
  color: var(--muted);
  font-size: 10px;
}

.resume-photo-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.resume-photo-field__select {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  flex: 0 0 auto;
  padding: 10px 13px;
  border: 1px solid rgba(0, 112, 179, 0.22);
  border-radius: 999px;
  background: rgba(113, 196, 239, 0.1);
  color: #075c91;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.resume-photo-field input:focus-visible + .resume-photo-field__select {
  outline: 3px solid rgba(38, 89, 169, 0.28);
  outline-offset: 3px;
}

.resume-photo-field > p {
  margin: 0;
  color: #5c6e80;
  font-size: 12px;
  line-height: 1.5;
}

.resume-photo-field__preview {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 9px;
  border-radius: 11px;
  background: #e9f5f7;
}

.resume-photo-field__preview > img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.resume-photo-field__preview > span {
  display: grid;
  min-width: 0;
}

.resume-photo-field__preview strong {
  overflow: hidden;
  color: var(--navy-950);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.resume-photo-field__preview small {
  color: var(--muted);
  font-size: 9px;
}

.resume-photo-field__preview button {
  min-width: 44px;
  min-height: 44px;
  padding: 8px;
  border: 0;
  background: transparent;
  color: var(--danger);
  font-size: 11px;
  font-weight: 800;
}

.resume-preview__identity {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: start;
}

.resume-preview__identity-copy {
  display: grid;
}

.resume-preview__identity-copy > span {
  margin-top: 8px;
  color: #687a91;
  font-size: 11px;
}

.resume-preview__photo {
  width: clamp(78px, 8vw, 108px);
  height: clamp(78px, 8vw, 108px);
  margin: 0;
  overflow: hidden;
  border: 4px solid #edf6fa;
  border-radius: 50%;
}

.resume-preview__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resume-dialog__status {
  display: flex;
  min-height: 36px;
  align-items: center;
  margin: 0;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
}

.resume-dialog__status:empty {
  min-height: 0;
  padding: 0;
}

.resume-dialog__status.is-progress {
  background: #eef5fc;
  color: #1c5c91;
}

.resume-dialog__status.is-success {
  background: #eaf8f2;
  color: #126646;
}

.resume-dialog__status.is-error {
  background: #fff0ef;
  color: #9f2f27;
}

.resume-dialog.has-resume-success .dialog__footer {
  box-shadow: inset 0 3px 0 rgba(22, 121, 85, 0.7);
}

/* Secondary copy remains readable on dark editorial surfaces. */
.press-section .eyebrow,
.press-section .section-heading > p,
.stories-section .section-heading > p,
.stories-section .story-disclaimer,
.transport-panel figcaption {
  color: rgba(241, 248, 252, 0.76);
}

@media (max-width: 960px) {
  .resume-studio__shell {
    grid-template-columns: 1fr;
  }

  .resume-studio__preview {
    min-height: 430px;
  }

  .press-card {
    min-height: 168px;
  }
}

@media (min-width: 961px) and (max-width: 1100px) {
  .site-header .desktop-nav {
    gap: 7px;
  }

  .site-header .desktop-nav a {
    font-size: 11px;
  }

  .site-header__actions .button {
    min-height: 44px;
    padding-inline: 15px;
    font-size: 12px;
  }
}

@media (max-width: 680px) {
  h1,
  h2,
  h3 {
    letter-spacing: -0.035em;
  }

  .section {
    padding-block: clamp(58px, 17vw, 84px);
  }

  .hero-scene__person {
    right: -26%;
    bottom: -3%;
    height: 78%;
  }

  .hero-scene__mobile-proof {
    display: inline-block;
    max-width: 310px;
    margin: 14px 0 0;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9px;
    background: rgba(3, 23, 54, 0.52);
    color: rgba(255, 255, 255, 0.94);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    backdrop-filter: blur(10px);
  }

  .hero-scene__motion-toggle {
    right: 12px;
    bottom: 12px;
    min-height: 44px;
    padding: 9px 12px;
    font-size: 11px;
  }

  .career-directions {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(82vw, 340px);
    gap: 12px;
    margin-right: -20px;
    padding: 0 20px 16px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 0 20px;
    scroll-snap-type: inline mandatory;
    scrollbar-color: rgba(18, 58, 122, 0.34) transparent;
    scrollbar-width: thin;
  }

  .career-direction {
    min-height: 430px;
    scroll-snap-align: start;
  }

  .story-filters,
  .support-tabs,
  .process-rail {
    scroll-padding-inline: 0 18px;
    scroll-snap-type: inline proximity;
    scrollbar-color: rgba(89, 220, 230, 0.36) transparent;
    scrollbar-width: thin;
  }

  .story-filter,
  .support-tab,
  .process-rail > * {
    scroll-snap-align: start;
  }

  .resume-studio {
    padding: clamp(390px, 110vw, 440px) 0 58px;
    background:
      linear-gradient(180deg, rgba(4, 18, 36, 0.04) 0%, rgba(4, 18, 36, 0.14) 31%, rgba(4, 18, 36, 0.88) 44%, #071932 58%),
      url("../assets/images/resume-studio-background-mobile-v14.jpg") center top / cover no-repeat,
      #071932;
  }

  .resume-studio::before {
    background:
      radial-gradient(circle at 78% 15%, rgba(118, 219, 225, 0.1), transparent 30%),
      linear-gradient(180deg, transparent 0%, transparent 34%, rgba(3, 14, 29, 0.24) 48%, rgba(3, 14, 29, 0.36) 100%);
  }

  .resume-studio__shell {
    gap: 42px;
  }

  .resume-studio h2 {
    font-size: clamp(42px, 12.5vw, 57px);
  }

  .resume-studio__copy > p:not(.eyebrow) {
    margin-top: 20px;
    font-size: 16px;
  }

  .resume-studio__benefits {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 25px;
  }

  .resume-studio__benefits li {
    grid-template-columns: 34px 1fr;
    gap: 8px;
    min-height: 0;
    align-items: center;
    padding: 13px 15px;
  }

  .resume-studio__benefits strong {
    align-self: auto;
  }

  .resume-studio__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
    margin-top: 24px;
  }

  .resume-studio__actions .button {
    width: 100%;
  }

  .resume-studio__actions > a {
    align-self: center;
  }

  .resume-studio__preview {
    min-height: 320px;
  }

  .resume-studio__preview::before {
    width: 360px;
    height: 360px;
  }

  .resume-studio__preview::after {
    width: 270px;
    height: 270px;
  }

  .resume-studio__paper {
    width: min(258px, 82%);
    min-height: 326px;
    padding: 24px 23px;
  }

  .resume-studio__portrait {
    width: 50px;
    height: 50px;
    margin: 23px 0 15px;
  }

  .resume-studio__paper > strong {
    font-size: 24px;
  }

  .press-section.section {
    padding-block: 55px;
  }

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

  .press-card {
    min-height: 142px;
  }

  .application-context {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .application-context a {
    grid-column: 2;
    justify-self: start;
  }

  .file-input {
    align-items: stretch;
  }

  .file-input__status {
    padding: 4px 2px;
  }

  .resume-photo-field__head {
    align-items: flex-start;
  }

  .resume-photo-field__head > div {
    display: grid;
  }

  .resume-preview__photo {
    width: 74px;
    height: 74px;
  }

  #resume-dialog[open] .resume-preview {
    min-height: 560px;
  }

  .resume-photo-field__preview {
    grid-template-columns: 46px minmax(0, 1fr) 54px;
  }

  .resume-photo-field__preview strong {
    font-size: 11px;
  }

  .resume-photo-field__preview small {
    font-size: 10px;
  }

  .resume-dialog .dialog__footer {
    align-items: stretch;
  }

  .resume-dialog__status {
    width: 100%;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
  }

  .cookie-banner p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .cookie-banner__actions {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-item,
  .motion-item.is-pending,
  .motion-item.is-visible,
  .career-direction > img,
  .career-direction > .career-direction__media img,
  .button,
  .button__icon {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* source: hero-motion-v14.css */
/*
 * Hero motion layer: generated aurora video with a quiet, isolated composition.
 * Loaded last so the motion art direction stays independent from the approved copy.
 */

.hero-scene__aurora {
  z-index: 2;
  top: -11%;
  right: -5%;
  bottom: 31%;
  left: 22%;
  overflow: hidden;
  opacity: 0.93;
  filter: saturate(1.12) contrast(1.025);
  transform: rotate(-2.4deg) scale(1.08);
  transform-origin: 76% 12%;
  transition: opacity 420ms ease;
  -webkit-mask-image:
    radial-gradient(ellipse 88% 92% at 78% 10%, #000 0%, rgba(0, 0, 0, 0.98) 54%, rgba(0, 0, 0, 0.58) 72%, transparent 92%);
  mask-image:
    radial-gradient(ellipse 88% 92% at 78% 10%, #000 0%, rgba(0, 0, 0, 0.98) 54%, rgba(0, 0, 0, 0.58) 72%, transparent 92%);
}

.hero-scene__aurora::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 42% 38% at 74% 26%, rgba(115, 242, 239, 0.12), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(238, 247, 255, 0.18));
  content: "";
  pointer-events: none;
}

.hero-scene__aurora-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 54% 47%;
  filter: saturate(1.16) contrast(1.015);
  transform: scale(1.045);
}

.hero-scene.is-aurora-unavailable .hero-scene__aurora {
  opacity: 0;
}

@media (max-width: 980px) {
  .hero-scene__aurora {
    top: -7%;
    right: -22%;
    bottom: 40%;
    left: 15%;
    opacity: 0.9;
  }
}

@media (max-width: 680px) {
  .hero-scene__aurora {
    top: -3%;
    right: -52%;
    bottom: 47%;
    left: -17%;
    opacity: 0.88;
    transform: rotate(-1deg) scale(1.08);
    -webkit-mask-image:
      radial-gradient(ellipse 92% 84% at 62% 7%, #000 0%, rgba(0, 0, 0, 0.95) 52%, rgba(0, 0, 0, 0.52) 70%, transparent 91%);
    mask-image:
      radial-gradient(ellipse 92% 84% at 62% 7%, #000 0%, rgba(0, 0, 0, 0.95) 52%, rgba(0, 0, 0, 0.52) 70%, transparent 91%);
  }

  .hero-scene__aurora-video {
    object-position: 56% 46%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scene__aurora {
    transition: none;
    transform: none;
  }
}

/* source: section-art-v15.css */
/*
 * Section art v15 — decomposed route interface and motion-ready Arctic layers.
 * The generated imagery stays decorative; copy, controls and route state remain HTML.
 */

/* Shared section rhythm and 12-column content plane */

.route-section,
.vacancies-section,
.support-section,
.application-section {
  --section-grid-gap: clamp(14px, 1.6vw, 24px);
  overflow: clip;
}

.route-section > .container,
.vacancies-section > .container,
.support-section > .container,
.application-section > .container {
  position: relative;
  z-index: 2;
}

.vacancies-section,
.support-section {
  min-height: min(980px, 100svh);
  padding-block: clamp(84px, 8vw, 124px);
}

.section-motion-art[data-parallax-layer] {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  opacity: 1;
  pointer-events: none;
  user-select: none;
}

.section-motion-art img,
.section-motion-art video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-motion-art__video {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 480ms ease;
}

.section-motion-art.is-motion-ready .section-motion-art__video {
  opacity: 1;
}

.section-motion-art.is-motion-unavailable .section-motion-art__video {
  opacity: 0;
}

.vacancies-motion-art {
  inset: -3% -1% auto 34% !important;
  width: 72% !important;
  height: 78% !important;
  opacity: 0.64 !important;
  filter: saturate(0.88) contrast(0.96);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 28%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 28%, #000 100%);
}

.vacancies-motion-art img,
.vacancies-motion-art video {
  object-position: 76% 12%;
}

.support-motion-art {
  inset: -2% -2% auto 28% !important;
  width: 76% !important;
  height: 92% !important;
  opacity: 0.42 !important;
  filter: saturate(0.78) brightness(1.08);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.7) 26%, #000 72%),
    linear-gradient(180deg, #000 0%, #000 74%, transparent 100%);
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.7) 26%, #000 72%),
    linear-gradient(180deg, #000 0%, #000 74%, transparent 100%);
}

.support-motion-art img,
.support-motion-art video {
  object-position: 73% 35%;
}

.application-intro__media {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  filter: saturate(0.86) contrast(1.03);
}

.application-intro__media::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 18, 51, 0.05) 8%, rgba(4, 18, 51, 0.9) 82%),
    linear-gradient(90deg, rgba(4, 18, 51, 0.16), transparent 68%);
  pointer-events: none;
  content: "";
}

.application-intro__media img,
.application-intro__media video {
  object-position: 62% 48%;
}

/* Generated pictograms replacing numeric labels in the six northern-life cards */

.north-life__marker {
  position: relative;
  width: clamp(46px, 4vw, 58px);
  aspect-ratio: 1;
  display: block;
  margin: 0 0 12px;
  overflow: hidden;
  border: 1px solid rgba(178, 225, 236, 0.3);
  border-radius: 15px;
  background: rgba(8, 28, 49, 0.66);
  box-shadow:
    0 14px 30px rgba(0, 6, 18, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition:
    transform 360ms cubic-bezier(0.2, 0.75, 0.25, 1),
    border-color 300ms ease,
    box-shadow 360ms ease;
}

.north-life__marker i {
  position: absolute;
  inset: 0;
  display: block;
  background-image: image-set(
    url("../assets/images/section-art/north-life-icons-v15.webp") type("image/webp"),
    url("../assets/images/section-art/north-life-icons-v15.png") type("image/png")
  );
  background-repeat: no-repeat;
  background-size: 300% 200%;
}

.north-life__marker--whale i { background-position: 0% 0%; }
.north-life__marker--cuisine i { background-position: 50% 0%; }
.north-life__marker--ski i { background-position: 100% 0%; }
.north-life__marker--sun i { background-position: 0% 100%; }
.north-life__marker--rafting i { background-position: 50% 100%; }
.north-life__marker--fishing i { background-position: 100% 100%; }

.north-life__feature:hover .north-life__marker,
.north-life__feature:focus-within .north-life__marker {
  border-color: rgba(193, 237, 244, 0.68);
  box-shadow:
    0 18px 42px rgba(0, 6, 18, 0.4),
    0 0 26px rgba(123, 221, 235, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transform: translateY(-3px) scale(1.055);
}

/* Route: separate artwork, vector path, stateful nodes and matte cards */

.route-section {
  padding-block: clamp(72px, 7vw, 112px);
  background:
    radial-gradient(circle at 88% 12%, rgba(91, 166, 236, 0.1), transparent 28%),
    linear-gradient(180deg, #fbfdff, #f2f7fc 72%, #fff);
}

.route-section::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    repeating-radial-gradient(ellipse at 84% 26%, transparent 0 27px, rgba(23, 79, 145, 0.035) 28px 29px),
    radial-gradient(circle at 18% 86%, rgba(181, 216, 238, 0.24), transparent 24%);
  content: "";
  pointer-events: none;
}

.route-stage {
  position: relative;
  min-height: clamp(760px, 55vw, 890px);
  overflow: hidden;
  border: 1px solid rgba(16, 65, 128, 0.08);
  border-radius: clamp(24px, 3vw, 44px);
  background: rgba(255, 255, 255, 0.56);
  box-shadow:
    0 36px 100px rgba(17, 58, 111, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  isolation: isolate;
}

.route-stage::after {
  position: absolute;
  z-index: 1;
  right: -6%;
  bottom: -14%;
  left: -6%;
  height: 36%;
  background: radial-gradient(ellipse at 50% 100%, rgba(174, 211, 235, 0.42), transparent 70%);
  content: "";
  filter: blur(10px);
  pointer-events: none;
}

.route-stage__crab {
  position: absolute;
  z-index: 0;
  inset: 0;
  margin: 0;
  opacity: 0.52;
  transform: scale(1.025);
  transform-origin: 72% 58%;
  transition: transform 1000ms cubic-bezier(0.2, 0.75, 0.25, 1), opacity 600ms ease;
  -webkit-mask-image: linear-gradient(90deg, transparent 10%, rgba(0, 0, 0, 0.32) 32%, #000 62%);
  mask-image: linear-gradient(90deg, transparent 10%, rgba(0, 0, 0, 0.32) 32%, #000 62%);
}

.route-stage__crab-poster,
.route-stage__crab-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(0.97);
}

.route-stage__crab-video {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 480ms ease;
}

.route-stage__crab.is-motion-ready .route-stage__crab-video {
  opacity: 1;
}

.route-stage__crab.is-motion-unavailable .route-stage__crab-video {
  opacity: 0;
}

.route-stage:hover .route-stage__crab {
  opacity: 0.58;
  transform: scale(1.04) translate3d(0, -3px, 0);
}

.route-stage__heading {
  position: absolute;
  z-index: 5;
  top: clamp(34px, 4.4vw, 68px);
  left: clamp(28px, 4.3vw, 68px);
  width: min(48%, 620px);
}

.route-stage__heading h2 {
  max-width: 640px;
  color: #062866;
  font-size: clamp(48px, 5.45vw, 82px);
  font-weight: 680;
  letter-spacing: -0.066em;
  line-height: 0.96;
  text-wrap: balance;
}

.route-stage__heading > p:last-child {
  margin: clamp(24px, 2.8vw, 40px) 0 0;
  color: #687d9f;
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.55;
}

.route-stage__line {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.route-stage__line path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.route-stage__line-shadow {
  stroke: rgba(43, 105, 190, 0.2);
  stroke-width: 12;
  filter: blur(7px);
}

.route-stage__line-base {
  stroke: rgba(255, 255, 255, 0.82);
  stroke-width: 8;
}

.route-stage__line-progress {
  stroke: #2f71d1;
  stroke-width: 6;
  stroke-dasharray: var(--route-progress, 30) 100;
  filter: drop-shadow(0 0 8px rgba(47, 113, 209, 0.32));
  transition: stroke-dasharray 820ms cubic-bezier(0.16, 1, 0.3, 1);
}

.route-stage__line-mask {
  fill: none;
  stroke: #fff;
  stroke-width: 14;
  stroke-linecap: round;
  stroke-dasharray: var(--route-progress, 30) 100;
  transition: stroke-dasharray 820ms cubic-bezier(0.16, 1, 0.3, 1);
}

.route-stage__line-flow {
  stroke: rgba(218, 253, 255, 0.96);
  stroke-width: 2.5;
  stroke-dasharray: 2 13;
  filter: drop-shadow(0 0 6px rgba(105, 224, 231, 0.82));
  animation: route-line-flow 720ms linear infinite;
}

.route-stage__line-runner {
  fill: #fff;
  stroke: #2f71d1;
  stroke-width: 3;
  filter: drop-shadow(0 0 8px rgba(105, 224, 231, 0.92));
  vector-effect: non-scaling-stroke;
}

[data-active-step="1"] { --route-progress: 21; }
[data-active-step="2"] { --route-progress: 62; }
[data-active-step="3"] { --route-progress: 100; }

.route-node {
  position: absolute;
  z-index: 4;
  width: 22px;
  aspect-ratio: 1;
  border: 6px solid #fff;
  border-radius: 50%;
  background: #ef4829;
  box-shadow:
    0 6px 15px rgba(10, 46, 99, 0.2),
    0 0 0 5px rgba(255, 255, 255, 0.36);
  transform: translate(-50%, -50%) scale(0.82);
  transition:
    transform 360ms cubic-bezier(0.2, 0.75, 0.25, 1),
    box-shadow 360ms ease,
    background-color 300ms ease;
}

.route-node--1 { top: 82.2%; left: 15.7%; }
.route-node--2 { top: 64.7%; left: 48.5%; }
.route-node--3 { top: 38.2%; left: 77%; }

[data-active-step="1"] .route-node--1,
[data-active-step="2"] .route-node--2,
[data-active-step="3"] .route-node--3 {
  background: #ff4d2e;
  box-shadow:
    0 8px 22px rgba(16, 57, 113, 0.22),
    0 0 0 8px rgba(255, 255, 255, 0.7),
    0 0 32px rgba(239, 72, 41, 0.42);
  transform: translate(-50%, -50%) scale(1.14);
  animation: route-node-arrive 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes route-line-flow {
  to { stroke-dashoffset: -30; }
}

@keyframes route-node-arrive {
  0% { transform: translate(-50%, -50%) scale(0.82); }
  62% { transform: translate(-50%, -50%) scale(1.28); }
  100% { transform: translate(-50%, -50%) scale(1.14); }
}

.route-journey {
  position: absolute;
  z-index: 5;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-step {
  position: absolute;
  width: clamp(224px, 20vw, 306px);
}

.route-step--1 { bottom: 8.5%; left: 3.2%; }
.route-step--2 { top: 38%; left: 39%; }
.route-step--3 { top: 7%; right: 4%; }

.route-step button {
  position: relative;
  width: 100%;
  min-height: 188px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 22px 22px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 24px;
  background: rgba(247, 251, 255, 0.48);
  box-shadow:
    0 16px 42px rgba(22, 66, 121, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
  color: #082968;
  text-align: left;
  backdrop-filter: blur(22px) saturate(1.13);
  -webkit-backdrop-filter: blur(22px) saturate(1.13);
  transition:
    transform 420ms cubic-bezier(0.2, 0.75, 0.25, 1),
    background-color 320ms ease,
    border-color 320ms ease,
    box-shadow 420ms ease;
}

.route-step button::before {
  position: absolute;
  inset: -18%;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle at 46% 44%, rgba(255, 255, 255, 0.9), transparent 62%);
  content: "";
  opacity: 0;
  filter: blur(22px);
  transition: opacity 360ms ease;
}

.route-step button:hover,
.route-step button:focus-visible,
.route-step button[aria-pressed="true"] {
  border-color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.7);
  box-shadow:
    0 28px 68px rgba(22, 66, 121, 0.16),
    inset 0 1px 0 #fff,
    inset 0 -18px 34px rgba(151, 202, 238, 0.12);
  transform: translateY(-7px) scale(1.025);
}

.route-step button:hover::before,
.route-step button:focus-visible::before,
.route-step button[aria-pressed="true"]::before {
  opacity: 0.82;
}

.route-step button:focus-visible {
  outline: 3px solid rgba(47, 113, 209, 0.38);
  outline-offset: 4px;
}

.route-step__top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.route-step__icon {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(28, 86, 170, 0.2);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 18px rgba(17, 60, 117, 0.08);
}

.route-step__icon img {
  width: 23px;
  height: 23px;
}

.route-step__number {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.45vw, 54px);
  font-weight: 720;
  letter-spacing: -0.07em;
  line-height: 1;
}

.route-step__rule {
  width: 34px;
  height: 2px;
  display: block;
  margin: 13px 0 11px;
  background: #ef4829;
}

.route-step strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.45vw, 23px);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.route-step__copy {
  display: block;
  margin-top: 8px;
  color: #647999;
  font-size: clamp(12px, 0.95vw, 15px);
  line-height: 1.45;
}

.route-stage + .project-summary {
  margin-top: clamp(48px, 6vw, 82px);
}

.route-section .metrics {
  background: rgba(245, 249, 253, 0.9);
}

/* The generated port loop is contained in the visual panel beside the form. */

.application-section {
  min-height: min(1080px, 100svh);
  background: linear-gradient(180deg, #f9fbfe, #eef4fa);
}

.application-shell {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.application-intro {
  background: #041333;
}

.application-intro > :not(.application-intro__media) {
  position: relative;
  z-index: 3;
}

@media (min-width: 901px) {
  .route-section {
    padding-block: 0;
  }

  .route-section > .container {
    width: 100%;
    max-width: none;
  }

  .route-stage {
    min-height: min(980px, 100svh);
    border-inline: 0;
    border-radius: 0;
  }

  .route-stage + .project-summary,
  .route-section .metrics {
    width: min(var(--container), calc(100% - 48px));
    margin-inline: auto;
  }

  .route-section .metrics {
    margin-bottom: clamp(72px, 7vw, 112px);
  }

  .north-life__marker {
    width: 44px;
    margin-bottom: 7px;
    border-radius: 12px;
  }
}

@media (min-width: 1441px) {
  .vacancies-motion-art,
  .support-motion-art {
    inset: -3% !important;
    width: 106% !important;
    height: 106% !important;
    max-width: none !important;
  }

  .vacancies-motion-art img,
  .vacancies-motion-art video,
  .support-motion-art img,
  .support-motion-art video {
    object-fit: cover;
  }
}

@media (max-width: 1180px) {
  .route-stage {
    min-height: 790px;
  }

  .route-stage__heading {
    width: 52%;
  }

  .route-stage__heading h2 {
    font-size: clamp(48px, 6vw, 68px);
  }

  .route-step {
    width: clamp(218px, 23vw, 270px);
  }

  .route-step--1 { left: 2%; }
  .route-step--2 { left: 38%; }
  .route-step--3 { right: 2%; }
}

@media (max-width: 900px) {
  .route-section,
  .vacancies-section,
  .support-section,
  .application-section {
    min-height: 0;
  }

  .route-stage {
    min-height: 0;
    padding: 42px 24px 54px;
    overflow: hidden;
  }

  .route-stage__heading {
    position: relative;
    top: auto;
    left: auto;
    z-index: 5;
    width: min(100%, 660px);
  }

  .route-stage__heading h2 {
    font-size: clamp(45px, 8.5vw, 70px);
  }

  .route-stage__crab {
    inset: 27% -28% 3% 12%;
    opacity: 0.23;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 22%, #000 100%);
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 22%, #000 100%);
  }

  .route-stage__crab-poster,
  .route-stage__crab-video {
    object-fit: cover;
    object-position: 66% center;
  }

  .route-stage__line {
    display: none;
  }

  .route-journey {
    position: relative;
    z-index: 5;
    display: grid;
    gap: 18px;
    margin-top: 40px;
    padding-left: 34px;
  }

  .route-journey::before {
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 10px;
    width: 4px;
    border: 3px solid rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    background: #2f71d1;
    box-shadow: 0 0 18px rgba(47, 113, 209, 0.24);
    content: "";
  }

  .route-step,
  .route-step--1,
  .route-step--2,
  .route-step--3 {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .route-step::before {
    position: absolute;
    z-index: 2;
    top: 34px;
    left: -35px;
    width: 16px;
    aspect-ratio: 1;
    border: 5px solid #fff;
    border-radius: 50%;
    background: #ef4829;
    box-shadow: 0 4px 14px rgba(7, 42, 91, 0.2);
    content: "";
    transform: translate(-50%, -50%);
    transition: box-shadow 300ms ease, transform 300ms ease;
  }

  .route-step:has(button[aria-pressed="true"])::before {
    box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.68), 0 0 26px rgba(239, 72, 41, 0.42);
    transform: translate(-50%, -50%) scale(1.14);
  }

  .route-step button {
    min-height: 0;
  }

  .route-node {
    display: none;
  }

  .vacancies-motion-art {
    inset: 0 -34% auto 28% !important;
    width: 106% !important;
    height: 52% !important;
    opacity: 0.42 !important;
  }

  .support-motion-art {
    inset: 3% -45% auto 30% !important;
    width: 115% !important;
    height: 54% !important;
    opacity: 0.26 !important;
  }

  .application-intro__media .section-motion-art__video {
    display: none;
  }
}

@media (max-width: 620px) {
  .route-section,
  .vacancies-section,
  .support-section,
  .application-section {
    padding-block: 72px;
  }

  .route-stage {
    margin-inline: -10px;
    padding: 34px 18px 38px;
    border-radius: 26px;
  }

  .route-stage__heading h2 {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 0.95;
  }

  .route-stage__heading > p:last-child {
    margin-top: 20px;
    font-size: 17px;
  }

  .route-journey {
    gap: 14px;
    margin-top: 34px;
    padding-left: 28px;
  }

  .route-journey::before {
    left: 8px;
  }

  .route-step::before {
    left: -29px;
  }

  .route-step button {
    padding: 18px;
    border-radius: 20px;
    backdrop-filter: blur(18px) saturate(1.1);
    -webkit-backdrop-filter: blur(18px) saturate(1.1);
  }

  .route-step button:hover,
  .route-step button:focus-visible,
  .route-step button[aria-pressed="true"] {
    transform: translateX(3px);
  }

  .route-step__number {
    font-size: 42px;
  }

  .route-step__copy {
    font-size: 14px;
  }

  .route-stage + .project-summary {
    margin-top: 48px;
  }

  .north-life__marker {
    width: 52px;
    margin-bottom: 20px;
  }

  .vacancies-motion-art {
    inset: 3% auto auto -48% !important;
    width: 150% !important;
    height: 42% !important;
    opacity: 0.42 !important;
  }

  .support-motion-art {
    inset: 2% auto auto -55% !important;
    width: 160% !important;
    height: 42% !important;
    opacity: 0.26 !important;
  }

  .application-intro {
    min-height: 590px;
    background-position: 70% center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-motion-art__video,
  .route-stage__crab-video {
    display: none;
  }

  .route-stage__crab,
  .route-step button,
  .route-step button::before,
  .route-stage__line-progress,
  .route-stage__line-mask,
  .route-node,
  .north-life__marker {
    transition: none;
  }

  .route-stage__line-flow,
  .route-node {
    animation: none !important;
  }
}

@media print {
  .section-motion-art,
  .route-stage__crab {
    display: none !important;
  }
}

/* source: hero-partners-v16.css */
/* Centered monochrome hero logo line with synchronized set changes. */

.hero {
  padding-inline: 0;
}

.hero-scene__content {
  padding-bottom: 132px;
}

.hero-partners {
  position: absolute;
  z-index: 5;
  right: clamp(18px, 2vw, 32px);
  bottom: clamp(14px, 1.5vw, 22px);
  left: clamp(18px, 2vw, 32px);
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 0 clamp(10px, 1.8vw, 28px);
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: none;
}

.hero-partners__grid {
  position: relative;
  width: min(1100px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: clamp(8px, 1vw, 18px);
}

.hero-partners__slot {
  position: relative;
  min-width: 0;
  height: 54px;
  perspective: 420px;
}

.hero-partners__logo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px clamp(10px, 1.4vw, 22px);
  opacity: 0;
  clip-path: inset(82% 0 0 0 round 8px);
  filter: blur(7px);
  transform: translate3d(0, 15px, 0) rotateX(-11deg) scale(0.94);
  transform-origin: 50% 100%;
  transition:
    opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 580ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, clip-path, filter, transform;
}

.hero-partners__logo.is-active {
  opacity: 1;
  clip-path: inset(0 0 0 0 round 0);
  filter: blur(0);
  transform: translate3d(0, 0, 0) rotateX(0) scale(1);
}

.hero-partners__logo.is-leaving {
  opacity: 0;
  clip-path: inset(0 0 78% 0 round 8px);
  filter: blur(5px);
  transform: translate3d(0, -13px, 0) rotateX(9deg) scale(1.035);
  transform-origin: 50% 0;
}

.hero-partners__logo img {
  width: auto;
  max-width: min(156px, 90%);
  height: auto;
  max-height: 44px;
  object-fit: contain;
  filter:
    grayscale(1)
    brightness(0)
    contrast(1.45)
    drop-shadow(0 0 2px rgba(255, 255, 255, 0.74))
    drop-shadow(0 2px 9px rgba(255, 255, 255, 0.32));
  opacity: 0.9;
  mix-blend-mode: multiply;
}

.hero-partners__logo--wide img {
  max-width: min(194px, 96%);
  max-height: 44px;
}

.hero-partners__logo--tall img {
  max-width: min(108px, 74%);
  max-height: 54px;
}

@media (max-width: 960px) {
  .hero-scene__content {
    padding-bottom: 118px;
  }

  .hero-partners {
    min-height: 64px;
    padding-inline: 8px;
  }

  .hero-partners__grid {
    width: 100%;
    margin-inline: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-partners__slot:nth-child(n + 4) {
    display: none;
  }
}

@media (max-width: 680px) {
  .hero-scene {
    min-height: 760px;
  }

  .hero-scene__content {
    min-height: 760px;
    padding-bottom: 96px;
  }

  .hero-partners {
    right: 8px;
    bottom: 8px;
    left: 8px;
    min-height: 58px;
    padding: 0 6px;
  }

  .hero-partners__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-partners__slot {
    height: 48px;
  }

  .hero-partners__slot:nth-child(n + 3) {
    display: none;
  }

  .hero-partners__logo {
    padding-inline: 8px;
  }

  .hero-partners__logo img {
    max-width: min(142px, 92%);
    max-height: 38px;
  }

  .hero-partners__logo--wide img {
    max-width: min(154px, 96%);
    max-height: 39px;
  }

  .hero-partners__logo--tall img {
    max-width: min(92px, 72%);
    max-height: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-partners__logo {
    transition: none;
  }
}

/* source: video-preloader-v17.css */
/* Premium video-cache gate. Uses native video and CSS only — no canvas runtime. */

.site-preloader {
  --preloader-progress: 0%;
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: none;
  place-items: center;
  overflow: hidden;
  color: #f8fbff;
  background: #071738;
  opacity: 0;
  isolation: isolate;
}

.site-preloader::before,
.site-preloader::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.site-preloader::before {
  top: -32vh;
  left: 50%;
  width: min(1180px, 112vw);
  aspect-ratio: 1.75;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(212, 230, 255, 0.32), rgba(106, 144, 255, 0.17) 34%, transparent 72%);
  filter: blur(34px);
  mix-blend-mode: screen;
  transform: translateX(-50%) rotate(-7deg);
  animation: preloader-glow-breathe 5.4s ease-in-out infinite alternate;
}

.site-preloader::after {
  right: -16vw;
  bottom: -33vh;
  width: min(760px, 72vw);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(45, 109, 229, 0.2), transparent 68%);
  filter: blur(44px);
}

.js.video-cache-cold .site-preloader,
.js.video-preload-active .site-preloader {
  display: grid;
  animation: preloader-enter 260ms 120ms ease-out both;
}

.site-preloader[hidden] {
  display: none !important;
}

.js.video-cache-cold,
.js.video-preload-active {
  overflow: hidden;
}

.site-preloader__video,
.site-preloader__veil,
.site-preloader__contours {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.site-preloader__video {
  z-index: -4;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.05) brightness(0.88);
  transform: scale(1.035);
  animation: preloader-aurora-drift 9s ease-in-out infinite alternate;
}

.site-preloader__veil {
  z-index: -3;
  background:
    radial-gradient(circle at 50% 36%, rgba(159, 195, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(4, 13, 36, 0.08), rgba(4, 17, 47, 0.42) 68%, rgba(3, 13, 34, 0.82));
}

.site-preloader__veil::after {
  position: absolute;
  inset: -30%;
  content: "";
  background: linear-gradient(
    112deg,
    transparent 36%,
    rgba(207, 229, 255, 0.03) 45%,
    rgba(221, 237, 255, 0.17) 50%,
    rgba(205, 225, 255, 0.03) 55%,
    transparent 64%
  );
  transform: translate3d(-38%, 0, 0);
  animation: preloader-light-sweep 4.8s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.site-preloader__contours {
  z-index: -2;
  opacity: 0.32;
  background-image:
    repeating-radial-gradient(
      ellipse at 73% 115%,
      transparent 0 28px,
      rgba(213, 230, 255, 0.12) 29px,
      transparent 30px 55px
    );
  mask-image: linear-gradient(90deg, transparent 0%, #000 48%, #000 100%);
  animation: preloader-contours 14s linear infinite;
}

.site-preloader__north-word {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  color: transparent;
  font-family: var(--font-display, "Onest", sans-serif);
  font-size: clamp(130px, 24vw, 410px);
  font-weight: 720;
  letter-spacing: -0.085em;
  line-height: 0.72;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(224, 237, 255, 0.105);
  transform: translate(-50%, -49%) scaleX(1.04);
  mask-image: linear-gradient(180deg, transparent 0%, #000 28%, #000 72%, transparent 100%);
  animation: preloader-north-drift 8s ease-in-out infinite alternate;
}

.site-preloader__bearing {
  position: absolute;
  right: clamp(22px, 3vw, 52px);
  bottom: clamp(20px, 3vw, 42px);
  left: clamp(22px, 3vw, 52px);
  display: grid;
  grid-template-columns: auto minmax(24px, 1fr) auto;
  align-items: center;
  gap: 18px;
  color: rgba(220, 234, 255, 0.46);
  font: 650 9px/1.2 var(--font-body, "Manrope", sans-serif);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.site-preloader__bearing i {
  height: 1px;
  overflow: hidden;
  background: linear-gradient(90deg, transparent, rgba(222, 237, 255, 0.34), transparent);
}

.site-preloader__content {
  width: min(680px, calc(100vw - 48px));
  display: grid;
  justify-items: center;
  text-align: center;
  transform: translateY(-1.5vh);
}

.site-preloader__compass {
  position: relative;
  width: clamp(78px, 7.5vw, 112px);
  aspect-ratio: 1;
  margin-bottom: clamp(18px, 2.5vh, 28px);
  filter: drop-shadow(0 12px 32px rgba(1, 10, 31, 0.36));
  animation: preloader-compass-enter 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.site-preloader__compass svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.site-preloader__compass-ring,
.site-preloader__compass-dashes {
  fill: none;
  stroke: rgba(232, 242, 255, 0.82);
  vector-effect: non-scaling-stroke;
}

.site-preloader__compass-ring {
  stroke-width: 1;
  stroke-dasharray: 2 6;
  transform-origin: 60px 60px;
  animation: preloader-ring-spin 14s linear infinite;
}

.site-preloader__compass-dashes {
  opacity: 0.42;
  stroke-width: 0.7;
  stroke-dasharray: 38 12 4 12;
  transform-origin: 60px 60px;
  animation: preloader-ring-spin 9s linear infinite reverse;
}

.site-preloader__compass-arrow {
  fill: rgba(233, 243, 255, 0.13);
  stroke: #f8fbff;
  stroke-width: 1.4;
  transform-origin: 60px 60px;
  animation: preloader-arrow-breathe 2.6s ease-in-out infinite;
}

.site-preloader__compass-core {
  fill: #ff4b2b;
  filter: drop-shadow(0 0 8px rgba(255, 75, 43, 0.72));
}

.site-preloader__compass > span {
  position: absolute;
  top: -6px;
  left: 50%;
  font: 600 9px/1 var(--font-body, "Manrope", sans-serif);
  letter-spacing: 0.24em;
  transform: translateX(-42%);
}

.site-preloader__coordinates {
  margin: 0 0 12px;
  color: rgba(224, 237, 255, 0.72);
  font: 600 clamp(10px, 0.8vw, 12px)/1.4 var(--font-body, "Manrope", sans-serif);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  animation: preloader-copy-enter 720ms 180ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.site-preloader__title {
  display: grid;
  margin: 0;
  color: #fff;
  font-family: var(--font-display, "Onest", sans-serif);
  font-size: clamp(48px, 7.2vw, 104px);
  font-weight: 620;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.site-preloader__title > span {
  width: max-content;
  max-width: 100%;
  color: transparent;
  background:
    linear-gradient(100deg, #fff 10%, #cbdcff 44%, #fff 58%, #cbdcff 90%);
  background-size: 240% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  animation:
    preloader-title-enter 950ms cubic-bezier(0.16, 1, 0.3, 1) both,
    preloader-title-shine 4.2s 1.2s ease-in-out infinite;
}

.site-preloader__title > span:first-child {
  justify-self: start;
  animation-delay: 260ms, 1.2s;
}

.site-preloader__title > span:last-child {
  justify-self: end;
  color: #dbe8ff;
  animation-delay: 390ms, 1.35s;
}

.site-preloader__status {
  margin: clamp(22px, 3vh, 34px) 0 0;
  color: rgba(232, 241, 255, 0.76);
  font: 500 clamp(13px, 1vw, 16px)/1.5 var(--font-body, "Manrope", sans-serif);
  letter-spacing: 0.08em;
  animation: preloader-copy-enter 720ms 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.site-preloader__progress {
  position: relative;
  width: min(480px, 78vw);
  height: 1px;
  margin-top: clamp(24px, 3.4vh, 38px);
  overflow: visible;
  background: rgba(220, 233, 255, 0.2);
}

.site-preloader__progress::before,
.site-preloader__progress > span {
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  content: "";
}

.site-preloader__progress > span {
  width: var(--preloader-progress);
  background: linear-gradient(90deg, #7ca4ff, #fff 74%, #ff5536);
  box-shadow: 0 0 18px rgba(160, 196, 255, 0.52);
  transition: width 280ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.site-preloader__progress > span::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.08), 0 0 18px rgba(255, 255, 255, 0.8);
  transform: translate(50%, -50%);
}

.site-preloader__meta {
  width: min(480px, 78vw);
  display: flex;
  justify-content: space-between;
  margin-top: 13px;
  color: rgba(215, 230, 253, 0.5);
  font: 600 9px/1.4 var(--font-body, "Manrope", sans-serif);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.js.video-cache-cold .site-preloader.is-leaving,
.js.video-preload-active .site-preloader.is-leaving {
  pointer-events: none;
  animation: preloader-leave 760ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.site-preloader.is-leaving .site-preloader__content {
  animation: preloader-content-leave 620ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes preloader-aurora-drift {
  from { transform: scale(1.035) translate3d(-0.5%, -0.3%, 0); }
  to { transform: scale(1.075) translate3d(0.8%, 0.5%, 0); }
}

@keyframes preloader-enter {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes preloader-light-sweep {
  0%, 18% { transform: translate3d(-38%, 0, 0); opacity: 0; }
  38%, 62% { opacity: 1; }
  82%, 100% { transform: translate3d(38%, 0, 0); opacity: 0; }
}

@keyframes preloader-contours {
  to { transform: translate3d(20px, -16px, 0) scale(1.015); }
}

@keyframes preloader-glow-breathe {
  from { opacity: 0.62; transform: translateX(-50%) rotate(-7deg) scale(0.96); }
  to { opacity: 1; transform: translateX(-50%) rotate(2deg) scale(1.08); }
}

@keyframes preloader-north-drift {
  from { opacity: 0.52; transform: translate(-50%, -49%) scaleX(1.04); }
  to { opacity: 0.82; transform: translate(-49.4%, -50.5%) scaleX(1.075); }
}

@keyframes preloader-ring-spin {
  to { transform: rotate(360deg); }
}

@keyframes preloader-arrow-breathe {
  0%, 100% { transform: rotate(-4deg) scale(0.98); }
  50% { transform: rotate(4deg) scale(1.035); }
}

@keyframes preloader-compass-enter {
  from { opacity: 0; transform: translateY(16px) scale(0.7) rotate(-22deg); }
  to { opacity: 1; transform: translateY(0) scale(1) rotate(0); }
}

@keyframes preloader-copy-enter {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes preloader-title-enter {
  from { opacity: 0; clip-path: inset(0 0 100% 0); transform: translateY(46px); }
  to { opacity: 1; clip-path: inset(0 0 0 0); transform: translateY(0); }
}

@keyframes preloader-title-shine {
  0%, 20% { background-position: 100% 50%; }
  60%, 100% { background-position: 0 50%; }
}

@keyframes preloader-leave {
  0% { opacity: 1; filter: blur(0); transform: scale(1); }
  62% { opacity: 0.38; }
  100% { opacity: 0; filter: blur(12px); transform: scale(1.018); }
}

@keyframes preloader-content-leave {
  to { opacity: 0; transform: scale(0.985); filter: blur(7px); }
}

@media (max-width: 640px) {
  .site-preloader::before {
    top: -12vh;
    width: 150vw;
    filter: blur(26px);
  }

  .site-preloader__content {
    width: min(100% - 36px, 480px);
    transform: translateY(-2vh);
  }

  .site-preloader__title {
    width: 100%;
    font-size: clamp(46px, 16vw, 74px);
  }

  .site-preloader__title > span:first-child,
  .site-preloader__title > span:last-child {
    justify-self: center;
  }

  .site-preloader__coordinates {
    letter-spacing: 0.22em;
  }

  .site-preloader__meta {
    letter-spacing: 0.12em;
  }

  .site-preloader__north-word {
    top: 48%;
    font-size: 39vw;
    -webkit-text-stroke-color: rgba(224, 237, 255, 0.17);
    transform: translate(-50%, -50%) rotate(-90deg) scaleX(1.16);
    animation-name: preloader-north-mobile-drift;
  }

  .site-preloader__bearing {
    gap: 10px;
    letter-spacing: 0.12em;
  }
}

@keyframes preloader-north-mobile-drift {
  from { opacity: 0.48; transform: translate(-50%, -50%) rotate(-90deg) scaleX(1.12); }
  to { opacity: 0.76; transform: translate(-49%, -50%) rotate(-90deg) scaleX(1.2); }
}

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

/* source: mobile-optimization-v18.css */
/* Mobile performance and reading-flow pass. Desktop composition intentionally untouched. */

@media (max-width: 720px) {
  :root {
    --mobile-section-space: clamp(54px, 14vw, 72px);
  }

  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  .hero {
    padding-left: max(4px, env(safe-area-inset-left));
    padding-right: max(4px, env(safe-area-inset-right));
  }

  .hero-scene {
    width: 100%;
    overflow: clip;
  }

  .hero-scene__aurora {
    width: auto;
    height: auto;
  }

  .hero-scene__content {
    padding-left: max(4px, env(safe-area-inset-left));
    padding-right: max(4px, env(safe-area-inset-right));
  }

  .section {
    padding-block: var(--mobile-section-space);
    scroll-margin-top: 74px;
  }

  .section > .container {
    width: min(100% - 28px, var(--container));
  }

  .section-heading,
  .section-heading--inline,
  .section-heading--split {
    gap: 18px;
    margin-bottom: 30px;
  }

  .section-heading > p,
  .section-heading--inline > p,
  .section-heading--split > p {
    max-width: 34ch;
    font-size: 15px;
    line-height: 1.55;
  }

  .motion-item,
  .reveal {
    transition-duration: 440ms !important;
  }

  [data-parallax-mode="static"] [data-parallax-layer] {
    transform: none !important;
  }

  .career-directions,
  .north-life__features,
  .story-filters,
  .support-tabs,
  .process-rail {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline proximity;
    touch-action: pan-x;
  }

  .career-direction,
  .north-life__feature,
  .story-filter,
  .support-tab,
  .process-rail > * {
    scroll-snap-stop: normal;
  }

  .north-life {
    min-height: 0;
    padding-block: 58px 64px;
  }

  .north-life__features {
    grid-auto-columns: min(82vw, 326px);
    gap: 12px;
    padding: 20px 18px 16px 0;
  }

  .north-life__feature,
  .north-life__feature--reverse {
    min-height: 352px;
    border-radius: 18px;
    contain: layout paint;
  }

  .north-life__media,
  .north-life__feature--reverse .north-life__media {
    border-radius: inherit;
  }

  .north-life__copy,
  .north-life__feature--reverse .north-life__copy {
    inset: auto 0 0;
    width: auto;
    margin: 0;
    padding: 54px 20px 20px;
    border: 0;
    border-radius: 0;
    background: linear-gradient(180deg, transparent, rgba(3, 13, 26, 0.96) 44%);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .north-life__number {
    margin-bottom: 12px;
  }

  .north-life__copy h3 {
    font-size: 28px;
  }

  .north-life__copy p {
    margin-top: 8px;
    font-size: 14px;
  }

  .route-section {
    padding-block: 56px 62px;
  }

  .route-stage {
    margin-inline: -4px;
    padding: 28px 16px 30px;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(17, 58, 111, 0.08);
  }

  .route-stage::after {
    filter: none;
  }

  .route-stage__heading h2 {
    max-width: none;
    font-size: clamp(40px, 11.5vw, 50px);
    line-height: 0.96;
  }

  .route-stage__heading > p:last-child {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.48;
  }

  .route-stage__crab {
    inset: 27% -40% 2% 2%;
    opacity: 0.2;
    transform: none;
    transition: opacity 280ms ease;
  }

  .route-journey {
    gap: 10px;
    margin-top: 26px;
    padding-left: 27px;
  }

  .route-journey::before {
    top: 17px;
    bottom: 17px;
    left: 8px;
    width: 3px;
    border-width: 2px;
    box-shadow: 0 0 12px rgba(47, 113, 209, 0.2);
  }

  .route-step::before {
    top: 29px;
    left: -28px;
    width: 14px;
    border-width: 4px;
  }

  .route-step button {
    min-height: 0;
    padding: 14px 15px 15px;
    border-color: rgba(17, 61, 122, 0.1);
    border-radius: 17px;
    background: rgba(250, 253, 255, 0.9);
    box-shadow: 0 10px 26px rgba(22, 66, 121, 0.07);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
  }

  .route-step button::before {
    display: none;
  }

  .route-step button:hover,
  .route-step button:focus-visible,
  .route-step button[aria-pressed="true"] {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 14px 32px rgba(22, 66, 121, 0.1);
    transform: none;
  }

  .route-step__top {
    gap: 10px;
  }

  .route-step__icon {
    width: 36px;
    border-radius: 11px;
  }

  .route-step__icon img {
    width: 20px;
    height: 20px;
  }

  .route-step__number {
    font-size: 36px;
  }

  .route-step__rule {
    margin: 9px 0 8px;
  }

  .route-step strong {
    font-size: 18px;
  }

  .route-step__copy {
    margin-top: 5px;
    font-size: 13px;
    line-height: 1.4;
  }

  .route-stage + .project-summary {
    margin-top: 34px;
  }

  .project-summary {
    gap: 18px;
    padding-block: 26px;
  }

  .project-summary h3 {
    font-size: 31px;
    line-height: 1.02;
  }

  .project-summary__copy p {
    font-size: 15px;
    line-height: 1.55;
  }

  .project-summary__copy p + p {
    margin-top: 12px;
  }

  .project-summary + .metrics {
    margin-top: 22px;
  }

  .metrics article {
    min-height: 106px;
    padding: 16px;
  }

  .metrics strong {
    font-size: 35px;
  }

  .metrics span {
    font-size: 12px;
    line-height: 1.35;
  }

  .map-section {
    padding-block: 62px;
  }

  .map-section .section-heading h2 {
    font-size: clamp(39px, 11.5vw, 49px);
    line-height: 0.96;
  }

  .region-map {
    padding-top: 75%;
    padding-bottom: 374px;
    border-radius: 24px;
    box-shadow: 0 24px 62px rgba(3, 21, 55, 0.22);
  }

  .region-map__intro,
  .region-map .city-panel {
    top: calc(75vw - 6px);
    right: 10px;
    left: 10px;
    width: auto;
    padding: 22px 20px;
    border-radius: 20px;
    background: rgba(8, 29, 69, 0.94);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .region-map__intro h3 {
    font-size: 36px;
    line-height: 0.94;
  }

  .region-map__facts {
    margin-top: 18px;
  }

  .region-map .city-panel {
    bottom: 10px;
    max-height: 354px;
    overflow-y: auto;
    animation: mobile-city-panel-arrive 300ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
  }

  .region-map .city-panel h3 {
    margin: 18px auto 10px;
    font-size: 38px;
  }

  .region-map__connector,
  .region-map.is-compact-map .region-map__connector {
    display: none !important;
  }

  .region-map .map-marker__label {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .support-tabs {
    gap: 9px;
  }

  .support-tab {
    min-width: min(76vw, 270px);
    min-height: 88px;
    padding: 14px;
    transition: background-color 180ms ease, border-color 180ms ease;
  }

  .support-tab:hover,
  .support-tab.is-active {
    transform: none;
  }

  .support-detail,
  .support-detail__content {
    min-height: 520px;
  }

  .support-detail {
    contain: layout paint;
    box-shadow: 0 22px 52px rgba(3, 21, 55, 0.18);
  }

  .support-detail__photo {
    transition: none;
  }

  .stories-section .story-feed {
    gap: 14px;
  }

  .stories-section .story-message__bubble {
    min-height: 0;
    padding: 22px;
  }

  .application-section {
    padding-block: 62px;
  }

  .application-shell {
    border-radius: 24px;
    box-shadow: 0 26px 64px rgba(3, 21, 55, 0.19);
  }

  .application-intro {
    min-height: 420px;
    padding: 28px 22px;
  }

  .application-intro__media .section-motion-art__video {
    display: block;
  }

  .application-intro h2 {
    font-size: 44px;
    line-height: 0.96;
  }

  .application-intro > p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 16px;
  }

  .application-intro__facts {
    gap: 9px 14px;
    margin-top: 20px;
  }

  .application-form {
    padding: 26px 18px 30px;
  }

  .form-progress {
    gap: 8px;
    margin-bottom: 26px;
  }

  .form-progress__step {
    min-height: 44px;
    font-size: 11px;
  }

  .form-grid {
    gap: 14px;
  }

  .field {
    gap: 5px;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 50px;
  }

  .field textarea {
    min-height: 88px;
  }

  .field__error:empty {
    min-height: 0;
  }

  .applicant-type__options label > span {
    min-height: 92px;
    padding: 14px;
  }

  .site-header__inner,
  .hero-scene__mobile-proof {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/* Keep prepared but off-screen sections inert after the preloader hands off. */
.js.video-render-ready main > section:not(.is-runtime-active) *,
.js.video-render-ready main > section:not(.is-runtime-active) *::before,
.js.video-render-ready main > section:not(.is-runtime-active) *::after {
  animation-play-state: paused !important;
}

@keyframes mobile-city-panel-arrive {
  from { opacity: 0; transform: translateY(10px) scale(0.99); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 380px) {
  .route-stage__heading h2,
  .map-section .section-heading h2 {
    font-size: 38px;
  }

  .site-preloader__bearing span:last-child {
    display: none;
  }

  .site-preloader__bearing {
    grid-template-columns: auto 1fr;
  }
}

/* source: mobile-attention-v19.css */
/*
 * Mobile attention route.
 * One dominant decision per viewport, generous reading rhythm and deliberate
 * horizontal previews. Desktop remains untouched.
 */

@media (max-width: 720px) {
  :root {
    --mobile-gutter: clamp(18px, 5vw, 22px);
    --mobile-section-space: clamp(78px, 21vw, 98px);
  }

  body {
    background: #f4f8fc;
  }

  .section {
    padding-block: var(--mobile-section-space);
  }

  .section > .container {
    width: calc(100% - (var(--mobile-gutter) * 2));
  }

  .section-heading,
  .section-heading--inline,
  .section-heading--split {
    gap: 22px;
    margin-bottom: 42px;
  }

  .section-heading h2,
  .section-heading--inline h2,
  .section-heading--split h2 {
    text-wrap: balance;
  }

  .section-heading > p,
  .section-heading--inline > p,
  .section-heading--split > p {
    max-width: 31ch;
    font-size: 16px;
    line-height: 1.62;
  }

  .eyebrow {
    letter-spacing: 0.16em;
  }

  /* Hero: full-bleed stage, lower aurora and a calmer conversion stack. */
  .hero {
    padding: 0;
  }

  .hero-scene {
    min-height: 820px;
    border-radius: 0;
  }

  .hero-scene__content {
    width: calc(100% - (var(--mobile-gutter) * 2));
    min-height: 820px;
    padding: 106px 0 124px;
  }

  .hero-scene__aurora {
    top: 5%;
    right: -48%;
    bottom: 34%;
    left: -24%;
    width: auto;
    height: auto;
    opacity: 0.96;
    transform: rotate(-1deg) scale(1.08);
  }

  .hero-scene__aurora-video {
    object-position: 52% 56%;
  }

  .hero-scene__person {
    right: -34%;
    bottom: -7%;
    height: 58%;
  }

  .hero-scene h1 {
    max-width: 100%;
    font-size: clamp(62px, 18.8vw, 76px);
    line-height: 0.84;
  }

  .hero-scene__lead {
    max-width: 14ch;
    margin-top: 26px;
    font-size: 21px;
    line-height: 1.18;
    text-wrap: balance;
  }

  .hero-scene__actions {
    width: 100%;
    gap: 12px;
    margin-top: 28px;
  }

  .hero-scene__actions .button--primary {
    display: none;
  }

  .hero-scene__actions .button--secondary {
    width: min(226px, 68vw);
    justify-content: center;
  }

  .hero-scene__actions .button {
    min-height: 54px;
    border-radius: 6px;
  }

  .hero-scene__mobile-proof {
    max-width: min(252px, 74vw);
    margin-top: 14px;
    padding: 12px 14px;
    font-size: 12px;
    line-height: 1.45;
  }

  .hero-partners {
    right: var(--mobile-gutter);
    bottom: 16px;
    left: var(--mobile-gutter);
    min-height: 58px;
    padding: 0;
  }

  .hero-partners__grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .hero-partners__slot {
    height: 54px;
  }

  .hero-partners__slot:nth-child(n + 3) {
    display: none;
  }

  .hero-partners__logo,
  .hero-partners__logo--wide,
  .hero-partners__logo--tall {
    padding: 4px 8px;
  }

  .hero-partners__logo img,
  .hero-partners__logo--wide img,
  .hero-partners__logo--tall img {
    max-width: 150px;
    max-height: 40px;
    opacity: 0.94;
    filter: grayscale(1) brightness(0) invert(1) drop-shadow(0 2px 8px rgba(3, 15, 42, 0.18));
    mix-blend-mode: normal;
  }

  .hero-partners__logo--tall img {
    max-width: 104px;
    max-height: 50px;
  }

  /* Life: one cinematic memory per swipe, not a dense card carousel. */
  .north-life {
    padding-block: 88px 94px;
  }

  .north-life__intro {
    padding-bottom: 30px;
  }

  .north-life h2 {
    max-width: 100%;
    font-size: clamp(41px, 11.8vw, 47px);
    line-height: 0.97;
    text-wrap: balance;
  }

  .north-life__intro-grid {
    margin-top: 28px;
  }

  .north-life__features {
    grid-auto-columns: min(84vw, 330px);
    gap: 16px;
    padding: 24px var(--mobile-gutter) 20px 0;
  }

  .north-life__feature,
  .north-life__feature--reverse {
    min-height: 410px;
    border-radius: 24px;
  }

  .north-life__copy,
  .north-life__feature--reverse .north-life__copy {
    padding: 72px 24px 26px;
  }

  .north-life__copy h3 {
    font-size: 30px;
  }

  .north-life__copy p {
    max-width: 28ch;
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.5;
  }

  /* Three-step route: give every decision its own visual breath. */
  .route-section {
    padding-block: 92px 98px;
  }

  .route-stage {
    margin-inline: 0;
    padding: 36px 20px 44px;
    border-radius: 30px;
  }

  .route-stage__heading h2 {
    max-width: 100%;
    font-size: clamp(36px, 10.4vw, 42px);
    line-height: 0.98;
    text-wrap: balance;
  }

  .route-stage__heading > p:last-child {
    max-width: 20ch;
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.58;
  }

  .route-journey {
    gap: 16px;
    margin-top: 34px;
    padding-left: 28px;
  }

  .route-step button {
    padding: 18px 18px 20px;
    border-radius: 22px;
  }

  .route-step__copy {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.55;
  }

  .route-stage + .project-summary {
    margin-top: 52px;
  }

  .project-summary {
    gap: 24px;
    padding-block: 34px;
  }

  .project-summary + .metrics {
    margin-top: 30px;
  }

  .metrics {
    gap: 12px;
  }

  .metrics article {
    min-height: 120px;
    padding: 19px;
    border-radius: 20px;
  }

  /* Work: keep the next card as a hint, not as competing content. */
  .vacancies-section {
    padding-block: 96px;
  }

  .vacancies-section .section-heading h2 {
    max-width: 100%;
    font-size: clamp(45px, 12.4vw, 50px);
    line-height: 0.95;
  }

  .career-directions {
    grid-auto-columns: min(82vw, 322px);
    gap: 16px;
    margin-right: calc(var(--mobile-gutter) * -1);
    padding: 0 var(--mobile-gutter) 22px 0;
  }

  .career-direction {
    min-height: 470px;
    border-radius: 26px;
  }

  .career-direction__copy {
    padding: 78px 24px 24px;
  }

  /* Resume and map are deliberate pauses in the route. */
  .resume-studio {
    padding-bottom: 92px;
  }

  .resume-studio .section-heading {
    margin-bottom: 36px;
  }

  .resume-studio .section-heading h2 {
    max-width: 100%;
    font-size: clamp(43px, 12vw, 49px);
    line-height: 0.96;
  }

  .resume-studio__benefits {
    gap: 12px;
  }

  .resume-studio__benefits li {
    min-height: 52px;
    padding: 14px 16px;
    border-radius: 16px;
  }

  .map-section {
    padding-block: 96px;
  }

  .map-section .section-heading h2 {
    max-width: 100%;
    font-size: clamp(41px, 11.5vw, 47px);
    line-height: 0.96;
  }

  .region-map {
    border-radius: 28px;
  }

  .region-map__intro,
  .region-map .city-panel {
    right: 14px;
    left: 14px;
    padding: 26px 22px;
    border-radius: 22px;
  }

  /* Support: categories first, one calm detail panel second. */
  .support-section {
    padding-block: 96px;
  }

  .support-section .section-heading h2 {
    max-width: 100%;
    font-size: clamp(43px, 12vw, 49px);
    line-height: 0.96;
  }

  .support-tabs {
    gap: 12px;
    margin-right: calc(var(--mobile-gutter) * -1);
    padding-right: var(--mobile-gutter);
  }

  .support-tab {
    min-width: min(82vw, 300px);
    min-height: 104px;
    padding: 18px;
    border-radius: 22px;
  }

  .support-detail {
    min-height: 610px;
    margin-top: 22px;
    border-radius: 28px;
  }

  .support-detail__content {
    min-height: 610px;
    padding: 34px 26px;
  }

  .support-detail h3 {
    font-size: 46px;
    line-height: 0.96;
  }

  /* Eight support steps: one card is the focus, the next is only a cue. */
  .process-section {
    padding-block: 96px 104px;
  }

  .process-section .section-heading h2 {
    max-width: 100%;
    font-size: clamp(42px, 11.8vw, 48px);
    line-height: 0.96;
  }

  .process-rail {
    gap: 14px;
    margin-right: calc(var(--mobile-gutter) * -1);
    padding-right: var(--mobile-gutter);
    border-radius: 0;
  }

  .process-rail li {
    flex-basis: min(82vw, 318px);
    min-height: 280px;
    padding: 24px;
    border-radius: 24px;
  }

  /* Stories: restore the full card width and move the avatar into the card. */
  .stories-section {
    padding-block: 102px;
  }

  .stories-section .section-heading h2 {
    max-width: 100%;
    font-size: clamp(42px, 11.7vw, 48px);
    line-height: 0.96;
  }

  .story-controls {
    margin-inline: calc(var(--mobile-gutter) * -1);
  }

  .story-filters {
    gap: 8px;
    padding-inline: var(--mobile-gutter);
    scroll-padding-inline: var(--mobile-gutter);
  }

  .story-filter {
    min-height: 44px;
    padding: 0 15px;
    border: 1px solid rgba(154, 222, 232, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    font-size: 12px;
  }

  .story-filter.is-active,
  .story-filter[aria-pressed="true"] {
    border-color: rgba(127, 225, 235, 0.46);
    background: rgba(127, 225, 235, 0.13);
  }

  .stories-section .story-feed {
    gap: 22px;
    margin-top: 38px;
  }

  .stories-section .story-slot,
  .stories-section .story-slot:nth-child(2),
  .stories-section .story-slot:nth-child(3),
  .stories-section .story-slot:nth-child(4) {
    width: 100%;
    margin: 0;
  }

  .stories-section .story-message {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 32px;
  }

  .stories-section .story-message__avatar {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 22px;
    width: 68px;
    height: 68px;
    margin: 0;
  }

  .stories-section .story-message__bubble {
    width: 100%;
    min-height: 0;
    padding: 56px 24px 24px;
    border-radius: 24px;
  }

  .stories-section .story-message__bubble::before {
    display: none;
  }

  .stories-section .story-message__meta strong {
    font-size: 22px;
  }

  .stories-section .story-message__meta small {
    margin-top: 4px;
    font-size: 12px;
  }

  .stories-section .story-message__quote {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.62;
  }

  .stories-section .story-message__time {
    padding-top: 24px;
    font-size: 12px;
  }

  .story-disclaimer {
    margin-top: 42px;
    font-size: 12px;
    line-height: 1.55;
    text-align: left;
  }

  /* Final trust sequence: students, press reset, then the lead form. */
  .students-section {
    padding-block: 96px;
  }

  .students-panel {
    overflow: hidden;
    border-radius: 28px;
  }

  .students-panel__content {
    padding: 38px 26px 44px;
  }

  .students-panel__content h2 {
    max-width: 100%;
    font-size: clamp(41px, 11.4vw, 46px);
    line-height: 0.96;
  }

  .students-panel__content > p:not(.eyebrow) {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.62;
  }

  .press-section {
    background: #f3f7fb;
    color: #071b3f;
  }

  .press-section .eyebrow {
    color: #2e66a8;
  }

  .press-section .section-heading > p {
    color: #5c6d84;
  }

  .press-grid {
    gap: 14px;
    margin-top: 36px;
  }

  .press-card {
    min-height: 0;
    padding: 24px;
    border-color: rgba(17, 61, 122, 0.11);
    border-radius: 22px;
    background: #fff;
    color: #071b3f;
    box-shadow: 0 16px 42px rgba(12, 46, 92, 0.07);
  }

  .press-card__source {
    color: #267482;
  }

  .press-card__link {
    color: #174e91;
  }

  .application-section {
    padding-block: 98px;
  }

  .application-shell {
    border-radius: 28px;
  }

  .application-intro {
    min-height: 470px;
    padding: 34px 26px;
  }

  .application-intro h2 {
    max-width: 9ch;
    font-size: 45px;
    line-height: 0.96;
  }

  .application-intro > p:not(.eyebrow) {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.58;
  }

  .application-intro__facts {
    gap: 12px 16px;
    margin-top: 26px;
  }

  .application-form {
    padding: 32px 22px 38px;
  }

  .form-progress {
    margin-bottom: 34px;
    padding-bottom: 24px;
  }

  .form-grid {
    gap: 19px;
  }

  .field {
    gap: 8px;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 54px;
    padding-inline: 16px;
    border-radius: 14px;
  }

  .applicant-type__options {
    gap: 12px;
  }

  .applicant-type__options label > span {
    min-height: 108px;
    padding: 17px;
    border-radius: 18px;
  }
}

@media (max-width: 360px) {
  :root {
    --mobile-gutter: 17px;
  }

  .hero-scene,
  .hero-scene__content {
    min-height: 806px;
  }

  .hero-scene h1 {
    font-size: 59px;
  }

  .hero-scene__person {
    right: -43%;
    bottom: -7.5%;
    height: 57%;
  }

  .route-stage__heading h2,
  .map-section .section-heading h2 {
    font-size: 39px;
  }

  .application-intro h2 {
    font-size: 41px;
  }
}

/* source: mobile-attack-v20.css */
/* Mobile attack pass: readable routes, named city choices and generous tap areas. */

@media (max-width: 720px) {
  .site-header .menu-button {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .hero-scene__person {
    right: -27%;
  }

  .region-map {
    display: block;
    padding-top: 75%;
    padding-bottom: 0;
    overflow: hidden;
  }

  .mobile-city-picker {
    position: relative;
    z-index: 9;
    padding-top: 18px;
    border-top: 1px solid rgba(151, 224, 238, 0.18);
    background:
      radial-gradient(circle at 88% 0%, rgba(74, 184, 219, 0.14), transparent 42%),
      #061b3e;
  }

  .region-map.has-mobile-city-picker .map-marker {
    pointer-events: none;
  }

  .mobile-city-picker__label {
    margin: 0;
    padding: 0 20px;
    color: rgba(226, 242, 255, 0.66);
    font-size: 11px;
    font-weight: 760;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .mobile-city-picker__rail {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    padding: 0 14px 17px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 14px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    touch-action: pan-x;
  }

  .mobile-city-picker__rail::-webkit-scrollbar {
    display: none;
  }

  .mobile-city-picker__button {
    flex: 0 0 auto;
    min-height: 46px;
    padding: 0 17px;
    border: 1px solid rgba(180, 225, 242, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    color: rgba(241, 248, 255, 0.78);
    font: 700 14px/1 var(--font-body);
    white-space: nowrap;
    scroll-snap-align: center;
    transition:
      border-color 180ms ease,
      background-color 180ms ease,
      color 180ms ease,
      box-shadow 180ms ease;
  }

  .mobile-city-picker__button.is-active {
    border-color: rgba(133, 229, 237, 0.9);
    background: #f6fbff;
    color: #08275a;
    box-shadow: 0 10px 28px rgba(0, 9, 28, 0.28);
  }

  .region-map__intro,
  .region-map .city-panel {
    position: relative;
    inset: auto;
    width: auto;
    margin: 0 12px 12px;
    padding: 25px 21px;
    border-radius: 21px;
  }

  .region-map.has-selection .region-map__intro {
    display: none;
  }

  .region-map .city-panel {
    bottom: auto;
    max-height: none;
    overflow: visible;
  }

  .region-map .city-panel h3 {
    margin: 16px auto 10px;
  }

  .region-map .city-panel__actions {
    display: grid;
    justify-content: stretch;
    gap: 8px;
    width: 100%;
  }

  .region-map .city-panel__actions .button,
  .region-map .city-panel__actions .text-link {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }

  .resume-studio__actions > a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding-block: 9px;
  }

  .mobile-nav__phone {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

  .site-footer__contact a,
  .site-footer__social a,
  .site-footer__bottom button {
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    margin: 0;
  }

  .site-footer__contact {
    gap: 0;
  }

  .site-footer__social {
    gap: 2px;
  }

  .site-footer__bottom > div {
    gap: 0;
  }
}

@media (max-width: 360px) {
  .hero-scene__person {
    right: -30%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-city-picker__button {
    transition: none;
  }
}

/* source: interaction-invariants.css */
/* Shared pointer and touch invariants. */

@media (max-width: 720px), (pointer: coarse) {
  :where(
    .button,
    .menu-button,
    .icon-button,
    .mobile-nav a,
    .mobile-nav__phone,
    .route-step button,
    .story-filter,
    .support-tab,
    .mobile-city-picker__button,
    .form-progress__step,
    .cookie-banner button,
    .site-footer a,
    .site-footer button
  ) {
    min-height: 48px;
    touch-action: manipulation;
  }

  .cookie-banner .legal-text-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    padding-block: 10px;
  }

  .career-directions,
  .north-life__features,
  .story-filters,
  .support-tabs,
  .process-rail,
  .mobile-city-picker__rail {
    touch-action: pan-x pan-y pinch-zoom;
  }

  .cookie-banner .button,
  .cookie-banner .legal-text-button {
    min-height: 48px;
  }
}

/* source: motion-route-polish-v22.css */
/* Cross-dissolved video layers and the clarified life/relocation compositions. */

[data-seamless-video-loop="crossfade"] {
  isolation: isolate;
}

[data-seamless-video-loop="crossfade"] video[data-seamless-video-layer] {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  pointer-events: none;
  transition: none !important;
  will-change: opacity;
}

[data-seamless-video-loop="crossfade"].is-motion-unavailable video[data-seamless-video-layer] {
  opacity: 0 !important;
}

/* Life on the North: wider photographs with calm, legible numeric markers. */

.north-life__number {
  width: clamp(54px, 4.6vw, 68px);
  height: clamp(54px, 4.6vw, 68px);
  display: grid;
  place-items: center;
  margin: 0 0 clamp(16px, 2vw, 24px);
  border: 1px solid rgba(159, 231, 238, 0.64);
  border-radius: 50%;
  background: rgba(3, 20, 39, 0.58);
  box-shadow:
    0 14px 34px rgba(0, 6, 18, 0.24),
    inset 0 0 0 5px rgba(131, 224, 233, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: #a6edf0;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 820;
  letter-spacing: -0.02em;
  line-height: 1;
}

.north-life__number::after {
  display: none;
}

@media (min-width: 901px) {
  .north-life {
    min-height: 0;
    padding: clamp(72px, 7vw, 112px) 0 clamp(92px, 9vw, 144px);
  }

  .north-life__intro {
    padding-bottom: clamp(34px, 4vw, 56px);
  }

  .north-life__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(18px, 2vw, 28px);
    row-gap: clamp(20px, 2.4vw, 34px);
    padding-top: clamp(28px, 3.5vw, 50px);
  }

  .north-life__feature,
  .north-life__feature--reverse {
    min-height: clamp(380px, 34vw, 500px);
    border-radius: 24px;
  }

  .north-life__media,
  .north-life__feature--reverse .north-life__media {
    border-radius: inherit;
  }

  .north-life__media::after,
  .north-life__feature--reverse .north-life__media::after {
    background:
      linear-gradient(180deg, rgba(2, 13, 26, 0.01) 30%, rgba(3, 13, 26, 0.92) 100%),
      linear-gradient(90deg, rgba(3, 13, 26, 0.14), transparent 48%);
  }

  .north-life__copy,
  .north-life__feature--reverse .north-life__copy {
    padding: clamp(24px, 2.4vw, 34px);
  }

  .north-life__copy h3 {
    max-width: 16ch;
    font-size: clamp(30px, 2.7vw, 42px);
    line-height: 1;
  }

  .north-life__copy p {
    display: block;
    max-width: 42ch;
    margin-top: 12px;
    font-size: clamp(14px, 1.08vw, 17px);
    line-height: 1.46;
    -webkit-line-clamp: unset;
  }
}

@media (max-width: 900px) {
  .north-life__features {
    grid-auto-columns: min(88vw, 560px);
  }

  .north-life__feature,
  .north-life__feature--reverse {
    min-height: clamp(390px, 70vw, 470px);
  }

  .north-life__copy,
  .north-life__feature--reverse .north-life__copy {
    padding: 82px 26px 28px;
  }
}

@media (max-width: 720px) {
  .north-life__features {
    grid-auto-columns: min(90vw, 410px);
    gap: 14px;
  }

  .north-life__feature,
  .north-life__feature--reverse {
    min-height: clamp(410px, 116vw, 480px);
    border-radius: 24px;
  }

  .north-life__copy,
  .north-life__feature--reverse .north-life__copy {
    padding: 86px 24px 26px;
  }

  .north-life__number {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    font-size: 18px;
  }

  .north-life__copy h3 {
    font-size: clamp(29px, 8.2vw, 34px);
  }
}

/* Relocation route: the crab remains full-bleed while the three steps share one wrap. */

.route-stage {
  min-height: clamp(790px, 64vw, 940px);
  background: #eaf3fb;
}

@media (min-width: 901px) {
  .route-stage {
    min-height: max(780px, min(880px, calc(100svh - 78px)));
  }
}

.route-stage__crab {
  inset: 0 !important;
  opacity: 0.68;
  transform: scale(1.015);
  transform-origin: 62% 52%;
  transition: transform 1000ms cubic-bezier(0.2, 0.75, 0.25, 1);
  -webkit-mask-image: none;
  mask-image: none;
}

.route-stage__crab::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(238, 247, 253, 0.98) 0%, rgba(238, 247, 253, 0.74) 34%, rgba(238, 247, 253, 0.12) 70%),
    linear-gradient(0deg, rgba(225, 239, 249, 0.78) 0%, transparent 43%);
  content: "";
  pointer-events: none;
}

.route-stage:hover .route-stage__crab {
  opacity: 0.68;
  transform: scale(1.025);
}

.route-stage__heading {
  width: min(50%, 660px);
}

.route-stage__line,
.route-node {
  display: none;
}

.route-journey {
  position: absolute;
  z-index: 6;
  inset: auto clamp(24px, 3.2vw, 52px) clamp(24px, 3.2vw, 48px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 32px;
  background: rgba(238, 247, 253, 0.58);
  box-shadow:
    0 28px 70px rgba(13, 51, 99, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(22px) saturate(1.08);
  -webkit-backdrop-filter: blur(22px) saturate(1.08);
}

.route-step,
.route-step--1,
.route-step--2,
.route-step--3 {
  position: relative;
  inset: auto;
  width: auto;
}

.route-step button {
  min-height: 190px;
  padding: 20px;
  border-radius: 23px;
  background: rgba(250, 253, 255, 0.8);
  box-shadow:
    0 12px 30px rgba(22, 66, 121, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px) saturate(1.04);
  -webkit-backdrop-filter: blur(12px) saturate(1.04);
}

.route-step button:hover,
.route-step button:focus-visible,
.route-step button[aria-pressed="true"] {
  background: rgba(255, 255, 255, 0.94);
  transform: translateY(-4px);
}

@media (max-width: 900px) {
  .route-stage {
    min-height: 0;
    padding: 40px 28px 28px;
  }

  .route-stage__crab {
    inset: 0 !important;
    opacity: 0.46;
    transform: none;
  }

  .route-stage__crab::after {
    background:
      linear-gradient(180deg, rgba(238, 247, 253, 0.97) 0%, rgba(238, 247, 253, 0.64) 44%, rgba(229, 241, 250, 0.44) 100%),
      linear-gradient(90deg, rgba(238, 247, 253, 0.7), transparent 70%);
  }

  .route-stage__heading {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 660px);
  }

  .route-journey {
    position: relative;
    inset: auto;
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 32px;
    padding: 10px;
    border-radius: 28px;
    background: rgba(242, 249, 253, 0.74);
  }

  .route-journey::before,
  .route-step::before {
    display: none;
  }

  .route-step button {
    min-height: 0;
    padding: 18px 20px 20px;
    border-radius: 20px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (max-width: 620px) {
  .route-stage {
    margin-inline: 0;
    padding: 32px 16px 18px;
    border-radius: 28px;
  }

  .route-stage__heading > p:last-child {
    max-width: 28ch;
  }

  .route-journey {
    gap: 7px;
    margin-top: 26px;
    padding: 8px;
    border-radius: 24px;
  }

  .route-step button {
    padding: 16px;
    border-radius: 18px;
  }

  .route-step button:hover,
  .route-step button:focus-visible,
  .route-step button[aria-pressed="true"] {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-seamless-video-loop="crossfade"] video[data-seamless-video-layer] {
    display: none !important;
  }
}

/* source: mobile-rhythm-v23.css */
/*
 * Mobile rhythm and gesture safety.
 * The page owns the primary vertical gesture; regular content never becomes a
 * nested scroll surface. Only modal surfaces may scroll while the page is locked.
 */

@media (max-width: 900px) and (min-width: 721px) {
  .north-life__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: auto;
    gap: 18px;
    padding: 30px 0 12px;
    overflow: visible;
    scroll-snap-type: none;
  }

  .north-life__feature,
  .north-life__feature--reverse {
    min-height: 430px;
    scroll-snap-align: none;
  }

  .support-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: auto;
    gap: 10px;
    margin-right: 0;
    padding: 0;
    overflow: visible;
    overscroll-behavior: auto;
    scroll-snap-type: none;
    touch-action: pan-y pinch-zoom;
  }

  .support-tab {
    min-width: 0;
    scroll-snap-align: none;
  }
}

@media (max-width: 720px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  main {
    touch-action: pan-y pinch-zoom;
  }

  /* A brighter, colder aurora that remains behind the hero copy. */
  .hero-scene__aurora {
    top: -2%;
    right: -58%;
    bottom: 31%;
    left: -35%;
    opacity: 1;
    filter:
      saturate(1.42)
      contrast(1.06)
      brightness(1.1)
      drop-shadow(0 0 38px rgba(113, 231, 240, 0.32));
    transform: rotate(-1deg) scale(1.13);
    -webkit-mask-image:
      radial-gradient(ellipse 96% 88% at 60% 7%, #000 0%, rgba(0, 0, 0, 0.98) 58%, rgba(0, 0, 0, 0.66) 76%, transparent 96%);
    mask-image:
      radial-gradient(ellipse 96% 88% at 60% 7%, #000 0%, rgba(0, 0, 0, 0.98) 58%, rgba(0, 0, 0, 0.66) 76%, transparent 96%);
  }

  .hero-scene__aurora::after {
    background:
      radial-gradient(ellipse 54% 48% at 58% 27%, rgba(173, 255, 251, 0.26), transparent 70%),
      radial-gradient(ellipse 68% 58% at 72% 34%, rgba(77, 205, 231, 0.18), transparent 74%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(220, 247, 255, 0.24));
    mix-blend-mode: screen;
  }

  .hero-scene__aurora-video {
    filter: saturate(1.25) contrast(1.03) brightness(1.06);
  }

  /* Life on the North: six equal, wide frames in a calm vertical rhythm. */
  .north-life {
    padding-block: 82px 88px;
  }

  .north-life__intro {
    padding-bottom: 26px;
  }

  .north-life__intro-grid {
    margin-top: 22px;
  }

  .north-life h2 {
    max-width: 9.2ch;
    font-size: clamp(40px, 11.3vw, 47px);
    line-height: 0.96;
  }

  .north-life__count {
    width: min(190px, 58vw);
    margin-top: 26px;
  }

  .north-life__features {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-auto-flow: row;
    grid-auto-columns: auto;
    gap: 16px;
    margin: 0;
    padding: 28px 0 0;
    overflow: visible;
    overscroll-behavior: auto;
    scroll-snap-type: none;
    touch-action: pan-y pinch-zoom;
  }

  .north-life__feature,
  .north-life__feature--reverse {
    width: 100%;
    min-height: clamp(358px, 99vw, 414px);
    contain: none;
    border-radius: 22px;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  .north-life__media,
  .north-life__feature--reverse .north-life__media {
    border-radius: inherit;
  }

  .north-life__media::after,
  .north-life__feature--reverse .north-life__media::after {
    background:
      linear-gradient(180deg, rgba(2, 13, 26, 0.02) 28%, rgba(3, 13, 26, 0.94) 100%),
      linear-gradient(90deg, rgba(3, 13, 26, 0.12), transparent 58%);
  }

  .north-life__copy,
  .north-life__feature--reverse .north-life__copy {
    display: grid;
    align-content: end;
    padding: 76px 22px 23px;
  }

  .north-life__number {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    font-size: 17px;
  }

  .north-life__copy h3 {
    max-width: 14ch;
    font-size: clamp(27px, 7.6vw, 32px);
    line-height: 0.98;
  }

  .north-life__copy p {
    display: block;
    max-width: 31ch;
    margin-top: 9px;
    overflow: visible;
    font-size: 14px;
    line-height: 1.45;
    -webkit-line-clamp: unset;
  }

  .north-life__signature {
    margin-top: 38px;
  }

  /* Standard sections are grids or wrapping rows, never swipe-only rails. */
  .career-directions,
  .support-tabs,
  .process-rail,
  .story-filters,
  .mobile-city-picker__rail {
    max-height: none;
    overflow: visible;
    overscroll-behavior: auto;
    scroll-snap-type: none;
    scrollbar-width: auto;
    touch-action: pan-y pinch-zoom;
  }

  .career-directions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: auto;
    gap: 12px;
    margin-right: 0;
    padding: 0;
  }

  .career-direction {
    width: 100%;
    min-width: 0;
    min-height: 264px;
    border-radius: 20px;
    scroll-snap-align: none;
  }

  .career-direction__index {
    top: 13px;
    right: 13px;
    width: 38px;
    height: 38px;
  }

  .career-direction__copy {
    gap: 6px;
    padding: 62px 11px 16px;
  }

  .career-direction__copy small {
    font-size: 9px;
    letter-spacing: 0.06em;
  }

  .career-direction__copy strong {
    max-width: 100%;
    overflow-wrap: normal;
    font-size: 17px;
    hyphens: auto;
    letter-spacing: -0.035em;
    line-height: 1.02;
  }

  .career-direction__copy > span {
    gap: 6px;
    font-size: 11px;
  }

  .support-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: auto;
    gap: 10px;
    margin-right: 0;
    padding: 0;
  }

  .support-tab {
    width: 100%;
    min-width: 0;
    min-height: 112px;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
    padding: 14px;
    border-radius: 19px;
    scroll-snap-align: none;
  }

  .support-tab:hover,
  .support-tab.is-active {
    transform: none;
  }

  .support-tab > img:first-child {
    width: 27px;
    height: 27px;
  }

  .support-tab strong {
    font-size: 17px;
    line-height: 1.05;
  }

  .support-tab small {
    font-size: 10px;
    line-height: 1.3;
  }

  .support-tab__arrow {
    display: none;
  }

  .process-rail {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: auto;
    gap: 10px;
    margin-right: 0;
    padding: 0;
    border-radius: 0;
  }

  .process-rail li {
    min-width: 0;
    min-height: 174px;
    flex-basis: auto;
    padding: 17px;
    border-radius: 20px;
    scroll-snap-align: none;
  }

  .process-rail img {
    width: 28px;
    height: 28px;
    margin: 22px 0 auto;
  }

  .process-rail strong {
    font-size: 16px;
  }

  .story-controls {
    margin-inline: 0;
  }

  .story-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 26px;
    padding: 0;
  }

  .story-filter {
    flex: 0 1 auto;
    scroll-snap-align: none;
  }

  .mobile-city-picker__rail {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
    padding: 0 14px 17px;
  }

  .mobile-city-picker__button {
    width: 100%;
    min-width: 0;
    padding-inline: 10px;
    white-space: normal;
    scroll-snap-align: none;
  }

  .mobile-city-picker__button:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  /* The page is locked only while these surfaces are open, so they own scroll. */
  .mobile-nav__panel,
  .dialog {
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y pinch-zoom;
  }

  .mobile-nav__panel {
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 350px) {
  .career-directions {
    grid-template-columns: minmax(0, 1fr);
  }

  .career-direction {
    min-height: 320px;
  }
}

/* source: mobile-attention-canon-v24.css */
/*
 * Mobile attention canon.
 * Keep one dominant idea per viewport, reveal the next action early and retain
 * 48px touch targets without turning every component into a full-screen poster.
 */

@media (max-width: 720px) {
  :root {
    --mobile-section-space: 64px;
  }

  .section {
    padding-block: var(--mobile-section-space);
  }

  .section-heading,
  .section-heading--inline,
  .section-heading--split {
    gap: 14px;
    margin-bottom: 28px;
  }

  .section-heading h2,
  .section-heading--inline h2,
  .section-heading--split h2,
  .vacancies-section .section-heading h2,
  .resume-studio .section-heading h2,
  .map-section .section-heading h2,
  .support-section .section-heading h2,
  .process-section .section-heading h2,
  .stories-section .section-heading h2,
  .students-panel__content h2,
  .application-intro h2 {
    max-width: none;
    font-size: clamp(34px, 9.6vw, 40px);
    letter-spacing: -0.055em;
    line-height: 0.98;
  }

  .section-heading > p,
  .section-heading--inline > p,
  .section-heading--split > p {
    max-width: 34ch;
    font-size: 15px;
    line-height: 1.5;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  /* The first screen remains aspirational, but it now hints at what follows. */
  .hero-scene,
  .hero-scene__content {
    min-height: 752px;
  }

  .hero-scene__content {
    padding: 94px 0 88px;
  }

  .hero-scene h1 {
    font-size: clamp(58px, 16.8vw, 66px);
    line-height: 0.86;
  }

  .hero-scene__lead {
    margin-top: 21px;
    font-size: 19px;
  }

  .hero-scene__actions {
    margin-top: 22px;
  }

  .hero-scene__mobile-proof {
    margin-top: 11px;
    padding: 10px 12px;
  }

  .hero-scene__person {
    right: -10%;
    bottom: -6%;
    height: 56%;
  }

  /* Three promises should scan in a few seconds, not occupy another screen. */
  .decision-path {
    padding-block: 14px 16px;
  }

  .decision-path__label {
    margin-bottom: 8px;
    font-size: 10px;
  }

  .decision-path ol {
    gap: 6px;
  }

  .decision-path a {
    min-height: 72px;
    gap: 11px;
    padding: 11px 13px;
    border-radius: 14px;
  }

  .decision-path__number {
    width: 32px;
    height: 32px;
  }

  .decision-path strong {
    font-size: 16px;
  }

  .decision-path small {
    margin-top: 3px;
    font-size: 11px;
    line-height: 1.35;
  }

  /* Wide photography remains, but each memory is a landscape card, not a slide. */
  .north-life {
    padding-block: 62px 68px;
  }

  .north-life__intro {
    padding-bottom: 16px;
  }

  .north-life__intro-grid {
    margin-top: 14px;
  }

  .north-life h2 {
    max-width: none;
    font-size: clamp(34px, 9.5vw, 38px);
    line-height: 0.98;
  }

  .north-life__count {
    width: min(170px, 52vw);
    margin-top: 17px;
  }

  .north-life__features {
    gap: 12px;
    padding-top: 20px;
  }

  .north-life__feature,
  .north-life__feature--reverse {
    min-height: clamp(242px, 66vw, 268px);
    border-radius: 19px;
  }

  .north-life__copy,
  .north-life__feature--reverse .north-life__copy {
    padding: 52px 18px 17px;
  }

  .north-life__number {
    width: 40px;
    height: 40px;
    margin-bottom: 9px;
    font-size: 14px;
  }

  .north-life__copy h3 {
    max-width: 18ch;
    font-size: clamp(21px, 6.1vw, 24px);
    line-height: 1;
  }

  .north-life__copy p {
    max-width: 36ch;
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.38;
  }

  .north-life__signature {
    margin-top: 26px;
    padding-top: 17px;
    font-size: clamp(27px, 8.4vw, 36px);
  }

  /* Relocation: a compact decision stack and a shorter proof block. */
  .route-section {
    padding-block: 62px 66px;
  }

  .route-stage {
    padding: 25px 14px 15px;
    border-radius: 24px;
  }

  .route-stage__heading h2 {
    max-width: none;
    font-size: clamp(33px, 9.2vw, 37px);
    line-height: 0.98;
  }

  .route-stage__heading > p:last-child {
    max-width: 30ch;
    margin-top: 13px;
    font-size: 14px;
    line-height: 1.45;
  }

  .route-journey {
    gap: 6px;
    margin-top: 19px;
    padding: 7px;
    border-radius: 20px;
  }

  .route-step button {
    padding: 12px 13px 13px;
    border-radius: 16px;
  }

  .route-step__top {
    gap: 8px;
  }

  .route-step__icon {
    width: 32px;
    height: 32px;
  }

  .route-step__icon img {
    width: 17px;
    height: 17px;
  }

  .route-step__number {
    font-size: 30px;
  }

  .route-step__rule {
    margin-block: 6px;
  }

  .route-step strong {
    font-size: 16px;
  }

  .route-step__copy {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.38;
  }

  .route-stage + .project-summary {
    margin-top: 27px;
  }

  .project-summary {
    gap: 14px;
    padding-block: 21px;
  }

  .project-summary h3 {
    font-size: 27px;
  }

  .project-summary__copy p {
    font-size: 14px;
    line-height: 1.48;
  }

  .project-summary + .metrics {
    margin-top: 17px;
  }

  .metrics {
    gap: 9px;
  }

  .metrics article {
    min-height: 94px;
    padding: 14px;
    border-radius: 16px;
  }

  .metrics strong {
    font-size: 31px;
  }

  /* Repeated choice grids use equal compact cells and keep all controls visible. */
  .vacancies-section,
  .map-section,
  .support-section,
  .process-section,
  .stories-section,
  .students-section,
  .application-section {
    padding-block: 64px;
  }

  .career-directions {
    gap: 10px;
  }

  .career-direction {
    min-height: 228px;
    border-radius: 17px;
  }

  .career-direction__index {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
  }

  .career-direction__copy {
    padding: 50px 10px 13px;
  }

  .career-direction__copy strong {
    font-size: clamp(15px, 4.4vw, 17px);
  }

  .career-direction__copy > span {
    font-size: 10px;
  }

  /* Resume: retain the human image, but hand content back to the user sooner. */
  .resume-studio {
    padding: clamp(258px, 72vw, 286px) 0 58px;
  }

  .resume-studio h2 {
    font-size: clamp(34px, 9.7vw, 39px);
    line-height: 0.98;
  }

  .resume-studio__copy > p:not(.eyebrow) {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.5;
  }

  .resume-studio__benefits {
    gap: 7px;
    margin-top: 18px;
  }

  .resume-studio__benefits li {
    min-height: 48px;
    padding: 10px 12px;
    border-radius: 14px;
  }

  .resume-studio__actions {
    gap: 11px;
    margin-top: 19px;
  }

  /* Map controls stay explicit, while the map and facts stop filling a viewport. */
  .region-map {
    padding-top: 64%;
    border-radius: 22px;
  }

  .mobile-city-picker {
    padding-top: 14px;
  }

  .mobile-city-picker__rail {
    gap: 7px;
    padding-bottom: 14px;
  }

  .mobile-city-picker__button {
    min-height: 44px;
    font-size: 13px;
  }

  .region-map__intro,
  .region-map .city-panel {
    padding: 19px 17px;
    border-radius: 18px;
  }

  .region-map__intro h3,
  .region-map .city-panel h3 {
    font-size: 31px;
    line-height: 0.97;
  }

  .region-map__intro > p:not(.eyebrow),
  .region-map .city-panel > p {
    font-size: 13px;
    line-height: 1.45;
  }

  .region-map__facts {
    margin-top: 14px;
  }

  /* Travel: facts and route image should coexist inside one viewport. */
  .transport-section {
    padding-block: 64px;
  }

  .transport-showcase {
    gap: 15px;
    padding: 15px 10px 10px;
    border-radius: 23px;
  }

  .transport-showcase__copy {
    padding: 20px 15px 11px;
  }

  .transport-showcase__copy h2 {
    font-size: clamp(35px, 9.8vw, 40px);
    line-height: 0.98;
  }

  .transport-showcase__facts {
    margin-top: 17px;
  }

  .transport-showcase__facts div {
    min-height: 52px;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 9px;
  }

  .transport-showcase__note {
    margin-top: 13px;
    font-size: 11px;
    line-height: 1.45;
  }

  .transport-showcase__visual {
    padding: 0 6px 6px;
  }

  .transport-showcase__visual img {
    aspect-ratio: 4 / 3;
  }

  /* Support: the tab grid plus the detail card fit into one visual chapter. */
  .support-tab {
    min-height: 96px;
    padding: 12px;
    border-radius: 16px;
  }

  .support-tab strong {
    font-size: 16px;
  }

  .support-detail,
  .support-detail__content {
    min-height: 480px;
  }

  .support-detail {
    margin-top: 16px;
    border-radius: 22px;
  }

  .support-detail__content {
    padding: 24px 21px;
  }

  .support-detail h3 {
    font-size: 36px;
    line-height: 0.98;
  }

  .support-detail li {
    font-size: 14px;
    line-height: 1.45;
  }

  /* Eight steps become a readable dashboard rather than four mini-screens. */
  .process-rail {
    gap: 8px;
  }

  .process-rail li {
    min-height: 148px;
    padding: 14px;
    border-radius: 17px;
  }

  .process-rail img {
    width: 25px;
    height: 25px;
    margin: 15px 0 auto;
  }

  .process-rail strong {
    font-size: 15px;
  }

  /* Stories: preserve identity and proof while fitting two cards per viewport. */
  .story-filters {
    gap: 7px;
    margin-bottom: 20px;
  }

  .story-filter {
    min-height: 44px;
    padding-inline: 12px;
    font-size: 11px;
  }

  .stories-section .story-feed {
    gap: 12px;
    margin-top: 27px;
  }

  .stories-section .story-message {
    padding-top: 24px;
  }

  .stories-section .story-message__avatar {
    left: 18px;
    width: 56px;
    height: 56px;
  }

  .stories-section .story-message__bubble {
    padding: 45px 18px 17px;
    border-radius: 19px;
  }

  .stories-section .story-message__meta strong {
    font-size: 19px;
  }

  .stories-section .story-message__quote {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.48;
  }

  .stories-section .story-message__time {
    padding-top: 15px;
  }

  .story-disclaimer {
    margin-top: 28px;
  }

  /* Students: image, proposition and action form one chapter, not two screens. */
  .students-panel {
    border-radius: 22px;
  }

  .students-panel__media {
    min-height: 260px;
  }

  .students-panel__content {
    padding: 26px 21px 30px;
  }

  .students-panel__content > p:not(.eyebrow) {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.5;
  }

  .students-panel .feature-list {
    gap: 9px;
    margin-top: 19px;
  }

  .students-panel .feature-list li {
    font-size: 13px;
    line-height: 1.4;
  }

  .students-panel__actions {
    margin-top: 20px;
  }

  /* Evidence and application are dense, but never cramped below tap standards. */
  .press-grid {
    gap: 10px;
    margin-top: 27px;
  }

  .press-card {
    min-height: 132px;
    padding: 19px;
    border-radius: 18px;
  }

  .application-shell {
    border-radius: 22px;
  }

  .application-intro {
    min-height: 380px;
    padding: 26px 21px;
  }

  .application-intro > p:not(.eyebrow) {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.48;
  }

  .application-intro__facts {
    gap: 8px 12px;
    margin-top: 17px;
  }

  .application-form {
    padding: 22px 16px 26px;
  }

  .form-progress {
    margin-bottom: 20px;
    padding-bottom: 17px;
  }

  .form-grid {
    gap: 12px;
  }

  .applicant-type__options {
    gap: 8px;
  }

  .applicant-type__options label > span {
    min-height: 88px;
    padding: 13px;
    border-radius: 15px;
  }
}

@media (max-width: 350px) {
  .hero-scene,
  .hero-scene__content {
    min-height: 724px;
  }

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

  .career-direction {
    min-height: 214px;
  }

  .career-direction__copy strong {
    font-size: 14px;
  }

  .career-direction__copy > span {
    font-size: 9px;
  }
}

@media (min-width: 600px) and (max-width: 900px) {
  .north-life__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: auto;
    gap: 14px;
    overflow: visible;
    scroll-snap-type: none;
  }

  .north-life__feature,
  .north-life__feature--reverse {
    min-height: clamp(260px, 38vw, 320px);
  }
}

@media (min-width: 721px) and (max-width: 900px) {
  .section {
    padding-block: 72px;
  }

  .section-heading h2,
  .section-heading--inline h2,
  .section-heading--split h2,
  .support-section .section-heading h2,
  .students-panel h2,
  .application-intro h2 {
    font-size: clamp(42px, 5.8vw, 48px);
    line-height: 0.98;
  }

  .hero-scene,
  .hero-scene__content {
    min-height: 740px;
  }

  .hero-scene h1 {
    font-size: clamp(68px, 9vw, 74px);
  }

  .north-life {
    min-height: 0;
    padding-block: 72px 78px;
  }

  .north-life__intro {
    padding-bottom: 22px;
  }

  .north-life__intro-grid {
    margin-top: 17px;
  }

  .north-life h2 {
    max-width: 18ch;
    font-size: clamp(44px, 6.1vw, 50px);
    line-height: 0.98;
  }

  .north-life__count {
    margin-top: 20px;
  }

  .north-life__features {
    padding-top: 24px;
  }

  .north-life__copy,
  .north-life__feature--reverse .north-life__copy {
    padding: 62px 21px 20px;
  }

  .north-life__number {
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
    font-size: 15px;
  }

  .north-life__copy h3 {
    font-size: clamp(23px, 3.4vw, 28px);
  }

  .north-life__copy p {
    margin-top: 7px;
    font-size: 13px;
    line-height: 1.4;
  }

  .route-section {
    padding-block: 72px;
  }

  .route-stage {
    padding: 32px 24px 22px;
  }

  .route-stage__heading h2 {
    max-width: 16ch;
    font-size: clamp(42px, 5.8vw, 48px);
    line-height: 0.98;
  }

  .route-stage__heading > p:last-child {
    margin-top: 15px;
    font-size: 15px;
  }

  .route-journey {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 24px;
    padding: 8px;
  }

  .route-step button {
    height: 100%;
    padding: 15px;
  }

  .route-step__number {
    font-size: 32px;
  }

  .route-step strong {
    font-size: 16px;
  }

  .route-step__copy {
    font-size: 12px;
    line-height: 1.38;
  }

  .route-stage + .project-summary {
    margin-top: 32px;
  }

  .career-direction {
    min-height: 280px;
  }

  .students-panel__media {
    min-height: 300px;
  }

  .students-panel__content {
    padding: 34px 30px 38px;
  }

  .students-panel__content > p:not(.eyebrow) {
    margin-top: 17px;
    font-size: 15px;
  }
}

/* source: desktop-layout-system.css */
/*
 * Canonical desktop layout system.
 *
 * Invariants:
 * - one semantic chapter occupies at least one viewport;
 * - content lives in the shared .container safety plane;
 * - headings, controls and media are bounded to remain readable together;
 * - component columns never overlap or create an inner scroll surface.
 *
 * Mobile composition is intentionally isolated in mobile-rhythm-v23.css and
 * mobile-attention-canon-v24.css.
 */

.project-proof-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(84, 210, 226, 0.1), transparent 28%),
    linear-gradient(180deg, #f7fbfe, #eef5fa);
}

.project-proof-section .project-summary {
  margin-top: 0;
}

.project-proof-section .metrics {
  margin-bottom: 0;
}

@media (min-width: 901px) {
  :root {
    --container: 1240px;
    --desktop-section-space: clamp(50px, 4.6vw, 64px);
    --desktop-heading-gap: 18px;
    --desktop-heading-space: clamp(28px, 2.8vw, 38px);
    --desktop-feature-radius: 18px;
    --desktop-sticky-header-height: 70px;
    --desktop-route-safe-edge: clamp(48px, 6vh, 64px);
  }

  html {
    scroll-padding-top: var(--desktop-sticky-header-height);
  }

  /* Shared chapter frame and attention plane. */
  main > section:not(.about-section) {
    min-height: 100svh;
  }

  main > .section:not(.route-section) {
    display: flex;
    align-items: center;
  }

  main > .section:not(.route-section) > .container {
    flex: 0 1 auto;
  }

  .section,
  .vacancies-section,
  .support-section {
    padding-block: var(--desktop-section-space);
  }

  .section-heading,
  .section-heading--inline,
  .section-heading--split {
    gap: var(--desktop-heading-gap);
    margin-bottom: var(--desktop-heading-space);
  }

  .section-heading h2,
  .section-heading--inline h2,
  .section-heading--split h2,
  .vacancies-section .section-heading h2,
  .resume-studio h2,
  .map-section .section-heading h2,
  .support-section .section-heading h2,
  .process-section .section-heading h2,
  .stories-section .section-heading h2,
  .students-panel__content h2,
  .application-intro h2 {
    max-width: 820px;
    font-size: clamp(40px, 3.8vw, 50px);
    letter-spacing: -0.052em;
    line-height: 0.98;
  }

  .section-heading > p,
  .section-heading--inline > p,
  .section-heading--split > p {
    max-width: 46ch;
    font-size: 14px;
    line-height: 1.48;
  }

  /* Hero. */
  .hero,
  .hero-scene,
  .hero-scene__content {
    min-height: 100svh;
  }

  .hero-scene h1 {
    font-size: clamp(68px, 7vw, 88px);
    line-height: 0.86;
  }

  .hero-scene__lead {
    margin-top: 20px;
    font-size: clamp(19px, 1.65vw, 24px);
  }

  /* North-life cards: one readable 3 x 2 field on standard laptops. */
  .north-life {
    padding: var(--desktop-section-space) 0;
  }

  .north-life__intro {
    padding-bottom: 18px;
  }

  .north-life h2 {
    max-width: 820px;
    font-size: clamp(40px, 3.8vw, 50px);
    line-height: 0.98;
  }

  .north-life__features {
    gap: 14px;
    padding-top: 18px;
  }

  .north-life__feature,
  .north-life__feature--reverse {
    min-height: clamp(205px, 18.5vw, 225px);
    border-radius: 19px;
  }

  .north-life__copy,
  .north-life__feature--reverse .north-life__copy {
    padding: 18px;
  }

  .north-life__number {
    width: 34px;
    height: 34px;
    margin-bottom: 8px;
    box-shadow: inset 0 0 0 3px rgba(131, 224, 233, 0.05);
    font-size: 13px;
  }

  .north-life__copy h3 {
    max-width: 18ch;
    font-size: clamp(21px, 1.9vw, 25px);
    line-height: 1.02;
  }

  .north-life__copy p {
    display: -webkit-box;
    margin-top: 6px;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.38;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .north-life__signature {
    margin-top: 22px;
    padding-top: 14px;
    font-size: clamp(28px, 2.8vw, 36px);
    letter-spacing: -0.045em;
  }

  /* Relocation scene: the crab stays full-frame, content remains bounded. */
  .route-section,
  .route-stage,
  .route-stage__safe-area {
    height: 100svh;
    min-height: 100svh;
  }

  .route-section {
    padding-block: 0;
    scroll-margin-top: calc(-1 * var(--desktop-sticky-header-height));
  }

  .route-stage__safe-area {
    position: relative;
    z-index: 6;
    width: min(1040px, calc(100% - 64px));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-inline: auto;
    padding: calc(var(--desktop-sticky-header-height) + var(--desktop-route-safe-edge)) 0
      var(--desktop-route-safe-edge);
  }

  .route-stage__heading {
    position: relative;
    inset: auto;
    width: min(470px, 46%);
    transform: none;
  }

  .route-stage__heading h2 {
    max-width: 14ch;
    font-size: clamp(40px, 3.9vw, 48px);
    line-height: 0.96;
  }

  .route-stage__heading > p:last-child {
    max-width: 38ch;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.42;
  }

  .route-journey {
    position: relative;
    inset: auto;
    width: 100%;
    gap: 8px;
    margin-top: auto;
    padding: 7px;
    border-radius: 22px;
    transform: none;
  }

  .route-step button {
    min-height: 126px;
    padding: 13px 15px;
    border-radius: 16px;
  }

  .route-step__top {
    gap: 8px;
  }

  .route-step__icon {
    width: 32px;
    border-radius: 10px;
  }

  .route-step__icon img {
    width: 17px;
    height: 17px;
  }

  .route-step__number {
    font-size: 26px;
  }

  .route-step__rule {
    width: 26px;
    margin: 6px 0;
  }

  .route-step strong {
    font-size: 17px;
  }

  .route-step__copy {
    margin-top: 3px;
    font-size: 11px;
    line-height: 1.32;
  }

  /* Project proof is a separate, centred chapter. */
  .project-proof-section .container {
    display: grid;
    align-content: center;
  }

  .project-proof-section .project-summary {
    gap: clamp(36px, 5vw, 72px);
    padding-block: clamp(28px, 4vh, 40px);
  }

  .project-summary h3,
  .project-proof-section .project-summary h3 {
    font-size: clamp(34px, 3.4vw, 44px);
  }

  .project-summary__copy p {
    font-size: 14px;
    line-height: 1.5;
  }

  .project-summary__copy p + p {
    margin-top: 10px;
  }

  .project-proof-section .metrics {
    margin-top: clamp(28px, 4vh, 40px);
  }

  .metrics article {
    min-height: 108px;
    padding: 18px 22px;
  }

  .metrics strong {
    font-size: clamp(36px, 3.8vw, 46px);
  }

  .metrics span {
    font-size: 12px;
  }

  /* Vacancy directions. */
  .career-directions {
    gap: 12px;
    margin-top: 26px;
  }

  .career-direction {
    min-height: clamp(220px, 20vw, 250px);
    border-radius: 17px;
  }

  .career-direction__index {
    top: 13px;
    right: 13px;
    width: 32px;
    height: 32px;
    font-size: 10px;
  }

  .career-direction__copy {
    gap: 5px;
    padding: 44px 18px 17px;
  }

  .career-direction__copy strong {
    font-size: clamp(21px, 1.9vw, 26px);
  }

  /* Map: chart-like media scales from the remaining viewport height. */
  .region-map {
    height: clamp(480px, calc(100svh - 270px), 680px);
    min-height: 0;
    aspect-ratio: auto;
  }

  /*
   * The raster, video and WGS84 projection all use the same 4:3 canvas.
   * Keep the marker plane on that canvas even when the cinematic frame is
   * shorter and crops the media with object-fit: cover.
   */
  .region-map__markers {
    inset: auto;
    top: 50%;
    left: 50%;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    transform: translate(-50%, -50%);
  }

  .region-map__intro {
    top: 24px;
    right: 28px;
    left: auto;
    padding: 24px;
  }

  .region-map__intro h3,
  .region-map .city-panel h3 {
    font-size: clamp(34px, 3.2vw, 42px);
    line-height: 0.96;
  }

  .region-map__intro > p:not(.eyebrow) {
    margin-top: 13px;
    font-size: 13px;
  }

  .region-map__facts {
    margin-top: 18px;
  }

  .region-map .city-panel {
    right: 28px;
    bottom: 32px;
    width: min(400px, 38%);
    padding: 24px;
    border-radius: 22px;
  }

  .region-map .city-panel h3 {
    margin: 18px auto 10px;
  }

  .region-map .city-panel > p:not(.city-panel__note) {
    font-size: 13px;
    line-height: 1.45;
  }

  /* Support: two explicit columns with a real gap; no editorial overlap. */
  .support-layout {
    grid-template-columns: minmax(270px, 320px) minmax(0, 1fr);
    gap: clamp(20px, 2.2vw, 28px);
    align-items: stretch;
  }

  .support-tabs {
    z-index: 2;
    grid-template-rows: repeat(4, minmax(0, 1fr));
    gap: 7px;
    align-self: stretch;
    margin-right: 0;
  }

  .support-tab {
    min-height: 0;
    grid-template-columns: 34px minmax(0, 1fr) 16px;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 16px;
  }

  .support-tab:hover,
  .support-tab.is-active {
    transform: none;
  }

  .support-tab > img:first-child {
    width: 22px;
    height: 22px;
  }

  .support-tab strong {
    font-size: 17px;
  }

  .support-tab__arrow {
    width: 15px;
    height: 15px;
  }

  .support-detail,
  .support-detail__content {
    min-height: clamp(410px, calc(100svh - 440px), 460px);
  }

  .support-detail__content {
    width: min(500px, 62%);
    padding: clamp(28px, 3.2vw, 40px);
  }

  .support-detail h3 {
    font-size: clamp(36px, 3.6vw, 46px);
    line-height: 0.94;
  }

  .support-detail ul {
    margin-top: 22px;
  }

  /* Process, stories and closing proof use bounded controls. */
  .process-rail li {
    min-height: 160px;
    padding: 18px;
  }

  .process-rail img {
    width: 25px;
    height: 25px;
    margin: 20px 0 auto;
  }

  .process-rail strong {
    font-size: clamp(16px, 1.4vw, 19px);
  }

  .stories-section .story-slot,
  .stories-section .story-slot:nth-child(2),
  .stories-section .story-slot:nth-child(3),
  .stories-section .story-slot:nth-child(4) {
    min-height: 264px;
  }

  .stories-section .story-message__bubble {
    min-height: 258px;
  }

  .story-disclaimer {
    margin-top: 28px;
  }

  .students-panel__media {
    min-height: 520px;
  }

  .students-panel__content {
    padding: clamp(34px, 3.8vw, 46px);
  }

  .students-panel__content > p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.5;
  }

  .students-panel .feature-list {
    gap: 10px;
    margin-top: 22px;
  }

  .students-panel .feature-list img {
    width: 18px;
    height: 18px;
  }

  .application-section {
    padding-block: clamp(36px, 5vh, 46px);
  }

  .application-intro,
  .application-form {
    min-height: 620px;
    padding: clamp(32px, 3.5vw, 42px);
  }

  .form-progress {
    margin-bottom: 24px;
    padding-bottom: 16px;
  }
}

@media (min-width: 901px) and (max-width: 1023px) {
  .support-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .support-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(72px, 1fr));
  }

  .support-detail,
  .support-detail__content {
    min-height: 360px;
  }
}

@media (min-width: 1024px) {
  .stories-section .story-feed {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  .stories-section .story-slot:nth-child(3) {
    width: auto;
    grid-column: auto;
    justify-self: stretch;
  }

  .stories-section .story-message {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 7px;
  }

  .stories-section .story-message__avatar {
    width: 44px;
    height: 44px;
  }

  .stories-section .story-message__bubble {
    padding: 16px 13px 13px;
  }

  .stories-section .story-message__meta strong {
    font-size: 17px;
  }

  .stories-section .story-message__quote {
    font-size: 12px;
    line-height: 1.46;
  }
}

@media (min-width: 1080px) {
  .north-life__features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
