@font-face {
  font-family: "Manrope";
  src: url("/assets/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/manrope-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/manrope-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --night: #06101f;
  --night-2: #09172a;
  --night-3: #102139;
  --paper: #f5f3ed;
  --paper-2: #ebe8de;
  --ink: #07111f;
  --white: #f9faf7;
  --muted: #aab6c7;
  --mint: #72efd8;
  --aqua: #58dde1;
  --violet: #a799ff;
  --lime: #c9ff78;
  --line-dark: rgba(178, 201, 231, 0.23);
  --line-light: rgba(7, 17, 31, 0.15);
  --shell: min(1240px, calc(100vw - 48px));
  --shadow: 0 28px 80px rgba(1, 8, 18, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
  color-scheme: dark;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--night);
  color: var(--white);
  font-family: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--mint);
  color: var(--ink);
}

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

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

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

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--mint);
  color: var(--ink);
  font-weight: 750;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease;
}

.site-header.is-scrolled,
body.menu-open .site-header {
  background: rgba(6, 16, 31, 0.88);
  border-color: var(--line-dark);
  backdrop-filter: blur(22px) saturate(145%);
}

.header-inner {
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  font-size: 19px;
  font-weight: 750;
  letter-spacing: -0.035em;
}

.brand-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 8px 28px rgba(0, 0, 0, 0.22);
  object-fit: cover;
}

.brand strong {
  font-weight: 800;
}

.brand small {
  color: var(--mint);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateY(-7px);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 46px);
}

.desktop-nav a,
.mobile-nav a {
  position: relative;
  color: rgba(249, 250, 247, 0.76);
  font-size: 14px;
  font-weight: 600;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--mint);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.mobile-nav a:hover {
  color: var(--white);
}

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

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

.lang-menu {
  position: relative;
}

.lang-menu > summary {
  min-width: 67px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  font-size: 13px;
  font-weight: 700;
}

.lang-menu > summary::-webkit-details-marker {
  display: none;
}

.lang-menu > summary::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.lang-menu[open] > summary::after {
  transform: rotate(225deg) translate(-1px, -1px);
}

.lang-list {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  min-width: 148px;
  padding: 7px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: rgba(11, 22, 40, 0.98);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.32);
}

.lang-list a {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 9px 11px;
  border-radius: 9px;
  color: var(--muted);
  font-size: 13px;
}

.lang-list a:hover,
.lang-list a[aria-current="page"] {
  background: rgba(114, 239, 216, 0.1);
  color: var(--white);
}

.header-cta {
  height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 17px;
  border-radius: 12px;
  background: var(--mint);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms var(--ease), box-shadow 180ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(114, 239, 216, 0.24);
}

.arrow {
  display: inline-block;
  font-size: 1.25em;
  transition: transform 180ms var(--ease);
}

