@font-face {
  font-family: "Rubizh Text";
  src: url("/assets/fonts/tektur-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Rubizh Display";
  src: url("/assets/fonts/tektur-condensed-black.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

:root {
  --yellow: #c4a006;
  --yellow-bright: #ffd500;
  --off-white: #b8b8b8;
  --white: #ffffff;
  --gray: #7a7a7a;
  --black: #171717;
  --dark: #212121;
  --rich-black: #0b0b0b;
  --line: rgba(184, 184, 184, 0.22);
  --shell: 1360px;
  --pad: clamp(20px, 3.2vw, 48px);
  --section-space: clamp(88px, 10vw, 160px);
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--off-white);
  font-family: "Rubizh Text", sans-serif;
  font-size: 17px;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  content: "";
  opacity: 0.035;
  background-image:
    radial-gradient(circle at 20% 30%, #fff 0 0.5px, transparent 0.65px),
    radial-gradient(circle at 80% 65%, #fff 0 0.4px, transparent 0.6px);
  background-size: 5px 5px, 7px 7px;
  mix-blend-mode: screen;
}

::selection {
  background: var(--yellow-bright);
  color: var(--black);
}

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

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

button,
input,
select {
  font: inherit;
}

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

button {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--yellow-bright);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  font-family: "Rubizh Display", sans-serif;
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.94;
  text-transform: uppercase;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--yellow-bright);
  color: var(--black);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.shell {
  width: min(calc(100% - (var(--pad) * 2)), var(--shell));
  margin-inline: auto;
}

.brand-grid {
  position: relative;
  isolation: isolate;
}

.brand-grid::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.48;
  background-image:
    linear-gradient(45deg, transparent 49.55%, rgba(184, 184, 184, 0.07) 49.8%, rgba(184, 184, 184, 0.07) 50.2%, transparent 50.45%),
    linear-gradient(-45deg, transparent 49.55%, rgba(184, 184, 184, 0.07) 49.8%, rgba(184, 184, 184, 0.07) 50.2%, transparent 50.45%),
    linear-gradient(90deg, transparent 49.55%, rgba(184, 184, 184, 0.055) 49.8%, rgba(184, 184, 184, 0.055) 50.2%, transparent 50.45%),
    linear-gradient(0deg, transparent 49.55%, rgba(184, 184, 184, 0.055) 49.8%, rgba(184, 184, 184, 0.055) 50.2%, transparent 50.45%);
  background-size: 120px 120px;
}

.logo-pattern::after {
  position: absolute;
  inset: -60px;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: currentColor;
  opacity: 0.018;
  -webkit-mask-image: url("/assets/brand/wordmark-ua.png");
  mask-image: url("/assets/brand/wordmark-ua.png");
  -webkit-mask-size: 210px 42px;
  mask-size: 210px 42px;
  -webkit-mask-repeat: repeat;
  mask-repeat: repeat;
  transform: rotate(-12deg) scale(1.08);
}

.brand-wordmark,
.brand-symbol,
.brand-chevron {
  display: block;
  flex: none;
  background-color: currentColor;
  -webkit-mask-image: var(--brand-mark);
  mask-image: var(--brand-mark);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow-bright);
  font-family: "Rubizh Display", sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 15px 20px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-family: "Rubizh Display", sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.045em;
  line-height: 1;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button--bright {
  border-color: var(--yellow-bright);
  background: var(--yellow-bright);
  color: var(--black);
}

.button--bright:hover {
  background: var(--white);
  border-color: var(--white);
}

.button--dark {
  border-color: var(--black);
  background: var(--black);
  color: var(--yellow-bright);
}

.button--dark:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.ticker {
  position: relative;
  z-index: 70;
  height: 36px;
  overflow: hidden;
  border-bottom: 1px solid var(--black);
  background: var(--yellow-bright);
  color: var(--black);
}

.ticker__track {
  display: flex;
  width: max-content;
  min-width: 100%;
  height: 100%;
  align-items: center;
  justify-content: space-around;
  gap: 40px;
  white-space: nowrap;
  font-family: "Rubizh Display", sans-serif;
  font-size: 14px;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.ticker__track b {
  margin-left: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: grid;
  min-height: 86px;
  grid-template-columns: 170px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 3vw, 52px);
  padding: 12px var(--pad);
  border-bottom: 1px solid rgba(255, 213, 0, 0.34);
  background: rgba(23, 23, 23, 0.94);
  backdrop-filter: blur(16px);
}

.brand-link {
  position: relative;
  z-index: 31;
  display: inline-flex;
  width: 164px;
  color: var(--white);
}

.brand-wordmark--header {
  width: 164px;
  height: 34px;
}

.site-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 30px);
  color: var(--off-white);
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav > a {
  position: relative;
  padding-block: 10px;
  white-space: nowrap;
}

.site-nav > a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--yellow-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.site-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-links {
  display: inline-flex;
  gap: 7px;
  padding-left: 10px;
  border-left: 1px solid var(--line);
}

.language-links a {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid transparent;
  color: var(--gray);
  font-size: 11px;
}

.language-links a:hover,
.language-links a.is-active {
  border-color: var(--yellow-bright);
  color: var(--yellow-bright);
}

.button--header {
  min-height: 50px;
  padding-inline: 18px;
  color: var(--yellow-bright);
  white-space: nowrap;
}

.button--header:hover {
  background: var(--yellow-bright);
  color: var(--black);
}

.menu-toggle {
  position: relative;
  z-index: 31;
  display: none;
  border: 0;
  background: none;
  cursor: pointer;
  font-family: "Rubizh Display", sans-serif;
  text-transform: uppercase;
}

.hero {
  min-height: calc(100svh - 36px);
  overflow: hidden;
  color: var(--yellow-bright);
}

.hero::before {
  z-index: 1;
  opacity: 0.62;
}

.hero::after {
  position: absolute;
  inset: 24px;
  z-index: 2;
  border: 1px solid rgba(255, 213, 0, 0.34);
  pointer-events: none;
  content: "";
  clip-path: polygon(0 0, calc(100% - 42px) 0, 100% 42px, 100% 100%, 0 100%);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.85) 0%, rgba(11, 11, 11, 0.28) 58%, rgba(11, 11, 11, 0.62) 100%),
    linear-gradient(0deg, rgba(11, 11, 11, 0.86) 0%, transparent 50%, rgba(11, 11, 11, 0.36) 100%),
    url("/assets/images/hero-still.jpg") center 43% / cover no-repeat;
  filter: saturate(0.72) contrast(1.12);
}

.hero__symbol {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: min(45vw, 620px);
  height: min(50vw, 640px);
  color: var(--yellow-bright);
  opacity: 0.06;
  transform: translate(-50%, -47%);
}

.hero__content {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: calc(100svh - 122px);
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr auto auto;
  align-content: center;
  align-items: end;
  gap: 36px 48px;
  padding-top: clamp(120px, 18vh, 210px);
  padding-bottom: 58px;
}

.hero__serial {
  position: absolute;
  top: 56px;
  left: 0;
  color: var(--off-white);
  font-size: 12px;
  letter-spacing: 0.11em;
  line-height: 1.65;
}

