:root {
  color-scheme: dark;
  --page: #050b16;
  --page-2: #071426;
  --panel: #0d1a2a;
  --panel-2: #111f31;
  --panel-3: #15283b;
  --line: rgba(135, 196, 233, 0.18);
  --line-strong: rgba(58, 221, 240, 0.48);
  --text: #f3f7fb;
  --muted: #a9bbca;
  --muted-2: #7f96a8;
  --cyan: #25d8ef;
  --blue: #2477f3;
  --violet: #5c42e8;
  --coral: #ff625b;
  --green: #77b900;
  --green-light: #9bdd34;
  --danger: #ff7d77;
  --radius: 4px;
  --shell: 1120px;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
  --font: Inter, "Segoe UI", Arial, sans-serif;
  --mono: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--page);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  background:
    radial-gradient(circle at 80% 10%, rgba(36, 119, 243, 0.14), transparent 32rem),
    radial-gradient(circle at 5% 46%, rgba(92, 66, 232, 0.09), transparent 30rem),
    linear-gradient(180deg, #040912 0, var(--page-2) 37rem, var(--page) 100%);
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(71, 139, 192, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(71, 139, 192, 0.16) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

button,
input {
  font: inherit;
}

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

button,
a,
summary {
  touch-action: manipulation;
}

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

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

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

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  color: #031017;
  background: var(--cyan);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(102, 192, 244, 0.16);
  background: rgba(4, 10, 18, 0.9);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.header-shell {
  display: grid;
  grid-template-columns: 190px minmax(330px, 1fr) auto;
  align-items: center;
  gap: 28px;
  width: min(1240px, calc(100% - 36px));
  min-height: 76px;
  margin-inline: auto;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
}

.brand {
  min-height: 52px;
}

.brand img {
  width: 180px;
  height: 70px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 76px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-inline: 16px;
  color: #b5c7d5;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

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

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

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

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

.language-switcher {
  display: flex;
  align-items: center;
  min-height: 44px;
  color: #678196;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
}

.language-switcher button {
  min-width: 38px;
  min-height: 44px;
  padding: 0;
  border: 0;
  color: #8ba3b5;
  background: transparent;
  cursor: pointer;
}

.language-switcher button[aria-pressed="true"] {
  color: var(--cyan);
}

.header-link,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.025em;
  cursor: pointer;
}

.header-link {
  padding-inline: 13px;
  color: #b9d9e9;
  border-color: rgba(37, 216, 239, 0.34);
  background: rgba(12, 32, 48, 0.68);
}

.header-cta {
  padding-inline: 18px;
  color: #fff;
  border-color: #8ccb39;
  background: linear-gradient(135deg, #78ae27, #4d8517);
  box-shadow: 0 8px 25px rgba(78, 139, 21, 0.3);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 1px solid var(--line);
  color: #fff;
  background: #0b1725;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

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

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

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

.profile-section {
  position: relative;
  isolation: isolate;
  min-height: 640px;
  padding: 42px 0 0;
}

.profile-backdrop,
.profile-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  pointer-events: none;
}

.profile-backdrop {
  background: url("./assets/site/sergey-steam-background.jpg") center 25% / cover no-repeat;
  filter: saturate(1.05) contrast(1.03);
}

.profile-shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(4, 9, 18, 0.16) 0, rgba(5, 11, 22, 0.5) 55%, var(--page-2) 100%),
    linear-gradient(90deg, rgba(5, 12, 25, 0.2), rgba(6, 14, 27, 0.7));
}

.profile-shell {
  width: min(1030px, calc(100% - 40px));
}

.profile-panel {
  display: grid;
  grid-template-columns: 184px minmax(0, 1fr) 184px;
  grid-template-areas:
    "avatar identity level"
    "stats stats stats";
  gap: 24px 28px;
  padding: 26px 28px 0;
  border-top: 2px solid rgba(37, 216, 239, 0.7);
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background:
    linear-gradient(110deg, rgba(17, 35, 51, 0.97), rgba(8, 17, 29, 0.93)),
    radial-gradient(circle at 20% 0, rgba(37, 216, 239, 0.12), transparent 35%);
  box-shadow: var(--shadow);
}

.profile-avatar-wrap {
  grid-area: avatar;
}

.profile-avatar {
  position: relative;
  aspect-ratio: 1;
  padding: 5px;
  background: linear-gradient(135deg, var(--cyan), var(--violet) 65%, var(--coral));
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.45), 0 15px 35px rgba(0, 0, 0, 0.38);
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-avatar__status {
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 22px;
  height: 22px;
  border: 4px solid #0d1a29;
  border-radius: 50%;
  background: var(--green-light);
  box-shadow: 0 0 18px rgba(155, 221, 52, 0.65);
}

.profile-online {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 16px 0 0;
  color: #b9d9a4;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.profile-online i {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--green-light);
}

.profile-identity {
  grid-area: identity;
  min-width: 0;
}

.profile-kicker,
.section-code,
.result-tag {
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.profile-kicker {
  margin-bottom: 5px;
}

.profile-identity h1 {
  margin: 0;
  overflow-wrap: anywhere;
  color: #fff;
  font-size: clamp(40px, 4.4vw, 54px);
  font-weight: 850;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.profile-role {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 8px 0 14px;
  color: var(--muted);
  font-size: 13px;
}

.profile-summary {
  max-width: 620px;
  margin-bottom: 15px;
  padding: 9px 12px;
  border-left: 3px solid var(--cyan);
  color: var(--cyan);
  background: rgba(37, 216, 239, 0.065);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.profile-identity h2 {
  max-width: 650px;
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(27px, 3vw, 39px);
  font-weight: 820;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.profile-hook {
  max-width: 650px;
  margin-bottom: 20px;
  color: #b9cbd8;
  font-size: 16px;
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 18px;
  border: 1px solid transparent;
  color: #fff;
  background: transparent;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 150ms ease, filter 150ms ease, border-color 150ms ease, background 150ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.button--primary {
  border-color: #82c42b;
  background: linear-gradient(135deg, #78ae27, #4d8517);
  box-shadow: 0 12px 26px rgba(78, 139, 21, 0.2);
}

.button--outline {
  border-color: rgba(37, 216, 239, 0.52);
  background: rgba(21, 52, 75, 0.66);
}

.button--quiet {
  color: #a9c8db;
  border-color: rgba(160, 195, 217, 0.22);
}

.profile-level {
  grid-area: level;
  align-self: start;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 176px;
  min-height: 146px;
  padding: 19px 18px;
  border: 1px solid rgba(233, 167, 79, 0.58);
  border-top: 3px solid #e9a74f;
  border-radius: 2px;
  background:
    radial-gradient(circle, rgba(232, 159, 61, 0.13), rgba(5, 13, 23, 0.94) 68%);
  box-shadow: 8px 8px 0 rgba(232, 159, 61, 0.08), 0 0 28px rgba(232, 159, 61, 0.12);
  text-align: left;
}

.profile-level > span {
  color: #d1ac70;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.profile-level strong {
  color: #f8c06e;
  margin: 9px 0 5px;
  font-family: var(--mono);
  font-size: 37px;
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1;
}

.profile-level small {
  color: var(--muted);
  font-size: 11px;
}

.profile-stats {
  grid-area: stats;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 -28px;
  border-top: 1px solid var(--line);
  background: rgba(4, 10, 18, 0.52);
}

.profile-stats div {
  min-width: 0;
  padding: 17px 22px 20px;
  border-right: 1px solid var(--line);
}

.profile-stats div:last-child {
  border-right: 0;
}

.profile-stats dt {
  margin-bottom: 2px;
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-stats dd {
  margin-bottom: 0;
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
}

.profile-stats dd small {
  margin-left: 4px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
}

.profile-tabs {
  display: flex;
  align-items: stretch;
  min-height: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 13, 23, 0.96);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.26);
}

.profile-tabs a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding-inline: 21px;
  border-right: 1px solid var(--line);
  color: #92a9b9;
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}

.profile-tabs a:hover,
.profile-tabs a:focus-visible,
.profile-tabs a[aria-current="page"] {
  color: #fff;
  background: linear-gradient(180deg, rgba(37, 216, 239, 0.14), rgba(37, 216, 239, 0.03));
}

.profile-tabs a[aria-current="page"] {
  box-shadow: inset 0 -2px var(--cyan);
}

.route-bridge {
  position: relative;
  width: min(880px, calc(100% - 48px));
  height: 112px;
  margin: -8px auto 6px;
  overflow: hidden;
  pointer-events: none;
}

.route-line {
  position: absolute;
  top: 53px;
  width: 66%;
  height: 9px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--violet));
  box-shadow: 0 0 18px rgba(37, 216, 239, 0.38);
  transform: skewY(-7deg);
}

.route-platform,
.route-cube,
.route-door {
  position: absolute;
  display: block;
}

.route-platform {
  top: 32px;
  width: 92px;
  height: 48px;
  background: linear-gradient(145deg, #2645d6 0 50%, #102479 51%);
  box-shadow: 10px 14px 0 #07184b, 0 0 28px rgba(37, 216, 239, 0.2);
  transform: skewY(12deg);
}

.route-cube {
  top: 36px;
  width: 29px;
  height: 29px;
  background: linear-gradient(135deg, #ff8274 0 48%, #d63f3c 49%);
  box-shadow: 7px 8px 0 #8f272f;
  transform: rotate(12deg) skewY(5deg);
}

.route-bridge--right .route-platform {
  right: 7%;
}

.route-bridge--right .route-line {
  right: 12%;
}

.route-bridge--right .route-cube {
  right: 2%;
}

.route-bridge--left .route-platform {
  left: 7%;
}

.route-bridge--left .route-line {
  left: 12%;
  transform: skewY(7deg);
}

.route-bridge--left .route-cube {
  left: 2%;
}

.route-bridge--destination {
  height: 138px;
}

.route-bridge--destination .route-line {
  left: 12%;
  width: 76%;
}

.route-bridge--destination .route-platform {
  left: 8%;
}

.route-door {
  right: 7%;
  bottom: 26px;
  width: 48px;
  height: 74px;
  border: 10px solid var(--coral);
  border-bottom: 0;
  box-shadow: 9px 9px 0 #962f3e, 0 0 24px rgba(255, 98, 91, 0.3);
  transform: skewY(-6deg);
}

.belief-section {
  position: relative;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) 230px;
  align-items: center;
  gap: 24px;
  min-height: 245px;
  padding: 34px 44px;
  overflow: hidden;
  color: #170b13;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent 40%),
    var(--coral);
  box-shadow: 16px 18px 0 rgba(92, 66, 232, 0.42), var(--shadow);
}

.belief-mark {
  align-self: start;
  height: 86px;
  color: rgba(15, 19, 44, 0.85);
  font-family: Georgia, serif;
  font-size: 112px;
  line-height: 1;
}

.belief-section .section-code {
  color: rgba(17, 11, 27, 0.74);
}

.belief-section h2 {
  margin: 0 0 12px;
  color: #100b1e;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.04em;
  line-height: 1;
}

.belief-section p:last-child {
  max-width: 690px;
  margin-bottom: 0;
  color: #241421;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.belief-art {
  position: relative;
  min-height: 150px;
}

.belief-art span {
  position: absolute;
  width: 54px;
  height: 54px;
  background: #182a97;
  box-shadow: 12px 13px 0 #0c1555;
  transform: rotate(30deg) skew(-4deg);
}

.belief-art span:nth-child(1) {
  top: 5px;
  right: 78px;
  width: 82px;
  height: 82px;
  background: var(--cyan);
  box-shadow: 16px 17px 0 #147eab;
}

.belief-art span:nth-child(2) {
  right: 8px;
  bottom: 9px;
}

.belief-art span:nth-child(3) {
  bottom: 0;
  left: 11px;
  width: 33px;
  height: 33px;
  background: #fff;
  box-shadow: 8px 9px 0 rgba(12, 21, 85, 0.7);
}

.section {
  padding: 34px 0 46px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  align-items: end;
  gap: 42px;
  margin-bottom: 30px;
}

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

.section-code {
  margin-bottom: 8px;
}

.section-heading h2,
.audit-copy h2,
.faq-section h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 840;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.section-heading > p {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 15px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.project-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 3px solid var(--card-accent, var(--cyan));
  background: #0c1826;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.project-card--cyan { --card-accent: var(--cyan); }
.project-card--violet { --card-accent: var(--violet); }
.project-card--coral { --card-accent: var(--coral); }

.project-card:hover,
.project-card:focus-visible {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--card-accent), white 20%);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34), 0 0 24px color-mix(in srgb, var(--card-accent), transparent 72%);
}

.project-card__media {
  display: block;
  aspect-ratio: 616 / 353;
  overflow: hidden;
  background: #0a111b;
}

.project-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(4, 9, 16, 0.56));
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.project-card:hover img {
  transform: scale(1.035);
}

.project-card__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 64px;
  padding: 13px 15px;
}

