:root {
  color-scheme: dark;
  --bg: #030303;
  --panel: #0d0e10;
  --panel-2: #15171b;
  --section-alt: #0a0a0b;
  --line: rgba(255, 255, 255, 0.16);
  --text: #f7f5ef;
  --muted: #a9a8a3;
  --lead: #ded9cd;
  --orange: #ff5a00;
  --yellow: #ffe03d;
  --red: #ff2f00;
  --grey: #8c929c;
  --graphite: #121316;
  --acid: #ffc400;
  --header-bg: rgba(6, 6, 7, 0.76);
  --glass-panel: rgba(15, 15, 17, 0.76);
  --button-soft: rgba(255, 255, 255, 0.07);
  --control-bg: rgba(255, 255, 255, 0.1);
  --input-bg: #09090a;
  --footer-bg: #040404;
  --hero-overlay: linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.76) 44%, rgba(5, 5, 5, 0.14) 100%);
  --hero-bottom: linear-gradient(0deg, var(--bg), transparent 28%);
  --hero-mobile-overlay: linear-gradient(180deg, rgba(5, 5, 5, 0.78) 0%, rgba(5, 5, 5, 0.97) 58%, var(--bg) 100%);
  --scene-bg-one: #050505;
  --scene-bg-two: #111113;
  --soft-shadow: 0 22px 80px rgba(0, 0, 0, 0.42);
  --card-glow: 0 0 0 1px rgba(255, 255, 255, 0.045), 0 28px 82px rgba(0, 0, 0, 0.32);
  --radius: 8px;
  --max: 1240px;
  --header-height: 72px;
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme]) {
    color-scheme: light;
    --bg: #eef0f4;
    --panel: #ffffff;
    --panel-2: #f5f6f9;
    --section-alt: #dde1e8;
    --line: rgba(18, 19, 22, 0.22);
    --text: #07080a;
    --muted: #3f454f;
    --lead: #15191f;
    --header-bg: rgba(255, 255, 255, 0.96);
    --glass-panel: rgba(255, 255, 255, 0.95);
    --button-soft: rgba(16, 18, 22, 0.095);
    --control-bg: rgba(255, 255, 255, 0.94);
    --input-bg: #ffffff;
    --footer-bg: #d8dde6;
    --hero-overlay: linear-gradient(90deg, rgba(238, 240, 244, 1) 0%, rgba(238, 240, 244, 0.94) 47%, rgba(238, 240, 244, 0.3) 100%);
    --hero-mobile-overlay: linear-gradient(180deg, rgba(238, 240, 244, 0.9) 0%, rgba(238, 240, 244, 0.99) 55%, var(--bg) 100%);
    --scene-bg-one: #eef0f4;
    --scene-bg-two: #ffe7a3;
    --soft-shadow: 0 22px 74px rgba(18, 19, 22, 0.18);
    --card-glow: 0 0 0 1px rgba(18, 19, 22, 0.085), 0 24px 70px rgba(18, 19, 22, 0.14);
  }
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #eef0f4;
  --panel: #ffffff;
  --panel-2: #f5f6f9;
  --section-alt: #dde1e8;
  --line: rgba(18, 19, 22, 0.22);
  --text: #07080a;
  --muted: #3f454f;
  --lead: #15191f;
  --header-bg: rgba(255, 255, 255, 0.96);
  --glass-panel: rgba(255, 255, 255, 0.95);
  --button-soft: rgba(16, 18, 22, 0.095);
  --control-bg: rgba(255, 255, 255, 0.94);
  --input-bg: #ffffff;
  --footer-bg: #d8dde6;
  --hero-overlay: linear-gradient(90deg, rgba(238, 240, 244, 1) 0%, rgba(238, 240, 244, 0.94) 47%, rgba(238, 240, 244, 0.3) 100%);
  --hero-mobile-overlay: linear-gradient(180deg, rgba(238, 240, 244, 0.9) 0%, rgba(238, 240, 244, 0.99) 55%, var(--bg) 100%);
  --scene-bg-one: #eef0f4;
  --scene-bg-two: #ffe7a3;
  --soft-shadow: 0 22px 74px rgba(18, 19, 22, 0.18);
  --card-glow: 0 0 0 1px rgba(18, 19, 22, 0.085), 0 24px 70px rgba(18, 19, 22, 0.14);
}

:root[data-theme="dark"] {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 32px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", "Aptos", "Segoe UI Variable Text", "Segoe UI", Arial, Helvetica, sans-serif;
  font-weight: 520;
  line-height: 1.45;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

body,
button,
input,
textarea {
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 112px) 0;
  scroll-margin-top: calc(var(--header-height) + 32px);
}

.site-header {
  position: fixed;
  inset: 18px 24px auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--header-bg);
  backdrop-filter: blur(18px);
  box-shadow: var(--soft-shadow);
}

:root[data-theme="light"] .site-header,
:root[data-theme="light"] .cookie {
  border-color: rgba(31, 29, 25, 0.18);
  box-shadow: 0 20px 70px rgba(31, 29, 25, 0.15);
}

:root[data-theme="light"] .review-slider-shell {
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 106, 0, 0.18), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(255, 224, 61, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 244, 222, 0.52)),
    rgba(255, 255, 255, 0.86);
}

:root[data-theme="light"] .review-carousel-window {
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 224, 61, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 90, 0, 0.08)),
    rgba(255, 255, 255, 0.88);
}

:root[data-theme="light"] .review-carousel-window::before {
  background: linear-gradient(90deg, rgba(255, 249, 237, 0.98), transparent);
}

:root[data-theme="light"] .review-carousel-window::after {
  background: linear-gradient(270deg, rgba(255, 249, 237, 0.98), transparent);
}

:root[data-theme="light"] .partner-feature-visual {
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 224, 61, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 106, 0, 0.1));
}

:root[data-theme="light"] .partner-node {
  border-color: rgba(31, 29, 25, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(31, 29, 25, 0.12);
}

:root[data-theme="light"] .partners::before {
  opacity: 0.32;
}

:root[data-theme="light"] .partner-feature,
:root[data-theme="light"] .partner-grid span {
  border-color: rgba(24, 26, 30, 0.26);
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 174, 0, 0.18), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, #f6f0e5 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 22px 58px rgba(24, 26, 30, 0.18);
}

:root[data-theme="light"] .partner-feature::before {
  opacity: 0.45;
}

:root[data-theme="light"] .partner-grid small {
  color: rgba(201, 86, 0, 0.58);
  text-shadow: none;
}

:root[data-theme="light"] .partner-grid span {
  color: #08090b;
}

:root[data-theme="light"] .partner-grid svg {
  border-color: rgba(214, 92, 0, 0.32);
  background: rgba(255, 106, 0, 0.11);
  color: #e15400;
}

:root[data-theme="light"] .partner-stats span {
  border-color: rgba(24, 26, 30, 0.14);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 34px rgba(24, 26, 30, 0.08);
}

:root[data-theme="light"] .about-system-card,
:root[data-theme="light"] .about-metrics span {
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 224, 61, 0.14), transparent 25%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 244, 222, 0.42)),
    var(--panel);
}

:root[data-theme="light"] .button-secondary,
:root[data-theme="light"] .language-switch,
:root[data-theme="light"] .theme-toggle {
  border-color: rgba(18, 19, 22, 0.26);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  box-shadow: 0 12px 30px rgba(18, 19, 22, 0.1);
}

:root[data-theme="light"] .feature,
:root[data-theme="light"] .partner-feature,
:root[data-theme="light"] .partner-grid span,
:root[data-theme="light"] .review,
:root[data-theme="light"] .faq-list details,
:root[data-theme="light"] .telegram-card,
:root[data-theme="light"] .form,
:root[data-theme="light"] .cookie,
:root[data-theme="light"] .hero-insight {
  border-color: rgba(18, 19, 22, 0.2);
  background:
    radial-gradient(circle at 88% 14%, rgba(255, 160, 0, 0.12), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 226, 0.48)),
    var(--panel);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 24px 70px rgba(18, 19, 22, 0.14);
}

:root[data-theme="light"] .feature p,
:root[data-theme="light"] .about-system-card p,
:root[data-theme="light"] .about-metrics small,
:root[data-theme="light"] .partner-feature p,
:root[data-theme="light"] .partner-stats small,
:root[data-theme="light"] .review p,
:root[data-theme="light"] .review-person small,
:root[data-theme="light"] .faq p,
:root[data-theme="light"] .telegram-card p,
:root[data-theme="light"] .form-note,
:root[data-theme="light"] .cookie p {
  color: #343a44;
}

:root[data-theme="light"] .feature-chip,
:root[data-theme="light"] .review-topline span,
:root[data-theme="light"] .partner-feature-label,
:root[data-theme="light"] .review-verified {
  border-color: rgba(214, 92, 0, 0.3);
  background: rgba(255, 106, 0, 0.12);
  color: #b84100;
}

