@import url("/shared/site-fonts.css");

:root {
  color-scheme: light;
  --site-font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --bg: #f7fbfd;
  --surface: #ffffff;
  --surface-soft: #eef7fb;
  --surface-blue: #dff2fb;
  --text: #071116;
  --muted: #354955;
  --muted-2: #6a7c85;
  --line: rgba(7, 17, 22, 0.12);
  --accent: #229ed9;
  --accent-2: #27a7e7;
  --mint: #23c985;
  --amber: #d99a16;
  --dark: #05090d;
  --dark-2: #101820;
  --glass: rgba(255, 255, 255, 0.72);
  --glass-strong: rgba(255, 255, 255, 0.9);
  --shadow: 0 24px 70px rgba(18, 48, 64, 0.15);
  --shadow-soft: 0 12px 32px rgba(18, 48, 64, 0.1);
  --shadow-blue: 0 18px 46px rgba(34, 158, 217, 0.22);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(900px 360px at 76% 7%, rgba(34, 158, 217, 0.1), transparent 68%),
    radial-gradient(760px 320px at 15% 18%, rgba(35, 201, 133, 0.08), transparent 72%),
    linear-gradient(180deg, #f7fbfd 0%, #ffffff 48%, #eef7fb 100%);
  color: var(--text);
  font-family: var(--site-font-family, Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif);
  letter-spacing: 0;
}

html,
body,
input,
button,
textarea,
select,
.t-body,
.t-records,
.t-rec,
.t-title,
.t-descr,
.t-name,
.t-text,
.t-heading,
.t-uptitle,
.t-btn,
.t-btnflex,
.t-input,
.t-submit,
.t-form,
.t-feed,
.t-feed *,
#allrecords,
#allrecords *,
.t-popup,
.t-popup *,
.site-header,
.site-footer,
.cookie-banner,
.demo-modal,
.mobile-cta-dock {
  font-family: var(--site-font-family, Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif) !important;
}

body.is-demo-modal-open {
  overflow: hidden;
}

#allrecords,
#allrecords * {
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
}

a {
  color: inherit;
}

.sr-only-heading {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

button {
  font: inherit;
}

.page {
  overflow: hidden;
}

.container,
.site-hero-grid,
.content-grid,
.footer-grid {
  min-width: 0;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 20;
  width: min(var(--container), calc(100% - 32px));
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.44);
  box-shadow: 0 18px 52px rgba(20, 50, 64, 0.13);
  backdrop-filter: blur(28px) saturate(1.22);
  transform: translateX(-50%);
  overflow: visible;
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, top 0.2s ease;
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.site-header::before {
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.62), transparent 32%),
    radial-gradient(320px 80px at var(--glass-x, 50%) 0%, rgba(34, 158, 217, 0.16), transparent 72%);
  opacity: 0.8;
}

.site-header::after {
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.site-header.is-scrolled {
  top: 10px;
  border-color: rgba(255, 255, 255, 0.54);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.36)),
    rgba(255, 255, 255, 0.38);
  box-shadow: 0 20px 58px rgba(20, 50, 64, 0.18);
}

.brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 850;
  color: var(--text);
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: var(--shadow-blue);
}

.main-nav {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.main-nav a,
.nav-dropdown-trigger,
.footer-links a {
  text-decoration: none;
}

.main-nav a,
.nav-dropdown-trigger {
  position: relative;
  padding: 9px 10px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  overflow: hidden;
  transition: color 0.16s ease, background-color 0.16s ease, transform 0.16s ease;
  cursor: pointer;
}

.main-nav a::before,
.nav-dropdown-trigger::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(80px 42px at 50% 0%, rgba(255, 255, 255, 0.76), transparent 70%),
    linear-gradient(180deg, rgba(34, 158, 217, 0.11), rgba(255, 255, 255, 0.08));
  opacity: 0;
  transition: opacity 0.16s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown:focus-within .nav-dropdown-trigger,
.nav-dropdown-trigger:focus-visible {
  background: rgba(255, 255, 255, 0.24);
  color: var(--text);
  transform: translateY(-1px);
  outline: none;
}

.main-nav a:hover::before,
.main-nav a:focus-visible::before,
.nav-dropdown:hover .nav-dropdown-trigger::before,
.nav-dropdown:focus-within .nav-dropdown-trigger::before,
.nav-dropdown-trigger:focus-visible::before {
  opacity: 1;
}

.main-nav a.nav-link-accent {
  border: 1px solid rgba(34, 158, 217, 0.18);
  background: rgba(34, 158, 217, 0.09);
  color: var(--accent);
}

.main-nav a.nav-link-accent::before {
  opacity: 0.72;
}

.main-nav a.nav-link-accent:hover,
.main-nav a.nav-link-accent:focus-visible {
  border-color: rgba(34, 158, 217, 0.28);
  background: rgba(34, 158, 217, 0.14);
  color: var(--accent-2);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-trigger::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.16s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after {
  transform: translateY(1px) rotate(225deg);
}

.nav-dropdown-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  z-index: 4;
  min-width: 190px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.54)),
    rgba(255, 255, 255, 0.54);
  box-shadow: 0 20px 54px rgba(20, 50, 64, 0.16);
  backdrop-filter: blur(24px) saturate(1.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav .nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  color: var(--text);
  white-space: nowrap;
}

