:root {
  color-scheme: dark;
  --page: #090610;
  --page-2: #0d0715;
  --text: #f5f0fb;
  --muted: rgba(245, 240, 251, .66);
  --dim: rgba(245, 240, 251, .38);
  --line: rgba(255, 255, 255, .12);
  --line-strong: rgba(88, 190, 255, .58);
  --accent: #69cfff;
  --accent-2: #9de8ff;
  --panel: rgba(14, 32, 55, .72);
  --kicker-gap: 24px;
  --section-gap: 150px;
  --section-content-gap: 64px;
  --content-wide: min(1520px, calc(100% - 96px));
  --content: var(--content-wide);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--page);
}

body {
  position: relative;
  min-width: 0;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(125deg, rgba(105, 207, 255, .09), transparent 28%),
    linear-gradient(235deg, rgba(150, 112, 255, .1), transparent 34%),
    radial-gradient(ellipse at 50% 10%, rgba(46, 146, 214, .2), transparent 24rem),
    radial-gradient(ellipse at 50% 50%, rgba(24, 116, 186, .14), transparent 38rem),
    linear-gradient(180deg, var(--page), var(--page) 44%, var(--page-2));
  font-family: "Montserrat", "Segoe UI Variable", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(105, 207, 255, .045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(105, 207, 255, .035) 1px, transparent 1px),
    linear-gradient(145deg, transparent 0 42%, rgba(255, 255, 255, .035) 42.1% 42.4%, transparent 42.5% 100%);
  background-size: 120px 120px, 120px 120px, 100% 100%;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .48), rgba(0, 0, 0, .1) 42%, transparent 78%);
}

body.modal-open {
  overflow: hidden;
}

main {
  position: relative;
  z-index: 1;
}

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

button {
  font: inherit;
}

.site-nav {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 36px;
  width: 100%;
  min-height: 88px;
  margin: 0;
  padding: 0 max(48px, calc((100vw - 1520px) / 2));
  background: transparent;
  backdrop-filter: none;
  transition: background .28s ease, backdrop-filter .28s ease, box-shadow .28s ease;
}

.site-nav.is-scrolled,
.site-nav.is-open {
  background: linear-gradient(180deg, rgba(5, 9, 18, .78), rgba(5, 9, 18, .34));
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(135, 211, 255, .1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.brand img {
  width: 38px;
  height: 36px;
  object-fit: contain;
}

.brand span {
  display: grid;
  gap: 1px;
  font-size: 12px;
  line-height: 1.05;
  letter-spacing: .01em;
}

.brand b,
.brand em {
  display: block;
  font-style: normal;
}

.brand b {
  font-weight: 700;
}

.brand em {
  font-weight: 300;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links a {
  position: relative;
  padding: 0 21px;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  transition: color .18s ease, font-weight .18s ease, text-shadow .18s ease;
}

.nav-links a:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: .88em;
  background: rgba(255, 255, 255, .2);
  transform: translateY(-50%);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: #fff;
  font-weight: 600;
  text-shadow: 0 0 11px rgba(105, 207, 255, .38);
}

.nav-links a.is-active {
  color: var(--accent-2);
  text-shadow: 0 0 9px rgba(105, 207, 255, .72), 0 0 22px rgba(105, 207, 255, .34);
}

.nav-links a:focus-visible {
  outline: 0;
}

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

.language-switch,
.menu-toggle {
  width: 48px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, .03);
  cursor: pointer;
  opacity: .78;
  font-size: 11px;
}

.menu-toggle {
  display: none;
  place-items: center;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  display: block;
  width: 17px;
  height: 1px;
  background: currentColor;
  transform: translateX(-50%);
}

.menu-toggle span:first-child {
  top: 12px;
}

.menu-toggle span:nth-child(2) {
  top: 17px;
}

.menu-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 22px;
  display: block;
  width: 17px;
  height: 1px;
  background: currentColor;
  transform: translateX(-50%);
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 770px;
  display: grid;
  place-items: end center;
  padding: 100px max(48px, calc((100vw - 1520px) / 2)) 98px;
}

