:root {
  --bg: #f6f7fb;
  --surface: #ffffff;
  --ink: #0f1530;
  --muted: #5c6480;
  --line: #e6e8f0;
  --accent: #4f46e5;
  --accent-soft: #eef2ff;
  --teal: #0d9488;
  --ok: #12b76a;
  --ok-soft: #ecfdf3;
  --warn: #f79009;
  --warn-soft: #fff6ed;
  --bad: #f04438;
  --bad-soft: #fef3f2;
  --radius: 16px;
  --shadow: 0 1px 2px rgba(15, 21, 48, .04), 0 8px 24px -12px rgba(15, 21, 48, .12);
  --font-head: "Manrope", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

::selection { background: #c7d2fe; color: var(--ink); }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;

  cursor: default;
}

a, button, .btn, .nav__link, .chip, .lang, input { cursor: default; }
input { pointer-events: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4, .section-title, .block-title { font-family: var(--font-head); letter-spacing: -.01em; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  user-select: none;
  text-decoration: none;
}

.logo__mark { width: 36px; height: 36px; }

.logo__sweep {
  transform-origin: 20px 20px;
  animation: sweep 6s linear infinite;
}
@keyframes sweep { to { transform: rotate(360deg); } }

.logo__text {
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.05;
  display: flex;
  flex-direction: column;
}
.logo__text b { display: contents; color: var(--accent); }
.logo__text small {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
}

.nav__link {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: .85;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14.5px;
  border-radius: 12px;
  padding: 10px 20px;
  user-select: none;
  white-space: nowrap;
}
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 6px 16px -6px rgba(79, 70, 229, .5); }
.btn--outline { color: var(--accent); border: 1.5px solid var(--accent); background: transparent; }

.hero {
  position: relative;
  padding: 72px 0 56px;
  background:
    radial-gradient(700px 340px at 18% -10%, rgba(79, 70, 229, .10), transparent 65%),
    radial-gradient(600px 300px at 85% -15%, rgba(13, 148, 136, .10), transparent 65%);
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15, 21, 48, .07) 1px, transparent 1.5px);
  background-size: 26px 26px;
  mask-image: radial-gradient(620px 380px at 50% 30%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(620px 380px at 50% 30%, #000 20%, transparent 75%);
  pointer-events: none;
}

.hero__inner { position: relative; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 7px 16px;
  box-shadow: var(--shadow);
  margin-bottom: 26px;
  max-width: 100%;
}
.hero__eyebrow b { color: var(--ink); }
.hero__eyebrow-text { line-height: 1.35; }

.pulse-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--ok);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.pulse-dot--red { background: var(--bad); animation-name: pulse-red; }

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(18, 183, 106, .45); }
  70%  { box-shadow: 0 0 0 9px rgba(18, 183, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(18, 183, 106, 0); }
}
@keyframes pulse-red {
  0%   { box-shadow: 0 0 0 0 rgba(240, 68, 56, .45); }
  70%  { box-shadow: 0 0 0 9px rgba(240, 68, 56, 0); }
  100% { box-shadow: 0 0 0 0 rgba(240, 68, 56, 0); }
}

.hero h1 {
  font-size: clamp(30px, 4.6vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
  max-width: 1060px;
  margin: 0 auto 18px;
  text-wrap: balance;
}

.hero__sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 34px;
}

.search {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 640px;
  margin: 0 auto;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 8px 8px 8px 18px;
  box-shadow: 0 10px 30px -14px rgba(15, 21, 48, .18);
}

.search__icon { width: 21px; height: 21px; color: var(--muted); flex-shrink: 0; }

.search input {
  flex: 1;
  border: 0;
  outline: 0;
  font: inherit;
  font-size: 15.5px;
  color: var(--ink);
  background: transparent;
  min-width: 0;
}
.search input::placeholder { color: #98a0b8; }

.search__btn { padding: 12px 24px; border-radius: 12px; }

.hero__hints {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.hint { font-size: 13px; color: var(--muted); margin-right: 2px; }
.chip {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 100px;
  padding: 6px 13px;
  user-select: none;
}

.reporting {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
}

.reporting__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 52px;
  font-size: 13.5px;
}

.reporting__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--bad);
  white-space: nowrap;
  flex-shrink: 0;
}

