/* SaleCore hi-fi design system */
@import url('https://fonts.googleapis.com/css2?family=Onest:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* Brand palette (from logo + presentation) */
  --sc-navy-900: #0A1E3F;
  --sc-navy-800: #0B3B6F;
  --sc-navy-700: #1552A0;
  --sc-cyan-500: #00B8E6;
  --sc-cyan-400: #29C6F0;
  --sc-cyan-300: #7FDCF5;
  --sc-cyan-100: #E6F8FD;
  /* Тёмный cyan для текста на белом фоне (WCAG AA: 4.6:1). */
  --sc-cyan-700: #0094B8;

  /* Neutrals */
  --sc-ink: #0A0E1A;
  --sc-ink-2: #1E2333;
  --sc-gray-700: #404654;
  --sc-gray-500: #6B7280;
  --sc-gray-300: #D1D5DB;
  --sc-gray-200: #E5E7EB;
  --sc-gray-100: #F3F4F6;
  --sc-gray-50: #F9FAFB;
  --sc-white: #FFFFFF;

  /* Semantic */
  --sc-ok: #10B981;
  --sc-warn: #F59E0B;
  --sc-err: #EF4444;
  --sc-profit: #22C55E;
  /* Тёмные оттенки для мелкого текста на белом (WCAG AA). */
  --sc-profit-dark: #15803D;
  --sc-err-dark: #B91C1C;

  /* Gradients */
  --sc-grad-hero: linear-gradient(135deg, #0A1E3F 0%, #0B3B6F 40%, #00B8E6 100%);
  --sc-grad-soft: linear-gradient(180deg, #E6F8FD 0%, #FFFFFF 100%);
  --sc-grad-dots: radial-gradient(circle at center, rgba(0, 184, 230, 0.15) 1px, transparent 1.5px);

  /* Type */
  --sc-font-display: 'Onest', system-ui, sans-serif;
  --sc-font-body: 'Inter', system-ui, sans-serif;
  --sc-font-mono: 'JetBrains Mono', monospace;

  /* Shadows */
  --sc-sh-sm: 0 1px 2px rgba(10, 30, 63, 0.05);
  --sc-sh-md: 0 8px 24px -8px rgba(10, 30, 63, 0.12);
  --sc-sh-lg: 0 24px 48px -12px rgba(10, 30, 63, 0.18);
  --sc-sh-glow: 0 0 0 6px rgba(0, 184, 230, 0.12);
}

/* Reset */
.sc-root, .sc-root * { box-sizing: border-box; }
.sc-root {
  font-family: var(--sc-font-body);
  color: var(--sc-ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

/* Type */
.sc-display {
  font-family: var(--sc-font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

/* Module modal table image — hide on mobile, show clean code on small screens */
.sc-module-table {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  border: 1px solid var(--sc-gray-200);
  margin-top: 22px;
}
@media (max-width: 720px) {
  .sc-module-table { display: none; }
}

/* Hero SC-icon — desktop only, partner figure right.
   PNG используется как маска, в неё заливается flowing-gradient cyan→navy→cyan
   (тот же эффект что на тексте "на одном экране"). */
.sc-hero-logo {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  height: 440px;
  width: 440px;
  pointer-events: none;
  z-index: 1;
  display: block;
  -webkit-mask-image: url('/img/logo-icon-navy-cyan.png');
          mask-image: url('/img/logo-icon-navy-cyan.png');
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-mode: alpha;
          mask-mode: alpha;
  background: linear-gradient(90deg, #00B8E6 0%, #1552A0 50%, #00B8E6 100%);
  background-size: 200% auto;
  animation: sc-gt-flow 5s linear infinite;
}
@media (max-width: 1199px) {
  .sc-hero-logo { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .sc-hero-logo { animation: none; }
}

/* На узких экранах сужаем padding модалки — карусель с фото остаётся видимой */
@media (max-width: 720px) {
  .sc-modal-card { padding: 28px 22px 24px !important; }
}
.sc-h1 { font-size: 72px; }
.sc-h2 { font-size: 52px; }
.sc-h3 { font-size: 32px; }
.sc-h4 { font-size: 22px; letter-spacing: -0.02em; }
.sc-eyebrow {
  font-family: var(--sc-font-mono);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  /* WCAG AA: navy-700 на белом = 7:1. Также перебиваем inline-стили,
     которые используют var(--sc-cyan-500|400) на отдельных eyebrow. */
  --sc-cyan-500: var(--sc-navy-700);
  --sc-cyan-400: var(--sc-navy-700);
  color: var(--sc-navy-700);
}
.sc-mono {
  font-family: var(--sc-font-mono);
  font-variant-numeric: tabular-nums;
}

/* Buttons */
.sc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  font-family: var(--sc-font-body);
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.12s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.sc-btn--primary {
  background: var(--sc-navy-900);
  color: white;
}
.sc-btn--primary:hover { background: var(--sc-navy-800); transform: translateY(-1px); box-shadow: var(--sc-sh-md); }
.sc-btn--cyan {
  background: var(--sc-cyan-500);
  color: #000;
  font-weight: 700;
}
.sc-btn--cyan:hover { background: var(--sc-cyan-400); box-shadow: var(--sc-sh-glow); }
.sc-btn--ghost {
  background: transparent;
  color: var(--sc-ink);
  border: 1.5px solid var(--sc-gray-200);
}
.sc-btn--ghost:hover { border-color: var(--sc-navy-800); }
.sc-btn--sm { height: 40px; padding: 0 16px; font-size: 14px; }
.sc-btn--lg { height: 56px; padding: 0 28px; font-size: 16px; }

/* Chip / tag */
.sc-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--sc-cyan-100);
  color: #000;
  font-size: 12px;
  font-weight: 500;
}
.sc-chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sc-cyan-500); }

/* Card */
.sc-card {
  background: white;
  border-radius: 20px;
  border: 1px solid var(--sc-gray-200);
  box-shadow: var(--sc-sh-sm);
  overflow: hidden;
}
.sc-card--dark {
  background: var(--sc-navy-900);
  color: white;
  border-color: var(--sc-navy-800);
}

/* Nav */
.sc-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px 56px;
  border-bottom: 1px solid var(--sc-gray-200);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.sc-nav > a:first-child { margin-right: auto; }
.sc-nav__cta { margin-left: 28px; }
.sc-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sc-font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.sc-nav__links {
  display: flex;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--sc-gray-700);
}
.sc-nav__links a { color: inherit; text-decoration: none; cursor: pointer; }
.sc-nav__links a:hover { color: var(--sc-navy-800); }

/* Dropdown в навбаре — для "Инструменты ▾" */
.sc-nav__dd { position: relative; }
.sc-nav__dd-trigger {
  background: transparent;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.sc-nav__dd-trigger:hover { color: var(--sc-navy-800); }
.sc-nav__dd-chev {
  font-size: 10px;
  transition: transform 0.2s ease;
  opacity: 0.7;
}
.sc-nav__dd.is-open .sc-nav__dd-chev { transform: rotate(180deg); }
.sc-nav__dd-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -16px;
  min-width: 240px;
  background: white;
  border: 1px solid var(--sc-gray-200);
  border-radius: 14px;
  box-shadow: 0 18px 40px -8px rgba(10,30,63,0.18);
  padding: 8px;
  z-index: 30;
  animation: sc-dd-fade 0.18s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.sc-nav__dd-menu::before {
  /* invisible bridge чтобы курсор не "проваливался" между триггером и меню */
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}
@keyframes sc-dd-fade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.sc-nav__dd-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 9px;
  text-decoration: none;
  color: var(--sc-navy-900);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s ease;
}
.sc-nav__dd-menu a:hover { background: var(--sc-cyan-100); }
.sc-nav__dd-menu a.is-soon { color: var(--sc-gray-500); }
.sc-nav__dd-menu a.is-soon:hover { background: var(--sc-gray-50); }
.sc-nav__dd-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.95);
}
.sc-nav__dd-label { flex: 1; }
.sc-nav__dd-tag {
  font-family: var(--sc-font-mono);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--sc-gray-200);
  color: var(--sc-gray-500);
}