.project-card__caption strong {
  overflow: hidden;
  color: #fff;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-card__caption small {
  flex: 0 0 auto;
  color: var(--card-accent);
  font-size: 11px;
  font-weight: 800;
}

.partners-section {
  padding-top: 22px;
}

.partners-stage {
  position: relative;
  isolation: isolate;
  padding: 24px 10px 18px;
}

.partners-stage::before {
  position: absolute;
  z-index: -2;
  inset: -28px -4%;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 31%, rgba(32, 205, 238, 0.52) 0 1px, transparent 2px),
    radial-gradient(circle at 28% 78%, rgba(92, 66, 232, 0.58) 0 1px, transparent 2px),
    radial-gradient(circle at 47% 19%, rgba(255, 255, 255, 0.38) 0 1px, transparent 2px),
    radial-gradient(circle at 69% 72%, rgba(32, 205, 238, 0.44) 0 1px, transparent 2px),
    radial-gradient(circle at 91% 27%, rgba(255, 98, 91, 0.46) 0 1px, transparent 2px),
    radial-gradient(ellipse at center, rgba(26, 105, 148, 0.13), transparent 68%);
}

.partners-stage::after {
  position: absolute;
  z-index: -1;
  top: 73px;
  right: 1%;
  left: 1%;
  height: 1px;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(32, 205, 238, 0.2) 12%, rgba(91, 119, 227, 0.34) 50%, rgba(32, 205, 238, 0.2) 88%, transparent);
  box-shadow: 0 0 14px rgba(32, 205, 238, 0.14);
}

