:root {
  color-scheme: dark;
  --bg: #070a14;
  --bg2: #0b1020;
  --text: #e8ecff;
  --muted: rgba(232, 236, 255, 0.76);
  --muted2: rgba(232, 236, 255, 0.62);
  --line: rgba(255, 255, 255, 0.08);
  --line2: rgba(255, 255, 255, 0.12);

  --brand: #8a7dff;
  --brand2: #29d6ff;
  --good: #44ffb2;

  --r12: 12px;
  --r16: 16px;
  --r20: 20px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --shadow2: 0 10px 30px rgba(0, 0, 0, 0.35);

  --container: 1120px;
  --pad: 20px;

  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(1200px 700px at 15% -10%, rgba(138, 125, 255, 0.35), transparent 60%),
    radial-gradient(900px 500px at 85% 0%, rgba(41, 214, 255, 0.25), transparent 55%),
    radial-gradient(900px 700px at 60% 110%, rgba(68, 255, 178, 0.12), transparent 60%), linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
}

a {
  color: inherit;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.app {
  min-height: 100vh;
  overflow-x: clip;
}

.skipLink {
  position: absolute;
  left: 12px;
  top: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line2);
  color: var(--text);
  text-decoration: none;
  transform: translateY(-120%);
  transition: transform 180ms ease;
  z-index: 9999;
}
.skipLink:focus {
  transform: translateY(0);
  outline: none;
  box-shadow: 0 0 0 4px rgba(41, 214, 255, 0.25);
}

.h1 {
  margin: 0;
  font-size: clamp(36px, 5.2vw, 62px);
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.h2 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.12;
}
.h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.lead {
  margin: 16px 0 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.muted {
  color: var(--muted);
}
.code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;
  padding: 2px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.gradText {
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(7, 10, 20, 0.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.headerInner {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  user-select: none;
}
.brandLogo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: contain;
  flex-shrink: 0;
}
.brandMark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(140deg, rgba(138, 125, 255, 0.4), rgba(41, 214, 255, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 50px rgba(41, 214, 255, 0.12);
}
.brandText {
  font-weight: 650;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}
.navLink {
  padding: 8px 10px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--muted);
  font-size: 13px;
  transition: background 180ms ease, color 180ms ease;
}
.navLink:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}
.navLink:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(41, 214, 255, 0.22);
}
.navLink.active {
  background: rgba(138, 125, 255, 0.18);
  color: var(--text);
  border: 1px solid rgba(138, 125, 255, 0.22);
}

.headerCtas {
  display: flex;
  gap: 10px;
}

.btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 650;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(41, 214, 255, 0.22);
}
.btn:active {
  transform: translateY(1px);
}
.btn.primary {
  background: linear-gradient(90deg, rgba(138, 125, 255, 1), rgba(41, 214, 255, 1));
  color: #071018;
  box-shadow: 0 20px 60px rgba(41, 214, 255, 0.18);
}
.btn.primary:hover {
  box-shadow: 0 24px 70px rgba(41, 214, 255, 0.23);
}
.btn.secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text);
}
.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}
.btn.ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text);
}
.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.hero {
  position: relative;
  padding: 58px 0 10px;
}
.hero .container {
  display: flex;
  justify-content: center;
}
.heroInner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: start;
  padding: 34px 0 30px;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.heroBg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.grid {
  position: absolute;
  inset: -40px -40px 0 -40px;
  opacity: 0.28;
  transform: translateY(var(--parallax-y, 0px));
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(70% 65% at 50% 10%, rgba(0, 0, 0, 1), transparent 72%);
}
.noise {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27120%27 height=%27120%27%3E%3Cfilter id=%27n%27%3E%3CfeTurbulence type=%27fractalNoise%27 baseFrequency=%27.7%27 numOctaves=%272%27 stitchTiles=%27stitch%27/%3E%3C/filter%3E%3Crect width=%27120%27 height=%27120%27 filter=%27url%28%23n%29%27 opacity=%27.35%27/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.orb {
  position: absolute;
  width: 540px;
  height: 540px;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.8;
  transform: translateY(var(--parallax-y, 0px));
}
.orbA {
  left: -220px;
  top: -210px;
  background: radial-gradient(circle at 30% 30%, rgba(138, 125, 255, 0.75), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(41, 214, 255, 0.5), transparent 55%);
}
.orbB {
  right: -240px;
  top: -90px;
  background: radial-gradient(circle at 30% 30%, rgba(41, 214, 255, 0.6), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(68, 255, 178, 0.28), transparent 55%);
}

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.heroLeft {
  text-align: center;
}
.heroLeft .kicker {
  justify-content: center;
}
.heroLeft .lead {
  margin-left: auto;
  margin-right: auto;
}
.heroButtons {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.heroStats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.stat {
  padding: 14px 14px;
  border-radius: var(--r16);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}
.statValue {
  font-weight: 720;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.statLabel {
  margin-top: 4px;
  color: var(--muted2);
  font-size: 12px;
}

.card {
  border-radius: var(--r20);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow2);
  backdrop-filter: blur(14px);
}

.heroCard {
  padding: 16px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}
.heroCard:before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(700px 220px at 30% 0%, rgba(138, 125, 255, 0.24), transparent 50%),
    radial-gradient(700px 220px at 70% 0%, rgba(41, 214, 255, 0.18), transparent 52%);
  pointer-events: none;
}
.heroCard:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(255, 255, 255, 0.18);
}
.heroCardTop,
.heroCardBottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.pill {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line2);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
}
.timeline {
  position: relative;
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.timelineRow {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 10px;
  border-radius: var(--r16);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.12);
}
.timelineT {
  font-weight: 650;
}
.timelineS {
  font-size: 12px;
}
.dot {
  width: 10px;
  height: 10px;
  margin-top: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(138, 125, 255, 1), rgba(41, 214, 255, 1));
  box-shadow: 0 0 0 4px rgba(41, 214, 255, 0.12);
}
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  color: var(--text);
}
.heroCardBottom {
  margin-top: 14px;
}
.heroRight {
  display: flex;
  justify-content: center;
  align-items: start;
}
.heroRight .heroCard {
  max-width: 420px;
  width: 100%;
}

.section {
  padding: 66px 0;
}
.sectionHead {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
  max-width: 80ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section .grid3,
.section .grid2,
.section .faqGrid {
  width: 100%;
}

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

.feature {
  padding: 18px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.feature:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}
.featureTop {
  display: flex;
  align-items: center;
  gap: 10px;
}
.featureIcon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: radial-gradient(circle at 30% 30%, rgba(138, 125, 255, 0.4), rgba(255, 255, 255, 0.04));
  display: grid;
  place-items: center;
  box-shadow: 0 20px 60px rgba(138, 125, 255, 0.12);
}
.icon {
  width: 22px;
  height: 22px;
}

.effects {
  position: relative;
}

/* Стеклянная обводка блока «Личный кабинет автора» */
.effectsGlass {
  border-radius: 24px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 24px 60px rgba(0, 0, 0, 0.25),
    0 0 80px rgba(138, 125, 255, 0.08),
    0 0 120px rgba(41, 214, 255, 0.05);
}
.effectsGlass .sectionHead {
  margin-bottom: 22px;
}
.effectsGlassCta {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}
.effectsGlassCta .btn {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(68, 255, 178, 0.2);
}
.effectsGlass--author .effectsGlassCta .btn.primary {
  background: linear-gradient(135deg, rgba(68, 255, 178, 0.95), rgba(41, 214, 255, 0.9));
}
.effectsGlass--author .effectsGlassCta .btn.primary:hover {
  box-shadow: 0 20px 56px rgba(68, 255, 178, 0.3);
}
.effectsGlass--infringer .effectsGlassCta .btn.primary {
  background: linear-gradient(135deg, rgba(220, 90, 110, 0.95), rgba(180, 70, 90, 0.9));
  color: #fff;
  box-shadow: 0 16px 48px rgba(255, 80, 100, 0.2);
}
.effectsGlass--infringer .effectsGlassCta .btn.primary:hover {
  box-shadow: 0 20px 56px rgba(255, 80, 100, 0.28);
}