/* Mobile nav: burger + drawer */
.sc-nav__burger {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.sc-nav__burger:active { background: var(--sc-gray-100); }
.sc-nav__burger span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--sc-navy-900);
  border-radius: 2px;
  transition: top 0.2s ease, transform 0.2s ease, opacity 0.15s ease;
}
.sc-nav__burger span:nth-child(1) { top: 15px; }
.sc-nav__burger span:nth-child(2) { top: 21px; }
.sc-nav__burger span:nth-child(3) { top: 27px; }
.sc-nav__burger[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.sc-nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.sc-nav__burger[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.sc-nav__drawer {
  position: fixed;
  inset: 0;
  background: rgba(10,30,63,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 30;
  display: none;
  animation: sc-drawer-fade 0.2s ease;
}
@keyframes sc-drawer-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.sc-nav__drawer-inner {
  position: absolute;
  top: 0; right: 0;
  width: min(86vw, 340px);
  height: 100%;
  background: white;
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: -12px 0 32px rgba(10,30,63,0.22);
  overflow-y: auto;
  animation: sc-drawer-slide 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes sc-drawer-slide {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
.sc-nav__drawer-close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sc-gray-100);
  border: none;
  color: var(--sc-navy-900);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0;
  padding: 0 0 3px;
}
.sc-nav__drawer-close:active { background: var(--sc-gray-200); }
.sc-nav__drawer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sc-nav__drawer-links li a {
  display: block;
  padding: 16px 4px;
  font-size: 19px;
  font-weight: 600;
  color: var(--sc-navy-900);
  text-decoration: none;
  border-bottom: 1px solid var(--sc-gray-100);
}
.sc-nav__drawer-links li a:active { color: var(--sc-cyan-500); }

/* Drawer вложенное подменю — Инструменты */
.sc-nav__drawer-section {
  font-family: var(--sc-font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sc-gray-500);
  padding: 16px 4px 8px;
  border-bottom: 1px solid var(--sc-gray-100);
}
.sc-nav__drawer-sublinks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.sc-nav__drawer-sublinks li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 12px;
  font-size: 17px;
  font-weight: 500;
  color: var(--sc-navy-900);
  text-decoration: none;
  border-bottom: 1px solid var(--sc-gray-100);
}
.sc-nav__drawer-sublinks li a.is-soon { color: var(--sc-gray-500); }
.sc-nav__drawer-sublinks li a:active { color: var(--sc-cyan-500); }
.sc-nav__drawer-sublinks .sc-nav__dd-dot { width: 8px; height: 8px; }
.sc-nav__drawer-sublinks .sc-nav__dd-tag { margin-left: auto; }

.sc-nav__drawer-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
}
.sc-nav__drawer-cta .sc-btn { width: 100%; justify-content: center; height: 52px; font-size: 15px; }

@media (max-width: 720px) {
  .sc-nav { padding: 14px 18px !important; }
  .sc-nav__logo { font-size: 17px !important; }
  .sc-nav__links,
  .sc-nav__cta { display: none !important; }
  .sc-nav__burger { display: block !important; }
  .sc-nav__drawer { display: block !important; }
  .sc-nav .sc-nav__logo img,
  .sc-nav a > img { height: 44px !important; }
}

/* Background effects */
.sc-bg-grid {
  background-image:
    linear-gradient(var(--sc-gray-200) 1px, transparent 1px),
    linear-gradient(90deg, var(--sc-gray-200) 1px, transparent 1px);
  background-size: 48px 48px;
}
.sc-bg-dots {
  background-image: var(--sc-grad-dots);
  background-size: 24px 24px;
}
.sc-bg-neural {
  position: relative;
  background: var(--sc-grad-hero);
  overflow: hidden;
}
.sc-bg-neural::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at center, rgba(255,255,255,0.3) 1px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: 0.35;
}