.partners-route {
  position: absolute;
  z-index: -1;
  top: 69px;
  right: 1%;
  left: 1%;
  height: 9px;
  pointer-events: none;
}

.partners-route i {
  position: absolute;
  top: 2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 9px rgba(32, 205, 238, 0.72);
}

.partners-route i:nth-child(1) { left: 13%; }
.partners-route i:nth-child(2) { left: 50%; background: var(--violet); box-shadow: 0 0 9px rgba(92, 66, 232, 0.76); }
.partners-route i:nth-child(3) { right: 13%; background: var(--coral); box-shadow: 0 0 9px rgba(255, 98, 91, 0.7); }

.partners-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
}

html[data-language="en"] .partners-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.partner-badge {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 0;
  min-height: 112px;
  padding: 8px 4px;
  color: #dcebf3;
  text-align: center;
  transition: color 180ms ease, transform 180ms ease;
}

.partner-badge[hidden] {
  display: none;
}

.partner-badge::before {
  position: absolute;
  z-index: -1;
  top: 2px;
  left: 50%;
  width: 104px;
  height: 82px;
  border-radius: 50%;
  content: "";
  pointer-events: none;
  opacity: 0.18;
  background: radial-gradient(circle, rgba(32, 205, 238, 0.19), transparent 69%);
  filter: blur(5px);
  transform: translateX(-50%) scale(0.8);
  transition: opacity 180ms ease, transform 180ms ease;
}

.partner-badge__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 66px;
}

.partner-badge__mark img {
  display: block;
  width: auto;
  max-width: min(100%, 104px);
  height: auto;
  max-height: 54px;
  object-fit: contain;
  transition: transform 180ms ease;
}

.partner-badge__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  max-width: 100%;
  color: #9db7c8;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.partner-badge__label i {
  color: var(--cyan);
  font-size: 12px;
  font-style: normal;
}

.partner-badge:hover,
.partner-badge:focus-visible {
  color: #fff;
  transform: translateY(-6px);
}

.partner-badge:hover::before,
.partner-badge:focus-visible::before {
  opacity: 1;
  transform: translateX(-50%) scale(1.08);
}

.partner-badge:hover .partner-badge__mark img,
.partner-badge:focus-visible .partner-badge__mark img {
  transform: scale(1.055);
}

.partner-badge:hover .partner-badge__label,
.partner-badge:focus-visible .partner-badge__label {
  color: #e8f6fb;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.result-card {
  min-height: 360px;
  padding: 25px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--cyan);
  background:
    linear-gradient(155deg, rgba(29, 61, 86, 0.66), rgba(8, 17, 28, 0.96));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.result-card:nth-child(2) {
  border-top-color: var(--violet);
}

.result-card--recognition {
  position: relative;
  overflow: hidden;
  border-top-color: var(--coral);
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 98, 91, 0.19), transparent 38%),
    linear-gradient(155deg, #1a2038, #0b1421);
}

.result-card header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.result-card h3 {
  margin: 5px 0 0;
  color: #fff;
  font-size: 21px;
}

.result-card header > strong {
  color: var(--green-light);
  font-family: var(--mono);
  font-size: 30px;
  line-height: 1;
}

.result-card p {
  margin: 19px 0 15px;
  color: #b9cad6;
  font-size: 14px;
}

.bar-chart {
  display: grid;
  grid-template-columns: 1fr 32px 1fr;
  align-items: end;
  gap: 8px;
  height: 174px;
  margin-top: 17px;
  padding: 13px 9px 0;
  border-bottom: 1px solid rgba(167, 198, 218, 0.22);
  background-image: linear-gradient(rgba(139, 181, 210, 0.09) 1px, transparent 1px);
  background-size: 100% 42px;
}

.bar-column {
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: end;
  justify-items: stretch;
  height: 100%;
  text-align: center;
}

.bar-value {
  margin-bottom: 5px;
  color: #fff;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
}