.hero-bg {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 720px;
  object-fit: cover;
  opacity: 1;
  transform: scale(1.08);
  filter: saturate(1.14) brightness(1.18) contrast(1.08);
  mask-image: linear-gradient(180deg, #000 0 73%, transparent 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 23%, rgba(194, 231, 255, .28) 0, rgba(93, 184, 255, .16) 18%, transparent 42%),
    radial-gradient(ellipse at 0 42%, rgba(5, 8, 17, .74) 0, rgba(5, 8, 17, .36) 18%, transparent 38%),
    radial-gradient(ellipse at 100% 42%, rgba(5, 8, 17, .74) 0, rgba(5, 8, 17, .36) 18%, transparent 38%),
    radial-gradient(circle at 50% 43%, transparent 0 25rem, rgba(5, 8, 17, .48) 56rem),
    linear-gradient(180deg, rgba(5, 8, 17, .26) 0, transparent 17%, transparent 60%, rgba(9, 6, 16, .42) 84%, transparent 100%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 8, 17, .22) 0, transparent 18%);
}

.hero-links {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  opacity: .95;
  mix-blend-mode: screen;
  mask-image:
    linear-gradient(180deg, transparent 0 17%, #000 23% 62%, transparent 76%),
    radial-gradient(ellipse 82% 34% at 50% 38%, #000 0 68%, transparent 80%);
  mask-composite: intersect;
}

.city-node,
.city-link {
  position: absolute;
  display: block;
}

.city-node {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(231, 243, 255, .95);
  box-shadow:
    0 0 10px rgba(111, 207, 255, .96),
    0 0 24px rgba(64, 180, 255, .68);
}

.city-link {
  height: 1px;
  transform-origin: 0 50%;
  background: linear-gradient(90deg, transparent, rgba(87, 190, 255, .86), rgba(164, 232, 255, .62), transparent);
  box-shadow: 0 0 12px rgba(77, 190, 255, .44);
}

.city-node-1 { left: 16%; top: 35%; }
.city-node-2 { left: 25%; top: 31%; }
.city-node-3 { left: 36%; top: 28%; }
.city-node-4 { left: 48%; top: 32%; }
.city-node-5 { left: 58%; top: 27%; }
.city-node-6 { left: 68%; top: 34%; }
.city-node-7 { left: 78%; top: 31%; }
.city-node-8 { left: 21%; top: 45%; }
.city-node-9 { left: 52%; top: 43%; }
.city-node-10 { left: 74%; top: 45%; }
.city-node-11 { left: 31%; top: 42%; }
.city-node-12 { left: 42%; top: 39%; }
.city-node-13 { left: 62%; top: 41%; }
.city-node-14 { left: 84%; top: 40%; }
.city-node-15 { left: 12%; top: 47%; }
.city-node-16 { left: 88%; top: 48%; }

.city-link-1 { left: 16.2%; top: 35.4%; width: 10.2%; transform: rotate(-18deg); }
.city-link-2 { left: 25.3%; top: 31.3%; width: 11.4%; transform: rotate(-10deg); }
.city-link-3 { left: 36.3%; top: 28.4%; width: 12.4%; transform: rotate(19deg); }
.city-link-4 { left: 48.3%; top: 32.3%; width: 10.8%; transform: rotate(-22deg); }
.city-link-5 { left: 58.3%; top: 27.4%; width: 11.2%; transform: rotate(28deg); }
.city-link-6 { left: 68.3%; top: 34.3%; width: 10.6%; transform: rotate(-16deg); }
.city-link-7 { left: 21.3%; top: 45.2%; width: 31.5%; transform: rotate(-3deg); }
.city-link-8 { left: 31.3%; top: 42.2%; width: 11.2%; transform: rotate(-16deg); }
.city-link-9 { left: 42.3%; top: 39.2%; width: 20.2%; transform: rotate(5deg); }
.city-link-10 { left: 62.3%; top: 41.2%; width: 12.2%; transform: rotate(14deg); }
.city-link-11 { left: 74.3%; top: 45.2%; width: 14.2%; transform: rotate(10deg); }
.city-link-12 { left: 12.3%; top: 47.2%; width: 19.1%; transform: rotate(-14deg); }

.hero-word {
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(1520px, 100%);
  text-align: center;
}

.hero-copy p,
.split p:first-child,
.section-title p,
.showcase > div > p,
.contact > p,
.cards small {
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .22em;
  line-height: 1.45;
  text-transform: uppercase;
  text-shadow: 0 0 7px rgba(126, 219, 255, .92), 0 0 18px rgba(105, 207, 255, .58), 0 0 34px rgba(105, 207, 255, .3), 0 0 52px rgba(105, 207, 255, .16);
}

.hero h1,
.split h2,
.section-title h2,
.showcase h2,
.domains h2,
.contact h2 {
  margin: 0;
  font-weight: 200;
  letter-spacing: -.045em;
  line-height: .98;
}

.split h2,
.section-title h2,
.showcase h2,
.domains h2,
.contact h2 {
  font-size: clamp(34px, 2.5vw, 48px);
  line-height: 1.04;
}

.hero h1 {
  margin-top: 24px;
  font-size: clamp(46px, 3.75vw, 72px);
}

.hero-copy span {
  display: block;
  width: min(1040px, 100%);
  margin: 30px auto 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.64;
}

.split,
.expertise,
.showcase,
.domains,
.contact {
  width: var(--content);
  margin: 0 auto;
}

.split {
  position: relative;
  padding-top: 90px;
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 120px;
  align-items: center;
}

.split::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: -150px;
  width: 100vw;
  height: 220px;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(42, 142, 214, .14), transparent 58%),
    linear-gradient(180deg, transparent 0, rgba(9, 6, 16, .22) 28%, rgba(9, 6, 16, .38) 52%, rgba(9, 6, 16, .16) 78%, transparent 100%);
  transform: translateX(-50%);
}