/* KPI pill */
.sc-kpi {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 12px;
  background: white;
  border: 1px solid var(--sc-gray-200);
  min-width: 120px;
}
.sc-kpi__label {
  font-size: 11px;
  font-weight: 500;
  color: var(--sc-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sc-kpi__val {
  font-family: var(--sc-font-mono);
  font-weight: 600;
  font-size: 20px;
  color: var(--sc-ink);
}
.sc-kpi__delta {
  font-size: 11px;
  font-weight: 600;
  color: var(--sc-profit);
  display: flex;
  align-items: center;
  gap: 3px;
}
.sc-kpi__delta--down { color: var(--sc-err); }

/* Smooth scroll к якорям + offset под sticky nav */
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* ============================================================
   HERO WOW — highlighter, cursor aura, floating ribbons,
   accent underline. Осторожно: эффекты должны усиливать,
   а не заглушать читаемость H1/sub.
   ============================================================ */

/* Highlighter-полоса под градиентным спаном "на одном экране".
   Появляется после того, как H1 въехал по stagger (~1.05s). */
.sc-h1-em {
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #00B8E6 0%, #1552A0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  isolation: isolate;
}
.sc-h1-em::after {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 0.06em;
  height: 0.16em;
  background: linear-gradient(
    90deg,
    rgba(0,184,230,0) 0%,
    rgba(0,184,230,0.55) 6%,
    rgba(0,184,230,0.55) 94%,
    rgba(0,184,230,0) 100%
  );
  border-radius: 6px;
  transform-origin: left center;
  transform: scaleX(0);
  animation: sc-h1-hl 1.4s 1.05s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  z-index: -1;
  pointer-events: none;
}
@keyframes sc-h1-hl {
  0%   { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}
@media (prefers-reduced-motion: reduce) {
  .sc-h1-em::after { transform: scaleX(1); animation: none; }
}

/* Тонкое подчёркивание под акцент-словами в подзаголовке
   ("7 готовых дашбордов"). Менее яркое чем основной highlighter. */
.sc-accent-underline {
  position: relative;
  font-weight: 600;
  color: var(--sc-navy-900);
  white-space: nowrap;
}
.sc-accent-underline::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 6px;
  background: linear-gradient(90deg, rgba(0,184,230,0.4), rgba(0,184,230,0.15));
  border-radius: 3px;
  transform-origin: left center;
  transform: scaleX(0);
  animation: sc-accent-hl 1.0s 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  z-index: -1;
}
@keyframes sc-accent-hl { to { transform: scaleX(1); } }
@media (prefers-reduced-motion: reduce) {
  .sc-accent-underline::after { transform: scaleX(1); animation: none; }
}

/* Cursor aura — мягкое cyan-пятно следующее за курсором.
   Только для устройств с мышью; на touch не показываем. */
.sc-cursor-aura {
  position: fixed;
  top: 0; left: 0;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,184,230,0.18), rgba(0,184,230,0.04) 40%, transparent 65%);
  pointer-events: none;
  transform: translate(-9999px, -9999px);
  z-index: 1;
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 0.35s ease;
  will-change: transform;
}
.sc-cursor-aura.is-on { opacity: 1; }
@media (hover: none), (pointer: coarse) {
  .sc-cursor-aura { display: none; }
}