.reporting__items {
  overflow: hidden;
  flex: 1;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 92%, transparent);
}

.reporting__track {
  display: flex;
  gap: 34px;
  width: max-content;
  padding-right: 34px;
  animation: marquee 28s linear infinite;
}
@keyframes marquee { to { transform: translateX(-50%); } }

.reporting__item {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  white-space: nowrap;
  color: var(--ink);
  font-weight: 500;
}
.reporting__item small { color: var(--muted); font-weight: 400; }

.reporting__updated {
  color: var(--muted);
  font-size: 12.5px;
  white-space: nowrap;
  flex-shrink: 0;
}

section { scroll-margin-top: 90px; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.section-head .section-title { font-size: clamp(22px, 3vw, 30px); font-weight: 800; }
.section-sub { color: var(--muted); font-size: 15px; width: 100%; margin-top: 4px; }

.services { padding: 56px 0 8px; }

.legend { display: flex; gap: 18px; flex-wrap: wrap; }
.legend__item { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--muted); }
.legend__item b {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1px 7px;
  min-width: 22px;
  text-align: center;
}

.dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.dot--ok { background: var(--ok); }
.dot--warn { background: var(--warn); }
.dot--bad { background: var(--bad); }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
  gap: 16px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 16px 12px;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
  user-select: none;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 2px 4px rgba(15,21,48,.05), 0 14px 32px -12px rgba(15,21,48,.16); }