.brand-wordmark--hero {
  width: min(82vw, 1080px);
  height: clamp(86px, 15vw, 215px);
  grid-column: 1 / -1;
  align-self: center;
  justify-self: center;
  color: var(--yellow-bright);
}

.hero__copy {
  display: grid;
  grid-template-columns: minmax(260px, 620px) auto;
  grid-template-rows: auto auto;
  align-items: end;
  gap: 8px 40px;
}

.hero__copy h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(26px, 3.6vw, 58px);
  letter-spacing: -0.025em;
}

.hero__copy p {
  max-width: 300px;
  margin: 0 0 4px;
  color: var(--off-white);
  font-size: 18px;
  line-height: 1.24;
}

.hero__copy .button {
  width: fit-content;
  grid-column: 1 / -1;
  margin-top: 20px;
}

.hero-socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.hero-socials a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 213, 0, 0.55);
  color: var(--yellow-bright);
  font-size: 10px;
  transition: background-color 160ms ease, color 160ms ease;
}

.hero-socials a:hover {
  background: var(--yellow-bright);
  color: var(--black);
}

.hero-socials span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) minmax(0, 1fr);
  align-items: start;
  gap: 40px;
  margin-bottom: clamp(54px, 7vw, 104px);
}

.section-heading h2 {
  max-width: 1050px;
  margin: -10px 0 0;
  color: var(--white);
  font-size: clamp(62px, 9vw, 132px);
  letter-spacing: -0.045em;
}

.about {
  padding-block: var(--section-space);
  background: var(--black);
}

.about__intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: end;
  gap: clamp(40px, 7vw, 110px);
}

.about__lead {
  max-width: 560px;
  margin: 0 0 40px;
  color: var(--off-white);
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.25;
}

.image-frame {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 0 100%);
}

.about__portrait {
  min-height: 520px;
}

.about__portrait::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgba(196, 160, 6, 0.12), transparent 55%);
  content: "";
  pointer-events: none;
}

.about__portrait img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.62) contrast(1.08);
}

.image-tab {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  display: inline-flex;
  gap: 10px;
  padding: 10px 14px;
  background: var(--yellow-bright);
  color: var(--black);
  font-family: "Rubizh Display", sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(64px, 9vw, 126px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-card {
  min-height: 360px;
  padding: 30px clamp(20px, 3vw, 44px) 44px;
  border-right: 1px solid var(--line);
}

.value-card:last-child {
  border-right: 0;
}

.value-card > span {
  display: block;
  margin-bottom: 90px;
  color: var(--yellow-bright);
  font-family: "Rubizh Display", sans-serif;
  font-size: 13px;
}

.value-card h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(30px, 3.2vw, 50px);
}

.value-card p {
  max-width: 360px;
  margin-bottom: 0;
  color: var(--gray);
}

.motto-block {
  position: relative;
  min-height: 610px;
  margin-top: var(--section-space);
  overflow: hidden;
  background: var(--dark);
  color: var(--white);
  clip-path: polygon(0 0, calc(100% - 48px) 0, 100% 48px, 100% 100%, 0 100%);
}

.motto-block > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.25) saturate(0.7) contrast(1.14);
}

.motto-block__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.9), rgba(11, 11, 11, 0.14) 75%),
    linear-gradient(0deg, rgba(11, 11, 11, 0.7), transparent 60%);
}

.motto-block__symbol {
  position: absolute;
  top: 50%;
  right: 8%;
  width: 270px;
  height: 260px;
  color: var(--yellow-bright);
  opacity: 0.46;
  transform: translateY(-50%);
}

.motto-block > div:last-child {
  position: absolute;
  bottom: clamp(36px, 7vw, 90px);
  left: clamp(28px, 7vw, 92px);
  z-index: 2;
  max-width: 770px;
}

.motto-block p {
  margin-bottom: 34px;
  font-family: "Rubizh Display", sans-serif;
  font-size: clamp(42px, 6.4vw, 90px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.96;
  text-transform: uppercase;
}

.combat {
  overflow: hidden;
  padding-block: var(--section-space);
  border-top: 8px solid var(--yellow-bright);
  background: var(--dark);
}

.combat__top {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: clamp(50px, 9vw, 150px);
}

.section-heading--compact {
  display: block;
  margin: 0;
}

.section-heading--compact .eyebrow {
  margin-bottom: 34px;
}

.section-heading--compact h2 {
  margin: 0;
  font-size: clamp(58px, 7.6vw, 112px);
}

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

.combat-locations span {
  display: grid;
  min-height: 74px;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 14px;
  padding: 12px 12px 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--off-white);
}

.combat-locations span:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.combat-locations b {
  color: var(--yellow-bright);
  font-family: "Rubizh Display", sans-serif;
  font-size: 12px;
}

.combat-gallery-wrap {
  margin-top: clamp(72px, 9vw, 130px);
}

.combat-gallery {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-inline: max(var(--pad), calc((100vw - var(--shell)) / 2));
  padding-bottom: 14px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.combat-gallery::-webkit-scrollbar {
  display: none;
}

.combat-card {
  position: relative;
  flex: 0 0 clamp(270px, 28vw, 410px);
  aspect-ratio: 0.76;
  margin: 0;
  overflow: hidden;
  background: var(--black);
  scroll-snap-align: start;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
}

.combat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.58) contrast(1.06);
  transition: filter 180ms ease, transform 300ms ease;
}

.combat-card:hover img {
  filter: saturate(0.85) contrast(1.08);
  transform: scale(1.015);
}

.combat-card figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 8px 10px;
  background: var(--yellow-bright);
  color: var(--black);
  font-family: "Rubizh Display", sans-serif;
  font-size: 11px;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
}

.carousel-controls > a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--yellow-bright);
  font-family: "Rubizh Display", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
}

.carousel-controls > div {
  display: flex;
  gap: 8px;
}

.carousel-controls button {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--yellow-bright);
  background: transparent;
  color: var(--yellow-bright);
  cursor: pointer;
  font-size: 22px;
  transition: background-color 160ms ease, color 160ms ease;
}

.carousel-controls button:hover {
  background: var(--yellow-bright);
  color: var(--black);
}

.vacancies {
  padding-block: var(--section-space);
  background: var(--off-white);
  color: var(--black);
}

.vacancies::before {
  opacity: 0.78;
  background-image:
    linear-gradient(45deg, transparent 49.55%, rgba(23, 23, 23, 0.09) 49.8%, rgba(23, 23, 23, 0.09) 50.2%, transparent 50.45%),
    linear-gradient(-45deg, transparent 49.55%, rgba(23, 23, 23, 0.09) 49.8%, rgba(23, 23, 23, 0.09) 50.2%, transparent 50.45%),
    linear-gradient(90deg, transparent 49.55%, rgba(23, 23, 23, 0.06) 49.8%, rgba(23, 23, 23, 0.06) 50.2%, transparent 50.45%),
    linear-gradient(0deg, transparent 49.55%, rgba(23, 23, 23, 0.06) 49.8%, rgba(23, 23, 23, 0.06) 50.2%, transparent 50.45%);
}

.vacancies .eyebrow {
  color: var(--black);
}

.vacancies .section-heading h2 {
  color: var(--black);
}

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

.vacancy-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: var(--black);
  cursor: pointer;
  text-align: left;
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 0 100%);
}

