/* ═══════════════════════════════════════════════════
   ENIGMA — токены
   ═══════════════════════════════════════════════════ */
:root {
  --bg: #000;
  --card: #0b0b0b;
  --card-hi: #0f0f0f;
  --line: rgba(39, 39, 39, 0.75);
  --line-hi: rgba(255, 255, 255, 0.16);
  --white: #fff;
  --text: #ededf0;
  --muted: #86868b;
  --dim: #5c5c62;
  --red: #ff3b30;
  --copper: #c0603a;
  --green: #32d74b;
  --blue: #5b93ff;
  --violet: #8d6cff;
  --amber: #ffb340;
  --sans: "Inter", -apple-system, "SF Pro Display", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --pad: clamp(16px, 4vw, 40px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: rgba(255, 59, 48, 0.3); color: #fff; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #232326; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #34343a; }
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 6px; }
.mono { font-family: var(--mono); font-variant-ligatures: none; }
em { font-style: italic; font-weight: inherit; letter-spacing: -0.005em; }
.dim { color: var(--dim); }
.i14 { width: 14px; height: 14px; flex: none; }
.i16 { width: 16px; height: 16px; flex: none; }

/* ═══════════════════════════════════════════════════
   ПРЕЛОАДЕР
   ═══════════════════════════════════════════════════ */
.boot {
  position: fixed; inset: 0; z-index: 200; background: #000;
  display: grid; place-items: center;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
.boot.is-done { opacity: 0; visibility: hidden; }
.boot__in { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.boot__mark { width: 34px; height: 34px; color: var(--red); animation: bootSpin 2.4s var(--ease) infinite; }
@keyframes bootSpin { 0%, 100% { transform: rotate(0); } 50% { transform: rotate(180deg); } }
.boot__bar { width: 168px; height: 2px; background: #1a1a1d; border-radius: 2px; overflow: hidden; }
.boot__bar i { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--red), #ff9a6a); }
.boot__pct { font-size: 11px; color: var(--dim); letter-spacing: 0.16em; }

/* ═══════════════════════════════════════════════════
   КАСТОМНЫЙ КУРСОР
   ═══════════════════════════════════════════════════ */
.cur, .cur2 { position: fixed; top: 0; left: 0; pointer-events: none; border-radius: 50%; opacity: 0; }
.cur {
  z-index: 96; width: 6px; height: 6px; margin: -3px 0 0 -3px; background: #fff;
  mix-blend-mode: difference; transition: opacity 0.3s, width 0.28s var(--ease), height 0.28s var(--ease), margin 0.28s var(--ease);
}
.cur2 {
  z-index: 95; width: 30px; height: 30px; margin: -15px 0 0 -15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: opacity 0.3s, width 0.32s var(--ease), height 0.32s var(--ease),
              margin 0.32s var(--ease), border-color 0.32s, background 0.32s;
}
body.has-cursor .cur, body.has-cursor .cur2 { opacity: 1; }
.cur2.is-hot {
  width: 54px; height: 54px; margin: -27px 0 0 -27px;
  border-color: rgba(255, 122, 80, 0.75); background: rgba(255, 80, 45, 0.07);
}
.cur.is-hot { width: 3px; height: 3px; margin: -1.5px 0 0 -1.5px; }

/* ═══════════════════════════════════════════════════
   БОКОВОЙ УКАЗАТЕЛЬ СЕКЦИЙ
   ═══════════════════════════════════════════════════ */
.rail {
  position: fixed; right: 22px; top: 50%; transform: translateY(-50%);
  z-index: 45; display: flex; flex-direction: column; gap: 14px;
  opacity: 0; transition: opacity 0.6s var(--ease);
}
.rail.is-on { opacity: 1; }
.rail a { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.rail span {
  width: 7px; height: 7px; border-radius: 50%; background: #2e2e34;
  transition: background 0.3s, transform 0.35s var(--ease), box-shadow 0.3s;
}
.rail em {
  font-style: normal; font-size: 11px; color: var(--dim); letter-spacing: 0.05em;
  opacity: 0; transform: translateX(6px);
  transition: opacity 0.3s, transform 0.35s var(--ease);
}
.rail a:hover em { opacity: 1; transform: none; }
.rail a:hover span { background: #6a6a74; }
.rail a.is-on span { background: var(--red); transform: scale(1.35); box-shadow: 0 0 10px rgba(255, 59, 48, 0.7); }
.rail a.is-on em { opacity: 1; transform: none; color: var(--text); }

/* зерно + прогресс */
.grain {
  position: fixed; inset: 0; z-index: 60; pointer-events: none; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
.progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 100%; z-index: 70;
  background: linear-gradient(90deg, var(--red), #ff8154);
  transform: scaleX(0); transform-origin: 0 50%;
}

/* ═══════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; }
.nav::before {
  content: ""; position: absolute; inset: 0; opacity: 0;
  background: rgba(0, 0, 0, 0.62); backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: opacity 0.45s var(--ease);
}
.nav.is-stuck::before { opacity: 1; }
.nav__in {
  position: relative; max-width: 1240px; margin: 0 auto;
  padding: 18px var(--pad); display: flex; align-items: center; justify-content: space-between; gap: 20px;
  transition: padding 0.45s var(--ease);
}
.nav.is-stuck .nav__in { padding-top: 13px; padding-bottom: 13px; }
.nav__side { display: flex; align-items: center; gap: 26px; }

.brand { display: inline-flex; align-items: center; gap: 9px; color: var(--white); }
.brand__mark { width: 19px; height: 19px; color: var(--red); transition: transform 0.6s var(--ease); }
.brand:hover .brand__mark { transform: rotate(90deg); }
.brand__word { font-weight: 700; font-size: 17px; letter-spacing: 0.13em; }

.menu { display: flex; gap: 4px; }
.menu a {
  position: relative; padding: 7px 12px; border-radius: 8px; font-size: 14px;
  color: var(--muted); transition: color 0.25s, background 0.25s;
}
.menu a::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: 0 50%;
  transition: transform 0.45s var(--ease);
}
.menu a:hover { color: var(--white); }
.menu a:hover::after { transform: scaleX(1); }

.pill {
  display: inline-flex; align-items: center; gap: 8px; height: 38px; padding: 0 16px;
  border-radius: 100px; border: 1px solid var(--line); background: #0a0a0a;
  font-size: 13.5px; font-weight: 500; color: var(--text);
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease);
}
.pill:hover { border-color: var(--line-hi); background: #131316; transform: translateY(-1px); }
.pill--sq { padding: 0 13px; color: var(--muted); }

/* кнопка коннекта: лейбл сменяется на IP при наведении */
.swap {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  height: 38px; padding: 0 16px; border-radius: 100px; overflow: hidden;
  border: 1px solid var(--line); background: #0a0a0a;
  font-size: 13.5px; font-weight: 500; color: var(--text);
  transition: border-color 0.3s, background 0.3s;
}
.swap::before {
  content: ""; position: absolute; inset: 0; opacity: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.08), transparent 80%);
  transition: opacity 0.4s;
}
.swap:hover { border-color: var(--line-hi); background: #131316; }
.swap:hover::before { opacity: 1; }
.swap__stack { position: relative; display: grid; overflow: hidden; height: 21px; }
.swap__a, .swap__b {
  grid-area: 1 / 1; display: flex; align-items: center; height: 21px; line-height: 21px;
  white-space: nowrap;
  transition: transform 0.5s var(--ease), opacity 0.4s var(--ease);
}
.swap__b { font-size: 12.5px; color: #fff; transform: translateY(105%); opacity: 0; }
.swap:hover .swap__a { transform: translateY(-105%); opacity: 0; }
.swap:hover .swap__b { transform: none; opacity: 1; }
.swap__ic { width: 15px; height: 15px; flex: none; color: var(--dim); transition: color 0.3s, transform 0.4s var(--ease); }
.swap:hover .swap__ic { color: var(--white); transform: scale(1.1); }

/* бургер + мобильное меню */
.burger {
  display: none; width: 38px; height: 38px; border-radius: 100px;
  border: 1px solid var(--line); background: #0a0a0a;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.burger span {
  display: block; width: 15px; height: 1.5px; background: var(--text); border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
.burger.is-on span:first-child { transform: translateY(3.25px) rotate(45deg); }
.burger.is-on span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

.drawer {
  position: fixed; inset: 0; z-index: 48; padding: 96px var(--pad) 34px;
  background: rgba(4, 4, 5, 0.96); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; gap: 26px;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity 0.42s var(--ease), transform 0.42s var(--ease), visibility 0.42s;
}
.drawer.is-on { opacity: 1; visibility: visible; transform: none; }
.drawer__nav { display: flex; flex-direction: column; }
.drawer__nav a {
  display: flex; align-items: center; gap: 16px; padding: 18px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 22px; font-weight: 600; letter-spacing: -0.02em; color: var(--text);
}
.drawer__nav a i { font-style: normal; font-size: 11px; color: var(--dim); }
.drawer__nav a:active { color: var(--red); }

/* ── живой статус сервера ── */
.live {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px;
  padding: 6px 14px 6px 7px; border-radius: 100px;
  background: #0b0b0c; border: 1px solid var(--line);
}
.live__tag {
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.16em; color: #fff;
  padding: 3px 7px; border-radius: 100px; background: #b0261c;
  animation: rec 2.6s ease-in-out infinite;
}
@keyframes rec { 0%, 100% { background: #b0261c; } 50% { background: #ff4436; } }
.live__val { font-size: 12px; color: var(--muted); letter-spacing: 0.02em; }
.live__val b { color: var(--white); font-weight: 700; }

/* ═══════════════════════════════════════════════════
   КНОПКИ
   ═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 48px; padding: 0 26px; border-radius: 100px;
  font-size: 15px; font-weight: 500; letter-spacing: -0.005em; white-space: nowrap;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.3s, background 0.3s, filter 0.3s;
}
.btn--sm { height: 38px; padding: 0 18px; font-size: 13.5px; }
.btn--lg { height: 54px; padding: 0 32px; font-size: 16px; }
.btn--primary {
  color: #fff; border: 1px solid rgba(255, 150, 110, 0.32);
  background: linear-gradient(180deg, #c8663c 0%, #9b3f28 52%, #7d2c1c 100%);
  box-shadow: inset 0 1px 0 rgba(255, 220, 200, 0.34), 0 10px 30px rgba(160, 60, 30, 0.28);
}
.btn--primary:hover { filter: brightness(1.12); box-shadow: inset 0 1px 0 rgba(255, 220, 200, 0.4), 0 14px 40px rgba(180, 70, 35, 0.42); }
.btn--ghost { color: var(--muted); border: 1px solid var(--line); background: #070707; }
.btn--ghost:hover { color: var(--white); border-color: var(--line-hi); background: #0e0e10; }
.btn:active { transform: translateY(1px) scale(0.99); }

/* инлайн-чипы в тексте */
.tag {
  display: inline-flex; align-items: center; gap: 6px; padding: 3px 10px 3px 8px;
  border-radius: 100px; border: 1px solid var(--line); background: #0c0c0d;
  color: var(--text); font-size: 0.92em; font-weight: 500; white-space: nowrap;
  vertical-align: baseline;
}
.tag svg { color: var(--muted); }
.tag--plain { padding: 3px 9px; color: var(--text); }

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero { position: relative; padding: clamp(108px, 13vh, 148px) 0 0; overflow: hidden; }
.hero__beam {
  position: absolute; top: -14%; left: 50%; transform: translateX(-50%);
  width: min(760px, 90vw); height: 620px; pointer-events: none;
  background: radial-gradient(50% 50% at 50% 0%, rgba(255, 255, 255, 0.11), transparent 72%);
  filter: blur(6px);
}

/* фоновый коллаж */
.collage { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.cg {
  position: absolute; border: 1px solid rgba(255, 255, 255, 0.055); border-radius: 12px;
  background: rgba(11, 11, 12, 0.72); padding: 12px 14px;
  font-size: 11px; color: #3a3a40; filter: blur(1.1px); opacity: 0.55;
  will-change: transform;
}
.cg__line { display: flex; align-items: center; gap: 7px; padding: 3px 0; white-space: nowrap; }
.cg__line b { color: #4d4d55; font-weight: 700; }
.cg__line em { color: #43434a; font-style: normal; margin-left: auto; }
.cg--feed { top: 15%; left: -2%; width: 210px; }
.cg--tick { top: 40%; left: 6%; width: 132px; }
.cg--cmd { top: 24%; right: -1%; width: 216px; }
.cg--rank { top: 46%; right: 5%; width: 186px; }
.cg__big { font-size: 30px; font-weight: 700; color: #48484f; letter-spacing: -0.03em; }
.cg__big small { font-size: 10px; font-weight: 500; margin-left: 5px; letter-spacing: 0.08em; }
.cg__bars { display: flex; gap: 3px; align-items: flex-end; height: 22px; margin-top: 8px; }
.cg__bars i { flex: 1; background: #2f2f36; border-radius: 1px; }
.cg__bars i:nth-child(1) { height: 40% } .cg__bars i:nth-child(2) { height: 70% }
.cg__bars i:nth-child(3) { height: 55% } .cg__bars i:nth-child(4) { height: 90% }
.cg__bars i:nth-child(5) { height: 62% } .cg__bars i:nth-child(6) { height: 78% }
.cg__bars i:nth-child(7) { height: 48% }
.cg--cmd code { font-family: var(--mono); font-size: 10.5px; color: #45454d; display: block; margin-top: 8px; }
.cg__dots { display: flex; gap: 4px; }
.cg__dots i { width: 6px; height: 6px; border-radius: 50%; background: #2a2a30; }

/* текст героя */
.hero__copy { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; padding: 0 var(--pad); text-align: center; }
.hero__title {
  font-size: clamp(38px, 6.1vw, 68px); font-weight: 600; line-height: 1.03;
  letter-spacing: -0.027em; color: var(--white);
}
.hero__sub {
  margin: 22px auto 0; max-width: 620px; font-size: 15px; line-height: 1.72; color: var(--muted);
}
.hero__cta { margin-top: 32px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero__cta .btn--ghost { font-family: var(--mono); font-size: 13px; }

/* сцена с рендером */
.stage {
  position: relative; z-index: 1; width: min(1220px, 100%); margin: clamp(-58px, -4vw, -18px) auto 0;
  aspect-ratio: 1.85 / 1;
}
.stage__wrap { position: absolute; inset: 0; will-change: transform; }
.stage__img {
  display: block; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 100%;
  opacity: 0;
}
.stage.is-in .stage__img { opacity: 1; transition: opacity 1.7s var(--ease); }
.stage::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0) 16%, rgba(0, 0, 0, 0) 84%, #000 100%);
}
.stage::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 14%, rgba(0, 0, 0, 0) 62%, #000 97%);
}
.stage__word {
  position: absolute; z-index: 3; left: 50%; bottom: 15%; transform: translateX(-50%);
  font-size: clamp(42px, 8.8vw, 136px); font-weight: 800; line-height: 1; letter-spacing: -0.045em;
  background: linear-gradient(176deg, #fff 0%, #f4f6fa 14%, #9096a1 30%, #fff 40%, #6e747f 48%, #cfd5de 62%, #fff 76%, #8b919b 88%, #fdfdff 100%);
  background-size: 100% 320%; background-position: 0% 22%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.9));
  white-space: nowrap; pointer-events: none;
  opacity: 0;
}
.stage.is-in .stage__word {
  opacity: 1;
  transition: opacity 1.5s var(--ease) 0.45s;
  animation: chrome 13s ease-in-out 2s infinite alternate;
}
/* блик ползёт по градиенту — хром «переливается» */
@keyframes chrome { to { background-position: 0% 78%; } }
.stage__word::after {
  content: attr(data-word); position: absolute; left: 0; top: 98%;
  transform: scaleY(-1); transform-origin: top; opacity: 0.14;
  background: inherit; -webkit-background-clip: text; background-clip: text; color: transparent;
  -webkit-mask-image: linear-gradient(#000, transparent 55%); mask-image: linear-gradient(#000, transparent 55%);
}
.stage__play {
  position: absolute; z-index: 4; left: 50%; bottom: 4%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 7px; height: 36px; padding: 0 16px;
  border-radius: 100px; font-size: 13px; font-weight: 500; color: #fff;
  background: linear-gradient(180deg, #2f6cd6, #1f4899);
  border: 1px solid rgba(150, 190, 255, 0.35);
  box-shadow: inset 0 1px 0 rgba(210, 230, 255, 0.35), 0 8px 26px rgba(30, 80, 190, 0.4);
  transition: transform 0.35s var(--ease), filter 0.3s;
}
.stage__play:hover { filter: brightness(1.14); }

/* ═══════════════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════════════ */
.marquee { padding: 30px 0; border-block: 1px solid rgba(255, 255, 255, 0.05); overflow: hidden; margin-top: clamp(-40px, -3vw, -10px); position: relative; z-index: 3; }
.marquee__row { display: flex; width: max-content; will-change: transform; }
.marquee__track { display: flex; align-items: center; gap: 26px; padding-right: 26px; }
.marquee__track span {
  font-size: 12.5px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: #4a4a52;
  transition: color 0.4s;
}
.marquee:hover .marquee__track span { color: #6d6d78; }
.marquee__track i { width: 4px; height: 4px; border-radius: 50%; background: #2b2b31; flex: none; }

/* ═══════════════════════════════════════════════════
   СЕКЦИИ / ЗАГОЛОВКИ
   ═══════════════════════════════════════════════════ */
.section { max-width: 1240px; margin: 0 auto; padding: clamp(80px, 11vw, 150px) var(--pad) 0; }
.about { max-width: 1000px; margin: 0 auto; padding: clamp(80px, 11vw, 140px) var(--pad) 0; }
.lead {
  font-size: clamp(21px, 2.9vw, 34px); font-weight: 500; line-height: 1.4;
  letter-spacing: -0.018em; color: #b9b9c0; text-align: center;
}
.lead em { color: var(--white); }

.head { text-align: center; margin-bottom: clamp(36px, 5vw, 58px); }
.head h2 {
  font-size: clamp(28px, 4.1vw, 48px); font-weight: 600; line-height: 1.07;
  letter-spacing: -0.023em; color: var(--white);
}
.head__sub { margin: 15px auto 0; max-width: 560px; font-size: 14px; line-height: 1.65; color: var(--muted); }

/* ═══════════════════════════════════════════════════
   BENTO
   ═══════════════════════════════════════════════════ */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.bx {
  position: relative; grid-column: span 2; min-height: 400px;
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 22px;
  transition: border-color 0.45s, transform 0.55s var(--ease), background 0.45s;
}
.bx--w { grid-column: span 3; min-height: 336px; }
.bx:hover { border-color: var(--line-hi); background: var(--card-hi); transform: translateY(-3px); }
.bx__txt { position: relative; z-index: 3; }
.bx__txt h3 {
  display: flex; align-items: center; gap: 9px; flex-wrap: wrap;
  font-size: 17px; font-weight: 600; letter-spacing: -0.012em; color: var(--white);
}
.bx__txt p { margin-top: 9px; max-width: 46ch; font-size: 13.5px; line-height: 1.6; color: var(--muted); }
code.c {
  font-family: var(--mono); font-size: 0.88em; color: #cfd3da;
  padding: 1px 6px; border-radius: 5px;
  background: rgba(255, 255, 255, 0.055); border: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

/* мини 3D-иконка в заголовке */
.ic {
  width: 22px; height: 22px; border-radius: 7px; display: inline-grid; place-items: center; flex: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 3px 10px rgba(0, 0, 0, 0.6);
}
.ic svg { width: 12px; height: 12px; }
.ic--red { background: linear-gradient(160deg, #ff6a5e, #a3221a); color: #fff2f0; }
.ic--green { background: linear-gradient(160deg, #58e878, #16913a); color: #eafff0; }
.ic--blue { background: linear-gradient(160deg, #7fb0ff, #2a52b8); color: #f0f6ff; }
.ic--violet { background: linear-gradient(160deg, #ad92ff, #5636c4); color: #f5f0ff; }
.ic--amber { background: linear-gradient(160deg, #ffd07a, #c07a10); color: #fff8ea; }
.ic--steel { background: linear-gradient(160deg, #dfe4ec, #767d8a); color: #1a1c21; }

/* визуал карточки — в край */
.bx__vis {
  position: relative; flex: 1; min-height: 150px; margin: 18px -22px -22px;
  border-radius: 0 0 15px 15px; overflow: hidden;
  display: grid; place-items: center;
}
.glow {
  position: absolute; left: 50%; bottom: -18%; width: 130%; height: 128%;
  transform: translateX(-50%); border-radius: 50%; filter: blur(38px);
  opacity: 0.72; transition: opacity 0.6s, transform 0.7s var(--ease);
}
.bx:hover .glow { opacity: 1; transform: translateX(-50%) scale(1.07); }
.glow--red { background: radial-gradient(50% 50% at 50% 60%, rgba(255, 59, 48, 0.42), transparent 70%); }
.glow--green { background: radial-gradient(50% 50% at 50% 60%, rgba(50, 215, 75, 0.28), transparent 70%); }
.glow--blue { background: radial-gradient(50% 50% at 50% 60%, rgba(91, 147, 255, 0.38), transparent 70%); }
.glow--violet { background: radial-gradient(50% 50% at 50% 60%, rgba(141, 108, 255, 0.4), transparent 70%); }
.glow--amber { background: radial-gradient(50% 50% at 50% 60%, rgba(255, 179, 64, 0.34), transparent 70%); }
.glow--steel { background: radial-gradient(50% 50% at 50% 60%, rgba(180, 200, 230, 0.24), transparent 70%); }
.glow--deep { background: radial-gradient(50% 50% at 50% 60%, rgba(190, 24, 40, 0.42), transparent 70%); }

/* — 128 tick — */
.vis-tick .tickchart {
  position: relative; z-index: 2; width: min(86%, 400px); padding: 16px 18px 13px;
  border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(26, 28, 30, 0.92), rgba(9, 10, 11, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11), 0 20px 44px rgba(0, 0, 0, 0.7);
  transition: transform 0.6s var(--ease);
}
.bx:hover .tickchart { transform: translateY(-4px); }
.tickchart__bars { display: flex; align-items: flex-end; gap: 3px; height: 76px; }
.tickchart__bars i {
  flex: 1; border-radius: 2px 2px 0 0; transform-origin: bottom;
  background: linear-gradient(180deg, #4ee06a, rgba(30, 130, 60, 0.25));
  animation: pulseBar 2.6s var(--ease) infinite;
}
@keyframes pulseBar { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(0.86); } }
.tickchart__row {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 11px; padding-top: 10px; border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 11px; color: var(--dim); letter-spacing: 0.06em;
}
.tickchart__row b { color: var(--green); font-size: 13px; }

/* — киллфид — */
.kfeed { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 5px; width: min(88%, 330px); }
.kf {
  display: flex; align-items: center; gap: 8px; padding: 7px 10px; border-radius: 8px;
  background: rgba(12, 12, 14, 0.88); border: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 11.5px; color: var(--muted);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.55);
}
.kf b { color: #dcdce2; font-weight: 600; }
.kf--me { background: rgba(48, 12, 12, 0.9); border-color: rgba(255, 59, 48, 0.28); }
.kf--me b { color: #ff8d80; }
.kf__gun { width: 22px; height: 9px; color: #6f6f79; flex: none; }
.kf__hs {
  margin-left: auto; font-style: normal; font-size: 9px; font-weight: 700; letter-spacing: 0.08em;
  padding: 2px 5px; border-radius: 4px; background: rgba(255, 59, 48, 0.16); color: #ff9d92;
}
.streak {
  position: relative; z-index: 2; margin-top: 12px; display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 13px; border-radius: 100px; font-size: 11.5px; color: #cdbcff;
  background: rgba(141, 108, 255, 0.13); border: 1px solid rgba(141, 108, 255, 0.32);
}
.streak__n { font-weight: 700; color: #fff; }
.vis-feed { flex-direction: column; }

/* — мишень — */
.target { position: relative; z-index: 2; width: 168px; height: 168px; }
.target__svg { width: 100%; height: 100%; overflow: visible; }
.t-ring { fill: none; stroke: rgba(255, 255, 255, 0.13); stroke-width: 1.2; }
.t-cross { stroke: rgba(255, 255, 255, 0.28); stroke-width: 1.4; stroke-linecap: round; }
.hole {
  position: absolute; left: calc(50% + var(--x)); top: calc(50% + var(--y));
  width: 10px; height: 10px; margin: -5px 0 0 -5px; border-radius: 50%;
  background: #14070a; box-shadow: 0 0 0 1.5px rgba(255, 59, 48, 0.8), 0 0 14px rgba(255, 59, 48, 0.65);
  opacity: 0; transform: scale(0.3);
}
.bx.is-in .hole { animation: pop 0.5s var(--ease) forwards; }
.bx.is-in .hole:nth-of-type(1) { animation-delay: 0.25s }
.bx.is-in .hole:nth-of-type(2) { animation-delay: 0.35s }
.bx.is-in .hole:nth-of-type(3) { animation-delay: 0.45s }
.bx.is-in .hole:nth-of-type(4) { animation-delay: 0.55s }
.bx.is-in .hole:nth-of-type(5) { animation-delay: 0.65s }
@keyframes pop { to { opacity: 1; transform: scale(1); } }

/* — окно бэктрека — */
.btrack { position: relative; z-index: 2; width: min(88%, 290px); }
.btrack__ticks { display: flex; align-items: flex-end; gap: 4px; height: 62px; }
.btrack__ticks i {
  flex: 1; height: 42%; border-radius: 2px; background: #22242b;
  transform-origin: bottom; transform: scaleY(0.3); opacity: 0;
}
.btrack__ticks i.on { background: linear-gradient(180deg, #74a8ff, #2f5cc0); height: 74%; }
.btrack__ticks i.now {
  background: #fff; height: 100%;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}
.bx.is-in .btrack__ticks i { animation: tickUp 0.55s var(--ease) forwards; }
@keyframes tickUp { to { transform: none; opacity: 1; } }
.btrack__ticks i:nth-child(1) { animation-delay: .10s } .btrack__ticks i:nth-child(2) { animation-delay: .14s }
.btrack__ticks i:nth-child(3) { animation-delay: .18s } .btrack__ticks i:nth-child(4) { animation-delay: .22s }
.btrack__ticks i:nth-child(5) { animation-delay: .26s } .btrack__ticks i:nth-child(6) { animation-delay: .30s }
.btrack__ticks i:nth-child(7) { animation-delay: .34s } .btrack__ticks i:nth-child(8) { animation-delay: .38s }
.btrack__ticks i:nth-child(9) { animation-delay: .42s } .btrack__ticks i:nth-child(10) { animation-delay: .46s }
.btrack__ticks i:nth-child(11) { animation-delay: .50s } .btrack__ticks i:nth-child(12) { animation-delay: .54s }
.btrack__ticks i:nth-child(13) { animation-delay: .58s } .btrack__ticks i:nth-child(14) { animation-delay: .62s }
.btrack__ticks i:nth-child(15) { animation-delay: .66s } .btrack__ticks i:nth-child(16) { animation-delay: .70s }
.btrack__labels {
  display: flex; justify-content: space-between; margin-top: 10px;
  font-size: 10.5px; letter-spacing: 0.08em; color: var(--dim);
}
.btrack__labels span:last-child { color: #a9c4f5; }

/* — заблокированные эксплоиты — */
.blocked { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 6px; width: min(88%, 340px); }
.blk {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 9px 12px; border-radius: 9px; font-size: 11.5px;
  background: rgba(12, 12, 14, 0.9); border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.5);
}
.blk span { color: #b9bdc6; }
.blk i {
  font-style: normal; font-size: 10px; font-weight: 600; letter-spacing: 0.04em;
  padding: 3px 8px; border-radius: 5px;
  background: rgba(255, 59, 48, 0.14); color: #ff9c93; border: 1px solid rgba(255, 59, 48, 0.26);
}
.blk--ok { border-color: rgba(50, 215, 75, 0.26); background: rgba(9, 22, 13, 0.9); }
.blk i.ok { background: rgba(50, 215, 75, 0.14); color: #86eb9d; border-color: rgba(50, 215, 75, 0.3); }

/* — бан-лист читов — */
.banlist { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 6px; width: min(88%, 300px); }
.ban {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 14px; border-radius: 9px; font-size: 13px; font-family: var(--mono);
  background: rgba(14, 9, 10, 0.9); border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.5);
}
.ban s { color: #6c6a70; text-decoration-color: rgba(255, 59, 48, 0.8); text-decoration-thickness: 1.5px; }
.ban i {
  font-style: normal; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 5px;
  background: rgba(255, 59, 48, 0.15); color: #ff9c93;
}
.ban--ok { border-color: rgba(255, 200, 120, 0.3); background: rgba(26, 17, 8, 0.92); }
.ban--ok span { color: #ffd9a8; font-weight: 700; letter-spacing: 0.06em; }
.ban i.ok { background: rgba(255, 190, 100, 0.16); color: #ffcf96; }

/* — патроны — */
.ammo { position: relative; z-index: 2; text-align: center; }
.ammo__hud { display: flex; align-items: baseline; justify-content: center; gap: 8px; color: var(--white); }
.ammo__inf { font-size: 54px; font-weight: 700; line-height: 1; letter-spacing: -0.03em; }
.ammo__slash { font-size: 26px; color: #55555d; }
.ammo__mag { font-size: 26px; color: #9c9ca6; }
.ammo__mags { display: flex; gap: 4px; justify-content: center; margin-top: 14px; }
.ammo__mags i {
  width: 7px; height: 20px; border-radius: 2px;
  background: linear-gradient(180deg, #ffcd85, #a3660f);
  box-shadow: 0 0 10px rgba(255, 179, 64, 0.35);
  opacity: 0; transform: translateY(6px);
}
.bx.is-in .ammo__mags i { animation: magIn 0.5s var(--ease) forwards; }
.ammo__mags i:nth-child(1) { animation-delay: .2s } .ammo__mags i:nth-child(2) { animation-delay: .27s }
.ammo__mags i:nth-child(3) { animation-delay: .34s } .ammo__mags i:nth-child(4) { animation-delay: .41s }
.ammo__mags i:nth-child(5) { animation-delay: .48s } .ammo__mags i:nth-child(6) { animation-delay: .55s }
.ammo__mags i:nth-child(7) { animation-delay: .62s } .ammo__mags i:nth-child(8) { animation-delay: .69s }
@keyframes magIn { to { opacity: 1; transform: none; } }
.ammo__money { margin-top: 14px; font-size: 12.5px; color: #ffc670; letter-spacing: 0.04em; }

/* ═══════════════════════════════════════════════════
   КОНФИГ
   ═══════════════════════════════════════════════════ */
.cfg { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.cfg__bar {
  display: flex; align-items: center; gap: 8px; padding: 12px 16px; flex-wrap: wrap;
  border-bottom: 1px solid var(--line); background: #090909;
}
.cfg__bar .d { width: 9px; height: 9px; border-radius: 50%; background: #232327; }
.cfg__bar .d:first-child { background: #4a2320; }
.cfg__tabs { display: flex; gap: 4px; margin-left: 12px; }
.cfg__tab {
  padding: 6px 13px; border-radius: 100px; font-size: 12px; font-weight: 500;
  font-family: var(--mono); color: var(--dim); transition: color 0.25s, background 0.25s;
}
.cfg__tab:hover { color: var(--text); }
.cfg__tab.is-on { color: #fff; background: rgba(255, 255, 255, 0.075); }
.cfg__copy {
  margin-left: auto; font-family: var(--mono); font-size: 11px; color: var(--dim);
  padding: 6px 12px; border-radius: 100px; border: 1px solid var(--line);
  transition: color 0.25s, border-color 0.25s;
}
.cfg__copy:hover { color: var(--white); border-color: var(--line-hi); }

.cfg__body { padding: 20px 22px; font-family: var(--mono); font-size: 13px; line-height: 2.05; }
.cfg__l { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; opacity: 0; transform: translateX(-10px); }
.cfg__body.is-in .cfg__l { animation: cfgIn 0.5s var(--ease) forwards; }
@keyframes cfgIn { to { opacity: 1; transform: none; } }
.cfg__l .k { color: #9fb6d8; min-width: 236px; }
.cfg__l .v { color: #ffb066; font-weight: 700; }
.cfg__l .cm { color: #4b4b53; font-size: 12px; }
.cfg__l .bad { color: #ff7a70; min-width: 236px; text-decoration: line-through; text-decoration-color: rgba(255, 59, 48, 0.6); }
.cfg__l .good { color: #7fe39a; min-width: 236px; }

/* ═══════════════════════════════════════════════════
   КАРТЫ
   ═══════════════════════════════════════════════════ */
.mapgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(168px, 1fr)); gap: 12px; }
.mp {
  position: relative; overflow: hidden;
  padding: 26px 16px; border-radius: 14px; text-align: center;
  background: var(--card); border: 1px solid var(--line);
  transition: border-color 0.35s, transform 0.45s var(--ease), background 0.35s;
}
.mp::before {
  content: ""; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(60% 80% at 50% 120%, rgba(255, 59, 48, 0.3), transparent 70%);
  transition: opacity 0.45s;
}
.mp:hover { border-color: var(--line-hi); transform: translateY(-3px); background: var(--card-hi); }
.mp:hover::before { opacity: 1; }
.mp__n { position: relative; font-size: 12.5px; color: var(--muted); letter-spacing: 0.02em; transition: color 0.3s; }
.mp:hover .mp__n { color: var(--white); }
/* карта, которая крутится прямо сейчас */
.mp.is-now { border-color: rgba(255, 59, 48, 0.45); background: rgba(24, 9, 9, 0.85); }
.mp.is-now::before { opacity: 1; }
.mp.is-now .mp__n { color: #fff; font-weight: 700; }
.mp.is-now::after {
  content: "сейчас"; position: absolute; top: 9px; right: 10px;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  color: #ff9c93; padding: 2px 7px; border-radius: 100px; background: rgba(255, 59, 48, 0.16);
}

/* ═══════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════ */
.faq { display: flex; flex-direction: column; gap: 10px; }
.q {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden; transition: border-color 0.35s, background 0.35s;
}
.q:hover { border-color: var(--line-hi); }
.q[open] { background: var(--card-hi); border-color: var(--line-hi); }
.q summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px; cursor: pointer; list-style: none;
  font-size: 16px; font-weight: 600; letter-spacing: -0.012em; color: var(--white);
}
.q summary::-webkit-details-marker { display: none; }
.q summary i {
  position: relative; width: 16px; height: 16px; flex: none;
}
.q summary i::before, .q summary i::after {
  content: ""; position: absolute; left: 50%; top: 50%; background: var(--muted);
  transform: translate(-50%, -50%); transition: transform 0.4s var(--ease), background 0.3s;
}
.q summary i::before { width: 13px; height: 1.5px; }
.q summary i::after { width: 1.5px; height: 13px; }
.q[open] summary i::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.q[open] summary i::before { background: var(--red); }
.q__a { padding: 0 22px 22px; }
.q__a p { max-width: 74ch; font-size: 14px; line-height: 1.7; color: var(--muted); }
.q[open] .q__a { animation: qOpen 0.45s var(--ease); }
@keyframes qOpen { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ═══════════════════════════════════════════════════
   DISCORD
   ═══════════════════════════════════════════════════ */
.dsc {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap;
  padding: 34px 34px; border-radius: 18px;
  background: var(--card); border: 1px solid var(--line);
  transition: border-color 0.4s;
}
.dsc:hover { border-color: var(--line-hi); }
.dsc__glow {
  position: absolute; left: -8%; bottom: -140%; width: 60%; height: 300%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(88, 101, 242, 0.28), transparent 70%);
  filter: blur(30px); pointer-events: none;
}
.dsc__txt { position: relative; min-width: 260px; flex: 1; }
.dsc__txt h3 { font-size: clamp(19px, 2.4vw, 26px); font-weight: 600; letter-spacing: -0.02em; color: var(--white); }
.dsc__txt p { margin-top: 9px; max-width: 56ch; font-size: 14px; line-height: 1.65; color: var(--muted); }
.dsc .btn { position: relative; }

/* ═══════════════════════════════════════════════════
   РЕЙТИНГ
   ═══════════════════════════════════════════════════ */
.board {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
}
.board__head, .board__row {
  display: grid; grid-template-columns: 52px 1fr 88px 88px 104px; align-items: center;
  padding: 0 20px; gap: 10px;
}
.board__head {
  height: 44px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dim);
  border-bottom: 1px solid var(--line); background: #090909;
}
.board__c { text-align: right; }
.board__row {
  height: 62px; border-bottom: 1px solid rgba(255, 255, 255, 0.045);
  font-size: 14px; transition: background 0.3s;
  opacity: 0; transform: translateX(-14px);
}
.board.is-in .board__row { animation: rowIn 0.7s var(--ease) forwards; }
.board.is-in .board__row[data-r="1"] { animation-delay: .05s } .board.is-in .board__row[data-r="2"] { animation-delay: .13s }
.board.is-in .board__row[data-r="3"] { animation-delay: .21s } .board.is-in .board__row[data-r="4"] { animation-delay: .29s }
.board.is-in .board__row[data-r="5"] { animation-delay: .37s }
@keyframes rowIn { to { opacity: 1; transform: none; } }
.board__row:hover { background: rgba(255, 255, 255, 0.032); }
.rk {
  width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center;
  font-size: 13px; font-weight: 700; color: var(--muted);
  background: #131315; border: 1px solid rgba(255, 255, 255, 0.07);
}
.rk--1 { background: linear-gradient(160deg, #ffdf8a, #b07d14); color: #2a1c00; border-color: rgba(255, 223, 138, 0.5); }
.rk--2 { background: linear-gradient(160deg, #e6e9ef, #8d939e); color: #1c1e22; border-color: rgba(230, 233, 239, 0.45); }
.rk--3 { background: linear-gradient(160deg, #e8a878, #96562c); color: #2a1508; border-color: rgba(232, 168, 120, 0.45); }
.pl { display: flex; align-items: center; gap: 9px; font-weight: 500; color: var(--text); }
.tagline {
  font-style: normal; font-size: 10px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase;
  padding: 2px 7px; border-radius: 5px; background: rgba(255, 59, 48, 0.14); color: #ff9188;
}
.pts { color: var(--white); font-weight: 700; }
.board__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 20px; font-size: 11px; color: var(--dim); letter-spacing: 0.05em; background: #080808;
}

/* полоса статов */
.statband {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 14px;
}
.st {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  padding: 26px 20px; text-align: center; transition: border-color 0.4s, transform 0.5s var(--ease);
}
.st:hover { border-color: var(--line-hi); transform: translateY(-3px); }
.st b {
  display: block; font-size: clamp(28px, 3.6vw, 40px); font-weight: 700; letter-spacing: -0.03em; color: var(--white);
}
.st span { display: block; margin-top: 7px; font-size: 11px; letter-spacing: 0.11em; text-transform: uppercase; color: var(--dim); }

/* ═══════════════════════════════════════════════════
   ПОДКЛЮЧЕНИЕ
   ═══════════════════════════════════════════════════ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.step {
  display: flex; gap: 15px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 22px;
  transition: border-color 0.4s, transform 0.5s var(--ease), background 0.4s;
}
.step:hover { border-color: var(--line-hi); background: var(--card-hi); transform: translateY(-3px); }
.step__n {
  flex: none; width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  font-size: 12px; font-weight: 700; color: var(--muted);
  background: #131315; border: 1px solid rgba(255, 255, 255, 0.07);
}
.step p { font-size: 14px; line-height: 1.6; color: var(--muted); padding-top: 5px; }
kbd {
  font-family: var(--mono); font-size: 12px; padding: 2px 7px; border-radius: 6px; color: var(--text);
  background: #1a1a1d; border: 1px solid rgba(255, 255, 255, 0.12); box-shadow: 0 2px 0 rgba(0, 0, 0, 0.6);
}

.term {
  position: relative; margin-top: 14px; overflow: hidden;
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  transition: border-color 0.4s;
}
.term:hover { border-color: var(--line-hi); }
.term__bar {
  display: flex; align-items: center; gap: 7px; padding: 13px 18px;
  border-bottom: 1px solid var(--line); background: #090909;
}
.term__bar .d { width: 9px; height: 9px; border-radius: 50%; background: #232327; }
.term__bar .d:first-child { background: #4a2320; }
.term__t { margin-left: 8px; font-size: 11px; color: var(--dim); letter-spacing: 0.07em; }
.term__body {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  padding: 24px 22px;
}
.term__body code { font-size: clamp(13px, 1.7vw, 18px); color: #d6d6dc; }
.term__p { color: var(--red); margin-right: 8px; }

/* ═══════════════════════════════════════════════════
   ФИНАЛ / ФУТЕР
   ═══════════════════════════════════════════════════ */
.final { position: relative; text-align: center; padding: clamp(100px, 14vw, 180px) var(--pad) clamp(80px, 10vw, 130px); overflow: hidden; }
.final__glow {
  position: absolute; left: 50%; bottom: -40%; transform: translateX(-50%);
  width: min(900px, 120vw); height: 560px; pointer-events: none;
  background: radial-gradient(50% 50% at 50% 50%, rgba(200, 80, 40, 0.22), transparent 70%);
  filter: blur(26px);
}
.final__t {
  position: relative; font-size: clamp(30px, 5.4vw, 62px); font-weight: 600; line-height: 1.06;
  letter-spacing: -0.025em; color: var(--white); margin-bottom: 30px;
}
.final__ip {
  position: relative; display: block; width: fit-content; margin: 24px auto 0;
  font-size: 13px; color: var(--dim); letter-spacing: 0.08em; cursor: pointer;
  transition: color 0.3s;
}
.final__ip:hover { color: var(--text); }

.foot { border-top: 1px solid rgba(255, 255, 255, 0.055); }
.foot__in {
  max-width: 1240px; margin: 0 auto; padding: 30px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.foot__brandbox { display: flex; align-items: center; gap: 14px; }
.foot__dom {
  font-size: 12px; color: var(--muted); letter-spacing: 0.04em;
  padding: 5px 11px; border-radius: 100px;
  background: #0b0b0c; border: 1px solid var(--line);
}
.foot__nav { display: flex; gap: 22px; flex-wrap: wrap; }
.foot__nav a { font-size: 13.5px; color: var(--muted); transition: color 0.25s; }
.foot__nav a:hover { color: var(--white); }
.foot__note { font-size: 11.5px; color: var(--dim); letter-spacing: 0.08em; }

/* ═══════════════════════════════════════════════════
   ТОСТ
   ═══════════════════════════════════════════════════ */
.toast {
  position: fixed; z-index: 80; bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(24px) scale(0.96);
  display: flex; align-items: center; gap: 10px; padding: 13px 22px; border-radius: 100px;
  background: rgba(16, 16, 18, 0.92); backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  font-size: 13.5px; font-weight: 500; opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.5s var(--ease);
}
.toast svg { color: var(--green); }
.toast.is-on { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }

/* ═══════════════════════════════════════════════════
   АНИМАЦИИ ПОЯВЛЕНИЯ
   ═══════════════════════════════════════════════════ */
[data-split] .w {
  display: inline-block; overflow: hidden; vertical-align: bottom;
  padding-bottom: 0.14em; margin-bottom: -0.14em;
}
[data-split] .w > i {
  display: inline-block; font-style: inherit; transform: translateY(115%);
  transition: transform 1.05s var(--ease);
}
[data-split].is-in .w > i { transform: none; }

.reveal { opacity: 0; transform: translateY(22px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity 0.95s var(--ease), transform 0.95s var(--ease); }

/* ── ShinyText (react-bits): по серому лейблу ползёт блик ── */
.shiny {
  background: linear-gradient(110deg, #4f4f57 38%, #eceff4 50%, #4f4f57 62%);
  background-size: 260% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shiny 5.5s linear infinite;
}
@keyframes shiny { 0% { background-position: 160% 0; } 100% { background-position: -60% 0; } }

/* ── GlareHover (react-bits): диагональный блик по карточке ── */
.glare { position: absolute; inset: 0; border-radius: inherit; overflow: hidden; pointer-events: none; z-index: 2; }
.glare::before {
  content: ""; position: absolute; top: -60%; bottom: -60%; left: -55%; width: 38%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.09) 46%, rgba(255, 255, 255, 0.14) 52%, transparent);
  transform: skewX(-18deg); transition: left 0.9s var(--ease);
}
.js-spot:hover .glare::before { left: 125%; }

/* ── ClickSpark (react-bits): искры от клика ── */
.sparklayer { position: fixed; inset: 0; z-index: 90; pointer-events: none; }
.cspark {
  position: absolute; width: 12px; height: 1.6px; border-radius: 2px;
  margin: -0.8px 0 0 0; transform-origin: 0 50%;
  background: linear-gradient(90deg, #fff, rgba(255, 140, 90, 0));
  box-shadow: 0 0 6px rgba(255, 150, 100, 0.8);
}

/* курсор-спот внутри карточек */
.js-spot::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; border-radius: inherit;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 0%), rgba(255, 255, 255, 0.07), transparent 62%);
  opacity: 0; transition: opacity 0.4s;
}
.js-spot:hover::after { opacity: 1; }

/* ═══════════════════════════════════════════════════
   АДАПТИВ
   ═══════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  .bento { grid-template-columns: repeat(4, 1fr); }
  .bento > .bx, .bento > .bx--w { grid-column: span 2; min-height: 350px; }
  .bento > .bx:nth-child(5) { grid-column: span 4; min-height: 300px; }
  .menu { display: none; }
  .burger { display: flex; }
  .rail { display: none; }
  .cfg__l .k, .cfg__l .bad, .cfg__l .good { min-width: 180px; }
}
@media (max-width: 1320px) { .rail { right: 12px; } }
@media (hover: none), (max-width: 900px) {
  .cur, .cur2 { display: none !important; }
}
@media (max-width: 760px) {
  .bento, .steps, .statband { grid-template-columns: 1fr; }
  .bento > .bx, .bento > .bx--w, .bento > .bx:nth-child(5) { grid-column: span 1; min-height: 330px; }
  .collage { display: none; }
  .board__head, .board__row { grid-template-columns: 42px 1fr 74px; padding: 0 14px; }
  .board__head span:nth-child(4), .board__row span:nth-child(4) { display: none; }
  .board__head span:nth-child(3), .board__row span:nth-child(3) { display: none; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .brk { display: none; }
  .stage { aspect-ratio: 4 / 3; }
  .stage__img { object-position: 50% 42%; }
  .term__body { flex-direction: column; align-items: stretch; }
  .term__body .btn { width: 100%; }
  .foot__in { justify-content: center; text-align: center; }
  .swap { display: none; }
  .cfg__body { padding: 16px 14px; font-size: 12px; line-height: 1.9; }
  .cfg__l { gap: 8px; }
  .cfg__l .k, .cfg__l .bad, .cfg__l .good { min-width: 0; }
  .cfg__l .cm { flex-basis: 100%; }
  .cfg__tabs { margin-left: 0; }
  .cfg__copy { display: none; }
  .mapgrid { grid-template-columns: repeat(2, 1fr); }
  .dsc { padding: 26px 22px; }
  .dsc .btn { width: 100%; }
  .q summary { font-size: 15px; padding: 17px 18px; }
  .q__a { padding: 0 18px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal, [data-split] .w > i { opacity: 1 !important; transform: none !important; }
  .stage__img, .stage__word { opacity: 1 !important; transform: none !important; }
  .stage__word { transform: translateX(-50%) !important; }
  .cfg__l { opacity: 1 !important; transform: none !important; }
  .boot { display: none !important; }
  .cur, .cur2 { display: none !important; }
}