.bar {
  align-self: end;
  display: block;
  width: min(54px, 72%);
  height: 82%;
  margin-inline: auto;
  background: linear-gradient(180deg, var(--cyan), #147ca8);
  box-shadow: 6px 0 0 rgba(11, 69, 104, 0.68);
}

.bar--col2-before { height: 20%; background: #516c80; box-shadow: 6px 0 0 #334655; }
.bar--col3-before { height: 43%; background: #665db3; box-shadow: 6px 0 0 #40386f; }
.bar--after { height: 82%; }

.bar-column small {
  min-height: 28px;
  margin-top: 7px;
  color: var(--muted-2);
  font-size: 10px;
  line-height: 1.2;
}

.chart-arrow {
  align-self: center;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 22px;
}

.steam-token {
  position: relative;
  width: 142px;
  height: 142px;
  margin: 4px 0 26px auto;
  border: 2px solid rgba(255, 98, 91, 0.55);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 98, 91, 0.2), rgba(8, 17, 28, 0.9) 68%);
  box-shadow: inset 0 0 0 10px rgba(255, 98, 91, 0.06), 0 0 42px rgba(255, 98, 91, 0.12);
}

.steam-token::before,
.steam-token::after {
  position: absolute;
  content: "";
  background: var(--cyan);
}

.steam-token::before {
  width: 68px;
  height: 9px;
  top: 71px;
  left: 26px;
  transform: rotate(-28deg);
}

.steam-token::after {
  width: 34px;
  height: 34px;
  top: 27px;
  right: 21px;
  border: 7px solid var(--cyan);
  border-radius: 50%;
  background: transparent;
}

.steam-token span {
  position: absolute;
  bottom: 22px;
  left: 18px;
  color: var(--cyan);
  font-size: 38px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.service-card {
  --service-accent: var(--cyan);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 3px solid var(--service-accent);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--service-accent) 9%, transparent), transparent 44%),
    rgba(12, 25, 39, 0.94);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-card::after {
  position: absolute;
  right: -48px;
  bottom: -64px;
  width: 150px;
  height: 150px;
  border: 1px solid color-mix(in srgb, var(--service-accent) 35%, transparent);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 0 22px rgba(255, 255, 255, 0.015);
  pointer-events: none;
}

.service-card--cyan { --service-accent: var(--cyan); }
.service-card--blue { --service-accent: var(--blue); }
.service-card--violet { --service-accent: var(--violet); }
.service-card--coral { --service-accent: var(--coral); }

.service-card:hover,
.service-card:focus-visible {
  border-color: color-mix(in srgb, var(--service-accent) 65%, var(--line));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.service-number {
  color: var(--service-accent, var(--cyan));
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
}

.service-card__count {
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-card__count strong {
  color: var(--service-accent);
  font-size: 12px;
}

.service-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 34px 0 30px;
}

.service-card__content > strong {
  max-width: 430px;
  color: #fff;
  font-size: clamp(23px, 3vw, 31px);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.service-card__content > span {
  max-width: 440px;
  color: #afc0cc;
  font-size: 15px;
  line-height: 1.55;
}

.service-card__action {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--service-accent);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-card__action i {
  font-style: normal;
  font-size: 21px;
  transition: transform 180ms ease;
}

.service-card:hover .service-card__action i,
.service-card:focus-visible .service-card__action i {
  transform: translateX(5px);
}

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

.audit-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.88fr);
  gap: 56px;
  padding: 52px;
  overflow: hidden;
  border: 1px solid rgba(37, 216, 239, 0.4);
  background:
    linear-gradient(125deg, rgba(24, 59, 89, 0.97), rgba(10, 20, 35, 0.98) 58%),
    var(--panel);
  box-shadow: 18px 20px 0 rgba(55, 44, 167, 0.34), var(--shadow);
}

.audit-section::before {
  position: absolute;
  top: -90px;
  right: 32%;
  width: 220px;
  height: 220px;
  border: 30px solid rgba(37, 216, 239, 0.06);
  content: "";
  transform: rotate(45deg);
}

.audit-copy,
.audit-form {
  position: relative;
  z-index: 1;
}

.audit-copy h2 {
  margin-bottom: 18px;
}

.audit-copy > p:not(.section-code, .audit-calendar-note) {
  max-width: 600px;
  color: #c3d4df;
  font-size: 17px;
}

.audit-steps {
  display: grid;
  gap: 10px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.audit-steps li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  min-height: 48px;
}

.audit-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(37, 216, 239, 0.45);
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 11px;
}

.audit-steps strong {
  color: #fff;
  font-size: 14px;
}

.audit-calendar-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  color: #9edfea;
  font-size: 12px;
}

.audit-calendar-note > span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(37, 216, 239, 0.4);
  color: var(--cyan);
}

.audit-form {
  align-self: center;
  padding: 27px;
  border-top: 3px solid var(--cyan);
  background: rgba(4, 11, 20, 0.88);
  box-shadow: 0 19px 45px rgba(0, 0, 0, 0.34);
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
}

.field > span {
  color: #e7f1f7;
  font-size: 13px;
  font-weight: 760;
}

.field > span small {
  color: var(--muted-2);
  font-size: inherit;
  font-weight: 500;
}

.audit-mode-toggle {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: #d7e8f1;
  font-size: 13px;
}

.audit-mode-toggle input {
  width: 19px;
  height: 19px;
  margin: 0;
  accent-color: var(--cyan);
}

.audit-prelaunch-fields[hidden],
.field[hidden] {
  display: none;
}

.field input {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(140, 186, 218, 0.28);
  border-radius: 0;
  outline: 0;
  color: #fff;
  background: #08131f;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field input::placeholder {
  color: #6f8798;
}

.field input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(37, 216, 239, 0.14);
}

.field input[aria-invalid="true"] {
  border-color: var(--danger);
}

.field-hint,
.field-error {
  display: block;
  min-height: 16px;
  font-size: 11px;
  line-height: 1.4;
}

.field-hint {
  color: var(--muted-2);
}

.field-error {
  color: #ff9d98;
}

.consent-row {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: start;
  gap: 9px;
  color: #aebfca;
  font-size: 11px;
}

.consent-row input {
  width: 19px;
  height: 19px;
  margin: 1px 0 0;
  accent-color: var(--cyan);
}

.consent-row label {
  line-height: 1.5;
}

.consent-row button {
  min-height: 32px;
  padding: 0 5px;
  border: 0;
  color: var(--cyan);
  background: transparent;
  font-size: 11px;
  cursor: pointer;
}

.audit-submit {
  justify-content: space-between;
  width: 100%;
  min-height: 56px;
  margin-top: 18px;
  text-align: left;
}

.audit-submit:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.form-status[data-tone="success"] { color: #ace768; }
.form-status[data-tone="error"] { color: #ff9d98; }

.calendar-fallback {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 6px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
}

.faq-section {
  padding: 90px 0 100px;
}

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

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 15px 10px;
  list-style: none;
  color: #fff;
  font-size: 18px;
  font-weight: 750;
  cursor: pointer;
}

.faq-list summary i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--cyan);
  font-style: normal;
  font-size: 24px;
  transition: transform 160ms ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 800px;
  margin: 0;
  padding: 0 60px 25px 10px;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #030811;
}

.footer-main {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  min-height: 150px;
}