.mobile-menu-toggle,
.mobile-nav-panel {
  display: none;
}

.mobile-menu-toggle {
  position: relative;
  z-index: 7;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(34, 158, 217, 0.18);
  border-radius: var(--radius);
  background: rgba(34, 158, 217, 0.09);
  color: var(--accent);
  cursor: pointer;
  transition: background-color 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

.mobile-menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible,
.mobile-menu-toggle.is-open {
  border-color: rgba(34, 158, 217, 0.28);
  background: rgba(34, 158, 217, 0.14);
  outline: none;
  transform: translateY(-1px);
}

.mobile-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-panel[hidden] {
  display: none !important;
}

.mobile-nav-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 6;
  max-height: min(calc(100vh - 112px), 680px);
  overflow: auto;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 26px 70px rgba(20, 50, 64, 0.2);
  backdrop-filter: blur(26px) saturate(1.16);
}

.mobile-nav-panel a,
.mobile-nav-group summary {
  border-radius: var(--radius);
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 780;
  line-height: 1.25;
}

.mobile-nav-panel a {
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.54);
}

.mobile-nav-panel a:hover,
.mobile-nav-panel a:focus-visible,
.mobile-nav-group summary:hover,
.mobile-nav-group summary:focus-visible {
  background: rgba(34, 158, 217, 0.1);
  outline: none;
}

.mobile-nav-panel a.nav-link-accent {
  border: 1px solid rgba(34, 158, 217, 0.18);
  background: rgba(34, 158, 217, 0.1);
  color: var(--accent);
}

.mobile-nav-group {
  border: 1px solid rgba(7, 17, 22, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.48);
  overflow: hidden;
}

.mobile-nav-group summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  cursor: pointer;
  list-style: none;
}

.mobile-nav-group summary::-webkit-details-marker {
  display: none;
}

.mobile-nav-group summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.16s ease;
}

.mobile-nav-group[open] summary::after {
  transform: translateY(1px) rotate(225deg);
}

.mobile-nav-links {
  display: grid;
  gap: 6px;
  padding: 0 8px 10px;
}

.button,
.cookie-button,
.page-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease, background-color 0.16s ease;
}

.button-primary,
.cookie-button,
.page-button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: var(--shadow-blue);
}

.page-button-secondary {
  color: var(--text);
  border-color: rgba(7, 17, 22, 0.12);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px) saturate(1.12);
}

.button:hover,
.cookie-button:hover,
.page-button:hover {
  transform: translateY(-1px);
}

.button-primary:hover,
.cookie-button:hover,
.page-button-primary:hover {
  box-shadow: 0 22px 52px rgba(34, 158, 217, 0.26);
}

.button:focus-visible,
.cookie-button:focus-visible,
.page-button:focus-visible {
  outline: 3px solid rgba(34, 158, 217, 0.28);
  outline-offset: 2px;
}

.site-main {
  min-height: 70vh;
}

.page-hero {
  position: relative;
  padding: 136px 0 96px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 36px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 158, 217, 0.28), transparent);
}

.site-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(34, 158, 217, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
}

