/* ═══════════════════════════════════════
   НОМИС — Design Tokens + reset (общее для всех страниц)
═══════════════════════════════════════ */
:root {
  --bp:   #1D4ED8;
  --be:   #4F7AE4;
  --bn:   #F97316;
  --bi:   #1540B0;
  --g4:   #4A5A7A;
  --g6:   #6A7A9A;
  --n950: #FFFFFF;
  --n900: #F4F8FF;
  --n800: #EBF0FC;
  --n700: #BCD2F8;
  --text: #0A1A35;
  --border:    rgba(26,111,255,.10);
  --shadow-sm: 0 2px 16px rgba(29,78,216,.07);
  --shadow-md: 0 4px 40px rgba(29,78,216,.10);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --hdr-h:  64px;
  --nav-w:  272px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--n950);
  color: var(--text);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }

.skip-link {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
  background: var(--bp); color: #fff;
  padding: 12px 24px; border-radius: 0 0 8px 0;
  font-size: 14px; font-weight: 700;
  text-decoration: none; z-index: 9999;
}
.skip-link:focus {
  position: fixed; left: 0; top: 0;
  width: auto; height: auto;
  outline: 2px solid var(--bn); outline-offset: 2px;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--n950); }
::-webkit-scrollbar-thumb { background: rgba(29,78,216,.3); border-radius: 3px; }

/* фоновая «сетка» — используется на нескольких лендинговых секциях */
.grid-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(29,78,216,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,78,216,.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

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