.footer-brand img {
  width: 180px;
  height: 78px;
  object-fit: contain;
}

.footer-main > p {
  max-width: 490px;
  margin: 0;
  color: #cbd7df;
  font-size: 17px;
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px 18px;
}

.footer-main nav a,
.footer-main nav button,
.footer-bottom a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0;
  border: 0;
  color: #91a8b8;
  background: transparent;
  font-size: 12px;
  cursor: pointer;
}

.footer-main nav a:hover,
.footer-main nav button:hover,
.footer-bottom a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  border-top: 1px solid rgba(135, 196, 233, 0.1);
  color: #60778a;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.mobile-audit-cta {
  display: none;
}

.contact-dock {
  position: fixed;
  z-index: 84;
  right: clamp(10px, 1.4vw, 22px);
  bottom: 28px;
  width: 64px;
  padding: 9px;
  border: 1px solid rgba(93, 153, 190, 0.4);
  border-top: 3px solid var(--cyan);
  opacity: 0;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(17, 38, 56, 0.98), rgba(5, 13, 23, 0.98)),
    var(--panel);
  box-shadow: 7px 9px 0 rgba(31, 52, 127, 0.22), 0 24px 60px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  transform: translate3d(calc(100% + 60px), 12px, 0) rotate(1.5deg) scale(0.97);
  transform-origin: right bottom;
  transition: opacity 220ms ease, transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-dock::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 26px;
  height: 26px;
  content: "";
  background: linear-gradient(135deg, transparent 48%, rgba(255, 98, 91, 0.88) 49%, rgba(255, 98, 91, 0.88) 61%, transparent 62%);
  pointer-events: none;
}

.contact-dock.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.contact-dock > p {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-dock > div {
  display: grid;
  gap: 6px;
}

.contact-dock__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-height: 44px;
  padding: 5px;
  border: 1px solid rgba(126, 180, 213, 0.17);
  color: #d8e4ec;
  background: rgba(12, 30, 44, 0.74);
  transform: translateX(14px);
  transition: color 150ms ease, border-color 150ms ease, background 150ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-dock.is-visible .contact-dock__link {
  transform: none;
}

.contact-dock.is-visible .contact-dock__link:nth-child(1) { transition-delay: 110ms; }
.contact-dock.is-visible .contact-dock__link:nth-child(2) { transition-delay: 160ms; }
.contact-dock.is-visible .contact-dock__link:nth-child(3) { transition-delay: 210ms; }

.contact-dock__link:hover,
.contact-dock__link:focus-visible {
  color: #fff;
  border-color: rgba(37, 216, 239, 0.58);
  background: rgba(23, 55, 76, 0.94);
}

.contact-dock__link--primary {
  border-color: rgba(132, 195, 46, 0.62);
  background: linear-gradient(135deg, rgba(112, 167, 35, 0.9), rgba(68, 122, 18, 0.92));
}

.contact-dock__link--primary:hover,
.contact-dock__link--primary:focus-visible {
  border-color: #a0db50;
  background: linear-gradient(135deg, #7fb82f, #528d1b);
}

.contact-dock__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 30px;
  color: var(--cyan);
  background: rgba(37, 216, 239, 0.09);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
}

.contact-dock__icon img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.contact-dock__link--primary .contact-dock__icon {
  color: #fff;
  background: rgba(3, 16, 5, 0.2);
}

.contact-dock__link strong {
  position: absolute;
  top: 0;
  right: calc(100% + 10px);
  display: flex;
  align-items: center;
  min-height: 44px;
  width: max-content;
  max-width: 220px;
  padding: 0 14px;
  border: 1px solid rgba(93, 153, 190, 0.45);
  opacity: 0;
  color: #fff;
  background: rgba(7, 19, 31, 0.98);
  box-shadow: 6px 7px 0 rgba(31, 52, 127, 0.2), 0 16px 36px rgba(0, 0, 0, 0.42);
  font-size: 12px;
  font-weight: 800;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity 150ms ease, transform 220ms ease;
}

.contact-dock__link:hover strong,
.contact-dock__link:focus-visible strong {
  opacity: 1;
  transform: none;
}

.privacy-dialog {
  width: min(540px, calc(100% - 32px));
  padding: 34px;
  border: 1px solid var(--line-strong);
  border-top: 3px solid var(--cyan);
  color: var(--text);
  background: #0a1623;
  box-shadow: var(--shadow);
}

.privacy-dialog::backdrop {
  background: rgba(1, 5, 11, 0.82);
  backdrop-filter: blur(5px);
}

.privacy-dialog h2 {
  margin-bottom: 18px;
  font-size: 30px;
  line-height: 1.1;
}

.privacy-dialog p:not(.section-code) {
  color: var(--muted);
}

.dialog-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border: 0;
  color: #b7cbd8;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

.js .service-card.reveal.is-visible:hover,
.js .service-card.reveal.is-visible:focus-visible,
.js .partner-badge.reveal.is-visible:hover,
.js .partner-badge.reveal.is-visible:focus-visible {
  transform: translateY(-6px);
}

html[data-language="en"] .language-switcher {
  display: none;
}

/* Service module pages */
.service-page {
  --service-page-accent: var(--cyan);
}

.service-page--blue { --service-page-accent: var(--blue); }
.service-page--violet { --service-page-accent: #7b63ff; }
.service-page--coral { --service-page-accent: var(--coral); }

.service-detail-hero {
  position: relative;
  isolation: isolate;
  min-height: 610px;
  padding: 34px 0 76px;
  overflow: hidden;
  border-bottom: 1px solid rgba(135, 196, 233, 0.15);
  background:
    linear-gradient(180deg, rgba(3, 10, 18, 0.36), rgba(5, 11, 22, 0.98)),
    linear-gradient(90deg, rgba(5, 13, 23, 0.96) 0%, rgba(5, 13, 23, 0.58) 58%, rgba(5, 13, 23, 0.88) 100%),
    url("./assets/site/sergey-steam-background.jpg") center 22% / cover no-repeat;
}

.service-detail-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(112, 181, 225, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 181, 225, 0.16) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.service-detail-hero__glow {
  position: absolute;
  z-index: -1;
  top: 64px;
  right: max(-120px, calc((100vw - var(--shell)) / 2 - 220px));
  width: 460px;
  height: 460px;
  border: 1px solid color-mix(in srgb, var(--service-page-accent) 36%, transparent);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 48px color-mix(in srgb, var(--service-page-accent) 4%, transparent),
    0 0 100px color-mix(in srgb, var(--service-page-accent) 12%, transparent);
}

.service-detail-hero__glow::before,
.service-detail-hero__glow::after {
  position: absolute;
  content: "";
  background: var(--service-page-accent);
  transform: rotate(45deg);
}

.service-detail-hero__glow::before {
  top: 72px;
  left: 42px;
  width: 34px;
  height: 34px;
}

.service-detail-hero__glow::after {
  right: 62px;
  bottom: 78px;
  width: 15px;
  height: 15px;
}

.service-back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  margin-bottom: 28px;
  color: #a9bfce;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-back:hover,
.service-back:focus-visible {
  color: var(--service-page-accent);
}

.service-detail-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 345px);
  align-items: start;
  gap: 64px;
}