.vacancy-card:nth-child(4n + 2),
.vacancy-card:nth-child(4n + 3) {
  clip-path: polygon(34px 0, 100% 0, 100% 100%, 0 100%, 0 34px);
}

.vacancy-card > img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  filter: saturate(0.58) contrast(1.1);
  transition: transform 300ms ease, filter 180ms ease;
}

.vacancy-card:hover > img,
.vacancy-card:focus-visible > img {
  filter: saturate(0.9) contrast(1.08);
  transform: scale(1.025);
}

.vacancy-card__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(11, 11, 11, 0.95), transparent 62%),
    linear-gradient(90deg, rgba(11, 11, 11, 0.22), transparent);
}

.vacancy-card__number {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 10px;
  background: var(--yellow-bright);
  color: var(--black);
  font-family: "Rubizh Display", sans-serif;
  font-size: 12px;
}

.vacancy-card__content {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.vacancy-card__content strong {
  max-width: 78%;
  color: var(--white);
  font-family: "Rubizh Display", sans-serif;
  font-size: clamp(30px, 3.4vw, 54px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.95;
  text-transform: uppercase;
}

.vacancy-card__content small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow-bright);
  font-size: 11px;
  text-transform: uppercase;
  white-space: nowrap;
}

.decision-strip {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-around;
  gap: 40px;
  overflow: hidden;
  border-block: 1px solid var(--black);
  background: var(--yellow-bright);
  color: var(--black);
  white-space: nowrap;
  font-family: "Rubizh Display", sans-serif;
  font-size: clamp(18px, 2vw, 28px);
  text-transform: uppercase;
}

.decision-strip b {
  margin-left: 8px;
}

.recruitment {
  overflow: hidden;
  padding-block: var(--section-space);
  background: var(--yellow-bright);
  color: var(--black);
}

.recruitment::before {
  opacity: 0.46;
  background-image:
    linear-gradient(45deg, transparent 49.55%, rgba(23, 23, 23, 0.12) 49.8%, rgba(23, 23, 23, 0.12) 50.2%, transparent 50.45%),
    linear-gradient(-45deg, transparent 49.55%, rgba(23, 23, 23, 0.12) 49.8%, rgba(23, 23, 23, 0.12) 50.2%, transparent 50.45%);
}

.recruitment.logo-pattern::after {
  color: var(--black);
  opacity: 0.032;
}

.recruitment__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  align-items: stretch;
  gap: clamp(42px, 8vw, 120px);
}

.recruitment__content {
  padding-block: 20px;
}

.recruitment .eyebrow {
  color: var(--black);
}

.recruitment__content h2 {
  margin: 24px 0 20px;
  font-size: clamp(70px, 9vw, 132px);
  letter-spacing: -0.05em;
}

.recruitment__content > p {
  max-width: 560px;
  margin-bottom: 56px;
  font-size: clamp(20px, 2vw, 28px);
}

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

.recruitment-form > label:not(.check-label) {
  display: grid;
  gap: 9px;
}

.recruitment-form > label:not(.check-label) > span {
  font-family: "Rubizh Display", sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.recruitment-form input:not([type="checkbox"]),
.recruitment-form select {
  width: 100%;
  min-height: 52px;
  padding: 8px 0;
  border: 0;
  border-bottom: 2px solid var(--black);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--black);
}

.recruitment-form input:not([type="checkbox"]):focus,
.recruitment-form select:focus {
  border-bottom-color: var(--white);
}

.recruitment-form select option {
  background: var(--white);
  color: var(--black);
}

.check-label {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 12px;
  cursor: pointer;
  font-size: 13px;
}

.check-label + .check-label {
  margin-top: -14px;
}

.check-label input {
  width: 20px;
  height: 20px;
  margin: 0;
  border: 1px solid var(--black);
  accent-color: var(--black);
}

.check-label a {
  border-bottom: 1px solid currentColor;
}

.recruitment-form .button {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 10px;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  font-size: 13px;
}

.recruitment__image {
  min-height: 760px;
  align-self: stretch;
  background: var(--black);
}

.recruitment__image::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 11, 11, 0.72));
  content: "";
}

.recruitment__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.62) contrast(1.08);
}

.recruitment__image .brand-symbol {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  width: 118px;
  height: 128px;
  color: var(--yellow-bright);
}

.process {
  padding-block: var(--section-space);
  border-top: 8px solid var(--yellow-bright);
  background: var(--black);
}

.process__heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  align-items: start;
  gap: 40px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--line);
}

.process__heading > p {
  color: var(--yellow-bright);
  font-family: "Rubizh Display", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}

.process__heading h2 {
  max-width: 950px;
  margin: 0;
  color: var(--white);
  font-size: clamp(60px, 8.5vw, 126px);
  letter-spacing: -0.045em;
}

.process__body {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: clamp(40px, 8vw, 130px);
  padding-top: 74px;
}

.process__chevron {
  width: clamp(150px, 18vw, 250px);
  height: clamp(270px, 33vw, 450px);
  color: var(--yellow-bright);
  opacity: 0.9;
}

.process-steps {
  border-top: 1px solid var(--line);
}

.process-step {
  display: grid;
  min-height: 150px;
  grid-template-columns: 76px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.process-step > span {
  color: var(--yellow-bright);
  font-family: "Rubizh Display", sans-serif;
  font-size: 36px;
}

.process-step h3 {
  max-width: 850px;
  margin: 0 0 12px;
  color: var(--white);
  font-family: "Rubizh Text", sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.2;
  text-transform: none;
}

.process-step p {
  max-width: 780px;
  margin: 0;
  color: var(--gray);
}

.questions {
  display: flex;
  align-items: center;
  gap: 18px 38px;
  margin-top: clamp(72px, 9vw, 130px);
  padding: 36px;
  border: 1px solid var(--yellow-bright);
  background: rgba(33, 33, 33, 0.84);
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
}

.questions h3 {
  margin: 0 auto 0 0;
  color: var(--white);
  font-size: clamp(30px, 4vw, 56px);
}

.questions > a:last-child {
  color: var(--yellow-bright);
  font-family: "Rubizh Display", sans-serif;
  font-size: 18px;
}

.site-footer {
  overflow: hidden;
  background: var(--yellow-bright);
  color: var(--black);
}

.site-footer::before {
  opacity: 0.48;
  background-image:
    linear-gradient(45deg, transparent 49.55%, rgba(23, 23, 23, 0.12) 49.8%, rgba(23, 23, 23, 0.12) 50.2%, transparent 50.45%),
    linear-gradient(-45deg, transparent 49.55%, rgba(23, 23, 23, 0.12) 49.8%, rgba(23, 23, 23, 0.12) 50.2%, transparent 50.45%);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding-block: clamp(70px, 8vw, 120px);
  border-bottom: 2px solid var(--black);
}

.site-footer .eyebrow {
  color: var(--black);
}

.site-footer__top h2 {
  max-width: 980px;
  margin: 24px 0 0;
  font-size: clamp(64px, 9.4vw, 142px);
  letter-spacing: -0.055em;
}

.site-footer__top .brand-chevron {
  width: 150px;
  height: 270px;
  color: var(--black);
}

.site-footer__middle {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(280px, 0.52fr);
  align-items: end;
  gap: 70px;
  padding-block: 56px;
  border-bottom: 2px solid var(--black);
}

.brand-wordmark--footer {
  width: min(100%, 680px);
  height: clamp(76px, 10vw, 138px);
  color: var(--black);
}

.site-footer__middle p {
  margin: 0;
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1.2;
}

.site-footer__links {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  padding-block: 38px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-socials a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid var(--black);
  font-size: 12px;
  text-transform: uppercase;
}

.footer-socials a:hover {
  background: var(--black);
  color: var(--yellow-bright);
}

.footer-socials b {
  font-family: "Rubizh Display", sans-serif;
}

.contact-links {
  display: grid;
  align-content: center;
  justify-items: end;
  gap: 8px;
  font-family: "Rubizh Display", sans-serif;
  font-size: 15px;
  text-transform: uppercase;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 18px;
  border-top: 2px solid var(--black);
  font-size: 12px;
  text-transform: uppercase;
}

.vacancy-dialog {
  width: min(calc(100% - 32px), 1120px);
  max-height: min(90vh, 760px);
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--yellow-bright);
  background: var(--black);
  color: var(--off-white);
  clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 32px, 100% 100%, 0 100%);
}