.split > * {
  position: relative;
  z-index: 1;
}

.split h2 {
  margin-top: var(--kicker-gap);
}

.split > p {
  position: relative;
  margin: 0;
  padding: 32px 34px 32px 38px;
  border: 1px solid rgba(88, 190, 255, .16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(66, 196, 255, .12), transparent 38%),
    rgba(10, 18, 32, .28);
  box-shadow: inset 0 1px 0 rgba(223, 242, 255, .04);
  color: var(--muted);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.72;
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}

.split > p::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(105, 207, 255, .18), rgba(105, 207, 255, .95), rgba(105, 207, 255, .18));
  box-shadow: 0 0 22px rgba(67, 196, 255, .28);
}

.expertise {
  padding-top: var(--section-gap);
}

.section-title {
  width: min(1180px, 100%);
}

.section-title h2 {
  margin-top: var(--kicker-gap);
}

.cards {
  margin-top: var(--section-content-gap);
  display: grid;
  gap: 14px;
}

.cards-three {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.cards article {
  position: relative;
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(88, 190, 255, .28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 100%, rgba(58, 176, 255, .18), transparent 62%),
    var(--panel);
  overflow: hidden;
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}

.card-icon {
  position: relative;
  z-index: 1;
  display: block;
  width: 28px;
  height: 28px;
  margin-bottom: 34px;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(105, 207, 255, .28));
}

.cards h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -.02em;
}

.cards p {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.58;
}

.showcase {
  padding-top: var(--section-gap);
  display: block;
}

.showcase h2 {
  margin-top: var(--kicker-gap);
  width: 100%;
  white-space: nowrap;
}