.page-hero h1 {
  max-width: 860px;
  margin: 0 0 22px;
  font-size: 56px;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.page-hero p {
  max-width: 680px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-panel,
.signal-panel,
.image-panel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 34px 86px rgba(18, 48, 64, 0.18), 0 18px 64px rgba(34, 158, 217, 0.16);
}

.hero-panel {
  min-height: 420px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(150deg, #071116 0%, #0b1720 52%, #0e2430 100%);
  color: #ffffff;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.hero-panel-inner {
  position: relative;
  display: grid;
  gap: 14px;
}

.panel-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  backdrop-filter: blur(20px);
}

.panel-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.panel-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 16px rgba(35, 201, 133, 0.7);
}

.signal-card {
  display: grid;
  gap: 9px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(20px);
}

.signal-card strong {
  font-size: 15px;
}

.signal-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.5;
}

.signal-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.signal-chip {
  display: inline-flex;
  padding: 6px 8px;
  border-radius: var(--radius);
  background: rgba(34, 158, 217, 0.18);
  color: #d9f4ff;
  font-size: 12px;
  font-weight: 760;
}

.section-band {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  isolation: isolate;
}

.section-band::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 50%;
  width: min(760px, 70vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 158, 217, 0.2), transparent);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
}

.section-band > .container {
  position: relative;
  z-index: 2;
}

.section-white {
  background:
    radial-gradient(820px 320px at 50% 0%, rgba(34, 158, 217, 0.07), transparent 72%),
    #ffffff;
}