.vacancy-dialog[open] {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.vacancy-dialog::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--yellow-bright);
  background: var(--black);
  color: var(--yellow-bright);
  cursor: pointer;
  font-size: 30px;
}

.vacancy-dialog__image {
  min-height: 640px;
  background: var(--dark);
}

.vacancy-dialog__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.68) contrast(1.08);
}

.vacancy-dialog__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 72px);
  background-image:
    linear-gradient(45deg, transparent 49.55%, rgba(184, 184, 184, 0.06) 49.8%, rgba(184, 184, 184, 0.06) 50.2%, transparent 50.45%),
    linear-gradient(-45deg, transparent 49.55%, rgba(184, 184, 184, 0.06) 49.8%, rgba(184, 184, 184, 0.06) 50.2%, transparent 50.45%);
  background-size: 100px 100px;
}

.vacancy-dialog__content h2 {
  margin: 28px 0 26px;
  color: var(--white);
  font-size: clamp(46px, 6vw, 82px);
  letter-spacing: -0.04em;
}

.vacancy-dialog__content p {
  margin-bottom: 38px;
  color: var(--off-white);
}

.vacancy-dialog__content .button {
  width: fit-content;
}

.privacy-main {
  padding-bottom: var(--section-space);
  background: var(--black);
}

.privacy-hero {
  position: relative;
  display: grid;
  min-height: 630px;
  align-content: end;
  padding-block: 100px 76px;
  border-bottom: 1px solid var(--line);
}

.privacy-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 1050px;
  margin: 34px 0 0;
  color: var(--white);
  font-size: clamp(64px, 10vw, 150px);
  letter-spacing: -0.05em;
}

.privacy-hero .brand-symbol {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 300px;
  height: 340px;
  color: var(--yellow-bright);
  opacity: 0.18;
  transform: translateY(-50%);
}

.privacy-content {
  display: grid;
  grid-template-columns: minmax(0, 0.28fr) minmax(0, 1fr);
  gap: 0 80px;
  padding-top: 44px;
}

.privacy-content section {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: subgrid;
  gap: inherit;
  padding-block: 44px;
  border-bottom: 1px solid var(--line);
}

.privacy-content h2 {
  margin: 0;
  color: var(--yellow-bright);
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.05;
}

.privacy-content section > p {
  grid-column: 2;
  max-width: 860px;
  margin-bottom: 20px;
  color: var(--off-white);
  font-size: 16px;
}

.privacy-content section > p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1220px) {
  .site-header {
    grid-template-columns: 150px 1fr auto;
    gap: 18px;
  }

  .brand-link,
  .brand-wordmark--header {
    width: 145px;
  }

  .site-nav {
    gap: 14px;
    font-size: 12px;
  }

  .site-nav > a:nth-child(5) {
    display: none;
  }

  .button--header {
    gap: 14px;
    font-size: 12px;
  }

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

  .vacancy-card > img {
    min-height: 380px;
  }
}