:root[data-theme="light"] .console-card {
  color: #ffffff;
  box-shadow: 0 26px 90px rgba(153, 66, 0, 0.24);
}

:root[data-theme="light"] .console-card p,
:root[data-theme="light"] .console-card h2 {
  text-shadow: 0 2px 16px rgba(52, 24, 0, 0.3);
}

:root[data-theme="light"] .nav a,
:root[data-theme="light"] .brand-word,
:root[data-theme="light"] .text-link,
:root[data-theme="light"] .faq-list summary,
:root[data-theme="light"] .telegram-card strong,
:root[data-theme="light"] label {
  color: #08090b;
}

:root[data-theme="light"] .eyebrow {
  color: #d64f00;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
}

:root[data-theme="light"] input,
:root[data-theme="light"] textarea {
  border-color: rgba(18, 19, 22, 0.24);
  background: #ffffff;
  color: #08090b;
  box-shadow: inset 0 1px 0 rgba(18, 19, 22, 0.04);
}

:root[data-theme="light"] input::placeholder,
:root[data-theme="light"] textarea::placeholder {
  color: #626873;
}

:root[data-theme="light"] .brand-mark {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 211, 61, 0.26), transparent 68%),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 0 1px rgba(18, 19, 22, 0.16), 0 12px 32px rgba(255, 106, 0, 0.2);
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme]) .site-header,
  :root:not([data-theme]) .cookie {
    border-color: rgba(31, 29, 25, 0.18);
    box-shadow: 0 20px 70px rgba(31, 29, 25, 0.15);
  }

  :root:not([data-theme]) .review-slider-shell {
    background:
      radial-gradient(circle at 16% 12%, rgba(255, 106, 0, 0.18), transparent 34%),
      radial-gradient(circle at 86% 18%, rgba(255, 224, 61, 0.18), transparent 30%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 244, 222, 0.52)),
      rgba(255, 255, 255, 0.86);
  }

  :root:not([data-theme]) .review-carousel-window {
    background:
      radial-gradient(circle at 80% 10%, rgba(255, 224, 61, 0.18), transparent 28%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 90, 0, 0.08)),
      rgba(255, 255, 255, 0.88);
  }

  :root:not([data-theme]) .review-carousel-window::before {
    background: linear-gradient(90deg, rgba(255, 249, 237, 0.98), transparent);
  }

  :root:not([data-theme]) .review-carousel-window::after {
    background: linear-gradient(270deg, rgba(255, 249, 237, 0.98), transparent);
  }

  :root:not([data-theme]) .partner-feature-visual {
    background:
      radial-gradient(circle at 50% 52%, rgba(255, 224, 61, 0.22), transparent 34%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 106, 0, 0.1));
  }

  :root:not([data-theme]) .partner-node {
    border-color: rgba(31, 29, 25, 0.12);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 12px 28px rgba(31, 29, 25, 0.12);
  }

  :root:not([data-theme]) .partners::before {
    opacity: 0.32;
  }

  :root:not([data-theme]) .partner-feature,
  :root:not([data-theme]) .partner-grid span {
    border-color: rgba(24, 26, 30, 0.26);
    background:
      radial-gradient(circle at 84% 18%, rgba(255, 174, 0, 0.18), transparent 28%),
      linear-gradient(145deg, #ffffff 0%, #f6f0e5 100%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.92),
      0 22px 58px rgba(24, 26, 30, 0.18);
  }

  :root:not([data-theme]) .partner-feature::before {
    opacity: 0.45;
  }

  :root:not([data-theme]) .partner-grid small {
    color: rgba(201, 86, 0, 0.58);
    text-shadow: none;
  }

  :root:not([data-theme]) .partner-grid span {
    color: #08090b;
  }

  :root:not([data-theme]) .partner-grid svg {
    border-color: rgba(214, 92, 0, 0.32);
    background: rgba(255, 106, 0, 0.11);
    color: #e15400;
  }

  :root:not([data-theme]) .partner-stats span {
    border-color: rgba(24, 26, 30, 0.14);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 14px 34px rgba(24, 26, 30, 0.08);
  }

  :root:not([data-theme]) .about-system-card,
  :root:not([data-theme]) .about-metrics span {
    background:
      radial-gradient(circle at 90% 12%, rgba(255, 224, 61, 0.14), transparent 25%),
      linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 244, 222, 0.42)),
      var(--panel);
  }

  :root:not([data-theme]) .button-secondary,
  :root:not([data-theme]) .language-switch,
  :root:not([data-theme]) .theme-toggle {
    border-color: rgba(18, 19, 22, 0.26);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    box-shadow: 0 12px 30px rgba(18, 19, 22, 0.1);
  }

  :root:not([data-theme]) .feature,
  :root:not([data-theme]) .partner-feature,
  :root:not([data-theme]) .partner-grid span,
  :root:not([data-theme]) .review,
  :root:not([data-theme]) .faq-list details,
  :root:not([data-theme]) .telegram-card,
  :root:not([data-theme]) .form,
  :root:not([data-theme]) .cookie,
  :root:not([data-theme]) .hero-insight {
    border-color: rgba(18, 19, 22, 0.2);
    background:
      radial-gradient(circle at 88% 14%, rgba(255, 160, 0, 0.12), transparent 26%),
      linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 226, 0.48)),
      var(--panel);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.85),
      0 24px 70px rgba(18, 19, 22, 0.14);
  }

  :root:not([data-theme]) .feature p,
  :root:not([data-theme]) .about-system-card p,
  :root:not([data-theme]) .about-metrics small,
  :root:not([data-theme]) .partner-feature p,
  :root:not([data-theme]) .partner-stats small,
  :root:not([data-theme]) .review p,
  :root:not([data-theme]) .review-person small,
  :root:not([data-theme]) .faq p,
  :root:not([data-theme]) .telegram-card p,
  :root:not([data-theme]) .form-note,
  :root:not([data-theme]) .cookie p {
    color: #343a44;
  }

  :root:not([data-theme]) .feature-chip,
  :root:not([data-theme]) .review-topline span,
  :root:not([data-theme]) .partner-feature-label,
  :root:not([data-theme]) .review-verified {
    border-color: rgba(214, 92, 0, 0.3);
    background: rgba(255, 106, 0, 0.12);
    color: #b84100;
  }

  :root:not([data-theme]) .console-card {
    color: #ffffff;
    box-shadow: 0 26px 90px rgba(153, 66, 0, 0.24);
  }

  :root:not([data-theme]) .console-card p,
  :root:not([data-theme]) .console-card h2 {
    text-shadow: 0 2px 16px rgba(52, 24, 0, 0.3);
  }

  :root:not([data-theme]) .nav a,
  :root:not([data-theme]) .brand-word,
  :root:not([data-theme]) .text-link,
  :root:not([data-theme]) .faq-list summary,
  :root:not([data-theme]) .telegram-card strong,
  :root:not([data-theme]) label {
    color: #08090b;
  }

  :root:not([data-theme]) .eyebrow {
    color: #d64f00;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
  }

  :root:not([data-theme]) input,
  :root:not([data-theme]) textarea {
    border-color: rgba(18, 19, 22, 0.24);
    background: #ffffff;
    color: #08090b;
    box-shadow: inset 0 1px 0 rgba(18, 19, 22, 0.04);
  }

  :root:not([data-theme]) input::placeholder,
  :root:not([data-theme]) textarea::placeholder {
    color: #626873;
  }

  :root:not([data-theme]) .brand-mark {
    background:
      radial-gradient(circle at 50% 50%, rgba(255, 211, 61, 0.26), transparent 68%),
      rgba(255, 255, 255, 0.72);
    box-shadow: 0 0 0 1px rgba(18, 19, 22, 0.16), 0 12px 32px rgba(255, 106, 0, 0.2);
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 211, 61, 0.16), transparent 68%),
    rgba(255, 255, 255, 0.02);
  color: #130b02;
  box-shadow: 0 0 0 1px rgba(255, 211, 61, 0.18), 0 0 24px rgba(255, 106, 0, 0.18);
}

.animated-logo {
  overflow: visible;
  isolation: isolate;
  animation: logoFloat 6.4s ease-in-out infinite;
}

.animated-logo::after {
  content: none;
}

.animated-logo::before {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 211, 61, 0.18), rgba(255, 106, 0, 0.18) 42%, transparent 70%);
  animation: logoGlow 4.8s ease-in-out infinite;
}

.animated-logo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(255, 106, 0, 0.26));
  transform: scale(1);
  animation: logoImagePulse 6.4s ease-in-out infinite;
}

.brand:hover .animated-logo {
  box-shadow: 0 0 0 1px rgba(255, 211, 61, 0.28), 0 0 30px rgba(255, 106, 0, 0.24);
}

