/* ============================================================
   NeuroGepard — главная страница (лендинг)
   Единственный CSS. Классы с префиксом .gl- — со стилями
   сайта не конфликтуют.
   Ниже 900 px включается мобильная раскладка.
   ============================================================ */

.gl {
  --gl-ink: #131316;
  --gl-ink-2: #4A4A52;
  --gl-ink-3: #84848C;
  --gl-ink-4: #B4B4BC;
  --gl-ink-5: #C4C4CB;
  --gl-line: rgba(19, 19, 22, 0.08);
  --gl-brand: #F26522;
  --gl-brand-2: #FF8A3D;
  --gl-brand-3: #E0530E;
  --gl-brand-ink: #C24A12;
  --gl-teal: #2DD4BF;
  --gl-teal-2: #0F766E;
  --gl-dark: linear-gradient(150deg, #1B1B20 0%, #232329 60%, #16161A 100%);
  --gl-ease: cubic-bezier(.16, 1, .3, 1);

  box-sizing: border-box;
  width: 100%;
  font-family: Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, sans-serif;
  color: var(--gl-ink);
  background: #F6F6F7;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}
.gl *, .gl *::before, .gl *::after { box-sizing: border-box; }
.gl :where(button) { font-family: inherit; line-height: inherit; letter-spacing: inherit; color: inherit; border: 0; background: none; cursor: pointer; }
.gl :where(button:not([class])) { font-size: inherit; font-weight: inherit; }
.gl textarea { font: inherit; color: inherit; border: 0; outline: 0; background: none; resize: none; }
/* Сброс браузерных стилей ссылки — 2026-08-02, по факту (без него <a> без
   класса рисуется синим/фиолетовым и подчёркнутым: карточки инструментов,
   заголовки-ссылки, футер). В обычных страницах сайта это чинит общий
   styles.css, но лендинг его намеренно не подключает — чтобы не тащить сюда
   всю дизайн-систему кабинета и не словить конфликт классов. Поэтому сброс —
   свой, только внутри .gl, точечные text-decoration:none на нав/футере ниже
   остаются (не мешают, тот же эффект). */
.gl a { color: inherit; text-decoration: none; }
.gl-wrap { max-width: 1240px; margin: 0 auto; }

/* ---------- шапка ---------- */
.gl-nav {
  position: sticky; top: 0; z-index: 40;
  padding: 14px 40px;
  background: rgba(246, 246, 247, 0.82);
  backdrop-filter: blur(24px) saturate(170%); -webkit-backdrop-filter: blur(24px) saturate(170%);
  border-bottom: 0.5px solid rgba(19, 19, 22, 0.07);
}
.gl-nav__in { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; gap: 30px; }
.gl-brand { display: flex; align-items: center; gap: 11px; }
.gl-brand img { width: 38px; height: 38px; border-radius: 999px; display: block; box-shadow: 0 3px 10px rgba(224, 83, 14, 0.26); }
.gl-brand b { display: block; font-size: 16.5px; font-weight: 800; letter-spacing: -0.025em; }
.gl-brand span { display: block; font-size: 10px; color: var(--gl-ink-3); }
.gl-links { display: flex; align-items: center; gap: 4px; margin-left: 14px; }
.gl-links a {
  padding: 9px 14px; border-radius: 999px;
  font-size: 13.5px; font-weight: 600; color: var(--gl-ink-2); text-decoration: none;
  transition: background 200ms var(--gl-ease);
}
.gl-links a:hover { background: rgba(19, 19, 22, 0.05); color: var(--gl-ink-2); }
.gl-nav__right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.gl-live {
  display: flex; align-items: center; gap: 8px; padding: 9px 15px; border-radius: 999px;
  background: rgba(15, 118, 110, 0.09); border: 0.5px solid rgba(15, 118, 110, 0.2);
  font-size: 12.5px; font-weight: 700; color: var(--gl-teal-2); white-space: nowrap;
}
.gl-live i { width: 7px; height: 7px; border-radius: 999px; background: var(--gl-teal); animation: gl-pulse 2.2s ease-in-out infinite; }

.gl-btn {
  padding: 10px 17px; border-radius: 999px;
  font-size: 13.5px; font-weight: 600; white-space: nowrap;
  transition: background 200ms var(--gl-ease), transform 220ms var(--gl-ease);
}
.gl-btn:hover { background: rgba(19, 19, 22, 0.05); }
.gl-btn--primary {
  position: relative; overflow: hidden;
  padding: 11px 20px; color: #fff; font-weight: 700;
  background: linear-gradient(180deg, var(--gl-brand-2), var(--gl-brand-3));
  border: 0.5px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.45) inset, 0 10px 22px rgba(224, 83, 14, 0.3);
}
.gl-btn--primary:hover { transform: translateY(-2px); background: linear-gradient(180deg, var(--gl-brand-2), var(--gl-brand-3)); }
.gl-sheen {
  position: absolute; top: 0; left: 0; width: 34%; height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.42), rgba(255,255,255,0));
  animation: gl-sheen 6s var(--gl-ease) infinite;
}
.gl-btn > span, .gl-cta__btn > span { position: relative; }
.gl-burger { display: none; }

