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

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/manrope-500.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/manrope-600.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/manrope-700.ttf") format("truetype");
}

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

@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/unbounded-500.ttf") format("truetype");
}

@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/unbounded-600.ttf") format("truetype");
}

@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/unbounded-700.ttf") format("truetype");
}

:root {
  --paper: #080a10;
  --paper-deep: #10131b;
  --ink: #f5f6fb;
  --muted: #9399aa;
  --red: #7c5cff;
  --red-dark: #6344eb;
  --yellow: #4ce1bf;
  --line: rgba(245, 246, 251, 0.14);
  --white: #f8f8fc;
  --radius: 28px;
  --page: min(1240px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background-image:
    radial-gradient(circle at 78% 4%, rgba(124, 92, 255, 0.12), transparent 29%),
    radial-gradient(circle at 14% 36%, rgba(76, 225, 191, 0.05), transparent 25%);
}

body.modal-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

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

button {
  cursor: pointer;
}

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

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

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

h1,
h2 {
  font-family: "Unbounded", sans-serif;
  letter-spacing: -0.055em;
}

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

p {
  text-wrap: pretty;
}

.site-header {
  width: var(--page);
  height: 88px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  font-weight: 800;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--red);
  filter: drop-shadow(0 0 18px rgba(124, 92, 255, 0.4));
}

.logo-mark svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  display: grid;
  line-height: 1;
  font-size: 18px;
}

.logo-text small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--red);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.lang-switch button {
  padding: 6px 11px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: color 160ms ease, background 160ms ease;
}

.lang-switch button:hover {
  color: var(--white);
}

.lang-switch button.active {
  color: var(--white);
  background: var(--red);
}

.menu-toggle {
  display: none;
}

.button {
  min-height: 58px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  border: 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button span {
  font-size: 20px;
  line-height: 1;
  transition: transform 200ms ease;
}

.button:hover span {
  transform: translate(3px, -3px);
}

.text-link span {
  transition: transform 200ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
  gap: 16px;
  font-size: 12px;
}

.button-dark {
  padding: 0;
  color: var(--red);
  background: transparent;
}

.button-dark:hover {
  color: var(--red-dark);
  background: transparent;
}

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 30px rgba(124, 92, 255, 0.28);
}

.button-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 15px 36px rgba(124, 92, 255, 0.4);
}

.button-light {
  color: #080a10;
  background: var(--white);
}

.hero {
  width: var(--page);
  min-height: calc(100vh - 88px);
  margin: 0 auto;
  display: grid;
  align-items: center;
  padding: 68px 0 76px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(460px, 0.96fr);
  gap: clamp(50px, 7vw, 110px);
  align-items: center;
}

.eyebrow,
.section-kicker,
.modal-kicker {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(124, 92, 255, 0.18);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 10px rgba(124, 92, 255, 0); }
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(56px, 6vw, 92px);
  line-height: 0.97;
}