.brand:hover .animated-logo img {
  transform: scale(1.02);
}

.brand-word {
  font-size: 16px;
  letter-spacing: 0.02em;
}

.nav {
  justify-self: center;
  display: flex;
  gap: clamp(14px, 1.6vw, 24px);
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.nav a,
.footer a,
.text-link {
  transition: color 160ms ease;
}

.nav a:hover,
.text-link:hover,
.footer a:hover {
  color: var(--orange);
}

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

.language-switch {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--control-bg);
}

.language-switch button {
  min-width: 36px;
  height: 36px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.language-switch button.is-active {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: #150b03;
}

.theme-toggle,
.menu-toggle {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--control-bg);
  color: var(--text);
  cursor: pointer;
}

.theme-toggle {
  position: relative;
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  overflow: hidden;
  color: var(--text);
  isolation: isolate;
}

.theme-toggle::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 211, 61, 0.26), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 106, 0, 0.08));
  opacity: 0.88;
  transition: transform 220ms ease, opacity 220ms ease, background 220ms ease;
}

.theme-toggle::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 211, 61, 0.42), rgba(255, 106, 0, 0.14), transparent 62%);
  opacity: 0;
  transition: opacity 220ms ease;
  z-index: -1;
}

.theme-toggle:hover::before {
  transform: scale(1.04);
}

.theme-toggle:hover::after {
  opacity: 1;
}

.theme-orbit {
  position: relative;
  width: 25px;
  height: 25px;
  display: block;
}

.theme-icon,
.theme-icon::before,
.theme-icon::after {
  position: absolute;
  display: block;
  content: "";
}

.theme-icon {
  inset: 0;
  margin: auto;
  transition:
    opacity 260ms ease,
    transform 360ms cubic-bezier(0.2, 0.85, 0.24, 1.24),
    filter 260ms ease;
}

.theme-sun {
  width: 14px;
  height: 14px;
  inset: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), #ff8a00);
  box-shadow:
    0 0 0 2px rgba(255, 211, 61, 0.15),
    0 0 18px rgba(255, 211, 61, 0.62);
  opacity: 0;
  transform: rotate(-38deg) scale(0.54);
  filter: saturate(1.2);
}

.theme-sun::before,
.theme-sun::after {
  inset: -6px;
  border-radius: inherit;
  background:
    linear-gradient(currentColor, currentColor) center top / 2px 5px no-repeat,
    linear-gradient(currentColor, currentColor) center bottom / 2px 5px no-repeat,
    linear-gradient(90deg, currentColor, currentColor) left center / 5px 2px no-repeat,
    linear-gradient(90deg, currentColor, currentColor) right center / 5px 2px no-repeat;
  color: var(--yellow);
}

.theme-sun::after {
  transform: rotate(45deg);
  opacity: 0.82;
}

.theme-moon {
  width: 19px;
  height: 19px;
  inset: 3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8fbff, #d8e2ee 58%, #9aa8b8);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22),
    0 0 18px rgba(216, 226, 238, 0.28);
  transform: translateX(0) rotate(0deg) scale(1);
}

.theme-moon::before {
  width: 19px;
  height: 19px;
  right: -5px;
  top: -1px;
  border-radius: 50%;
  background: var(--control-bg);
  box-shadow: -4px 3px 8px rgba(0, 0, 0, 0.16);
}

.theme-moon::after {
  right: -7px;
  top: 1px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  color: #f8fbff;
  background: currentColor;
  box-shadow:
    -9px -4px 0 -1px currentColor,
    -2px 14px 0 -1px currentColor;
  opacity: 0.92;
}

:root[data-theme="light"] .theme-sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

:root[data-theme="light"] .theme-moon {
  opacity: 0;
  transform: translateX(8px) rotate(32deg) scale(0.58);
}

:root[data-theme="light"] .theme-toggle::before {
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.86), transparent 32%),
    linear-gradient(145deg, rgba(255, 211, 61, 0.22), rgba(255, 106, 0, 0.08));
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme]) .theme-sun {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }

  :root:not([data-theme]) .theme-moon {
    opacity: 0;
    transform: translateX(8px) rotate(32deg) scale(0.58);
  }

  :root:not([data-theme]) .theme-toggle::before {
    background:
      radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.86), transparent 32%),
      linear-gradient(145deg, rgba(255, 211, 61, 0.22), rgba(255, 106, 0, 0.08));
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

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

.button-icon,
.feature-icon svg,
.review-icon {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke-width: 2;
}

.button-primary {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: #150b03;
  font-weight: 900;
  box-shadow: 0 20px 60px rgba(255, 90, 0, 0.34), 0 0 0 1px rgba(255, 224, 61, 0.22);
}

.button-secondary,
.button-ghost {
  border-color: var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    var(--control-bg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 142px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    var(--hero-overlay),
    var(--hero-bottom),
    radial-gradient(circle at 70% 32%, rgba(255, 90, 0, 0.48), transparent 30%),
    radial-gradient(circle at 86% 68%, rgba(255, 224, 61, 0.22), transparent 25%),
    linear-gradient(115deg, rgba(255, 90, 0, 0.08), transparent 42%),
    linear-gradient(135deg, var(--scene-bg-one), var(--scene-bg-two));
}

.hero-stage canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  transition: opacity 420ms ease;
}

.hero-stage.is-ready canvas {
  opacity: 1;
}

.hero-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 42%, rgba(255, 106, 0, 0.42), transparent 18%),
    radial-gradient(circle at 79% 44%, rgba(255, 211, 61, 0.2), transparent 28%);
  filter: saturate(1.12);
  animation: fallbackDrift 9s ease-in-out infinite alternate;
}

.hero-stage.is-ready .hero-fallback {
  opacity: 0.16;
}

.hero-insights {
  position: absolute;
  left: auto;
  right: 0;
  top: 24%;
  z-index: 3;
  width: clamp(280px, 24vw, 360px);
  display: grid;
  gap: 14px;
  pointer-events: none;
  perspective: 1000px;
}

.hero-insight {
  position: relative;
  min-height: 118px;
  padding: 24px 26px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--line), var(--yellow) 28%);
  border-radius: 14px;
  background:
    radial-gradient(circle at 92% 18%, rgba(255, 224, 61, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255, 90, 0, 0.17), transparent 46%),
    linear-gradient(110deg, rgba(9, 9, 10, 0.94), rgba(24, 22, 20, 0.82));
  box-shadow:
    0 28px 86px rgba(0, 0, 0, 0.46),
    0 16px 48px rgba(255, 90, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transform: rotateY(10deg) rotateX(3deg) translateZ(0);
  animation: insightFloat 7s ease-in-out infinite;
}

.hero-insight:nth-child(2) {
  margin-left: -34px;
  animation-delay: -1.7s;
}

.hero-insight:nth-child(3) {
  margin-left: -10px;
  animation-delay: -3.2s;
}

.hero-insight::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 4px;
  height: 46px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, var(--yellow), var(--orange));
  box-shadow: 0 0 26px rgba(255, 106, 0, 0.46);
}

.hero-insight::after {
  content: "";
  position: absolute;
  inset: auto 20px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 211, 61, 0.72), transparent);
  opacity: 0.64;
}

.hero-insight span {
  position: relative;
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.01em;
}

.hero-insight small {
  position: relative;
  color: color-mix(in srgb, var(--text), var(--muted) 28%);
  font-size: 15px;
  font-weight: 700;
}

[data-theme="light"] .hero-insight {
  border-color: rgba(255, 106, 0, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 211, 61, 0.2), transparent 46%),
    linear-gradient(110deg, rgba(255, 255, 255, 0.88), rgba(255, 247, 229, 0.72));
  box-shadow:
    0 24px 70px rgba(113, 67, 17, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) .hero-insight {
    border-color: rgba(255, 106, 0, 0.24);
    background:
      linear-gradient(135deg, rgba(255, 211, 61, 0.2), transparent 46%),
      linear-gradient(110deg, rgba(255, 255, 255, 0.88), rgba(255, 247, 229, 0.72));
    box-shadow:
      0 24px 70px rgba(113, 67, 17, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }
}

.hero-grid {
  position: relative;
  display: grid;
  z-index: 2;
  grid-template-columns: minmax(0, 780px);
  gap: clamp(28px, 4vw, 56px);
  align-items: end;
}

.hero-copy {
  max-width: min(780px, calc(100vw - 620px));
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Space Grotesk", "Inter", "Aptos Display", "Segoe UI", Arial, sans-serif;
  text-wrap: balance;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(46px, 6.7vw, 96px);
  line-height: 0.91;
  letter-spacing: -0.028em;
  font-weight: 700;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.018em;
  font-weight: 700;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(21px, 2vw, 25px);
  line-height: 1.14;
  letter-spacing: -0.01em;
  font-weight: 800;
  text-wrap: balance;
}

