:root {
  --blog-bg: #07090d;
  --blog-surface: #0d1118;
  --blog-surface-2: #111722;
  --blog-border: rgba(255, 255, 255, .09);
  --blog-text: #f5f7fb;
  --blog-muted: #9ba5b5;
  --blog-violet: #8b5cf6;
  --blog-blue: #2aabee;
  --blog-cyan: #22d3ee;
  --blog-green: #34d399;
  --blog-max: 1180px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; }
body.blog-page {
  margin: 0;
  background: var(--blog-bg);
  color: var(--blog-text);
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0;
}
body.blog-page::before {
  content: '';
  position: fixed;
  inset: 0 0 auto;
  height: 560px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(42, 171, 238, .05), transparent 72%);
  z-index: -1;
}
body.blog-page h1,
body.blog-page h2,
body.blog-page h3,
body.blog-page h4 { font-family: 'Outfit', sans-serif; letter-spacing: 0; }
body.blog-page a { color: inherit; text-decoration: none; }
body.blog-page button,
body.blog-page input { font: inherit; }

.blog-shell { width: min(100% - 40px, var(--blog-max)); margin: 0 auto; }
.blog-skip {
  position: fixed;
  left: 14px;
  top: -60px;
  z-index: 120;
  padding: 10px 14px;
  border-radius: 6px;
  background: #fff;
  color: #05070a !important;
  font-weight: 800;
}
.blog-skip:focus { top: 12px; }

.blog-reading-progress {
  position: fixed;
  z-index: 110;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blog-blue), var(--blog-violet));
  box-shadow: 0 0 18px rgba(42, 171, 238, .5);
}