/* ---------- первый экран ---------- */
.gl-hero { position: relative; padding: 56px 40px 72px; overflow: hidden; }
.gl-blob { position: absolute; border-radius: 999px; pointer-events: none; }
.gl-blob--1 { width: 620px; height: 620px; left: -140px; top: -180px; background: radial-gradient(circle at 42% 38%, rgba(242,101,34,0.16), rgba(242,101,34,0)); filter: blur(10px); animation: gl-float 22s ease-in-out infinite; }
.gl-blob--2 { width: 560px; height: 560px; right: -120px; top: -60px; background: radial-gradient(circle at 44% 40%, rgba(41,192,232,0.14), rgba(41,192,232,0)); filter: blur(12px); animation: gl-float2 26s ease-in-out infinite; }
.gl-blob--3 { width: 520px; height: 520px; left: 44%; bottom: -260px; background: radial-gradient(circle at 40% 40%, rgba(124,125,245,0.12), rgba(124,125,245,0)); filter: blur(14px); animation: gl-float 30s ease-in-out infinite; }

.gl-hero__in { position: relative; max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.gl-hero__l { display: flex; flex-direction: column; gap: 26px; padding-top: 18px; animation: gl-rise 520ms var(--gl-ease) both; }

.gl-badge {
  align-self: flex-start; display: flex; align-items: center; gap: 9px;
  padding: 8px 15px; border-radius: 999px;
  background: rgba(255,255,255,0.9); border: 0.5px solid rgba(255,255,255,0.95);
  box-shadow: 0 6px 18px rgba(19,19,22,0.06);
  font-size: 12.5px; font-weight: 700;
}
.gl-badge i {
  width: 20px; height: 20px; border-radius: 999px; flex: none; font-style: normal;
  background: linear-gradient(160deg, var(--gl-teal), var(--gl-teal-2));
  display: flex; align-items: center; justify-content: center;
}
.gl-h1 { font-size: 60px; font-weight: 800; letter-spacing: -0.045em; line-height: 1.04; text-wrap: pretty; }
.gl-sub { font-size: 18px; line-height: 1.6; color: var(--gl-ink-2); max-width: 520px; text-wrap: pretty; }

.gl-metrics { display: flex; align-items: center; gap: 26px; }
.gl-metric b { display: block; font-size: 28px; font-weight: 800; letter-spacing: -0.035em; }
.gl-metric b i { font-style: normal; font-size: 18px; color: #FFB02E; }
.gl-metric span { display: block; font-size: 12.5px; color: var(--gl-ink-3); margin-top: 3px; }
.gl-metric--teal b { color: var(--gl-teal-2); }
.gl-vr { width: 0.5px; height: 34px; background: rgba(19,19,22,0.12); }

.gl-social {
  display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 20px;
  background: rgba(255,255,255,0.78); border: 0.5px solid rgba(255,255,255,0.95);
  box-shadow: 0 12px 28px rgba(19,19,22,0.06);
}
.gl-avas { display: flex; align-items: center; flex: none; }
.gl-ava {
  width: 34px; height: 34px; border-radius: 999px; color: #fff;
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; border: 2px solid #fff;
}
.gl-ava + .gl-ava { margin-left: -11px; }
.gl-ava--n { background: rgba(19,19,22,0.07); color: var(--gl-ink-2); font-size: 11px; }
.gl-social p { margin: 0; flex: 1; font-size: 13px; line-height: 1.5; color: var(--gl-ink-2); }

/* ---------- демо-панель ---------- */
.gl-demo { display: flex; flex-direction: column; gap: 12px; animation: gl-rise 560ms var(--gl-ease) 120ms both; }
.gl-demo__shell {
  border-radius: 28px; padding: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.62));
  backdrop-filter: blur(30px) saturate(175%); -webkit-backdrop-filter: blur(30px) saturate(175%);
  border: 0.5px solid rgba(255,255,255,0.95);
  box-shadow: 0 1px 0 rgba(255,255,255,0.95) inset, 0 26px 60px rgba(19,19,22,0.12);
}
.gl-demo__head { display: flex; align-items: center; gap: 10px; padding: 12px 14px 14px; }
.gl-demo__ico {
  width: 30px; height: 30px; border-radius: 10px; flex: none;
  background: linear-gradient(160deg, var(--gl-brand-2), var(--gl-brand-3));
  display: flex; align-items: center; justify-content: center;
}
.gl-demo__t { flex: 1; min-width: 0; }
.gl-demo__t b { display: block; font-size: 14.5px; font-weight: 700; letter-spacing: -0.015em; }
.gl-demo__t span { display: block; font-size: 11.5px; color: var(--gl-ink-3); margin-top: 1px; }

