
    :root {
      --bg: #08080b;
      --surface: #101017;
      --surface-2: #14111d;
      --text: #f8f7f8;
      --muted: #aaa7b2;
      --lime: #b8f400;
      --purple: #9a4cff;
      --purple-deep: #4c2379;
      --line: rgba(255,255,255,.11);
      --wrap: min(1160px, calc(100% - 48px));
      --radius: 20px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      min-width: 320px;
      overflow-x: hidden;
      color: var(--text);
      background:
        radial-gradient(900px 600px at 95% -10%, rgba(121,48,217,.14), transparent 62%),
        var(--bg);
      font-family: Manrope, Arial, sans-serif;
    }

    a { color: inherit; text-decoration: none; }
    button, input, select { font: inherit; }
    .wrap { width: var(--wrap); margin: 0 auto; }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--lime);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .09em;
      text-transform: uppercase;
    }
    .eyebrow::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--lime);
      box-shadow: 0 0 14px rgba(184,244,0,.9);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 17px;
      border-radius: 11px;
      border: 1px solid transparent;
      font-size: 13px;
      font-weight: 800;
      transition: transform .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn--lime {
      color: #0b0b0d;
      background: var(--lime);
      box-shadow: 0 12px 28px rgba(184,244,0,.16);
    }
    .btn--ghost {
      color: var(--text);
      border-color: rgba(154,76,255,.85);
      background: rgba(8,8,11,.25);
    }
    .btn--ghost:hover {
      color: var(--lime);
      border-color: var(--lime);
      box-shadow: 0 10px 24px rgba(184,244,0,.08);
    }

    /* Header */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      border-bottom: 1px solid rgba(255,255,255,.07);
      background: rgba(8,8,11,.9);
      backdrop-filter: blur(16px);
    }
    .nav {
      min-height: 78px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 24px;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      width: max-content;
    }
    .brand img {
      display: block;
      width: 54px;
      height: auto;
      filter: drop-shadow(0 2px 5px rgba(0,0,0,.45));
    }
    .brand-copy {
      display: grid;
      gap: 3px;
      line-height: 1;
    }
    .brand-copy b {
      font-size: 12px;
      letter-spacing: .04em;
    }
    .brand-copy b span { color: var(--lime); }
    .brand-copy small {
      color: #8d8995;
      font-size: 8px;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 29px;
      color: #d7d3dc;
      font-size: 13px;
      font-weight: 700;
    }
    .nav-links a { position: relative; }
    .nav-links a:hover,
    .nav-links a.active { color: var(--lime); }
    .nav-links a.active::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -12px;
      height: 2px;
      background: var(--lime);
      box-shadow: 0 0 12px rgba(184,244,0,.72);
    }
    .nav-cta { justify-self: end; }
    .menu-toggle {
      display: none;
      width: 42px;
      height: 42px;
      color: var(--text);
      border: 1px solid var(--line);
      border-radius: 10px;
      background: transparent;
    }

    /* Hero: clean, independent two-column layout */
    .hero {
      overflow: hidden;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .hero-grid {
      min-height: 530px;
      display: grid;
      grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
      align-items: center;
      gap: 28px;
    }
    .hero-copy {
      position: relative;
      z-index: 2;
      max-width: 500px;
      padding: 50px 0;
    }
    .hero-title {
      max-width: 535px;
      margin: 18px 0 20px;
      font-family: Unbounded, Arial, sans-serif;
      font-size: clamp(34px, 4vw, 54px);
      line-height: 1.05;
      letter-spacing: -.075em;
      text-transform: uppercase;
    }
    .hero-title .accent { color: var(--lime); }
    .hero-description {
      max-width: 430px;
      margin: 0;
      color: #bbb7c1;
      font-size: 14px;
      line-height: 1.68;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 26px;
    }
    .hero-note {
      display: flex;
      align-items: center;
      gap: 9px;
      margin: 23px 0 0;
      color: #918d99;
      font-size: 11px;
    }
    .hero-note i {
      width: 7px;
      height: 7px;
      flex: 0 0 auto;
      border-radius: 50%;
      background: var(--purple);
      box-shadow: 0 0 13px var(--purple);
    }
    .hero-media {
      min-width: 0;
      min-height: 530px;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      position: relative;
    }
    .hero-media::before {
      content: "";
      position: absolute;
      z-index: 1;
      left: 0;
      top: 0;
      bottom: 0;
      width: 70px;
      pointer-events: none;
      background: linear-gradient(90deg, var(--bg), rgba(8,8,11,.32), transparent);
    }
    .hero-media::after {
      content: "";
      position: absolute;
      z-index: 1;
      left: 0;
      right: 0;
      bottom: 0;
      height: 68px;
      pointer-events: none;
      background: linear-gradient(to bottom, transparent, var(--bg));
    }
    .hero-image {
      display: block;
      width: min(100%, 720px);
      max-height: 500px;
      object-fit: contain;
      object-position: right center;
      filter: saturate(1.03) contrast(1.02);
    }

    /* General content */
    section:not(.hero) { border-bottom: 1px solid rgba(255,255,255,.08); }
    .section { padding: 92px 0; }
    .split-head {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      align-items: end;
      gap: 44px;
      margin-bottom: 42px;
    }
    h2 {
      margin: 14px 0 0;
      font-family: Unbounded, Arial, sans-serif;
      font-size: clamp(26px, 3vw, 40px);
      line-height: 1.1;
      letter-spacing: -.065em;
    }
    .split-head p {
      max-width: 520px;
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
    }

    .facts {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .fact {
      min-height: 150px;
      padding: 25px 27px;
      border-right: 1px solid var(--line);
    }
    .fact:last-child { border-right: 0; }
    .fact i {
      color: var(--purple);
      font-size: 25px;
      font-style: normal;
    }
    .fact b {
      display: block;
      margin: 13px 0 7px;
      font-size: 16px;
      letter-spacing: -.02em;
    }
    .fact p {
      margin: 0;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.55;
    }

    .process { background: rgba(255,255,255,.016); }
    .steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .step {
      min-height: 205px;
      padding: 24px 20px;
      border-right: 1px solid var(--line);
    }
    .step:last-child { border-right: 0; }
    .step-num {
      width: 34px;
      height: 34px;
      display: inline-grid;
      place-items: center;
      margin-bottom: 28px;
      color: var(--lime);
      border: 1px solid rgba(154,76,255,.8);
      border-radius: 50%;
      font-size: 11px;
      font-weight: 800;
    }
    .step h3 {
      margin: 0 0 8px;
      font-size: 15px;
    }
    .step p {
      margin: 0;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.55;
    }

    /* Moving vacancy cards */
    .vacancy-section { overflow: hidden; }
    .marquee {
      overflow: hidden;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .marquee-track {
      display: flex;
      width: max-content;
      padding: 18px 0;
      will-change: transform;
      animation: marquee-left var(--marquee-duration, 68s) linear infinite;
    }
    .marquee-group {
      display: flex;
      flex: 0 0 auto;
      gap: 15px;
      padding-right: 15px;
    }
    @keyframes marquee-left {
      to { transform: translateX(-50%); }
    }
    .job-card {
      width: 252px;
      min-height: 112px;
      flex: 0 0 auto;
      padding: 18px;
      border: 1px solid rgba(154,76,255,.45);
      border-radius: 16px;
      background: linear-gradient(135deg, #161120, #0d0d12);
    }
    .job-card .tag {
      display: inline-flex;
      padding: 4px 7px;
      color: #d1cdd7;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 999px;
      font-size: 10px;
      font-weight: 700;
    }
    .job-card h3 {
      margin: 16px 0 8px;
      font-size: 15px;
      letter-spacing: -.025em;
    }
    .job-card p {
      margin: 0;
      color: var(--muted);
      font-size: 12px;
    }
    .job-card p::before {
      content: "●";
      color: var(--lime);
      margin-right: 6px;
    }
    .center { display: flex; justify-content: center; padding-top: 29px; }

    .testimonials { background: rgba(255,255,255,.016); }
    .reviews {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 15px;
    }
    .review {
      min-height: 210px;
      padding: 25px;
      border: 1px solid var(--line);
      border-radius: 17px;
      background: rgba(14,13,20,.74);
    }
    .quote {
      color: var(--purple);
      font-size: 34px;
      line-height: .5;
    }
    .review p {
      margin: 15px 0 22px;
      color: #d9d6de;
      font-size: 13px;
      line-height: 1.65;
    }
    .review small {
      color: var(--muted);
      font-size: 11px;
    }

    .lead { padding: 78px 0; }
    .lead-box {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 46px;
      padding: 46px;
      overflow: hidden;
      border: 1px solid rgba(154,76,255,.76);
      border-radius: 23px;
      background:
        radial-gradient(300px 270px at 0% 100%, rgba(154,76,255,.27), transparent 65%),
        linear-gradient(120deg, #120e1c, #0e0d13 72%, #190d2a);
    }
    .lead-box h2 { margin-top: 15px; }
    .lead-box h2 strong { color: var(--lime); }
    .lead-box p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
    }
    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .field {
      width: 100%;
      min-height: 49px;
      padding: 0 14px;
      color: var(--text);
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 10px;
      outline: none;
      background: rgba(7,7,10,.72);
    }
    .field::placeholder { color: #898590; }
    .field:focus {
      border-color: var(--lime);
      box-shadow: 0 0 0 3px rgba(184,244,0,.10);
    }
    .full { grid-column: 1 / -1; }
    .lead form .btn {
      width: 100%;
      margin-top: 12px;
    }
    .lead form small {
      display: block;
      margin-top: 11px;
      color: #898590;
      font-size: 10px;
      line-height: 1.5;
    }

    footer { padding: 42px 0 28px; }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr .7fr .9fr .8fr;
      gap: 28px;
    }
    .footer-title {
      margin: 0 0 12px;
      color: #898590;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .footer-links {
      display: grid;
      gap: 8px;
      color: #cac7d0;
      font-size: 12px;
    }
    .footer-links a:hover { color: var(--lime); }

    .social-links {
      display: grid;
      gap: 10px;
      color: #cac7d0;
      font-size: 12px;
    }
    .social-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      width: max-content;
    }
    .social-link svg {
      width: 16px;
      height: 16px;
      flex: 0 0 auto;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.8;
    }
    .social-link:hover {
      color: var(--lime);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      margin-top: 35px;
      padding-top: 16px;
      color: #7f7b86;
      border-top: 1px solid rgba(255,255,255,.08);
      font-size: 10px;
    }

    @media (max-width: 900px) {
      :root { --wrap: min(100% - 36px, 1160px); }
      .nav {
        grid-template-columns: 1fr auto;
        min-height: 70px;
      }
      .nav-links, .nav-cta { display: none; }
      .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }
      .hero-grid,
      .split-head,
      .lead-box {
        grid-template-columns: 1fr;
      }
      .hero-grid {
        min-height: auto;
        gap: 0;
      }
      .hero-copy {
        max-width: 620px;
        padding: 42px 0 10px;
      }
      .hero-media {
        order: -1;
        min-height: 360px;
        justify-content: center;
      }
      .hero-media::before { display: none; }
      .hero-image {
        width: min(100%, 680px);
        max-height: 350px;
      }
      .split-head {
        gap: 18px;
      }
      .facts,
      .steps,
      .reviews {
        grid-template-columns: 1fr;
      }
      .fact,
      .step {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }
      .fact:last-child,
      .step:last-child {
        border-bottom: 0;
      }
      .step-num { margin-bottom: 13px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 560px) {
      :root { --wrap: calc(100% - 28px); }
      .brand img { width: 48px; }
      .brand-copy small { display: none; }
      .hero-copy {
        padding: 28px 0 6px;
      }
      .hero-title {
        font-size: clamp(32px, 10vw, 43px);
      }
      .hero-description { font-size: 13px; }
      .hero-media {
        min-height: 260px;
      }
      .hero-image {
        width: 116%;
        max-width: none;
        max-height: 260px;
      }
      .section { padding: 70px 0; }
      .lead { padding: 60px 0; }
      .lead-box {
        padding: 28px 22px;
        gap: 24px;
      }
      .form-grid { grid-template-columns: 1fr; }
      .full { grid-column: auto; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom {
        flex-direction: column;
        gap: 8px;
      }
    }
  

/* --------------------------------------------------------------------------
   WordPress template extensions: catalog, vacancy page, form feedback
   -------------------------------------------------------------------------- */
.wh-form-status { display:none; margin-top:10px; color:var(--lime); font-size:11px; line-height:1.5; }
.wh-form-status.is-visible { display:block; }
.lead-form .wh-consent { display:flex; align-items:flex-start; gap:8px; margin:12px 0 0; color:#898590; font-size:10px; line-height:1.45; }
.lead-form .wh-consent input { width:14px; height:14px; margin:0; accent-color:var(--lime); }

/* Catalog */
.catalog-hero { border-bottom:1px solid rgba(255,255,255,.08); }
.catalog-hero-grid { min-height:404px; display:grid; grid-template-columns:minmax(0,1fr) 330px; gap:32px; align-items:center; padding:57px 0 50px; }
.catalog-hero h1 { margin:18px 0 0; max-width:735px; font-family:Unbounded,Arial,sans-serif; font-size:clamp(34px,4vw,54px); line-height:1.05; letter-spacing:-.075em; text-transform:uppercase; }
.catalog-hero h1 span { color:var(--lime); }
.catalog-hero p { max-width:505px; margin:21px 0 0; color:#bbb7c1; font-size:14px; line-height:1.68; }
.catalog-count { position:relative; overflow:hidden; min-height:194px; padding:27px; border:1px solid rgba(154,76,255,.45); border-radius:var(--radius); background:radial-gradient(230px 180px at 100% 100%, rgba(184,244,0,.13), transparent 65%), linear-gradient(145deg,rgba(154,76,255,.14),rgba(16,16,23,.88)); }
.catalog-count::after { content:""; position:absolute; width:200px; height:200px; right:-92px; bottom:-110px; border:28px solid var(--purple); border-right-color:var(--lime); border-radius:50%; opacity:.82; }
.catalog-count b { position:relative; z-index:1; display:block; color:var(--lime); font-family:Unbounded,Arial,sans-serif; font-size:48px; letter-spacing:-.08em; }
.catalog-count span { position:relative; z-index:1; display:block; max-width:230px; margin-top:12px; color:#bbb7c1; font-size:13px; line-height:1.58; }
.catalog-content { padding:31px 0 76px; }
.catalog-filters { display:grid; grid-template-columns:1.25fr 1fr 1fr auto; gap:12px; padding:14px; border:1px solid var(--line); border-radius:14px; background:rgba(16,16,23,.86); backdrop-filter:blur(14px); }
.catalog-filters select { width:100%; height:48px; padding:0 38px 0 15px; color:#f0eff3; border:1px solid rgba(255,255,255,.1); border-radius:10px; outline:none; background-color:#101017; appearance:none; background-image:linear-gradient(45deg,transparent 50%,#a6a4ad 50%),linear-gradient(135deg,#a6a4ad 50%,transparent 50%); background-position:calc(100% - 18px) 20px,calc(100% - 13px) 20px; background-size:5px 5px,5px 5px; background-repeat:no-repeat; }
.catalog-filters select:focus { border-color:rgba(184,244,0,.78); }
.catalog-reset { min-height:48px; padding:0 17px; color:#e9e8ec; border:1px solid rgba(255,255,255,.15); border-radius:9px; background:transparent; font-size:12px; font-weight:800; }
.catalog-reset:hover { color:var(--lime); border-color:var(--lime); }
.catalog-meta { display:flex; justify-content:space-between; gap:18px; align-items:center; margin:28px 0 18px; }
.catalog-meta p { margin:0; color:#b9b5c0; font-size:14px; }
.catalog-meta .catalog-note { color:#84828c; font-size:12px; }
.vacancy-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
.vacancy-card { display:flex; flex-direction:column; min-height:326px; padding:27px; border:1px solid var(--line); border-radius:var(--radius); background:linear-gradient(145deg,rgba(154,76,255,.06),transparent 36%),var(--surface); transition:transform .22s ease,border-color .22s ease,background .22s ease; }
.vacancy-card:hover { transform:translateY(-4px); border-color:rgba(184,244,0,.62); background:linear-gradient(145deg,rgba(154,76,255,.10),transparent 40%),var(--surface-2); box-shadow:0 18px 50px rgba(0,0,0,.22); }
.vacancy-card-top { display:flex; justify-content:space-between; gap:16px; align-items:flex-start; }
.vacancy-card h2 { max-width:410px; margin:0; font-family:Unbounded,Arial,sans-serif; font-size:clamp(20px,2.15vw,27px); line-height:1.16; letter-spacing:-.065em; text-transform:uppercase; }
.vacancy-status { flex:0 0 auto; padding:6px 9px; color:var(--lime); border:1px solid rgba(184,244,0,.42); border-radius:999px; background:rgba(184,244,0,.04); font-size:9px; font-weight:900; letter-spacing:.08em; text-transform:uppercase; }
.vacancy-salary { margin:25px 0 0; color:var(--lime); font-size:20px; font-weight:900; letter-spacing:-.035em; }
.vacancy-summary { margin:12px 0 0; color:#bbb7c1; font-size:14px; line-height:1.58; }
.vacancy-tags { display:flex; flex-wrap:wrap; gap:8px; margin-top:20px; }
.vacancy-tags i { display:inline-flex; align-items:center; min-height:30px; padding:0 9px; color:#ceccd4; border:1px solid rgba(255,255,255,.07); border-radius:7px; background:rgba(255,255,255,.035); font-size:11px; font-style:normal; }
.vacancy-card-bottom { display:flex; justify-content:space-between; align-items:center; gap:16px; margin-top:auto; padding-top:25px; }
.vacancy-city { display:flex; gap:7px; align-items:center; color:#dad9df; font-size:12px; font-weight:700; }
.vacancy-city::before { content:""; width:7px; height:7px; border-radius:50%; background:var(--purple); box-shadow:0 0 0 4px rgba(154,76,255,.13); }
.vacancy-more { color:var(--lime); font-size:12px; font-weight:900; }
.catalog-empty { margin-top:12px; padding:30px; color:#c6c4cb; border:1px dashed var(--line); border-radius:14px; text-align:center; }
.catalog-pager { display:flex; gap:8px; margin-top:28px; padding:0; list-style:none; }
.catalog-pager a,.catalog-pager span { display:inline-flex; align-items:center; justify-content:center; min-width:36px; min-height:36px; padding:0 10px; border:1px solid var(--line); border-radius:9px; font-size:12px; }
.catalog-pager .current { color:#0c0d08; border-color:var(--lime); background:var(--lime); }
.catalog-cta { margin-top:70px; padding:42px 0 78px; border-top:1px solid var(--line); }
.catalog-cta-card { display:grid; grid-template-columns:1.1fr .9fr; gap:32px; align-items:end; padding:34px; border:1px solid rgba(154,76,255,.5); border-radius:var(--radius); background:radial-gradient(420px 200px at 100% 80%,rgba(184,244,0,.13),transparent 64%),linear-gradient(112deg,rgba(154,76,255,.18),rgba(16,16,23,.93) 62%); }
.catalog-cta-card h2 { margin:14px 0 0; font-family:Unbounded,Arial,sans-serif; font-size:clamp(27px,3.6vw,43px); line-height:1.1; letter-spacing:-.07em; text-transform:uppercase; }
.catalog-cta-card p { max-width:540px; margin:17px 0 0; color:#d4d1da; font-size:14px; line-height:1.65; }
.catalog-cta-card .btn { justify-self:end; }

/* Single vacancy */
.vacancy-hero { padding:30px 0 58px; border-bottom:1px solid rgba(255,255,255,.08); }
.breadcrumbs { display:flex; gap:9px; flex-wrap:wrap; align-items:center; color:#8e8a95; font-size:12px; }
.breadcrumbs a:hover { color:var(--lime); }
.breadcrumbs span:last-child { color:#d2ced6; }
.vacancy-hero-grid { margin-top:35px; }
.vacancy-hero-copy { max-width:760px; }
.vacancy-mobile-apply { display:none; }
.vacancy-hero-title { margin:17px 0 0; max-width:690px; font-family:Unbounded,Arial,sans-serif; font-size:clamp(38px,5.4vw,67px); line-height:1.01; letter-spacing:-.078em; text-transform:uppercase; }
.vacancy-intro { max-width:590px; margin:16px 0 0; color:#c0bcc6; font-size:15px; line-height:1.7; }
.salary-card { position:relative; display:grid; gap:6px; width:min(100%,430px); margin:25px 0 0; padding:17px 19px 18px; overflow:hidden; border:1px solid rgba(184,244,0,.58); border-radius:15px; background:radial-gradient(230px 130px at 100% 0%,rgba(184,244,0,.16),transparent 66%),linear-gradient(125deg,rgba(184,244,0,.09),rgba(15,15,19,.92) 62%); box-shadow:0 16px 34px rgba(184,244,0,.07); }
.salary-card::before { content:""; position:absolute; top:0; bottom:0; left:0; width:4px; background:var(--lime); box-shadow:0 0 18px rgba(184,244,0,.82); }
.salary-card span { color:#9d9aa3; font-size:10px; font-weight:900; letter-spacing:.11em; text-transform:uppercase; }
.salary-card b { color:var(--lime); font-family:Unbounded,Arial,sans-serif; font-size:clamp(24px,3vw,34px); line-height:1; letter-spacing:-.08em; }
.salary-card small { color:#cbc7cf; font-size:11px; font-weight:600; }
.vacancy-layout { display:grid; grid-template-columns:minmax(0,1fr) 360px; gap:34px; align-items:start; padding:4px 0 76px; }
.vacancy-content { max-width:705px; }
.vacancy-section { padding:32px 0; border-top:1px solid var(--line); }
.vacancy-section:first-child { padding-top:0; border-top:0; }
.vacancy-section h2 { margin:0; font-family:Unbounded,Arial,sans-serif; font-size:clamp(20px,2.4vw,28px); line-height:1.18; letter-spacing:-.065em; text-transform:uppercase; }
.vacancy-section p,.vacancy-section .content { margin:18px 0 0; color:#c3bfc8; font-size:14px; line-height:1.76; }
.info-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:11px; margin-top:21px; }
.info-card { min-height:103px; padding:17px; border:1px solid var(--line); border-radius:14px; background:rgba(255,255,255,.025); }
.info-card small { display:block; color:#918d98; font-size:10px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.info-card b { display:block; margin-top:9px; color:#f1eef4; font-size:14px; line-height:1.35; }
.bullets { display:grid; gap:11px; margin:21px 0 0; padding:0; list-style:none; }
.bullets li { position:relative; padding-left:22px; color:#cbc7cf; font-size:14px; line-height:1.6; }
.bullets li::before { content:""; position:absolute; top:.65em; left:0; width:8px; height:8px; border-radius:50%; background:var(--lime); box-shadow:0 0 12px rgba(184,244,0,.55); }
.vacancy-form-card { position:sticky; top:101px; padding:23px; border:1px solid rgba(154,76,255,.52); border-radius:var(--radius); background:radial-gradient(270px 200px at 100% 0%,rgba(154,76,255,.18),transparent 67%),var(--surface); }
.vacancy-form-card h2 { margin:0; font-family:Unbounded,Arial,sans-serif; font-size:23px; line-height:1.2; letter-spacing:-.065em; text-transform:uppercase; }
.vacancy-form-card > p { margin:11px 0 20px; color:#bcb8c2; font-size:12px; line-height:1.62; }
.vacancy-form-fields { display:grid; gap:10px; }
.vacancy-field label { display:block; margin:0 0 6px; color:#c3bfca; font-size:11px; font-weight:700; }
.vacancy-field input { width:100%; height:48px; padding:0 13px; color:#f2eff4; border:1px solid rgba(255,255,255,.12); border-radius:9px; outline:none; background:#0d0d13; font-size:13px; }
.vacancy-field input::placeholder { color:#77737e; }
.vacancy-field input:focus { border-color:rgba(184,244,0,.78); }
.vacancy-consent { display:flex; align-items:flex-start; gap:9px; margin:14px 0 17px; color:#96929c; font-size:10px; line-height:1.48; }
.vacancy-consent input { width:15px; height:15px; flex:0 0 auto; margin:1px 0 0; accent-color:var(--lime); }
.vacancy-form-card .btn { width:100%; }
.vacancy-back { display:inline-flex; align-items:center; gap:8px; margin-top:29px; color:var(--lime); font-size:12px; font-weight:800; }

@media (max-width:980px) {
  .catalog-hero-grid,.vacancy-hero-grid,.vacancy-layout { grid-template-columns:1fr; }
  .catalog-hero-grid { min-height:auto; padding:44px 0 36px; }
  .catalog-count { min-height:160px; max-width:520px; }
  .vacancy-form-card { position:relative; top:auto; max-width:630px; }
}
@media (max-width:780px) {
  .catalog-filters { grid-template-columns:1fr 1fr; }
  .catalog-reset { grid-column:span 2; }
  .vacancy-grid { grid-template-columns:1fr; }
  .catalog-meta { align-items:flex-start; flex-direction:column; }
  .catalog-cta-card { grid-template-columns:1fr; }
  .catalog-cta-card .btn { justify-self:start; }
}
@media (max-width:560px) {
  .catalog-filters { grid-template-columns:1fr; }
  .catalog-reset { grid-column:auto; }
  .vacancy-card-top { flex-direction:column; }
  .vacancy-mobile-apply { display:inline-flex; width:100%; justify-content:center; margin-top:22px; }
  .vacancy-form-card { scroll-margin-top:90px; }
  .info-grid { grid-template-columns:1fr; }
  .vacancy-layout { gap:22px; padding-bottom:52px; }
}

@media (max-width:900px){
  /* On mobile the header remains part of the page flow: it scrolls away together
     with the opened menu instead of staying under the browser address bar. */
  .site-header {
    position:relative;
    top:auto;
  }
  .nav-links.is-open { position:absolute; top:70px; left:18px; right:18px; display:grid; gap:15px; padding:20px; border:1px solid var(--line); border-radius:15px; background:#101017; box-shadow:0 24px 60px rgba(0,0,0,.38); }
  .nav { position:relative; }
}


/* About page */
.about-page-hero { padding:30px 0 76px; border-bottom:1px solid rgba(255,255,255,.08); }
.about-page-intro { display:grid; grid-template-columns:minmax(0,1.08fr) minmax(280px,.62fr); gap:54px; align-items:end; margin-top:46px; }
.about-page-intro h1 { max-width:790px; margin:17px 0 0; font-family:Unbounded,Arial,sans-serif; font-size:clamp(34px,4.7vw,64px); line-height:1.04; letter-spacing:-.08em; text-transform:uppercase; }
.about-page-intro h1 span { color:var(--lime); }
.about-page-lead { padding-bottom:6px; }
.about-page-lead p { margin:0; color:#c3bfc8; font-size:15px; line-height:1.72; }
.about-page-lead .btn { margin-top:24px; }
.about-team-photo { position:relative; margin:48px 0 0; overflow:hidden; border:1px solid rgba(154,76,255,.56); border-radius:22px; background:#101017; }
.about-team-photo::before { content:""; position:absolute; z-index:1; top:0; left:0; width:120px; height:3px; background:var(--lime); box-shadow:0 0 22px rgba(184,244,0,.72); }
.about-team-photo img { display:block; width:100%; aspect-ratio:16 / 8.7; object-fit:cover; object-position:center 43%; filter:saturate(1.04) contrast(1.02); }
.about-team-photo figcaption { position:absolute; z-index:1; right:18px; bottom:17px; padding:8px 10px; color:#f4f2f6; border:1px solid rgba(255,255,255,.14); border-radius:8px; background:rgba(8,8,11,.72); backdrop-filter:blur(8px); font-size:10px; font-weight:800; letter-spacing:.06em; text-transform:uppercase; }

.about-page-section { padding:88px 0; border-bottom:1px solid rgba(255,255,255,.08); }
.about-page-surface { background:rgba(255,255,255,.018); }
.about-statement { display:grid; grid-template-columns:minmax(0,.98fr) minmax(280px,.84fr); gap:65px; align-items:start; }
.about-statement h2 { max-width:680px; }
.about-statement > div p { margin:0; color:#bebac4; font-size:15px; line-height:1.76; }
.about-statement > div p + p { margin-top:18px; }
.about-flow { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.about-flow article { min-height:230px; padding:26px 22px; border-right:1px solid var(--line); }
.about-flow article:last-child { border-right:0; }
.about-flow span { display:inline-flex; color:var(--lime); font-size:11px; font-weight:900; letter-spacing:.08em; }
.about-flow h3 { margin:44px 0 10px; font-size:16px; letter-spacing:-.025em; }
.about-flow p { margin:0; color:var(--muted); font-size:12px; line-height:1.62; }

.about-benefits { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:15px; }
.about-benefits article { min-height:210px; padding:24px; border:1px solid var(--line); border-radius:17px; background:linear-gradient(145deg,rgba(154,76,255,.08),transparent 45%),rgba(16,16,23,.8); }
.about-benefits i { display:inline-flex; color:var(--purple); font-size:11px; font-style:normal; font-weight:900; letter-spacing:.1em; }
.about-benefits h3 { margin:43px 0 9px; font-size:17px; letter-spacing:-.025em; }
.about-benefits p { max-width:450px; margin:0; color:var(--muted); font-size:13px; line-height:1.62; }

.about-approach { display:grid; grid-template-columns:minmax(0,.9fr) minmax(280px,.72fr); gap:76px; align-items:end; padding:4px 0; }
.about-approach h2 { max-width:650px; }
.about-approach-text { border-left:2px solid var(--lime); padding-left:23px; }
.about-approach-text p { margin:0; color:#c6c2cb; font-size:15px; line-height:1.74; }
.about-approach-text p + p { margin-top:17px; color:#96929d; }
.about-candidates { display:grid; grid-template-columns:minmax(0,1fr) auto; gap:36px; align-items:end; padding:35px; border:1px solid rgba(154,76,255,.58); border-radius:20px; background:radial-gradient(420px 260px at 100% 100%,rgba(184,244,0,.14),transparent 68%),linear-gradient(120deg,rgba(154,76,255,.17),rgba(16,16,23,.95) 62%); }
.about-candidates h2 { max-width:760px; }
.about-candidates p { max-width:680px; margin:18px 0 0; color:#ccc8d0; font-size:14px; line-height:1.7; }
.about-candidates .btn { align-self:end; white-space:nowrap; }

@media (max-width:980px) {
  .about-page-intro,.about-statement,.about-approach { grid-template-columns:1fr; gap:28px; }
  .about-page-lead { max-width:600px; padding-bottom:0; }
  .about-flow { grid-template-columns:repeat(2,1fr); }
  .about-flow article:nth-child(2) { border-right:0; }
  .about-flow article:nth-child(-n+2) { border-bottom:1px solid var(--line); }
}
@media (max-width:700px) {
  .about-page-hero { padding:26px 0 53px; }
  .about-page-intro { margin-top:34px; }
  .about-team-photo { margin-top:33px; border-radius:16px; }
  .about-team-photo img { aspect-ratio:1.16 / 1; object-position:center; }
  .about-team-photo figcaption { right:12px; bottom:12px; font-size:9px; }
  .about-page-section { padding:62px 0; }
  .about-flow,.about-benefits { grid-template-columns:1fr; }
  .about-flow article,.about-flow article:nth-child(2) { border-right:0; border-bottom:1px solid var(--line); }
  .about-flow article:last-child { border-bottom:0; }
  .about-benefits article { min-height:180px; }
  .about-candidates { grid-template-columns:1fr; gap:26px; padding:25px; }
  .about-candidates .btn { width:100%; }
}


/* Fixed Ukrainian phone prefix */
.phone-field,
.wh-phone-control {
  display:flex;
  align-items:center;
  gap:9px;
}
.phone-field {
  padding:0 14px;
}
.phone-field:focus-within {
  border-color:var(--lime);
  box-shadow:0 0 0 3px rgba(184,244,0,.10);
}
.phone-prefix,
.wh-phone-prefix {
  flex:0 0 auto;
  color:var(--lime);
  font-size:13px;
  font-weight:900;
  letter-spacing:.015em;
}
.phone-field input,
.wh-phone-control input {
  width:100%;
  min-width:0;
  min-height:44px;
  padding:0;
  color:var(--text);
  border:0;
  outline:0;
  background:transparent;
}
.phone-field input::placeholder,
.wh-phone-control input::placeholder {
  color:#898590;
}
.wh-phone-control {
  min-height:44px;
  padding:0 13px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:10px;
  background:rgba(7,7,10,.72);
}
.wh-phone-control:focus-within {
  border-color:var(--lime);
  box-shadow:0 0 0 3px rgba(184,244,0,.10);
}


/* Legal pages and informed consent */
.wh-consent a,
.vacancy-consent a {
  color:var(--lime);
  text-decoration:underline;
  text-decoration-color:rgba(184,244,0,.45);
  text-underline-offset:2px;
}
.wh-consent a:hover,
.vacancy-consent a:hover { color:#e8ff87; }
.footer-legal { display:inline-flex; flex-wrap:wrap; gap:7px; }
.footer-legal a { color:#aaa6b1; text-decoration:none; }
.footer-legal a:hover { color:var(--lime); }
.footer-legal i { color:#625e68; font-style:normal; }

.legal-hero { padding:31px 0 64px; border-bottom:1px solid rgba(255,255,255,.08); }
.legal-hero-inner { max-width:890px; margin-top:45px; }
.legal-hero h1 { max-width:880px; margin:17px 0 0; font-family:Unbounded,Arial,sans-serif; font-size:clamp(34px,4.7vw,62px); line-height:1.06; letter-spacing:-.078em; text-transform:uppercase; }
.legal-hero-inner > p { margin:20px 0 0; color:#96929d; font-size:12px; }
.legal-page-content { padding:72px 0 96px; }
.legal-document { max-width:875px; padding:34px; border:1px solid rgba(255,255,255,.1); border-radius:19px; background:linear-gradient(145deg,rgba(154,76,255,.07),transparent 38%),rgba(16,16,23,.78); }
.legal-document .legal-lead { margin:0 0 35px; padding:0 0 28px; color:#d2ced6; border-bottom:1px solid rgba(255,255,255,.1); font-size:16px; line-height:1.76; }
.legal-document h2 { margin:34px 0 13px; color:#f4f1f7; font-family:Unbounded,Arial,sans-serif; font-size:19px; line-height:1.35; letter-spacing:-.04em; }
.legal-document h2:first-of-type { margin-top:0; }
.legal-document p,
.legal-document li { color:#bcb8c3; font-size:14px; line-height:1.76; }
.legal-document p { margin:0; }
.legal-document p + p { margin-top:14px; }
.legal-document ul { margin:14px 0 0; padding-left:20px; }
.legal-document li + li { margin-top:7px; }
.legal-document a { color:var(--lime); text-decoration:underline; text-underline-offset:3px; }
@media (max-width:700px) {
  .legal-hero { padding:26px 0 48px; }
  .legal-hero-inner { margin-top:34px; }
  .legal-page-content { padding:50px 0 64px; }
  .legal-document { padding:24px 19px; border-radius:15px; }
  .legal-document .legal-lead { margin-bottom:29px; padding-bottom:23px; font-size:14px; }
  .legal-document h2 { margin-top:28px; font-size:16px; }
  .legal-document p,.legal-document li { font-size:13px; }
}


/* Success popup after lead submission */
.wh-success-popup {
  position:fixed;
  z-index:99999;
  inset:0;
  display:grid;
  place-items:center;
  padding:22px;
  visibility:hidden;
  opacity:0;
  pointer-events:none;
  transition:opacity .24s ease,visibility .24s ease;
}
.wh-success-popup.is-open {
  visibility:visible;
  opacity:1;
  pointer-events:auto;
}
.wh-success-popup__backdrop {
  position:absolute;
  inset:0;
  background:rgba(4,4,8,.78);
  backdrop-filter:blur(10px);
}
.wh-success-popup__dialog {
  position:relative;
  z-index:1;
  width:min(100%,460px);
  padding:42px 38px 34px;
  overflow:hidden;
  color:#f5f4f6;
  border:1px solid rgba(184,244,0,.55);
  border-radius:22px;
  background:
    radial-gradient(230px 170px at 100% 0%,rgba(184,244,0,.15),transparent 68%),
    radial-gradient(240px 170px at 0% 100%,rgba(154,76,255,.17),transparent 70%),
    #101017;
  box-shadow:0 28px 90px rgba(0,0,0,.58);
  text-align:center;
  transform:translateY(14px) scale(.98);
  transition:transform .26s cubic-bezier(.2,.8,.2,1);
}
.wh-success-popup.is-open .wh-success-popup__dialog {
  transform:translateY(0) scale(1);
}
.wh-success-popup__close {
  position:absolute;
  top:13px;
  right:13px;
  display:grid;
  width:34px;
  height:34px;
  padding:0;
  place-items:center;
  color:#c9c6cf;
  border:1px solid rgba(255,255,255,.14);
  border-radius:50%;
  background:rgba(255,255,255,.03);
  font-size:24px;
  line-height:1;
  cursor:pointer;
  transition:color .2s ease,border-color .2s ease,background .2s ease;
}
.wh-success-popup__close:hover,
.wh-success-popup__close:focus-visible {
  color:var(--lime);
  border-color:var(--lime);
  background:rgba(184,244,0,.08);
  outline:none;
}
.wh-success-popup__mark {
  display:grid;
  width:58px;
  height:58px;
  margin:0 auto 21px;
  place-items:center;
  color:#08080d;
  border-radius:50%;
  background:var(--lime);
  box-shadow:0 0 0 8px rgba(184,244,0,.1),0 0 35px rgba(184,244,0,.24);
  font-size:30px;
  font-weight:900;
}
.wh-success-popup__eyebrow {
  margin:0;
  color:var(--lime);
  font-size:10px;
  font-weight:900;
  letter-spacing:.12em;
}
.wh-success-popup h2 {
  margin:12px 0 0;
  font-family:Unbounded,Arial,sans-serif;
  font-size:clamp(24px,4vw,34px);
  line-height:1.12;
  letter-spacing:-.065em;
  text-transform:uppercase;
}
.wh-success-popup p:not(.wh-success-popup__eyebrow) {
  max-width:340px;
  margin:17px auto 0;
  color:#c3c0c9;
  font-size:14px;
  line-height:1.65;
}
.wh-success-popup__button {
  width:100%;
  margin-top:27px;
}
body.wh-popup-open {
  overflow:hidden;
}
@media (max-width:560px) {
  .wh-success-popup { padding:16px; }
  .wh-success-popup__dialog { padding:38px 24px 25px; border-radius:18px; }
  .wh-success-popup__mark { width:52px; height:52px; margin-bottom:18px; font-size:27px; }
  .wh-success-popup p:not(.wh-success-popup__eyebrow) { font-size:13px; }
}
@media (prefers-reduced-motion:reduce) {
  .wh-success-popup,
  .wh-success-popup__dialog { transition:none; }
}


/* Ukrainian phone mask in vacancy application form */
.vacancy-phone-control {
  display:flex;
  align-items:center;
  gap:9px;
  height:48px;
  padding:0 13px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:9px;
  background:#0d0d13;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.vacancy-phone-control:focus-within {
  border-color:rgba(184,244,0,.78);
  box-shadow:0 0 0 3px rgba(184,244,0,.10);
}
.vacancy-phone-prefix {
  flex:0 0 auto;
  color:var(--lime);
  font-size:13px;
  font-weight:900;
  letter-spacing:.015em;
}
.vacancy-field .vacancy-phone-control input {
  width:100%;
  min-width:0;
  height:46px;
  padding:0;
  color:#f2eff4;
  border:0;
  border-radius:0;
  outline:0;
  background:transparent;
  font-size:13px;
}
.vacancy-field .vacancy-phone-control input:focus {
  border:0;
  box-shadow:none;
}
.vacancy-field .vacancy-phone-control input::placeholder {
  color:#77737e;
}