a:hover .arrow,
button:hover .arrow {
  transform: translateX(4px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button {
  gap: 4px;
}

.menu-button[aria-expanded="true"] span {
  opacity: 0;
}

.menu-button[aria-expanded="true"]::before {
  transform: translateY(5.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"]::after {
  transform: translateY(-5.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 900px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at var(--pointer-x, 76%) var(--pointer-y, 36%), rgba(88, 221, 225, 0.11), transparent 26%),
    radial-gradient(circle at 78% 34%, rgba(167, 153, 255, 0.08), transparent 28%),
    linear-gradient(150deg, #06101f 0%, #071426 58%, #05101d 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -320px;
  width: 690px;
  height: 690px;
  border: 1px solid rgba(114, 239, 216, 0.08);
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: var(--shell);
  margin: 0 auto;
  padding-top: 132px;
  padding-bottom: 64px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: clamp(34px, 5vw, 82px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.hero h1 {
  max-width: 710px;
  margin: 0;
  color: var(--white);
  font-size: clamp(58px, 5.75vw, 88px);
  font-weight: 780;
  line-height: 0.99;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--mint);
  font-style: normal;
}

.hero-lead {
  max-width: 570px;
  margin: 28px 0 0;
  color: rgba(249, 250, 247, 0.72);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.55;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  transition: transform 180ms var(--ease), border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  min-width: 205px;
  background: var(--mint);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 15px 45px rgba(114, 239, 216, 0.11);
}

.button-primary:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 18px 45px rgba(114, 239, 216, 0.22);
}

.button-secondary {
  min-width: 190px;
  border-color: rgba(249, 250, 247, 0.34);
  background: rgba(255, 255, 255, 0.025);
  color: var(--white);
}

.button-secondary:hover {
  border-color: var(--mint);
  background: rgba(114, 239, 216, 0.05);
}

.trust-row {
  margin: 38px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 0;
  list-style: none;
  color: rgba(249, 250, 247, 0.7);
  font-size: 13px;
  font-weight: 600;
}

.trust-row li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-row li:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 20px;
  margin: 0 18px;
  background: var(--line-dark);
}

.trust-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 15px rgba(114, 239, 216, 0.8);
}

.orbit-stage {
  position: relative;
  min-height: 610px;
  isolation: isolate;
}

.orbit-stage::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 11% 5% 0 0;
  background: radial-gradient(circle at 57% 52%, rgba(88, 221, 225, 0.1), transparent 18%);
  filter: blur(6px);
}

.orbit-line {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(145, 176, 219, 0.31);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(var(--rotate));
  animation: orbit-breathe 8s ease-in-out infinite alternate;
}

.orbit-line.one {
  width: 78%;
  height: 39%;
  --rotate: 21deg;
}

.orbit-line.two {
  width: 80%;
  height: 46%;
  --rotate: -22deg;
  animation-delay: -2s;
}

.orbit-line.three {
  width: 61%;
  height: 61%;
  --rotate: 68deg;
  border-color: rgba(114, 239, 216, 0.3);
  animation-delay: -4s;
}

.orbit-line.four {
  width: 94%;
  height: 72%;
  --rotate: 39deg;
  border-color: rgba(167, 153, 255, 0.24);
  animation-delay: -6s;
}

.match-core {
  position: absolute;
  z-index: 4;
  top: 51%;
  left: 53%;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: var(--mint);
  box-shadow:
    0 0 0 16px rgba(114, 239, 216, 0.08),
    0 0 0 42px rgba(88, 221, 225, 0.035),
    0 0 42px 16px rgba(114, 239, 216, 0.42);
}

.orbit-node {
  position: absolute;
  z-index: 2;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--node, var(--mint));
  box-shadow: 0 0 16px var(--node, var(--mint));
  animation: node-pulse 4s ease-in-out infinite;
}

.node-a { top: 19%; left: 31%; --node: var(--violet); }
.node-b { top: 27%; right: 20%; animation-delay: -1s; }
.node-c { top: 70%; left: 24%; --node: var(--violet); animation-delay: -2s; }
.node-d { right: 8%; bottom: 27%; animation-delay: -3s; }
.node-e { left: 50%; bottom: 8%; --node: var(--violet); animation-delay: -1.5s; }

.orbit-card {
  position: absolute;
  z-index: 3;
  width: min(310px, 48%);
  padding: 18px;
  border: 1px solid rgba(188, 211, 238, 0.28);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(17, 35, 60, 0.87), rgba(8, 20, 37, 0.82));
  box-shadow: 0 22px 65px rgba(1, 8, 18, 0.22);
  backdrop-filter: blur(15px);
  animation: card-float 7s ease-in-out infinite;
  transition: border-color 180ms ease, transform 180ms var(--ease);
}

.orbit-card:hover {
  border-color: rgba(114, 239, 216, 0.72);
  animation-play-state: paused;
  transform: translateY(-3px);
}

.orbit-card.candidate {
  top: 14%;
  right: 2%;
}

.orbit-card.employer {
  right: 0;
  bottom: 10%;
  animation-delay: -2.6s;
}

