:root {
  --bg-card: #ffffff;
  --text-body: #334155;
  --text-heading: #0f172a;
  --text-muted: #64748b;
  --text-dim: #94a3b8;
  --border-light: rgb(0 0 0 / 10%);
  --nav-bg: rgb(248 250 252 / 85%);
  --nav-border: rgb(0 0 0 / 6%);
  --input-bg: rgb(0 0 0 / 3%);
  --accent: #059669;
  --accent-dim: #047857;
  --accent-rgb: 5, 150, 105;
  --blog-ink: #0d1424;
  --blog-ink-soft: #4f5d73;
  --blog-ink-muted: #6b7890;
  --blog-surface: #ffffff;
  --blog-surface-soft: #f4f7fb;
  --blog-surface-tint: #eef3f9;
  --blog-line: #dce4ef;
  --blog-line-strong: #c5d0df;
  --blog-night: #0a0d17;
  --blog-night-soft: #121827;
  --blog-lime: #8cff7a;
  --blog-lime-dark: #287d34;
  --blog-green: #059669;
  --blog-green-strong: #00a66c;
  --blog-violet: #7557ff;
  --blog-violet-dark: #5138cb;
  --blog-danger: #a92d3b;
  --blog-shadow-sm: 0 8px 24px rgb(18 28 45 / 7%);
  --blog-shadow-lg: 0 24px 64px rgb(18 28 45 / 14%);
  --blog-radius-sm: 0.75rem;
  --blog-radius-md: 1.15rem;
  --blog-radius-lg: 1.75rem;
  --blog-content: 72rem;
  --blog-reading: 48rem;
  --blog-ease: cubic-bezier(0.2, 0.75, 0.25, 1);
  color-scheme: light;
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html[data-theme="dark"] {
  --bg-card: #16161f;
  --text-body: #cbd5e1;
  --text-heading: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --border-light: rgb(255 255 255 / 10%);
  --nav-bg: rgb(10 10 15 / 84%);
  --nav-border: rgb(255 255 255 / 6%);
  --input-bg: rgb(255 255 255 / 5%);
  --accent: #6eff8e;
  --accent-dim: #4ecc6e;
  --accent-rgb: 110, 255, 142;
}

[data-theme="light"] .text-accent {
  color: var(--accent) !important;
}

[data-theme="light"] .bg-accent {
  background-color: var(--accent) !important;
}

[data-theme="light"] .bg-accent\/10 {
  background-color: rgb(var(--accent-rgb) / 10%) !important;
}

[data-theme="light"] .border-accent\/20 {
  border-color: rgb(var(--accent-rgb) / 20%) !important;
}

[data-theme="light"] .hover\:text-accent:hover {
  color: var(--accent) !important;
}

[data-theme="light"] .hover\:bg-accent-dim:hover {
  background-color: var(--accent-dim) !important;
}

[data-theme="light"] .bg-accent.text-night {
  color: #fff !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 6rem;
  scroll-behavior: smooth;
}

body {
  min-width: 20rem;
  min-height: 100vh;
  margin: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  color: var(--blog-ink);
  background:
    radial-gradient(circle at 10% -5%, rgb(117 87 255 / 11%), transparent 29rem),
    radial-gradient(circle at 92% 8%, rgb(140 255 122 / 13%), transparent 24rem),
    var(--blog-surface-soft);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

button,
input,
select,
textarea {
  font: inherit;
}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 0.2rem solid var(--blog-violet);
  outline-offset: 0.22rem;
}

::selection {
  color: var(--blog-night);
  background: var(--blog-lime);
}

.blog-visually-hidden,
[data-blog-load-more-status]:empty {
  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;
}

.blog-skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: var(--blog-radius-sm);
  color: var(--blog-night);
  background: var(--blog-lime);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.blog-skip-link:focus {
  transform: translateY(0);
}

.blog-shell__header,
.blog-shell__footer {
  position: relative;
  z-index: 20;
  width: 100%;
  padding-inline: max(1rem, calc((100vw - var(--blog-content)) / 2));
  background: rgb(255 255 255 / 88%);
  border-color: var(--blog-line);
  border-style: solid;
  backdrop-filter: blur(18px) saturate(140%);
}

.blog-shell__header {
  position: sticky;
  top: 0;
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  border-width: 0 0 1px;
}

.blog-shell__header > a:first-child {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: var(--blog-night);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.blog-shell__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.65rem, 2vw, 1.35rem);
}

.blog-shell__nav a {
  position: relative;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  color: var(--blog-ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.blog-shell__nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  left: 0;
  height: 0.13rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blog-violet), var(--blog-lime-dark));
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms var(--blog-ease);
}

.blog-shell__nav a:hover,
.blog-shell__nav a[aria-current="page"] {
  color: var(--blog-ink);
}

.blog-shell__nav a:hover::after,
.blog-shell__nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.blog-shell__main {
  min-width: 0;
  width: min(var(--blog-content), calc(100% - clamp(2rem, 6vw, 5rem)));
  margin-inline: auto;
  padding-block: clamp(2.75rem, 7vw, 6.5rem);
}

.blog-shell__footer {
  min-height: 5rem;
  display: flex;
  align-items: center;
  color: var(--blog-ink-muted);
  border-width: 1px 0 0;
}

.blog-hero {
  position: relative;
  isolation: isolate;
  width: 100vw;
  min-height: calc(100svh - 4.5rem);
  margin-top: calc(-1 * clamp(2.75rem, 7vw, 6.5rem));
  margin-left: 50%;
  margin-bottom: clamp(2.25rem, 6vw, 4.75rem);
  padding: clamp(3rem, 6vw, 5rem) max(1.5rem, calc((100vw - 80rem) / 2));
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 34%, rgb(5 150 105 / 12%) 0, transparent 13rem),
    radial-gradient(circle at 84% 106%, rgb(5 150 105 / 18%) 0, transparent 24rem),
    linear-gradient(135deg, #fcfeff 0%, #f7fbfd 50%, #eef8f3 100%);
  border-block: 1px solid rgb(8 28 48 / 8%);
  box-shadow: 0 22px 52px rgb(15 39 65 / 12%);
  transform: translateX(-50%);
}

.blog-shell__main > header:not(.blog-hero) {
  position: relative;
  isolation: isolate;
  margin-bottom: clamp(2.25rem, 6vw, 4.75rem);
  padding: clamp(1.5rem, 5vw, 4rem);
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, var(--blog-night), var(--blog-night-soft));
  border-radius: clamp(1.35rem, 3vw, 2.5rem);
  box-shadow: var(--blog-shadow-lg);
}

.blog-shell__main > header:not(.blog-hero)::before {
  position: absolute;
  z-index: -1;
  top: -8rem;
  right: -5rem;
  width: 21rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(140 255 122 / 24%), transparent 68%);
  content: "";
}

.blog-hero__eyebrow,
.blog-kicker,
.blog-card__eyebrow {
  margin-top: 0;
  color: var(--blog-lime);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-shell__main > header:not(.blog-hero) > :first-child {
  margin-top: 0;
  color: var(--blog-lime);
}

.blog-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(24rem, 31rem);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
  width: min(100%, 80rem);
  margin-inline: auto;
}

.blog-hero__copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 39rem;
}

.blog-hero__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: clamp(2rem, 4vw, 3.6rem);
}