/* ============================================================
   FOR WHOM — split layout (sticky title слева, карточки справа)
   ============================================================ */
.sc-fw-split { display: grid; grid-template-columns: 0.85fr 1.8fr; gap: 64px; align-items: start; }
.sc-fw-split__left { position: sticky; top: 140px; margin-top: 0; }
.sc-fw-split__h2 { font-size: 64px; line-height: 1; letter-spacing: -0.025em; margin: 0; }
.sc-fw-split__cards { display: flex; flex-direction: column; gap: 20px; }
.sc-fw-card { background: white; padding: 40px 48px; border-radius: 22px; display: flex; align-items: center; gap: 32px; min-height: 110px; border: 1px solid rgba(10,30,63,0.04); box-shadow: 0 2px 10px rgba(10,30,63,0.05); }
.sc-fw-card__num { font-size: 64px; color: var(--sc-cyan-500); line-height: 1; letter-spacing: -0.025em; min-width: 88px; flex-shrink: 0; }
.sc-fw-card__text { font-size: 26px; font-weight: 500; line-height: 1.35; flex: 1; }
.sc-fw-card__check { width: 40px; height: 40px; border-radius: 12px; background: rgba(34,197,94,0.12); color: #16A34A; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; flex-shrink: 0; }

@media (max-width: 900px) {
  .sc-fw-split { grid-template-columns: 1fr; gap: 40px; }
  .sc-fw-split__left { position: relative; top: 0; margin-top: 0; }
  .sc-fw-split__h2 { font-size: 44px; }
  .sc-fw-card { padding: 24px 24px; gap: 18px; min-height: 0; }
  .sc-fw-card__num { font-size: 40px; min-width: 52px; }
  .sc-fw-card__text { font-size: 17px; }
  .sc-fw-card__check { width: 32px; height: 32px; font-size: 16px; }
}

/* ============================================================
   HERO LIVE SCENE — Excel → Dashboard морф + API-терминал
   справа от H1. Главный wow-элемент.
   ============================================================ */

.sc-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  width: 100%;
}
@media (max-width: 1100px) {
  .sc-hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Slot-machine ротация слова в H1: "цифры" ↔ "₽12,4M" ↔ "27,4% маржа"... */
.sc-rot {
  display: inline-flex;
  align-items: baseline;
  vertical-align: baseline;
  position: relative;
  height: 1em;
  overflow: hidden;
  /* min-width задаётся inline-style в JSX по самому длинному варианту */
}
.sc-rot__slot {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
  background: linear-gradient(90deg, #00B8E6 0%, #1552A0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
}
.sc-rot__caret {
  display: inline-block;
  width: 4px;
  height: 0.78em;
  background: var(--sc-cyan-500);
  margin-left: 6px;
  border-radius: 2px;
  vertical-align: -2px;
  animation: sc-rot-caret 1s steps(2) infinite;
  align-self: center;
}
@keyframes sc-rot-caret { 50% { opacity: 0; } }

/* ── Сцена справа: общий фрейм ── */
.sc-scene {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
  max-width: 580px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F9FBFD 100%);
  border-radius: 20px;
  border: 1px solid var(--sc-gray-200);
  box-shadow: 0 32px 80px -32px rgba(10,30,63,0.25), 0 0 0 1px rgba(0,184,230,0.05);
  overflow: hidden;
  isolation: isolate;
}
.sc-scene::before {
  /* лёгкое cyan-свечение в правом верхнем углу */
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 360px at 100% 0%, rgba(0,184,230,0.10), transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.sc-scene__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--sc-gray-50);
  border-bottom: 1px solid var(--sc-gray-200);
  position: relative;
  z-index: 3;
}
.sc-scene__chrome .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--sc-gray-300); }
.sc-scene__chrome .dot:nth-child(1) { background: #FF5F57; }
.sc-scene__chrome .dot:nth-child(2) { background: #FEBC2E; }
.sc-scene__chrome .dot:nth-child(3) { background: #28C840; }
.sc-scene__chrome-title {
  flex: 1;
  margin-left: 14px;
  font-family: var(--sc-font-mono);
  font-size: 12px;
  color: var(--sc-gray-500);
  background: white;
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid var(--sc-gray-200);
  text-align: center;
  letter-spacing: 0.02em;
}
.sc-scene__chrome-tag {
  font-family: var(--sc-font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sc-cyan-500);
}

.sc-scene__stage {
  position: relative;
  flex: 1;
  height: calc(100% - 46px);
  overflow: hidden;
}

.sc-scene__layer {
  position: absolute;
  inset: 0;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
}

/* ── Excel-grid (Act 1) ── */
.sc-xls {
  font-family: var(--sc-font-mono);
  color: var(--sc-ink);
  font-size: 12px;
}
.sc-xls__head, .sc-xls__row {
  display: grid;
  grid-template-columns: 32px repeat(5, 1fr);
  border-bottom: 1px solid var(--sc-gray-200);
}
.sc-xls__head > div, .sc-xls__row > div {
  padding: 8px 10px;
  border-right: 1px solid var(--sc-gray-200);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}
.sc-xls__head > div { background: var(--sc-gray-50); color: var(--sc-gray-500); font-weight: 600; font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; }
.sc-xls__row > div:first-child { background: var(--sc-gray-50); color: var(--sc-gray-500); text-align: center; font-weight: 600; }
.sc-xls__cell--num { color: var(--sc-navy-900); }
.sc-xls__cell--muted { color: var(--sc-gray-500); }

/* ── Dashboard cards (Act 2) ── */
.sc-dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  height: 100%;
}
.sc-dash-card {
  background: white;
  border: 1px solid var(--sc-gray-200);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.sc-dash-card__head {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--sc-font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sc-gray-500);
  font-weight: 600;
}
.sc-dash-card__head .ic {
  width: 18px; height: 18px; border-radius: 5px;
  background: rgba(0,184,230,0.10);
  color: var(--sc-cyan-500);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px;
}
.sc-dash-card__val {
  font-family: var(--sc-font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--sc-navy-900);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 6px;
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.sc-dash-card__val .cur { font-size: 14px; color: var(--sc-gray-500); transform: translateY(-6px); }
.sc-dash-card__val .suf { font-size: 14px; color: var(--sc-cyan-500); transform: translateY(-6px); font-weight: 700; }
.sc-dash-card__delta {
  font-family: var(--sc-font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.sc-dash-card__delta--up { color: var(--sc-profit); }
.sc-dash-card__delta--down { color: var(--sc-err); }
.sc-dash-card__spark { margin-top: 8px; height: 28px; }
.sc-dash-card__spark svg { width: 100%; height: 100%; display: block; overflow: visible; }
.sc-dash-card__spark path.ln { fill: none; stroke: var(--sc-cyan-500); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.sc-dash-card__spark path.fl { fill: url(#scSparkGrad); opacity: 0.55; }
.sc-dash-card__spark circle.tp { fill: var(--sc-cyan-500); }

/* ── Terminal log под сценой ── */
.sc-term {
  margin-top: 14px;
  background: #07172C;
  color: #E2EFFA;
  border-radius: 12px;
  padding: 14px 16px;
  font-family: var(--sc-font-mono);
  font-size: 12px;
  line-height: 1.55;
  position: relative;
  overflow: hidden;
  max-width: 580px;
  box-shadow: 0 16px 40px -16px rgba(7,23,44,0.35);
}
.sc-term::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent);
  pointer-events: none;
}
.sc-term__head {
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
  margin-bottom: 8px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(226,239,250,0.5);
}
.sc-term__head .led { width: 8px; height: 8px; border-radius: 50%; background: var(--sc-cyan-500); box-shadow: 0 0 8px rgba(0,184,230,0.7); animation: sc-rot-caret 1.4s ease-in-out infinite; }
.sc-term__line {
  display: flex; gap: 8px; align-items: baseline;
  padding: 2px 0;
  white-space: nowrap;
  overflow: hidden;
}
.sc-term__prompt { color: var(--sc-cyan-400); font-weight: 600; flex-shrink: 0; }
.sc-term__txt { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.sc-term__txt b { color: #FFFFFF; font-weight: 600; }
.sc-term__txt .num { color: #7FDCF5; font-weight: 600; }
.sc-term__ok { margin-left: auto; color: var(--sc-profit); font-size: 10px; flex-shrink: 0; letter-spacing: 0.06em; }
.sc-term__caret {
  display: inline-block;
  width: 7px; height: 12px;
  background: var(--sc-cyan-400);
  margin-left: 4px;
  vertical-align: -1px;
  animation: sc-rot-caret 1s steps(2) infinite;
}

/* На мобильных сцена сворачивается под H1, терминал прячем */
@media (max-width: 720px) {
  .sc-scene { max-width: 100%; aspect-ratio: 4 / 3; }
  .sc-dash-card__val { font-size: 22px; }
  .sc-term { display: none; } /* отнимает контраст на мобильных */
}

/* ────────────────────────────────────────────────────
   STARS WERE: Декоративные sparkline-ленты на hero фоне.
   Оставлены доступными, но в HeroSection больше не рендерятся.
   ──────────────────────────────────────────────────── */
.sc-hero-ribbons {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.sc-hero-ribbons svg {
  position: absolute;
  width: 200%;
  height: auto;
  left: -50%;
  opacity: 0.45;
}
.sc-hero-ribbons svg path { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.sc-hero-ribbons .rb-1 { top: 14%; animation: sc-rb-flow-1 28s linear infinite; }
.sc-hero-ribbons .rb-2 { top: 46%; animation: sc-rb-flow-2 36s linear infinite; opacity: 0.32; }
.sc-hero-ribbons .rb-3 { top: 72%; animation: sc-rb-flow-3 44s linear infinite; opacity: 0.28; }
@keyframes sc-rb-flow-1 { from { transform: translateX(0); } to { transform: translateX(-25%); } }
@keyframes sc-rb-flow-2 { from { transform: translateX(-10%); } to { transform: translateX(15%); } }
@keyframes sc-rb-flow-3 { from { transform: translateX(0); } to { transform: translateX(-20%); } }
@media (prefers-reduced-motion: reduce) {
  .sc-hero-ribbons svg { animation: none !important; }
}
@media (max-width: 720px) {
  .sc-hero-ribbons { display: none; } /* на мобильных не нужно — отнимает контраст */
}

/* Magnetic-glow усиление для cyan CTA в hero
   (магнитное смещение делает JS через CSS-переменные --mx/--my) */
.sc-btn--magnetic {
  position: relative;
  transform: translate(var(--mx, 0px), var(--my, 0px));
  transition: transform 0.18s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s ease, background 0.2s ease;
  box-shadow: 0 12px 28px -10px rgba(0,184,230,0.55);
}
.sc-btn--magnetic:hover {
  box-shadow: 0 20px 44px -12px rgba(0,184,230,0.85), 0 0 0 4px rgba(0,184,230,0.16);
}
.sc-btn--magnetic::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
  background-size: 220% 100%;
  background-position: 200% 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  mix-blend-mode: overlay;
}
.sc-btn--magnetic:hover::before {
  opacity: 1;
  animation: sc-shimmer 1.4s ease-in-out infinite;
}
@keyframes sc-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -100% 0; }
}
@keyframes sc-gt-flow {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}
@media (prefers-reduced-motion: reduce) {
  .sc-btn--magnetic { transform: none !important; transition: box-shadow 0.2s ease; }
  .sc-btn--magnetic::before { animation: none; opacity: 0; }
}

/* Pulsing CTA — привлекает внимание (для самой нижней кнопки) */
.sc-btn--pulse {
  animation: sc-btn-pulse 2.6s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  position: relative;
}
@keyframes sc-btn-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(10,30,63,0.55), 0 6px 16px -2px rgba(10,30,63,0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 18px rgba(10,30,63,0), 0 12px 28px -2px rgba(10,30,63,0.55);
    transform: scale(1.04);
  }
}
.sc-btn--pulse:hover { animation-play-state: paused; transform: translateY(-1px) scale(1.02); }
@media (prefers-reduced-motion: reduce) { .sc-btn--pulse { animation: none; } }

/* Hoverable cards — поднимаются + cyan glow, медленно (0.4s) для премиум-ощущения */
.sc-hoverable {
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
}
.sc-hoverable:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -12px rgba(0,184,230,0.35);
  border-color: var(--sc-cyan-300);
}

/* Problem cards — hover keeps red theme (warning glow), не cyan */
.sc-card--problem.sc-hoverable:hover {
  box-shadow: 0 18px 36px -12px rgba(239,68,68,0.32);
  border-color: var(--sc-err);
}
.sc-card--problem .sc-card--problem__badge {
  animation: sc-pulse-err 2.6s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Before/After plates — hover-lift */
.sc-ba-plate {
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
}
.sc-ba-plate:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -12px rgba(0,184,230,0.35);
  border-color: var(--sc-cyan-300);
}
.sc-ba-plate--new:hover {
  box-shadow: 0 18px 36px -12px rgba(0,184,230,0.5), 0 0 0 4px rgba(0,184,230,0.18);
  filter: brightness(1.05);
}

/* Recap icon — пульсирующий glow */
.sc-recap__icon { position: relative; }
.sc-recap__icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  pointer-events: none;
  animation: sc-pulse 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.sc-recap__icon--err::after { box-shadow: 0 0 0 0 rgba(239,68,68,0.5); animation-name: sc-pulse-err; }
.sc-recap__icon--ok::after { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); animation-name: sc-pulse-ok; }
@keyframes sc-pulse-err {
  0% { box-shadow: 0 0 0 0 rgba(239,68,68,0.55); }
  70% { box-shadow: 0 0 0 16px rgba(239,68,68,0); }
  100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
}
@keyframes sc-pulse-ok {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.55); }
  70% { box-shadow: 0 0 0 16px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
@media (prefers-reduced-motion: reduce) {
  .sc-recap__icon::after { animation: none; }
}

/* "Итог" — без shimmer'а, просто solid красный / зелёный */

/* Marquee — бегущая строка (Linear/Vercel-style) */
.sc-marquee {
  position: relative;
  overflow: hidden;
  padding: 22px 0;
  background: var(--sc-navy-900);
  border-top: 1px solid var(--sc-navy-800);
  border-bottom: 1px solid var(--sc-navy-800);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.sc-marquee__track {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: sc-marquee-flow 45s linear infinite;
  width: max-content;
  will-change: transform;
}
.sc-marquee__item {
  font-family: var(--sc-font-display);
  font-weight: 600;
  font-size: 22px;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.01em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.sc-marquee__item::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sc-cyan-500);
  box-shadow: 0 0 12px rgba(0,184,230,0.6);
}
@keyframes sc-marquee-flow {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .sc-marquee__track { animation: none; }
}
@media (max-width: 720px) {
  .sc-marquee { padding: 16px 0; }
  .sc-marquee__item { font-size: 17px; gap: 32px; }
  .sc-marquee__track { gap: 32px; animation-duration: 35s; }
}

/* Footer */
.sc-footer {
  background: var(--sc-navy-900);
  color: rgba(255,255,255,0.7);
  padding: 64px 56px 32px;
}

/* Marketplace tabs label swap (desktop = full, mobile = short) */
.sc-mp-label-full { display: inline; }
.sc-mp-label-short { display: none; }
@media (max-width: 720px) {
  .sc-mp-label-full { display: none !important; }
  .sc-mp-label-short { display: inline !important; }
}

/* ============================================================
   MOBILE — единый блок переопределений для инлайн-стилей React
   Брейкпоинты: 720px (планшет/телефон), 480px (узкие телефоны)
   ============================================================ */
@media (max-width: 720px) {
  /* Секции — общий padding */
  .sc-root section { padding: 56px 20px !important; }
  .sc-root .sc-footer { padding: 48px 20px 24px !important; }

  /* Типографика — крупнее, чтобы держать десктопный wow-эффект */
  .sc-root h1.sc-display { font-size: 54px !important; line-height: 1.0 !important; max-width: 100% !important; letter-spacing: -0.03em !important; }
  .sc-root h2.sc-display { font-size: 42px !important; line-height: 1.05 !important; max-width: 100% !important; letter-spacing: -0.025em !important; }
  .sc-root h3.sc-display { font-size: 34px !important; line-height: 1.1 !important; }
  .sc-root .sc-mod-numeral { font-size: 134px !important; line-height: 0.85 !important; }

  /* Body-параграфы */
  .sc-root p { font-size: 16px !important; }

  /* Кнопки в hero — на всю ширину для удобства тапа */
  .sc-root .sc-mobile-btn-row { flex-direction: column !important; gap: 10px !important; align-items: stretch !important; }
  .sc-root .sc-mobile-btn-row .sc-btn { width: 100% !important; justify-content: center !important; }

  /* Грид-коллапс */
  .sc-mobile-1col { grid-template-columns: 1fr !important; gap: 16px !important; }
  .sc-mobile-2col { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }

  /* Hero KPI strip — 2x2 вместо 4x1, убрать вертикальные разделители */
  .sc-hero-kpis {
    grid-template-columns: 1fr 1fr !important;
    padding: 18px !important;
    gap: 16px !important;
    margin-top: 36px !important;
  }
  .sc-hero-kpis > div { border-left: none !important; padding: 0 !important; }
  .sc-hero-kpis > div .sc-display { font-size: 32px !important; line-height: 1 !important; }

  /* Solution — макет в одну колонку, дашборд под списком */
  .sc-solution-grid { grid-template-columns: 1fr !important; gap: 28px !important; margin-top: 32px !important; }

  /* BrandDashboard — компакт, скрыть сайдбар */
  .sc-brand-dash { grid-template-columns: 1fr !important; }
  .sc-brand-dash > div:first-child { display: none !important; }
  .sc-brand-dash .sc-bd-kpis { grid-template-columns: repeat(3, 1fr) !important; }

  /* Modules — модули в одну колонку */
  .sc-module-row { grid-template-columns: 1fr !important; gap: 24px !important; }
  .sc-module-row > div { order: 0 !important; }
  .sc-module-row h3.sc-display { font-size: 36px !important; margin-top: 16px !important; }
  .sc-module-row .sc-mod-card { padding: 18px !important; min-height: 0 !important; }

  /* Marketplace tabs — центр, короткие лейблы, всё влезает в одну линию */
  .sc-mp-tabs { justify-content: center !important; margin-top: 36px !important; }
  .sc-mp-tabs > div {
    flex-wrap: nowrap !important;
    max-width: 100%;
    padding: 5px !important;
    gap: 4px !important;
    border-radius: 14px !important;
  }
  .sc-mp-tabs button {
    flex-shrink: 0 !important;
    height: 50px !important;
    padding: 0 16px !important;
    font-size: 15px !important;
    gap: 8px !important;
    border-radius: 11px !important;
  }
  .sc-mp-tabs button > span[class*="last-child"],
  .sc-mp-tabs button > span:not(.sc-mp-label-full):not(.sc-mp-label-short):last-child {
    font-size: 9px !important;
    padding: 2px 6px !important;
    letter-spacing: 0.04em !important;
  }

  /* Modal */
  .sc-modal-card {
    padding: 24px 18px 22px !important;
    border-radius: 18px !important;
    max-height: 88vh !important;
  }
  .sc-modal-card h3.sc-display { font-size: 24px !important; }
  .sc-modal-card .sc-modal-slogan { font-size: 14px !important; padding: 14px 18px !important; }

  /* Before/After — вертикальный стек: внутри пары плотно, между парами просторно */
  .sc-ba-list { gap: 64px !important; margin-top: 36px !important; }
  .sc-ba-row { grid-template-columns: 1fr !important; gap: 2px !important; }
  .sc-ba-row > div { padding: 18px 20px !important; font-size: 16px !important; }
  .sc-ba-row .sc-ba-arrow { transform: rotate(90deg) !important; padding: 0 !important; font-size: 26px !important; }

  /* Итог-баннер */
  .sc-recap { padding: 22px !important; gap: 16px !important; }
  .sc-recap .sc-display { font-size: 24px !important; }
  .sc-recap > div:last-child { font-size: 16px !important; flex-basis: 100% !important; }

  /* For-whom card */
  .sc-forwho-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
  .sc-forwho-grid > div { padding: 20px !important; font-size: 16px !important; gap: 14px !important; }
  .sc-forwho-grid .sc-display { font-size: 24px !important; }

  /* Final CTA — стек двух панелей */
  .sc-final-cta-grid { grid-template-columns: 1fr !important; }
  .sc-final-cta-grid > div { padding: 56px 24px !important; }
  .sc-final-cta-grid h3.sc-display { font-size: 32px !important; }

  /* Footer */
  .sc-footer-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
}
/* Tablet: 5col → 2col */
@media (min-width: 721px) and (max-width: 1024px) {
  .sc-footer-grid { grid-template-columns: 1fr 1fr !important; gap: 32px !important; }
  .sc-footer-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .sc-fake-rule__noop { /* no-op rule for valid CSS */ }

  /* FAQ */
  .sc-faq-item button { padding: 16px 18px !important; font-size: 15px !important; }
  .sc-faq-item div { padding: 0 18px 18px !important; font-size: 14px !important; }

  /* Eyebrow / chips */
  .sc-root .sc-eyebrow { font-size: 12px !important; }

  /* Placeholder "Поддержка ... — скоро" */
  .sc-soon-placeholder { padding: 64px 24px !important; margin-top: 40px !important; }
  .sc-soon-title { font-size: 38px !important; line-height: 1.05 !important; }
  .sc-soon-placeholder p { font-size: 16px !important; }

  /* Modal: модальное содержание чуть крупнее под общую стратегию */
  .sc-modal-card h3.sc-display { font-size: 32px !important; }
  .sc-modal-card .sc-modal-slogan { font-size: 16px !important; padding: 16px 20px !important; }

  /* Forwho card numeral */
  .sc-forwho-grid .sc-display { font-size: 32px !important; }
  .sc-forwho-grid > div { font-size: 17px !important; }

  /* Recap (Итог) большой текст */
  .sc-recap .sc-display { font-size: 30px !important; }
  .sc-recap > div:last-child { font-size: 18px !important; }

  /* Final CTA панели */
  .sc-final-cta-grid h3.sc-display { font-size: 38px !important; }
}

/* ============================================================
   WCAG AA contrast overrides — переопределяем CSS-переменные
   локально для элементов на белом фоне. Inline-стили из app.js
   подхватывают новые значения через каскад без !important.
   - cyan-500 в spans внутри display-заголовков → cyan-700 (4.6:1)
   - profit/err в KPI-дельтах BrandDashboard → темнее (5:1, 6.4:1)
   ============================================================ */
h1.sc-display span,
h2.sc-display span,
h3.sc-display span {
  --sc-cyan-500: var(--sc-cyan-700);
}
.sc-bd-kpis {
  --sc-profit: var(--sc-profit-dark);
  --sc-err: var(--sc-err-dark);
}

/* Узкие телефоны — донастройка (iPhone SE 320px и т.п.) */
@media (max-width: 380px) {
  .sc-root section { padding: 48px 16px !important; }
  .sc-root .sc-footer { padding: 40px 16px 20px !important; }
  .sc-root h1.sc-display { font-size: 46px !important; }
  .sc-root h2.sc-display { font-size: 36px !important; }
  .sc-root h3.sc-display { font-size: 28px !important; }
  .sc-root .sc-mod-numeral { font-size: 110px !important; }
  .sc-hero-kpis > div .sc-display { font-size: 26px !important; }
  .sc-final-cta-grid h3.sc-display { font-size: 32px !important; }
  .sc-soon-title { font-size: 32px !important; }
}