.orbit-card.match {
  top: 47%;
  left: 0;
  width: min(270px, 44%);
  animation-delay: -4.8s;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.card-type {
  color: var(--mint);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(249, 250, 247, 0.66);
  font-size: 10px;
  font-weight: 650;
}

.status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 10px rgba(114, 239, 216, 0.7);
}

.orbit-card h2 {
  margin: 0;
  color: var(--white);
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.orbit-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.card-symbol {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  margin-bottom: 15px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--mint), var(--aqua));
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 8px 28px rgba(114, 239, 216, 0.18);
}

.orbit-card.employer .card-symbol {
  background: linear-gradient(145deg, var(--violet), #d3cbff);
}

.orbit-card.match .card-symbol {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 32px;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(249, 250, 247, 0.45);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue::after {
  content: "";
  width: 1px;
  height: 42px;
  background: linear-gradient(var(--mint), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

.sector-ticker {
  position: relative;
  z-index: 5;
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: #081528;
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 18px 0;
  color: rgba(249, 250, 247, 0.72);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: ticker 30s linear infinite;
}

.ticker-track span {
  display: flex;
  align-items: center;
  gap: 34px;
}

.ticker-track span::after {
  content: "✦";
  color: var(--mint);
  font-size: 10px;
}

.section {
  position: relative;
  padding: clamp(92px, 10vw, 150px) 0;
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.section-cream {
  background: var(--paper-2);
  color: var(--ink);
}

.section-dark {
  background: var(--night);
  color: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.43fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 96px);
  align-items: start;
  margin-bottom: clamp(46px, 6vw, 82px);
}

.kicker {
  margin: 4px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #30675d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 20px;
  height: 1px;
  background: currentColor;
}

.section-dark .kicker {
  color: var(--mint);
}

.section-heading h2,
.coverage-intro h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 720;
  line-height: 1.05;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.section-heading h2 strong,
.coverage-intro h2 strong,
.contact-copy h2 strong {
  color: #2a6b60;
  font-weight: inherit;
}

.section-dark .section-heading h2 strong,
.section-dark .contact-copy h2 strong {
  color: var(--mint);
}

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

.audience-card {
  min-height: 520px;
  padding: clamp(28px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-light);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.46);
  overflow: hidden;
  transition: transform 280ms var(--ease), box-shadow 280ms ease;
}

.audience-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.audience-card.accent {
  background: var(--night);
  color: var(--white);
  border-color: transparent;
}

.card-index {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  margin-bottom: 76px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 750;
}

.audience-card.accent .card-index {
  color: var(--mint);
  border-color: rgba(114, 239, 216, 0.55);
}

.audience-card h3 {
  max-width: 480px;
  margin: 0;
  font-size: clamp(32px, 3.2vw, 49px);
  font-weight: 680;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.audience-card > p {
  max-width: 530px;
  margin: 22px 0 0;
  color: rgba(7, 17, 31, 0.65);
  font-size: 16px;
}

.audience-card.accent > p {
  color: rgba(249, 250, 247, 0.66);
}

.text-link {
  width: max-content;
  margin-top: auto;
  padding-top: 38px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 800;
}

.audience-card.accent .text-link {
  color: var(--mint);
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(52px, 8vw, 126px);
  align-items: start;
}

.coverage-intro {
  position: sticky;
  top: 135px;
}

.coverage-intro p {
  max-width: 470px;
  margin: 28px 0 0;
  color: rgba(7, 17, 31, 0.63);
  font-size: 17px;
}

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

.country-row {
  position: relative;
  min-height: 132px;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line-light);
  overflow: hidden;
}

.country-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--night);
  transform: translateY(102%);
  transition: transform 320ms var(--ease);
}

.country-row:hover::before {
  transform: translateY(0);
}

.country-code,
.country-row h3,
.country-row p {
  position: relative;
  z-index: 1;
  transition: color 220ms ease, transform 320ms var(--ease);
}

.country-code {
  color: #2a6b60;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.country-row h3 {
  margin: 0;
  font-size: clamp(25px, 2.5vw, 36px);
  font-weight: 680;
  letter-spacing: -0.045em;
}

.country-row p {
  max-width: 230px;
  margin: 0;
  color: rgba(7, 17, 31, 0.54);
  font-size: 13px;
  text-align: right;
}

.country-row:hover .country-code {
  color: var(--mint);
}

.country-row:hover h3,
.country-row:hover p {
  color: var(--white);
  transform: translateX(7px);
}

.coverage-note {
  margin-top: 23px;
  color: rgba(7, 17, 31, 0.48);
  font-size: 12px;
}

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

.sector-card {
  min-height: 310px;
  padding: 30px;
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(16, 33, 57, 0.83), rgba(7, 19, 35, 0.78));
  overflow: hidden;
  transition: transform 240ms var(--ease), border-color 240ms ease, background 240ms ease;
}

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