.section-frosted {
  background:
    linear-gradient(90deg, rgba(34, 158, 217, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(34, 158, 217, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, #dff2fb 0%, #f4fbfe 48%, #e2f4fb 100%);
  background-size: 52px 52px, 52px 52px, auto;
  border-top: 1px solid rgba(34, 158, 217, 0.12);
  border-bottom: 1px solid rgba(34, 158, 217, 0.1);
}

.section-mist {
  background:
    linear-gradient(120deg, transparent 0 72%, rgba(34, 158, 217, 0.08) 72% 72.4%, transparent 72.4%),
    linear-gradient(180deg, #f3f8fb 0%, #edf6fa 58%, #f7fbfd 100%);
  border-top: 1px solid rgba(7, 17, 22, 0.06);
  border-bottom: 1px solid rgba(7, 17, 22, 0.06);
}

.section-dark {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(150deg, #071116 0%, #0b1720 52%, #0e2430 100%);
  background-size: 52px 52px, 52px 52px, auto;
  color: #ffffff;
}

.section-dark p,
.section-dark li {
  color: rgba(255, 255, 255, 0.78);
}

.section-header {
  max-width: 760px;
  margin: 0 0 28px;
}

.section-header.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-header h2,
.content-panel h2,
.article-body h2,
.related-section h2 {
  margin: 0 0 14px;
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.content-grid,
.card-grid,
.article-grid,
.pricing-grid,
.related-grid,
.blog-grid {
  display: grid;
  gap: 14px;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.related-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.content-panel,
.page-card,
.blog-card,
.related-card,
.price-card,
.legal-card {
  position: relative;
  border: 1px solid rgba(7, 17, 22, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(18, 48, 64, 0.08);
  overflow: hidden;
}

.content-panel {
  padding: 34px;
}

.section-frosted .content-panel,
.section-frosted .page-card,
.section-frosted .blog-card,
.section-frosted .related-card {
  border-color: rgba(255, 255, 255, 0.72);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58));
  backdrop-filter: blur(22px) saturate(1.14);
}

.section-dark .content-panel,
.section-dark .page-card,
.section-dark .related-card {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  backdrop-filter: blur(20px);
}

.content-panel::before,
.page-card::before,
.blog-card::before,
.related-card::before,
.price-card::before,
.legal-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(35, 201, 133, 0.84));
}

.content-panel p,
.content-panel li,
.legal-card p,
.legal-card li,
.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.content-panel p:last-child,
.article-body p:last-child {
  margin-bottom: 0;
}

.section-dark .content-panel p,
.section-dark .content-panel li,
.section-dark .page-card p,
.section-dark .related-card p {
  color: rgba(255, 255, 255, 0.78);
}

.content-panel ul,
.content-panel ol,
.legal-card ul,
.legal-card ol,
.article-body ul,
.article-body ol {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 22px;
}

.content-panel h3,
.article-body h3,
.legal-card h3 {
  margin: 30px 0 12px;
  font-size: 24px;
  line-height: 1.2;
}

.page-card,
.related-card,
.blog-card,
.price-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.page-card:hover,
.related-card:hover,
.blog-card:hover {
  border-color: rgba(34, 158, 217, 0.24);
  box-shadow: 0 18px 44px rgba(18, 48, 64, 0.12);
  transform: translateY(-2px);
}

.page-card h3,
.related-card h3,
.blog-card h3,
.price-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.22;
}

.page-card p,
.related-card p,
.blog-card p,
.price-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.meta-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.meta-pill,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 8px;
  border: 1px solid rgba(34, 158, 217, 0.16);
  border-radius: var(--radius);
  background: rgba(34, 158, 217, 0.08);
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
}

.tag.is-accent {
  color: #096b98;
  background: rgba(34, 158, 217, 0.13);
}

.image-panel img,
.article-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-panel {
  min-height: 360px;
  background: #dff2fb;
}

.article-layout {
  padding: 126px 0 90px;
}

.article-grid {
  grid-template-columns: minmax(0, 760px) minmax(280px, 1fr);
  align-items: start;
}

.article-shell,
.legal-card {
  padding: 38px;
}

.article-shell {
  border: 1px solid rgba(7, 17, 22, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(18, 48, 64, 0.1);
}

.article-head {
  margin-bottom: 32px;
}

.article-head h1 {
  margin: 16px 0;
  font-size: 46px;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.article-description {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.62;
}

.article-cover {
  margin: 28px 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.article-cover img {
  max-height: 460px;
}

.article-body h1 {
  margin: 36px 0 16px;
  font-size: 34px;
  line-height: 1.14;
}

.article-body h2 {
  margin-top: 42px;
}

.article-body h3 {
  margin-top: 34px;
}

.article-body img {
  display: block;
  width: 100%;
  margin: 28px 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.article-body a,
.legal-card a,
.content-panel a {
  color: #096b98;
  font-weight: 750;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

.article-aside {
  position: sticky;
  top: 106px;
  display: grid;
  gap: 14px;
}

.aside-panel {
  padding: 22px;
  border: 1px solid rgba(7, 17, 22, 0.08);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.68));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.aside-panel h2 {
  margin: 0 0 12px;
  font-size: 20px;
}

.aside-panel p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.55;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
  padding: 28px;
}

.price-card .price {
  color: var(--accent);
  font-size: 34px;
  font-weight: 900;
}

.price-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(7, 17, 22, 0.08);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.price-list strong {
  color: var(--text);
  text-align: right;
}

.legal-page .article-layout {
  padding-top: 126px;
}

.legal-card {
  max-width: 920px;
  margin: 0 auto;
}

.cta-section {
  position: relative;
  padding: 92px 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(150deg, #071116 0%, #0b1720 52%, #0e2430 100%);
  background-size: 52px 52px, 52px 52px, auto;
  color: #ffffff;
}

.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  gap: 20px;
  align-items: stretch;
}

.cta-card,
.cta-side-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px) saturate(1.12);
}

.cta-card {
  padding: 34px;
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--mint));
}

.cta-card h2 {
  max-width: 760px;
  margin: 0 0 14px;
  font-size: 40px;
  line-height: 1.1;
}

.cta-card p {
  max-width: 650px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.58;
}

.cta-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.cta-flow-step {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.cta-flow-step span {
  width: 28px;
  height: 28px;
  display: grid;
  flex: 0 0 28px;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(34, 158, 217, 0.2);
  color: #d9f4ff;
  font-weight: 900;
}

.cta-flow-step strong {
  font-size: 13px;
  line-height: 1.3;
}

.cta-side-panel {
  min-height: 260px;
  background:
    radial-gradient(180px 120px at 24% 20%, rgba(35, 201, 133, 0.18), transparent 70%),
    radial-gradient(220px 160px at 78% 75%, rgba(34, 158, 217, 0.2), transparent 74%),
    rgba(255, 255, 255, 0.08);
}

.cta-side-panel::before,
.cta-side-panel::after {
  content: "";
  position: absolute;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.cta-side-panel::before {
  left: 26px;
  right: 38px;
  top: 34px;
  height: 92px;
}

.cta-side-panel::after {
  left: 58px;
  right: 18px;
  bottom: 38px;
  height: 104px;
}

.site-footer {
  padding: 52px 0 42px;
  background: #05090d;
  color: #ffffff;
}

.footer-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.footer-topline strong {
  font-size: 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) repeat(3, minmax(150px, 0.75fr));
  gap: 30px 28px;
  align-items: start;
}

.footer-brand {
  grid-row: span 2;
}

.footer-brand p,
.footer-links a {
  color: rgba(255, 255, 255, 0.68);
}

.footer-brand p {
  max-width: 520px;
  margin: 18px 0 0;
  line-height: 1.6;
}

.footer-links h3 {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  letter-spacing: 0;
}

.footer-links ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a:hover {
  color: #ffffff;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 25;
  width: min(520px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.5)),
    rgba(255, 255, 255, 0.56);
  box-shadow: 0 20px 60px rgba(18, 48, 64, 0.18);
  backdrop-filter: blur(24px) saturate(1.18);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.cookie-banner a {
  color: #096b98;
  font-weight: 760;
}

.cookie-button {
  min-height: 38px;
  padding: 0 13px;
  font-size: 12px;
}

.demo-modal-close {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(7, 17, 22, 0.08);
  cursor: pointer;
}

.demo-modal-close::before,
.demo-modal-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--muted);
}