.tech-grid {
  position: relative;
  margin-top: var(--section-content-gap);
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(105, 207, 255, .08), transparent 18%, transparent 82%, rgba(105, 207, 255, .08)),
    rgba(7, 10, 20, .36);
  overflow: hidden;
}

.tech-grid::before {
  content: "";
  position: absolute;
  left: 48px;
  right: 48px;
  top: 100px;
  height: 1px;
  background: linear-gradient(90deg, rgba(105, 207, 255, .12), rgba(105, 207, 255, .78), rgba(105, 207, 255, .12));
  box-shadow: 0 0 24px rgba(105, 207, 255, .22);
}

.tech-grid article {
  position: relative;
  min-height: 260px;
  padding: 38px 26px 30px;
  border-right: 1px solid var(--line);
  transition: background .24s ease, box-shadow .24s ease;
}

.tech-grid article::before {
  content: "";
  position: absolute;
  top: 93px;
  left: 28px;
  width: 15px;
  height: 15px;
  border: 1px solid rgba(105, 207, 255, .86);
  border-radius: 50%;
  background: #081020;
  box-shadow: 0 0 18px rgba(105, 207, 255, .44);
}

.tech-grid article:last-child {
  border-right: 0;
}

.tech-grid b {
  display: block;
  color: var(--accent-2);
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
}

.tech-grid h3 {
  margin: 88px 0 0;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.tech-grid p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.55;
}

.domains {
  padding-top: var(--section-gap);
}

.domains-kicker {
  margin: 0 0 var(--kicker-gap);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  line-height: 1.45;
  text-align: left;
  text-transform: uppercase;
  text-shadow: 0 0 7px rgba(126, 219, 255, .92), 0 0 18px rgba(105, 207, 255, .58), 0 0 34px rgba(105, 207, 255, .3), 0 0 52px rgba(105, 207, 255, .16);
}

.domains h2 {
  width: min(1280px, 100%);
  margin: 0;
  text-align: left;
}

.domain-grid {
  margin-top: var(--section-content-gap);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.domain-grid article {
  position: relative;
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(88, 190, 255, .28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 100%, rgba(58, 176, 255, .18), transparent 62%),
    var(--panel);
  box-shadow: inset 0 1px 0 rgba(223, 242, 255, .04);
  overflow: hidden;
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}

@media (hover: hover) and (pointer: fine) {
  .split > p:hover,
  .cards article:hover,
  .domain-grid article:hover {
    transform: translateY(-8px);
    border-color: rgba(105, 207, 255, .62);
    background:
      radial-gradient(circle at 82% 12%, rgba(105, 207, 255, .18), transparent 42%),
      radial-gradient(circle at 92% 100%, rgba(58, 176, 255, .24), transparent 64%),
      rgba(16, 40, 68, .86);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .28), 0 0 32px rgba(67, 196, 255, .12), inset 0 1px 0 rgba(223, 242, 255, .08);
  }

  .card-icon {
    transition: transform .28s ease, filter .28s ease;
  }

  .cards article:hover .card-icon {
    transform: translateY(-2px) scale(1.06);
    filter: drop-shadow(0 0 14px rgba(105, 207, 255, .48));
  }

  .tech-grid article:hover {
    background: rgba(105, 207, 255, .075);
    box-shadow: inset 0 0 42px rgba(105, 207, 255, .06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .split > p,
  .cards article,
  .domain-grid article,
  .tech-grid article,
  .card-icon {
    transition: none;
  }

  .split > p:hover,
  .cards article:hover,
  .domain-grid article:hover {
    transform: none;
  }
}

.domain-grid b {
  display: none;
}

.domain-grid h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.03em;
}

.domain-grid p {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.58;
}

.contact {
  padding: var(--section-gap) 0 26px;
}

.contact h2 {
  text-align: left;
}

.contact h2 {
  margin-top: var(--kicker-gap);
}

.contact-layout {
  margin-top: var(--section-content-gap);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-main,
.requisites-card {
  --glow-x: 50%;
  --glow-y: 50%;
  min-height: 0;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    radial-gradient(circle at 90% 10%, rgba(105, 207, 255, .11), transparent 34%),
    rgba(255, 255, 255, .035);
  box-shadow: inset 0 1px 0 rgba(223, 242, 255, .04);
  position: relative;
  overflow: hidden;
}

.contact-main::before,
.requisites-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(105, 207, 255, .28), rgba(105, 207, 255, .12) 16%, transparent 36%);
  opacity: 0;
  transition: opacity .2s ease;
}