.sector-card:hover {
  transform: translateY(-5px);
  border-color: rgba(114, 239, 216, 0.5);
  background: linear-gradient(145deg, rgba(19, 42, 69, 0.95), rgba(7, 19, 35, 0.88));
}

.sector-card-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.sector-number {
  color: var(--mint);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.sector-plus {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--muted);
  font-size: 20px;
  transition: transform 240ms var(--ease), color 240ms ease, border-color 240ms ease;
}

.sector-card:hover .sector-plus {
  color: var(--mint);
  border-color: var(--mint);
  transform: rotate(45deg);
}

.sector-card h3 {
  margin: auto 0 18px;
  font-size: clamp(29px, 3vw, 42px);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

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

.process-grid {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
}

.process-step {
  position: relative;
  min-height: 310px;
  padding: 34px 26px 28px 0;
  border-bottom: 1px solid var(--line-dark);
  counter-increment: steps;
}

.process-step:not(:last-child) {
  border-right: 1px solid var(--line-dark);
  padding-right: 26px;
}

.process-step:not(:first-child) {
  padding-left: 26px;
}

.process-step::before {
  content: "0" counter(steps);
  display: block;
  margin-bottom: 78px;
  color: var(--mint);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.process-step h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

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

.faq-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 120px);
}

.faq-title h2 {
  margin: 0;
  font-size: clamp(39px, 4.5vw, 65px);
  font-weight: 710;
  line-height: 1.06;
  letter-spacing: -0.06em;
}

.faq-title p {
  max-width: 390px;
  margin: 24px 0 0;
  color: rgba(7, 17, 31, 0.6);
}

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

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

.faq-list summary {
  position: relative;
  padding: 27px 56px 27px 0;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

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

.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 700px;
  margin: -4px 0 0;
  padding: 0 56px 28px 0;
  color: rgba(7, 17, 31, 0.61);
  font-size: 15px;
}

.contact-section {
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  background:
    radial-gradient(circle at 8% 80%, rgba(167, 153, 255, 0.12), transparent 30%),
    radial-gradient(circle at 89% 14%, rgba(114, 239, 216, 0.12), transparent 27%),
    var(--night);
}

.contact-section::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -210px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(114, 239, 216, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(114, 239, 216, 0.025), 0 0 0 160px rgba(167, 153, 255, 0.018);
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1.22fr);
  gap: clamp(48px, 8vw, 118px);
  align-items: start;
}

.contact-copy > p {
  max-width: 475px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-top: 38px;
  color: var(--mint);
  font-size: clamp(17px, 2vw, 23px);
  font-weight: 720;
  border-bottom: 1px solid rgba(114, 239, 216, 0.5);
}

.copy-button {
  margin-top: 18px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(249, 250, 247, 0.34);
  background: none;
  color: rgba(249, 250, 247, 0.55);
  cursor: pointer;
  font-size: 12px;
}

.contact-form {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line-dark);
  border-radius: 26px;
  background: rgba(11, 25, 43, 0.78);
  box-shadow: 0 30px 90px rgba(1, 8, 18, 0.25);
  backdrop-filter: blur(18px);
}