h1,
h2,
h3,
.brand-word,
.button,
.partner-grid span,
.language-switch button {
  overflow-wrap: anywhere;
}

.lead {
  max-width: 710px;
  color: var(--lead);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 650;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.console-cta {
  padding: clamp(42px, 5vw, 68px) 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, color-mix(in srgb, var(--section-alt), rgba(255, 90, 0, 0.08) 28%) 28%, var(--section-alt) 100%);
}

.console-card {
  position: relative;
  overflow: hidden;
  min-height: clamp(300px, 26vw, 380px);
  display: grid;
  place-items: center;
  border-radius: 18px;
  padding: clamp(34px, 5vw, 58px) clamp(18px, 5vw, 64px);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 224, 61, 0.46), transparent 24%),
    radial-gradient(circle at 84% 72%, rgba(255, 47, 0, 0.32), transparent 28%),
    linear-gradient(135deg, #ff4d00, #ff7900 48%, #ffad00);
  box-shadow:
    0 38px 110px rgba(255, 90, 0, 0.28),
    0 0 0 1px rgba(255, 224, 61, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.console-card::before,
.console-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.console-card::before {
  inset: 1px;
  border-radius: 17px;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.console-card::after {
  right: -10%;
  top: -52%;
  width: 46%;
  height: 190%;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent 42%),
    linear-gradient(90deg, transparent, rgba(25, 12, 0, 0.16), transparent);
  transform: rotate(-14deg);
}

.console-card-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 26%, rgba(255, 255, 255, 0.14) 26.2% 26.7%, transparent 27% 100%),
    linear-gradient(155deg, transparent 0 62%, rgba(8, 8, 8, 0.14) 62.2% 64%, transparent 64.2%),
    radial-gradient(circle at 50% 110%, rgba(15, 10, 4, 0.18), transparent 45%);
  opacity: 0.9;
}

.console-card-content {
  position: relative;
  z-index: 3;
  width: min(100%, 980px);
  margin: 0 auto;
  text-align: center;
}

.console-kicker {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.console-platforms {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 auto 22px;
}

.console-platforms span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(4, 4, 5, 0.98), rgba(29, 22, 12, 0.84)),
    #080808;
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.console-platforms i {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--yellow);
  font-size: 23px;
  line-height: 1;
  filter: drop-shadow(0 0 10px rgba(255, 224, 61, 0.3));
}

.console-card h2 {
  max-width: 900px;
  margin: 0 auto 22px;
  color: #fff;
  font-size: clamp(32px, 4.8vw, 62px);
  line-height: 1.03;
  text-transform: uppercase;
  text-shadow: 0 6px 24px rgba(35, 12, 0, 0.22);
}

.console-card p:not(.console-kicker) {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
}

.console-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.console-button {
  min-height: 52px;
  border-color: rgba(255, 255, 255, 0.12);
  background: #101113;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(22, 12, 5, 0.22);
}

.console-button:hover {
  background: #050505;
}

.split,
.about-grid,
.contacts-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.services,
.reviews {
  background:
    linear-gradient(180deg, var(--section-alt) 0%, var(--bg) 16%, var(--bg) 84%, var(--section-alt) 100%),
    radial-gradient(circle at 18% 14%, rgba(255, 90, 0, 0.15), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(255, 224, 61, 0.11), transparent 28%),
    linear-gradient(135deg, rgba(255, 90, 0, 0.055), transparent 44%);
}

.section > .container {
  position: relative;
  z-index: 1;
}

.faq {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--section-alt), var(--bg) 18%) 0%, var(--section-alt) 22%, var(--section-alt) 78%, color-mix(in srgb, var(--section-alt), var(--bg) 20%) 100%);
}

.about {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--section-alt), var(--bg) 18%) 0%, var(--section-alt) 18%, var(--section-alt) 78%, color-mix(in srgb, var(--section-alt), var(--bg) 20%) 100%),
    radial-gradient(circle at 14% 18%, rgba(255, 90, 0, 0.16), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(255, 224, 61, 0.11), transparent 28%);
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 44%, rgba(255, 90, 0, 0.08) 44.4%, transparent 47%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 68px 68px;
  mask-image: linear-gradient(180deg, transparent, black 16%, black 82%, transparent);
  pointer-events: none;
}

.section-heading {
  position: relative;
  max-width: 780px;
  margin-bottom: 42px;
}

.services .section-heading::after,
.reviews .section-heading::after {
  content: "";
  display: block;
  width: 132px;
  height: 4px;
  margin-top: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--yellow), transparent);
  box-shadow: 0 0 28px rgba(255, 90, 0, 0.28);
}

.services-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  max-width: none;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.services-heading::after {
  grid-column: 1;
}

.services-heading h2 {
  max-width: 780px;
}

.services-android-stage {
  position: relative;
  min-height: 330px;
  margin-top: 8px;
  border-radius: 28px;
  isolation: isolate;
}

.services-android-stage::before,
.services-android-stage::after {
  content: "";
  position: absolute;
  inset: 14% 8%;
  z-index: -1;
  border: 1px solid rgba(255, 224, 61, 0.16);
  border-radius: 50%;
  transform: rotate(-18deg);
  background: radial-gradient(circle at 50% 50%, rgba(255, 106, 0, 0.13), transparent 55%);
  filter: blur(0.1px);
}

.services-android-stage::after {
  inset: 24% 0 18%;
  border-color: rgba(255, 106, 0, 0.18);
  transform: rotate(22deg);
}

#servicesAndroidCanvas {
  position: absolute;
  inset: -30px -42px;
  width: calc(100% + 84px);
  height: calc(100% + 60px);
}

.services-android-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--yellow);
  font-size: 118px;
  opacity: 0;
  filter: drop-shadow(0 28px 58px rgba(255, 90, 0, 0.28));
  pointer-events: none;
}

.services-android-stage[data-scene="css-fallback"] .services-android-fallback {
  opacity: 0.92;
  animation: androidFallbackFloat 5s ease-in-out infinite;
}

.row-heading {
  max-width: none;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.6vw, 22px);
  align-items: stretch;
}

.feature {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 336px;
  padding: 28px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 224, 61, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(255, 90, 0, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.026) 52%, rgba(255, 90, 0, 0.06)),
    var(--panel);
  box-shadow: var(--card-glow), 0 18px 60px rgba(255, 90, 0, 0.06);
  transform-style: preserve-3d;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.feature::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(120deg, transparent 0 58%, rgba(255, 90, 0, 0.12) 58% 61%, transparent 61%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(315deg, rgba(255, 224, 61, 0.13), transparent 34%);
  opacity: 0.58;
  pointer-events: none;
}

.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(255, 224, 61, 0.72), rgba(255, 90, 0, 0.34), rgba(255, 255, 255, 0.08));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0.5;
  pointer-events: none;
}

.feature:hover {
  transform: translateY(-9px) rotateX(1.2deg) rotateY(-1.4deg);
  border-color: rgba(255, 90, 0, 0.56);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36), 0 20px 70px rgba(255, 90, 0, 0.18);
}

.feature-highlight {
  grid-column: span 1;
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 224, 61, 0.3), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(255, 90, 0, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 90, 0, 0.18), rgba(255, 255, 255, 0.03)),
    var(--panel);
}

.feature-accent {
  background:
    radial-gradient(circle at 18% 90%, rgba(255, 224, 61, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(255, 90, 0, 0.22), rgba(255, 224, 61, 0.1)),
    var(--panel);
}

.feature h3 {
  position: relative;
  z-index: 1;
  min-height: 2.25em;
}

.feature-chip {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin: -12px 0 18px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 224, 61, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 90, 0, 0.16), rgba(255, 224, 61, 0.08)),
    rgba(255, 255, 255, 0.04);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.feature p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

.feature .text-link {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 22px;
}

.feature p,
.about-copy p,
.review p,
.form-note,
.faq p {
  color: var(--muted);
}

.feature-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
  color: var(--orange);
  font-weight: 900;
}

.feature-icon svg,
.feature-icon i {
  width: 52px;
  height: 52px;
  padding: 11px;
  border: 1px solid rgba(255, 106, 0, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 211, 61, 0.28), transparent 36%),
    rgba(255, 106, 0, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 16px 38px rgba(255, 90, 0, 0.16);
  stroke-width: 1.8;
}

.feature-icon i {
  display: inline-grid;
  place-items: center;
  color: var(--yellow);
  font-size: 27px;
  line-height: 1;
}

.feature-icon small {
  display: inline-grid;
  min-width: 42px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--text);
  font-weight: 900;
}

.about-copy {
  padding-top: 44px;
  font-size: 24px;
}

.about-panel {
  position: sticky;
  top: calc(var(--header-height) + 38px);
  align-self: start;
}

