:root {
  /* Colors */
  --color-bg:             #0A0E1A;
  --color-surface:        #121826;
  --color-surface-2:      #161D2E;
  --color-border:         #1E2536;
  --color-border-hover:   #2A3448;
  --color-accent:         #CDFF4F;
  --color-accent-dim:     #9BC22F;
  --color-text-primary:   #FFFFFF;
  --color-text-secondary: #888888;
  --color-text-muted:     #767676;
  --color-success:        #22C55E;
  --color-white:          #FFFFFF;

  /* Typography */
  --font-display: 'Manrope', 'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Layout */
  --max-width:             1200px;
  --section-padding:       120px 0;
  --section-padding-mobile: 64px 0;
  --gap-sm:  12px;
  --gap-md:  24px;
  --gap-lg:  48px;
  --gap-xl:  80px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   400ms ease;
  --transition-spring: 300ms cubic-bezier(0.25, 1, 0.5, 1);
}

/* ── Mobile foundation tokens (2026-07-16, редизайн мобилки) ────────────
   Единая шкала ритма/типографики, чтобы секции дышали одинаково.
   Брейкпоинты: sm=430 (телефон) · md=768 (мобилка) · lg=1024 (планшет). */
:root {
  --space-section-mobile: clamp(48px, 9vw, 72px);
  --space-block:   clamp(24px, 6vw, 40px);
  --measure:       62ch;   /* макс. ширина строки тела */
  --measure-lead:  46ch;   /* лид/подзаголовки уже */
  --font-size-base-mobile: 17px;
  --nav-h-mobile:  76px;
}

/* Redesign Deep Tech — перекраска лого-SVG без правки HTML (2026-07-10) */
.nav__logo-mark circle,.nav__logo-mark line,.footer__logo circle,.footer__logo line{stroke:var(--color-accent)!important}
