/* ============================================================
   Lead Control — landing 2.0
   Операционный терминал: глубокий чёрный, точные хейрлайны,
   моноширинные данные, продукт в кадре. Satoshi Variable + mono.
   ============================================================ */

@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi-Variable.woff2') format('woff2');
  font-weight: 300 900;
  font-display: swap;
}

:root {
  --bg: #07070B;
  --bg-alt: #0A0A10;
  --card: #0D0D14;
  --card-2: #0F0F17;
  --well: #08080D;

  --ink: #F2F2F6;
  --ink-2: #A6A6B2;
  --ink-3: #6A6A77;

  --blue: #3D7BFD;
  --green: #2EE08C;
  --amber: #FFB020;
  --red: #FF5263;

  --line: rgba(242, 242, 246, 0.08);
  --line-soft: rgba(242, 242, 246, 0.05);

  --maxw: 1140px;
  --r: 18px;
  --font: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'SF Mono', SFMono-Regular, ui-monospace, 'JetBrains Mono', Menlo, Consolas, monospace;

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --shadow: 0 30px 70px -38px rgba(0, 0, 0, 0.85);
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* атмосфера: единственный холодный верхний отсвет */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(900px 460px at 50% -140px, rgba(61, 123, 253, 0.10), transparent 62%);
}

/* зерно */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="160" height="160"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="2" stitchTiles="stitch"/><feColorMatrix type="saturate" values="0"/></filter><rect width="160" height="160" filter="url(%23n)" opacity="0.05"/></svg>');
}

main, header.nav, footer { position: relative; z-index: 3; }

::selection { background: rgba(61, 123, 253, 0.35); color: var(--ink); }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img, svg { display: block; max-width: 100%; }

:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.wrap--narrow { max-width: 820px; }

.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }

section { scroll-margin-top: 86px; }

/* ---------- type ---------- */
.h2 {
  font-size: clamp(30px, 4.6vw, 48px);
  font-weight: 580;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 18px;
}

.lead {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 580px;
  margin-bottom: 44px;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-3);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow span { color: var(--blue); }
.eyebrow span::after { content: ' /'; color: var(--ink-3); }
.eyebrow::after {
  content: '';
  height: 1px;
  flex: 0 1 180px;
  background: linear-gradient(90deg, var(--line), transparent);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  background: linear-gradient(180deg, #5B8DFF 0%, #3567E0 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.18s var(--ease), filter 0.18s, box-shadow 0.18s, border-color 0.18s, background 0.18s;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 12px 28px -14px rgba(61, 123, 253, 0.7);
}
.btn:hover { filter: brightness(1.12); transform: translateY(-1px); }
.btn:active { transform: translateY(0); filter: brightness(0.98); }

.btn--ghost {
  background: transparent;
  border-color: rgba(242, 242, 246, 0.14);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.btn--ghost:hover { background: rgba(242, 242, 246, 0.05); border-color: rgba(242, 242, 246, 0.26); filter: none; }

.btn--sm { padding: 9px 20px; font-size: 13.5px; }
.btn--full { width: 100%; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  transition: background 0.25s, border-color 0.25s, backdrop-filter 0.25s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(7, 7, 11, 0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.nav__in { display: flex; align-items: center; gap: 28px; height: 66px; }

.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 640; letter-spacing: -0.02em; font-size: 16.5px; }
.brand__mark {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(61, 123, 253, 0.12);
  border: 1px solid rgba(61, 123, 253, 0.35);
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2.5px;
  padding-bottom: 6px;
}
.brand__mark i { width: 3px; border-radius: 2px; display: block; }
.brand__mark i:nth-child(1) { height: 13px; background: var(--blue); }
.brand__mark i:nth-child(2) { height: 9px;  background: var(--green); }
.brand__mark i:nth-child(3) { height: 5px;  background: var(--amber); }

.nav__links { display: flex; gap: 26px; margin-left: auto; }
.nav__links a { font-size: 14px; color: var(--ink-2); transition: color 0.16s; }
.nav__links a:hover { color: var(--ink); }
.nav__cta { flex-shrink: 0; }

.burger { display: none; width: 40px; height: 40px; position: relative; }
.burger i {
  position: absolute; left: 10px; right: 10px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.25s var(--ease), top 0.25s var(--ease);
}
.burger i:nth-child(1) { top: 15px; }
.burger i:nth-child(2) { top: 23px; }
.nav.is-open .burger i:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav.is-open .burger i:nth-child(2) { top: 19px; transform: rotate(-45deg); }

/* ---------- hero ---------- */
.hero { padding: 170px 0 0; }
.hero__in { text-align: center; display: flex; flex-direction: column; align-items: center; }

.live-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-2);
  padding: 7px 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(13, 13, 20, 0.6);
  margin-bottom: 30px;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(46, 224, 140, 0.5);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(46, 224, 140, 0.45); }
  70%  { box-shadow: 0 0 0 8px rgba(46, 224, 140, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 224, 140, 0); }
}