.about-panel .lead {
  max-width: 620px;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.about-system {
  position: relative;
  display: grid;
  gap: 14px;
}

.about-system::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 36px;
  bottom: 126px;
  width: 2px;
  background: linear-gradient(180deg, var(--yellow), var(--orange), transparent);
  box-shadow: 0 0 26px rgba(255, 106, 0, 0.28);
}

.about-system-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  min-height: 156px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 224, 61, 0.13), transparent 25%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.026)),
    var(--panel);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    var(--card-glow);
}

.about-system-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, var(--yellow), var(--orange));
}

.about-system-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -95px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 0, 0.15), transparent 66%);
  pointer-events: none;
}

.about-system-card-wide {
  transform: translateX(-18px);
}

.about-system-accent {
  border-color: rgba(255, 90, 0, 0.32);
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 224, 61, 0.2), transparent 28%),
    linear-gradient(145deg, rgba(255, 90, 0, 0.18), rgba(255, 255, 255, 0.035)),
    var(--panel);
}

.about-system-card i,
.about-system-card svg {
  position: relative;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  padding: 13px;
  border: 1px solid rgba(255, 224, 61, 0.22);
  border-radius: 16px;
  background:
    radial-gradient(circle at 35% 24%, rgba(255, 224, 61, 0.28), transparent 36%),
    rgba(255, 106, 0, 0.1);
  color: var(--yellow);
  font-size: 28px;
  stroke: currentColor;
  stroke-width: 1.8;
  box-shadow: 0 18px 42px rgba(255, 90, 0, 0.13);
}

.about-system-card div {
  position: relative;
  z-index: 1;
}

.about-system-card strong {
  display: block;
  margin-bottom: 9px;
  color: var(--text);
  font-family: var(--heading-font);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.08;
}

.about-system-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.about-card-index {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(255, 224, 61, 0.42);
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 6px;
}

.about-metrics span {
  display: grid;
  gap: 4px;
  min-height: 98px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.024)),
    var(--panel-2);
}

.about-metrics strong {
  color: var(--yellow);
  font-family: var(--heading-font);
  font-size: 32px;
  line-height: 1;
}

.about-metrics small {
  color: var(--muted);
  font-weight: 800;
}

.partners {
  background:
    linear-gradient(180deg, var(--section-alt) 0%, var(--bg) 14%, var(--bg) 86%, var(--section-alt) 100%),
    radial-gradient(circle at 14% 16%, rgba(255, 90, 0, 0.22), transparent 27%),
    radial-gradient(circle at 82% 22%, rgba(255, 224, 61, 0.11), transparent 30%),
    linear-gradient(135deg, rgba(255, 90, 0, 0.08), transparent 45%);
}

.partners::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 106, 0, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(180deg, transparent, black 20%, black 78%, transparent);
  pointer-events: none;
}

.partners-showcase {
  display: grid;
  grid-template-columns: minmax(360px, 0.96fr) minmax(0, 1.04fr);
  gap: 22px;
  align-items: stretch;
}

.partner-feature {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 560px;
  padding: 40px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 13%, rgba(255, 224, 61, 0.26), transparent 28%),
    radial-gradient(circle at 92% 88%, rgba(255, 47, 0, 0.28), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.024)),
    var(--panel);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    var(--card-glow),
    0 26px 95px rgba(255, 90, 0, 0.12);
}

.partner-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 46%, rgba(255, 106, 0, 0.18) 46.4%, transparent 48%),
    linear-gradient(90deg, rgba(255, 224, 61, 0.06) 1px, transparent 1px);
  background-size: auto, 48px 100%;
  opacity: 0.8;
  pointer-events: none;
}

.partner-feature::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 211, 61, 0.16);
  border-radius: 14px;
  pointer-events: none;
}

.partner-feature-label {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 9px 13px;
  border: 1px solid rgba(255, 224, 61, 0.24);
  border-radius: 999px;
  background: rgba(255, 224, 61, 0.08);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-feature h3 {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 34px 0 18px;
  font-size: clamp(31px, 3.3vw, 48px);
  line-height: 1.04;
}

.partner-feature p {
  position: relative;
  z-index: 1;
  max-width: 540px;
  color: var(--muted);
  font-size: 18px;
}

.partner-feature-visual {
  position: relative;
  z-index: 1;
  min-height: 176px;
  margin: 28px 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 224, 61, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.26), rgba(255, 106, 0, 0.075));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.partner-feature-visual::before,
.partner-feature-visual::after {
  content: "";
  position: absolute;
  inset: 34px 42px;
  border: 1px solid rgba(255, 224, 61, 0.2);
  border-radius: 50%;
  transform: rotate(-10deg);
}

.partner-feature-visual::after {
  inset: 54px 78px;
  border-color: rgba(255, 106, 0, 0.24);
  transform: rotate(15deg);
}

.partner-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  gap: 7px;
  place-items: center;
  transform: translate(-50%, -50%);
}

.partner-core-mark {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid rgba(255, 224, 61, 0.42);
  border-radius: 18px;
  background: linear-gradient(145deg, var(--orange), var(--yellow));
  color: #090909;
  font-family: var(--heading-font);
  font-size: 34px;
  font-weight: 950;
  box-shadow:
    0 18px 45px rgba(255, 90, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.partner-core small {
  color: var(--text);
  font-weight: 900;
}

.partner-node {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.partner-node i {
  color: var(--yellow);
}

.node-play {
  left: 28px;
  top: 24px;
}

.node-store {
  right: 28px;
  top: 28px;
}

.node-qa {
  left: 44px;
  bottom: 28px;
}

.node-aso {
  right: 54px;
  bottom: 24px;
}

.partner-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.partner-stats span {
  display: grid;
  gap: 2px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.24);
}

.partner-stats strong {
  color: var(--yellow);
  font-size: 24px;
}

.partner-stats small {
  color: var(--muted);
}

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

.partner-grid span {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 124px;
  align-items: end;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 224, 61, 0.13), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.024)),
    var(--panel);
  color: var(--text);
  font-size: 16px;
  font-weight: 950;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    var(--card-glow);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.partner-grid span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, var(--yellow), var(--orange));
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.35);
}

.partner-grid span::after {
  content: "";
  position: absolute;
  right: -22%;
  bottom: -45%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.14), transparent 64%);
  pointer-events: none;
}

.partner-grid small {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(255, 224, 61, 0.42);
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
}

.partner-grid span:hover {
  transform: translateY(-7px) rotateX(3deg);
  border-color: rgba(255, 90, 0, 0.5);
  box-shadow:
    0 34px 88px rgba(0, 0, 0, 0.3),
    0 24px 78px rgba(255, 90, 0, 0.16);
}

.partner-grid svg {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  padding: 8px;
  border: 1px solid rgba(255, 224, 61, 0.22);
  border-radius: 12px;
  color: var(--orange);
  background: rgba(255, 106, 0, 0.1);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.reviews-showcase {
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1.14fr);
  gap: 24px;
  align-items: stretch;
}

.reviews-carousel {
  position: relative;
}

.review-slider-shell {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 106, 0, 0.18), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(255, 224, 61, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.018);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 32px 90px rgba(0, 0, 0, 0.28),
    0 18px 80px rgba(255, 90, 0, 0.08);
}

.review-slider-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 106, 0, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 40%, black, transparent 76%);
  opacity: 0.45;
  pointer-events: none;
}

.review-slider-head {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  padding: 0 4px;
}

.review-slider-head span {
  color: var(--text);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-slider-head small {
  color: var(--orange);
  font-size: 12px;
  font-weight: 850;
}

.review-carousel-window {
  position: relative;
  overflow: hidden;
  min-height: 414px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 224, 61, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.24), rgba(255, 90, 0, 0.06)),
    rgba(0, 0, 0, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.review-carousel-window::before,
.review-carousel-window::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 120px;
  height: 100%;
  pointer-events: none;
}

.review-carousel-window::before {
  left: 0;
  background: linear-gradient(90deg, rgba(6, 6, 6, 0.96), transparent);
}

.review-carousel-window::after {
  right: 0;
  background: linear-gradient(270deg, rgba(6, 6, 6, 0.96), transparent);
}

.review-track {
  display: flex;
  width: max-content;
  min-height: 100%;
  gap: 16px;
  padding: 26px 24px;
  animation: reviewsSlideRtl 28s linear infinite;
}

.review-carousel-window:hover .review-track {
  animation-play-state: paused;
}

.review {
  position: relative;
  overflow: hidden;
  display: flex;
  width: 348px;
  min-height: 362px;
  padding: 30px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background:
    radial-gradient(circle at 84% 10%, rgba(255, 224, 61, 0.2), transparent 27%),
    radial-gradient(circle at 15% 96%, rgba(255, 90, 0, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.03)),
    var(--panel-2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    var(--card-glow),
    0 16px 54px rgba(255, 90, 0, 0.07);
  flex: 0 0 348px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.review:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 90, 0, 0.38);
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.34), 0 18px 62px rgba(255, 90, 0, 0.12);
}