.service-detail-hero__copy {
  max-width: 720px;
  padding-top: 18px;
}

.service-detail-hero h1 {
  max-width: 800px;
  margin: 15px 0 24px;
  color: #fff;
  font-size: clamp(52px, 7.6vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.service-detail-lead {
  max-width: 700px;
  margin-bottom: 18px;
  color: #ecf4f9;
  font-size: clamp(19px, 2.2vw, 25px);
  line-height: 1.42;
}

.service-detail-hook {
  max-width: 680px;
  margin-bottom: 0;
  padding-left: 18px;
  border-left: 2px solid var(--service-page-accent);
  color: #adc0cd;
  font-size: 15px;
  line-height: 1.65;
}

.service-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.service-detail-actions .button--primary,
.service-detail-cta .button--primary {
  background: linear-gradient(135deg, color-mix(in srgb, var(--service-page-accent) 82%, #fff 4%), color-mix(in srgb, var(--service-page-accent) 68%, #030b14));
  box-shadow: 0 10px 28px color-mix(in srgb, var(--service-page-accent) 22%, transparent);
}

.service-module-index {
  border: 1px solid rgba(135, 196, 233, 0.2);
  border-top: 3px solid var(--service-page-accent);
  background: rgba(7, 17, 28, 0.88);
  box-shadow: 16px 18px 0 rgba(2, 7, 13, 0.3), var(--shadow);
}

.service-module-index > p {
  margin: 0;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--service-page-accent);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-module-index ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-module-index li + li {
  border-top: 1px solid rgba(135, 196, 233, 0.1);
}

.service-module-index a {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  min-height: 55px;
  padding: 13px 16px;
  color: #c1cfda;
}

.service-module-index a:hover,
.service-module-index a:focus-visible {
  color: #fff;
  background: color-mix(in srgb, var(--service-page-accent) 7%, transparent);
}

.service-module-index a span {
  color: var(--service-page-accent);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 850;
}

.service-module-index a strong {
  font-size: 13px;
  line-height: 1.42;
}

.service-detail-content {
  padding: 72px 0 100px;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 268px;
  align-items: start;
  gap: 26px;
}

.service-detail-main {
  min-width: 0;
}

.service-situations {
  margin-bottom: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--service-page-accent);
  background: rgba(12, 25, 39, 0.78);
}

.service-situations h2,
.service-process h2,
.service-detail-cta h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(27px, 4vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.service-situations ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  margin: 0;
  padding: 0;
  color: #b8c8d3;
  list-style: none;
}

.service-situations li,
.service-detail-card li {
  position: relative;
  padding-left: 18px;
}

.service-situations li::before,
.service-detail-card li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--service-page-accent);
  transform: rotate(45deg);
}

.service-detail-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-detail-cards--single {
  grid-template-columns: 1fr;
}

.service-detail-card {
  position: relative;
  min-height: 270px;
  padding: 27px 27px 25px;
  scroll-margin-top: 100px;
  border: 1px solid var(--line);
  border-top: 2px solid color-mix(in srgb, var(--service-page-accent) 72%, #fff 8%);
  background:
    linear-gradient(150deg, color-mix(in srgb, var(--service-page-accent) 6%, transparent), transparent 48%),
    rgba(10, 22, 35, 0.92);
}

.service-detail-card__number {
  display: block;
  margin-bottom: 40px;
  color: var(--service-page-accent);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 850;
}

.service-detail-card h2,
.service-detail-card h3 {
  margin-bottom: 15px;
  color: #fff;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.service-detail-card p {
  margin-bottom: 10px;
  color: #aebfca;
  font-size: 14px;
  line-height: 1.62;
}

.service-detail-card p:last-child {
  margin-bottom: 0;
}

.service-detail-card ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  color: #b8c8d3;
  list-style: none;
}

.service-group + .service-group {
  margin-top: 46px;
}

.service-group__heading {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin: 38px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.service-group__heading span {
  color: var(--service-page-accent);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 850;
}

.service-group__heading h2 {
  margin: 0;
  color: #fff;
  font-size: 27px;
}

.service-process {
  margin-top: 28px;
  padding: 32px;
  border: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(22, 47, 68, 0.88), rgba(10, 22, 35, 0.88));
}

.service-process p:not(.section-code) {
  max-width: 760px;
  margin-bottom: 9px;
  color: #b7c7d2;
}

.service-profile-note {
  position: sticky;
  top: 100px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 15px;
  padding: 20px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--green);
  background: rgba(9, 20, 31, 0.94);
  box-shadow: 12px 14px 0 rgba(2, 7, 13, 0.28);
}

.service-profile-note img {
  width: 72px;
  height: 72px;
  border: 3px solid var(--green);
  object-fit: cover;
}

.service-profile-note .section-code {
  margin: 4px 0 5px;
  color: var(--green-light);
  font-size: 8px;
}

.service-profile-note strong {
  color: #fff;
  font-size: 20px;
}

.service-profile-note > p {
  grid-column: 1 / -1;
  margin: 0;
  color: #9fb2bf;
  font-size: 13px;
  line-height: 1.58;
}

.service-profile-note > a {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
}