.hero__h1 {
  font-size: clamp(40px, 7vw, 78px);
  font-weight: 590;
  letter-spacing: -0.032em;
  line-height: 1.05;
  max-width: 900px;
}
.t {
  font-family: var(--mono);
  font-size: 0.74em;
  font-weight: 560;
  padding: 0.04em 0.22em 0.07em;
  border-radius: 0.16em;
  vertical-align: 0.04em;
  letter-spacing: -0.02em;
}
.t--night { color: var(--amber); background: rgba(255, 176, 32, 0.1); border: 1px solid rgba(255, 176, 32, 0.28); }
.t--day   { color: var(--green); background: rgba(46, 224, 140, 0.1); border: 1px solid rgba(46, 224, 140, 0.28); }

.hero__sub {
  font-size: 17.5px;
  color: var(--ink-2);
  max-width: 620px;
  margin: 26px 0 34px;
}

.hero__cta { display: flex; gap: 14px; }
.hero__trust { margin-top: 30px; font-size: 12px; color: var(--ink-3); }

/* ---------- showcase ---------- */
.showcase { position: relative; margin-top: 64px; padding-bottom: 56px; }

.win {
  background: #0B0B12;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}
.win__bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line-soft);
}
.win__dots { display: flex; gap: 6px; }
.win__dots i { width: 10px; height: 10px; border-radius: 50%; background: rgba(242, 242, 246, 0.12); }
.win__url { flex: 1; text-align: center; font-size: 12px; color: var(--ink-3); }
.win__live { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; color: var(--green); }

.app { display: grid; grid-template-columns: 148px 1fr 196px; min-height: 380px; }

.side { border-right: 1px solid var(--line-soft); padding: 16px 10px; display: flex; flex-direction: column; gap: 2px; }
.side__item {
  font-size: 13px;
  color: var(--ink-3);
  padding: 8px 12px;
  border-radius: 9px;
}
.side__item.is-active { color: var(--ink); background: rgba(61, 123, 253, 0.12); }

.app__main { padding: 18px 20px; min-width: 0; }
.app__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.app__head strong { font-size: 14.5px; font-weight: 620; letter-spacing: -0.01em; }
.app__tz { font-size: 11px; color: var(--ink-3); }

.ltable { border: 1px solid var(--line-soft); border-radius: 12px; overflow: hidden; background: var(--well); }
.lrow {
  display: grid;
  grid-template-columns: 56px 1.15fr 62px 1fr 84px 104px;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  font-size: 13px;
  border-top: 1px solid var(--line-soft);
  white-space: nowrap;
}
.lrow > span { overflow: hidden; text-overflow: ellipsis; }
.lrow--head { border-top: 0; font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3); padding: 10px 14px 8px; }
.lrow .mono { font-size: 12px; color: var(--ink-2); }
.lrow.is-new { animation: rowIn 0.55s var(--ease); }
@keyframes rowIn {
  from { opacity: 0; transform: translateY(-9px); }
  to   { opacity: 1; transform: none; }
}