.review::after {
  content: "";
  position: absolute;
  right: -18%;
  top: -30%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.13), transparent 64%);
  pointer-events: none;
}

.review-card-index {
  position: absolute;
  top: 22px;
  right: 24px;
  z-index: 1;
  color: rgba(255, 224, 61, 0.48);
  font-family: var(--heading-font);
  font-size: 34px;
  font-weight: 950;
  line-height: 1;
}

.review-feature {
  width: auto;
  flex: initial;
  min-height: 500px;
  padding: 36px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 224, 61, 0.32), transparent 30%),
    radial-gradient(circle at 88% 88%, rgba(255, 47, 0, 0.28), transparent 35%),
    linear-gradient(145deg, rgba(255, 90, 0, 0.28), rgba(255, 255, 255, 0.045)),
    var(--panel);
}

.review-feature::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 224, 61, 0.13);
  border-radius: 14px;
  pointer-events: none;
}

.review-feature-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.review-verified {
  width: fit-content;
  padding: 9px 12px;
  border: 1px solid rgba(255, 224, 61, 0.22);
  border-radius: 999px;
  background: rgba(255, 224, 61, 0.08);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-feature p {
  margin: 48px 0 34px;
  color: var(--text);
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.16;
  font-weight: 900;
}

.review-rating {
  display: flex;
  gap: 6px;
  color: var(--yellow);
}

.review-rating svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  stroke: currentColor;
}

.review-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 28px 0 22px;
}

.review-metrics span {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.22);
}

.review-metrics strong {
  color: var(--text);
  font-family: var(--heading-font);
  font-size: 22px;
  line-height: 1;
}

.review-metrics small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.review-feature-cta {
  position: relative;
  z-index: 1;
  width: fit-content;
}

.review-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 30px;
}

.review-topline span {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(255, 106, 0, 0.22);
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.07);
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.review-icon {
  width: 26px;
  height: 26px;
  color: var(--yellow);
  stroke-width: 1.8;
}

.review-avatar {
  position: relative;
  z-index: 1;
  display: grid;
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
  place-items: center;
  border: 1px solid rgba(255, 90, 0, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 24%, rgba(255, 224, 61, 0.34), transparent 36%),
    linear-gradient(135deg, rgba(255, 90, 0, 0.16), rgba(255, 255, 255, 0.06));
  box-shadow:
    0 18px 42px rgba(255, 90, 0, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.review-avatar::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 5px;
  width: 13px;
  height: 13px;
  border: 2px solid var(--panel-2);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
}

.review-avatar img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.18));
}

.review p {
  position: relative;
  z-index: 1;
  font-size: 20px;
}

.review-person {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
  margin-top: 26px;
}

.review-person span {
  color: var(--orange);
  font-weight: 900;
}

.review-person small {
  color: var(--muted);
}

.review-dots {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.review-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.review-dots .is-active {
  width: 28px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}

.review-proof {
  min-height: 210px;
  background:
    radial-gradient(circle at 84% 28%, rgba(255, 224, 61, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255, 90, 0, 0.16), rgba(255, 255, 255, 0.026)),
    var(--panel);
}

.review-proof strong {
  position: relative;
  z-index: 1;
  color: var(--yellow);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(54px, 7vw, 86px);
  line-height: 0.9;
}

.review-proof p {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--lead);
}

.faq-list {
  counter-reset: faq;
  display: grid;
  gap: 14px;
}

.faq-list details {
  position: relative;
  overflow: hidden;
  counter-increment: faq;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.024)),
    var(--panel);
  box-shadow: var(--card-glow);
}

.faq-list details::before {
  content: counter(faq, decimal-leading-zero);
  position: absolute;
  left: 20px;
  top: 20px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 106, 0, 0.22);
  border-radius: 50%;
  background: rgba(255, 106, 0, 0.08);
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.faq-list summary {
  position: relative;
  list-style: none;
  min-height: 82px;
  padding: 24px 62px 22px 78px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
}

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

.faq-list summary::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    linear-gradient(var(--orange), var(--orange)) center / 14px 2px no-repeat,
    linear-gradient(var(--orange), var(--orange)) center / 2px 14px no-repeat,
    rgba(255, 255, 255, 0.04);
  transform: translateY(-50%) rotate(0deg);
  transition: transform 180ms ease, background 180ms ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  background:
    linear-gradient(#150b03, #150b03) center / 14px 2px no-repeat,
    linear-gradient(#150b03, #150b03) center / 2px 14px no-repeat,
    linear-gradient(135deg, var(--orange), var(--yellow));
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px 78px;
  font-size: 17px;
  line-height: 1.6;
}

.faq-support-card {
  display: grid;
  gap: 16px;
  margin-top: 34px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 18%, rgba(255, 211, 61, 0.14), transparent 30%),
    linear-gradient(145deg, rgba(255, 106, 0, 0.12), rgba(255, 255, 255, 0.026)),
    var(--panel);
  box-shadow: var(--card-glow);
}

.faq-support-card span {
  color: var(--orange);
  font-weight: 900;
}

.faq-support-card p {
  margin: 0;
  color: var(--muted);
}

.contacts {
  background:
    radial-gradient(circle at 16% 25%, rgba(255, 106, 0, 0.14), transparent 34%),
    var(--bg);
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 40px;
}

.contact-list a {
  display: grid;
  gap: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 22px;
  font-weight: 900;
}

.contact-list span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.contact-lead {
  margin-bottom: 0;
}

.telegram-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 211, 61, 0.18), transparent 30%),
    radial-gradient(circle at 16% 90%, rgba(255, 106, 0, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.024)),
    var(--panel);
  box-shadow: var(--card-glow);
}

.telegram-card::after {
  content: "";
  position: absolute;
  right: -16%;
  bottom: -38%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.16), transparent 66%);
  pointer-events: none;
}

.telegram-card-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px solid rgba(255, 106, 0, 0.26);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 211, 61, 0.32), transparent 38%),
    rgba(255, 106, 0, 0.1);
  color: var(--orange);
  box-shadow: 0 18px 48px rgba(255, 106, 0, 0.14);
}

.telegram-card-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.telegram-card > div,
.telegram-card > a {
  position: relative;
  z-index: 1;
}

.telegram-label {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.telegram-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.telegram-card p {
  margin: 0;
  color: var(--muted);
}

.telegram-card .button {
  grid-column: 1 / -1;
  width: fit-content;
}

.form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--card-glow);
}

.form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--input-bg);
  color: var(--text);
  padding: 15px 16px;
  outline: none;
}

.form input:focus,
.form textarea:focus {
  border-color: rgba(255, 106, 0, 0.74);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
}

.form-note {
  margin-bottom: 0;
  font-size: 13px;
}

.cookie {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(calc(100% - 32px), 720px);
  padding: 18px 18px 18px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  box-shadow: var(--soft-shadow);
  transform: translateX(-50%);
}

.cookie::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(var(--yellow), var(--orange));
}

.cookie p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.45;
}

.cookie.is-hidden {
  display: none;
}

.footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  background: var(--footer-bg);
}

.footer-inner,
.footer nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-inner {
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.21, 0.8, 0.25, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fallbackDrift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-18px, -10px, 0) scale(1.04);
  }
}

@keyframes insightFloat {
  0%,
  100% {
    transform: rotateY(10deg) rotateX(3deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotateY(7deg) rotateX(4deg) translate3d(0, -8px, 22px);
  }
}

@keyframes reviewsSlideRtl {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-1.5px) rotate(-1deg);
  }
}

@keyframes logoGlow {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.96);
  }

  50% {
    opacity: 0.82;
    transform: scale(1.04);
  }
}

@keyframes logoImagePulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 3px 8px rgba(255, 106, 0, 0.24));
  }

  50% {
    transform: scale(1.015);
    filter: drop-shadow(0 4px 11px rgba(255, 106, 0, 0.34));
  }
}

@keyframes androidFallbackFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }

  50% {
    transform: translateY(-12px) rotate(4deg);
  }
}

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

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

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

:root[data-theme="light"] .partners .partner-feature,
:root[data-theme="light"] .partners .partner-grid span {
  border-color: rgba(24, 26, 30, 0.28);
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 174, 0, 0.18), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, #f6f0e5 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 22px 58px rgba(24, 26, 30, 0.18);
}

:root[data-theme="light"] .partners .partner-grid small {
  color: rgba(201, 86, 0, 0.64);
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme]) .partners .partner-feature,
  :root:not([data-theme]) .partners .partner-grid span {
    border-color: rgba(24, 26, 30, 0.28);
    background:
      radial-gradient(circle at 84% 18%, rgba(255, 174, 0, 0.18), transparent 28%),
      linear-gradient(145deg, #ffffff 0%, #f6f0e5 100%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.92),
      0 22px 58px rgba(24, 26, 30, 0.18);
  }

  :root:not([data-theme]) .partners .partner-grid small {
    color: rgba(201, 86, 0, 0.64);
  }
}