.hero h1 span {
  display: block;
  color: var(--red);
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 21px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.text-link span {
  margin-left: 8px;
}

.hero-points {
  margin-top: 56px;
  padding-top: 25px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  border-top: 1px solid var(--line);
}

.hero-points div {
  display: grid;
  gap: 4px;
}

.hero-points strong {
  font-size: 14px;
}

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

.hero-visual {
  min-height: 620px;
  position: relative;
}

.photo-frame {
  width: 86%;
  height: 570px;
  margin-left: auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 230px 230px 24px 24px;
  position: relative;
  transform: rotate(2deg) translateY(var(--parallax, 0px));
  background: rgba(255, 255, 255, 0.025);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  border-radius: 218px 218px 15px 15px;
  filter: saturate(0.72) contrast(1.1) brightness(0.78);
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 218px 218px 15px 15px;
  background: linear-gradient(180deg, transparent 55%, rgba(23, 24, 21, 0.68));
}

.photo-label {
  position: absolute;
  left: 34px;
  bottom: 33px;
  z-index: 2;
  display: grid;
  color: var(--white);
}

.photo-label span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

.photo-label strong {
  max-width: 210px;
  font-size: 14px;
}

.shift-card {
  width: 285px;
  position: absolute;
  right: 0;
  bottom: -18px;
  z-index: 3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #12151e;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.42);
  transform: rotate(-3deg);
}

.shift-card-top {
  padding: 14px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(8, 10, 16, 0.38);
  color: #080a10;
  background: var(--yellow);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shift-card-top strong {
  font-size: 14px;
}

.shift-card-body {
  padding: 20px 18px 18px;
  display: grid;
  gap: 4px;
}

.shift-card-body span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.shift-card-body p {
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 800;
}

.shift-card-body strong {
  color: var(--red);
  font-family: "Unbounded", sans-serif;
  font-size: 13px;
}

.shift-card-button {
  width: 100%;
  padding: 13px;
  display: block;
  border: 0;
  color: var(--white);
  background: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.round-note {
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  position: absolute;
  left: -10px;
  bottom: 4px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
}

.round-note svg {
  width: 100%;
  height: 100%;
  position: absolute;
  animation: spin 16s linear infinite;
}

.round-note text {
  fill: var(--white);
  font-size: 11px;
  font-weight: 800;
}

.round-note span {
  font-size: 34px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.ticker {
  width: 100%;
  overflow: hidden;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  background: var(--red);
  color: var(--white);
  transform: rotate(-1.2deg);
}

.ticker-track {
  width: max-content;
  padding: 15px 0;
  display: flex;
  gap: 26px;
  align-items: center;
  font-family: "Unbounded", sans-serif;
  font-size: 17px;
  animation: ticker 20s linear infinite;
}

.ticker-track b {
  color: var(--yellow);
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: 140px 0;
}

.intro-section {
  padding-top: 165px;
}

.intro-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
  align-items: start;
}

.intro-copy {
  position: sticky;
  top: 120px;
}

.intro-copy h2,
.section-heading h2,
.steps-intro h2,
.faq-title h2 {
  margin-bottom: 24px;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1.08;
}

.intro-copy p,
.section-heading p,
.steps-intro > p,
.faq-title > p {
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
}

.benefit-list {
  border-top: 1px solid var(--line);
}

.benefit {
  padding: 34px 0;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.benefit-number {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.benefit h3 {
  margin-bottom: 9px;
  font-size: 22px;
}

.benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.vacancies-section {
  width: 100%;
  padding: 140px 0;
  background: transparent;
  color: var(--white);
}

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

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

.section-heading p {
  max-width: 370px;
  margin-bottom: 4px;
}

.vacancies-section .section-heading p {
  color: rgba(255, 250, 241, 0.58);
}

.vacancies-section .container {
  width: var(--page);
  margin: 0 auto;
}

.vacancies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.vacancy-card {
  position: relative;
  padding: 32px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #12151e;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.vacancy-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 92, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(124, 92, 255, 0.35), 0 30px 60px rgba(124, 92, 255, 0.16);
}


.card-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-icon {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  transition: transform 240ms ease, background 240ms ease, color 240ms ease;
}

.vacancy-card:hover .card-icon {
  transform: translateY(-3px) scale(1.08) rotate(-6deg);
}

.vacancy-card.featured .card-icon {
  background: var(--white);
  color: #0b0d14;
}

.card-icon svg {
  display: block;
  width: 24px;
  height: 24px;
}

.card-title {
  margin-bottom: 16px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.card-desc {
  margin-bottom: 26px;
  color: rgba(255, 250, 241, 0.58);
  font-size: 15px;
  line-height: 1.55;
}

.card-features {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 20px;
}

.card-features li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 250, 241, 0.55);
  font-size: 14px;
  line-height: 1.5;
}

.card-features li strong {
  color: var(--white);
  font-weight: 700;
}

.card-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background: var(--red);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") no-repeat center / contain;
}

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

.price-tag {
  display: block;
  width: 100%;
  padding: 15px 26px;
  border-radius: 12px;
  border: 1px solid rgba(255, 250, 241, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-weight: 800;
  font-size: 15px;
  text-align: center;
}

.price-tag.light {
  background: var(--white);
  border-color: var(--white);
  color: #0b0d14;
}

.conditions-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: 250px;
  gap: 16px;
}

.condition-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #12151e;
}

.condition-card > span,
.condition-photo span {
  width: fit-content;
  padding: 6px 9px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.condition-card h3 {
  margin-bottom: 8px;
  font-family: "Unbounded", sans-serif;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.condition-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.condition-red {
  grid-row: span 2;
  color: var(--white);
  background: linear-gradient(145deg, #8568ff, #6040e4);
}

.condition-red > span {
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #080a10;
  background: var(--yellow);
  font-family: "Unbounded", sans-serif;
  font-size: 36px;
}

.condition-red h3 {
  max-width: 320px;
  font-size: 42px;
}

.condition-red p,
.condition-dark p {
  color: rgba(255, 250, 241, 0.68);
}

.condition-photo {
  grid-column: span 2;
  color: var(--white);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(23, 24, 21, 0.9), rgba(23, 24, 21, 0.1)),
    url("assets/images/shuttle.png") center / cover;
}

.condition-photo div {
  max-width: 330px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.condition-photo p {
  color: rgba(255, 250, 241, 0.7);
}

.condition-dark {
  color: var(--white);
  background: #12151e;
}

.steps-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9vw;
}

.steps-intro {
  align-self: start;
  position: sticky;
  top: 120px;
}

.steps-intro .button {
  margin-top: 20px;
}

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

.step {
  min-height: 190px;
  padding: 34px 0;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 20px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.step-number {
  color: var(--red);
  font-family: "Unbounded", sans-serif;
  font-size: 15px;
}

.step h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.step p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.step-time {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.quote-section {
  min-height: 630px;
  padding: 120px max(24px, calc((100% - 980px) / 2));
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, #7654ff, #4d30bd);
  position: relative;
  overflow: hidden;
}

.quote-section::before,
.quote-section::after {
  content: "";
  width: 330px;
  height: 330px;
  position: absolute;
  border: 1px solid rgba(255, 250, 241, 0.28);
  border-radius: 50%;
}

.quote-section::before {
  top: -155px;
  left: -95px;
}

.quote-section::after {
  right: -100px;
  bottom: -160px;
}

.quote-mark {
  position: absolute;
  top: -90px;
  left: 50%;
  color: var(--yellow);
  font-family: Georgia, serif;
  font-size: 330px;
  line-height: 1;
  opacity: 0.22;
  transform: translateX(-50%);
}

.quote-section blockquote {
  margin: 0;
  position: relative;
  z-index: 1;
  text-align: center;
}

.quote-section blockquote > p {
  margin-bottom: 42px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(28px, 4.2vw, 55px);
  line-height: 1.22;
  letter-spacing: -0.05em;
}

.quote-section footer {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-align: left;
}

.avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--red);
  background: var(--white);
}

.avatar svg {
  width: 22px;
  height: 22px;
}

.quote-section footer div {
  display: grid;
}

.quote-section footer strong {
  font-size: 12px;
}

.quote-section footer span:last-child {
  color: rgba(255, 250, 241, 0.68);
  font-size: 10px;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 9vw;
}

.faq-title {
  align-self: start;
  position: sticky;
  top: 120px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  list-style: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary b {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--red);
  font-size: 19px;
  font-weight: 500;
  transition: transform 180ms ease, background 180ms ease;
}

.faq-item[open] summary b {
  color: var(--white);
  background: var(--red);
  transform: rotate(45deg);
}

.faq-item p {
  max-width: 620px;
  padding: 0 50px 28px 0;
  color: var(--muted);
  font-size: 14px;
}

.final-cta {
  min-height: 520px;
  padding: 90px max(24px, calc((100% - 1240px) / 2));
  display: flex;
  justify-content: space-between;
  gap: 80px;
  align-items: end;
  color: var(--white);
  background: #05060a;
  position: relative;
  overflow: hidden;
}

.final-cta-action::before {
  content: "";
  width: 340px;
  height: 340px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 54px solid rgba(124, 92, 255, 0.16);
  border-radius: 50%;
  z-index: -1;
}

.final-cta-copy,
.final-cta-action {
  position: relative;
  z-index: 1;
}

.final-cta-copy span {
  color: var(--yellow);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.final-cta-copy h2 {
  max-width: 840px;
  margin: 22px 0;
  font-size: clamp(42px, 6.6vw, 86px);
  line-height: 1.04;
}

.final-cta-copy p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 250, 241, 0.58);
}

.final-cta-action {
  flex: 0 0 230px;
  display: grid;
  gap: 14px;
  text-align: center;
}

.final-cta-action small {
  color: rgba(255, 250, 241, 0.45);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  padding: 44px max(24px, calc((100% - 1240px) / 2));
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr auto;
  gap: 40px;
  align-items: center;
  border-top: 1px solid rgba(255, 250, 241, 0.12);
  color: var(--white);
  background: #05060a;
}

.footer-logo .logo-text small {
  color: rgba(255, 250, 241, 0.45);
}

.site-footer p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 250, 241, 0.43);
  font-size: 10px;
}

.footer-links {
  display: flex;
  gap: 22px;
  font-size: 10px;
  font-weight: 800;
}

.copyright {
  color: rgba(255, 250, 241, 0.43);
  font-size: 9px;
}

.application-modal {
  width: min(560px, calc(100% - 30px));
  max-height: calc(100vh - 30px);
  padding: 42px;
  overflow-y: auto;
  border: 0;
  border-radius: var(--radius);
  color: var(--ink);
  background: #10131b;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6);
}

.application-modal::backdrop {
  background: rgba(2, 3, 6, 0.82);
  backdrop-filter: blur(7px);
}

.modal-close {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  position: absolute;
  top: 18px;
  right: 18px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  font-size: 24px;
}

.application-modal h2 {
  margin: 14px 0;
  font-size: clamp(34px, 6vw, 51px);
  line-height: 1.04;
}

.application-modal p {
  color: var(--muted);
  font-size: 13px;
}

.application-modal form {
  margin-top: 26px;
  display: grid;
  gap: 15px;
}

.application-modal label:not(.checkbox) {
  display: grid;
  gap: 7px;
}

.application-modal label > span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.application-modal input,
.application-modal select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: none;
  color: var(--ink);
  color-scheme: dark;
  background: #191d28;
  font-size: 13px;
}