.badge {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px 4px;
  border-radius: 6px;
  font-style: normal;
}
.badge--q { color: var(--amber); background: rgba(255, 176, 32, 0.1);  border: 1px solid rgba(255, 176, 32, 0.25); }
.badge--d { color: #7BA6FF;      background: rgba(61, 123, 253, 0.1);  border: 1px solid rgba(61, 123, 253, 0.3); }
.badge--f { color: var(--green); background: rgba(46, 224, 140, 0.1);  border: 1px solid rgba(46, 224, 140, 0.3); }

.rail {
  border-left: 1px solid var(--line-soft);
  padding: 16px 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  align-content: start;
}
.kpi {
  background: var(--card-2);
  border: 1px solid var(--line-soft);
  border-radius: 11px;
  padding: 8px 12px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.kpi__l { font-size: 9px; text-transform: uppercase; letter-spacing: 0.09em; color: var(--ink-3); }
.kpi__v { font-size: 15px; font-weight: 620; letter-spacing: -0.02em; white-space: nowrap; }
.kpi__v--g { color: var(--green); }
.kpi__v.tick { animation: tickPop 0.5s var(--ease); }
@keyframes tickPop {
  0% { transform: scale(1); }
  35% { transform: scale(1.14); }
  100% { transform: scale(1); }
}

.spark { grid-column: 1 / -1; width: 100%; height: 38px; margin: 4px 0; }
.spark polyline { fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.qcard {
  grid-column: 1 / -1;
  background: rgba(255, 176, 32, 0.07);
  border: 1px solid rgba(255, 176, 32, 0.22);
  border-radius: 11px;
  padding: 11px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.qcard__l { font-size: 9px; text-transform: uppercase; letter-spacing: 0.09em; color: var(--amber); }
.qcard strong { font-size: 15px; }
.qcard__t { font-size: 10.5px; color: var(--ink-3); }

/* floats */
.float { position: absolute; z-index: 5; }

.fc-hold {
  left: max(-8px, calc((100% - 1156px) / 2));
  top: 34%;
  display: flex;
  gap: 11px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 16px;
  box-shadow: var(--shadow);
  animation: floatY 7s ease-in-out infinite;
}
.fc-hold strong { display: block; font-size: 13px; font-weight: 620; letter-spacing: -0.01em; }
.fc-hold span:not(.dot) { font-size: 12px; color: var(--ink-3); }
.fc-hold .dot { margin-top: 5px; }

.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; flex-shrink: 0; }
.dot--amber { background: var(--amber); }
.dot--green { background: var(--green); }
.dot--red   { background: var(--red); }

.phone {
  right: max(12px, calc((100% - 1216px) / 2));
  bottom: -34px;
  width: 252px;
  background: #0A0A11;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 16px 14px 18px;
  box-shadow: var(--shadow);
  animation: floatY 8s ease-in-out 1.2s infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.phone__head { display: flex; align-items: center; gap: 10px; padding-bottom: 12px; border-bottom: 1px solid var(--line-soft); margin-bottom: 12px; }
.phone__ava {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(61, 123, 253, 0.16);
  border: 1px solid rgba(61, 123, 253, 0.4);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.phone__head strong { display: block; font-size: 13px; font-weight: 640; letter-spacing: -0.01em; }
.phone__head span { font-size: 10px; color: var(--ink-3); }

.phone__stack { display: flex; flex-direction: column; gap: 8px; }
.push {
  background: #11111A;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--ink-2);
}
.push b { color: var(--ink); font-weight: 620; }
.push em { font-style: normal; color: var(--green); font-size: 11.5px; }
.push.is-new { animation: rowIn 0.5s var(--ease); }

/* ---------- proof ---------- */
.proof { padding: 64px 0 0; }
.proof__in {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 30px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.proof__item { text-align: center; }
.proof__item strong { display: block; font-size: clamp(26px, 3vw, 34px); font-weight: 620; letter-spacing: -0.03em; color: var(--ink); }
.proof__item span { font-size: 13px; color: var(--ink-3); }
.proof__verts { text-align: center; padding: 22px 0 0; font-size: 12px; color: var(--ink-3); letter-spacing: 0.06em; }

/* ---------- sections ---------- */
.sec { padding: clamp(88px, 11vw, 148px) 0; }
.sec--alt { background: var(--bg-alt); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }

/* ---------- problem sim ---------- */
.sim {
  background: #0B0B12;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px 24px 20px;
  box-shadow: var(--shadow);
}
.sim__lane + .sim__lane { margin-top: 22px; }
.sim__head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 10px; }
.sim__name { font-size: 14px; font-weight: 620; letter-spacing: -0.01em; }
.sim__sum { font-size: 15px; transition: transform 0.2s; }
.sim__sum--bad { color: var(--red); }
.sim__sum--ok { color: var(--green); }
.sim__sum.bump { animation: tickPop 0.4s var(--ease); }

.sim__strip {
  position: relative;
  height: 58px;
  background: var(--well);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
}
.sim__win {
  position: absolute;
  top: 0; bottom: 0;
  background: rgba(61, 123, 253, 0.07);
  border-left: 1px solid rgba(61, 123, 253, 0.3);
  border-right: 1px solid rgba(61, 123, 253, 0.3);
}
.sim__win span {
  position: absolute;
  top: 5px; left: 7px;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(123, 166, 255, 0.75);
  white-space: nowrap;
}
.sim__cursor {
  position: absolute;
  top: -5px; bottom: -5px;
  width: 2px;
  margin-left: -1px;
  background: linear-gradient(180deg, transparent, rgba(242, 242, 246, 0.55), transparent);
  left: 0;
}
.sim__dot {
  position: absolute;
  top: 50%;
  width: 11px; height: 11px;
  margin: -5.5px 0 0 -5.5px;
  border-radius: 50%;
  background: #34343F;
  border: 1px solid rgba(242, 242, 246, 0.28);
  transition: left 1.1s cubic-bezier(0.3, 0.7, 0.3, 1), background 0.3s, transform 0.35s, opacity 0.7s, box-shadow 0.3s, border-color 0.3s;
}
.sim__dot.is-held {
  background: var(--amber);
  border-color: transparent;
  box-shadow: 0 0 0 4px rgba(255, 176, 32, 0.14);
}
.sim__dot.is-done {
  background: var(--green);
  border-color: transparent;
  box-shadow: 0 0 0 4px rgba(46, 224, 140, 0.15);
  transform: scale(1.05);
}
.sim__dot.is-dead {
  background: var(--red);
  border-color: transparent;
  opacity: 0.42;
  transform: scale(0.75);
}

.sim__axis { display: flex; justify-content: space-between; margin-top: 9px; font-size: 10px; color: var(--ink-3); }
.sim__legend { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 16px; font-size: 11.5px; color: var(--ink-3); }
.sim__legend span { display: inline-flex; align-items: center; gap: 8px; }

.problem__notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 46px;
}
.problem__notes p { font-size: 14.5px; color: var(--ink-2); }
.problem__notes strong { color: var(--ink); font-weight: 620; }

/* ---------- how / waterfall ---------- */
.how { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; margin-top: 10px; }

.how__steps { display: flex; flex-direction: column; gap: 30px; }
.how__step { display: flex; gap: 18px; }
.how__n {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(61, 123, 253, 0.4);
  background: rgba(61, 123, 253, 0.1);
  color: var(--blue);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.how__step strong { display: block; font-size: 16.5px; font-weight: 620; letter-spacing: -0.015em; margin-bottom: 5px; }
.how__step p { font-size: 14.5px; color: var(--ink-2); }

.wf {
  background: #0B0B12;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 28px;
  box-shadow: var(--shadow);
}
.wf__node {
  background: var(--card-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2px 14px;
  transition: border-color 0.3s, box-shadow 0.3s, opacity 0.3s;
}
.wf__node strong { font-size: 14.5px; font-weight: 630; letter-spacing: -0.01em; }
.wf__tag { grid-column: 1 / -1; font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-3); }
.wf__sub { font-size: 11.5px; color: var(--ink-3); }
.wf__verdict { opacity: 0; transition: opacity 0.3s, color 0.3s; }

.wf__node.is-on { border-color: rgba(61, 123, 253, 0.55); box-shadow: 0 0 0 4px rgba(61, 123, 253, 0.07); }
.wf__node.is-no { opacity: 0.52; }
.wf__node.is-no .wf__verdict { opacity: 1; color: var(--red); }
.wf__node.is-yes { border-color: rgba(46, 224, 140, 0.5); box-shadow: 0 0 0 4px rgba(46, 224, 140, 0.07); }
.wf__node.is-yes .wf__verdict { opacity: 1; color: var(--green); }

.wf__node--lead { border-color: rgba(61, 123, 253, 0.35); }

.wf__line {
  width: 2px; height: 22px;
  margin-left: 32px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.wf__line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--blue);
  transform: translateY(-102%);
  transition: transform 0.4s ease;
}
.wf__line.is-on::after { transform: translateY(0); }

.wf__result {
  margin-top: 18px;
  font-size: 13px;
  color: var(--ink-2);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.45s, transform 0.45s;
}
.wf__result em { font-style: normal; font-weight: 700; color: var(--green); }
.wf__result.is-on { opacity: 1; transform: none; }

/* ---------- who ---------- */
.who { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 10px; }
.who__card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 26px;
  transition: transform 0.25s var(--ease), border-color 0.25s;
}
.who__card:hover { transform: translateY(-4px); border-color: rgba(242, 242, 246, 0.16); }
.who__card h3 { font-size: 18px; font-weight: 640; letter-spacing: -0.015em; margin-bottom: 10px; }
.who__pain { font-size: 13.5px; color: var(--ink-3); margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px dashed var(--line); }
.who__card li {
  position: relative;
  padding-left: 24px;
  font-size: 14.5px;
  color: var(--ink-2);
  margin-bottom: 9px;
}
.who__card li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--green);
}

/* ---------- bento features ---------- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 10px; }
.bcard {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px 20px 24px;
  transition: transform 0.25s var(--ease), border-color 0.25s;
}
.bcard:hover { transform: translateY(-4px); border-color: rgba(242, 242, 246, 0.16); }
.bcard h3 { font-size: 16.5px; font-weight: 640; letter-spacing: -0.015em; margin-bottom: 7px; }
.bcard > p { font-size: 13.5px; color: var(--ink-2); }

.bcard__ui {
  background: var(--well);
  border: 1px solid var(--line-soft);
  border-radius: 13px;
  padding: 14px;
  margin-bottom: 18px;
  min-height: 122px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  justify-content: center;
}

.mini-prio {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card-2);
  border: 1px solid var(--line-soft);
  border-radius: 9px;
  padding: 7px 11px;
}
.mini-prio span { font-size: 11px; color: var(--blue); width: 12px; }
.mini-prio strong { font-size: 12.5px; font-weight: 620; }
.mini-prio em { font-style: normal; font-size: 10.5px; color: var(--ink-3); margin-left: auto; font-family: var(--mono); }
.mini-prio--dim { opacity: 0.55; }

.mini-sched {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: auto auto;
  gap: 6px 5px;
  text-align: center;
}
.mini-sched span { font-size: 9.5px; color: var(--ink-3); }
.mini-sched i { height: 20px; border-radius: 5px; background: var(--card-2); border: 1px solid var(--line-soft); }
.mini-sched i.on { background: rgba(61, 123, 253, 0.18); border-color: rgba(61, 123, 253, 0.4); }
.mini-sched i.half { background: linear-gradient(90deg, rgba(255, 176, 32, 0.18) 50%, var(--card-2) 50%); border-color: rgba(255, 176, 32, 0.3); }
.mini-cap { font-size: 10.5px; color: var(--ink-3); text-align: center; }

.mini-lead { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.mini-lead span { font-size: 13px; color: var(--ink-2); }
.mini-btn {
  font-size: 12.5px;
  font-weight: 620;
  background: var(--blue);
  color: #fff;
  padding: 8px 13px;
  border-radius: 9px;
  box-shadow: 0 8px 18px -10px rgba(61, 123, 253, 0.7);
}

.mini-roles { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.chip {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  color: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
}
.chip--blue { color: var(--blue); border-color: rgba(61, 123, 253, 0.45); background: rgba(61, 123, 253, 0.09); }

.mini-fin { display: flex; justify-content: space-between; align-items: baseline; font-size: 12px; color: var(--ink-2); }
.mini-fin strong { font-size: 17px; color: var(--ink); letter-spacing: -0.02em; }
.mini-fin em { font-style: normal; color: var(--green); }
.mini-fin--row { font-size: 11.5px; color: var(--ink-3); padding-top: 6px; border-top: 1px dashed var(--line-soft); }
.mini-fin--row:last-child em { color: var(--ink-2); }

.mini-bars { display: flex; flex-direction: column; gap: 9px; width: 100%; }
.mini-bar { display: grid; grid-template-columns: 24px 1fr 34px; align-items: center; gap: 9px; }
.mini-bar span { font-size: 10.5px; color: var(--ink-3); }
.mini-bar em { font-style: normal; font-size: 10.5px; color: var(--ink-2); text-align: right; }
.mini-bar i {
  display: block;
  height: 8px;
  width: var(--w);
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(61, 123, 253, 0.5), var(--blue));
}

/* ---------- cases ---------- */
.cases { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 10px; }
.case {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 30px 30px 28px;
}
.case__tag { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-3); }
.case__nums { display: flex; gap: 42px; margin: 20px 0 16px; }
.case__nums strong {
  display: block;
  font-size: clamp(34px, 3.6vw, 44px);
  font-weight: 620;
  letter-spacing: -0.035em;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}