.gl-seg { display: flex; align-items: center; gap: 3px; padding: 3px; border-radius: 999px; background: rgba(19,19,22,0.05); flex: none; }
.gl-seg button { padding: 8px 15px; border-radius: 999px; font-size: 12.5px; font-weight: 600; color: var(--gl-ink-3); transition: all 220ms var(--gl-ease); }
.gl-seg button[aria-selected="true"] { background: linear-gradient(180deg, #ffffff, #f4f4f6); color: var(--gl-ink); }

.gl-pane {
  border-radius: 22px; background: #fff; border: 0.5px solid var(--gl-line);
  padding: 18px 20px 16px; min-height: 292px;
  display: flex; flex-direction: column; gap: 14px;
}
.gl-pane[hidden] { display: none; }

/* шаг 1 — ввод */
.gl-draft { flex: 1; font-size: 14.5px; line-height: 1.65; color: #2A2A32; }
.gl-caret { display: inline-block; width: 1.5px; height: 17px; background: var(--gl-brand); vertical-align: -3px; animation: gl-caret 1.1s steps(1, end) infinite; }
.gl-tools { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.gl-chip {
  display: flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 999px;
  background: rgba(19,19,22,0.05); font-size: 12.5px; font-weight: 600;
  transition: background 220ms var(--gl-ease);
}
.gl-chip:hover { background: rgba(19,19,22,0.09); }
.gl-count { margin-left: auto; font-size: 12px; color: var(--gl-ink-4); }
.gl-run {
  position: relative; overflow: hidden;
  padding: 16px; border-radius: 16px; width: 100%;
  background: linear-gradient(180deg, var(--gl-brand-2), var(--gl-brand-3));
  border: 0.5px solid rgba(255,255,255,0.28); color: #fff;
  font-size: 15px; font-weight: 700; text-align: center;
  box-shadow: 0 1px 0 rgba(255,255,255,0.45) inset, 0 14px 30px rgba(224,83,14,0.32);
  transition: transform 220ms var(--gl-ease);
}
.gl-run:hover { transform: translateY(-2px); }

/* шаг 2 — обработка */
.gl-pane--run { position: relative; overflow: hidden; gap: 16px; }
.gl-scan {
  position: absolute; left: 0; right: 0; height: 90px; pointer-events: none;
  background: linear-gradient(180deg, rgba(242,101,34,0), rgba(242,101,34,0.09), rgba(242,101,34,0));
  animation: gl-scan 2.4s linear infinite;
}
.gl-run__t { position: relative; display: flex; align-items: center; gap: 11px; }
.gl-dots { display: flex; align-items: center; gap: 4px; }
.gl-dots i { width: 7px; height: 7px; border-radius: 999px; background: var(--gl-brand); animation: gl-dot 1.1s ease-in-out infinite; }
.gl-dots i:nth-child(2) { animation-delay: .15s; }
.gl-dots i:nth-child(3) { animation-delay: .3s; }
.gl-run__t b { flex: 1; font-size: 14.5px; font-weight: 700; }
.gl-run__t span { font-size: 12px; color: var(--gl-ink-3); }
.gl-steps { position: relative; flex: 1; display: flex; flex-direction: column; gap: 11px; }
.gl-step {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 13px;
  background: rgba(15,118,110,0.07); border: 0.5px solid rgba(15,118,110,0.16);
}
.gl-step i { width: 20px; height: 20px; border-radius: 999px; flex: none; font-style: normal; background: linear-gradient(160deg, var(--gl-teal), var(--gl-teal-2)); display: flex; align-items: center; justify-content: center; }
.gl-step span { flex: 1; font-size: 13px; font-weight: 600; color: var(--gl-teal-2); }
.gl-step--now { background: rgba(19,19,22,0.04); border-color: transparent; }
.gl-step--now i { background: none; border: 2px solid rgba(19,19,22,0.14); border-top-color: var(--gl-brand); animation: gl-pulse 1.2s ease-in-out infinite; }
.gl-step--now span { color: var(--gl-ink-2); }
.gl-prog { margin-top: auto; display: flex; flex-direction: column; gap: 7px; }
.gl-prog__t { display: flex; align-items: baseline; justify-content: space-between; font-size: 12px; color: var(--gl-ink-3); }
.gl-prog__t b { color: var(--gl-ink); font-weight: 700; }
.gl-track { height: 7px; border-radius: 999px; background: rgba(19,19,22,0.07); overflow: hidden; }
.gl-track i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--gl-brand), #FF9E5C); box-shadow: 0 0 10px rgba(242,101,34,0.45); transform-origin: left; animation: gl-fill 900ms var(--gl-ease) both; }

/* шаг 3 — регистрация */
.gl-pane--gate { position: relative; overflow: hidden; padding: 22px; gap: 16px; }
.gl-blur {
  position: absolute; inset: 0; padding: 22px; pointer-events: none;
  display: flex; flex-direction: column; gap: 9px;
  filter: blur(5px); opacity: .5;
}
.gl-blur i { display: block; height: 11px; border-radius: 4px; background: rgba(19,19,22,0.16); }
.gl-blur i:nth-child(2), .gl-blur i:nth-child(5) { background: rgba(242,101,34,0.24); }
.gl-ok {
  position: relative; display: flex; align-items: center; gap: 11px;
  padding: 12px 14px; border-radius: 14px;
  background: rgba(15,118,110,0.09); border: 0.5px solid rgba(15,118,110,0.2);
}
.gl-ok i { width: 24px; height: 24px; border-radius: 999px; flex: none; font-style: normal; background: linear-gradient(160deg, var(--gl-teal), var(--gl-teal-2)); display: flex; align-items: center; justify-content: center; }
.gl-ok b { flex: 1; font-size: 13.5px; font-weight: 700; color: var(--gl-teal-2); }
.gl-gate__t { position: relative; display: flex; flex-direction: column; gap: 5px; }
.gl-gate__t b { font-size: 19px; font-weight: 700; letter-spacing: -0.025em; }
.gl-gate__t span { font-size: 13px; line-height: 1.55; color: var(--gl-ink-3); }
.gl-form { position: relative; display: flex; flex-direction: column; gap: 10px; }
.gl-input {
  display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-radius: 14px;
  background: #fff; border: 1.5px solid rgba(242,101,34,0.5); box-shadow: 0 0 0 3px rgba(242,101,34,0.1);
}
.gl-input input { flex: 1; min-width: 0; border: 0; outline: 0; background: none; font: inherit; font-size: 14.5px; }
.gl-input input::placeholder { color: var(--gl-ink-4); }
.gl-oauth { display: flex; gap: 9px; }
.gl-oauth button {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px; border-radius: 14px; background: #fff; border: 0.5px solid rgba(19,19,22,0.1);
  box-shadow: 0 4px 12px rgba(19,19,22,0.04); font-size: 13px; font-weight: 600;
  transition: transform 220ms var(--gl-ease);
}
.gl-oauth button:hover { transform: translateY(-2px); }
.gl-oauth i { width: 20px; height: 20px; border-radius: 6px; font-style: normal; color: #fff; font-size: 9.5px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.gl-oauth i.vk { background: #0077FF; }
.gl-oauth i.ya { background: #FC3F1D; border-radius: 999px; font-size: 12px; }
.gl-gate__cta {
  position: relative; overflow: hidden; width: 100%;
  padding: 15px; border-radius: 15px;
  background: linear-gradient(180deg, var(--gl-brand-2), var(--gl-brand-3));
  border: 0.5px solid rgba(255,255,255,0.28); color: #fff;
  font-size: 14.5px; font-weight: 700; text-align: center;
  box-shadow: 0 1px 0 rgba(255,255,255,0.45) inset, 0 14px 30px rgba(224,83,14,0.32);
  transition: transform 220ms var(--gl-ease);
}
.gl-gate__cta:hover { transform: translateY(-2px); }
.gl-guard { position: relative; display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 11px; color: var(--gl-ink-4); text-align: center; }

/* шаг 4 — результат */
.gl-pane--done { animation: gl-rise 420ms var(--gl-ease) both; }
.gl-tags { display: flex; align-items: center; gap: 10px; }
.gl-tag { padding: 8px 13px; border-radius: 999px; background: rgba(19,19,22,0.05); font-size: 12px; font-weight: 700; }
.gl-tag--ok { background: rgba(15,118,110,0.1); border: 0.5px solid rgba(15,118,110,0.22); color: var(--gl-teal-2); font-weight: 800; }
.gl-tags span:last-child { margin-left: auto; font-size: 12px; color: var(--gl-ink-3); font-weight: 400; }
.gl-result { flex: 1; font-size: 14.5px; line-height: 1.68; color: #2A2A32; }
.gl-mark { background: rgba(45,212,191,0.2); border-radius: 4px; padding: 1px 3px; }
.gl-done__acts { display: flex; align-items: center; gap: 9px; }
.gl-done__acts .gl-copy { flex: 1; text-align: center; padding: 13px; border-radius: 14px; background: rgba(19,19,22,0.05); font-size: 13px; font-weight: 700; transition: background 220ms var(--gl-ease); }
.gl-done__acts .gl-copy:hover { background: rgba(19,19,22,0.09); }
.gl-done__acts .gl-more {
  flex: 1.4; position: relative; overflow: hidden; text-align: center; padding: 13px; border-radius: 14px;
  background: linear-gradient(180deg, var(--gl-brand-2), var(--gl-brand-3));
  border: 0.5px solid rgba(255,255,255,0.28); color: #fff; font-size: 13px; font-weight: 700;
  box-shadow: 0 1px 0 rgba(255,255,255,0.45) inset, 0 10px 22px rgba(224,83,14,0.3);
  transition: transform 220ms var(--gl-ease);
}
.gl-done__acts .gl-more:hover { transform: translateY(-2px); }
.gl-reset { width: 46px; height: 46px; border-radius: 14px; background: rgba(19,19,22,0.05); display: flex; align-items: center; justify-content: center; flex: none; transition: background 220ms var(--gl-ease); }
.gl-reset:hover { background: rgba(19,19,22,0.09); }
.gl-balance { text-align: center; font-size: 11.5px; color: var(--gl-ink-4); }

/* прогресс шагов */
.gl-steps3 { display: flex; align-items: center; gap: 3px; padding: 0 8px; }
.gl-steps3 > div { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.gl-steps3 i { display: block; height: 3px; border-radius: 999px; background: rgba(19,19,22,0.1); transition: background 300ms var(--gl-ease); }
.gl-steps3 span { font-size: 11px; font-weight: 600; color: var(--gl-ink-4); transition: color 300ms var(--gl-ease); }
.gl-steps3 > div.is-on i { background: linear-gradient(90deg, var(--gl-brand), #FF9E5C); }
.gl-steps3 > div.is-on span { color: var(--gl-brand-ink); }
.gl-steps3__gap { width: 14px; flex: none; }

/* ---------- бегущая строка ---------- */
.gl-ticker { padding: 0 40px 18px; overflow: hidden; }
.gl-ticker__in {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; gap: 18px;
  padding: 16px 22px; border-radius: 20px; overflow: hidden;
  background: rgba(255,255,255,0.7); border: 0.5px solid rgba(255,255,255,0.95);
  box-shadow: 0 10px 26px rgba(19,19,22,0.05);
}
.gl-ticker__cap { font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; color: var(--gl-ink-4); white-space: nowrap; flex: none; }
.gl-ticker__mask {
  flex: 1; min-width: 0; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.gl-ticker__row { display: flex; align-items: center; gap: 34px; width: max-content; animation: gl-ticker 26s linear infinite; }
.gl-ticker__row span { font-size: 15px; font-weight: 700; color: var(--gl-ink-5); white-space: nowrap; }

/* ---------- секции ---------- */
.gl-sec { padding: 60px 40px; }
.gl-sec--white { background: #fff; border-top: 0.5px solid rgba(19,19,22,0.07); border-bottom: 0.5px solid rgba(19,19,22,0.07); }
.gl-sec__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.gl-sec__head--c { flex-direction: column; align-items: center; text-align: center; gap: 9px; }
.gl-kicker { font-size: 12px; font-weight: 800; letter-spacing: 0.11em; color: var(--gl-brand-ink); }
.gl-h2 { font-size: 36px; font-weight: 800; letter-spacing: -0.035em; line-height: 1.1; }
.gl-sec__note { font-size: 14px; line-height: 1.6; color: var(--gl-ink-3); max-width: 340px; text-wrap: pretty; }

/* инструменты */
.gl-tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 30px; }
.gl-card {
  border-radius: 26px; padding: 26px; background: #fff;
  border: 0.5px solid var(--gl-line); box-shadow: 0 14px 32px rgba(19,19,22,0.05);
  display: flex; flex-direction: column; gap: 14px; text-align: left;
  transition: transform 240ms var(--gl-ease), box-shadow 240ms var(--gl-ease);
}
.gl-card:hover { transform: translateY(-4px); box-shadow: 0 26px 52px rgba(19,19,22,0.12); }
.gl-card__ico { width: 46px; height: 46px; border-radius: 15px; display: flex; align-items: center; justify-content: center; }
.gl-card b { font-size: 19px; font-weight: 700; letter-spacing: -0.025em; }
.gl-card p { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--gl-ink-3); text-wrap: pretty; }
.gl-card__go { margin-top: auto; display: flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 700; color: var(--gl-brand-ink); }
.gl-new { padding: 3px 8px; border-radius: 6px; background: rgba(15,118,110,0.12); font-size: 9.5px; font-weight: 800; color: var(--gl-teal-2); }

.gl-hero-card {
  grid-column: span 2; border-radius: 26px; padding: 28px 30px;
  background: var(--gl-dark); position: relative; overflow: hidden;
  display: flex; align-items: center; gap: 30px; text-align: left;
  transition: transform 240ms var(--gl-ease);
}
.gl-hero-card:hover { transform: translateY(-4px); }
.gl-hero-card__glow { position: absolute; right: -70px; top: -80px; width: 320px; height: 320px; border-radius: 999px; background: radial-gradient(circle at 42% 42%, rgba(242,101,34,0.34), rgba(242,101,34,0)); animation: gl-float 20s ease-in-out infinite; }
.gl-hero-card__l { position: relative; flex: 1; display: flex; flex-direction: column; gap: 14px; }
.gl-pill {
  align-self: flex-start; display: flex; align-items: center; gap: 7px; padding: 6px 12px; border-radius: 999px;
  background: rgba(45,212,191,0.18); border: 0.5px solid rgba(45,212,191,0.28);
  font-size: 10.5px; font-weight: 800; color: #5EEAD4;
}
.gl-hero-card__l b { font-size: 26px; font-weight: 800; letter-spacing: -0.03em; color: #fff; }
.gl-hero-card__l p { margin: 0; font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,0.62); max-width: 400px; text-wrap: pretty; }
.gl-checkers { display: flex; align-items: center; gap: 10px; margin-top: 4px; flex-wrap: wrap; }
.gl-checkers span { padding: 7px 13px; border-radius: 999px; background: rgba(255,255,255,0.1); border: 0.5px solid rgba(255,255,255,0.16); font-size: 11.5px; font-weight: 600; color: rgba(255,255,255,0.8); }
.gl-ab { position: relative; width: 236px; flex: none; display: flex; flex-direction: column; gap: 10px; }
.gl-ab__box { padding: 14px 16px; border-radius: 16px; background: rgba(255,255,255,0.09); border: 0.5px solid rgba(255,255,255,0.16); display: flex; flex-direction: column; gap: 8px; }
.gl-ab__box--after { background: rgba(45,212,191,0.14); border-color: rgba(45,212,191,0.28); }
.gl-ab__cap { font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; color: rgba(255,255,255,0.44); }
.gl-ab__box--after .gl-ab__cap { color: #5EEAD4; }
.gl-ab__v { display: flex; align-items: baseline; gap: 8px; }
.gl-ab__v b { font-size: 30px; font-weight: 800; letter-spacing: -0.035em; color: #FF6B6B; }
.gl-ab__box--after .gl-ab__v b { color: #5EEAD4; }
.gl-ab__v span { font-size: 12px; color: rgba(255,255,255,0.5); }
.gl-ab__track { height: 6px; border-radius: 999px; background: rgba(255,255,255,0.12); overflow: hidden; }
.gl-ab__track i { display: block; height: 100%; background: #FF6B6B; transform-origin: left; animation: gl-fill 700ms var(--gl-ease) both; }
.gl-ab__box--after .gl-ab__track i { background: #5EEAD4; animation-delay: 200ms; }

.gl-card--more {
  background: linear-gradient(160deg, rgba(242,101,34,0.1), rgba(242,101,34,0.03));
  border: 1.5px dashed rgba(242,101,34,0.34); box-shadow: none; gap: 12px; justify-content: center;
}
.gl-card--more p { color: #6B6B74; }
.gl-card--more .gl-more-btn { margin-top: 4px; align-self: flex-start; padding: 10px 18px; border-radius: 999px; background: #fff; border: 0.5px solid rgba(242,101,34,0.3); font-size: 12.5px; font-weight: 700; color: var(--gl-brand-ink); }

/* как это работает */
.gl-how { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; margin-top: 34px; }
.gl-how__line { position: absolute; left: 12%; right: 12%; top: 27px; height: 2px; background: repeating-linear-gradient(90deg, rgba(19,19,22,0.12) 0 6px, transparent 6px 14px); }
.gl-how__i { position: relative; display: flex; flex-direction: column; gap: 14px; align-items: center; text-align: center; }
.gl-how__n {
  width: 56px; height: 56px; border-radius: 18px;
  background: linear-gradient(160deg, var(--gl-brand-2), var(--gl-brand-3));
  color: #fff; font-size: 22px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px rgba(224,83,14,0.3); border: 4px solid #fff;
}
.gl-how__i b { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; }
.gl-how__i p { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--gl-ink-3); max-width: 300px; text-wrap: pretty; }

/* отзывы */
.gl-rate {
  display: flex; align-items: center; gap: 12px; padding: 12px 18px; border-radius: 999px;
  background: rgba(255,255,255,0.85); border: 0.5px solid rgba(255,255,255,0.95);
  box-shadow: 0 8px 20px rgba(19,19,22,0.05); flex: none;
}
.gl-rate b { font-size: 22px; font-weight: 800; letter-spacing: -0.03em; }
.gl-rate i { font-style: normal; font-size: 15px; color: #FFB02E; letter-spacing: 0.08em; }
.gl-rate span { font-size: 12.5px; color: var(--gl-ink-3); }
.gl-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.gl-review {
  border-radius: 24px; padding: 24px; background: #fff;
  border: 0.5px solid var(--gl-line); box-shadow: 0 14px 32px rgba(19,19,22,0.05);
  display: flex; flex-direction: column; gap: 16px;
}
.gl-stars { font-size: 14px; color: #FFB02E; letter-spacing: 0.1em; }
.gl-review p { margin: 0; flex: 1; font-size: 14.5px; line-height: 1.6; color: #2A2A32; text-wrap: pretty; }
.gl-review__by { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 0.5px solid var(--gl-line); }
.gl-review__by .gl-ava { width: 40px; height: 40px; border: 0; font-size: 13px; margin: 0; }
.gl-review__by b { display: block; font-size: 13.5px; font-weight: 700; }
.gl-review__by > div > span { display: block; font-size: 11.5px; color: var(--gl-ink-3); margin-top: 2px; }

/* финальный CTA */
.gl-cta-sec { padding: 20px 40px 74px; }
.gl-cta {
  max-width: 1240px; margin: 0 auto; position: relative; overflow: hidden;
  border-radius: 32px; padding: 52px 56px; background: var(--gl-dark);
  display: flex; align-items: center; gap: 44px;
}
.gl-cta__glow1 { position: absolute; left: -80px; bottom: -160px; width: 420px; height: 420px; border-radius: 999px; background: radial-gradient(circle at 44% 40%, rgba(242,101,34,0.34), rgba(242,101,34,0)); animation: gl-float 24s ease-in-out infinite; }
.gl-cta__glow2 { position: absolute; right: -60px; top: -140px; width: 380px; height: 380px; border-radius: 999px; background: radial-gradient(circle at 42% 44%, rgba(41,192,232,0.2), rgba(41,192,232,0)); animation: gl-float2 28s ease-in-out infinite; }
.gl-cta__l { position: relative; flex: 1; display: flex; flex-direction: column; gap: 18px; }
.gl-cta__l b { font-size: 40px; font-weight: 800; letter-spacing: -0.04em; line-height: 1.1; color: #fff; text-wrap: pretty; }
.gl-cta__l p { margin: 0; font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.62); max-width: 460px; text-wrap: pretty; }
.gl-cta__acts { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.gl-cta__btn {
  position: relative; overflow: hidden; padding: 16px 30px; border-radius: 999px;
  background: linear-gradient(180deg, var(--gl-brand-2), var(--gl-brand-3));
  border: 0.5px solid rgba(255,255,255,0.3); color: #fff; font-size: 15px; font-weight: 700;
  box-shadow: 0 1px 0 rgba(255,255,255,0.45) inset, 0 16px 34px rgba(224,83,14,0.4);
  transition: transform 220ms var(--gl-ease);
}
.gl-cta__btn:hover { transform: translateY(-2px); }
.gl-cta__ghost { padding: 16px 26px; border-radius: 999px; background: rgba(255,255,255,0.1); border: 0.5px solid rgba(255,255,255,0.18); color: #fff; font-size: 15px; font-weight: 600; transition: background 220ms var(--gl-ease); }
.gl-cta__ghost:hover { background: rgba(255,255,255,0.16); }
.gl-cta__r { position: relative; width: 300px; flex: none; display: flex; flex-direction: column; gap: 12px; }
.gl-promise {
  padding: 18px 20px; border-radius: 20px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 0.5px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; gap: 14px;
}
.gl-promise__ico { width: 40px; height: 40px; border-radius: 13px; flex: none; display: flex; align-items: center; justify-content: center; }
.gl-promise b { display: block; font-size: 13.5px; font-weight: 700; color: #fff; }
.gl-promise > div > span { display: block; font-size: 11.5px; color: rgba(255,255,255,0.55); margin-top: 2px; }

/* футер */
.gl-foot { padding: 34px 40px 40px; border-top: 0.5px solid rgba(19,19,22,0.07); }
.gl-foot__in { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; gap: 24px; }
.gl-foot__brand { display: flex; align-items: center; gap: 10px; }
.gl-foot__brand img { width: 30px; height: 30px; border-radius: 999px; display: block; }
.gl-foot__brand b { font-size: 13.5px; font-weight: 700; }
.gl-foot__links { display: flex; align-items: center; gap: 20px; font-size: 12.5px; color: var(--gl-ink-3); }
.gl-foot__links a { color: var(--gl-ink-3); text-decoration: none; }
.gl-foot__links a:hover { color: var(--gl-ink); }

/* липкая панель — только мобильный */
.gl-sticky { display: none; }

/* ---------- анимации ---------- */
@keyframes gl-rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes gl-fill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes gl-sheen { 0% { transform: translateX(-130%) skewX(-18deg); } 55%, 100% { transform: translateX(360%) skewX(-18deg); } }
@keyframes gl-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
@keyframes gl-float { 0%, 100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(30px,-24px,0) scale(1.08); } }
@keyframes gl-float2 { 0%, 100% { transform: translate3d(0,0,0) scale(1.04); } 50% { transform: translate3d(-26px,26px,0) scale(.95); } }
@keyframes gl-scan { 0% { transform: translateY(-110%); } 100% { transform: translateY(560%); } }
@keyframes gl-caret { 0%, 45% { opacity: 1; } 50%, 95% { opacity: 0; } }
@keyframes gl-dot { 0%, 100% { transform: translateY(0); opacity: .35; } 50% { transform: translateY(-4px); opacity: 1; } }
@keyframes gl-ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---------- адаптив ---------- */
@media (max-width: 1200px) {
  .gl-hero__in { grid-template-columns: 1fr; gap: 34px; }
  .gl-demo { max-width: 620px; }
  .gl-tools-grid { grid-template-columns: repeat(2, 1fr); }
  .gl-hero-card { grid-column: span 2; }
  .gl-reviews { grid-template-columns: 1fr; }
  .gl-cta { flex-direction: column; align-items: stretch; gap: 28px; }
  .gl-cta__r { width: auto; }
  .gl-links a:nth-child(n+3) { display: none; }
}

@media (max-width: 900px) {
  .gl { padding-bottom: 78px; transform: translateZ(0); }

  .gl-nav { padding: 40px 16px 12px; }
  .gl-nav__in { gap: 10px; }
  .gl-links, .gl-live, .gl-nav__right .gl-btn--primary { display: none; }
  .gl-brand b { font-size: 15px; }
  .gl-brand span { font-size: 9.5px; }
  .gl-brand img { width: 34px; height: 34px; }
  .gl-burger {
    display: flex; width: 38px; height: 38px; border-radius: 11px; flex: none;
    background: rgba(19,19,22,0.05); align-items: center; justify-content: center;
  }

  .gl-hero { padding: 24px 16px 30px; }
  .gl-blob--1 { width: 400px; height: 400px; left: -140px; top: -140px; }
  .gl-blob--2 { width: 340px; height: 340px; right: -130px; top: 120px; }
  .gl-blob--3 { display: none; }
  .gl-h1 { font-size: 38px; letter-spacing: -0.04em; line-height: 1.06; }
  .gl-sub { font-size: 15px; }
  .gl-hero__l { gap: 18px; padding-top: 0; }
  .gl-badge { font-size: 11.5px; padding: 7px 13px; }
  .gl-metrics { gap: 16px; }
  .gl-metric b { font-size: 22px; }
  .gl-metric b i { font-size: 14px; }
  .gl-metric span { font-size: 11px; }
  .gl-social { order: 9; padding: 14px 16px; border-radius: 18px; }
  .gl-social p { font-size: 12px; }

  .gl-demo { max-width: none; padding: 0 16px 22px; }
  .gl-demo__shell { border-radius: 26px; padding: 7px; }
  .gl-demo__head { flex-wrap: wrap; padding: 12px 12px 13px; gap: 12px; }
  .gl-demo__t { flex: 1 1 auto; }
  .gl-seg { flex: 1 1 100%; }
  .gl-seg button { flex: 1; text-align: center; padding: 10px; }
  .gl-pane { border-radius: 21px; padding: 16px; min-height: 0; }
  .gl-draft { font-size: 13.5px; max-height: 148px; overflow: hidden; }
  .gl-chip { padding: 10px 13px; font-size: 12px; }
  .gl-run, .gl-gate__cta { font-size: 14.5px; }
  .gl-result { font-size: 13.5px; }
  .gl-guard { align-items: flex-start; text-align: left; font-size: 10.5px; line-height: 1.45; }
  .gl-steps3 { padding: 12px 6px 0; }
  .gl-steps3 span { font-size: 9.5px; font-weight: 700; }
  .gl-steps3__gap { width: 10px; }

  .gl-ticker { padding: 0 0 26px; }
  .gl-ticker__in { flex-direction: column; align-items: stretch; gap: 10px; padding: 0; background: none; border: 0; box-shadow: none; border-radius: 0; }
  .gl-ticker__cap { padding: 0 16px; font-size: 10.5px; }
  .gl-ticker__row { gap: 26px; padding-left: 16px; animation-duration: 22s; }
  .gl-ticker__row span { font-size: 14px; }

  .gl-sec { padding: 30px 0 34px; }
  .gl-sec--white { padding: 30px 16px; }
  .gl-sec .gl-wrap { padding: 0 16px; }
  .gl-sec__head { flex-direction: column; align-items: flex-start; gap: 7px; }
  .gl-h2 { font-size: 27px; }
  .gl-sec__note { display: none; }
  .gl-kicker { font-size: 11px; }

  /* инструменты и отзывы — горизонтальные ленты со снапом */
  .gl-tools-grid, .gl-reviews {
    display: flex; gap: 12px; margin-top: 16px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    scrollbar-width: none; -ms-overflow-style: none;
    padding: 2px 16px 6px;
  }
  .gl-tools-grid::-webkit-scrollbar, .gl-reviews::-webkit-scrollbar { height: 0; }
  .gl-card, .gl-review { width: 232px; flex: none; scroll-snap-align: start; padding: 22px; border-radius: 24px; }
  .gl-card b { font-size: 17px; }
  .gl-card p { font-size: 12.5px; }
  .gl-card__ico { width: 42px; height: 42px; border-radius: 14px; }
  .gl-hero-card { width: 288px; flex: none; scroll-snap-align: start; flex-direction: column; align-items: stretch; padding: 22px; border-radius: 24px; gap: 14px; }
  .gl-hero-card__l b { font-size: 21px; }
  .gl-hero-card__l p { font-size: 13px; }
  .gl-checkers { display: none; }
  .gl-ab { width: auto; flex-direction: row; gap: 9px; }
  .gl-ab__box { flex: 1; padding: 12px 13px; border-radius: 14px; }
  .gl-ab__v b { font-size: 22px; }
  .gl-ab__v span { display: none; }
  .gl-review { width: 276px; padding: 20px; border-radius: 22px; }
  .gl-review p { font-size: 13.5px; }
  .gl-rate { padding: 8px 12px; gap: 5px; }
  .gl-rate b { font-size: 16px; }
  .gl-rate i { font-size: 11px; letter-spacing: 0; }
  .gl-rate span { display: none; }
  .gl-rate i:not(:first-of-type) { display: none; }

  /* шаги — вертикально с пунктиром */
  .gl-how { display: flex; flex-direction: column; gap: 0; margin-top: 22px; }
  .gl-how__line { display: none; }
  .gl-how__i { flex-direction: row; align-items: flex-start; gap: 14px; text-align: left; }
  .gl-how__i::before {
    content: ""; position: absolute; left: 19px; top: 46px; bottom: -6px; width: 2px;
    background: repeating-linear-gradient(180deg, rgba(19,19,22,0.14) 0 5px, transparent 5px 11px);
  }
  .gl-how__i:last-child::before { display: none; }
  .gl-how__i > div { flex: 1; padding-bottom: 20px; display: flex; flex-direction: column; gap: 5px; }
  .gl-how__i:last-child > div { padding-bottom: 0; }
  .gl-how__n { width: 40px; height: 40px; border-radius: 13px; font-size: 16px; border: 0; box-shadow: 0 10px 22px rgba(224,83,14,0.28); }
  .gl-how__i b { font-size: 16px; padding-top: 8px; }
  .gl-how__i p { font-size: 12.5px; max-width: none; }

  .gl-cta-sec { padding: 0 16px 30px; }
  .gl-cta { padding: 30px 24px; border-radius: 28px; gap: 16px; }
  .gl-cta__glow2 { display: none; }
  .gl-cta__l b { font-size: 28px; letter-spacing: -0.038em; }
  .gl-cta__l p { font-size: 14px; }
  .gl-cta__acts { display: none; }
  .gl-cta__r { flex-direction: column; }
  .gl-promise { padding: 14px 15px; border-radius: 16px; }
  .gl-promise__ico { width: 34px; height: 34px; border-radius: 11px; }
  .gl-promise b { font-size: 13px; }
  .gl-promise span { font-size: 11px; }

  .gl-foot { padding: 0 16px 30px; border: 0; }
  .gl-foot__in { flex-direction: column; align-items: flex-start; gap: 14px; }
  .gl-foot__links { flex-wrap: wrap; gap: 8px 18px; font-size: 12px; }

  /* липкая панель */
  .gl-sticky {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
    padding: 10px 16px 14px;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(26px) saturate(175%); -webkit-backdrop-filter: blur(26px) saturate(175%);
    border-top: 0.5px solid var(--gl-line);
    display: flex; align-items: center; gap: 12px;
  }
  .gl-sticky__l { flex: none; }
  .gl-sticky__l b { display: block; font-size: 13px; font-weight: 800; letter-spacing: -0.02em; }
  .gl-sticky__l span { display: block; font-size: 10.5px; color: var(--gl-ink-3); margin-top: 1px; }
  .gl-sticky__btn {
    flex: 1; position: relative; overflow: hidden;
    padding: 14px; border-radius: 14px;
    background: linear-gradient(180deg, var(--gl-brand-2), var(--gl-brand-3));
    border: 0.5px solid rgba(255,255,255,0.28); color: #fff;
    font-size: 14px; font-weight: 700; text-align: center;
    box-shadow: 0 1px 0 rgba(255,255,255,0.45) inset, 0 10px 22px rgba(224,83,14,0.3);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gl * { animation: none !important; transition: none !important; }
}