.contact-main.is-pointer-glow::before,
.requisites-card.is-pointer-glow::before {
  opacity: 1;
}

.contact-main > *,
.requisites-card > * {
  position: relative;
  z-index: 1;
}

.contact-eyebrow,
.contact-info span,
.requisites-list dt {
  display: block;
  color: var(--dim);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.contact-email {
  display: inline-block;
  margin-top: 28px;
  color: var(--text);
  font-size: clamp(28px, 2.5vw, 44px);
  font-weight: 300;
  letter-spacing: -.04em;
  line-height: 1.05;
}

.contact-info {
  margin-top: 46px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 22px;
}

.contact-info article {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.contact-info strong,
.requisites-title,
.requisites-list dd {
  display: block;
  margin: 12px 0 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
}

.requisites-title {
  margin-top: 28px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.25;
}

.requisites-list {
  margin: 38px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.requisites-list div {
  min-height: 82px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.requisites-list div:nth-child(odd) {
  padding-right: 20px;
}

.requisites-list div:nth-child(even) {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.requisites-list dd {
  color: var(--text);
}

.legal-footer {
  margin-top: 26px;
  padding-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
}

.legal-copy {
  margin: 0;
}

.legal-links {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 18px;
  white-space: nowrap;
}

.legal-link {
  appearance: none;
  display: inline-flex;
  padding: 0 0 3px;
  border: 0;
  border-bottom: 1px solid rgba(105, 207, 255, .55);
  color: var(--text);
  background: transparent !important;
  font: inherit;
  line-height: inherit;
  cursor: pointer;
  opacity: .84;
}

.legal-link:hover {
  color: var(--accent);
  opacity: 1;
}

.policy-modal[hidden] {
  display: none;
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice {
  position: fixed;
  z-index: 70;
  left: 50%;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 22px;
  width: min(760px, calc(100% - 44px));
  padding: 18px 20px 18px 22px;
  border: 1px solid rgba(105, 207, 255, .26);
  border-radius: 18px;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(105, 207, 255, .18), transparent 34%),
    rgba(20, 20, 33, .94);
  box-shadow: 0 20px 80px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.cookie-notice p {
  flex: 1;
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}

.cookie-notice__link {
  appearance: none;
  display: inline;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .72);
  color: #fff;
  background: transparent;
  font: inherit;
  line-height: inherit;
  cursor: pointer;
}

.cookie-notice__link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.cookie-notice__accept {
  appearance: none;
  flex: 0 0 auto;
  min-width: 108px;
  height: 44px;
  padding: 0 22px;
  border: 1px solid rgba(105, 207, 255, .7);
  border-radius: 999px;
  color: #06101a;
  background: linear-gradient(180deg, #80dcff, #19a9ef);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 28px rgba(25, 169, 239, .28);
}

.cookie-notice__accept:hover {
  filter: brightness(1.06);
}

.policy-modal {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.policy-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 12, .78);
  backdrop-filter: blur(16px);
}

.policy-modal__panel {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    radial-gradient(circle at 100% 0, rgba(105, 207, 255, .12), transparent 34%),
    rgba(12, 12, 22, .96);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .44);
}

.policy-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.policy-modal__eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.policy-modal-title {
  margin: 18px 48px 0 0;
  color: var(--text);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  letter-spacing: -.04em;
  line-height: 1.08;
}

.policy-modal-copy {
  margin-top: 28px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.72;
}

.policy-modal-copy p {
  margin: 0;
}

.policy-modal-copy h3 {
  margin: 26px 0 10px;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.policy-modal-copy p + p {
  margin-top: 18px;
}

@media (width <= 1160px) and (width > 980px) {
  .site-nav {
    gap: 24px;
    grid-template-columns: minmax(190px, 1fr) auto minmax(120px, 1fr);
    padding: 0 28px;
  }

  .nav-links {
    gap: 0;
  }

  .nav-links a {
    padding: 0 13px;
    font-size: 11px;
  }
}

@media (width <= 980px) {
  .site-nav {
    grid-template-columns: 1fr auto;
    width: 100%;
    padding: 0 16px;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(9, 6, 16, .94);
    backdrop-filter: blur(18px);
  }

  .nav-links a {
    padding: 0;
  }

  .nav-links a:not(:last-child)::after {
    display: none;
  }

  .site-nav.is-open .nav-links {
    display: grid;
    gap: 16px;
  }

  .menu-toggle {
    display: grid;
  }

  .split,
  .showcase,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

  .showcase h2 {
    white-space: normal;
  }

  .tech-grid article:nth-child(3n) {
    border-right: 0;
  }

  .tech-grid article:nth-child(-n+3) {
    border-bottom: 1px solid var(--line);
  }

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

@media (width <= 620px) {
  .site-nav {
    min-height: 68px;
  }

  :root {
    --section-gap: 96px;
    --section-content-gap: 52px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand span {
    font-size: 11px;
  }

  .hero {
    min-height: 760px;
    padding: 86px 18px 72px;
  }

  .hero-bg {
    height: 430px;
  }

  .hero-links {
    display: none;
  }

  .hero-word {
    top: 176px;
    font-size: 70px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-copy span {
    font-size: 14px;
  }

  .cards-three,
  .tech-grid,
  .domain-grid {
    grid-template-columns: 1fr;
  }

  .tech-grid {
    margin-top: var(--section-content-gap);
  }

  .tech-grid::before {
    display: none;
  }

  .tech-grid article {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .tech-grid article::before {
    display: none;
  }

  .tech-grid h3 {
    margin-top: 48px;
  }

  .tech-grid article:last-child {
    border-bottom: 0;
  }

  .split,
  .expertise,
  .showcase,
  .domains,
  .contact {
    width: min(100% - 32px, 1080px);
  }

  .split,
  .expertise,
  .showcase,
  .domains {
    padding-top: 96px;
  }

  .split h2,
  .section-title h2,
  .showcase h2,
  .domains h2 {
    font-size: 34px;
  }

  .split > p {
    font-size: 15px;
  }

  .contact-layout,
  .contact-info,
  .requisites-list {
    grid-template-columns: 1fr;
  }

  .contact-main,
  .requisites-card {
    min-height: 0;
    padding: 26px;
  }

  .contact-email {
    font-size: 26px;
  }

  .legal-footer {
    flex-direction: column;
    gap: 16px;
  }

  .legal-links {
    justify-content: flex-start;
  }

  .cookie-notice {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    padding: 18px;
    border-radius: 16px;
  }

  .cookie-notice p {
    font-size: 13px;
  }

  .cookie-notice__accept {
    width: 100%;
  }

  .policy-modal {
    padding: 14px;
  }

  .policy-modal__panel {
    padding: 28px 22px;
    border-radius: 12px;
  }

  .requisites-list div:nth-child(odd),
  .requisites-list div:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
    border-left: 0;
  }

  .cards {
    margin-top: var(--section-content-gap);
  }

  .cards article {
    min-height: 255px;
  }

  .showcase img {
    height: 240px;
  }

  .domain-grid article {
    min-height: 240px;
  }
}