.case__nums span { font-size: 13px; color: var(--ink-3); display: block; max-width: 150px; line-height: 1.4; }
.case__txt { font-size: 14.5px; color: var(--ink-2); }

/* ---------- compare ---------- */
.cmp {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--card);
  overflow-x: auto;
  margin-top: 8px;
}
.cmp__row {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  align-items: center;
  min-width: 640px;
  border-top: 1px solid var(--line-soft);
}
.cmp__row > span { padding: 15px 22px; font-size: 14px; color: var(--ink-2); }
.cmp__row > span:not(:first-child) { text-align: center; border-left: 1px solid var(--line-soft); }
.cmp__row--head { border-top: 0; background: var(--card-2); }
.cmp__row--head > span { font-size: 13.5px; font-weight: 640; color: var(--ink); letter-spacing: -0.01em; }
.cmp__row--head em { display: block; font-style: normal; font-weight: 400; font-size: 10px; color: var(--ink-3); margin-top: 3px; letter-spacing: 0.04em; }
.cmp__lc { color: var(--blue) !important; }
.cmp .ok  { color: var(--green); font-size: 16px; font-weight: 700; }
.cmp .no  { color: rgba(242, 242, 246, 0.22); font-size: 14px; }
.cmp .mid { color: var(--amber); font-family: var(--mono); font-size: 11.5px; }