.service-detail-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
  margin-top: 28px;
  padding: 40px;
  border: 1px solid color-mix(in srgb, var(--service-page-accent) 54%, var(--line));
  background:
    linear-gradient(115deg, color-mix(in srgb, var(--service-page-accent) 15%, #102239), rgba(8, 18, 30, 0.96) 64%),
    var(--panel);
  box-shadow: 12px 14px 0 color-mix(in srgb, var(--service-page-accent) 13%, transparent);
}

.service-detail-cta h2 {
  margin-bottom: 10px;
}

.service-detail-cta p:not(.section-code) {
  max-width: 700px;
  margin: 0;
  color: #c0ced7;
}

.service-detail-cta .button {
  min-width: 210px;
}

@media (max-width: 1100px) {
  .header-shell {
    grid-template-columns: 150px minmax(300px, 1fr) auto;
    gap: 14px;
  }

  .brand img { width: 142px; }
  .site-nav a { padding-inline: 10px; }
  .header-link { display: none; }

  .profile-panel {
    grid-template-columns: 164px minmax(0, 1fr) 168px;
    gap: 24px;
  }

  .profile-level {
    width: 160px;
    min-height: 138px;
  }

  .audit-section {
    gap: 38px;
    padding: 44px;
  }

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

  .partner-badge {
    grid-column: span 2;
  }

  .partner-badge[data-partner="cq"] {
    grid-column: 2 / span 2;
  }

  html[data-language="en"] .partners-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  html[data-language="en"] .partner-badge[data-partner="cq"] {
    grid-column: span 2;
  }

  .partners-stage::after {
    box-shadow: 0 126px 0 rgba(32, 205, 238, 0.08), 0 0 14px rgba(32, 205, 238, 0.14);
  }
}

@media (max-width: 880px) {
  html { scroll-padding-top: 78px; }

  .header-shell {
    position: relative;
    grid-template-columns: 1fr auto auto;
    min-height: 66px;
  }

  .brand img {
    width: 135px;
    height: 52px;
  }

  .menu-toggle { display: block; order: 3; }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: -18px;
    left: -18px;
    display: none;
    min-height: 0;
    padding: 10px 18px 16px;
    border-bottom: 1px solid var(--line);
    background: rgba(4, 10, 18, 0.98);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.4);
  }

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

  .site-nav a {
    min-height: 50px;
    padding-inline: 12px;
    border-bottom: 1px solid rgba(135, 196, 233, 0.1);
  }

  .site-nav a::after { display: none; }

  .header-actions {
    order: 2;
  }

  .menu-open { overflow: hidden; }

  .profile-section {
    min-height: 0;
    padding-top: 42px;
  }

  .profile-panel {
    grid-template-columns: 150px minmax(0, 1fr);
    grid-template-areas:
      "avatar identity"
      "level identity"
      "stats stats";
  }

  .profile-level {
    width: 142px;
    min-height: 118px;
    margin-inline: auto;
  }

  .profile-level strong { font-size: 29px; }

  .profile-stats {
    grid-template-columns: repeat(3, minmax(125px, 1fr));
  }

  .profile-tabs {
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .profile-tabs a { scroll-snap-align: start; }

  .belief-section {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .belief-art { display: none; }

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

  .projects-grid,
  .results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .result-card--recognition {
    grid-column: 1 / -1;
    min-height: 300px;
  }

  .steam-token {
    float: right;
    margin: 0 0 10px 28px;
  }

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

  .footer-main {
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .footer-main nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-bottom: 22px;
  }

  .mobile-audit-cta {
    position: fixed;
    z-index: 90;
    right: max(16px, env(safe-area-inset-right, 0px));
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    left: max(16px, env(safe-area-inset-left, 0px));
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    opacity: 0;
    visibility: hidden;
    color: #fff;
    background: linear-gradient(135deg, #78ae27, #4d8517);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.55);
    font-weight: 850;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 0s linear 160ms;
  }

  .mobile-audit-cta.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition-delay: 0s;
  }

  .contact-dock { display: none; }

  .site-footer { padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 620px) {
  .shell,
  .profile-shell {
    width: min(100% - 24px, var(--shell));
  }

  .header-shell {
    width: calc(100% - 24px);
  }

  .language-switcher span { display: none; }
  .language-switcher button { min-width: 34px; }
  .header-cta { display: none; }

  .profile-section { padding-top: 18px; }

  .profile-backdrop {
    background-position: 56% top;
  }

  .profile-panel {
    grid-template-columns: 88px minmax(0, 1fr);
    grid-template-areas: none;
    gap: 18px 14px;
    padding: 18px 16px 0;
  }

  .profile-avatar-wrap {
    grid-area: auto;
    grid-column: 1;
    grid-row: 1 / 4;
    align-self: start;
  }

  .profile-identity {
    display: contents;
  }

  .profile-avatar { padding: 3px; }

  .profile-online {
    display: block;
    margin-top: 10px;
    font-size: 10px;
  }

  .profile-online i { display: none; }

  .profile-kicker {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    margin-bottom: 4px;
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .profile-identity h1 {
    grid-column: 2;
    grid-row: 2;
    font-size: 34px;
  }

  .profile-role {
    grid-column: 2;
    grid-row: 3;
    display: grid;
    gap: 1px;
    margin: 7px 0 13px;
    font-size: 11px;
  }

  .profile-role > span[aria-hidden="true"] { display: none; }

  .profile-summary,
  .profile-identity h2,
  .profile-hook,
  .profile-actions {
    grid-column: 1 / -1;
  }

  .profile-summary {
    grid-row: 4;
    margin: 0;
    margin-bottom: 18px;
    font-size: 10px;
  }

  .profile-identity h2 {
    grid-row: 5;
    font-size: 28px;
  }

  .profile-hook {
    grid-row: 6;
    font-size: 14px;
  }

  .profile-actions {
    grid-row: 7;
    display: grid;
  }

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

  .profile-level {
    grid-area: auto;
    grid-column: 1 / -1;
    grid-row: 8;
    flex-direction: row;
    justify-content: flex-start;
    gap: 13px;
    width: 100%;
    min-height: 64px;
    padding: 12px 17px;
    border-width: 1px;
    border-radius: 0;
  }

  .profile-level strong { margin: 0; font-size: 31px; order: -1; }

  .profile-level > span,
  .profile-level small { text-align: left; }

  .profile-stats {
    grid-area: auto;
    grid-column: 1 / -1;
    grid-row: 9;
    margin: 0 -16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .profile-stats div { padding: 15px 16px; }
  .profile-stats dd { font-size: 22px; }

  .profile-tabs a {
    min-height: 50px;
    padding-inline: 17px;
  }

  .route-bridge {
    width: calc(100% - 24px);
    height: 76px;
    margin: 2px auto;
  }

  .route-line { top: 36px; height: 6px; width: 63%; }
  .route-platform { top: 25px; width: 58px; height: 28px; box-shadow: 7px 8px 0 #07184b; }
  .route-cube { top: 27px; width: 20px; height: 20px; box-shadow: 5px 5px 0 #8f272f; }
  .route-bridge--destination { height: 96px; }
  .route-door { bottom: 20px; width: 35px; height: 54px; border-width: 7px; }

  .belief-section {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 29px 25px;
    box-shadow: 8px 10px 0 rgba(92, 66, 232, 0.42), var(--shadow);
  }

  .belief-mark { display: none; }
  .belief-section p:last-child { font-size: 16px; }

  .section { padding: 26px 0 36px; }
  .section-heading { margin-bottom: 22px; }
  .section-heading h2,
  .audit-copy h2,
  .faq-section h2 { font-size: 31px; }

  .projects-grid {
    display: flex;
    gap: 12px;
    margin-inline: -12px;
    padding: 0 12px 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .projects-grid::-webkit-scrollbar { display: none; }

  .project-card {
    flex: 0 0 min(82vw, 320px);
    scroll-snap-align: center;
  }

  .partners-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .partner-badge,
  .partner-badge[data-partner="cq"] {
    grid-column: span 2;
    min-height: 106px;
  }

  .partner-badge[data-partner="izvestia"] {
    grid-column: 2 / span 2;
  }

  html[data-language="en"] .partner-badge[data-partner="izvestia"] {
    grid-column: span 2;
  }

  .partners-stage {
    padding-inline: 2px;
  }

  .partners-stage::after {
    top: 68px;
    box-shadow:
      0 116px 0 rgba(32, 205, 238, 0.08),
      0 232px 0 rgba(92, 66, 232, 0.07),
      0 348px 0 rgba(32, 205, 238, 0.07),
      0 0 12px rgba(32, 205, 238, 0.12);
  }

  .partners-route {
    top: 64px;
  }

  .partner-badge__mark {
    min-height: 60px;
  }

  .partner-badge__mark img {
    max-width: min(100%, 96px);
    max-height: 48px;
  }

  .results-grid { grid-template-columns: 1fr; }
  .result-card--recognition { grid-column: auto; }
  .result-card { min-height: 340px; padding: 22px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 230px; padding: 20px; }
  .service-card__content { padding: 28px 0 24px; }
  .service-card__content > strong { font-size: 24px; }

  .audit-section {
    width: calc(100% - 24px);
    padding: 29px 20px;
    box-shadow: 8px 10px 0 rgba(55, 44, 167, 0.34), var(--shadow);
  }

  .audit-copy > p:not(.section-code, .audit-calendar-note) { font-size: 15px; }
  .audit-form { padding: 21px 17px; }

  .consent-row {
    grid-template-columns: 22px minmax(0, 1fr);
  }

  .consent-row button {
    grid-column: 2;
    justify-self: start;
    min-height: 36px;
    padding: 0;
  }

  .faq-section { padding: 68px 0 88px; }
  .faq-list summary { min-height: 66px; font-size: 16px; }
  .faq-list details p { padding-right: 10px; }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 25px;
  }

  .footer-brand img { width: 164px; }
  .footer-main nav { grid-column: auto; }

  .footer-bottom {
    gap: 16px;
    padding-block: 12px;
  }

  .privacy-dialog { padding: 28px 22px; }
}

@media (max-width: 880px) {
  .service-detail-hero {
    min-height: 0;
    padding-bottom: 58px;
  }

  .service-detail-hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-module-index {
    width: 100%;
    box-shadow: 9px 10px 0 rgba(2, 7, 13, 0.28);
  }

  .service-module-index ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-module-index li + li {
    border-top: 0;
  }

  .service-module-index li:nth-child(n + 3) {
    border-top: 1px solid rgba(135, 196, 233, 0.1);
  }

  .service-module-index li:nth-child(even) {
    border-left: 1px solid rgba(135, 196, 233, 0.1);
  }

  .service-detail-layout {
    grid-template-columns: 1fr;
  }

  .service-profile-note {
    position: static;
    grid-template-columns: 72px minmax(0, 1fr) minmax(260px, 1.4fr);
    align-items: center;
  }

  .service-profile-note > p {
    grid-column: 3;
    grid-row: 1;
  }

  .service-profile-note > a {
    grid-column: 3;
    grid-row: 2;
  }
}

@media (max-width: 620px) {
  .service-detail-hero {
    padding: 22px 0 44px;
    background-position: 62% top;
  }

  .service-back {
    margin-bottom: 15px;
  }

  .service-detail-hero__copy {
    padding-top: 8px;
  }

  .service-detail-hero h1 {
    margin: 12px 0 19px;
    font-size: clamp(43px, 14vw, 64px);
  }

  .service-detail-lead {
    font-size: 18px;
  }

  .service-detail-hook {
    font-size: 14px;
  }

  .service-detail-actions {
    display: grid;
  }

  .service-detail-actions .button {
    width: 100%;
  }

  .service-module-index ol {
    grid-template-columns: 1fr;
  }

  .service-module-index li:nth-child(even) {
    border-left: 0;
  }

  .service-module-index li + li,
  .service-module-index li:nth-child(n + 3) {
    border-top: 1px solid rgba(135, 196, 233, 0.1);
  }

  .service-detail-content {
    width: calc(100% - 24px);
    padding: 46px 0 82px;
  }

  .service-situations,
  .service-process,
  .service-detail-cta {
    padding: 23px 20px;
  }

  .service-situations ul,
  .service-detail-cards {
    grid-template-columns: 1fr;
  }

  .service-detail-card {
    min-height: 0;
    padding: 23px 20px;
  }

  .service-detail-card__number {
    margin-bottom: 28px;
  }

  .service-group__heading {
    align-items: flex-start;
  }

  .service-group__heading h2 {
    font-size: 23px;
  }

  .service-profile-note {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .service-profile-note img {
    width: 64px;
    height: 64px;
  }

  .service-profile-note > p,
  .service-profile-note > a {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .service-detail-cta {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-detail-cta .button {
    width: 100%;
    min-width: 0;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .js .service-card.reveal.is-visible:hover,
  .js .service-card.reveal.is-visible:focus-visible,
  .js .partner-badge.reveal.is-visible:hover,
  .js .partner-badge.reveal.is-visible:focus-visible {
    transform: none;
  }

  .partner-badge:hover::before,
  .partner-badge:focus-visible::before {
    transform: translateX(-50%);
  }

  .partner-badge:hover .partner-badge__mark img,
  .partner-badge:focus-visible .partner-badge__mark img {
    transform: none;
  }
}
