/* СВОД — публичный лендинг + кабинет заказчика.
 * Тот же дизайн-язык, что svod.css (кабинет исполнителя):
 * белый фон/лёгкий градиент, тонкие крупные заголовки (300), пилюли-кнопки,
 * мягкие серые карточки radius 22, акцент индиго #4f46e5, IBM Plex Sans, много воздуха.
 * НЕ переопределяет svod.css — отдельные файлы. */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { height: 100%; scroll-behavior: smooth; }
[hidden] { display: none !important; }

:root {
  --accent: #4f46e5;
  --accent-soft: #eef0ff;
  --accent-deep: #4338ca;
  --ink: #0d0d0f;
  --ink2: #55575e;
  --ink3: #9497a0;
  --line: #ececee;
  --line2: #e2e2e6;
  --card: #f6f6f7;
  --card2: #f0f0f2;
  --bg: #ffffff;
  --ok: #16a34a;
  --warn: #d97706;
  --danger: #dc2626;
  --mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --r: 14px;
  --r-lg: 22px;
  --r-pill: 999px;
}

body {
  font-family: 'IBM Plex Sans', 'Inter', -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  background: var(--bg);
  line-height: 1.5;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

/* ---- типографика заголовков: балансировка строк, контроль переносов ---- */
h1, h2, h3, h4, h5,
.tk-hero h1, .section h2, .net-band h2, .cta-band h2,
.page-head h1, .page-hero h1 {
  text-wrap: balance;
  hyphens: manual;
  -webkit-hyphens: manual;
  overflow-wrap: break-word;
  word-break: normal;
}
.tk-hero__lead, .section-lead, .net-band__lead, .cta-band p,
.page-hero .sub, .page-head .lead, .prose p {
  text-wrap: pretty;
}

/* ============ BUTTONS (общие) ============ */
.btn {
  font-family: inherit; font-size: 14px; font-weight: 500; letter-spacing: .005em;
  padding: 11px 22px; border: 1px solid var(--line2); background: #fff; color: var(--ink);
  border-radius: var(--r-pill); text-decoration: none;
  cursor: pointer; transition: all .15s; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.btn:hover { border-color: var(--ink); }
.btn--primary { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn--primary:hover { background: #2a2a30; border-color: #2a2a30; }
.btn--accent { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.btn--ghost { background: #fff; }
.btn--sm { padding: 8px 16px; font-size: 13px; }
.btn--lg { padding: 15px 30px; font-size: 15px; }
.btn--pill { border-radius: var(--r-pill); }
.btn:disabled { opacity: .5; cursor: not-allowed; }

.badge { display: inline-flex; align-items: center; font-size: 12px; font-weight: 500; letter-spacing: .005em; padding: 5px 12px; border-radius: var(--r-pill); white-space: nowrap; }
.badge--type { background: var(--accent-soft); color: var(--accent); }
.badge--soft { background: #fff; color: var(--ink2); border: 1px solid var(--line2); }
.badge--ok { background: #ecfdf3; color: #15803d; }
.badge--wait { background: var(--card2); color: var(--ink2); }
.runtime-recovery-result {
  margin-top: 14px; padding: 16px; border: 1px solid var(--line);
  border-radius: var(--r); background: #fff;
}
.runtime-recovery-result h4 { margin: 12px 0 6px; }
.runtime-recovery-result p { white-space: pre-wrap; overflow-wrap: anywhere; }
.runtime-recovery-result__list { margin-top: 12px; }
.runtime-recovery-result__list ol { margin: 6px 0 0; padding-left: 22px; }
.badge--warn { background: #fff7ed; color: #b45309; }
.badge--dom.d-med { background: #fef2f2; color: #b91c1c; }
.badge--dom.d-social_monitoring { background: #eef2ff; color: #4338ca; }
.badge--dom.d-sociology { background: #f5f0ff; color: #7c3aed; }
.badge--dom.d-pedagogy { background: #ecfdf3; color: #15803d; }
.badge--dom.d-assistant_safety { background: #fffbeb; color: #b45309; }

/* ================================================================
   ЛЕНДИНГ — каркас в стиле Toloka.ai (мега-меню, секции, футер)
   ================================================================ */
body.lp { background: #fff; }
body.nav-lock { overflow: hidden; }

/* ---- Объявление (banner alert) ---- */
.announce { background: var(--ink); color: #fff; }
.announce__inner { max-width: 1240px; margin: 0 auto; padding: 9px 28px; display: flex; align-items: center; justify-content: center; gap: 16px; position: relative; }
.announce__txt { font-size: 13px; color: rgba(255,255,255,.82); text-align: center; }
.announce__txt b { color: #fff; font-weight: 500; }
.announce__txt a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.announce__x { position: absolute; right: 22px; top: 50%; transform: translateY(-50%); background: transparent; border: none; color: rgba(255,255,255,.6); font-size: 14px; cursor: pointer; line-height: 1; padding: 4px; }
.announce__x:hover { color: #fff; }

/* ---- Шапка ---- */
.tk-nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.78); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s;
}
.tk-nav.scrolled { border-bottom-color: var(--line); box-shadow: 0 1px 0 rgba(0,0,0,.02); }
.tk-nav__inner {
  max-width: 1240px; margin: 0 auto; padding: 0 28px; height: 66px;
  display: flex; align-items: center; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: inherit; flex-shrink: 0; }
.brand .logo {
  width: 34px; height: 34px; background: var(--ink); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 500; font-size: 12px; color: #fff; letter-spacing: .04em;
}
.brand .title { font-weight: 500; font-size: 18px; letter-spacing: .01em; }
.brand .sub { font-size: 12px; color: var(--ink3); font-weight: 400; }

/* ---- Меню ---- */
.tk-menu { display: flex; align-items: center; gap: 2px; margin-right: auto; }
.tk-item { position: relative; }
.tk-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: inherit; font-size: 14.5px; font-weight: 500; color: var(--ink2);
  background: transparent; border: none; cursor: pointer; text-decoration: none;
  padding: 9px 14px; border-radius: var(--r-pill); transition: color .15s, background .15s; white-space: nowrap;
}
.tk-link:hover { color: var(--ink); background: var(--card); }
.tk-item.open > .tk-link { color: var(--ink); background: var(--card); }
.tk-link .caret { width: 14px; height: 14px; color: var(--ink3); transition: transform .18s; }
.tk-item.open > .tk-link .caret { transform: rotate(180deg); }
.tk-link .beta { font-size: 11px; color: var(--accent); font-weight: 600; }

/* панель мега-меню и обычной выпадашки */
.mega, .drop {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(6px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: 0 30px 70px -28px rgba(13,13,15,.28); padding: 18px;
  opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .16s, transform .16s, visibility .16s; z-index: 50;
}
.drop { left: 0; transform: translateX(0) translateY(6px); min-width: 320px; }
/* невидимый мостик, чтобы курсор не «падал» между кнопкой и панелью */
.tk-item.has-mega::after, .tk-item.has-drop::after { content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 12px; }
.tk-item.has-mega:hover .mega,
.tk-item.has-mega.open .mega,
.tk-item.has-drop:hover .drop,
.tk-item.has-drop.open .drop {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.tk-item.has-drop:hover .drop, .tk-item.has-drop.open .drop { transform: translateX(0) translateY(0); }

/* мега-меню Решений */
.mega { width: 720px; }
.mega__inner { display: grid; grid-template-columns: 220px 1fr; gap: 22px; }
.mega__intro { padding: 8px 8px 8px 10px; border-right: 1px solid var(--line); }
.mega__eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin: 0 0 12px; }
.mega__blurb { font-size: 13.5px; color: var(--ink2); line-height: 1.55; margin: 0 0 18px; }
.mega__cta { font-size: 13.5px; font-weight: 500; color: var(--accent); text-decoration: none; display: inline-flex; align-items: center; gap: 7px; }
.mega__cta .arr, .tri-card__go .arr { transition: transform .18s; }
.mega__cta:hover .arr { transform: translateX(4px); }
.mega__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }

.mega__link, .drop__link {
  display: flex; gap: 12px; align-items: flex-start; text-decoration: none; color: inherit;
  padding: 11px 12px; border-radius: var(--r); transition: background .14s;
}
.mega__link:hover, .drop__link:hover { background: var(--card); }
.mega__ic {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 9px; background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.mega__link b, .drop__link b { display: block; font-size: 13.5px; font-weight: 500; color: var(--ink); margin-bottom: 2px; }
.mega__link em, .drop__link em { display: block; font-size: 12px; color: var(--ink3); font-style: normal; line-height: 1.4; }
.drop { display: flex; flex-direction: column; gap: 2px; }

/* правая часть шапки */
.tk-nav__cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.tk-login { font-size: 14.5px; font-weight: 500; color: var(--ink2); text-decoration: none; transition: color .15s; }
.tk-login:hover { color: var(--ink); }
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line2); background: #fff; border-radius: 12px; cursor: pointer; align-items: center; justify-content: center; font-size: 18px; color: var(--ink); }

/* ---- generic section ---- */
.section { max-width: 1160px; margin: 0 auto; padding: 96px 28px; }
.eyebrow { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin: 0 0 18px; }
.eyebrow--onblack { color: #b7b2ff; }
.section h2 { font-size: 42px; font-weight: 300; letter-spacing: -.025em; line-height: 1.08; margin: 0 0 18px; }
.section .section-lead { font-size: 17px; color: var(--ink2); line-height: 1.6; max-width: 640px; margin: 0; }
.section-center { text-align: center; }
.section-center .section-lead { margin: 0 auto; }

/* ---- HERO (лавандово-розовый градиент) ---- */
.tk-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 520px at 50% -140px, rgba(233,213,255,.55) 0%, rgba(255,228,240,.32) 42%, rgba(255,255,255,0) 72%),
    linear-gradient(180deg, #fbfaff 0%, #ffffff 60%);
}
.tk-hero__inner { max-width: 1000px; margin: 0 auto; padding: 108px 28px 64px; text-align: center; }
.tk-hero h1 {
  font-size: 68px; font-weight: 300; letter-spacing: -.035em; line-height: 1.04;
  margin: 0 auto 28px; max-width: 900px; color: var(--ink);
}
.tk-hero__lead { font-size: 20px; color: var(--ink2); line-height: 1.6; max-width: 660px; margin: 0 auto 40px; font-weight: 400; }
.tk-hero__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* logobar */
.logobar { max-width: 1160px; margin: 0 auto; padding: 8px 28px 72px; }
.logobar__label { text-align: center; font-size: 12px; color: var(--ink3); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 24px; }
.logobar__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 40px; }
.logobar__row span { font-size: 17px; font-weight: 500; color: var(--ink3); letter-spacing: .01em; opacity: .82; }

/* ---- 2. три карточки данных для агентов ---- */
.tri { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; text-align: left; }
.tri-card {
  background: var(--card); border: 1px solid transparent; border-radius: var(--r-lg);
  padding: 30px 28px 26px; text-decoration: none; color: inherit;
  display: flex; flex-direction: column; transition: transform .18s, box-shadow .18s, border-color .18s;
}
.tri-card:hover { transform: translateY(-3px); box-shadow: 0 22px 48px -22px rgba(0,0,0,.22); border-color: var(--line2); }
.tri-card__ic { font-size: 30px; margin-bottom: 20px; }
.tri-card h4 { font-size: 21px; font-weight: 400; margin: 0 0 10px; letter-spacing: -.01em; }
.tri-card p { font-size: 14.5px; color: var(--ink2); line-height: 1.55; margin: 0 0 22px; }
.tri-card__go { margin-top: auto; font-size: 14px; font-weight: 500; color: var(--accent); display: inline-flex; align-items: center; gap: 8px; }
.tri-card:hover .tri-card__go .arr { transform: translateX(4px); }

/* ---- 3. типы агентов (сетка плиток) ---- */
.type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; text-align: left; }
.type-tile { background: var(--card); border-radius: var(--r-lg); padding: 28px 26px; transition: transform .15s; }
.type-tile:hover { transform: translateY(-3px); }
.type-tile__ic {
  width: 46px; height: 46px; border-radius: 13px; background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px;
}
.type-tile h4 { font-size: 18px; font-weight: 500; margin: 0 0 8px; letter-spacing: -.01em; }
.type-tile p { font-size: 14px; color: var(--ink2); line-height: 1.55; margin: 0; }

/* ---- 4. экспертные данные по доменам ---- */
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; text-align: left; }
.exp-card { background: var(--card); border-radius: var(--r-lg); padding: 26px 24px; display: flex; flex-direction: column; transition: transform .15s; }
.exp-card:hover { transform: translateY(-3px); }
.exp-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.exp-card__ic { width: 40px; height: 40px; border-radius: 11px; background: #fff; display: flex; align-items: center; justify-content: center; font-size: 20px; box-shadow: 0 4px 12px -6px rgba(0,0,0,.15); }
.exp-card__head h4 { font-size: 18px; font-weight: 500; margin: 0; letter-spacing: -.01em; }
.exp-card > p { font-size: 13.5px; color: var(--ink2); line-height: 1.5; margin: 0 0 18px; }
.exp-card__mock { background: #fff; border-radius: var(--r); padding: 12px 14px; margin-bottom: 16px; }
.em-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.em-row:last-child { border-bottom: none; }
.em-l { font-size: 12.5px; color: var(--ink2); }
.em-tag { font-size: 11.5px; font-family: var(--mono); color: var(--ink3); white-space: nowrap; }
.em-chip { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 99px; background: var(--accent-soft); color: var(--accent); white-space: nowrap; }
.em-chip--warn { background: #fff7ed; color: #b45309; }
.em-bar { width: 84px; height: 6px; background: var(--card2); border-radius: 99px; overflow: hidden; flex-shrink: 0; }
.em-bar i { display: block; height: 100%; background: var(--accent); border-radius: 99px; }
.exp-card .fmt { margin-top: auto; font-size: 12px; color: var(--ink3); font-family: var(--mono); }

/* ================================================================
   РАСШИФРОВКА СВОД (в шапке-бренде и в hero)
   ================================================================ */
.brand__decode { display: block; font-size: 10.5px; font-weight: 500; letter-spacing: .01em; color: var(--ink3); margin-top: 1px; line-height: 1.1; white-space: nowrap; }
@media (max-width: 1180px) { .brand__decode { display: none; } }
.hero-decode {
  display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 10px;
  margin: 0 auto 26px; padding: 8px 16px; background: rgba(255,255,255,.6); border: 1px solid var(--line);
  border-radius: var(--r-pill); box-shadow: 0 8px 24px -18px rgba(13,13,15,.3);
}
.hero-decode__abbr { font-family: var(--mono); font-weight: 600; font-size: 13px; letter-spacing: .12em; color: var(--accent); }
.hero-decode__full { font-size: 12.5px; color: var(--ink2); font-weight: 500; letter-spacing: .01em; }
.hero-decode__full b { color: var(--ink); font-weight: 600; }

/* ================================================================
   3 СТОЛПА (крупные карточки-костяк)
   ================================================================ */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 54px; text-align: left; }
.pillar {
  position: relative; background: var(--card); border: 1px solid transparent; border-radius: var(--r-lg);
  padding: 34px 30px 30px; text-decoration: none; color: inherit; display: flex; flex-direction: column;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.pillar:hover { transform: translateY(-4px); box-shadow: 0 26px 54px -24px rgba(0,0,0,.24); border-color: var(--line2); }
.pillar__num { position: absolute; top: 26px; right: 30px; font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--ink3); font-variant-numeric: tabular-nums; }
.pillar__ic { width: 54px; height: 54px; border-radius: 15px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.pillar__ic .ic { width: 26px; height: 26px; }
.pillar h3 { font-size: 23px; font-weight: 400; margin: 0 0 12px; letter-spacing: -.015em; line-height: 1.15; }
.pillar p { font-size: 14.5px; color: var(--ink2); line-height: 1.6; margin: 0 0 20px; }
.pillar__tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 22px; }
.pillar__tag { font-size: 11.5px; font-weight: 500; padding: 5px 11px; border-radius: 99px; background: #fff; color: var(--ink2); border: 1px solid var(--line2); }
.pillar__go { margin-top: auto; font-size: 14px; font-weight: 500; color: var(--accent); display: inline-flex; align-items: center; gap: 8px; }
.pillar__go .ic { width: 16px; height: 16px; transition: transform .18s; }
.pillar:hover .pillar__go .ic { transform: translateX(4px); }
.pillar--sell { background: var(--ink); color: #fff; }
.pillar--sell .pillar__num { color: rgba(255,255,255,.5); }
.pillar--sell .pillar__ic { background: rgba(255,255,255,.1); color: #fff; }
.pillar--sell h3 { color: #fff; }
.pillar--sell p { color: rgba(255,255,255,.72); }
.pillar--sell .pillar__tag { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); color: rgba(255,255,255,.85); }
.pillar--sell .pillar__go { color: #b7b2ff; }

/* пилюли-навигация по столпам в hero */
.hero-pills { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px; margin-top: 34px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 500; color: var(--ink2);
  background: #fff; border: 1px solid var(--line2); border-radius: var(--r-pill); padding: 9px 16px; text-decoration: none;
  transition: border-color .15s, color .15s, transform .15s;
}
.hero-pill:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-1px); }
.hero-pill .ic { width: 16px; height: 16px; color: var(--accent); }

/* ================================================================
   БОЛЬШОЙ ПЕРЕЧЕНЬ ОТРАСЛЕЙ (сетка плиток)
   ================================================================ */
.ind-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-top: 48px; text-align: left; }
.ind {
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  background: var(--card); border: 1px solid transparent; border-radius: var(--r);
  padding: 18px 16px; text-decoration: none; color: inherit; transition: transform .14s, box-shadow .14s, border-color .14s, background .14s;
}
.ind:hover { transform: translateY(-3px); background: #fff; border-color: var(--line2); box-shadow: 0 16px 34px -20px rgba(0,0,0,.2); }
.ind__ic { width: 38px; height: 38px; border-radius: 10px; background: #fff; color: var(--accent); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px -6px rgba(0,0,0,.14); }
.ind__ic .ic { width: 19px; height: 19px; }
.ind:hover .ind__ic { background: var(--accent-soft); }
.ind__t { font-size: 13.5px; font-weight: 500; color: var(--ink); line-height: 1.3; letter-spacing: -.005em; }
.ind-note { margin-top: 30px; font-size: 13.5px; color: var(--ink3); text-align: center; }
.ind-note b { color: var(--ink2); font-weight: 500; }

/* ================================================================
   ТИЗЕР ДАТАСЕТОВ (превью-карточки на лендинге)
   ================================================================ */
.dsteaser { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 50px; text-align: left; }

/* ================================================================
   МАРКЕТПЛЕЙС ДАТАСЕТОВ (карточки на продажу — datasets.html)
   ================================================================ */
.mkt-bar { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 40px auto 0; max-width: 940px; }
.mkt-chip { font-size: 13px; font-weight: 500; color: var(--ink2); background: #fff; border: 1px solid var(--line2); border-radius: var(--r-pill); padding: 8px 15px; }
.mkt-chip--on { background: var(--ink); color: #fff; border-color: var(--ink); }
.mkt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; text-align: left; }
.dcard {
  background: var(--card); border: 1px solid transparent; border-radius: var(--r-lg); padding: 24px 24px 22px;
  display: flex; flex-direction: column; transition: transform .16s, box-shadow .16s, border-color .16s;
}
.dcard:hover { transform: translateY(-3px); box-shadow: 0 20px 44px -22px rgba(0,0,0,.22); border-color: var(--line2); }
.dcard__top { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin-bottom: 16px; }
.dcard__dom { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 600; padding: 5px 11px; border-radius: 99px; background: var(--accent-soft); color: var(--accent); }
.dcard__dom .ic { width: 13px; height: 13px; }
.dcard__fmt { font-size: 11px; font-weight: 600; font-family: var(--mono); padding: 5px 10px; border-radius: 99px; background: #fff; color: var(--ink2); border: 1px solid var(--line2); }
.dcard h3 { font-size: 17.5px; font-weight: 500; margin: 0 0 8px; line-height: 1.35; letter-spacing: -.01em; }
.dcard__desc { font-size: 13.5px; color: var(--ink2); line-height: 1.5; margin: 0 0 18px; }
.dcard__meta { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 18px; }
.dcard__meta .m { font-size: 12px; color: var(--ink2); background: #fff; border-radius: var(--r); padding: 9px 12px; }
.dcard__meta .m .mk { display: block; font-size: 10.5px; color: var(--ink3); margin-bottom: 3px; letter-spacing: .02em; }
.dcard__meta .m b { color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }
.dcard__pass { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--ok); margin-bottom: 18px; }
.dcard__pass .ic { width: 15px; height: 15px; }
.dcard__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.dcard__price { font-size: 21px; font-weight: 600; font-variant-numeric: tabular-nums; letter-spacing: -.01em; }
.dcard__price .per { font-size: 11.5px; color: var(--ink3); font-weight: 400; margin-left: 4px; }
.dcard__btns { display: flex; gap: 8px; }

/* ---- «Продайте свой датасет» (revenue-share) ---- */
.sell-band { background: linear-gradient(180deg, #fbfaff 0%, #fff 100%); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sell-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; text-align: left; }
.sell-step { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 24px; }
.sell-step__n { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); font-family: var(--mono); font-weight: 600; font-size: 14px; margin-bottom: 16px; }
.sell-step h4 { font-size: 16.5px; font-weight: 500; margin: 0 0 8px; letter-spacing: -.01em; }
.sell-step p { font-size: 13.5px; color: var(--ink2); line-height: 1.55; margin: 0; }

/* ---- 5. экспертная сеть (тёмная полоса) ---- */
.net-band { background: var(--ink); color: #fff; }
.net-band__inner { max-width: 1160px; margin: 0 auto; padding: 88px 28px; text-align: center; }
.net-band h2 { font-size: 42px; font-weight: 300; letter-spacing: -.025em; line-height: 1.08; margin: 0 0 18px; color: #fff; }
.net-band__lead { font-size: 17px; color: rgba(255,255,255,.68); line-height: 1.6; max-width: 620px; margin: 0 auto 52px; }
.net-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; text-align: left; }
.net-tile { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg); padding: 30px 28px; }
.net-tile__k { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #b7b2ff; margin-bottom: 14px; }
.net-tile__v { font-size: 30px; font-weight: 300; letter-spacing: -.02em; margin-bottom: 14px; color: #fff; }
.net-tile p { font-size: 13.5px; color: rgba(255,255,255,.66); line-height: 1.6; margin: 0; }

/* ---- 6. почему СВОД (3 колонки) ---- */
.why-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 56px; text-align: left; }
.why-col__ic {
  width: 48px; height: 48px; border-radius: 13px; background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px;
}
.why-col h4 { font-size: 20px; font-weight: 500; margin: 0 0 10px; letter-spacing: -.01em; }
.why-col p { font-size: 14.5px; color: var(--ink2); line-height: 1.6; margin: 0; }

/* ---- 7. шаги ---- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 52px; text-align: left; }
.step { background: var(--card); border-radius: var(--r-lg); padding: 28px 26px; }
.step__n { font-size: 12px; font-weight: 600; color: var(--accent); letter-spacing: .06em; margin-bottom: 16px; }
.step h4 { font-size: 18px; font-weight: 500; margin: 0 0 10px; letter-spacing: -.01em; }
.step p { font-size: 14px; color: var(--ink2); line-height: 1.55; margin: 0; }

/* ---- 8. CTA band ---- */
.cta-band { background: var(--ink); color: #fff; }
.cta-band__inner { max-width: 1160px; margin: 0 auto; padding: 84px 28px; text-align: center; }
.cta-band h2 { font-size: 44px; font-weight: 300; letter-spacing: -.025em; margin: 0 0 16px; color: #fff; }
.cta-band p { font-size: 17px; color: rgba(255,255,255,.7); max-width: 560px; margin: 0 auto 34px; line-height: 1.6; }
.cta-band__row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn--ghost { background: transparent; border-color: rgba(255,255,255,.3); color: #fff; }
.cta-band .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* ---- Футер (5 колонок) ---- */
.tk-foot { border-top: 1px solid var(--line); background: #fbfbfc; }
.tk-foot__inner { max-width: 1240px; margin: 0 auto; padding: 60px 28px 44px; display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr 1fr 1fr; gap: 32px; }
.tk-foot__brand p { font-size: 13px; color: var(--ink2); line-height: 1.6; margin: 16px 0 0; max-width: 280px; }
.tk-foot__col h5 { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink3); margin: 0 0 16px; }
.tk-foot__col a { display: block; font-size: 13.5px; color: var(--ink2); text-decoration: none; padding: 6px 0; transition: color .15s; }
.tk-foot__col a:hover { color: var(--ink); }
.tk-foot__bottom { max-width: 1240px; margin: 0 auto; padding: 22px 28px 44px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; }
.tk-foot__bottom span { font-size: 12.5px; color: var(--ink3); }
.tk-foot__legal { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.tk-foot__legal a { font-size: 12.5px; color: var(--ink3); text-decoration: none; transition: color .15s; }
.tk-foot__legal a:hover { color: var(--ink); }

/* ================================================================
   КАБИНЕТ ЗАКАЗЧИКА
   ================================================================ */
body.app { background: linear-gradient(180deg, #fbfbfc 0%, #ffffff 340px); }

.topbar {
  background: rgba(255,255,255,.85); backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 0 28px; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; position: sticky; top: 0; z-index: 20; height: 66px;
}
.topbar-left { display: flex; align-items: center; gap: 26px; height: 100%; min-width: 0; flex: 1 1 auto; overflow: hidden; }
.nav-tabs {
  display: flex; flex-wrap: nowrap; min-width: 0; gap: 2px;
  background: var(--card); border-radius: var(--r-pill); padding: 4px;
  overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.nav-tabs::-webkit-scrollbar { display: none; }
.nav-tabs button {
  background: transparent; border: none; border-radius: var(--r-pill);
  color: var(--ink2); font-size: 13.5px; font-weight: 500; letter-spacing: .005em;
  padding: 8px 18px; cursor: pointer; font-family: inherit;
  display: flex; align-items: center; gap: 6px; white-space: nowrap; flex-shrink: 0;
  transition: background .15s, color .15s;
}
.nav-tabs button:hover:not(.active) { color: var(--ink); }
.nav-tabs button.active { background: var(--ink); color: #fff; }

.topbar-right { display: flex; align-items: center; gap: 12px; height: 100%; flex-shrink: 0; }
.stat-chip {
  font-size: 12px; color: var(--ink2);
  display: flex; align-items: center; gap: 8px;
  padding: 0 15px; height: 38px; background: var(--card); border-radius: var(--r-pill);
}
.stat-chip .dot { width: 6px; height: 6px; background: var(--ok); border-radius: 50%; box-shadow: 0 0 0 3px rgba(22,163,74,.14); flex-shrink: 0; }
.stat-chip .num { color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }
.stat-chip .lbl { color: var(--ink3); font-size: 11px; font-weight: 500; }
.user-avatar {
  width: 40px; height: 40px; border: none; cursor: pointer; border-radius: 50%;
  background: var(--accent); color: #fff; font-family: inherit; font-size: 15px; font-weight: 500;
  display: flex; align-items: center; justify-content: center; transition: all .18s; flex-shrink: 0;
}
.user-avatar:hover { transform: scale(1.06); box-shadow: 0 8px 22px -8px rgba(79,70,229,.55); }

.wrap { max-width: 1120px; margin: 0 auto; padding: 48px 28px 100px; }
.view { display: none; }
.view.active { display: block; animation: fadeUp .3s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.page-head { margin-bottom: 40px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.page-head__text { min-width: 0; }
.page-head h1 { margin: 0 0 12px; font-size: 42px; font-weight: 300; letter-spacing: -.02em; line-height: 1.08; }
.page-head .lead { margin: 0; font-size: 16px; color: var(--ink2); line-height: 1.6; max-width: 620px; }

.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 44px; }
.tile { background: var(--card); border-radius: var(--r-lg); padding: 24px 24px 22px; transition: transform .15s; }
.tile:hover { transform: translateY(-2px); }
.tile .k { font-size: 13px; color: var(--ink2); font-weight: 500; margin-bottom: 14px; }
.tile .v { font-size: 34px; font-weight: 300; font-variant-numeric: tabular-nums; line-height: 1; letter-spacing: -.02em; }
.tile .sub { font-size: 12.5px; color: var(--ink3); margin-top: 10px; }

.section-title { font-size: 13px; color: var(--ink3); font-weight: 500; margin: 0 0 20px; display: flex; align-items: center; gap: 10px; }
.section-title .cnt { color: var(--ink3); font-weight: 400; }

/* project cards */
.proj-feed { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 18px; }
.proj {
  background: var(--card); border-radius: var(--r-lg); padding: 24px 24px 22px;
  display: flex; flex-direction: column; transition: transform .16s, box-shadow .16s; cursor: pointer;
}
.proj:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -20px rgba(0,0,0,.22); }
.proj__top { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 16px; }
.proj h3 { font-size: 18px; font-weight: 500; margin: 0 0 8px; line-height: 1.35; letter-spacing: -.01em; }
.proj__desc { font-size: 13.5px; color: var(--ink2); line-height: 1.5; margin: 0 0 20px; }
.proj__prog { margin-bottom: 18px; }
.proj__prog .pr-row { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--ink2); margin-bottom: 8px; }
.proj__prog .pr-row b { color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }
.bar { height: 7px; background: #fff; border-radius: 99px; overflow: hidden; }
.bar i { display: block; height: 100%; background: var(--accent); border-radius: 99px; transition: width .4s; }
.proj__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.proj__budget { font-size: 13px; color: var(--ink2); }
.proj__budget b { color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }

/* generic panel/card */
.panel { background: var(--card); border-radius: var(--r-lg); padding: 30px; margin-bottom: 20px; }
.panel h3 { font-size: 20px; font-weight: 400; margin: 0 0 6px; letter-spacing: -.01em; }
.panel .panel-sub { font-size: 14px; color: var(--ink2); margin: 0 0 22px; line-height: 1.55; }
.panel--white { background: #fff; border: 1px solid var(--line); }

/* wizard */
.wiz { display: grid; grid-template-columns: 232px 1fr; gap: 26px; align-items: start; }
.wiz__steps { list-style: none; margin: 0; padding: 0; position: sticky; top: 90px; }
.wiz__steps li { display: flex; gap: 14px; padding: 12px 14px; border-radius: var(--r); cursor: pointer; transition: background .15s; align-items: flex-start; }
.wiz__steps li:hover { background: var(--card); }
.wiz__steps li.active { background: var(--card); }
.wiz__steps .sn { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: #fff; border: 1px solid var(--line2); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; color: var(--ink3); font-variant-numeric: tabular-nums; }
.wiz__steps li.active .sn { background: var(--ink); border-color: var(--ink); color: #fff; }
.wiz__steps li.done .sn { background: var(--ok); border-color: var(--ok); color: #fff; }
.wiz__steps .st { font-size: 14px; font-weight: 500; padding-top: 3px; }
.wiz__steps li.active .st { color: var(--ink); }
.wiz__steps li:not(.active) .st { color: var(--ink2); }
.wiz__steps .sd { font-size: 12px; color: var(--ink3); margin-top: 3px; }

.wiz__panel { min-width: 0; }
.wiz__stepwrap { display: none; }
.wiz__stepwrap.active { display: block; animation: fadeUp .25s ease; }
.wiz__stepwrap h3 { font-size: 24px; font-weight: 300; letter-spacing: -.01em; margin: 0 0 8px; }
.wiz__stepwrap .wsub { font-size: 14.5px; color: var(--ink2); margin: 0 0 26px; line-height: 1.55; max-width: 560px; }

.opt-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 8px; }
.opt {
  text-align: left; background: #fff; border: 1.5px solid var(--line2); border-radius: var(--r-lg);
  padding: 20px; cursor: pointer; transition: all .15s; font-family: inherit; display: flex; flex-direction: column; gap: 8px;
}
.opt:hover { border-color: var(--ink3); }
.opt.on { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.opt .oh { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.opt .ot { font-size: 16px; font-weight: 500; }
.opt .otag { font-size: 11px; font-family: var(--mono); color: var(--ink3); }
.opt .od { font-size: 13px; color: var(--ink2); line-height: 1.5; }
.opt .oradio { width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid var(--line2); flex-shrink: 0; position: relative; transition: all .15s; }
.opt.on .oradio { border-color: var(--accent); }
.opt.on .oradio::after { content: ''; position: absolute; inset: 4px; background: var(--accent); border-radius: 50%; }

.field { margin-bottom: 24px; }
.field > label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 10px; }
.field .hint { font-size: 12.5px; color: var(--ink3); margin-top: 8px; line-height: 1.5; }
.inp, .ta, select.inp {
  width: 100%; background: #fff; border: 1px solid var(--line2); border-radius: var(--r);
  color: var(--ink); font-size: 15px; font-family: inherit; line-height: 1.55; padding: 13px 15px;
  outline: none; transition: all .15s;
}
.ta { resize: vertical; min-height: 100px; }
.inp:focus, .ta:focus, select.inp:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }

/* upload dropzone (мокап) */
.dropzone {
  border: 1.5px dashed var(--line2); border-radius: var(--r-lg); padding: 40px 24px; text-align: center;
  background: #fff; cursor: pointer; transition: all .15s;
}
.dropzone:hover { border-color: var(--accent); background: var(--accent-soft); }
.dropzone .di { font-size: 34px; margin-bottom: 12px; opacity: .6; }
.dropzone .dt { font-size: 15px; font-weight: 500; margin-bottom: 6px; }
.dropzone .dd { font-size: 13px; color: var(--ink3); }
.file-row { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 13px 16px; margin-top: 14px; }
.file-row .fi { font-size: 20px; }
.file-row .fn { font-size: 14px; font-weight: 500; }
.file-row .fm { font-size: 12.5px; color: var(--ink3); margin-top: 2px; }
.file-row .fx { margin-left: auto; font-size: 12.5px; color: var(--ok); font-weight: 600; }

/* qc toggles */
.qc-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.qc-row:last-child { border-bottom: none; }
.qc-row .qt { font-size: 15px; font-weight: 500; margin-bottom: 4px; }
.qc-row .qd { font-size: 13px; color: var(--ink2); line-height: 1.5; max-width: 420px; }
.qc-ctrl { flex-shrink: 0; display: flex; align-items: center; gap: 10px; }
.stepper { display: flex; align-items: center; gap: 4px; background: #fff; border: 1px solid var(--line2); border-radius: var(--r-pill); padding: 3px; }
.stepper button { width: 30px; height: 30px; border: none; background: transparent; border-radius: 50%; cursor: pointer; font-size: 17px; color: var(--ink2); font-family: inherit; transition: background .15s; }
.stepper button:hover { background: var(--card); color: var(--ink); }
.stepper .sv { min-width: 34px; text-align: center; font-size: 15px; font-weight: 600; font-variant-numeric: tabular-nums; }
.toggle { width: 46px; height: 27px; border-radius: 99px; background: var(--line2); border: none; cursor: pointer; position: relative; transition: background .18s; flex-shrink: 0; }
.toggle::after { content: ''; position: absolute; top: 3px; left: 3px; width: 21px; height: 21px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.2); transition: transform .18s; }
.toggle.on { background: var(--accent); }
.toggle.on::after { transform: translateX(19px); }

/* price summary */
.price-sum { background: var(--ink); color: #fff; border-radius: var(--r-lg); padding: 28px 30px; }
.price-sum .ps-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 11px 0; font-size: 14px; color: rgba(255,255,255,.7); border-bottom: 1px solid rgba(255,255,255,.1); }
.price-sum .ps-row b { color: #fff; font-weight: 500; font-variant-numeric: tabular-nums; }
.price-sum .ps-total { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding-top: 18px; margin-top: 6px; }
.price-sum .ps-total .pl { font-size: 15px; color: rgba(255,255,255,.7); }
.price-sum .ps-total .pv { font-size: 34px; font-weight: 300; font-variant-numeric: tabular-nums; letter-spacing: -.02em; }

.wiz__nav { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line); }

/* agent / token */
.token-box { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line2); border-radius: var(--r); padding: 13px 16px; font-family: var(--mono); font-size: 13.5px; color: var(--ink2); }
.token-box .tk { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.kv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 20px; }
.kv { background: #fff; border-radius: var(--r); padding: 18px 20px; }
.kv .kvk { font-size: 12.5px; color: var(--ink3); margin-bottom: 8px; }
.kv .kvv { font-size: 24px; font-weight: 300; font-variant-numeric: tabular-nums; }
.kv .kvv small { font-size: 13px; color: var(--ink3); font-weight: 400; }

/* dataset catalog cards */
.ds-feed { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 18px; }
.ds {
  background: var(--card); border-radius: var(--r-lg); padding: 24px; display: flex; flex-direction: column;
  transition: transform .16s, box-shadow .16s;
}
.ds:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -20px rgba(0,0,0,.22); }
.ds__top { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 16px; }
.ds h3 { font-size: 17px; font-weight: 500; margin: 0 0 8px; line-height: 1.4; }
.ds__desc { font-size: 13.5px; color: var(--ink2); line-height: 1.5; margin: 0 0 18px; }
.ds__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.ds__meta .m { font-size: 12.5px; color: var(--ink2); background: #fff; border-radius: 99px; padding: 5px 12px; }
.ds__meta .m b { color: var(--ink); font-weight: 600; }
.ds__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.ds__price { font-size: 22px; font-weight: 500; font-variant-numeric: tabular-nums; }
.ds__price .per { font-size: 12px; color: var(--ink3); font-weight: 400; margin-left: 4px; }

/* data card (паспорт/провенанс) */
.datacard { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.datacard__head { padding: 26px 30px; border-bottom: 1px solid var(--line); background: linear-gradient(180deg, #fbfbff, #fff); }
.datacard__head .dc-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.datacard__head h3 { font-size: 24px; font-weight: 300; margin: 0 0 6px; letter-spacing: -.01em; }
.datacard__head p { font-size: 13.5px; color: var(--ink2); margin: 0; }
.datacard__grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.dc-cell { padding: 20px 30px; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }
.dc-cell:nth-child(even) { border-right: none; }
.dc-cell .dck { font-size: 12px; color: var(--ink3); font-weight: 500; margin-bottom: 8px; display: flex; align-items: center; gap: 7px; }
.dc-cell .dcv { font-size: 15px; font-weight: 400; color: var(--ink); line-height: 1.45; }
.dc-cell .dcv small { display: block; font-size: 12.5px; color: var(--ink3); margin-top: 4px; }
.dc-verified { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--ok); }

/* provenance chain */
.chain { list-style: none; margin: 0; padding: 0; }
.chain li { display: flex; gap: 16px; padding: 0 0 24px; position: relative; }
.chain li:last-child { padding-bottom: 0; }
.chain li::before { content: ''; position: absolute; left: 13px; top: 30px; bottom: -4px; width: 2px; background: var(--line); }
.chain li:last-child::before { display: none; }
.chain .cnode { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 13px; z-index: 1; }
.chain .cnode.ok { background: #ecfdf3; color: var(--ok); }
.chain .cbody strong { font-size: 15px; font-weight: 500; display: block; margin-bottom: 3px; }
.chain .cbody span { font-size: 13.5px; color: var(--ink2); line-height: 1.5; }

/* empty state */
.state { text-align: center; padding: 76px 28px; color: var(--ink2); background: var(--card); border-radius: var(--r-lg); }
.state .ic { font-size: 44px; opacity: .6; margin-bottom: 16px; }
.state p { font-size: 15px; line-height: 1.6; margin: 0 0 20px; }

/* toast */
.toast {
  position: fixed; bottom: 40px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: #fff; padding: 13px 26px; font-size: 14px; z-index: 300;
  border-radius: var(--r-pill); opacity: 0; transition: opacity .2s; pointer-events: none; font-weight: 500;
  box-shadow: 0 18px 44px -12px rgba(0,0,0,.4); max-width: 90vw; text-align: center;
}
.toast.show { opacity: 1; }

/* modal */
.modal-overlay { position: fixed; inset: 0; background: rgba(13,13,15,.42); backdrop-filter: blur(3px); z-index: 60; display: none; align-items: flex-start; justify-content: center; padding: 40px 16px; overflow-y: auto; }
.modal-overlay.open { display: flex; }
.modal { background: #fff; border-radius: var(--r-lg); width: 100%; max-width: 720px; box-shadow: 0 40px 100px -30px rgba(0,0,0,.4); overflow: hidden; margin: auto; }
.modal--wide { max-width: 920px; }
.modal__head { padding: 24px 30px 18px; border-bottom: 1px solid var(--line); display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.modal__head h2 { margin: 0; font-size: 22px; font-weight: 300; letter-spacing: -.01em; }
.modal__close { width: 36px; height: 36px; border: none; background: var(--card); border-radius: 50%; cursor: pointer; font-size: 18px; color: var(--ink2); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all .15s; }
.modal__close:hover { background: var(--card2); color: var(--ink); }
.modal__body { padding: 26px 30px; max-height: 66vh; overflow-y: auto; }
.modal__foot { padding: 18px 30px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: flex-end; gap: 12px; }
.acceptance-summary { margin: 18px 0; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.acceptance-artifact { margin-top: 22px; padding: 22px; border: 1px solid var(--line); border-radius: var(--r); background: var(--card); }
.acceptance-artifact h3 { margin: 0 0 6px; font-size: 18px; font-weight: 500; }
.acceptance-preview { max-height: 300px; overflow: auto; margin: 10px 0 0; padding: 16px; border-radius: 10px; background: #0d1117; color: #d7e0ea; font: 12px/1.55 "IBM Plex Mono", monospace; white-space: pre-wrap; overflow-wrap: anywhere; }
.acceptance-reason { margin-top: 24px; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #d6d6da; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #b8b8bf; }

/* ================================================================
   LUCIDE ICONS (единый линейный набор, инлайн-SVG)
   ================================================================ */
.ic { width: 20px; height: 20px; stroke-width: 1.75; stroke: currentColor; fill: none;
      stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; display: inline-block; vertical-align: middle; }
.ic--sm { width: 16px; height: 16px; }
.ic--lg { width: 28px; height: 28px; }
.mega__ic .ic { width: 20px; height: 20px; }
.type-tile__ic .ic, .why-col__ic .ic { width: 22px; height: 22px; }
.exp-card__ic .ic { width: 20px; height: 20px; color: var(--accent); }
.tri-card__ic { color: var(--accent); display: inline-flex; }
.tri-card__ic .ic { width: 30px; height: 30px; }
.step__ic { color: var(--accent); display: inline-flex; margin-bottom: 14px; }
.step__ic .ic { width: 24px; height: 24px; }
.dropzone .di .ic, .file-row .fi .ic { width: 28px; height: 28px; }

/* ================================================================
   ВНУТРЕННИЕ СТРАНИЦЫ (решения, ресурсы, компания и т.д.)
   ================================================================ */
.page-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 440px at 50% -160px, rgba(233,213,255,.5) 0%, rgba(255,228,240,.28) 44%, rgba(255,255,255,0) 72%),
    linear-gradient(180deg, #fbfaff 0%, #ffffff 62%);
  border-bottom: 1px solid var(--line);
}
.page-hero__inner { max-width: 900px; margin: 0 auto; padding: 76px 28px 62px; text-align: center; }
.page-hero .kicker {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase; color: var(--accent);
  background: var(--accent-soft); padding: 7px 15px; border-radius: var(--r-pill); margin-bottom: 22px;
}
.page-hero .kicker .ic { width: 15px; height: 15px; }
.page-hero h1 { font-size: 50px; font-weight: 300; letter-spacing: -.03em; line-height: 1.06; margin: 0 auto 22px; max-width: 780px; }
.page-hero .sub { font-size: 19px; color: var(--ink2); line-height: 1.6; max-width: 640px; margin: 0 auto 34px; }
.page-hero__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.crumbs { max-width: 1160px; margin: 0 auto; padding: 22px 28px 0; font-size: 13px; color: var(--ink3); display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.crumbs a { color: var(--ink3); text-decoration: none; }
.crumbs a:hover { color: var(--ink); }
.crumbs .sep { color: var(--ink3); opacity: .55; }
.crumbs .cur { color: var(--ink2); }

.prose { max-width: 760px; margin: 0 auto; text-align: left; }
.prose p { font-size: 16px; color: var(--ink2); line-height: 1.7; margin: 0 0 18px; }
.prose h3 { font-size: 26px; font-weight: 300; letter-spacing: -.015em; margin: 40px 0 14px; }
.prose ul { margin: 0 0 18px; padding-left: 0; list-style: none; }
.prose ul li { position: relative; padding-left: 30px; font-size: 15.5px; color: var(--ink2); line-height: 1.6; margin-bottom: 12px; }
.prose ul li .ic { position: absolute; left: 0; top: 2px; width: 18px; height: 18px; color: var(--accent); }

.flow { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 44px; text-align: left; }
.flow--3 { grid-template-columns: repeat(3, 1fr); }
.flow--4 { grid-template-columns: repeat(4, 1fr); }
.flow-card { background: var(--card); border-radius: var(--r-lg); padding: 28px 26px; display: flex; flex-direction: column; }
.flow-card__ic { width: 46px; height: 46px; border-radius: 13px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.flow-card__ic .ic { width: 22px; height: 22px; }
.flow-card__n { font-size: 12px; font-weight: 600; color: var(--accent); letter-spacing: .06em; margin-bottom: 8px; }
.flow-card h4 { font-size: 18px; font-weight: 500; margin: 0 0 9px; letter-spacing: -.01em; }
.flow-card p { font-size: 14px; color: var(--ink2); line-height: 1.55; margin: 0; }

.feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px 40px; margin-top: 44px; text-align: left; }
.feat { display: flex; gap: 16px; align-items: flex-start; }
.feat__ic { width: 42px; height: 42px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feat__ic .ic { width: 21px; height: 21px; }
.feat h4 { font-size: 17px; font-weight: 500; margin: 0 0 7px; letter-spacing: -.01em; }
.feat p { font-size: 14px; color: var(--ink2); line-height: 1.6; margin: 0; }

.codecard { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; margin-top: 40px; text-align: left; }
.codecard__head { padding: 14px 20px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ink2); font-weight: 500; background: #fbfbfc; }
.codecard__head .ic { width: 17px; height: 17px; color: var(--accent); }
.codecard__body { padding: 20px 22px; overflow-x: auto; }
.codecard pre { margin: 0; font-family: var(--mono); font-size: 12.5px; line-height: 1.7; color: var(--ink); white-space: pre; }
.codecard .cm { color: var(--ink3); }
.codecard .ck { color: var(--accent); }
.codecard .cs { color: #15803d; }

.fmt-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; justify-content: center; }
.fmt-pill { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--ink2); background: #fff; border: 1px solid var(--line2); border-radius: var(--r-pill); padding: 9px 16px; font-family: var(--mono); }
.fmt-pill .ic { width: 16px; height: 16px; color: var(--accent); }

.band-soft { background: #fbfbfc; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; text-align: left; }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.link-card {
  background: var(--card); border: 1px solid transparent; border-radius: var(--r-lg);
  padding: 28px 26px; text-decoration: none; color: inherit; display: flex; flex-direction: column;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.link-card:hover { transform: translateY(-3px); box-shadow: 0 22px 48px -22px rgba(0,0,0,.2); border-color: var(--line2); }
.link-card__ic { width: 46px; height: 46px; border-radius: 13px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.link-card__ic .ic { width: 22px; height: 22px; }
.link-card__tag { font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.link-card h4 { font-size: 19px; font-weight: 400; margin: 0 0 10px; letter-spacing: -.01em; }
.link-card p { font-size: 14px; color: var(--ink2); line-height: 1.55; margin: 0 0 18px; }
.link-card__go { margin-top: auto; font-size: 14px; font-weight: 500; color: var(--accent); display: inline-flex; align-items: center; gap: 8px; }
.link-card__go .ic { width: 16px; height: 16px; transition: transform .18s; }
.link-card:hover .link-card__go .ic { transform: translateX(4px); }
.link-card--static { cursor: default; }
.link-card--static:hover { transform: none; box-shadow: none; border-color: transparent; }
.link-card__date { font-size: 12.5px; color: var(--ink3); margin-bottom: 10px; }

.faq { max-width: 780px; margin: 44px auto 0; text-align: left; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 0; font-size: 17px; font-weight: 500; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ic { width: 20px; height: 20px; color: var(--ink3); transition: transform .2s; flex-shrink: 0; }
.faq details[open] summary .ic { transform: rotate(45deg); }
.faq details p { font-size: 15px; color: var(--ink2); line-height: 1.65; margin: 0 0 22px; max-width: 680px; }

.dtable { width: 100%; border-collapse: collapse; margin-top: 40px; text-align: left; font-size: 14px; }
.dtable th { font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink3); padding: 14px 16px; border-bottom: 1px solid var(--line2); }
.dtable td { padding: 16px; border-bottom: 1px solid var(--line); color: var(--ink2); }
.dtable td.name { color: var(--ink); font-weight: 500; }
.dtable td .num { font-variant-numeric: tabular-nums; color: var(--ink); font-weight: 600; }
.dtable tr:hover td { background: var(--card); }
.dtable__wrap { overflow-x: auto; }

.callout { display: flex; gap: 16px; align-items: flex-start; background: var(--accent-soft); border-radius: var(--r-lg); padding: 24px 26px; margin-top: 36px; text-align: left; }
.callout .ic { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.callout p { margin: 0; font-size: 14.5px; color: var(--ink2); line-height: 1.6; }
.callout p b { color: var(--ink); font-weight: 600; }

.req-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 32px; margin-top: 40px; text-align: left; }
.req { display: flex; gap: 12px; align-items: flex-start; }
.req .ic { width: 20px; height: 20px; color: var(--ok); flex-shrink: 0; margin-top: 2px; }
.req span { font-size: 15px; color: var(--ink2); line-height: 1.5; }
.req span b { color: var(--ink); font-weight: 500; }

.timeline { max-width: 780px; margin: 44px auto 0; text-align: left; }
.tl { display: flex; gap: 20px; padding-bottom: 32px; position: relative; }
.tl:last-child { padding-bottom: 0; }
.tl::before { content: ''; position: absolute; left: 21px; top: 46px; bottom: -6px; width: 2px; background: var(--line2); }
.tl:last-child::before { display: none; }
.tl__n { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 500; z-index: 1; }
.tl__b h4 { font-size: 19px; font-weight: 500; margin: 6px 0 8px; letter-spacing: -.01em; }
.tl__b p { font-size: 15px; color: var(--ink2); line-height: 1.6; margin: 0; }

.legal { max-width: 820px; margin: 0 auto; text-align: left; }
.legal h3 { font-size: 20px; font-weight: 500; margin: 36px 0 12px; }
.legal h3:first-child { margin-top: 0; }
.legal p, .legal li { font-size: 14.5px; color: var(--ink2); line-height: 1.7; }
.legal p { margin: 0 0 14px; }
.legal ul { margin: 0 0 18px; padding-left: 22px; }
.legal ul li { margin-bottom: 8px; }
.legal .upd { font-size: 13px; color: var(--ink3); margin-bottom: 30px; }

.mini-cta { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.mini-cta__box { background: var(--ink); color: #fff; border-radius: var(--r-lg); padding: 54px 48px; text-align: center; }
.mini-cta__box h2 { font-size: 34px; font-weight: 300; letter-spacing: -.02em; margin: 0 0 14px; color: #fff; }
.mini-cta__box p { font-size: 16px; color: rgba(255,255,255,.7); max-width: 520px; margin: 0 auto 28px; line-height: 1.6; }
.mini-cta__box .btn--ghost { background: transparent; border-color: rgba(255,255,255,.3); color: #fff; }
.mini-cta__box .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.mini-cta__row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.statbar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.statbar__i { text-align: center; }
.statbar__v { font-size: 40px; font-weight: 300; letter-spacing: -.02em; margin-bottom: 8px; }
.statbar__l { font-size: 13.5px; color: var(--ink2); line-height: 1.5; }

@media (max-width: 900px) {
  .flow, .flow--3, .flow--4, .feat-grid, .req-list { grid-template-columns: 1fr; }
  .card-grid, .card-grid--2 { grid-template-columns: 1fr; }
  .statbar { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 720px) {
  .page-hero h1 { font-size: 36px; }
  .page-hero__inner { padding: 56px 20px 46px; }
  .mini-cta { padding: 0 20px; }
  .mini-cta__box { padding: 40px 26px; }
  .crumbs { padding: 18px 20px 0; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1180px) {
  .ind-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1080px) {
  .tri, .type-grid, .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .pillars, .dsteaser, .mkt-grid { grid-template-columns: 1fr; }
  .sell-steps { grid-template-columns: repeat(2, 1fr); }
  .tk-foot__inner { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (max-width: 720px) {
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .sell-steps { grid-template-columns: 1fr; }
  .dcard__meta { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .net-grid, .why-cols { grid-template-columns: 1fr; gap: 20px; }
  .wiz { grid-template-columns: 1fr; }
  .wiz__steps { position: static; display: flex; overflow-x: auto; gap: 8px; margin-bottom: 24px; }
  .wiz__steps li { flex-direction: column; min-width: 130px; }
  .wiz__steps .sd { display: none; }
}

/* --- Мобильная навигация: бургер-аккордеон (мега-меню → вертикальный список) --- */
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .tk-menu {
    display: none; position: fixed; top: 66px; left: 0; right: 0; bottom: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: #fff; padding: 16px 20px 40px; overflow-y: auto; z-index: 45;
    border-top: 1px solid var(--line);
  }
  .tk-menu.open { display: flex; }
  .tk-item { position: static; width: 100%; }
  .tk-link { width: 100%; justify-content: flex-start; font-size: 16px; padding: 14px 12px; border-radius: var(--r); }
  .tk-link .caret { margin-left: auto; }
  /* панели раскрыты как аккордеон (по hover не работает на тач; .open по клику) */
  .mega, .drop {
    position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
    box-shadow: none; border: none; border-radius: 0; padding: 0 0 8px 8px; width: auto; min-width: 0;
    display: none;
  }
  .tk-item.has-mega.open .mega, .tk-item.has-drop.open .drop { display: block; }
  .tk-item.has-mega:hover .mega, .tk-item.has-drop:hover .drop { transform: none; }
  .mega__inner { grid-template-columns: 1fr; gap: 10px; }
  .mega__intro { border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 12px; }
  .mega__cols { grid-template-columns: 1fr; }
  .mega { width: auto; }
  .tk-login { display: none; }
}
@media (max-width: 720px) {
  .section { padding: 62px 20px; }
  .tk-hero__inner { padding: 72px 20px 48px; }
  .tk-hero h1 { font-size: 42px; }
  .tk-hero__lead { font-size: 17px; }
  .section h2, .cta-band h2, .net-band h2 { font-size: 30px; }
  .tri, .type-grid, .exp-grid, .steps { grid-template-columns: 1fr; }
  .net-band__inner, .cta-band__inner { padding: 60px 20px; }
  .tk-foot__inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .tk-foot__brand { grid-column: 1 / -1; }
  .opt-grid { grid-template-columns: 1fr; }
  .kv-grid { grid-template-columns: 1fr; }
  .datacard__grid { grid-template-columns: 1fr; }
  .dc-cell { border-right: none; }
  .announce__txt { font-size: 12px; padding-right: 24px; }
}
@media (max-width: 620px) {
  .topbar { padding: 0 16px; height: 60px; }
  .stat-chip { display: none; }
  .wrap { padding: 30px 16px 70px; }
  .page-head h1 { font-size: 30px; }
  .metrics { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .proj-feed, .ds-feed { grid-template-columns: 1fr; }
  .tk-foot__inner { grid-template-columns: 1fr; }
  .panel { padding: 22px; }
}

/* ===== Полоса «Нам доверяют» (LADA — логотип, остальные — вордмарки) ===== */
.trustbar { margin-top: 10px; }
.trustbar__row { gap: 22px 34px; flex-wrap: wrap; align-items: center; }
.trust-logo { height: 24px; width: auto; opacity: .55; filter: grayscale(1); vertical-align: middle; }
.trust-wm { font-weight: 600; font-size: 15px; color: var(--ink3); letter-spacing: -.01em; }

/* кабинет заказчика — служебные подсказки форм (создание проекта / заявка) */
.hint.err-text { color: var(--danger); }
.hint.ok-text { color: var(--ok); }
