/* ===== фоновая чертёжная сетка ===== */
body {
  background-image:
    linear-gradient(#121212 1px, transparent 1px),
    linear-gradient(90deg, #121212 1px, transparent 1px);
  background-size: 64px 64px;
}
@media (min-width: 768px) {
  body { background-size: 80px 80px; }
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad);
  position: relative;
}
@media (min-width: 1264px) {
  .container { border-inline: 1px solid var(--line); }
}

/* секции: горизонтальные линии + крестики на пересечениях */
.section { border-top: 1px solid var(--line); position: relative; padding: 72px 0 88px; }
@media (min-width: 1264px) {
  .section .container::before,
  .section .container::after {
    content: '+';
    position: absolute;
    top: -84px;
    font-family: var(--font-mono);
    font-size: 14px;
    line-height: 1;
    color: var(--line-2);
  }
  .section .container::before { left: -5px; }
  .section .container::after { right: -5px; }
}

.coord { display: block; margin-bottom: 20px; color: var(--faint); }

.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head h2 {
  font-size: clamp(28px, 4.6vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.section-sub { margin-top: 14px; color: var(--muted); font-size: 16px; }

/* ===== header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  height: 56px;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand { font-weight: 700; letter-spacing: 0.02em; font-size: 15px; }
.brand span { color: var(--muted); font-weight: 500; }
.site-nav { display: flex; gap: 4px; }
.site-nav a { padding: 8px 10px; transition: color var(--t-fast) var(--ease); }
.site-nav a:hover { color: var(--text); }
.site-nav .nav-contact { color: var(--accent); }
.site-nav .nav-contact:hover { color: var(--accent-hover); }
@media (max-width: 700px) {
  .site-nav a:not(.nav-contact) { display: none; }
}

/* ===== hero ===== */
.hero { border-top: none; padding: 40px 0 72px; }
.hero-grid { display: grid; gap: 40px; }
.hero-grid > * { min-width: 0; }
.hero h1 {
  font-size: clamp(38px, 9.4vw, 84px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
}
.hero-sub { margin-top: 20px; color: var(--muted); font-size: 17px; max-width: 30em; }
.hero-metrics { margin-top: 26px; font-size: 13px; }
@media (min-width: 1020px) {
  .hero { padding: 72px 0 96px; }
  .hero-grid { grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); gap: 0; align-items: start; }
  .hero-copy { padding-right: 48px; }
  .hero-term { border-left: 1px solid var(--line); padding-left: 48px; }
}

/* ===== терминал ===== */
.term {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--r-media);
  overflow: hidden;
}
.term-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}
.dots { display: flex; gap: 6px; }
.dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); }
.term-title { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.term-status { display: flex; align-items: center; gap: 7px; color: var(--muted); }
.blink-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

.term-view { padding: 22px 20px 16px; min-height: 380px; display: flex; flex-direction: column; }
.term-label { display: block; font-size: 15px; line-height: 1.5; margin-bottom: 18px; max-width: 30em; }
.term-inputs { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.term-input-wrap input {
  width: 100%;
  background: #0D0D0D;
  border: 1px solid var(--line-2);
  border-radius: var(--r-ui);
  padding: 13px 15px;
  font-size: 15px;
  color: var(--text);
  transition: border-color var(--t-fast) var(--ease);
  caret-color: var(--accent);
}
.term-input-wrap input::placeholder { color: var(--faint); }
.term-input-wrap input:focus { border-color: var(--accent); outline: none; }
.term-input-wrap input.shake { animation: shake 200ms var(--ease); border-color: #C25E3A; }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  30% { transform: translateX(-5px); }
  60% { transform: translateX(5px); }
}
.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--r-ui);
  padding: 13px 22px;
  min-height: 44px;
  transition: background var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.btn-accent:hover { background: var(--accent-hover); box-shadow: 0 0 24px rgba(180, 255, 57, 0.25); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-2);
  color: var(--text);
  font-size: 15px;
  border-radius: var(--r-ui);
  padding: 13px 20px;
  min-height: 44px;
  transition: border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.term-form .btn-accent { width: 100%; }
.term-note { display: block; margin-top: 12px; text-align: center; }

/* idle-лог */
.term-log {
  margin-top: auto;
  min-width: 0;
  max-width: 100%;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  height: 108px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 5px;
}
.term-log div, .run-log div {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.term-log div:nth-child(1) { color: #3D3D3D; }
.term-log div:nth-child(2) { color: var(--faint); }
.term-log .ok, .run-log .ok { color: var(--accent); }
.term-log .ts, .run-log .ts { color: #757575; }

/* сканер */
.term-scan {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 18px;
  background: linear-gradient(to bottom, transparent, rgba(180, 255, 57, 0.06));
  border-bottom: 1px solid rgba(180, 255, 57, 0.4);
  opacity: 0;
  pointer-events: none;
  animation: scan 7s var(--ease) infinite;
  animation-delay: 2s;
}
@keyframes scan {
  0% { transform: translateY(-20px); opacity: 0; }
  6% { opacity: 1; }
  22% { transform: translateY(110%); opacity: 1; }
  28% { transform: translateY(110%); opacity: 0; }
  100% { transform: translateY(110%); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .term-scan { display: none; }
}

/* прогон демки */
.term-run { flex: 1; display: flex; flex-direction: column; gap: 6px; padding-top: 4px; }
.run-log { display: flex; flex-direction: column; gap: 7px; }
.run-log div { opacity: 0; transform: translateY(4px); transition: opacity 300ms var(--ease), transform 300ms var(--ease); }
.run-log div.in { opacity: 1; transform: none; }
.run-progress { margin-top: auto; padding-top: 14px; color: var(--muted); }

/* результат демки */
.term-result { display: flex; flex-direction: column; gap: 14px; }
.result-head { display: flex; flex-direction: column; gap: 6px; }
.result-head h2 { font-size: 20px; font-weight: 600; }
.term-preview {
  display: block;
  position: relative;
  height: 264px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-ui);
  overflow: hidden;
  background: #FAF9F6;
  transition: border-color var(--t-fast) var(--ease);
}
.term-preview:hover { border-color: var(--accent); }
.term-preview-inner {
  width: 200%;
  transform: scale(0.5);
  transform-origin: 0 0;
  pointer-events: none;
}
.term-preview-inner .kp { min-height: 0; }
.preview-hint {
  position: absolute;
  right: 10px; bottom: 10px;
  background: rgba(10, 10, 10, 0.82);
  color: var(--text);
  padding: 5px 10px;
  border-radius: 8px;
  opacity: 0;
  transition: opacity var(--t-fast) var(--ease);
}
.term-preview:hover .preview-hint { opacity: 1; }
.result-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.result-actions .btn-again { border-color: transparent; color: var(--muted); }
.result-actions .btn-again:hover { color: var(--text); border-color: var(--line-2); }
.share-fallback input {
  width: 100%;
  background: #0D0D0D;
  border: 1px solid var(--line-2);
  border-radius: var(--r-ui);
  padding: 11px 13px;
  font-size: 12px;
  color: var(--text);
}

/* ===== продукты ===== */
.products-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 900px) { .products-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
.product {
  display: block;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-media);
  overflow: hidden;
  transition: border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.product:hover { border-color: rgba(180, 255, 57, 0.35); }
.shot-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.product-shot { position: relative; overflow: hidden; }
.product-shot img {
  width: 100%;
  height: auto;
  transition: transform 400ms var(--ease);
}
.product:hover .product-shot img { transform: translateY(-8px); }
.product-info { padding: 18px 20px 20px; }
.product-info h3 { font-size: 20px; font-weight: 600; margin-bottom: 6px; }
.product-info p { color: var(--muted); font-size: 14.5px; line-height: 1.55; margin-bottom: 12px; }
.product:hover .shot-bar .mono { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.shot-bar .mono::after { content: ' \2197'; color: var(--faint); }
.product:hover .shot-bar .mono::after { color: var(--accent); }
@media (hover: hover) {
  .product-shot img { filter: grayscale(0.55); transition: transform 400ms var(--ease), filter 300ms var(--ease); }
  .product:hover .product-shot img { filter: grayscale(0); }
}

/* reveal продуктов */
.rv { opacity: 0; transform: translateY(14px); transition: opacity 500ms var(--ease), transform 500ms var(--ease); }
.rv.in { opacity: 1; transform: none; }

/* ===== схема ===== */
.scheme-wrap { position: relative; }
#scheme-svg svg { width: 100%; height: auto; display: block; }
.scheme-caption { margin-top: 22px; text-align: center; font-size: 13px; }

/* ===== отзывы ===== */
.reviews { border-top: 1px solid var(--line); }
.review {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 6px 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.review p {
  grid-column: 2;
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
  transition: color 300ms var(--ease);
  max-width: 36em;
}
.review-n { transition: color 300ms var(--ease); padding-top: 5px; }
.review-a { grid-column: 2; margin-top: 4px; }
.review.lit p { color: var(--text); }
.review.lit .review-n { color: var(--accent); }
@media (min-width: 900px) {
  .review { grid-template-columns: 64px 1fr 260px; align-items: baseline; }
  .review p { grid-column: auto; }
  .review-a { grid-column: auto; text-align: right; margin-top: 0; }
}

/* ===== манифест ===== */
.manifesto {
  background: var(--bg);
  padding: max(18vh, 140px) var(--pad);
  text-align: center;
  border-top: 1px solid var(--line);
}
.manifesto-text {
  font-size: clamp(21px, 3.4vw, 30px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  max-width: 26em;
  margin: 0 auto;
}
.m-line {
  display: block;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.manifesto.in .m-line { opacity: 1; transform: none; }
.manifesto.in .m-line:nth-child(2) { transition-delay: 350ms; }
.manifesto.in .m-line:nth-child(3) { transition-delay: 700ms; }
.chronos { color: #6B6B6B; }
.kairos { border-bottom: 1px solid var(--accent); padding-bottom: 2px; }
.manifesto-note {
  display: block;
  margin-top: 28px;
  opacity: 0;
  transition: opacity 600ms var(--ease) 1100ms;
}
.manifesto.in .manifesto-note { opacity: 1; }

/* ===== основатель ===== */
.founder-grid { display: grid; gap: 36px; }
.founder-photo {
  border: 1px solid var(--line);
  border-radius: var(--r-media);
  overflow: hidden;
  background: var(--surface);
  max-width: 440px;
}
.founder-photo img { width: 100%; height: auto; filter: saturate(0.85); }
.founder-lead { font-size: clamp(21px, 3vw, 28px); font-weight: 500; line-height: 1.4; max-width: 22em; }
.founder-sub { margin-top: 16px; color: var(--muted); font-size: 16px; max-width: 30em; }
.founder-meta { display: block; margin-top: 24px; }
@media (min-width: 900px) {
  .founder-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 56px; align-items: center; }
}

/* ===== контакт: финальный кадр с паузой сетки ===== */
.contact { padding: 84px 0 96px; background: var(--bg); }
.contact-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; }
.contact .coord { margin-bottom: 4px; }
.contact-cmd { color: var(--faint); }
.contact-mail {
  font-family: var(--font-sans);
  font-size: clamp(27px, 6.4vw, 64px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  padding: 8px 4px;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 2px;
  transition: background-size 300ms var(--ease);
}
.contact-mail:hover { background-size: 100% 2px; }
.cursor {
  display: inline-block;
  width: 0.42em;
  height: 0.82em;
  margin-left: 0.12em;
  vertical-align: baseline;
  transform: translateY(0.12em);
  background: var(--accent);
  animation: blink 1.1s steps(2, start) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.contact-note { color: var(--muted); max-width: 30em; }
.contact-links { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-top: 6px; }
.contact-links a { color: var(--muted); text-decoration: underline; text-underline-offset: 4px; transition: color var(--t-fast) var(--ease); padding: 6px; }
.contact-links a:hover { color: var(--accent); }
.contact-reply { color: var(--faint); }

/* ===== футер ===== */
.site-footer { border-top: 1px solid var(--line); padding: 22px 0; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; }
.footer-inner a { transition: color var(--t-fast) var(--ease); }
.footer-inner a:hover { color: var(--text); }
.footer-tag { color: #666666; }

/* ===== v2: мета-строки без висячих разделителей ===== */
.meta { display: inline-flex; flex-wrap: wrap; gap: 4px 8px; }
.meta > * + *::before { content: '\00B7\00A0'; color: var(--faint); }
.term-note.meta { display: flex; justify-content: center; }
.hero-metrics.meta { display: flex; gap: 4px 10px; }

/* ===== v2: паспорта секций и микро-строки ===== */
.coord-id { color: #3D3D3D; }
@media (max-width: 560px) { .coord-id { display: none; } }
.section-micro { display: block; margin-top: 14px; }

/* ===== v2: тикер состояния ===== */
.ticker { border-top: 1px solid var(--line); padding: 22px 0; background: var(--bg); }
.ticker-head { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.ticker-row { display: flex; gap: 28px; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; }
.ticker-row::-webkit-scrollbar { display: none; }
.tick { flex: 0 0 auto; display: flex; flex-direction: column; gap: 4px; padding-right: 28px; border-right: 1px solid var(--line); }
.tick:last-child { border-right: none; }
.tick b { font-size: 22px; font-weight: 500; color: var(--text); letter-spacing: 0; text-transform: none; }
.tick span { font-size: 11px; }
@media (min-width: 1020px) {
  .ticker-row { justify-content: space-between; overflow: visible; }
}

/* ===== v2: анатомия конвейера ===== */
.pipeline { display: flex; flex-direction: column; gap: 0; }
.pl-group {
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-media);
  padding: 20px 22px;
  transition: border-color var(--t-fast) var(--ease);
}
.pl-group:hover { border-color: var(--line-2); }
.pl-group::before, .pl-group::after {
  content: '';
  position: absolute;
  width: 12px; height: 12px;
  border: 0 solid var(--accent);
  opacity: 0;
  transition: opacity var(--t-fast) var(--ease);
}
.pl-group::before { top: 8px; left: 8px; border-top-width: 1px; border-left-width: 1px; }
.pl-group::after { bottom: 8px; right: 8px; border-bottom-width: 1px; border-right-width: 1px; }
.pl-group:hover::before, .pl-group:hover::after { opacity: 0.7; }
.pl-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px; margin-bottom: 8px; }
.pl-head h3 { font-size: 18px; font-weight: 600; }
.pl-desc { color: var(--muted); font-size: 14px; line-height: 1.55; margin-bottom: 14px; max-width: 36em; }
.pl-agents { display: flex; flex-wrap: wrap; gap: 8px; }
.pl-agent {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.pl-agent i { width: 6px; height: 6px; background: var(--line-2); transition: background var(--t-fast) var(--ease); }
.pl-agent.on { color: var(--text); border-color: rgba(180, 255, 57, 0.5); }
.pl-agent.on i { background: var(--accent); }
.pl-link { display: flex; justify-content: center; padding: 2px 0; }
.pl-link span { position: relative; width: 1px; height: 28px; background: var(--line-2); display: block; overflow: hidden; }
.pl-link span::after {
  content: '';
  position: absolute;
  left: 0; top: -8px;
  width: 1px; height: 8px;
  background: var(--accent);
  animation: pl-drop 2.6s linear infinite;
}
@keyframes pl-drop { to { transform: translateY(44px); } }
@media (min-width: 1020px) {
  .pipeline { display: grid; grid-template-columns: 1fr 24px 1fr 24px 1fr 24px 1fr; align-items: stretch; }
  .pl-link { align-items: center; padding: 0; }
  .pl-link span { width: 24px; height: 1px; }
  .pl-link span::after { top: 0; left: -8px; width: 8px; height: 1px; animation: pl-run 2.6s linear infinite; }
  @keyframes pl-run { to { transform: translateX(40px); } }
  .pl-desc { min-height: 66px; }
}
@media (prefers-reduced-motion: reduce) { .pl-link span::after { display: none; } }

/* ===== v2: в работе сейчас ===== */
.now-list { display: flex; flex-direction: column; }
.now-item { padding: 22px 0; border-top: 1px solid var(--line); position: relative; }
.now-item:last-child { border-bottom: 1px solid var(--line); }
.now-head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 8px; max-width: 760px; }
.now-n { color: var(--accent); }
.now-head h3 { font-size: 19px; font-weight: 600; }
.now-status { margin-left: auto; white-space: nowrap; flex-shrink: 0; }
.now-item p { color: var(--muted); font-size: 14.5px; max-width: 40em; margin-bottom: 14px; }
.now-bar {
  height: 6px;
  border: 1px solid var(--line-2);
  border-radius: 3px;
  overflow: hidden;
  background: var(--surface);
  max-width: 560px;
}
.now-fill {
  height: 100%;
  background: repeating-linear-gradient(-45deg, rgba(180, 255, 57, 0.75) 0 3px, rgba(180, 255, 57, 0.2) 3px 6px);
  background-size: 200% 100%;
  animation: now-slide 3s linear infinite;
}
@keyframes now-slide { to { background-position: -17px 0; } }
@media (prefers-reduced-motion: reduce) { .now-fill { animation: none; } }
.now-pct { display: block; margin-top: 6px; }

/* ===== v2: хронология ===== */
.tl { border-left: 1px solid var(--line-2); padding-left: 24px; margin-left: 4px; display: flex; flex-direction: column; gap: 26px; }
.tl-year {
  font-size: 30px;
  font-weight: 500;
  color: var(--faint);
  letter-spacing: 0.04em;
  position: relative;
}
.tl-year::before {
  content: '';
  position: absolute;
  left: -28.5px; top: 50%;
  width: 9px; height: 9px;
  background: var(--bg);
  border: 1px solid var(--accent);
  transform: translateY(-50%) rotate(45deg);
}
.tl-item { position: relative; max-width: 560px; }
.tl-item::before {
  content: '';
  position: absolute;
  left: -27px; top: 8px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--line-2);
}
.tl-item h3 { font-size: 17px; font-weight: 600; margin: 4px 0 4px; }
.tl-item p { color: var(--muted); font-size: 14px; line-height: 1.55; }
.tl-q { color: var(--muted); }
@media (min-width: 900px) { .tl { margin-left: 120px; } }

/* ===== v2: лог ===== */
.log { border-top: 1px solid var(--line); max-width: 760px; }
.log-row {
  display: grid;
  grid-template-columns: 92px 64px 1fr;
  gap: 6px 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.log-date { color: var(--muted); }
.log-ver { color: var(--accent); }
.log-msg { color: var(--muted); text-transform: none; letter-spacing: 0.02em; }
@media (max-width: 560px) {
  .log-row { grid-template-columns: 92px 64px; }
  .log-msg { grid-column: 1 / -1; }
}

/* ===== v2: кодекс ===== */
.codex-grid { display: grid; gap: 36px; }
.codex-col { display: flex; flex-direction: column; gap: 24px; }
.codex-item { display: grid; grid-template-columns: 40px 1fr; gap: 4px 14px; }
.codex-n { color: var(--accent); padding-top: 4px; }
.codex-item h3 { font-size: 17px; font-weight: 600; grid-column: 2; }
.codex-item p { color: var(--muted); font-size: 14px; line-height: 1.55; grid-column: 2; max-width: 34em; }
.codex-none {
  border: 1px solid var(--line);
  border-radius: var(--r-media);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: start;
  background: var(--surface);
}
.codex-none-head { color: var(--faint); }
.codex-x { color: var(--faint); }
.codex-none .codex-item p { grid-column: 2; }
@media (min-width: 1020px) { .codex-grid { grid-template-columns: 1.15fr 1fr; gap: 56px; } }

/* ===== v2: живость продуктов и основателя ===== */
.product-live { display: block; margin-top: 7px; color: var(--faint); }
.product-live b { color: var(--muted); }
.founder-tl { display: flex; flex-direction: column; gap: 7px; margin-top: 22px; }
.founder-tl > div { display: flex; gap: 14px; color: var(--muted); }
.founder-tl .tl-q { color: var(--accent); min-width: 42px; }

/* ===== v2: скролл-линейка ===== */
.scroll-rail {
  display: none;
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}
.scroll-rail::before, .scroll-rail::after {
  content: '';
  width: 1px;
  height: 54px;
  background: var(--line-2);
}
#rail-n { color: var(--accent); }
@media (min-width: 1160px) { .scroll-rail { display: flex; } }

/* ===== тост ===== */
.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 12px);
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-ui);
  padding: 11px 18px;
  color: var(--text);
  opacity: 0;
  transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
  z-index: 100;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