:root[data-theme="light"] .services .feature,
:root[data-theme="light"] .about .about-system-card,
:root[data-theme="light"] .about .about-metrics span,
:root[data-theme="light"] .reviews .review,
:root[data-theme="light"] .reviews .review-feature,
:root[data-theme="light"] .faq .faq-list details,
:root[data-theme="light"] .contacts .telegram-card,
:root[data-theme="light"] .contacts .form {
  border-color: rgba(24, 26, 30, 0.28);
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 174, 0, 0.18), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, #f5efe5 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 22px 58px rgba(24, 26, 30, 0.17);
}

:root[data-theme="light"] .reviews .review-slider-shell {
  border-color: rgba(24, 26, 30, 0.22);
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 106, 0, 0.14), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(255, 224, 61, 0.16), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #eceff5 100%);
  box-shadow: 0 24px 68px rgba(24, 26, 30, 0.16);
}

:root[data-theme="light"] .reviews .review-carousel-window {
  border-color: rgba(24, 26, 30, 0.16);
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 174, 0, 0.13), transparent 28%),
    linear-gradient(135deg, #f8fafc, #fff3de);
}

:root[data-theme="light"] .feature::after,
:root[data-theme="light"] .about-system-card::after,
:root[data-theme="light"] .review::after,
:root[data-theme="light"] .telegram-card::after {
  opacity: 0.62;
}

:root[data-theme="light"] .feature-icon small,
:root[data-theme="light"] .review-card-index,
:root[data-theme="light"] .about-card-index {
  color: rgba(201, 86, 0, 0.66);
}

:root[data-theme="light"] .feature h3,
:root[data-theme="light"] .about-system-card strong,
:root[data-theme="light"] .review-person span,
:root[data-theme="light"] .faq-list summary,
:root[data-theme="light"] .telegram-card strong {
  color: #08090b;
}

:root[data-theme="light"] .services .section-heading::after,
:root[data-theme="light"] .reviews .section-heading::after {
  background: linear-gradient(90deg, #ff5a00, #d69a00, rgba(214, 154, 0, 0.12));
  box-shadow: 0 0 22px rgba(214, 92, 0, 0.22);
}

:root[data-theme="light"] .review-metrics span {
  border-color: rgba(24, 26, 30, 0.14);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 30px rgba(24, 26, 30, 0.08);
}

:root[data-theme="light"] .faq-list details::before {
  left: 22px;
  top: 24px;
  width: 44px;
  height: 30px;
  border-color: rgba(214, 92, 0, 0.28);
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.11);
  color: #b84100;
  box-shadow: none;
}

:root[data-theme="light"] .faq-list summary {
  padding-left: 92px;
}

:root[data-theme="light"] .faq-list p {
  padding-left: 92px;
  color: #343a44;
}