/* ---------- pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; margin-top: 16px; }
.plan {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), border-color 0.25s;
}
.plan:hover { transform: translateY(-4px); }
.plan h3 { font-size: 17px; font-weight: 640; letter-spacing: -0.015em; }
.plan__price { margin: 14px 0 6px; display: flex; align-items: baseline; gap: 6px; }
.plan__price strong { font-size: 42px; font-weight: 630; letter-spacing: -0.04em; line-height: 1; }
.plan__price span { font-size: 14px; color: var(--ink-3); }
.plan ul { margin: 18px 0 26px; flex: 1; }
.plan li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 9px;
}
.plan li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--blue);
}
.plan--hot {
  border-color: rgba(61, 123, 253, 0.5);
  box-shadow: 0 0 0 4px rgba(61, 123, 253, 0.06), var(--shadow);
}
.plan--hot li::before { color: var(--green); }
.plan__badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan--custom .plan__price strong { font-size: 26px; letter-spacing: -0.02em; }
.plans__note { text-align: center; margin-top: 28px; font-size: 12px; color: var(--ink-3); }

/* ---------- faq ---------- */
.faq { border-top: 1px solid var(--line); margin-top: 8px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 2px;
  cursor: pointer;
  font-size: 16.5px;
  font-weight: 560;
  letter-spacing: -0.015em;
  transition: color 0.16s;
}
.faq summary:hover { color: #fff; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary i {
  position: relative;
  flex-shrink: 0;
  width: 22px; height: 22px;
}
.faq summary i::before, .faq summary i::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 2px;
  margin: -1px 0 0 -6px;
  background: var(--ink-3);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), background 0.2s;
}
.faq summary i::after { transform: rotate(90deg); }
.faq details[open] summary i::before { background: var(--blue); transform: rotate(180deg); }
.faq details[open] summary i::after { background: var(--blue); transform: rotate(180deg); }
.faq details p { padding: 0 40px 22px 2px; font-size: 14.5px; color: var(--ink-2); max-width: 660px; }