@media (max-width: 980px) {
  :root {
    --section-space: clamp(76px, 11vw, 112px);
  }

  html {
    scroll-padding-top: 76px;
  }

  .site-header {
    min-height: 76px;
    grid-template-columns: 1fr auto;
    backdrop-filter: none;
  }

  .brand-link,
  .brand-wordmark--header {
    width: 152px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--yellow-bright);
  }

  .menu-toggle i,
  .menu-toggle i::before {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    content: "";
  }

  .menu-toggle i::before {
    transform: translateY(-7px);
  }

  .menu-toggle[aria-expanded="true"] i {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i::before {
    transform: rotate(-90deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    padding: 110px var(--pad) 44px;
    background:
      linear-gradient(rgba(23, 23, 23, 0.96), rgba(23, 23, 23, 0.96)),
      url("/assets/images/hero-still.jpg") center / cover;
    font-family: "Rubizh Display", sans-serif;
    font-size: clamp(32px, 7vw, 54px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a,
  .site-nav > a:nth-child(5) {
    display: block;
    padding-block: 8px;
  }

  .language-links {
    margin-top: 24px;
    padding: 20px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .language-links a {
    width: 48px;
    height: 48px;
    font-size: 14px;
  }

  .button--header {
    display: none;
  }

  .hero__content {
    min-height: calc(100svh - 112px);
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto auto;
    padding-top: 130px;
  }

  .brand-wordmark--hero {
    width: 100%;
  }

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

  .hero__copy p {
    max-width: 520px;
  }

  .hero-socials {
    justify-content: flex-start;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-heading h2 {
    margin: 0;
  }

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

  .about__portrait {
    min-height: 480px;
  }

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

  .value-card {
    min-height: 0;
    padding: 30px 0 42px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .value-card:last-child {
    border-bottom: 0;
  }

  .value-card > span {
    margin-bottom: 50px;
  }

  .motto-block__symbol {
    right: 2%;
    opacity: 0.24;
  }

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

  .vacancy-card__content {
    display: block;
  }

  .vacancy-card__content strong {
    display: block;
    max-width: 100%;
    margin-bottom: 16px;
  }

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

  .recruitment__image {
    min-height: 520px;
  }

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

  .process__body {
    grid-template-columns: 0.25fr 1fr;
    gap: 40px;
  }

  .questions {
    flex-wrap: wrap;
  }

  .questions h3 {
    flex: 0 0 100%;
  }

  .site-footer__middle {
    grid-template-columns: 1fr;
  }

  .site-footer__links {
    grid-template-columns: 1fr;
  }

  .contact-links {
    justify-items: start;
  }

  .privacy-content {
    display: block;
  }

  .privacy-content section {
    display: block;
  }

  .privacy-content h2 {
    margin-bottom: 28px;
  }
}

@media (max-width: 700px) {
  :root {
    --pad: 18px;
  }

  body {
    font-size: 15px;
  }

  .ticker {
    height: 32px;
  }

  .ticker__track {
    justify-content: flex-start;
    padding-left: 14px;
    font-size: 12px;
  }

  .ticker__track span:nth-child(n + 3) {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero::after {
    inset: 10px;
  }

  .hero__media {
    background-position: 55% center;
  }

  .hero__content {
    min-height: 680px;
    gap: 24px;
    padding-top: 96px;
    padding-bottom: 34px;
  }

  .hero__serial {
    top: 28px;
  }

  .brand-wordmark--hero {
    height: 98px;
  }

  .hero__copy h1 {
    font-size: 30px;
  }

  .hero__copy p {
    font-size: 16px;
  }

  .hero-socials a {
    width: 38px;
    height: 38px;
  }

  .section-heading h2,
  .section-heading--compact h2,
  .process__heading h2 {
    font-size: clamp(48px, 15vw, 74px);
  }

  .about__lead {
    font-size: 22px;
  }

  .about__portrait,
  .about__portrait img {
    min-height: 380px;
  }

  .motto-block {
    min-height: 540px;
  }

  .motto-block > img {
    object-position: 64% center;
  }

  .motto-block__symbol {
    top: 20px;
    right: 20px;
    width: 120px;
    height: 130px;
    transform: none;
  }

  .motto-block > div:last-child {
    right: 24px;
    bottom: 28px;
    left: 24px;
  }

  .motto-block p {
    font-size: 42px;
  }

  .combat-locations {
    grid-template-columns: 1fr;
  }

  .combat-locations span:nth-child(odd) {
    border-right: 0;
  }

  .combat-card {
    flex-basis: min(82vw, 330px);
  }

  .carousel-controls > a {
    max-width: 180px;
  }

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

  .vacancy-card,
  .vacancy-card > img {
    min-height: 330px;
  }

  .vacancy-card__content strong {
    font-size: 34px;
  }

  .decision-strip span:nth-child(n + 2) {
    display: none;
  }

  .recruitment__content h2 {
    font-size: 76px;
  }

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

  .recruitment-form > * {
    grid-column: 1 !important;
  }

  .recruitment__image {
    min-height: 420px;
  }

  .recruitment__image img {
    content: url("/assets/images/form-soldier-mobile.png");
  }

  .process__body {
    display: block;
  }

  .process__chevron {
    width: 92px;
    height: 170px;
    margin-bottom: 44px;
  }

  .process-step {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .process-step > span {
    font-size: 26px;
  }

  .questions {
    display: grid;
    padding: 24px;
  }

  .questions > a:last-child {
    font-size: 15px;
  }

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

  .site-footer__top h2 {
    font-size: 62px;
  }

  .site-footer__top .brand-chevron {
    width: 90px;
    height: 170px;
  }

  .brand-wordmark--footer {
    height: 80px;
  }

  .footer-socials a span {
    display: none;
  }

  .site-footer__bottom {
    font-size: 10px;
  }

  .vacancy-dialog {
    max-height: 92vh;
    overflow-y: auto;
  }

  .vacancy-dialog[open] {
    display: block;
  }

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

  .vacancy-dialog__content {
    min-height: 460px;
    padding: 30px 24px;
  }

  .privacy-hero {
    min-height: 470px;
  }

  .privacy-hero h1 {
    font-size: clamp(54px, 17vw, 82px);
  }

  .privacy-hero .brand-symbol {
    right: -6%;
    width: 180px;
    height: 220px;
  }
}

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

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

/* Brand-book refinement: preserve the visual language while prioritizing legibility. */

:root {
  --shell: 1280px;
  --pad: clamp(24px, 4vw, 64px);
  --section-space: clamp(112px, 10vw, 176px);
}

html,
body {
  overflow-x: clip;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: 108px;
}

body {
  font-size: 18px;
  line-height: 1.58;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

section[id] {
  scroll-margin-top: 0;
}

.brand-grid::before {
  opacity: 0.34;
  background-size: 144px 144px;
}

.logo-pattern::after {
  opacity: 0.01;
  -webkit-mask-size: 260px 52px;
  mask-size: 260px 52px;
}

.eyebrow {
  gap: 12px;
  font-size: 15px;
  letter-spacing: 0.09em;
}

.eyebrow::before {
  width: 34px;
}

.button {
  min-height: 60px;
  gap: 42px;
  padding: 18px 24px;
  font-size: 15px;
  letter-spacing: 0.035em;
}

.ticker {
  height: 40px;
}

.ticker__track {
  gap: 56px;
  font-size: 15px;
}

.site-header {
  min-height: 92px;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  gap: clamp(24px, 3vw, 48px);
  padding-block: 14px;
  background: rgba(23, 23, 23, 0.98);
}

.brand-link,
.brand-wordmark--header {
  width: 180px;
}

.brand-wordmark--header {
  height: 38px;
}

.site-nav {
  gap: clamp(16px, 1.75vw, 28px);
  color: var(--white);
  font-size: 15px;
}

.language-links {
  gap: 6px;
  padding-left: 14px;
}

.language-links a {
  width: 36px;
  height: 36px;
  font-size: 13px;
}

.button--header {
  min-height: 56px;
  font-size: 14px;
}

.hero {
  min-height: 820px;
  height: calc(100svh - 40px);
  max-height: 980px;
}

.hero::before {
  opacity: 0.42;
}

.hero::after {
  inset: 30px;
  border-color: rgba(255, 213, 0, 0.42);
}

.hero__media {
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.82) 0%, rgba(11, 11, 11, 0.18) 60%, rgba(11, 11, 11, 0.5) 100%),
    linear-gradient(0deg, rgba(11, 11, 11, 0.82) 0%, transparent 54%, rgba(11, 11, 11, 0.28) 100%),
    url("/assets/images/hero-still.jpg") center 44% / cover no-repeat;
  filter: saturate(0.78) contrast(1.07);
}

.hero__symbol {
  top: 52%;
  left: auto;
  right: 5%;
  width: min(24vw, 320px);
  height: min(29vw, 380px);
  opacity: 0.085;
  transform: translateY(-50%);
}

.hero__content {
  min-height: calc(100svh - 132px);
  max-height: 888px;
  gap: 42px 56px;
  padding-top: clamp(118px, 16vh, 176px);
  padding-bottom: 66px;
}

.hero__serial {
  top: 50px;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.55;
}

.brand-wordmark--hero {
  width: min(70vw, 880px);
  height: clamp(112px, 12vw, 172px);
}

.hero__copy {
  grid-template-columns: minmax(360px, 620px) minmax(240px, 360px);
  gap: 10px 48px;
}

.hero__copy h1 {
  font-size: clamp(44px, 4.5vw, 68px);
  letter-spacing: -0.02em;
}

.hero__copy p {
  max-width: 360px;
  font-size: 22px;
  line-height: 1.35;
}

.hero__copy .button {
  margin-top: 24px;
}

.hero-socials {
  gap: 8px;
}

.hero-socials a {
  width: 48px;
  height: 48px;
  font-size: 13px;
}

.section-heading {
  grid-template-columns: minmax(210px, 0.3fr) minmax(0, 1fr);
  gap: 56px;
  margin-bottom: clamp(72px, 7vw, 104px);
}

.section-heading h2 {
  max-width: 960px;
  margin-top: -8px;
  font-size: clamp(66px, 7.5vw, 112px);
  letter-spacing: -0.035em;
}

.about__intro {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(56px, 7vw, 104px);
}

.about__lead {
  max-width: 590px;
  margin-bottom: 0;
  font-size: clamp(27px, 2.6vw, 39px);
  line-height: 1.34;
}

.about__portrait,
.about__portrait img {
  min-height: 590px;
}

.image-tab {
  bottom: 28px;
  left: 28px;
  padding: 12px 16px;
  font-size: 14px;
}

.values {
  margin-top: clamp(72px, 8vw, 112px);
}

.value-card {
  min-height: 330px;
  padding: 36px clamp(26px, 3vw, 42px) 42px;
}

.value-card > span {
  margin-bottom: 58px;
  font-size: 15px;
}

.value-card h3 {
  margin-bottom: 20px;
  font-size: clamp(36px, 3.2vw, 48px);
}

.value-card p {
  color: var(--off-white);
  font-size: 18px;
  line-height: 1.55;
}

.motto-block {
  min-height: 560px;
}

.motto-block > img {
  filter: grayscale(0.25) saturate(0.76) contrast(1.08);
}

.motto-block__overlay {
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.92), rgba(11, 11, 11, 0.18) 76%),
    linear-gradient(0deg, rgba(11, 11, 11, 0.6), transparent 62%);
}

.motto-block__symbol {
  right: 7%;
  width: 220px;
  height: 230px;
  opacity: 0.3;
}

.motto-block > div:last-child {
  max-width: 720px;
}

.motto-block p {
  margin-bottom: 38px;
  font-size: clamp(48px, 5.4vw, 76px);
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.combat {
  border-top-width: 6px;
}

.combat__top {
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(64px, 8vw, 120px);
}

.section-heading--compact .eyebrow {
  margin-bottom: 40px;
}

.section-heading--compact h2 {
  font-size: clamp(64px, 6.8vw, 100px);
}

.combat-locations span {
  min-height: 76px;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding-right: 18px;
  color: var(--white);
  font-size: 17px;
  line-height: 1.35;
}

.combat-locations b {
  font-size: 14px;
}

.combat-gallery-wrap {
  margin-top: clamp(82px, 8vw, 116px);
}

.combat-gallery {
  gap: 22px;
}

.combat-card {
  flex-basis: clamp(320px, 27vw, 420px);
  background: #111111;
}

.combat-card img {
  filter: saturate(0.68) contrast(1.03) brightness(0.94);
}

.combat-card:hover img {
  filter: saturate(0.9) contrast(1.04) brightness(1);
}

.combat-card figcaption {
  right: 18px;
  bottom: 18px;
  padding: 10px 12px;
  font-size: 13px;
}

.carousel-controls {
  margin-top: 32px;
}

.carousel-controls > a {
  font-size: 15px;
}

.carousel-controls button {
  width: 60px;
  height: 60px;
}

.vacancies {
  background: var(--off-white);
}

.vacancy-grid {
  gap: 24px;
}

.vacancy-card,
.vacancy-card > img {
  min-height: 470px;
}

.vacancy-card {
  border: 1px solid rgba(23, 23, 23, 0.75);
}

.vacancy-card > img {
  filter: saturate(0.72) contrast(1.02) brightness(0.9);
}

.vacancy-card:hover > img,
.vacancy-card:focus-visible > img {
  filter: saturate(0.94) contrast(1.02) brightness(0.98);
}

.vacancy-card__shade {
  background: linear-gradient(0deg, rgba(11, 11, 11, 0.96), rgba(11, 11, 11, 0.06) 72%);
}

.vacancy-card__number {
  top: 24px;
  left: 24px;
  padding: 9px 11px;
  font-size: 14px;
}

.vacancy-card__content {
  right: 32px;
  bottom: 30px;
  left: 32px;
}

.vacancy-card__content strong {
  font-size: clamp(36px, 3.25vw, 52px);
}

.vacancy-card__content small {
  font-family: "Rubizh Display", sans-serif;
  font-size: 14px;
  letter-spacing: 0.025em;
}

.decision-strip {
  min-height: 78px;
  font-size: clamp(20px, 1.8vw, 26px);
}

.recruitment::before {
  opacity: 0.28;
}

.recruitment.logo-pattern::after {
  opacity: 0.016;
}

.recruitment__inner {
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(64px, 7vw, 104px);
}

.recruitment__content {
  padding-block: 10px;
}

.recruitment__content h2 {
  margin: 28px 0 22px;
  font-size: clamp(76px, 8vw, 116px);
  letter-spacing: -0.035em;
}

.recruitment__content > p {
  margin-bottom: 52px;
  font-size: clamp(21px, 1.9vw, 27px);
  line-height: 1.4;
}

.recruitment-form {
  gap: 30px 22px;
}

.recruitment-form > label:not(.check-label) {
  gap: 10px;
}

.recruitment-form > label:not(.check-label) > span {
  font-size: 14px;
  letter-spacing: 0.05em;
}

.recruitment-form input:not([type="checkbox"]),
.recruitment-form select {
  min-height: 62px;
  padding: 0 14px;
  border: 1px solid rgba(23, 23, 23, 0.78);
  background: rgba(255, 255, 255, 0.13);
  font-size: 18px;
}

.recruitment-form input:not([type="checkbox"]):focus,
.recruitment-form select:focus {
  border-color: var(--white);
  box-shadow: inset 0 0 0 1px var(--white);
}

.check-label {
  grid-template-columns: 24px 1fr;
  gap: 14px;
  font-size: 16px;
  line-height: 1.45;
}

.check-label + .check-label {
  margin-top: -10px;
}

.check-label input {
  width: 22px;
  height: 22px;
}

.form-status {
  min-height: 26px;
  font-size: 15px;
}

.recruitment__image {
  min-height: 780px;
}

.process {
  border-top-width: 6px;
}

.process__heading {
  grid-template-columns: minmax(210px, 0.3fr) minmax(0, 1fr);
  gap: 56px;
  padding-bottom: 78px;
}

.process__heading > p {
  font-size: 20px;
}

.process__heading h2 {
  font-size: clamp(66px, 7.6vw, 108px);
  letter-spacing: -0.035em;
}

.process__body {
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
  gap: clamp(60px, 8vw, 112px);
  padding-top: 82px;
}

.process__chevron {
  width: clamp(150px, 16vw, 220px);
  height: clamp(270px, 29vw, 400px);
}

.process-step {
  min-height: 164px;
  grid-template-columns: 82px 1fr;
  gap: 32px;
  padding: 32px 0;
}

.process-step > span {
  font-size: 38px;
}

.process-step h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(23px, 1.9vw, 28px);
  line-height: 1.32;
}

.process-step p {
  color: var(--off-white);
  font-size: 18px;
  line-height: 1.55;
}

.questions {
  gap: 22px 42px;
  padding: 40px;
}

.questions h3 {
  font-size: clamp(34px, 3.8vw, 52px);
}

.questions > a:last-child {
  font-size: 19px;
}

.site-footer__top {
  padding-block: clamp(84px, 8vw, 116px);
}

.site-footer__top h2 {
  max-width: 900px;
  font-size: clamp(66px, 7.7vw, 108px);
  letter-spacing: -0.035em;
}

.site-footer__top .brand-chevron {
  width: 126px;
  height: 236px;
}

.site-footer__middle {
  grid-template-columns: minmax(300px, 1fr) minmax(300px, 0.55fr);
  padding-block: 60px;
}

.brand-wordmark--footer {
  width: min(100%, 620px);
  height: clamp(78px, 8vw, 116px);
}

.site-footer__middle p {
  font-size: clamp(21px, 1.9vw, 27px);
  line-height: 1.35;
}

.site-footer__links {
  padding-block: 42px;
}

.footer-socials a {
  min-height: 48px;
  padding: 10px 14px;
  font-size: 14px;
}

.contact-links {
  font-size: 16px;
}

.site-footer__bottom {
  padding-block: 20px;
  font-size: 14px;
}

.vacancy-dialog__content h2 {
  font-size: clamp(52px, 5.6vw, 76px);
}

.vacancy-dialog__content p {
  color: var(--off-white);
  font-size: 18px;
  line-height: 1.6;
}

.privacy-hero {
  min-height: 570px;
}

.privacy-hero h1 {
  max-width: 980px;
  font-size: clamp(68px, 8.6vw, 122px);
  letter-spacing: -0.035em;
}

.privacy-hero .brand-symbol {
  width: 260px;
  height: 300px;
  opacity: 0.12;
}

.privacy-content {
  grid-template-columns: minmax(250px, 0.3fr) minmax(0, 1fr);
  gap: 0 clamp(56px, 7vw, 96px);
  padding-top: 52px;
}

.privacy-content section {
  padding-block: 52px;
}

.privacy-content h2 {
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.12;
}

.privacy-content section > p {
  max-width: 820px;
  margin-bottom: 24px;
  color: var(--off-white);
  font-size: 18px;
  line-height: 1.65;
}

@media (max-width: 1220px) {
  .site-header {
    grid-template-columns: 160px minmax(0, 1fr);
  }

  .brand-link,
  .brand-wordmark--header {
    width: 156px;
  }

  .site-nav {
    justify-content: flex-end;
    gap: 16px;
    font-size: 14px;
  }

  .site-nav > a:nth-child(5) {
    display: block;
  }

  .button--header {
    display: none;
  }
}

@media (max-width: 1100px) {
  :root {
    --section-space: clamp(96px, 12vw, 136px);
  }

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

  section[id] {
    scroll-margin-top: 0;
  }

  .site-header {
    min-height: 82px;
    grid-template-columns: 1fr auto;
    backdrop-filter: none;
  }

  .brand-link,
  .brand-wordmark--header {
    width: 160px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--yellow-bright);
    font-size: 15px;
  }

  .menu-toggle i,
  .menu-toggle i::before {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    content: "";
  }

  .menu-toggle i::before {
    transform: translateY(-8px);
  }

  .menu-toggle[aria-expanded="true"] i {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i::before {
    transform: rotate(-90deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    padding: 116px var(--pad) 52px;
    background:
      linear-gradient(rgba(23, 23, 23, 0.97), rgba(23, 23, 23, 0.97)),
      url("/assets/images/hero-still.jpg") center / cover;
    font-family: "Rubizh Display", sans-serif;
    font-size: clamp(36px, 7vw, 54px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a,
  .site-nav > a:nth-child(5) {
    display: block;
    padding-block: 8px;
  }

  .language-links {
    margin-top: 26px;
    padding: 22px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .language-links a {
    width: 52px;
    height: 52px;
    font-size: 15px;
  }

  .hero {
    min-height: 780px;
    max-height: none;
  }

  .hero__content {
    min-height: calc(100svh - 122px);
    max-height: none;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(220px, 1fr) auto auto;
    gap: 30px;
    padding-top: 118px;
    padding-bottom: 46px;
  }

  .brand-wordmark--hero {
    width: min(82vw, 760px);
  }

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

  .hero__copy p {
    max-width: 560px;
  }

  .hero-socials {
    justify-content: flex-start;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-heading h2 {
    margin-top: 0;
  }

  .about__intro {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .about__lead {
    max-width: 760px;
  }

  .about__portrait,
  .about__portrait img {
    min-height: 560px;
  }

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

  .value-card {
    padding-inline: 24px;
  }

  .value-card > span {
    margin-bottom: 46px;
  }

  .motto-block__symbol {
    right: 4%;
  }

  .combat__top {
    grid-template-columns: 1fr;
    gap: 64px;
  }

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

  .recruitment__content {
    max-width: 780px;
  }

  .recruitment__image {
    min-height: 620px;
  }

  .process__heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .process__body {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 54px;
  }

  .questions {
    flex-wrap: wrap;
  }

  .questions h3 {
    flex: 0 0 100%;
  }

  .site-footer__middle,
  .site-footer__links {
    grid-template-columns: 1fr;
  }

  .contact-links {
    justify-items: start;
  }

  .privacy-content {
    display: block;
  }

  .privacy-content section {
    display: block;
  }

  .privacy-content h2 {
    max-width: 620px;
    margin-bottom: 28px;
  }
}

@media (max-width: 820px) {
  :root {
    --pad: 24px;
    --section-space: 104px;
  }

  body {
    font-size: 17px;
    line-height: 1.58;
  }

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

  .hero::after {
    inset: 16px;
  }

  .hero__media {
    background-position: 55% center;
  }

  .hero__content {
    min-height: 700px;
    grid-template-rows: minmax(180px, 1fr) auto auto;
    padding-top: 108px;
  }

  .hero__serial {
    top: 34px;
    font-size: 13px;
  }

  .brand-wordmark--hero {
    width: 88vw;
    height: 104px;
  }

  .hero__copy h1 {
    max-width: 620px;
    font-size: clamp(36px, 7vw, 48px);
  }

  .hero__copy p {
    font-size: 19px;
  }

  .hero-socials a {
    width: 44px;
    height: 44px;
  }

  .section-heading h2,
  .section-heading--compact h2,
  .process__heading h2 {
    font-size: clamp(54px, 11vw, 78px);
  }

  .about__lead {
    font-size: clamp(24px, 4.2vw, 32px);
  }

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

  .value-card {
    min-height: 0;
    padding: 34px 0 42px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .value-card:last-child {
    border-bottom: 0;
  }

  .value-card > span {
    margin-bottom: 32px;
  }

  .value-card h3 {
    font-size: 38px;
  }

  .motto-block {
    min-height: 520px;
  }

  .motto-block__symbol {
    top: 26px;
    right: 26px;
    width: 116px;
    height: 126px;
    opacity: 0.24;
    transform: none;
  }

  .motto-block > div:last-child {
    right: 32px;
    bottom: 34px;
    left: 32px;
  }

  .motto-block p {
    font-size: clamp(42px, 8vw, 58px);
  }

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

  .vacancy-card,
  .vacancy-card > img {
    min-height: 400px;
  }

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

  .recruitment-form > * {
    grid-column: 1 !important;
  }

  .process__body {
    display: block;
  }

  .process__chevron {
    width: 96px;
    height: 176px;
    margin-bottom: 46px;
  }

  .questions {
    display: grid;
  }

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

  .site-footer__top .brand-chevron {
    width: 90px;
    height: 170px;
  }

  .privacy-hero h1 {
    font-size: clamp(36px, 11.4vw, 68px);
  }
}

@media (max-width: 560px) {
  :root {
    --pad: 18px;
    --section-space: 88px;
  }

  body {
    font-size: 17px;
    line-height: 1.58;
  }

  .ticker {
    height: 36px;
  }

  .ticker__track {
    justify-content: flex-start;
    gap: 34px;
    padding-left: 16px;
    font-size: 14px;
  }

  .ticker__track span:nth-child(n + 3) {
    display: none;
  }

  .site-header {
    min-height: 78px;
    padding-block: 12px;
  }

  .brand-link,
  .brand-wordmark--header {
    width: 150px;
  }

  .brand-wordmark--header {
    height: 34px;
  }

  .menu-toggle {
    font-size: 14px;
  }

  .site-nav {
    padding-top: 104px;
    font-size: clamp(34px, 10vw, 44px);
  }

  .language-links a {
    width: 50px;
    height: 50px;
    font-size: 15px;
  }

  .hero {
    min-height: 760px;
  }

  .hero::after {
    inset: 10px;
  }

  .hero__symbol {
    top: 35%;
    right: -8%;
    width: 180px;
    height: 220px;
  }

  .hero__content {
    min-height: 680px;
    grid-template-rows: minmax(170px, 1fr) auto auto;
    gap: 26px;
    padding-top: 96px;
    padding-bottom: 34px;
  }

  .hero__serial {
    top: 28px;
  }

  .brand-wordmark--hero {
    width: 92vw;
    height: 88px;
  }

  .hero__copy h1 {
    font-size: 34px;
    line-height: 0.98;
  }

  .hero__copy p {
    font-size: 18px;
  }

  .hero__copy .button {
    width: 100%;
  }

  .hero-socials {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    width: 100%;
    gap: 6px;
  }

  .hero-socials a {
    width: 100%;
    height: 46px;
  }

  .eyebrow {
    font-size: 14px;
  }

  .button {
    min-height: 58px;
    padding: 17px 20px;
    font-size: 15px;
  }

  .section-heading {
    gap: 28px;
    margin-bottom: 54px;
  }

  .section-heading h2,
  .section-heading--compact h2,
  .process__heading h2 {
    font-size: clamp(48px, 14vw, 62px);
  }

  .about__intro {
    gap: 44px;
  }

  .about__lead {
    font-size: 23px;
    line-height: 1.38;
  }

  .about__portrait,
  .about__portrait img {
    min-height: 430px;
  }

  .image-tab {
    bottom: 20px;
    left: 20px;
    font-size: 13px;
  }

  .values {
    margin-top: 62px;
  }

  .value-card {
    padding-block: 32px 38px;
  }

  .value-card h3 {
    font-size: 34px;
  }

  .value-card p {
    font-size: 17px;
    line-height: 1.6;
  }

  .motto-block {
    min-height: 500px;
  }

  .motto-block > img {
    object-position: 62% center;
  }

  .motto-block > div:last-child {
    right: 22px;
    bottom: 26px;
    left: 22px;
  }

  .motto-block p {
    font-size: 42px;
  }

  .motto-block .button {
    width: 100%;
  }

  .combat__top {
    gap: 50px;
  }

  .section-heading--compact .eyebrow {
    margin-bottom: 28px;
  }

  .combat-locations {
    grid-template-columns: 1fr;
  }

  .combat-locations span,
  .combat-locations span:nth-child(odd) {
    min-height: 72px;
    border-right: 0;
    font-size: 17px;
  }

  .combat-card {
    flex-basis: min(84vw, 350px);
  }

  .carousel-controls {
    align-items: end;
  }

  .carousel-controls > a {
    max-width: 190px;
    font-size: 14px;
    line-height: 1.35;
  }

  .carousel-controls button {
    width: 54px;
    height: 54px;
  }

  .vacancy-card,
  .vacancy-card > img {
    min-height: 370px;
  }

  .vacancy-card__content {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

  .vacancy-card__content strong {
    font-size: 36px;
  }

  .vacancy-card__content small {
    font-size: 13px;
  }

  .decision-strip {
    min-height: 68px;
    font-size: 20px;
  }

  .decision-strip span:nth-child(n + 2) {
    display: none;
  }

  .recruitment__content h2 {
    font-size: clamp(48px, 17.5vw, 66px);
  }

  .recruitment__content > p {
    margin-bottom: 44px;
    font-size: 20px;
  }

  .recruitment-form {
    gap: 26px;
  }

  .recruitment-form > label:not(.check-label) > span {
    font-size: 14px;
  }

  .recruitment-form input:not([type="checkbox"]),
  .recruitment-form select {
    min-height: 60px;
    font-size: 17px;
  }

  .check-label {
    font-size: 15px;
  }

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

  .recruitment__image {
    min-height: 450px;
  }

  .recruitment__image img {
    content: url("/assets/images/form-soldier-mobile.png");
  }

  .process__heading {
    padding-bottom: 54px;
  }

  .process__heading > p {
    font-size: 17px;
  }

  .process__body {
    padding-top: 58px;
  }

  .process-step {
    min-height: 0;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 28px 0;
  }

  .process-step > span {
    font-size: 30px;
  }

  .process-step h3 {
    font-size: 20px;
    line-height: 1.32;
  }

  .process-step p {
    font-size: 17px;
    line-height: 1.55;
  }

  .questions {
    margin-top: 72px;
    padding: 26px;
  }

  .questions h3 {
    font-size: 38px;
  }

  .questions .button {
    width: 100%;
  }

  .questions > a:last-child {
    font-size: 17px;
  }

  .site-footer__top h2 {
    font-size: 58px;
  }

  .brand-wordmark--footer {
    height: 72px;
  }

  .site-footer__middle p {
    font-size: 19px;
  }

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

  .footer-socials a {
    width: 100%;
    font-size: 13px;
  }

  .footer-socials a span {
    display: inline;
  }

  .contact-links {
    gap: 10px;
    font-size: 15px;
  }

  .site-footer__bottom {
    align-items: end;
    font-size: 13px;
  }

  .vacancy-dialog {
    width: calc(100% - 20px);
  }

  .vacancy-dialog__image {
    height: 300px;
    min-height: 300px;
    overflow: hidden;
  }

  .vacancy-dialog__image img {
    height: 100%;
  }

  .vacancy-dialog__content {
    min-height: 0;
    padding: 34px 24px 40px;
  }

  .vacancy-dialog__content h2 {
    margin-block: 24px 20px;
    font-size: 48px;
  }

  .vacancy-dialog__content p {
    font-size: 17px;
  }

  .privacy-hero {
    min-height: 460px;
    padding-block: 86px 58px;
  }

  .privacy-hero h1 {
    font-size: clamp(36px, 11.4vw, 64px);
  }

  .privacy-hero .brand-symbol {
    right: -8%;
    width: 170px;
    height: 210px;
  }

  .privacy-content {
    padding-top: 30px;
  }

  .privacy-content section {
    padding-block: 40px;
  }

  .privacy-content h2 {
    font-size: 29px;
    line-height: 1.14;
  }

  .privacy-content section > p {
    font-size: 17px;
    line-height: 1.65;
  }
}