.demo-modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.demo-modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-cta-dock {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 18;
  display: none;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(34, 158, 217, 0.92), rgba(39, 167, 231, 0.92));
  color: #ffffff;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(34, 158, 217, 0.28);
  backdrop-filter: blur(20px);
}

.demo-modal[hidden] {
  display: none;
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 20px;
}

.demo-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 9, 13, 0.42);
  backdrop-filter: blur(12px);
}

.demo-modal-panel {
  position: relative;
  width: min(680px, 100%);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.66)),
    rgba(255, 255, 255, 0.64);
  box-shadow: 0 30px 90px rgba(5, 9, 13, 0.24);
  backdrop-filter: blur(30px) saturate(1.18);
  outline: none;
}

.demo-modal-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  margin-bottom: 18px;
}

.demo-modal-title {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.12;
}

.demo-modal-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.demo-platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.demo-platform-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(7, 17, 22, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.demo-platform-card:hover {
  border-color: rgba(34, 158, 217, 0.22);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.demo-platform-card strong,
.demo-platform-card span span {
  display: block;
}

.demo-platform-card span span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.demo-platform-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.demo-platform-icon.is-telegram {
  background: linear-gradient(135deg, #229ed9, #27a7e7);
}

.demo-platform-icon.is-max {
  background: linear-gradient(135deg, #101820, #229ed9);
}

.demo-platform-icon.is-vk {
  background: linear-gradient(135deg, #0077ff, #229ed9);
}

.reveal {
  opacity: 1;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .mobile-nav-panel:not([hidden]) {
    display: grid;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .site-hero-grid,
  .article-grid,
  .cta-layout {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }

  .card-grid,
  .blog-grid,
  .pricing-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .page {
    padding-bottom: 72px;
  }

  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .site-header {
    top: 10px;
    width: calc(100% - 24px);
    gap: 10px;
  }

  .site-header > .button {
    display: none;
  }

  .page-hero {
    padding: 116px 0 70px;
  }

  .site-hero-grid {
    gap: 28px;
  }

  .page-hero h1,
  .article-head h1 {
    font-size: 38px;
    line-height: 1.1;
  }

  .page-hero p,
  .article-description {
    font-size: 17px;
  }

  .hero-panel {
    min-height: auto;
    padding: 16px;
  }

  .section-band {
    padding: 70px 0;
  }

  .section-header h2,
  .content-panel h2,
  .article-body h2,
  .related-section h2,
  .cta-card h2 {
    font-size: 30px;
  }

  .content-panel,
  .article-shell,
  .legal-card,
  .cta-card {
    padding: 24px;
  }

  .card-grid,
  .blog-grid,
  .pricing-grid,
  .related-grid,
  .demo-platform-grid,
  .cta-flow {
    grid-template-columns: 1fr;
  }

  .article-layout,
  .legal-page .article-layout {
    padding: 112px 0 70px;
  }

  .site-footer {
    padding-bottom: 132px;
  }

  .footer-topline,
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 78px;
    width: auto;
    grid-template-columns: 1fr;
  }

  .cookie-banner p {
    padding-right: 0;
  }

  .mobile-cta-dock {
    display: flex;
  }

  .demo-modal-panel {
    padding: 18px;
  }
}