/* ---------- access ---------- */
.access { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; }
.access__pitch .lead { margin-bottom: 28px; }
.access__list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  color: var(--ink-2);
  margin-bottom: 11px;
}
.access__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--green);
}

.aform {
  background: #0B0B12;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 30px 26px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.field label em { font-style: normal; text-transform: none; letter-spacing: 0; opacity: 0.7; }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--well);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.18s, box-shadow 0.18s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(106, 106, 119, 0.75); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: rgba(61, 123, 253, 0.6);
  box-shadow: 0 0 0 4px rgba(61, 123, 253, 0.1);
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path d="M1 1.5 6 6.5 11 1.5" stroke="%236A6A77" stroke-width="1.8" fill="none" stroke-linecap="round"/></svg>');
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}
.field textarea { resize: vertical; min-height: 84px; }
.field.is-invalid input, .field.is-invalid select { border-color: rgba(255, 82, 99, 0.65); box-shadow: 0 0 0 4px rgba(255, 82, 99, 0.08); }

.aform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.aform__ok { margin-top: 14px; font-size: 14px; color: var(--green); text-align: center; }
.aform__note { text-align: center; margin-top: 14px; font-size: 11px; color: var(--ink-3); }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line-soft); padding: 38px 0 30px; }
.footer__in { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.footer__links { display: flex; gap: 24px; margin-left: auto; }
.footer__links a { font-size: 13.5px; color: var(--ink-2); transition: color 0.16s; }
.footer__links a:hover { color: var(--ink); }
.footer__tg { display: flex; flex-direction: column; gap: 4px; text-align: right; }
.footer__tg a { font-size: 12.5px; color: var(--blue); }
.footer__tg a:hover { text-decoration: underline; }
.footer__sub {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  font-size: 11px;
  color: var(--ink-3);
}

/* ---------- modal ---------- */
.modal { position: fixed; inset: 0; z-index: 80; display: flex; align-items: center; justify-content: center; padding: 24px; }
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(4, 4, 8, 0.72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.24s;
}
.modal__card {
  position: relative;
  background: #0E0E15;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 40px 36px 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  transition: opacity 0.24s, transform 0.24s var(--ease);
}
.modal.is-open .modal__backdrop { opacity: 1; }
.modal.is-open .modal__card { opacity: 1; transform: none; }

.modal__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(46, 224, 140, 0.1);
  border: 1px solid rgba(46, 224, 140, 0.4);
  color: var(--green);
  font-size: 22px;
}
.modal__card h3 { font-size: 23px; font-weight: 620; letter-spacing: -0.02em; margin: 18px 0 8px; }
.modal__card p { font-size: 14.5px; color: var(--ink-2); }
.modal__actions { display: flex; gap: 12px; margin-top: 24px; }
.modal__actions .btn { flex: 1; padding: 12px 10px; font-size: 13.5px; }
.modal__x {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 10px;
  color: var(--ink-3);
  font-size: 14px;
  transition: color 0.16s, background 0.16s;
}
.modal__x:hover { color: var(--ink); background: rgba(242, 242, 246, 0.06); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.force-in .reveal { opacity: 1 !important; transform: none !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1240px) {
  .fc-hold { left: 8px; }
  .phone { right: 8px; }
}

@media (max-width: 1040px) {
  .how { grid-template-columns: 1fr; gap: 44px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .access { grid-template-columns: 1fr; gap: 44px; }
  .phone { width: 230px; bottom: -22px; }
}

@media (max-width: 920px) {
  .nav__links { display: none; }
  .nav__cta { margin-left: auto; }
  .burger { display: block; }
  .nav__in { gap: 14px; }
  .nav.is-open { background: #09090E; }
  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    top: 66px; left: 0; right: 0;
    background: #09090E;
    border-bottom: 1px solid var(--line);
    padding: 14px 24px 20px;
    box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.8);
  }
  .nav.is-open .nav__links a { padding: 11px 4px; font-size: 16px; color: var(--ink); border-bottom: 1px solid var(--line-soft); }

  .who { grid-template-columns: 1fr; }
  .cases { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .plan--hot { order: -1; }
  .problem__notes { grid-template-columns: 1fr; gap: 18px; }
  .fc-hold { display: none; }
}

@media (max-width: 800px) {
  .app { grid-template-columns: 1fr; min-height: 0; }
  .side { display: none; }
  .rail {
    border-left: 0;
    border-top: 1px solid var(--line-soft);
    grid-template-columns: repeat(2, 1fr);
  }
  .phone {
    position: static;
    margin: 22px auto 0;
    animation: none;
    width: min(320px, 100%);
  }
  .showcase { padding-bottom: 0; }
}

@media (max-width: 760px) {
  .hero { padding-top: 132px; }
  .proof__in { grid-template-columns: repeat(2, 1fr); gap: 26px 14px; }
}

@media (max-width: 640px) {
  .bento { grid-template-columns: 1fr; }
  .aform__row { grid-template-columns: 1fr; gap: 0; }
  .hero__cta { flex-direction: column; align-self: stretch; padding: 0 8px; }
  .hero__trust { font-size: 10.5px; }
  .lrow { grid-template-columns: 44px 1fr 48px 92px; gap: 7px; padding: 9px 10px; font-size: 12px; }
  .hide-s, .lrow > span:nth-child(5) { display: none; }
  .sim__dot { width: 9px; height: 9px; margin: -4.5px 0 0 -4.5px; }
  .sim__axis span:nth-child(even) { display: none; }
  .modal__actions { flex-direction: column; }
  .footer__in { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer__links { margin-left: 0; flex-wrap: wrap; }
  .footer__tg { text-align: left; }
  .sim { padding: 18px 14px 16px; }
  .sim__win span { display: none; }
  .faq details p { padding-right: 8px; }
}

/* ============================================================
   LUX LAYER — high-end отделка (SaaS: без серифа, без золота)
   ============================================================ */

/* акцент в заголовках — фирменный синий градиент */
.lux { font-style: normal; font-weight: inherit; }

/* металлический градиент на заголовках */
.hero__h1, .h2 {
  background: linear-gradient(180deg, #FFFFFF 0%, #BCBCCA 118%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__h1 .lux, .h2 .lux {
  background: linear-gradient(120deg, #9DBCFF 0%, #4A82FF 92%);
  -webkit-background-clip: text;
  background-clip: text;
}
.t { -webkit-text-fill-color: currentColor; } /* чипы не глушим градиентом */

.hero__sub .t { font-size: 0.95em; padding: 0.02em 0.3em 0.05em; }

/* маркетинговые цифры — металлик, табличные */
.proof__item strong {
  font-size: clamp(28px, 3.1vw, 37px);
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #FFFFFF 0%, #B9B9C8 120%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* машинная кромка: верхний блик на поверхностях */
.win, .sim, .wf, .aform, .phone, .fc-hold, .modal__card {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), var(--shadow);
}
.who__card, .bcard, .case, .plan, .cmp {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.plan--hot {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 0 0 4px rgba(61, 123, 253, 0.06), var(--shadow);
}

/* чип статуса — стекло потоньше */
.live-chip {
  border-color: rgba(242, 242, 246, 0.12);
  background: rgba(15, 15, 22, 0.55);
  letter-spacing: 0.02em;
}

/* акцент в подвале — без курсива, чуть светлее */
.footer__sub .lux { color: var(--ink-2); }

/* тонкий скроллбар */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: #1C1C26;
  border-radius: 8px;
  border: 3px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover { background: #26262F; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