.form-audience {
  margin: 0 0 30px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border: 0;
}

.form-audience legend {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.form-audience label {
  position: relative;
  cursor: pointer;
}

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

.form-audience span {
  min-height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.form-audience input:checked + span {
  border-color: var(--mint);
  background: rgba(114, 239, 216, 0.11);
  color: var(--white);
}

.form-audience input:focus-visible + span {
  outline: 3px solid var(--mint);
  outline-offset: 3px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px;
}

.field {
  display: grid;
  gap: 8px;
}

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

.field label {
  color: rgba(249, 250, 247, 0.62);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(188, 211, 238, 0.26);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  outline: 0;
  padding: 6px 0 12px;
  transition: border-color 180ms ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(170, 182, 199, 0.38);
}

.field input:focus,
.field textarea:focus {
  border-color: var(--mint);
}

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

.form-submit {
  width: 100%;
  margin-top: 26px;
}

.form-note {
  margin: 13px 0 0;
  color: rgba(249, 250, 247, 0.45);
  font-size: 11px;
  text-align: center;
}

.form-status {
  min-height: 18px;
  margin: 10px 0 0;
  color: var(--mint);
  font-size: 12px;
  text-align: center;
}

.site-footer {
  padding: 54px 0 32px;
  border-top: 1px solid var(--line-dark);
  background: #040c18;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
}

.footer-brand p {
  max-width: 330px;
  margin: 18px 0 0;
  color: rgba(249, 250, 247, 0.45);
  font-size: 13px;
}

.footer-nav {
  display: grid;
  gap: 10px;
}

.footer-nav strong {
  margin-bottom: 5px;
  color: rgba(249, 250, 247, 0.4);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-nav a {
  color: rgba(249, 250, 247, 0.72);
  font-size: 13px;
}

.footer-nav a:hover {
  color: var(--mint);
}

.footer-bottom {
  margin-top: 54px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line-dark);
  color: rgba(249, 250, 247, 0.35);
  font-size: 11px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.hero [data-reveal]:nth-child(2) { transition-delay: 60ms; }
.hero [data-reveal]:nth-child(3) { transition-delay: 110ms; }
.hero [data-reveal]:nth-child(4) { transition-delay: 160ms; }
.hero [data-reveal]:nth-child(5) { transition-delay: 210ms; }

.privacy-hero,
.not-found {
  min-height: 55vh;
  padding: 170px 0 90px;
  display: flex;
  align-items: flex-end;
  background: radial-gradient(circle at 70% 30%, rgba(114, 239, 216, 0.11), transparent 27%), var(--night);
}

.privacy-hero h1,
.not-found h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.065em;
}

.privacy-hero p,
.not-found p {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
}

.prose {
  max-width: 820px;
}

.prose h2 {
  margin: 56px 0 14px;
  font-size: 29px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.prose p,
.prose li {
  color: rgba(7, 17, 31, 0.68);
}

.prose a {
  color: #27675c;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.not-found {
  min-height: 100vh;
  align-items: center;
}

.not-found .button {
  margin-top: 32px;
}

@keyframes orbit-breathe {
  from { opacity: 0.63; }
  to { opacity: 1; }
}

@keyframes node-pulse {
  0%, 100% { transform: scale(0.88); opacity: 0.68; }
  50% { transform: scale(1.22); opacity: 1; }
}

@keyframes card-float {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -7px; }
}

@keyframes scroll-line {
  0%, 100% { transform: scaleY(0.35); transform-origin: top; opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

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

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .header-cta {
    display: none;
  }

  .mobile-nav {
    position: fixed;
    z-index: 90;
    inset: 92px 0 auto;
    max-height: calc(100vh - 92px);
    padding: 28px 24px 38px;
    display: grid;
    gap: 5px;
    background: rgba(6, 16, 31, 0.98);
    border-bottom: 1px solid var(--line-dark);
    transform: translateY(-125%);
    opacity: 0;
    visibility: hidden;
    transition: transform 300ms var(--ease), opacity 200ms ease, visibility 300ms;
  }

  .mobile-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line-dark);
    font-size: 19px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(410px, 0.82fr);
    gap: 20px;
  }

  .hero h1 {
    font-size: clamp(54px, 6.8vw, 72px);
  }

  .orbit-stage {
    transform: scale(0.88);
    transform-origin: center right;
  }

  .contact-layout {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 36px, 700px);
  }

  .header-inner {
    min-height: 78px;
  }

  .mobile-nav {
    inset: 78px 0 auto;
  }

  .brand {
    font-size: 17px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .lang-menu {
    display: none;
  }

  .hero {
    min-height: 0;
  }

  .hero-inner {
    padding-top: 142px;
    padding-bottom: 78px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero h1 {
    max-width: 650px;
    font-size: clamp(48px, 12vw, 74px);
  }

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

  .orbit-stage {
    width: 100%;
    min-height: 0;
    margin-top: 16px;
    padding: 24px 0 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transform: none;
  }

  .orbit-card.candidate,
  .orbit-card.employer,
  .orbit-card.match {
    position: relative;
    inset: auto;
    width: min(92%, 520px);
    animation: none;
  }

  .orbit-card.candidate {
    order: 1;
    align-self: flex-start;
  }

  .orbit-card.employer {
    order: 2;
    align-self: flex-end;
  }

  .orbit-card.match {
    order: 3;
    align-self: flex-start;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading,
  .coverage-layout,
  .faq-wrap,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .coverage-intro {
    position: static;
  }

  .audience-card {
    min-height: 460px;
  }

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

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step:nth-child(3) {
    padding-left: 0;
  }

  .contact-layout {
    gap: 48px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 28px);
  }

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

  .site-header {
    background: rgba(6, 16, 31, 0.78);
    backdrop-filter: blur(15px);
  }

  .header-actions {
    gap: 8px;
  }

  .hero-inner {
    padding-top: 124px;
    padding-bottom: 56px;
  }

  .eyebrow {
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(43px, 14.5vw, 62px);
    line-height: 1.01;
  }

  .hero-lead {
    margin-top: 23px;
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .trust-row li:not(:last-child)::after {
    display: none;
  }

  .orbit-stage {
    margin-top: 8px;
    padding-block: 18px 10px;
  }

  .orbit-line.one { width: 88%; height: 35%; }
  .orbit-line.two { width: 96%; height: 44%; }
  .orbit-line.three { width: 67%; height: 55%; }
  .orbit-line.four { width: 100%; height: 67%; }

  .orbit-card.candidate,
  .orbit-card.employer,
  .orbit-card.match {
    width: calc(100% - 18px);
    padding: 14px;
    border-radius: 15px;
  }

  .match-core {
    top: 50%;
    left: 51%;
  }

  .section {
    padding: 82px 0;
  }

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

  .section-heading h2,
  .coverage-intro h2,
  .contact-copy h2 {
    font-size: clamp(39px, 12vw, 54px);
  }

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

  .audience-card {
    min-height: 430px;
    padding: 28px 24px;
  }

  .card-index {
    margin-bottom: 62px;
  }

  .country-row {
    min-height: 120px;
    grid-template-columns: 54px 1fr;
  }

  .country-row p {
    display: none;
  }

  .sector-card,
  .sector-card:nth-child(2),
  .sector-card:nth-child(3) {
    grid-column: 1 / -1;
    min-height: 255px;
  }

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

  .process-step,
  .process-step:not(:last-child),
  .process-step:not(:first-child),
  .process-step:nth-child(3) {
    min-height: 240px;
    padding: 28px 0;
    border-right: 0;
  }

  .process-step::before {
    margin-bottom: 55px;
  }

  .faq-list summary {
    font-size: 16px;
  }

  .contact-form {
    padding: 23px 18px;
  }

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

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

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .privacy-hero,
  .not-found {
    padding-top: 130px;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