.blog-hero__badges > span {
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  color: #41506a;
  background: rgb(255 255 255 / 80%);
  border: 1px solid rgb(8 28 48 / 8%);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgb(15 39 65 / 9%);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.blog-hero__badges i {
  width: 0.45rem;
  height: 0.45rem;
  flex: 0 0 auto;
  background: var(--blog-green);
  border-radius: 50%;
  box-shadow: 0 0 0 0.25rem rgb(5 150 105 / 12%);
}

.blog-shell__main > header h1,
.blog-hero__title {
  margin: 0;
  color: var(--blog-ink);
  font-family: Outfit, Manrope, sans-serif;
  font-size: clamp(2.5rem, 4.9vw, 4.6rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.blog-hero__title > span {
  display: block;
}

.blog-hero__title-accent {
  color: var(--blog-green);
}

.blog-hero__title-muted {
  color: #7a8698;
}

.blog-shell__lead,
.blog-hero__lead {
  max-width: 36.5rem;
  margin: 1.5rem 0 0;
  color: #67768d;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
  line-height: 1.72;
}

.blog-hero__meta,
.blog-article__meta,
.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.9rem;
  color: var(--blog-ink-muted);
  font-size: 0.875rem;
}

.blog-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.blog-hero__button {
  min-height: 4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 0.75rem 1.75rem;
  border: 1px solid transparent;
  border-radius: 0.95rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms var(--blog-ease), box-shadow 180ms ease;
}

.blog-hero__button:hover {
  transform: translateY(-0.15rem);
}

.blog-hero__button--primary {
  min-width: 20rem;
  color: #fff;
  background: linear-gradient(135deg, var(--blog-green-strong), #009767);
  box-shadow: 0 18px 34px rgb(5 150 105 / 22%);
}

.blog-hero__button--primary:hover {
  box-shadow: 0 22px 44px rgb(5 150 105 / 28%);
}

.blog-hero__button--secondary {
  min-width: 13.5rem;
  color: var(--blog-ink);
  background: rgb(255 255 255 / 80%);
  border-color: rgb(8 28 48 / 8%);
  box-shadow: 0 14px 30px rgb(15 39 65 / 8%);
}

.blog-hero__preview {
  position: relative;
  min-width: 0;
  padding: 2rem 0 3.6rem;
}

.blog-hero__preview-card {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  color: #dbe7ef;
  background:
    radial-gradient(circle at 80% 20%, rgb(5 150 105 / 9%), transparent 18rem),
    linear-gradient(145deg, #0c1722, #142634);
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 1.5rem;
  box-shadow: 0 28px 60px rgb(12 23 34 / 25%);
}

.blog-hero__preview-chrome,
.blog-article__hero-chrome {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.blog-hero__preview-chrome span,
.blog-article__hero-chrome span {
  width: 0.72rem;
  height: 0.72rem;
  flex: 0 0 auto;
  border-radius: 50%;
}

.blog-hero__preview-chrome span:nth-child(1),
.blog-article__hero-chrome span:nth-child(1) { background: #ff6b5e; }
.blog-hero__preview-chrome span:nth-child(2),
.blog-article__hero-chrome span:nth-child(2) { background: #ffd95a; }
.blog-hero__preview-chrome span:nth-child(3),
.blog-article__hero-chrome span:nth-child(3) { background: #67e987; }

.blog-hero__preview-chrome strong,
.blog-article__hero-chrome strong {
  min-width: 0;
  margin-left: 0.35rem;
  overflow: hidden;
  color: #c5d4df;
  font-size: 0.75rem;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.blog-hero__preview-image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 0.9rem;
}

.blog-hero__preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms var(--blog-ease);
}

.blog-hero__preview-image:hover img {
  transform: scale(1.025);
}

.blog-hero__preview-copy {
  display: grid;
  gap: 0.4rem;
  padding-top: 1rem;
}

.blog-hero__preview-copy span {
  color: #53e7a5;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-hero__preview-copy a {
  color: #f7fbfd;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.blog-hero__preview-note {
  position: absolute;
  right: -1rem;
  bottom: 0;
  left: 1.5rem;
  display: flex;
  min-height: 6.3rem;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  background: rgb(255 255 255 / 94%);
  border: 1px solid rgb(8 28 48 / 8%);
  border-radius: 1.1rem;
  box-shadow: 0 24px 48px rgb(15 39 65 / 16%);
  backdrop-filter: blur(18px);
}

.blog-hero__preview-note > span {
  width: 2.85rem;
  height: 2.85rem;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--blog-green);
  background: rgb(5 150 105 / 12%);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 900;
}

.blog-hero__preview-note :is(strong, small) {
  display: block;
}

.blog-hero__preview-note strong {
  color: var(--blog-ink);
  font-size: 0.95rem;
}

.blog-hero__preview-note small {
  margin-top: 0.3rem;
  color: #7a8698;
  font-size: 0.78rem;
}

.blog-hero__stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  width: min(100%, 80rem);
  margin: clamp(3rem, 6vw, 4.8rem) 0 0;
  margin-inline: auto;
}

.blog-hero__stats > div {
  min-width: 0;
  padding: 1rem 1.2rem;
  background: rgb(255 255 255 / 84%);
  border: 1px solid rgb(8 28 48 / 8%);
  border-radius: var(--blog-radius-sm);
  box-shadow: 0 14px 32px rgb(15 39 65 / 8%);
  backdrop-filter: blur(16px);
}

.blog-hero__stats dt,
.blog-hero__stats dd {
  margin: 0;
}

.blog-hero__stats dt {
  color: #7a8698;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.blog-hero__stats dd {
  margin-top: 0.15rem;
  color: var(--blog-ink);
  font-size: clamp(1.05rem, 2.5vw, 1.5rem);
  font-weight: 850;
  line-height: 1.2;
}

.blog-brand-hero__wave,
.blog-brand-hero__dots,
.blog-brand-hero__pearl {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.blog-brand-hero__wave {
  border: 1px solid rgb(5 150 105 / 12%);
  border-radius: 46% 54% 50% 50%;
}

.blog-brand-hero__wave::before,
.blog-brand-hero__wave::after {
  position: absolute;
  border: 1px solid rgb(5 150 105 / 11%);
  border-radius: inherit;
  content: "";
}

.blog-brand-hero__wave::before { inset: 1rem; }
.blog-brand-hero__wave::after { inset: 2rem; }

.blog-brand-hero__wave--left {
  top: -11rem;
  left: -14rem;
  width: 34rem;
  height: 45rem;
  background: linear-gradient(100deg, rgb(5 150 105 / 12%), transparent);
  transform: rotate(8deg);
}

.blog-brand-hero__wave--right {
  right: -16rem;
  bottom: -18rem;
  width: 50rem;
  height: 40rem;
  background: linear-gradient(135deg, transparent, rgb(5 150 105 / 14%));
  transform: rotate(-18deg);
}

.blog-brand-hero__dots {
  top: 3rem;
  right: 5%;
  width: 21rem;
  height: 15rem;
  background-image: radial-gradient(rgb(5 150 105 / 36%) 1.15px, transparent 1.3px);
  background-size: 1.35rem 1.35rem;
  opacity: 0.44;
  mask-image: linear-gradient(to bottom, #000, transparent);
}

.blog-brand-hero__pearl {
  top: 33%;
  left: 1.4rem;
  width: 2.6rem;
  height: 2.6rem;
  background: radial-gradient(circle at 30% 24%, #fff, #f3fbf7 38%, rgb(5 150 105 / 22%));
  border-radius: 50%;
  box-shadow: 0 16px 28px rgb(5 150 105 / 12%);
}

.blog-listing {
  margin-top: clamp(2rem, 5vw, 4rem);
}

.blog-listing__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1.1rem, 3vw, 1.8rem);
}

.blog-listing__heading :where(h2, p) {
  margin: 0;
}

.blog-listing__heading h2 {
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.blog-listing .blog-kicker {
  margin-bottom: 0.25rem;
  color: var(--blog-violet-dark);
}

.blog-listing__heading > p {
  color: var(--blog-ink-muted);
}

.blog-shell__list,
[data-blog-grid],
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 1.7rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-shell__list > li,
[data-blog-card] {
  min-width: 0;
}

.blog-shell__card,
.blog-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: clamp(1.15rem, 2.5vw, 1.55rem);
  overflow: hidden;
  background: rgb(255 255 255 / 92%);
  border: 1px solid var(--blog-line);
  border-radius: var(--blog-radius-lg);
  box-shadow: var(--blog-shadow-sm);
  transition:
    transform 220ms var(--blog-ease),
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.blog-shell__card:hover,
.blog-shell__card:focus-within,
.blog-card:hover,
.blog-card:focus-within {
  border-color: rgb(117 87 255 / 42%);
  box-shadow: var(--blog-shadow-lg);
  transform: translateY(-0.3rem);
}

.blog-card--with-media {
  padding: 0;
}

/* Dedicated blog cards always own a body wrapper; keep their media edge-to-edge
   even when older cached markup lacks the optional modifier class. */
.blog-card {
  gap: 0;
  padding: 0;
}

.blog-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blog-surface-tint), #e2e9f5);
}

.blog-card__media::after {
  position: absolute;
  inset: auto 0 0;
  height: 72%;
  background: linear-gradient(transparent, rgb(6 15 25 / 94%));
  content: "";
  pointer-events: none;
}

.blog-card__cover-copy {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 0.45rem;
  padding: clamp(1rem, 3vw, 1.45rem);
  color: #fff;
  pointer-events: none;
}

.blog-card__cover-copy > span {
  justify-self: start;
  padding: 0.3rem 0.55rem;
  color: #9af0c9;
  background: rgb(5 150 105 / 20%);
  border: 1px solid rgb(154 240 201 / 24%);
  border-radius: 999px;
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.blog-card__cover-copy strong {
  max-width: 23ch;
  font-family: Outfit, Manrope, sans-serif;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.blog-card__cover-copy small {
  color: rgb(255 255 255 / 68%);
  font-size: 0.72rem;
  font-weight: 700;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--blog-ease);
}

.blog-card:hover .blog-card__media img,
.blog-card:focus-within .blog-card__media img {
  transform: scale(1.035);
}

.blog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.9rem;
  padding: 0 clamp(1.15rem, 2.5vw, 1.55rem) clamp(1.15rem, 2.5vw, 1.55rem);
}

.blog-card__media + .blog-card__body {
  padding-top: clamp(1.15rem, 2.5vw, 1.55rem);
}

.blog-shell__card > p:first-child,
.blog-card__eyebrow {
  align-self: flex-start;
  margin: 0;
  padding: 0.34rem 0.65rem;
  color: var(--blog-violet-dark);
  background: rgb(117 87 255 / 9%);
  border: 1px solid rgb(117 87 255 / 17%);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-shell__card h2,
.blog-card__title {
  margin: 0;
  font-size: clamp(1.15rem, 2.1vw, 1.45rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.blog-shell__card h2 a,
.blog-card__title a {
  text-decoration: none;
}

.blog-shell__card h2 a:hover,
.blog-card__title a:hover {
  color: var(--blog-violet-dark);
}

.blog-shell__card > p:not(:first-child),
.blog-card__excerpt {
  margin: 0;
  color: var(--blog-ink-soft);
  line-height: 1.65;
}

.blog-shell__card time,
.blog-card__meta {
  margin-top: auto;
  color: var(--blog-ink-muted);
  font-size: 0.83rem;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-tag,
.blog-tags > li,
.blog-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0.25rem 0.6rem;
  color: var(--blog-ink-soft);
  background: var(--blog-surface-tint);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.blog-card__tag[data-tag-type="service"] {
  color: #315f25;
  background: rgb(140 255 122 / 18%);
}

.blog-pagination,
[data-blog-pagination],
.blog-shell__list + nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

.blog-pagination__pages {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.blog-pagination a,
[data-blog-pagination] a,
.blog-shell__list + nav > a {
  min-width: 2.75rem;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.8rem;
  color: var(--blog-ink-soft);
  background: var(--blog-surface);
  border: 1px solid var(--blog-line);
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 4px 14px rgb(18 28 45 / 5%);
}

.blog-pagination__direction {
  width: auto;
  min-width: 5.5rem;
  gap: 0.35rem;
}

.blog-pagination__direction[aria-disabled="true"],
.blog-pagination__direction:not(a) {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.8rem;
  color: var(--blog-ink-muted);
  background: transparent;
  border: 1px solid var(--blog-line);
  border-radius: 999px;
  box-shadow: none;
  opacity: 0.7;
}

.blog-pagination a:hover,
[data-blog-pagination] a:hover,
.blog-shell__list + nav > a:hover {
  color: var(--blog-violet-dark);
  border-color: rgb(117 87 255 / 45%);
}

.blog-pagination a[aria-current="page"],
[data-blog-pagination] a[aria-current="page"],
.blog-shell__list + nav > a[aria-current="page"] {
  color: #fff;
  background: var(--blog-night);
  border-color: var(--blog-night);
}

.blog-load-more {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
}

[data-blog-load-more],
.blog-load-more__button,
.blog-button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.72rem 1.2rem;
  color: var(--blog-night);
  background: var(--blog-lime);
  border: 1px solid rgb(40 125 52 / 28%);
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 10px 24px rgb(85 174 74 / 18%);
  transition:
    transform 180ms var(--blog-ease),
    box-shadow 180ms ease,
    opacity 180ms ease;
}

[data-blog-load-more]:hover,
.blog-load-more__button:hover,
.blog-button:hover {
  box-shadow: 0 14px 30px rgb(85 174 74 / 26%);
  transform: translateY(-0.12rem);
}

[data-blog-load-more][aria-disabled="true"] {
  cursor: wait;
  opacity: 0.68;
  pointer-events: none;
}

[data-blog-load-more].is-loading::before {
  width: 1rem;
  height: 1rem;
  border: 0.14rem solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  content: "";
  animation: blog-spin 700ms linear infinite;
}

[data-blog-grid][aria-busy="true"] {
  cursor: progress;
}

.blog-breadcrumbs {
  width: min(100%, var(--blog-content));
  margin: 0 auto clamp(1.25rem, 3vw, 2rem);
  color: var(--blog-ink-muted);
  font-size: 0.875rem;
}

.blog-article__breadcrumbs {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  width: 100%;
  margin: 0;
  padding: 0.7rem 0.9rem;
  background: rgb(255 255 255 / 66%);
  border: 1px solid rgb(8 28 48 / 7%);
  border-radius: 0.8rem;
  backdrop-filter: blur(14px);
}

.blog-article__breadcrumbs [aria-current="page"] {
  max-width: min(72ch, 58vw);
}

.blog-breadcrumbs :is(ol, ul),
:is(ol, ul).blog-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.6rem;
  margin-block: 0;
  padding: 0;
  list-style: none;
}

.blog-breadcrumbs li {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.blog-breadcrumbs li + li::before {
  color: var(--blog-line-strong);
  content: "/";
}

.blog-breadcrumbs a {
  color: var(--blog-ink-soft);
  font-weight: 700;
  text-decoration-color: rgb(117 87 255 / 35%);
}

.blog-breadcrumbs a:hover {
  color: var(--blog-violet-dark);
  text-decoration-color: currentColor;
}

.blog-breadcrumbs [aria-current="page"] {
  max-width: min(52ch, 70vw);
  overflow: hidden;
  color: var(--blog-ink);
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.blog-shell__main > article,
.blog-article {
  min-width: 0;
  width: 100%;
  max-width: var(--blog-content);
  margin-inline: auto;
  overflow-wrap: break-word;
}

.blog-article__header {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  width: 100vw;
  min-height: min(52rem, calc(100svh - 4.5rem));
  margin-left: 50%;
  margin-bottom: clamp(2.25rem, 6vw, 4.5rem);
  padding: clamp(3rem, 6vw, 5rem) max(1.5rem, calc((100vw - 80rem) / 2));
  overflow: hidden;
  color: var(--blog-ink);
  background:
    radial-gradient(circle at 4% 34%, rgb(5 150 105 / 12%) 0, transparent 13rem),
    radial-gradient(circle at 84% 106%, rgb(5 150 105 / 18%) 0, transparent 24rem),
    linear-gradient(135deg, #fcfeff 0%, #f7fbfd 50%, #eef8f3 100%);
  border-block: 1px solid rgb(8 28 48 / 8%);
  box-shadow: 0 22px 52px rgb(15 39 65 / 12%);
  transform: translateX(-50%);
}

.blog-article__hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.blog-hero .blog-kicker,
.blog-article__header .blog-kicker {
  color: var(--blog-green);
}

.blog-shell__main > article h1,
.blog-article__title {
  max-width: 20ch;
  margin: 0;
  color: var(--blog-ink);
  font-family: Outfit, Manrope, sans-serif;
  font-size: clamp(2.1rem, 4.5vw, 3.9rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
  hyphens: auto;
  text-wrap: balance;
}

.blog-article__lead,
.blog-shell__main > article .blog-shell__lead {
  max-width: 65ch;
  margin: 1.2rem 0 0;
  color: #67768d;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  font-weight: 600;
  line-height: 1.75;
  hyphens: auto;
}

.blog-article__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.5rem;
  color: var(--blog-ink-muted);
}

.blog-article__meta :is(a, time) {
  color: inherit;
}

.blog-article__meta > div {
  min-width: min(10rem, 100%);
  padding: 0.75rem 0.85rem;
  background: rgb(255 255 255 / 72%);
  border: 1px solid rgb(8 28 48 / 7%);
  border-radius: 0.75rem;
}

.blog-article__meta dt {
  color: #7a8698;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.blog-article__meta dd {
  margin: 0.15rem 0 0;
  color: var(--blog-ink);
  font-weight: 700;
}

.blog-article__taxonomy,
.blog-article__taxonomy :is(ul, ol) {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.blog-article__taxonomy > li,
.blog-article__taxonomy :is(ul, ol) > li {
  min-height: 1.85rem;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  color: #315f25;
  background: rgb(5 150 105 / 9%);
  border: 1px solid rgb(5 150 105 / 16%);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 750;
}

.blog-article__taxonomy-group {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 0.4rem;
}

.blog-article__taxonomy-label {
  color: #7a8698;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.blog-article__taxonomy-group .blog-tags {
  margin: 0;
}

.blog-article .blog-article__hero-media,
.blog-article .blog-article__hero-media :is(picture, img) {
  min-width: 0;
}

.blog-article .blog-article__hero-media {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 1.15rem;
  color: #dbe7ef;
  background:
    radial-gradient(circle at 80% 20%, rgb(5 150 105 / 9%), transparent 18rem),
    linear-gradient(145deg, #0c1722, #142634);
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 1.5rem;
  box-shadow: 0 28px 60px rgb(12 23 34 / 25%);
}

.blog-article .blog-article__hero-media picture {
  display: block;
}

.blog-article .blog-article__hero-media img {
  width: 100%;
  height: auto;
  background: var(--blog-night-soft);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 0.9rem;
}

.blog-article .blog-article__hero-media figcaption {
  margin: 0.8rem 0.2rem 0;
  color: #a8bac7;
  font-size: 0.8rem;
  line-height: 1.5;
}

.blog-article__intro {
  max-width: var(--blog-reading);
  margin: 0 auto clamp(2.25rem, 6vw, 4rem);
  padding-left: clamp(1rem, 3vw, 1.5rem);
  color: var(--blog-ink-soft);
  border-left: 0.25rem solid var(--blog-violet);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.8;
  hyphens: auto;
}

.blog-article__intro > :first-child {
  margin-top: 0;
}

.blog-article__intro > :last-child {
  margin-bottom: 0;
}

.blog-toc,
.blog-shell__toc {
  max-width: var(--blog-reading);
  margin: clamp(2rem, 5vw, 3.5rem) auto;
  padding: clamp(1rem, 3vw, 1.5rem) clamp(1.25rem, 4vw, 2rem);
  background: rgb(255 255 255 / 82%);
  border: 1px solid var(--blog-line);
  border-radius: var(--blog-radius-md);
  box-shadow: var(--blog-shadow-sm);
}

.blog-toc > :is(h2, h3, p):first-child {
  margin-top: 0;
}

.blog-toc > :is(h2, h3) {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.35;
}

.blog-toc__title {
  margin-bottom: 1rem;
  color: var(--blog-ink);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
}

.blog-toc :is(ol, ul),
:is(ol, ul).blog-shell__toc {
  margin-block: 0;
  padding-left: 1.35rem;
  columns: 2;
  column-gap: clamp(1.5rem, 5vw, 3rem);
}

.blog-toc li,
.blog-shell__toc li {
  break-inside: avoid;
  margin: 0 0 0.75rem;
  padding-left: 0.2rem;
}

.blog-toc a,
.blog-shell__toc a {
  color: var(--blog-ink-soft);
  font-weight: 650;
  overflow-wrap: anywhere;
  text-decoration-color: rgb(117 87 255 / 32%);
}

.blog-toc a:hover,
.blog-shell__toc a:hover {
  color: var(--blog-violet-dark);
  text-decoration-color: currentColor;
}

.blog-article__content,
.blog-article__references {
  min-width: 0;
  max-width: var(--blog-reading);
  margin-inline: auto;
}

.blog-article__section {
  min-width: 0;
  scroll-margin-top: 6rem;
}

.blog-article__section + .blog-article__section {
  margin-top: clamp(3rem, 7vw, 5rem);
  padding-top: clamp(2.5rem, 6vw, 4rem);
  border-top: 1px solid var(--blog-line);
}

.blog-shell__main > article h2,
.blog-article__section > h2,
.blog-article__references > :is(h2, h3) {
  margin: 0 0 1.25rem;
  color: var(--blog-ink);
  font-size: clamp(1.55rem, 4vw, 2.45rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
  hyphens: auto;
  text-wrap: balance;
}

.blog-article h3,
.blog-prose h3 {
  margin: 2rem 0 0.8rem;
  color: var(--blog-ink);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  line-height: 1.3;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.blog-article .blog-article__references > :is(h2, h3) {
  margin: 0 0 1.25rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.25;
}

.blog-prose,
p.blog-prose,
.blog-article__content :is(p, li) {
  color: #253147;
  line-height: 1.8;
  overflow-wrap: break-word;
  hyphens: auto;
}

.blog-prose > :first-child {
  margin-top: 0;
}

.blog-prose > :last-child {
  margin-bottom: 0;
}

.blog-prose p,
p.blog-prose,
.blog-article__content > p {
  margin: 1rem 0;
}

.blog-article__section > .blog-prose__paragraph--lead {
  position: relative;
  margin: 1.45rem 0 1.3rem;
  padding: 2.85rem clamp(1.05rem, 3.4vw, 1.6rem) 1.2rem;
  color: #152138;
  background:
    linear-gradient(135deg, rgb(117 87 255 / 10%), rgb(89 229 177 / 10%)),
    #fbfcff;
  border: 1px solid rgb(117 87 255 / 18%);
  border-left: 0.3rem solid var(--blog-violet);
  border-radius: var(--blog-radius-sm);
  box-shadow: 0 0.7rem 1.8rem rgb(29 23 62 / 7%);
  font-size: clamp(1.02rem, 1.8vw, 1.13rem);
  font-weight: 670;
  line-height: 1.7;
}

.blog-article__section > .blog-prose__paragraph--lead::before {
  position: absolute;
  top: 0.85rem;
  left: clamp(1.05rem, 3.4vw, 1.6rem);
  color: var(--blog-violet-dark);
  content: "ГЛАВНОЕ";
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
}

.blog-article__section > .blog-prose__paragraph:last-of-type:not(.blog-prose__paragraph--lead) {
  margin-top: 1.25rem;
  padding: 0.75rem 1rem;
  color: #263349;
  background: rgb(89 229 177 / 9%);
  border-left: 0.22rem solid #35b986;
  border-radius: 0 0.65rem 0.65rem 0;
  font-weight: 620;
}

.blog-prose__paragraph strong,
.blog-prose__list strong,
.blog-checklist strong {
  color: #131b31;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgb(89 229 177 / 55%);
  text-decoration-thickness: 0.22em;
  text-underline-offset: -0.08em;
  text-decoration-skip-ink: none;
}

.blog-article__content :is(a, code),
.blog-article__references a,
.blog-sources a {
  overflow-wrap: anywhere;
}

.blog-prose a,
.blog-article__content > p a,
.blog-article__references a,
.blog-sources a {
  color: var(--blog-violet-dark);
  font-weight: 650;
  text-decoration-color: rgb(81 56 203 / 35%);
}

.blog-prose a:hover,
.blog-article__content > p a:hover,
.blog-article__references a:hover,
.blog-sources a:hover {
  text-decoration-color: currentColor;
}

.blog-article code,
.blog-prose code {
  padding: 0.12em 0.35em;
  color: #3d2ca0;
  background: rgb(117 87 255 / 9%);
  border-radius: 0.35em;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.88em;
}

.blog-prose pre {
  max-width: 100%;
  margin: 1.5rem 0;
  padding: 1rem;
  overflow-x: auto;
  color: #eef3ff;
  background: var(--blog-night-soft);
  border-radius: var(--blog-radius-sm);
  tab-size: 2;
}

.blog-prose pre code {
  padding: 0;
  color: inherit;
  background: transparent;
  white-space: pre;
}

:is(ul, ol).blog-list,
.blog-list > :is(ul, ol),
:is(ul, ol).blog-prose__list {
  margin: 1.25rem 0;
  padding-left: 1.4rem;
}

.blog-list li + li,
.blog-prose__list li + li,
.blog-article__content :is(ul, ol) li + li {
  margin-top: 0.6rem;
}

.blog-list li::marker,
.blog-prose__list li::marker,
.blog-source-list li::marker,
.blog-sources li::marker {
  color: var(--blog-violet-dark);
  font-weight: 800;
}

:is(ul, ol).blog-checklist,
.blog-checklist > :is(ul, ol) {
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.blog-checklist > li,
.blog-checklist > :is(ul, ol) > li {
  position: relative;
  min-height: 1.75rem;
  padding-left: 2rem;
}

.blog-checklist > li + li,
.blog-checklist > :is(ul, ol) > li + li {
  margin-top: 0.75rem;
}

.blog-checklist > li:not(.blog-checklist__item)::before,
.blog-checklist > :is(ul, ol) > li::before {
  position: absolute;
  top: 0.1rem;
  left: 0;
  width: 1.35rem;
  height: 1.35rem;
  display: grid;
  place-items: center;
  color: #184d20;
  background: rgb(140 255 122 / 25%);
  border: 1px solid rgb(40 125 52 / 38%);
  border-radius: 50%;
  content: "\2713";
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.blog-checklist > .blog-checklist__item {
  display: grid;
  grid-template-columns: 1.35rem minmax(0, 1fr);
  align-items: start;
  gap: 0.65rem;
  padding-left: 0;
}

.blog-checklist__marker {
  width: 1.35rem;
  height: 1.35rem;
  display: grid;
  place-items: center;
  margin-top: 0.1rem;
  color: #184d20;
  background: rgb(140 255 122 / 25%);
  border: 1px solid rgb(40 125 52 / 38%);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.blog-checklist__item[data-checked="false"] .blog-checklist__marker {
  color: var(--blog-ink-muted);
  background: var(--blog-surface);
  border-color: var(--blog-line-strong);
}

.blog-table-region,
.blog-table-wrap {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  margin: 1.75rem 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  background: var(--blog-surface);
  border: 1px solid var(--blog-line);
  border-radius: var(--blog-radius-md);
  box-shadow: var(--blog-shadow-sm);
  scrollbar-color: var(--blog-line-strong) transparent;
  -webkit-overflow-scrolling: touch;
}

.blog-table-region:focus-visible,
.blog-table-wrap:focus-visible {
  outline: 0.2rem solid var(--blog-violet);
  outline-offset: 0.22rem;
}

.blog-table,
.blog-table-region table,
.blog-table-wrap table {
  width: 100%;
  min-width: 40rem;
  border-collapse: collapse;
  background: var(--blog-surface);
}

.blog-table caption,
.blog-table-region caption,
.blog-table-wrap caption {
  padding: 0.9rem 1rem;
  color: var(--blog-ink-soft);
  font-weight: 750;
  text-align: left;
  caption-side: top;
}

.blog-table :is(th, td),
.blog-table-region :is(th, td),
.blog-table-wrap :is(th, td) {
  padding: 0.85rem 1rem;
  border-right: 1px solid var(--blog-line);
  border-bottom: 1px solid var(--blog-line);
  text-align: left;
  vertical-align: top;
  overflow-wrap: break-word;
  hyphens: auto;
}

.blog-table :is(th, td):last-child,
.blog-table-region :is(th, td):last-child,
.blog-table-wrap :is(th, td):last-child {
  border-right: 0;
}

.blog-table tbody tr:last-child > *,
.blog-table-region tbody tr:last-child > *,
.blog-table-wrap tbody tr:last-child > * {
  border-bottom: 0;
}

.blog-table th,
.blog-table-region th,
.blog-table-wrap th {
  color: var(--blog-ink);
  background: var(--blog-surface-tint);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.025em;
}

.blog-callout,
.blog-article blockquote {
  margin: 1.75rem 0;
  padding: 1.1rem 1.25rem;
  color: var(--blog-ink);
  background: linear-gradient(120deg, rgb(117 87 255 / 8%), rgb(140 255 122 / 9%));
  border: 1px solid rgb(117 87 255 / 18%);
  border-left: 0.3rem solid var(--blog-violet);
  border-radius: var(--blog-radius-sm);
}

.blog-callout > :first-child,
.blog-article blockquote > :first-child {
  margin-top: 0;
}

.blog-callout > :last-child,
.blog-article blockquote > :last-child {
  margin-bottom: 0;
}

.blog-figure,
.blog-article figure {
  margin: clamp(1.75rem, 4vw, 2.75rem) 0;
}

/* Legacy editorial photos stay in the validated content manifest for rollback,
   but the reader sees one purpose-built explanatory visual for every answer. */
.blog-article__section > .blog-figure {
  display: none;
}

.blog-section-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(18rem, 1.08fr);
  min-height: 20rem;
  overflow: hidden;
  color: #eef8f5;
  background:
    radial-gradient(circle at 78% 20%, rgb(5 150 105 / 22%), transparent 17rem),
    radial-gradient(circle at 22% 100%, rgb(117 87 255 / 18%), transparent 18rem),
    linear-gradient(145deg, #091725, #102837);
  border: 1px solid rgb(8 28 48 / 12%);
  border-radius: 1.5rem;
  box-shadow: 0 24px 54px rgb(15 39 65 / 16%);
}

.blog-section-visual::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 3%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px);
  background-size: 2rem 2rem;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 45%, #000);
}

.blog-section-visual__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 2.6rem);
}

.blog-section-visual__copy > span {
  align-self: flex-start;
  padding: 0.35rem 0.62rem;
  color: #83edbd;
  background: rgb(5 150 105 / 14%);
  border: 1px solid rgb(131 237 189 / 20%);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-section-visual__copy strong {
  max-width: 22ch;
  margin-top: 1.1rem;
  font-family: Outfit, Manrope, sans-serif;
  font-size: clamp(1.4rem, 3.2vw, 2.15rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.blog-section-visual__copy small {
  margin-top: 1rem;
  color: #91a8b8;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-section-visual__diagram {
  position: relative;
  z-index: 2;
  min-height: 20rem;
  overflow: hidden;
}

.blog-section-visual__diagram svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 0.7rem rgb(5 150 105 / 20%));
}

.blog-section-visual__path {
  fill: none;
  stroke-linecap: round;
  stroke-width: 5;
}

.blog-section-visual__path--main {
  stroke: #39d89a;
}

.blog-section-visual__path--soft {
  stroke: #8c73ff;
  stroke-dasharray: 10 12;
  opacity: 0.6;
}

.blog-section-visual__diagram circle {
  fill: #ff846f;
  stroke: #ffd0c8;
  stroke-width: 2;
}

.blog-section-visual__node {
  position: absolute;
  z-index: 3;
  width: 4.7rem;
  height: 4.7rem;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 14%), transparent),
    #18384a;
  border: 1px solid rgb(131 237 189 / 28%);
  border-radius: 1.1rem;
  box-shadow: 0 18px 34px rgb(0 0 0 / 24%), inset 0 0 0 0.45rem rgb(5 150 105 / 6%);
}

.blog-section-visual__node::before,
.blog-section-visual__node::after {
  position: absolute;
  content: "";
}

.blog-section-visual__node::before {
  top: 1.05rem;
  right: 0.8rem;
  left: 0.8rem;
  height: 0.65rem;
  background: #52e2a6;
  border-radius: 0.35rem;
  opacity: 0.85;
}

.blog-section-visual__node::after {
  right: 0.8rem;
  bottom: 1rem;
  left: 0.8rem;
  height: 0.28rem;
  background: #7894a6;
  border-radius: 999px;
  box-shadow: 0 -0.65rem 0 #7894a6;
  opacity: 0.65;
}

.blog-section-visual__node--a { top: 18%; left: 8%; }
.blog-section-visual__node--b { top: 57%; left: 28%; transform: scale(0.8); }
.blog-section-visual__node--c { top: 21%; right: 25%; transform: scale(0.88); }
.blog-section-visual__node--d { right: 7%; bottom: 16%; }

.blog-section-visual__badge {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 52%;
  min-width: 4.4rem;
  min-height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.8rem;
  color: #fff;
  background: linear-gradient(145deg, #087d61, #7357e8);
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 50%;
  box-shadow: 0 18px 40px rgb(0 0 0 / 32%);
  transform: translate(-50%, -50%);
}

.blog-section-visual__badge :is(i, b) {
  display: inline-flex;
  flex: 0 0 auto;
}

.blog-section-visual__badge i {
  width: 0.6rem;
  height: 0.6rem;
  background: #83edbd;
  border-radius: 50%;
}

.blog-section-visual__badge b {
  font-size: 1rem;
  line-height: 1;
}

.blog-section-visual--compare .blog-section-visual__node--a {
  top: 31%;
  left: 9%;
  width: 6rem;
  height: 7rem;
}

.blog-section-visual--compare .blog-section-visual__node--d {
  right: 9%;
  bottom: 31%;
  width: 6rem;
  height: 7rem;
}

.blog-section-visual--timeline .blog-section-visual__node {
  top: 39%;
  transform: scale(0.72);
}

.blog-section-visual--timeline .blog-section-visual__node--a { left: 4%; }
.blog-section-visual--timeline .blog-section-visual__node--b { left: 29%; }
.blog-section-visual--timeline .blog-section-visual__node--c { right: 29%; }
.blog-section-visual--timeline .blog-section-visual__node--d { right: 4%; }

.blog-section-visual--diagnostic .blog-section-visual__node--c {
  border-color: rgb(255 132 111 / 70%);
  box-shadow: 0 0 2rem rgb(255 95 79 / 25%);
}

.blog-section-visual--diagnostic .blog-section-visual__node--c::before {
  background: #ff846f;
}

.blog-section-visual--gauge .blog-section-visual__badge {
  width: 7.5rem;
  height: 7.5rem;
  border: 0.7rem solid rgb(131 237 189 / 16%);
}

.blog-section-visual--checklist .blog-section-visual__badge {
  width: auto;
  min-width: 5.8rem;
  border-radius: 1.2rem;
}

.blog-section-visual > figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.blog-section-image {
  margin: clamp(1.4rem, 4vw, 2.25rem) 0 clamp(1.7rem, 4vw, 2.6rem);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgb(13 20 36 / 9%);
  border-radius: clamp(1rem, 2vw, 1.5rem);
  box-shadow: 0 22px 52px rgb(15 39 65 / 13%);
}

.blog-section-image picture,
.blog-section-image img {
  width: 100%;
  display: block;
}

.blog-section-image img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-section-image figcaption {
  padding: 0.8rem 1rem;
  color: var(--blog-ink-muted);
  background: rgb(255 255 255 / 96%);
  border-top: 1px solid var(--blog-line);
  font-size: 0.83rem;
  line-height: 1.5;
}

.blog-figure picture,
.blog-figure img,
.blog-article figure picture,
.blog-article figure img {
  width: 100%;
}

.blog-figure img,
.blog-article figure img {
  height: auto;
  background: var(--blog-surface-tint);
  border: 1px solid var(--blog-line);
  border-radius: var(--blog-radius-lg);
  box-shadow: var(--blog-shadow-sm);
}

.blog-figure figcaption,
.blog-article figcaption {
  max-width: 64ch;
  margin: 0.75rem auto 0;
  color: var(--blog-ink-muted);
  font-size: 0.84rem;
  line-height: 1.55;
  text-align: center;
  overflow-wrap: anywhere;
}

.blog-faq {
  margin: 2rem 0;
}

.blog-faq details {
  background: var(--blog-surface);
  border: 1px solid var(--blog-line);
  border-radius: var(--blog-radius-sm);
}

.blog-faq details + details {
  margin-top: 0.65rem;
}

.blog-faq summary {
  min-height: 3rem;
  padding: 0.8rem 1rem;
  color: var(--blog-ink);
  cursor: pointer;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.blog-faq summary::marker {
  color: var(--blog-violet-dark);
}

.blog-faq details[open] summary {
  border-bottom: 1px solid var(--blog-line);
}

.blog-faq details > :not(summary) {
  margin-inline: 1rem;
}

.blog-faq details > :last-child {
  margin-bottom: 1rem;
}

.blog-faq__answer > :first-child {
  margin-top: 1rem;
}

.blog-form-slot {
  margin: clamp(2rem, 5vw, 3.5rem) 0;
  padding: clamp(1.15rem, 3vw, 1.75rem);
  background: var(--blog-surface);
  border: 1px solid var(--blog-line-strong);
  border-radius: var(--blog-radius-md);
  box-shadow: var(--blog-shadow-sm);
}

.blog-form-slot > :first-child {
  margin-top: 0;
}

.blog-form-slot > :last-child {
  margin-bottom: 0;
}

.blog-form-slot__cta {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1rem;
  color: var(--blog-night);
  background: var(--blog-lime);
  border: 1px solid rgb(40 125 52 / 30%);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.blog-form-slot > .blog-form {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.blog-article__references {
  margin-top: clamp(3rem, 7vw, 5rem);
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
  border-top: 1px solid var(--blog-line-strong);
}

:is(ol, ul).blog-sources,
.blog-sources > :is(ol, ul),
:is(ol, ul).blog-source-list {
  margin: 1.25rem 0 0;
  padding-left: 1.4rem;
}

.blog-sources li + li,
.blog-source-list li + li {
  margin-top: 0.75rem;
}

.blog-form,
.blog-related {
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  padding: clamp(1.2rem, 4vw, 2rem);
  background: var(--blog-surface);
  border: 1px solid var(--blog-line);
  border-radius: var(--blog-radius-lg);
  box-shadow: var(--blog-shadow-sm);
}

.blog-form {
  background:
    radial-gradient(circle at 100% 0, rgb(140 255 122 / 18%), transparent 14rem),
    var(--blog-surface);
}

.blog-form label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--blog-ink-soft);
  font-size: 0.86rem;
  font-weight: 750;
}

.blog-form :where(input, textarea, select) {
  width: 100%;
  min-height: 2.85rem;
  padding: 0.7rem 0.8rem;
  color: var(--blog-ink);
  background: #fff;
  border: 1px solid var(--blog-line-strong);
  border-radius: 0.7rem;
}

.blog-form textarea {
  min-height: 7rem;
  resize: vertical;
}

.blog-lead-form__header :where(h3, p),
.blog-related__heading :where(h2, p) {
  margin: 0;
}

.blog-lead-form__header h3,
.blog-related__heading h2 {
  color: var(--blog-ink);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.blog-lead-form__header p {
  max-width: 50rem;
  margin-top: 0.55rem;
  color: var(--blog-ink-soft);
  line-height: 1.65;
}

.blog-lead-form__fields {
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
}

.blog-lead-form__field {
  min-width: 0;
}

.blog-lead-form__contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.blog-lead-form__hint {
  margin: 0;
  color: var(--blog-ink-muted);
  font-size: 0.84rem;
}

.blog-form :where(input, textarea):focus {
  border-color: rgb(117 87 255 / 65%);
  box-shadow: 0 0 0 0.22rem rgb(117 87 255 / 12%);
  outline: 0;
}

.blog-lead-form__consent {
  display: grid;
  grid-template-columns: 1.2rem minmax(0, 1fr);
  align-items: start;
  gap: 0.65rem;
  margin-top: 1rem;
}

.blog-form .blog-lead-form__consent input[type="checkbox"] {
  width: 1.15rem;
  min-height: 1.15rem;
  height: 1.15rem;
  margin: 0.12rem 0 0;
  padding: 0;
  border-radius: 0.25rem;
  accent-color: var(--blog-violet-dark);
}

.blog-form .blog-lead-form__consent label {
  margin: 0;
  color: var(--blog-ink-soft);
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.5;
}

.blog-lead-form__submit {
  margin-top: 1.15rem;
  cursor: pointer;
}

.blog-lead-form__submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.blog-lead-form__status {
  min-height: 1.5rem;
  margin: 0.75rem 0 0;
  color: var(--blog-ink-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.blog-lead-form__status[data-state="success"] {
  color: #236628;
}

.blog-lead-form__status[data-state="error"] {
  color: #a52727;
}

.blog-related {
  width: min(100%, var(--blog-content));
  margin-inline: auto;
}

.blog-related__heading {
  margin-bottom: clamp(1.1rem, 3vw, 1.8rem);
}

.blog-related__heading .blog-kicker {
  margin-bottom: 0.25rem;
  color: var(--blog-violet-dark);
}

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

.blog-not-found {
  max-width: 42rem;
  margin: clamp(2rem, 8vw, 7rem) auto;
  padding: clamp(1.5rem, 5vw, 3rem);
  text-align: center;
  background: var(--blog-surface);
  border: 1px solid var(--blog-line);
  border-radius: var(--blog-radius-lg);
  box-shadow: var(--blog-shadow-lg);
}

@keyframes blog-spin {
  to {
    transform: rotate(1turn);
  }
}

@media (max-width: 62rem) {
  .blog-hero__grid,
  .blog-article__header {
    grid-template-columns: minmax(0, 1fr);
  }

  .blog-hero__preview,
  .blog-article .blog-article__hero-media {
    width: min(100%, 38rem);
  }

  .blog-hero__preview {
    margin-inline: auto;
  }

  .blog-shell__list,
  [data-blog-grid],
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 44rem) {
  html {
    scroll-padding-top: 8rem;
  }

  .blog-hero__stats {
    grid-template-columns: 1fr;
    margin-top: 2.2rem;
  }

  .blog-listing__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .blog-shell__main {
    width: min(100% - 1.25rem, var(--blog-content));
    padding-block: 1.75rem 3.5rem;
  }

  .blog-shell__main > header:not(.blog-hero) {
    padding: 1.4rem;
    border-radius: 1.3rem;
  }

  .blog-hero {
    min-height: auto;
    margin-top: -1.75rem;
    padding: 2.15rem 1.25rem 3rem;
  }

  .blog-hero__grid {
    gap: 1.8rem;
  }

  .blog-hero__badges {
    gap: 0.5rem;
    margin-bottom: 1.8rem;
  }

  .blog-hero__badges > span {
    min-height: 2.2rem;
    padding: 0.45rem 0.68rem;
    font-size: 0.61rem;
  }

  .blog-hero__title {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }

  .blog-hero__title > span,
  .blog-hero__lead {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .blog-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .blog-hero__button {
    width: 100%;
    min-width: 0;
  }

  .blog-hero__preview {
    padding: 0 0 3rem;
  }

  .blog-hero__preview-note {
    right: -0.35rem;
    left: 0.75rem;
    min-height: 5.5rem;
    padding: 0.9rem 1rem;
  }

  .blog-brand-hero__pearl {
    display: none;
  }

  .blog-breadcrumbs [aria-current="page"] {
    max-width: 65vw;
  }

  .blog-article__breadcrumbs {
    padding: 0.65rem 0.75rem;
    font-size: 0.76rem;
  }

  .blog-article__breadcrumbs [aria-current="page"] {
    max-width: 42vw;
  }

  .blog-article__header {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
    min-height: auto;
    padding: 2.15rem 1.25rem 3rem;
  }

  .blog-article__title {
    max-width: none;
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .blog-article__meta {
    grid-template-columns: minmax(0, 1fr);
    align-items: flex-start;
  }

  .blog-article .blog-article__hero-media figcaption {
    text-align: left;
  }

  .blog-article__intro {
    padding-left: 1rem;
  }

  .blog-section-visual {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    border-radius: 1.15rem;
  }

  .blog-section-visual__copy {
    padding: 1.35rem 1.25rem 0.4rem;
  }

  .blog-section-visual__copy strong {
    max-width: none;
    font-size: clamp(1.35rem, 7vw, 1.8rem);
  }

  .blog-section-visual__diagram {
    min-height: 15rem;
  }

  .blog-section-image img {
    aspect-ratio: 4 / 3;
  }

  .blog-section-visual__node {
    transform: scale(0.72);
  }

  .blog-section-visual--compare .blog-section-visual__node--a,
  .blog-section-visual--compare .blog-section-visual__node--d {
    width: 4.7rem;
    height: 5.6rem;
  }

  .blog-shell__list,
  [data-blog-grid],
  .blog-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .blog-lead-form__contact-grid,
  .blog-related__grid.blog-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .blog-shell__card:hover,
  .blog-shell__card:focus-within,
  .blog-card:hover,
  .blog-card:focus-within {
    transform: none;
  }

  .blog-toc :is(ol, ul),
  :is(ol, ul).blog-shell__toc {
    columns: 1;
  }

  .blog-toc,
  .blog-shell__toc {
    padding: 1rem 1.15rem;
  }

  .blog-article__section + .blog-article__section {
    padding-top: 2.5rem;
  }

  .blog-table-region,
  .blog-table-wrap {
    border-radius: var(--blog-radius-sm);
  }

  .blog-pagination,
  [data-blog-pagination],
  .blog-shell__list + nav {
    justify-content: flex-start;
  }

  [data-blog-load-more],
  .blog-load-more__button,
  .blog-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .blog-card__media img,
  .blog-shell__card,
  .blog-card,
  [data-blog-load-more],
  .blog-load-more__button {
    transform: none !important;
  }
}

@media (forced-colors: active) {
  .blog-shell__card,
  .blog-card,
  .blog-form,
  .blog-related,
  .blog-shell__toc,
  .blog-toc,
  .blog-article__header,
  .blog-table-region,
  .blog-table-wrap,
  .blog-callout,
  .blog-faq details,
  .blog-form-slot {
    border: 1px solid CanvasText;
  }

  .blog-article__header {
    color: CanvasText;
    background: Canvas;
  }

  .blog-article__lead,
  .blog-article__meta,
  .blog-article .blog-article__hero-media figcaption {
    color: CanvasText;
  }

  .blog-article__meta :is(dt, dd),
  .blog-article__taxonomy-label {
    color: CanvasText;
  }

  .blog-article__taxonomy > li,
  .blog-article__taxonomy :is(ul, ol) > li {
    color: CanvasText;
    background: Canvas;
    border: 1px solid CanvasText;
  }

  .blog-checklist > li::before,
  .blog-checklist > :is(ul, ol) > li::before,
  .blog-checklist__marker {
    color: CanvasText;
    background: Canvas;
    border-color: CanvasText;
  }

  [data-blog-load-more],
  .blog-button {
    border: 2px solid ButtonText;
  }
}

@media print {
  @page {
    margin: 1.5cm;
  }

  body {
    display: block;
    color: #000;
    background: #fff;
  }

  .blog-shell__header,
  .blog-shell__footer,
  .blog-skip-link,
  .blog-toc,
  .blog-shell__toc,
  .blog-pagination,
  [data-blog-pagination],
  [data-blog-load-more],
  .blog-load-more__button,
  .blog-form-slot,
  .blog-form,
  .blog-related {
    display: none !important;
  }

  .blog-shell__main,
  .blog-shell__main > article,
  .blog-article {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .blog-breadcrumbs,
  .blog-article__content,
  .blog-article__references,
  .blog-article__intro {
    width: 100%;
    max-width: none;
  }

  .blog-article__header {
    display: block;
    margin-bottom: 1cm;
    padding: 0;
    color: #000;
    background: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .blog-article__title,
  .blog-article__lead,
  .blog-article__meta,
  .blog-article .blog-article__hero-media figcaption {
    color: #000;
  }

  .blog-article__meta :is(dt, dd),
  .blog-article__taxonomy-label {
    color: #000;
  }

  .blog-article__taxonomy > li,
  .blog-article__taxonomy :is(ul, ol) > li {
    color: #000;
    background: none;
    border-color: #777;
  }

  .blog-article .blog-article__hero-media {
    margin-top: 0.7cm;
  }

  .blog-article .blog-article__hero-media img,
  .blog-figure img,
  .blog-article figure img {
    background: none;
    border-color: #aaa;
    box-shadow: none;
  }

  .blog-article__section {
    break-inside: auto;
    padding-top: 0.8cm;
  }

  .blog-article__section + .blog-article__section {
    margin-top: 0.8cm;
  }

  .blog-article :is(h1, h2, h3) {
    color: #000;
    break-after: avoid-page;
  }

  .blog-figure,
  .blog-callout,
  .blog-checklist,
  .blog-table-region,
  .blog-table-wrap,
  .blog-faq details {
    break-inside: avoid-page;
  }

  .blog-table-region,
  .blog-table-wrap {
    overflow: visible;
    border-color: #777;
    border-radius: 0;
    box-shadow: none;
  }

  .blog-table,
  .blog-table-region table,
  .blog-table-wrap table {
    min-width: 0;
    font-size: 9pt;
  }

  .blog-table :is(th, td),
  .blog-table-region :is(th, td),
  .blog-table-wrap :is(th, td) {
    padding: 0.35cm;
    border-color: #999;
  }

  .blog-callout,
  .blog-faq details {
    background: none;
    box-shadow: none;
  }

  .blog-faq details > :not(summary) {
    display: block !important;
  }

  .blog-prose,
  .blog-article__content :is(p, li) {
    color: #000;
    orphans: 3;
    widows: 3;
  }

  a {
    color: #000;
  }
}