.application-modal input:focus,
.application-modal select:focus {
  border-color: var(--red);
}

.application-modal input::placeholder {
  color: #707789;
}

.checkbox {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
}

.checkbox input {
  width: 16px;
  min-height: 16px;
  accent-color: var(--red);
}

.checkbox span {
  font-size: 9px;
  letter-spacing: 0;
  text-transform: none;
}

.application-modal form .button {
  width: 100%;
  margin-top: 5px;
}

.modal-success {
  padding: 36px 0 12px;
  text-align: center;
}

.success-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-family: "Unbounded", sans-serif;
  font-size: 34px;
}

.modal-success .button {
  min-width: 180px;
  margin-top: 15px;
}

.reveal {
  opacity: 0;
}

.reveal.visible {
  opacity: 1;
  animation: reveal-in 650ms ease backwards;
}

@keyframes reveal-in {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 42px;
  }

  .hero-visual {
    min-height: 540px;
  }

  .photo-frame {
    width: 94%;
    height: 500px;
  }

  .round-note {
    left: -38px;
  }

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

  .vacancy-card:last-child {
    grid-column: span 2;
  }

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

  .condition-red {
    grid-row: span 2;
  }

  .condition-photo {
    grid-column: span 1;
  }

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

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

  .site-header {
    height: 74px;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }

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

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

  .mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 45;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    border-radius: 16px;
    background: var(--red);
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(124, 92, 255, 0.45);
  }

  .mobile-cta span {
    font-size: 18px;
  }

  .live-toast {
    left: 12px;
    right: 12px;
    bottom: 88px;
    max-width: none;
  }

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

  .urgency-bar {
    flex-wrap: wrap;
    font-size: 13px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
  }

  .menu-toggle span {
    width: 16px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .main-nav {
    width: 100%;
    padding: 18px;
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #12151e;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 5px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border: 0;
  }

  .hero {
    min-height: auto;
    padding: 55px 0 90px;
  }

  .hero-grid,
  .intro-grid,
  .steps-section,
  .faq-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy {
    min-width: 0;
  }

  .hero h1 {
    font-size: clamp(52px, 12vw, 84px);
  }

  .hero-visual {
    width: min(560px, 100%);
    margin: 30px auto 0;
  }

  .photo-frame {
    width: 90%;
  }

  .round-note {
    left: 0;
  }

  .intro-copy,
  .steps-intro,
  .faq-title {
    position: static;
  }

  .intro-grid {
    gap: 50px;
  }

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

  .vacancy-card,
  .vacancy-card:last-child {
    grid-column: auto;
  }

  .conditions-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
  }

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

  .condition-red {
    grid-row: auto;
    grid-column: span 2;
  }

  .condition-red h3 {
    margin-top: 32px;
  }

  .steps-section,
  .faq-section {
    gap: 58px;
  }

  .section {
    padding: 100px 0;
  }

  .final-cta {
    min-height: 620px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
  }

  .final-cta-action {
    flex: auto;
    width: fit-content;
  }
}

