@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;
  }
}