.blog-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--blog-border);
  background: rgba(7, 9, 13, .92);
  backdrop-filter: blur(18px);
}
.blog-header__row { display: flex; min-height: 68px; align-items: center; gap: 24px; }
.blog-brand { display: inline-flex; align-items: center; gap: 10px; min-width: max-content; font-family: 'Outfit', sans-serif; font-weight: 900; }
.blog-brand__mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: #7357f6;
  box-shadow: 0 8px 24px rgba(115, 87, 246, .28);
}
.blog-brand__mark i { font-size: 14px; }
.blog-brand__pro { color: #a78bfa; }
.blog-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.blog-nav a {
  padding: 9px 11px;
  border-radius: 6px;
  color: #b4bdca;
  font-size: 13px;
  font-weight: 700;
  transition: background .18s ease, color .18s ease;
}
.blog-nav a:hover,
.blog-nav a[aria-current='page'] { background: rgba(255, 255, 255, .06); color: #fff; }
.blog-header__cta,
.blog-primary-btn {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 7px;
  background: #7357f6;
  color: #fff !important;
  font-size: 13px;
  font-weight: 900;
  padding: 0 17px;
  box-shadow: 0 10px 28px rgba(115, 87, 246, .22);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}
.blog-header__cta:hover,
.blog-primary-btn:hover { background: #8267ff; transform: translateY(-1px); }
.blog-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--blog-border);
  border-radius: 7px;
  background: var(--blog-surface);
  color: #fff;
  cursor: pointer;
}

.blog-hero { padding: 44px 0 28px; }
.blog-hero__panel {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border: 1px solid var(--blog-border);
  border-radius: 8px;
  background: #090d14;
}
.blog-hero__media { position: absolute; inset: 0; }
.blog-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .82; }
.blog-hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 9, 13, .98) 0%, rgba(7, 9, 13, .91) 40%, rgba(7, 9, 13, .18) 78%, rgba(7, 9, 13, .08) 100%);
}
.blog-hero__content { position: relative; z-index: 1; width: min(620px, 60%); padding: 56px; }
.blog-kicker,
.blog-eyebrow { color: #8ccdf2; font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.blog-hero h1 { max-width: 580px; margin: 12px 0 14px; font-size: clamp(36px, 5vw, 60px); line-height: 1.02; }
.blog-hero__lead { max-width: 560px; margin: 0; color: #c0c8d4; font-size: 16px; line-height: 1.65; }
.blog-search { display: flex; max-width: 540px; gap: 8px; margin-top: 24px; }
.blog-search__field { position: relative; flex: 1; }
.blog-search__field i { position: absolute; left: 15px; top: 50%; color: #7c8797; transform: translateY(-50%); }
.blog-search input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 7px;
  outline: 0;
  background: rgba(10, 14, 21, .9);
  color: #fff;
  padding: 0 15px 0 43px;
}
.blog-search input:focus { border-color: rgba(42, 171, 238, .7); box-shadow: 0 0 0 3px rgba(42, 171, 238, .12); }

.blog-topicbar { position: sticky; z-index: 80; top: 68px; border-bottom: 1px solid var(--blog-border); background: rgba(7, 9, 13, .96); }
.blog-topics { display: flex; gap: 7px; overflow-x: auto; padding: 11px 0; scrollbar-width: none; }
.blog-topics::-webkit-scrollbar { display: none; }
.blog-topic {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #99a3b2;
  font-size: 12px;
  font-weight: 800;
}
.blog-topic:hover,
.blog-topic.is-active { border-color: rgba(42, 171, 238, .28); background: rgba(42, 171, 238, .09); color: #dff5ff; }

.blog-section { padding: 34px 0 54px; }
.blog-section__head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.blog-section__head h2 { margin: 4px 0 0; font-size: 28px; }
.blog-result-count { color: var(--blog-muted); font-size: 13px; }
.blog-featured {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  min-height: 330px;
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid var(--blog-border);
  border-radius: 8px;
  background: var(--blog-surface);
  transition: border-color .18s ease, transform .18s ease;
}
.blog-featured:hover { border-color: rgba(42, 171, 238, .36); transform: translateY(-2px); }
.blog-featured__media { min-height: 300px; overflow: hidden; background: #0a111a; }
.blog-featured__media img { width: 100%; height: 100%; object-fit: cover; }
.blog-featured__content { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 34px; }
.blog-featured h2 { margin: 13px 0 12px; font-size: 29px; line-height: 1.12; }
.blog-featured p { margin: 0; color: var(--blog-muted); font-size: 14px; line-height: 1.65; }

.blog-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border: 1px solid rgba(42, 171, 238, .22);
  border-radius: 999px;
  background: rgba(42, 171, 238, .08);
  color: #9fddff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.blog-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.blog-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  border: 1px solid var(--blog-border);
  border-radius: 8px;
  background: var(--blog-surface);
  overflow: hidden;
  transition: border-color .18s ease, transform .18s ease, background .18s ease;
}
.blog-card:hover { border-color: rgba(139, 92, 246, .38); background: var(--blog-surface-2); transform: translateY(-2px); }
.blog-card__visual { display: flex; min-height: 82px; align-items: center; justify-content: space-between; padding: 18px; background: #0b131d; border-bottom: 1px solid var(--blog-border); }
.blog-card__visual i { color: #88d5ff; font-size: 26px; }
.blog-card__number { color: rgba(255, 255, 255, .16); font-family: 'Outfit', sans-serif; font-size: 34px; font-weight: 800; }
.blog-card__body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 19px; }
.blog-card h2 { margin: 11px 0 8px; font-size: 18px; line-height: 1.28; }
.blog-card p { margin: 0; color: var(--blog-muted); font-size: 13px; line-height: 1.58; }
.blog-card__meta { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 15px; color: #8d98a8; font-size: 11px; }
.blog-card__read { color: #b7e8ff; font-weight: 900; }

.blog-pagination { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 30px; }
.blog-page-link { display: grid; min-width: 38px; height: 38px; place-items: center; border: 1px solid var(--blog-border); border-radius: 6px; color: var(--blog-muted); font-size: 12px; font-weight: 800; }
.blog-page-link:hover,
.blog-page-link.is-active { border-color: rgba(42, 171, 238, .4); background: rgba(42, 171, 238, .1); color: #fff; }
.blog-empty { padding: 68px 20px; border: 1px dashed var(--blog-border); border-radius: 8px; text-align: center; }
.blog-empty i { color: var(--blog-blue); font-size: 28px; }
.blog-empty h2 { margin: 14px 0 6px; }
.blog-empty p { margin: 0; color: var(--blog-muted); }

.blog-directory { margin-top: 42px; border-top: 1px solid var(--blog-border); padding-top: 26px; }
.blog-directory summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; list-style: none; }
.blog-directory summary::-webkit-details-marker { display: none; }
.blog-directory summary h2 { margin: 4px 0 0; font-size: 23px; }
.blog-directory__body { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; padding-top: 24px; }
.blog-directory h3 { color: #b7e8ff; font-size: 15px; }
.blog-directory ul { list-style: none; margin: 0; padding: 0; }
.blog-directory li { border-bottom: 1px solid rgba(255, 255, 255, .05); }
.blog-directory li a { display: block; padding: 9px 0; color: #aab4c2; font-size: 13px; line-height: 1.45; }
.blog-directory li a:hover { color: #fff; }

.blog-article-header { padding: 36px 0 22px; }
.blog-breadcrumb { display: flex; align-items: center; gap: 8px; overflow: hidden; margin-bottom: 18px; color: #7f8998; font-size: 12px; white-space: nowrap; }
.blog-breadcrumb a:hover { color: #fff; }
.blog-breadcrumb span:last-child { overflow: hidden; text-overflow: ellipsis; }
.blog-article-header__grid { display: grid; grid-template-columns: minmax(0, 1fr) 390px; align-items: center; gap: 38px; }
.blog-article-header h1 { max-width: 760px; margin: 14px 0; font-size: clamp(36px, 5vw, 56px); line-height: 1.04; }
.blog-article-header__desc { max-width: 750px; margin: 0; color: #b3bdca; font-size: 17px; line-height: 1.65; }
.blog-byline { display: flex; align-items: center; gap: 11px; margin-top: 22px; color: #8f99a8; font-size: 12px; flex-wrap: wrap; }
.blog-byline__avatar { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: #172334; color: #8ed8ff; }
.blog-byline strong { color: #e9edf3; }
.blog-article-cover { overflow: hidden; aspect-ratio: 4 / 3; border: 1px solid var(--blog-border); border-radius: 8px; background: #0b111a; }
.blog-article-cover img { width: 100%; height: 100%; object-fit: cover; object-position: 67% center; }

.blog-article-layout { display: grid; grid-template-columns: minmax(0, 760px) 310px; align-items: start; justify-content: space-between; gap: 54px; padding: 18px 0 28px; }
.blog-article {
  min-width: 0;
  color: #cbd2dc;
  font-size: 17px;
  line-height: 1.84;
}
.blog-article > *:first-child { margin-top: 0; }
.blog-article p { margin: 0 0 20px; }
.blog-article h2 { scroll-margin-top: 145px; margin: 46px 0 15px; color: #fff; font-size: 28px; line-height: 1.18; }
.blog-article h3 { scroll-margin-top: 145px; margin: 32px 0 12px; color: #f4f6fa; font-size: 21px; line-height: 1.25; }
.blog-article ul,
.blog-article ol { margin: 0 0 22px; padding-left: 24px; }
.blog-article li { margin: 8px 0; padding-left: 4px; }
.blog-article li::marker { color: #63c7fa; }
.blog-article strong { color: #fff; }
.blog-article a { color: #72cdfb; text-decoration: underline; text-decoration-color: rgba(114, 205, 251, .4); text-underline-offset: 3px; }
.blog-article blockquote { margin: 26px 0; border-left: 3px solid var(--blog-blue); background: rgba(42, 171, 238, .06); padding: 18px 20px; color: #d9eaf4; }
.blog-article img { max-width: 100%; height: auto; border-radius: 8px; }
.blog-article table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; }
.blog-article th,
.blog-article td { border: 1px solid var(--blog-border); padding: 12px; text-align: left; }
.blog-article th { background: var(--blog-surface-2); color: #fff; }

.blog-sidebar { position: sticky; top: 144px; display: grid; gap: 14px; }
.blog-side-card { border: 1px solid var(--blog-border); border-radius: 8px; background: var(--blog-surface); padding: 18px; }
.blog-side-card h2 { margin: 0 0 13px; font-size: 15px; }
.blog-toc { margin: 0; padding: 0; list-style: none; }
.blog-toc li + li { margin-top: 3px; }
.blog-toc a { display: block; padding: 7px 9px; border-left: 2px solid transparent; color: #8f9aa9; font-size: 12px; line-height: 1.4; }
.blog-toc a:hover,
.blog-toc a.is-current { border-left-color: var(--blog-blue); background: rgba(42, 171, 238, .06); color: #e9f8ff; }
.blog-toc .is-h3 a { padding-left: 20px; font-size: 11.5px; }

.blog-offer { position: relative; overflow: hidden; border-color: rgba(42, 171, 238, .24); background: #0b131d; }
.blog-offer__icon { display: grid; width: 40px; height: 40px; place-items: center; margin-bottom: 14px; border-radius: 7px; background: rgba(42, 171, 238, .12); color: #8bd8ff; }
.blog-offer h2 { margin: 7px 0 7px; font-size: 19px; line-height: 1.18; }
.blog-offer p { margin: 0; color: #9da8b6; font-size: 12.5px; line-height: 1.55; }
.blog-offer__price { display: block; margin: 14px 0 10px; color: #fff; font-size: 15px; font-weight: 900; }
.blog-offer .blog-primary-btn { width: 100%; }
.blog-offer__proof { display: flex; gap: 7px; margin-top: 11px; color: #7f8b9b; font-size: 10.5px; line-height: 1.4; }
.blog-offer__proof i { margin-top: 2px; color: var(--blog-green); }
.blog-affiliate-note { margin-top: 9px; color: #657080; font-size: 9.5px; line-height: 1.45; }

.blog-share { display: flex; gap: 7px; }
.blog-share button,
.blog-share a { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid var(--blog-border); border-radius: 6px; background: #0c1118; color: #aab4c2; cursor: pointer; }
.blog-share button:hover,
.blog-share a:hover { border-color: rgba(42, 171, 238, .35); color: #fff; }

.blog-final-offer {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  margin-top: 42px;
  border: 1px solid rgba(42, 171, 238, .28);
  border-radius: 8px;
  background: #0b131d;
  padding: 24px;
}
.blog-final-offer__icon { display: grid; width: 56px; height: 56px; place-items: center; border-radius: 8px; background: rgba(42, 171, 238, .1); color: #91dcff; font-size: 20px; }
.blog-final-offer h2 { margin: 3px 0 5px; font-size: 22px; }
.blog-final-offer p { margin: 0; color: #9da8b6; font-size: 13px; }

.blog-secondary-btn {
  display: inline-flex;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(42, 171, 238, .28);
  border-radius: 7px;
  background: rgba(42, 171, 238, .07);
  padding: 0 17px;
  color: #d9f3ff !important;
  font-size: 12px;
  font-weight: 900;
  transition: .2s ease;
}
.blog-secondary-btn:hover { border-color: rgba(42, 171, 238, .58); background: rgba(42, 171, 238, .13); transform: translateY(-1px); }

.blog-ecosystem { scroll-margin-top: 132px; border-top: 1px solid var(--blog-border); background: #090d13; padding: 64px 0; }
.blog-ecosystem.is-compact { margin-top: 30px; padding: 48px 0; }
.blog-ecosystem__intro { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 22px; }
.blog-ecosystem__intro h2 { max-width: 720px; margin: 6px 0 9px; font-size: 34px; line-height: 1.1; }
.blog-ecosystem__intro p { max-width: 710px; margin: 0; color: var(--blog-muted); font-size: 14px; line-height: 1.7; }
.blog-solution-finder { display: grid; grid-template-columns: 340px minmax(0, 1fr); overflow: hidden; border: 1px solid rgba(42, 171, 238, .2); border-radius: 8px; background: #0c121a; }
.blog-solution-goals { border-right: 1px solid var(--blog-border); background: #080c12; padding: 8px; }
.blog-solution-goals button { display: grid; width: 100%; min-height: 58px; grid-template-columns: 34px minmax(0, 1fr) 14px; align-items: center; gap: 10px; border: 0; border-radius: 6px; background: transparent; padding: 8px 11px; color: #9ba7b6; text-align: left; cursor: pointer; }
.blog-solution-goals button:hover { background: rgba(255,255,255,.04); color: #fff; }
.blog-solution-goals button[aria-selected="true"] { background: rgba(42,171,238,.12); color: #fff; }
.blog-solution-goals button > i:first-child { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 6px; background: rgba(42,171,238,.1); color: #7bd3ff; }
.blog-solution-goals button span { font-size: 12px; font-weight: 800; line-height: 1.35; }
.blog-solution-goals button > i:last-child { color: #526174; font-size: 9px; }
.blog-solution-panels { min-width: 0; }
.blog-solution-panel { min-height: 680px; padding: 34px 38px; }
.blog-solution-panel[hidden] { display: none; }
.blog-solution-panel__top { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.blog-solution-panel__icon { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 7px; background: #123047; color: #8bdcff; font-size: 18px; }
.blog-solution-panel__top span { display: block; color: #68c8f6; font-size: 9px; font-weight: 900; text-transform: uppercase; }
.blog-solution-panel__top strong { display: block; margin-top: 3px; font-family: 'Outfit',sans-serif; font-size: 17px; }
.blog-solution-panel__main { display: grid; grid-template-columns: minmax(0,1fr) 360px; align-items: start; gap: 28px; }
.blog-solution-panel h3 { max-width: 650px; margin: 0 0 11px; font-size: 29px; line-height: 1.1; }
.blog-solution-panel__copy > p { margin: 0; color: #98a5b5; font-size: 12px; line-height: 1.7; }
.blog-solution-panel__ideal { margin-top: 16px; border-left: 2px solid rgba(42,171,238,.55); background: rgba(42,171,238,.05); padding: 11px 13px; }
.blog-solution-panel__ideal span { display: block; color: #75c9f0; font-size: 8px; font-weight: 900; text-transform: uppercase; }
.blog-solution-panel__ideal p { margin: 4px 0 0; color: #aeb9c6; font-size: 10px; line-height: 1.55; }
.blog-solution-panel ul { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px 12px; list-style: none; margin: 19px 0 0; padding: 0; }
.blog-solution-panel li { display: flex; align-items: center; gap: 8px; color: #c6d0dc; font-size: 10.5px; font-weight: 800; }
.blog-solution-panel li i { color: var(--blog-green); }
.blog-solution-steps { margin-top: 27px; border-top: 1px solid var(--blog-border); padding-top: 21px; }
.blog-solution-steps > span { color: #718093; font-size: 8px; font-weight: 900; text-transform: uppercase; }
.blog-solution-steps ol { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; list-style: none; margin: 12px 0 0; padding: 0; }
.blog-solution-steps li { display: grid; grid-template-columns: 24px minmax(0,1fr); align-items: start; gap: 9px; }
.blog-solution-steps li > b { display: grid; width: 24px; height: 24px; place-items: center; border-radius: 50%; background: rgba(42,171,238,.12); color: #76d1fb; font-size: 9px; }
.blog-solution-steps li strong { display: block; color: #fff; font-size: 10.5px; }
.blog-solution-steps li p { margin: 3px 0 0; color: #7f8c9d; font-size: 9px; font-weight: 500; line-height: 1.45; }
.blog-solution-panel__action { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 24px; border-top: 1px solid var(--blog-border); padding-top: 20px; }
.blog-solution-panel__action small { display: block; color: #718093; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.blog-solution-panel__action strong { display: block; margin-top: 3px; font-size: 14px; }

.blog-product-demo { overflow: hidden; min-height: 300px; border: 1px solid rgba(255,255,255,.1); border-radius: 8px; background: #080d13; box-shadow: 0 18px 45px rgba(0,0,0,.24); }
.blog-product-demo__bar { display: flex; height: 38px; align-items: center; gap: 5px; border-bottom: 1px solid var(--blog-border); background: #0d141d; padding: 0 11px; }
.blog-product-demo__bar > span { width: 6px; height: 6px; border-radius: 50%; background: #344353; }
.blog-product-demo__bar > strong { overflow: hidden; margin-left: 5px; color: #8d9aab; font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
.blog-product-demo__bar > em { display: inline-flex; align-items: center; gap: 5px; margin-left: auto; color: #63dcb0; font-size: 7px; font-style: normal; font-weight: 900; text-transform: uppercase; }
.blog-product-demo__bar > em i { font-size: 5px; }
.blog-product-demo small { color: #687789; font-size: 7px; font-weight: 900; text-transform: uppercase; }
.blog-product-demo strong { color: #eaf0f7; }
.blog-demo-arrow { align-self: center; color: #3a9dcc; font-size: 10px; }
.blog-demo-clone { display: grid; min-height: 260px; grid-template-columns: 1fr 18px .92fr 18px 1.05fr; align-items: center; gap: 5px; padding: 17px; }
.blog-demo-node,.blog-demo-rules,.blog-demo-destinations { display: flex; min-width: 0; flex-direction: column; gap: 8px; border: 1px solid var(--blog-border); border-radius: 6px; background: #0e151e; padding: 11px; }
.blog-demo-node > strong { font-size: 9px; }
.blog-demo-node > strong i { margin-right: 4px; color: #54bff2; }
.blog-demo-node > span { border-radius: 5px; background: #17212c; padding: 9px 7px; color: #9facbb; font-size: 7px; }
.blog-demo-node > span i { margin-right: 4px; color: #6dc9f3; }
.blog-demo-rules span { color: #aab6c3; font-size: 7px; }
.blog-demo-rules span i { margin-right: 4px; color: var(--blog-green); }
.blog-demo-destinations span { display: flex; justify-content: space-between; gap: 4px; color: #aab6c3; font-size: 6.5px; }
.blog-demo-destinations b { color: #58cda2; font-size: 6px; }
.blog-demo-add,.blog-demo-engagement,.blog-demo-scheduler { padding: 17px; }
.blog-demo-stats,.blog-demo-delivery { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; }
.blog-demo-stats > span,.blog-demo-delivery > span { border: 1px solid var(--blog-border); border-radius: 6px; background: #0e151e; padding: 11px; }
.blog-demo-stats small,.blog-demo-delivery small { display: block; }
.blog-demo-stats strong { display: block; margin-top: 4px; font-size: 18px; }
.blog-demo-filter { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-top: 10px; }
.blog-demo-filter > small { grid-column: 1/-1; }
.blog-demo-filter span { border-radius: 5px; background: #101924; padding: 8px; color: #9eabba; font-size: 7px; }
.blog-demo-filter i { margin-right: 5px; color: #54c7f5; }
.blog-demo-progress { margin-top: 15px; }
.blog-demo-progress > span { display: block; overflow: hidden; height: 5px; border-radius: 5px; background: #17222e; }
.blog-demo-progress b { display: block; height: 100%; border-radius: inherit; background: #2aabee; }
.blog-demo-progress small { display: block; margin-top: 6px; }
.blog-demo-post { display: flex; align-items: center; gap: 10px; border: 1px solid var(--blog-border); border-radius: 6px; background: #0e151e; padding: 10px; }
.blog-demo-post__media { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 5px; background: #15364d; color: #70cef8; }
.blog-demo-post small,.blog-demo-post strong,.blog-demo-post div > span { display: block; }
.blog-demo-post strong { margin: 3px 0; font-size: 9px; }
.blog-demo-post div > span { color: #667487; font-size: 7px; }
.blog-demo-delivery { grid-template-columns: repeat(3,1fr); margin-top: 10px; }
.blog-demo-delivery i { color: #68cdfb; }
.blog-demo-delivery b { display: block; margin: 6px 0 2px; font-size: 11px; }
.blog-demo-calendar { border: 1px solid var(--blog-border); border-radius: 6px; background: #0e151e; padding: 10px; }
.blog-demo-calendar div { display: grid; grid-template-columns: repeat(7,1fr); gap: 3px; margin-top: 8px; }
.blog-demo-calendar div span { display: grid; aspect-ratio: 1; place-items: center; border-radius: 4px; color: #748194; font-size: 7px; }
.blog-demo-calendar div span.is-day { background: #1d86bb; color: #fff; font-weight: 900; }
.blog-demo-queue { display: grid; gap: 6px; margin-top: 9px; }
.blog-demo-queue > span { display: grid; grid-template-columns: 38px 16px minmax(0,1fr) auto; align-items: center; gap: 5px; border-radius: 5px; background: #101924; padding: 8px; }
.blog-demo-queue time { color: #61c6f3; font-size: 7px; font-weight: 900; }
.blog-demo-queue i { color: #77899b; font-size: 8px; }
.blog-demo-queue strong { overflow: hidden; font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }
.blog-demo-queue b { color: #7b8999; font-size: 6px; }
.blog-demo-bots { display: grid; min-height: 260px; grid-template-columns: 92px minmax(0,1fr); grid-template-rows: 1fr auto; }
.blog-demo-botlist { grid-row: 1/3; border-right: 1px solid var(--blog-border); background: #0b1119; padding: 8px; }
.blog-demo-botlist > span { display: grid; grid-template-columns: 20px minmax(0,1fr) auto; align-items: center; gap: 4px; margin-bottom: 4px; border-radius: 5px; padding: 6px 5px; color: #8491a0; }
.blog-demo-botlist > span.is-bot { background: #112334; color: #dbe5ef; }
.blog-demo-botlist i { color: #61c9f7; }
.blog-demo-botlist b { overflow: hidden; font-size: 6px; text-overflow: ellipsis; white-space: nowrap; }
.blog-demo-botlist em { display: grid; min-width: 14px; height: 14px; place-items: center; border-radius: 8px; background: #2aabee; color: #fff; font-size: 5px; font-style: normal; }
.blog-demo-chat { display: flex; flex-direction: column; gap: 7px; padding: 11px; }
.blog-demo-chat > span { max-width: 82%; border-radius: 6px; padding: 7px; font-size: 6.5px; }
.blog-demo-chat .is-user { align-self: flex-end; background: #187cac; color: #fff; }
.blog-demo-chat .is-bot-message { background: #18222e; color: #b2beca; }
.blog-demo-chat div > span { display: inline-block; border: 1px solid #22536d; border-radius: 4px; background: #102231; padding: 5px; color: #79cff7; font-size: 5px; }
.blog-demo-automation { display: flex; align-items: center; gap: 5px; border-top: 1px solid var(--blog-border); padding: 8px 10px; }
.blog-demo-automation small { margin-right: auto; }
.blog-demo-automation span { border-radius: 4px; background: #13202c; padding: 5px; color: #9aa9b8; font-size: 5.5px; }
.blog-demo-automation span i { margin-right: 3px; color: #63c9f7; }
.blog-demo-automation > i { color: #4b6679; font-size: 6px; }

.blog-ecosystem.is-compact .blog-ecosystem__intro h2 { font-size: 27px; }
.blog-ecosystem.is-compact .blog-ecosystem__grid { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 8px; }
.blog-product { display: grid; min-width: 0; grid-template-columns: 36px minmax(0,1fr) 12px; align-items: center; gap: 9px; border: 1px solid var(--blog-border); border-radius: 7px; background: #0d131b; padding: 13px; transition: .2s ease; }
.blog-product:hover { border-color: rgba(42,171,238,.42); background: #111b26; }
.blog-product.is-recommended { border-color: rgba(52,211,153,.35); }
.blog-product__icon { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 6px; background: rgba(42,171,238,.1); color: #7bd3ff; }
.blog-product small { display: block; color: #647184; font-size: 8px; font-weight: 900; text-transform: uppercase; }
.blog-product strong { display: block; overflow: hidden; margin-top: 3px; color: #fff; font-size: 11px; line-height: 1.3; text-overflow: ellipsis; }
.blog-product > i { color: #5e7185; font-size: 9px; }

.blog-context-bridge { display: grid; grid-template-columns: minmax(0,1fr) 220px; overflow: hidden; margin: 48px 0 20px; border: 1px solid rgba(42,171,238,.22); border-radius: 8px; background: #0a1119; }
.blog-context-bridge__content { padding: 30px; }
.blog-context-bridge h2 { max-width: 620px; margin: 7px 0 11px; font-size: 29px; line-height: 1.1; }
.blog-context-bridge__content > p { margin: 0; color: #9ca8b8; font-size: 13px; line-height: 1.68; }
.blog-context-bridge__content ul { display: flex; flex-wrap: wrap; gap: 8px 18px; list-style: none; margin: 18px 0 20px; padding: 0; }
.blog-context-bridge__content li { display: inline-flex; align-items: center; gap: 7px; color: #c1ccd8; font-size: 10.5px; font-weight: 800; }
.blog-context-bridge__content li i { color: var(--blog-green); }
.blog-context-bridge__actions { display: flex; align-items: center; gap: 16px; }
.blog-context-bridge__actions > a:last-child { color: #89a9bc; font-size: 10.5px; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.blog-context-bridge__product { display: flex; flex-direction: column; justify-content: center; border-left: 1px solid var(--blog-border); background: #0d1721; padding: 24px; }
.blog-context-bridge__icon { display: grid; width: 44px; height: 44px; place-items: center; margin-bottom: 18px; border-radius: 7px; background: #13324a; color: #89dcff; }
.blog-context-bridge__product > small { color: #6dbfe7; font-size: 8px; font-weight: 900; text-transform: uppercase; }
.blog-context-bridge__product > strong { margin-top: 5px; font-family: 'Outfit',sans-serif; font-size: 17px; line-height: 1.2; }
.blog-context-bridge__product > p { margin: 5px 0 18px; color: #738094; font-size: 10px; }
.blog-context-bridge__product > div { border-top: 1px solid var(--blog-border); padding-top: 15px; }
.blog-context-bridge__product > div span { display: block; color: #667487; font-size: 8px; font-weight: 900; text-transform: uppercase; }
.blog-context-bridge__product > div b { display: block; margin-top: 4px; font-size: 12px; }

.blog-related { margin-top: 50px; }
.blog-related__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 15px; }
.blog-related__item { display: flex; min-height: 98px; align-items: center; justify-content: space-between; gap: 18px; border: 1px solid var(--blog-border); border-radius: 8px; background: var(--blog-surface); padding: 17px; }
.blog-related__item:hover { border-color: rgba(139, 92, 246, .34); }
.blog-related__item span { font-size: 14px; font-weight: 800; line-height: 1.38; }
.blog-related__item i { color: #b6a3ff; }

.blog-mobile-offer { display: none; }
.blog-footer { margin-top: 62px; border-top: 1px solid var(--blog-border); background: #080b10; }
.blog-footer__grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 36px; padding: 42px 0 28px; }
.blog-footer p { color: #8792a2; font-size: 12px; line-height: 1.65; }
.blog-footer h2 { margin: 0 0 12px; font-size: 13px; }
.blog-footer ul { list-style: none; margin: 0; padding: 0; }
.blog-footer li + li { margin-top: 9px; }
.blog-footer li a { color: #8e99a8; font-size: 12px; }
.blog-footer li a:hover { color: #fff; }
.blog-footer__bottom { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255, 255, 255, .05); padding: 18px 0 24px; color: #687382; font-size: 11px; }

.blog-toast { position: fixed; z-index: 130; right: 18px; bottom: 18px; transform: translateY(20px); opacity: 0; pointer-events: none; border: 1px solid rgba(52, 211, 153, .3); border-radius: 7px; background: #0e1917; color: #c7f9e7; padding: 11px 14px; font-size: 12px; font-weight: 800; transition: .2s ease; }
.blog-toast.is-visible { transform: none; opacity: 1; }

@media (max-width: 980px) {
  .blog-nav { display: none; position: absolute; inset: 68px 20px auto; flex-direction: column; align-items: stretch; border: 1px solid var(--blog-border); border-radius: 8px; background: #0b0f16; padding: 8px; box-shadow: 0 22px 60px rgba(0, 0, 0, .45); }
  .blog-nav.is-open { display: flex; }
  .blog-menu-btn { display: grid; place-items: center; margin-left: auto; }
  .blog-header__cta { display: none; }
  .blog-hero__content { width: 68%; padding: 44px; }
  .blog-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .blog-article-header__grid { grid-template-columns: minmax(0, 1fr) 310px; gap: 24px; }
  .blog-article-layout { grid-template-columns: minmax(0, 1fr); }
  .blog-sidebar { position: static; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); order: -1; }
  .blog-sidebar .blog-share-card { display: none; }
  .blog-solution-finder { grid-template-columns: 300px minmax(0,1fr); }
  .blog-solution-panel { padding: 32px; }
  .blog-solution-panel__main { grid-template-columns: 1fr; }
  .blog-product-demo { max-width: 560px; }
  .blog-ecosystem.is-compact .blog-ecosystem__grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .blog-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .blog-shell { width: min(100% - 28px, var(--blog-max)); }
  .blog-header__row { min-height: 62px; }
  .blog-topicbar { top: 62px; }
  .blog-hero { padding-top: 18px; }
  .blog-hero__panel { min-height: 520px; }
  .blog-hero__media img { object-position: 69% center; opacity: .62; }
  .blog-hero__media::after { background: linear-gradient(180deg, rgba(7, 9, 13, .12), rgba(7, 9, 13, .95) 60%, #07090d 100%); }
  .blog-hero__content { display: flex; width: auto; min-height: 520px; flex-direction: column; justify-content: flex-end; padding: 28px 22px; }
  .blog-hero h1 { font-size: 38px; }
  .blog-hero__lead { font-size: 14px; }
  .blog-search { flex-direction: column; }
  .blog-search .blog-primary-btn { width: 100%; min-height: 46px; }
  .blog-section { padding-top: 28px; }
  .blog-section__head { align-items: start; flex-direction: column; gap: 5px; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured__media { min-height: 220px; }
  .blog-featured__content { padding: 23px; }
  .blog-featured h2 { font-size: 24px; }
  .blog-card-grid,
  .blog-directory__body,
  .blog-related__grid { grid-template-columns: 1fr; }
  .blog-ecosystem { padding-top: 42px; }
  .blog-ecosystem.is-compact { padding-top: 40px; }
  .blog-ecosystem__intro { align-items: start; flex-direction: column; gap: 16px; }
  .blog-ecosystem__intro h2 { font-size: 28px; }
  .blog-ecosystem__intro .blog-secondary-btn { width: 100%; }
  .blog-solution-finder { grid-template-columns: 1fr; }
  .blog-solution-goals { border-right: 0; border-bottom: 1px solid var(--blog-border); }
  .blog-solution-goals button { min-height: 52px; }
  .blog-solution-panel { min-height: 0; padding: 24px 20px; }
  .blog-solution-panel h3 { font-size: 26px; }
  .blog-solution-panel ul { grid-template-columns: 1fr; margin: 20px 0 24px; }
  .blog-solution-panel__main { grid-template-columns: 1fr; gap: 22px; }
  .blog-solution-steps ol { grid-template-columns: 1fr; gap: 12px; }
  .blog-product-demo { width: 100%; min-height: 0; }
  .blog-demo-clone { grid-template-columns: 1fr; }
  .blog-demo-clone .blog-demo-arrow { display: none; }
  .blog-demo-bots { grid-template-columns: 82px minmax(0,1fr); }
  .blog-demo-automation { align-items: flex-start; flex-direction: column; }
  .blog-demo-automation small { margin-right: 0; }
  .blog-solution-panel__action { align-items: stretch; flex-direction: column; }
  .blog-solution-panel__action .blog-primary-btn { width: 100%; }
  .blog-ecosystem.is-compact .blog-ecosystem__grid { grid-template-columns: 1fr; }
  .blog-product { padding: 12px; }
  .blog-context-bridge { grid-template-columns: 1fr; margin-top: 38px; }
  .blog-context-bridge__content { padding: 21px; }
  .blog-context-bridge h2 { font-size: 25px; }
  .blog-context-bridge__actions { align-items: stretch; flex-direction: column; }
  .blog-context-bridge__actions .blog-primary-btn { width: 100%; }
  .blog-context-bridge__product { border-top: 1px solid var(--blog-border); border-left: 0; }
  .blog-card { min-height: 245px; }
  .blog-article-header { padding-top: 24px; }
  .blog-article-header__grid { grid-template-columns: 1fr; }
  .blog-article-header h1 { font-size: 38px; }
  .blog-article-header__desc { font-size: 15px; }
  .blog-article-cover { aspect-ratio: 16 / 10; }
  .blog-article { font-size: 16px; line-height: 1.78; }
  .blog-article h2 { font-size: 25px; }
  .blog-sidebar { grid-template-columns: 1fr; }
  .blog-sidebar .blog-offer { display: none; }
  .blog-final-offer { grid-template-columns: 1fr; }
  .blog-final-offer__icon { width: 46px; height: 46px; }
  .blog-final-offer .blog-primary-btn { width: 100%; }
  .blog-mobile-offer {
    position: fixed;
    z-index: 95;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(42, 171, 238, .28);
    border-radius: 8px;
    background: rgba(9, 15, 23, .96);
    padding: 10px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .5);
    backdrop-filter: blur(16px);
  }
  .blog-mobile-offer__copy { min-width: 0; }
  .blog-mobile-offer strong,
  .blog-mobile-offer span { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .blog-mobile-offer strong { font-size: 12px; }
  .blog-mobile-offer span { margin-top: 2px; color: #8d99a8; font-size: 10px; }
  .blog-mobile-offer .blog-primary-btn { min-height: 38px; flex: 0 0 auto; padding: 0 13px; font-size: 11px; }
  .blog-footer { margin-bottom: 76px; }
  .blog-footer__grid { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
  .blog-footer__brand { grid-column: 1 / -1; }
  .blog-footer__bottom { flex-direction: column; }
}

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