.card--warn { border-color: #fedf89; background: linear-gradient(180deg, #fffcf5, #fff); }
.card--bad  { border-color: #fecdca; background: linear-gradient(180deg, #fffbfa, #fff); }

.card__top { display: flex; align-items: center; gap: 11px; margin-bottom: 12px; }

.avatar {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: -.02em;
}

.card__id { min-width: 0; }

.card__name {
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  margin-top: 4px;
  padding: 2.5px 9px;
  border-radius: 100px;
}
.card__status--ok { color: #027a48; background: var(--ok-soft); }
.card__status--warn { color: #b54708; background: var(--warn-soft); }
.card__status--bad { color: #b42318; background: var(--bad-soft); }

.card__chart { display: block; width: 100%; height: 44px; margin: 2px 0 8px; }

.card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 9px;
}
.card__meta b { color: var(--ink); font-weight: 600; }

.trend {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 10.5px;
  font-weight: 700;
  padding: 1px 6px 1px 4px;
  border-radius: 20px;
  vertical-align: 1px;
}
.trend svg {
  width: 9px; height: 9px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trend--up { color: #b42318; background: var(--bad-soft); }
.trend--down { color: #027a48; background: var(--ok-soft); }

.grid__more { text-align: center; margin: 30px 0 0; }

.stats { padding: 64px 0; }

.stats__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.stat {
  background: linear-gradient(160deg, #191f45, #10142e);
  color: #fff;
  border-radius: var(--radius);
  padding: 26px 24px;
}
.stat b {
  display: block;
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 6px;
  background: linear-gradient(90deg, #a5b4fc, #5eead4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat b span { background: inherit; -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat > span { font-size: 13.5px; color: #aab; color: rgba(255,255,255,.65); }

.how { padding: 8px 0 64px; }

.how__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.how-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 22px;
  box-shadow: var(--shadow);
}
.how-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 800;
  margin-bottom: 14px;
}
.how-card .block-title { font-size: 17px; margin-bottom: 8px; font-weight: 700; }
.how-card p { font-size: 14px; color: var(--muted); }

.features { padding: 0 0 64px; }

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow);
}
.feature__icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--fi, var(--accent-soft));
  color: var(--fc, var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.feature__icon svg {
  width: 23px; height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature .block-title { font-size: 16.5px; margin-bottom: 8px; font-weight: 700; }
.feature p { font-size: 14px; color: var(--muted); }

.seo {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 64px 0;
}

.seo__inner { max-width: 820px; }

.seo h2 { font-size: clamp(22px, 3vw, 28px); margin-bottom: 18px; }
.seo h3 { font-size: 19px; margin: 30px 0 12px; }
.seo p { color: #3d4563; font-size: 15px; margin-bottom: 14px; }
.seo ul { margin: 6px 0 14px 22px; color: #3d4563; font-size: 15px; }
.seo li { margin-bottom: 9px; }
.seo strong { color: var(--ink); }

.faq { padding: 64px 0; }

.faq__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.faq-item .block-title { font-size: 15.5px; margin-bottom: 9px; font-weight: 700; }
.faq-item p { font-size: 14px; color: var(--muted); }

.footer {
  background: #10142e;
  color: rgba(255,255,255,.75);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding: 52px 24px 36px;
}

.logo--footer { color: #a5b4fc; }
.logo--footer .logo__text { color: #fff; }
.logo--footer .logo__text b { color: #a5b4fc; }

.footer__brand p { font-size: 13.5px; margin-top: 14px; max-width: 300px; color: rgba(255,255,255,.55); }

.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.45);
  margin-bottom: 4px;
}
.footer__col span { font-size: 14px; user-select: none; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  padding-bottom: 26px;
  font-size: 12.5px;
  color: rgba(255,255,255,.45);
}

.footer__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: #6ee7b7;
  white-space: nowrap;
}

@media (max-width: 900px) {

  .header__inner {
    height: auto;
    flex-wrap: wrap;
    gap: 0;
    padding-top: 12px;
  }
  .nav {
    width: 100%;
    margin: 10px 0 0;
    padding-bottom: 12px;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, #000 92%, transparent);
  }
  .nav::-webkit-scrollbar { display: none; }
  .nav__link { white-space: nowrap; font-size: 14px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .hero { padding: 40px 0 36px; }
  .hero__eyebrow {
    font-size: 12px;
    padding: 6px 14px;
    margin-bottom: 20px;
    border-radius: 18px;
  }
  .hero__sub { font-size: 15px; margin-bottom: 26px; }

  .search {
    flex-wrap: wrap;
    padding: 12px 12px 10px 14px;
    border-radius: 18px;
  }
  .search input { flex: 1; min-width: 0; padding: 2px 0 8px; }
  .search__btn { width: 100%; padding: 13px 24px; }
  .search__icon { width: 19px; height: 19px; margin-top: 1px; }

  .hero__hints { margin-top: 16px; }
  .hint { width: 100%; margin: 0 0 2px; }

  .reporting__updated { display: none; }
  .section-head { margin-bottom: 20px; }
  .footer__inner { grid-template-columns: 1fr; padding-top: 40px; }
  .footer__bottom { justify-content: center; text-align: center; }
}

a[href] { cursor: pointer; }

.doc { padding: 52px 0 72px; }
.doc__inner { max-width: 800px; }

.breadcrumbs { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.breadcrumbs a { color: var(--accent); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }

.doc h1 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  margin-bottom: 8px;
}
.doc__updated { font-size: 13px; color: var(--muted); margin-bottom: 30px; }
.doc h2 { font-size: 20px; margin: 30px 0 10px; }
.doc h3 { font-size: 16.5px; margin: 22px 0 8px; }
.doc p { font-size: 15px; color: #3d4563; margin-bottom: 12px; }
.doc ul, .doc ol { margin: 4px 0 12px 22px; color: #3d4563; font-size: 15px; }
.doc li { margin-bottom: 7px; }
.doc strong { color: var(--ink); }
.doc a { color: var(--accent); }

.doc .note {
  background: var(--accent-soft);
  border: 1px solid #dfe5ff;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14px;
  color: #3d4563;
  margin: 18px 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 24px 0 8px;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.contact-card .block-title { font-size: 15.5px; margin-bottom: 6px; font-weight: 700; }
.contact-card p { font-size: 13.5px; color: var(--muted); margin-bottom: 8px; }
.contact-card b { font-size: 14.5px; color: var(--accent); font-weight: 600; word-break: break-all; }

.footer__col a {
  font-size: 14px;
  color: inherit;
  text-decoration: none;
}
.footer__col a:hover { color: #fff; }

.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease;
}
.js .reveal.is-visible { opacity: 1; transform: none; }

.js .reveal:nth-child(2n).is-visible { transition-delay: .06s; }
.js .reveal:nth-child(3n).is-visible { transition-delay: .12s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