:root[data-theme="light"] .faq-list summary::after {
  border-color: rgba(24, 26, 30, 0.24);
  background:
    linear-gradient(#e15400, #e15400) center / 14px 2px no-repeat,
    linear-gradient(#e15400, #e15400) center / 2px 14px no-repeat,
    rgba(255, 255, 255, 0.64);
  box-shadow: 0 8px 20px rgba(24, 26, 30, 0.09);
}

:root[data-theme="light"] .faq-list details[open] summary::after {
  background:
    linear-gradient(#101113, #101113) center / 14px 2px no-repeat,
    linear-gradient(#101113, #101113) center / 2px 14px no-repeat,
    linear-gradient(135deg, #ff7a00, #ffd33d);
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme]) .services .feature,
  :root:not([data-theme]) .about .about-system-card,
  :root:not([data-theme]) .about .about-metrics span,
  :root:not([data-theme]) .reviews .review,
  :root:not([data-theme]) .reviews .review-feature,
  :root:not([data-theme]) .faq .faq-list details,
  :root:not([data-theme]) .contacts .telegram-card,
  :root:not([data-theme]) .contacts .form {
    border-color: rgba(24, 26, 30, 0.28);
    background:
      radial-gradient(circle at 84% 16%, rgba(255, 174, 0, 0.18), transparent 28%),
      linear-gradient(145deg, #ffffff 0%, #f5efe5 100%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.94),
      0 22px 58px rgba(24, 26, 30, 0.17);
  }

  :root:not([data-theme]) .reviews .review-slider-shell {
    border-color: rgba(24, 26, 30, 0.22);
    background:
      radial-gradient(circle at 16% 12%, rgba(255, 106, 0, 0.14), transparent 34%),
      radial-gradient(circle at 86% 18%, rgba(255, 224, 61, 0.16), transparent 30%),
      linear-gradient(135deg, #ffffff 0%, #eceff5 100%);
    box-shadow: 0 24px 68px rgba(24, 26, 30, 0.16);
  }

  :root:not([data-theme]) .reviews .review-carousel-window {
    border-color: rgba(24, 26, 30, 0.16);
    background:
      radial-gradient(circle at 80% 10%, rgba(255, 174, 0, 0.13), transparent 28%),
      linear-gradient(135deg, #f8fafc, #fff3de);
  }

  :root:not([data-theme]) .feature::after,
  :root:not([data-theme]) .about-system-card::after,
  :root:not([data-theme]) .review::after,
  :root:not([data-theme]) .telegram-card::after {
    opacity: 0.62;
  }

  :root:not([data-theme]) .feature-icon small,
  :root:not([data-theme]) .review-card-index,
  :root:not([data-theme]) .about-card-index {
    color: rgba(201, 86, 0, 0.66);
  }

  :root:not([data-theme]) .feature h3,
  :root:not([data-theme]) .about-system-card strong,
  :root:not([data-theme]) .review-person span,
  :root:not([data-theme]) .faq-list summary,
  :root:not([data-theme]) .telegram-card strong {
    color: #08090b;
  }

  :root:not([data-theme]) .services .section-heading::after,
  :root:not([data-theme]) .reviews .section-heading::after {
    background: linear-gradient(90deg, #ff5a00, #d69a00, rgba(214, 154, 0, 0.12));
    box-shadow: 0 0 22px rgba(214, 92, 0, 0.22);
  }

  :root:not([data-theme]) .review-metrics span {
    border-color: rgba(24, 26, 30, 0.14);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 12px 30px rgba(24, 26, 30, 0.08);
  }

  :root:not([data-theme]) .faq-list details::before {
    left: 22px;
    top: 24px;
    width: 44px;
    height: 30px;
    border-color: rgba(214, 92, 0, 0.28);
    border-radius: 999px;
    background: rgba(255, 106, 0, 0.11);
    color: #b84100;
    box-shadow: none;
  }

  :root:not([data-theme]) .faq-list summary {
    padding-left: 92px;
  }

  :root:not([data-theme]) .faq-list p {
    padding-left: 92px;
    color: #343a44;
  }

  :root:not([data-theme]) .faq-list summary::after {
    border-color: rgba(24, 26, 30, 0.24);
    background:
      linear-gradient(#e15400, #e15400) center / 14px 2px no-repeat,
      linear-gradient(#e15400, #e15400) center / 2px 14px no-repeat,
      rgba(255, 255, 255, 0.64);
    box-shadow: 0 8px 20px rgba(24, 26, 30, 0.09);
  }

  :root:not([data-theme]) .faq-list details[open] summary::after {
    background:
      linear-gradient(#101113, #101113) center / 14px 2px no-repeat,
      linear-gradient(#101113, #101113) center / 2px 14px no-repeat,
      linear-gradient(135deg, #ff7a00, #ffd33d);
  }
}

@media (min-width: 1440px) {
  .site-header {
    inset-inline: max(24px, calc((100vw - 1360px) / 2));
  }
}

@media (max-width: 1180px) {
  .site-header {
    gap: 14px;
  }

  .header-actions {
    gap: 8px;
  }

  .button {
    padding-inline: 16px;
  }

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

  .hero-copy {
    max-width: min(620px, 45vw);
  }

  .hero-insights {
    left: auto;
    right: clamp(120px, 20vw, 240px);
    top: 30%;
    bottom: auto;
    width: min(300px, 28vw);
  }

  .feature {
    padding: 24px;
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
    inset: 12px 12px auto;
    gap: 0;
    padding: 10px;
    max-height: none;
    overflow: visible;
  }

  .brand {
    min-width: 0;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
    width: 46px;
    height: 46px;
  }

  .nav,
  .header-actions {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .site-header.is-open .nav,
  .site-header.is-open .header-actions {
    display: flex;
    justify-self: stretch;
    opacity: 1;
    pointer-events: auto;
  }

  .site-header.is-open {
    max-height: calc(100svh - 24px);
    overflow-y: auto;
  }

  .site-header.is-open .nav {
    flex-direction: column;
    gap: 0;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    white-space: normal;
  }

  .site-header.is-open .nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 4px;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    font-size: 20px;
    font-weight: 800;
  }

  .site-header.is-open .nav a::after {
    content: "";
    width: 9px;
    height: 9px;
    margin-left: auto;
    border-top: 2px solid var(--orange);
    border-right: 2px solid var(--orange);
    transform: rotate(45deg);
  }

  .site-header.is-open .header-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 52px;
    gap: 10px;
    margin-top: 14px;
  }

  .site-header.is-open .header-actions .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .site-header.is-open .language-switch {
    width: 100%;
  }

  .site-header.is-open .language-switch button {
    flex: 1 1 0;
  }

  .site-header.is-open .theme-toggle {
    width: 52px;
    height: 46px;
  }

  .hero-grid,
  .about-grid,
  .contacts-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .about-panel {
    position: relative;
    top: auto;
  }

  .about-system-card-wide {
    transform: none;
  }

  .hero-grid {
    align-items: start;
  }

  .hero-copy {
    max-width: min(540px, 44vw);
  }

  .hero-insights {
    left: auto;
    right: clamp(110px, 18vw, 220px);
    top: 31%;
    bottom: auto;
    width: min(280px, 28vw);
  }

  .feature-grid,
  .reviews-showcase {
    grid-template-columns: 1fr;
  }

  .services-heading {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
    gap: 28px;
  }

  .services-android-stage {
    min-height: 250px;
  }

  .review-feature,
  .review-slider-shell {
    min-height: auto;
  }

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

  .partners-showcase {
    grid-template-columns: 1fr;
  }

  .partner-feature {
    min-height: auto;
  }

  .partner-feature-visual {
    min-height: 210px;
  }
}

@media (max-width: 820px) {
  .hero {
    display: block;
    padding-bottom: 64px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-insights {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    margin: 34px auto 0;
  }

  .hero-insight {
    min-height: 88px;
    padding: 18px 20px 18px 22px;
  }

  .hero-insight:nth-child(2),
  .hero-insight:nth-child(3) {
    margin-left: 0;
  }

  .hero-insight span {
    font-size: 25px;
  }

  .console-card {
    min-height: 300px;
    border-radius: 14px;
  }

  .console-card::before {
    border-radius: 13px;
  }

  .feature-grid,
  .reviews-showcase,
  .partners-showcase,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .services-heading {
    grid-template-columns: 1fr;
  }

  .services-heading::after {
    grid-column: auto;
  }

  .services-android-stage {
    display: none;
  }

  .partner-feature {
    min-height: auto;
  }

  .partner-feature h3 {
    margin-top: 28px;
  }

  .partner-feature-visual {
    min-height: 240px;
  }

  .partner-node {
    font-size: 12px;
  }

  .about-copy {
    padding-top: 0;
    font-size: 20px;
  }

  .about-actions {
    display: grid;
  }

  .row-heading {
    display: block;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .section {
    padding: 70px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 126px;
    padding-bottom: 58px;
  }

  .hero-bg {
    background:
      var(--hero-mobile-overlay),
      radial-gradient(circle at 72% 16%, rgba(255, 106, 0, 0.3), transparent 28%),
      radial-gradient(circle at 84% 24%, rgba(255, 211, 61, 0.16), transparent 28%),
      linear-gradient(135deg, var(--scene-bg-one), var(--scene-bg-two));
  }

  .hero-insights {
    width: 100%;
    max-width: 100%;
    gap: 10px;
    margin-top: 32px;
  }

  .hero-insight {
    min-height: 84px;
    padding: 18px 20px 18px 22px;
    border-radius: 12px;
    transform: none;
    animation: none;
  }

  .hero-insight:nth-child(2),
  .hero-insight:nth-child(3) {
    margin-left: 0;
  }

  .hero-insight span {
    font-size: 24px;
  }

  .hero-insight small {
    font-size: 14px;
  }

  h1 {
    font-size: clamp(34px, 11vw, 42px);
  }

  h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .lead {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    max-width: min(100%, 320px);
    gap: 12px;
    margin-bottom: 0;
  }

  .hero-buttons .button {
    width: 100%;
    min-height: 44px;
    padding-inline: 16px;
    white-space: nowrap;
  }

  .console-cta {
    padding: 34px 0 56px;
  }

  .console-card {
    min-height: 360px;
    padding: 34px 0;
  }

  .console-card h2 {
    font-size: clamp(30px, 9vw, 44px);
  }

  .console-card p:not(.console-kicker) {
    font-size: 18px;
  }

  .console-actions {
    display: grid;
    width: min(100%, 320px);
    margin: 0 auto;
  }

  .services-android-stage {
    min-height: 210px;
    max-width: 280px;
    margin-top: -22px;
  }

  #servicesAndroidCanvas {
    inset: -22px -28px;
    width: calc(100% + 56px);
    height: calc(100% + 44px);
  }

  .feature-grid,
  .footer-inner,
  .footer nav {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .row-heading {
    display: block;
  }

  .feature,
  .review,
  .form,
  .telegram-card {
    padding: 22px;
  }

  .about-system::before {
    left: 27px;
    bottom: 100px;
  }

  .about-system-card {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    min-height: auto;
    padding: 22px;
  }

  .about-system-card i,
  .about-system-card svg {
    width: 54px;
    height: 54px;
    border-radius: 14px;
  }

  .about-card-index {
    top: 16px;
    right: 18px;
    font-size: 22px;
  }

  .about-metrics {
    grid-template-columns: 1fr;
  }

  .partner-feature {
    padding: 24px;
  }

  .partner-feature-visual {
    min-height: 260px;
    margin-top: 22px;
  }

  .partner-feature-visual::before {
    inset: 46px 24px;
  }

  .partner-feature-visual::after {
    inset: 76px 44px;
  }

  .partner-core-mark {
    width: 58px;
    height: 58px;
    border-radius: 15px;
    font-size: 29px;
  }

  .partner-node {
    min-height: 34px;
    padding: 7px 9px;
  }

  .node-play {
    left: 12px;
    top: 18px;
  }

  .node-store {
    right: 12px;
    top: 58px;
  }

  .node-qa {
    left: 18px;
    bottom: 56px;
  }

  .node-aso {
    right: 24px;
    bottom: 18px;
  }

  .partner-stats {
    grid-template-columns: 1fr;
  }

  .review-carousel-window {
    min-height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .review-carousel-window::before,
  .review-carousel-window::after {
    display: none;
  }

  .review-track {
    gap: 12px;
    padding: 16px;
    animation: none;
  }

  .review {
    width: min(82vw, 292px);
    min-height: 292px;
    flex-basis: min(82vw, 292px);
    scroll-snap-align: start;
  }

  .review[aria-hidden="true"] {
    display: none;
  }

  .review-feature {
    width: 100%;
    min-height: auto;
    padding: 24px;
    flex-basis: auto;
  }

  .review-feature-top,
  .review-slider-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-feature p {
    font-size: clamp(18px, 5.4vw, 24px);
    line-height: 1.2;
    margin: 34px 0 24px;
  }

  .review-metrics {
    grid-template-columns: 1fr;
  }

  .review-slider-shell {
    padding: 14px;
    border-radius: 16px;
  }

  .review-slider-head small {
    display: none;
  }

  .review-dots {
    display: none;
  }

  .review-feature-cta {
    width: 100%;
  }

  :root[data-theme="light"] .faq-list summary,
  :root:not([data-theme]) .faq-list summary {
    padding-left: 78px;
  }

  :root[data-theme="light"] .faq-list p,
  :root:not([data-theme]) .faq-list p {
    padding-left: 78px;
  }

  .feature {
    min-height: auto;
  }

  .partner-grid span {
    min-height: 108px;
    padding: 18px;
  }

  .feature-icon {
    margin-bottom: 34px;
  }

  .contact-list a {
    font-size: 18px;
  }

  .cookie {
    width: calc(100% - 24px);
    bottom: 12px;
    left: 50%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }

  .cookie .button {
    min-height: 44px;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding: 10px;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
  }

  .animated-logo img {
    width: 100%;
    height: 100%;
  }

  .brand-word {
    font-size: 14px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-buttons {
    margin-top: 28px;
  }

  .partner-grid span {
    min-height: 76px;
  }

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

  .faq-list details::before {
    left: 16px;
    top: 18px;
    width: 34px;
    height: 34px;
  }

  .faq-list summary {
    padding: 20px 58px 18px 62px;
  }

  .faq-list p {
    padding: 0 20px 20px 62px;
  }

  .telegram-card {
    grid-template-columns: 1fr;
  }

  .telegram-card-icon {
    width: 64px;
    height: 64px;
  }

  .telegram-card .button {
    width: 100%;
  }
}