@media (max-width: 590px) {
  .logo-text small {
    display: none;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }

  .eyebrow {
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.02;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

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

  .hero-points {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-points div {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
  }

  .hero-visual {
    min-height: 450px;
    margin-top: 5px;
  }

  .photo-frame {
    width: 94%;
    height: 420px;
    border-radius: 180px 180px 20px 20px;
  }

  .photo-frame img,
  .photo-frame::after {
    border-radius: 168px 168px 12px 12px;
  }

  .photo-frame::before {
    width: 80px;
    height: 80px;
    left: -35px;
  }

  .shift-card {
    width: 235px;
    right: -4px;
    bottom: -20px;
  }

  .round-note {
    width: 90px;
    height: 90px;
    bottom: -20px;
  }

  .round-note text {
    font-size: 9px;
  }

  .round-note span {
    font-size: 25px;
  }

  .ticker-track {
    font-size: 13px;
  }

  .section {
    padding: 90px 0;
  }

  .intro-section {
    padding-top: 115px;
  }

  .intro-copy h2,
  .section-heading h2,
  .steps-intro h2,
  .faq-title h2 {
    font-size: 35px;
  }

  .section-heading {
    margin-bottom: 38px;
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }

  .vacancies-section {
    padding: 90px 0;
  }

  .vacancy-card {
    padding: 24px;
  }

  .conditions-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .condition-card {
    min-height: 200px;
  }

  .condition-red,
  .condition-photo {
    grid-column: auto;
  }

  .condition-red h3 {
    margin-top: 28px;
    font-size: 34px;
  }

  .condition-photo {
    min-height: 300px;
  }

  .step {
    grid-template-columns: 44px 1fr;
  }

  .step-time {
    display: none;
  }

  .quote-section {
    min-height: 560px;
    padding: 90px 20px;
  }

  .quote-section blockquote > p {
    font-size: 26px;
  }

  .quote-section footer span:last-child {
    max-width: 190px;
  }

  .final-cta {
    min-height: 610px;
    padding: 70px 16px;
  }

  .final-cta-copy h2 {
    font-size: 39px;
  }

  .final-cta-action {
    width: 100%;
  }

  .site-footer {
    padding: 40px 16px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .application-modal {
    padding: 34px 20px 24px;
  }
}

/* Testimonials + proof */
.testimonials-section .section-heading p {
  color: var(--muted);
}

.proof-strip {
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.proof-item {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #12151e;
  text-align: center;
}

.proof-item strong {
  display: block;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1;
  color: var(--red);
}

.proof-item span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #12151e;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 92, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(124, 92, 255, 0.35), 0 30px 60px rgba(124, 92, 255, 0.16);
}

.testimonial-stars {
  margin-bottom: 16px;
  color: var(--yellow);
  font-size: 16px;
  letter-spacing: 3px;
}

.testimonial-card > p {
  flex: 1;
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 250, 241, 0.82);
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: "Unbounded", sans-serif;
  font-size: 15px;
}

.testimonial-card footer > div {
  display: grid;
  flex: 1;
  min-width: 0;
}

.testimonial-card footer strong {
  font-size: 14px;
}

.testimonial-card footer > div span {
  color: var(--muted);
  font-size: 11px;
}

.testimonial-earn {
  flex: 0 0 auto;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(124, 92, 255, 0.14);
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

/* Urgency bar */
.urgency-bar {
  width: var(--page);
  margin: 0 auto 8px;
  padding: 15px 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(124, 92, 255, 0.32);
  border-radius: 999px;
  background: rgba(124, 92, 255, 0.08);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.urgency-bar strong {
  color: var(--red);
}

/* Sticky mobile CTA */
.mobile-cta {
  display: none;
}

/* Live application toast */
.live-toast {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 44;
  max-width: 300px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #12151e;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 320ms ease, transform 320ms ease;
  pointer-events: none;
}

.live-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.live-avatar {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(124, 92, 255, 0.16);
  color: var(--red);
  font-weight: 800;
  font-size: 14px;
}

.live-text {
  display: grid;
}

.live-text strong {
  font-size: 13px;
}

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

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  box-shadow: 0 0 12px rgba(124, 92, 255, 0.6);
  transition: width 90ms linear;
  pointer-events: none;
}

/* Film grain texture */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Stagger reveal */
[data-stagger] > .reveal.visible:nth-child(2) { animation-delay: 90ms; }
[data-stagger] > .reveal.visible:nth-child(3) { animation-delay: 180ms; }
[data-stagger] > .reveal.visible:nth-child(4) { animation-delay: 270ms; }
[data-stagger] > .reveal.visible:nth-child(5) { animation-delay: 360ms; }

/* Keyboard focus */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 6px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Мобильные правила для компонентов, чьи базовые стили объявлены ниже
   основных медиа-запросов (должны идти последними, чтобы выиграть каскад). */
@media (max-width: 860px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .urgency-bar {
    flex-wrap: wrap;
    font-size: 13px;
  }

  .mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 45;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    border-radius: 16px;
    background: var(--red);
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(124, 92, 255, 0.45);
  }

  .mobile-cta span {
    font-size: 18px;
  }

  .live-toast {
    left: 12px;
    right: 12px;
    bottom: 88px;
    max-width: none;
  }
}

@media (max-width: 590px) {
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 24px;
  }
}

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

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

  .reveal,
  .fade-in {
    opacity: 1;
    transform: none;
  }

  .photo-frame {
    --parallax: 0px !important;
  }
}