/* Личный кабинет автора — позитивный оттенок (зелёный/бирюзовый) */
.effectsGlass--author {
  background: linear-gradient(
    135deg,
    rgba(68, 255, 178, 0.06) 0%,
    rgba(41, 214, 255, 0.04) 50%,
    rgba(255, 255, 255, 0.07) 100%
  );
  border: 1px solid rgba(68, 255, 178, 0.2);
  box-shadow:
    0 0 0 1px rgba(68, 255, 178, 0.08) inset,
    0 24px 60px rgba(0, 0, 0, 0.22),
    0 0 60px rgba(68, 255, 178, 0.06),
    0 0 100px rgba(41, 214, 255, 0.04);
}

/* Личный кабинет нарушителя — негативный оттенок (приглушённый красный) */
.effectsGlass--infringer {
  background: linear-gradient(
    135deg,
    rgba(255, 100, 120, 0.05) 0%,
    rgba(180, 80, 100, 0.04) 50%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border: 1px solid rgba(255, 120, 140, 0.18);
  box-shadow:
    0 0 0 1px rgba(255, 100, 120, 0.06) inset,
    0 24px 60px rgba(0, 0, 0, 0.28),
    0 0 60px rgba(255, 80, 100, 0.05),
    0 0 80px rgba(180, 60, 80, 0.03);
}

.demo {
  padding: 18px;
}
.demoTop {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.demoBar {
  margin: 14px 0 12px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.demoFill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  animation: fill 1100ms cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
}
.demoFill.a {
  background: linear-gradient(90deg, rgba(138, 125, 255, 1), rgba(41, 214, 255, 1));
}
.demoFill.b {
  background: linear-gradient(90deg, rgba(41, 214, 255, 1), rgba(68, 255, 178, 0.9));
}
@keyframes fill {
  to {
    width: 86%;
  }
}

/* Деньги летят в кошелёк */
.moneyFly {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 16px 0 14px;
  min-height: 48px;
  position: relative;
}
.moneyFlySource {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(68, 255, 178, 0.25), rgba(41, 214, 255, 0.2));
  border: 1px solid rgba(68, 255, 178, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.moneyFlyStack {
  font-size: 18px;
  font-weight: 800;
  color: rgba(68, 255, 178, 0.95);
  letter-spacing: -0.02em;
}
.moneyFlyTrack {
  flex: 1;
  position: relative;
  height: 24px;
  margin: 0 8px;
}
.moneyFlyCoin {
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f0c14b, #d4a82b);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  animation: moneyFlyToWallet 2s ease-in-out infinite;
  transform: translateY(-50%);
}
.moneyFlyTarget {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(138, 125, 255, 0.2), rgba(41, 214, 255, 0.15));
  border: 1px solid rgba(138, 125, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.moneyFlyWallet {
  font-size: 22px;
  line-height: 1;
}
/* Полёт до кошелька, в конце скрытие без паузы */
@keyframes moneyFlyToWallet {
  0% {
    left: 0;
    opacity: 0.9;
    transform: translateY(-50%) scale(0.9);
  }
  20% {
    opacity: 1;
    transform: translateY(calc(-50% - 10px)) scale(1);
  }
  50% {
    transform: translateY(calc(-50% - 4px));
  }
  80% {
    transform: translateY(calc(-50% - 2px));
  }
  100% {
    left: calc(100% - 8px);
    opacity: 0;
    transform: translateY(-50%) scale(0.85);
    pointer-events: none;
  }
}

.chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0 10px;
}

/* Рейтинг (список мест) */
.ratingList {
  list-style: none;
  margin: 14px 0 12px;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 6px;
  justify-content: center;
}
.ratingRow {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(138, 125, 255, 0.07) 25%,
    rgba(41, 214, 255, 0.06) 50%,
    rgba(68, 255, 178, 0.05) 75%,
    rgba(255, 255, 255, 0.03) 100%
  );
  background-size: 200% 100%;
  background-position: 0% 50%;
  animation: ratingShimmer 5s ease-in-out infinite;
  transition: border-color 160ms ease;
  flex: 1;
  min-width: 0;
}
.ratingRow:nth-child(1) {
  animation-delay: 0s;
}
.ratingRow:nth-child(2) {
  animation-delay: 0.8s;
}
.ratingRow:nth-child(3) {
  animation-delay: 1.6s;
}
@keyframes ratingShimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.ratingRow:hover {
  border-color: rgba(255, 255, 255, 0.14);
}
.ratingPlace {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0b1020;
  background: linear-gradient(145deg, var(--brand), var(--brand2));
  box-shadow: 0 2px 6px rgba(138, 125, 255, 0.35);
}
.ratingRow:nth-child(1) .ratingPlace {
  background: linear-gradient(145deg, #f0c14b, #d4a82b);
  box-shadow: 0 2px 6px rgba(240, 193, 75, 0.4);
}
.ratingRow:nth-child(2) .ratingPlace {
  background: linear-gradient(145deg, #c0c0c0, #9a9a9a);
  box-shadow: 0 2px 6px rgba(192, 192, 192, 0.35);
}
.ratingRow:nth-child(3) .ratingPlace {
  background: linear-gradient(145deg, #cd7f32, #a0522d);
  box-shadow: 0 2px 6px rgba(205, 127, 50, 0.35);
}
.ratingLabel {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 640px) {
  .ratingList {
    flex-wrap: wrap;
  }
  .ratingRow {
    flex: 0 1 auto;
    min-width: 0;
  }
}
.wandRow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0 10px;
}
.wandLine {
  height: 10px;
  flex: 1;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(138, 125, 255, 0.2), rgba(41, 214, 255, 0.16), rgba(68, 255, 178, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Контроль: наказать / не наказывать */
.controlChoice {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.controlOption {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.controlToggle {
  flex-shrink: 0;
}
.controlTrack {
  width: 80px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  position: relative;
  display: flex;
  align-items: center;
  padding: 4px;
}
.controlThumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--brand), var(--brand2));
  box-shadow: 0 2px 8px rgba(138, 125, 255, 0.4);
  position: absolute;
  left: 4px;
  animation: controlThumbChoice 4s ease-in-out infinite;
}
@keyframes controlThumbChoice {
  0%, 100% { left: 4px; }
  25% { left: 4px; }
  50% { left: calc(100% - 28px); }
  75% { left: calc(100% - 28px); }
}

/* Визуализация процесса по стадиям */
.processStages {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 16px 0 14px;
  gap: 0;
}
.processStage {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex: 1;
  min-width: 0;
}
.processStageBlock {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.processStageDot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand), var(--brand2));
  box-shadow: 0 0 0 3px rgba(138, 125, 255, 0.25);
}
.processStage:nth-child(1) .processStageDot {
  animation: processPulse 2s ease-in-out infinite;
}
.processStage:nth-child(2) .processStageDot {
  animation: processPulse 2s ease-in-out 0.5s infinite;
}
.processStage:nth-child(3) .processStageDot {
  animation: processPulse 2s ease-in-out 1s infinite;
}
.processStage:nth-child(4) .processStageDot {
  animation: processPulse 2s ease-in-out 1.5s infinite;
}
@keyframes processPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(138, 125, 255, 0.25); opacity: 1; }
  50% { box-shadow: 0 0 0 8px rgba(41, 214, 255, 0.15); opacity: 0.9; }
}
.processStageLabel {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
  text-align: center;
  line-height: 1.2;
}
.processStageConnector {
  flex: 1;
  min-width: 16px;
  height: 4px;
  margin: 0 4px;
  align-self: flex-start;
  margin-top: 5px;
  border-radius: 999px;
  background: repeating-linear-gradient(
    90deg,
    var(--brand) 0,
    var(--brand) 6px,
    transparent 6px,
    transparent 14px
  );
  background-size: 14px 4px;
  background-position: 0 0;
  animation: processMarch 0.5s linear infinite;
}
.processStage:nth-child(2) .processStageConnector {
  animation-delay: 0.17s;
}
.processStage:nth-child(3) .processStageConnector {
  animation-delay: 0.34s;
}
@keyframes processMarch {
  to {
    background-position: 14px 0;
  }
}

/* Анимации в карточках Effects только при наведении на article */
.card.demo .moneyFlyCoin,
.card.demo .processStageDot,
.card.demo .processStageConnector,
.card.demo .ratingRow,
.card.demo .controlThumb {
  animation-play-state: paused;
}
.card.demo:hover .moneyFlyCoin,
.card.demo:hover .processStageDot,
.card.demo:hover .processStageConnector,
.card.demo:hover .ratingRow,
.card.demo:hover .controlThumb {
  animation-play-state: running;
}

.case {
  padding: 18px;
}

/* Кейсы как история: слева фото, справа текст */
.caseStories {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.caseStory {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}
.caseStoryImage {
  flex-shrink: 0;
  width: 220px;
  min-height: 160px;
  background: rgba(255, 255, 255, 0.05);
}
.caseStoryImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.caseStoryBody {
  flex: 1;
  min-width: 0;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.caseStoryBody .caseTop {
  margin-bottom: 0;
}
.caseStoryBody .h3 {
  margin: 0;
}
.caseStoryBody .muted {
  margin: 0;
  flex: 1;
}
.caseStoryLink {
  margin-top: auto;
  align-self: flex-end;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand2);
  text-decoration: none;
  transition: color 160ms ease;
}
.caseStoryLink:hover {
  color: var(--brand);
}
.caseStoryLink:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(41, 214, 255, 0.35);
  border-radius: 4px;
}
@media (max-width: 640px) {
  .caseStory {
    flex-direction: column;
  }
  .caseStoryImage {
    width: 100%;
    min-height: 200px;
  }
}

.caseTop {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.metric {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(68, 255, 178, 0.25);
  background: rgba(68, 255, 178, 0.08);
  color: rgba(200, 255, 234, 0.95);
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}
.log {
  margin-top: 14px;
  padding: 12px;
  border-radius: var(--r16);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  line-height: 1.35;
}
.logLine {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}
.logLine:last-child {
  border-bottom: none;
}
.logK {
  color: rgba(232, 236, 255, 0.55);
}
.logV {
  color: rgba(232, 236, 255, 0.9);
}
.logV.ok {
  color: rgba(200, 255, 234, 0.95);
}

.price {
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.price.highlight {
  border-color: rgba(41, 214, 255, 0.22);
  box-shadow: 0 28px 90px rgba(41, 214, 255, 0.14);
}
.price.highlight:before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(700px 220px at 50% 0%, rgba(41, 214, 255, 0.22), transparent 55%);
  pointer-events: none;
}
.priceHead {
  position: relative;
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}
.priceTitleRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.priceValue {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.priceNum {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.priceUnit {
  color: var(--muted2);
}
.list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.listItem {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
}
.check {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: rgba(68, 255, 178, 0.12);
  border: 1px solid rgba(68, 255, 178, 0.24);
  color: rgba(200, 255, 234, 0.95);
  font-weight: 900;
  line-height: 1;
}
.priceCta {
  margin-top: 16px;
}

.faqGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.faq {
  border-radius: var(--r16);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.faqQ {
  cursor: pointer;
  user-select: none;
  padding: 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--text);
  font-weight: 650;
}
.faqQ:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(41, 214, 255, 0.18);
}
.faqChevron {
  transition: transform 160ms ease;
  color: var(--muted2);
}
details[open] .faqChevron {
  transform: rotate(180deg);
}
.faqA {
  padding: 0 14px 14px;
  color: var(--muted);
}

.cta {
  padding: 70px 0 90px;
}
.cta .container {
  display: flex;
  justify-content: center;
}
.ctaCard {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: radial-gradient(900px 300px at 30% 0%, rgba(138, 125, 255, 0.24), transparent 55%),
    radial-gradient(900px 300px at 70% 0%, rgba(41, 214, 255, 0.2), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  padding: 20px;
  width: 100%;
}
.ctaLeft {
  padding: 12px 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ctaRight {
  padding: 6px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.ctaRight .form {
  width: 100%;
  max-width: 360px;
}
.form {
  display: grid;
  gap: 12px;
}
.field {
  display: grid;
  gap: 6px;
}
.fieldLabel {
  font-size: 12px;
  color: var(--muted2);
}
.input {
  width: 100%;
  border-radius: 14px;
  padding: 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.18);
  color: var(--text);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.input::placeholder {
  color: rgba(232, 236, 255, 0.42);
}
.input:focus {
  border-color: rgba(41, 214, 255, 0.28);
  box-shadow: 0 0 0 4px rgba(41, 214, 255, 0.16);
  background: rgba(0, 0, 0, 0.24);
}
.fine {
  font-size: 12px;
  color: var(--muted2);
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.2);
  padding: 48px 0 32px;
}
.footerGrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr 1fr;
  gap: 32px 24px;
  align-items: start;
}
.footerCol {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footerColTitle {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted2);
}
.footerLogoLink {
  display: block;
  margin-bottom: 4px;
}
.footerLogo {
  display: block;
  max-width: 200px;
  height: auto;
}
.footerLogoLink img {
  filter: brightness(1.05);
}
.footerCompany {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.footerCompany strong {
  color: var(--text);
}
.footerLegal {
  margin-top: 4px;
}
.footerNav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footerNavLink {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 160ms ease;
}
.footerNavLink:hover {
  color: var(--text);
}
.footerNavLink:focus-visible {
  outline: none;
  color: var(--text);
}
.footerMuted {
  margin: 0;
  font-size: 12px;
  color: var(--muted2);
}
.footerContact {
  margin: 0;
  font-size: 14px;
}
.footerAddress {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 260px;
}
.footerLink {
  color: var(--muted);
  text-decoration: none;
  transition: color 160ms ease;
}
.footerLink:hover {
  color: var(--brand2);
}
.footerLink:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(41, 214, 255, 0.35);
  border-radius: 4px;
}
.footerColRight {
  align-items: flex-start;
}
.footerSkolkovo {
  width: 160px;
  height: auto;
  opacity: 0.9;
}
.footerSocialRow {
  display: flex;
  gap: 24px;
  margin-top: 8px;
}
.footerSocialBlock {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footerMessengers {
  display: flex;
  gap: 10px;
}
.footerIconLink {
  display: inline-block;
  line-height: 0;
  border-radius: 8px;
  transition: opacity 160ms ease, transform 160ms ease;
}
.footerIconLink:hover {
  opacity: 0.9;
  transform: scale(1.05);
}
.footerIconLink:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(41, 214, 255, 0.35);
  border-radius: 8px;
}
.footerIconLink img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .footerGrid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .footer {
    padding: 32px 0 24px;
  }
  .footerGrid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footerColRight {
    flex-direction: column;
  }
  .footerSocialRow {
    flex-direction: column;
  }
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 650ms cubic-bezier(0.2, 0.75, 0.2, 1), transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1);
  transition-delay: var(--d, 0ms);
}
[data-reveal][data-revealed="true"] {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }
  .heroInner {
    grid-template-columns: 1fr;
  }
  .heroRight {
    display: grid;
    justify-items: center;
  }
  .ctaCard {
    grid-template-columns: 1fr;
  }
  .ctaRight {
    justify-content: center;
  }
  .heroStats {
    grid-template-columns: 1fr;
  }
  .grid3 {
    grid-template-columns: 1fr;
  }
  .grid2 {
    grid-template-columns: 1fr;
  }
  .faqGrid {
    grid-template-columns: 1fr;
  }
}


/*# sourceMappingURL=main.84fed5f32deaadd2595a.css.map*/