.lp-blog-page {
  padding-top: 0;
}

/* Blog list + detail: grid header spans full viewport width */
.lp-blog-header-section,
.lp-blog-article-section {
  position: relative;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}

.lp-blog-header-section {
  overflow: hidden;
}

/* overflow-y must stay visible so the sidebar promo can stick on scroll */
.lp-blog-article-section {
  overflow-x: clip;
  overflow-y: visible;
}

.lp-blog-header-section.lp-section--pad-lg,
.lp-blog-article-section.lp-section--pad-lg {
  padding-top: 0;
}

.lp-blog-header-section.lp-section--pad-lg {
  padding-bottom: clamp(32px, 4vw, 48px);
}

.lp-blog-article-section.lp-section--pad-lg {
  padding-bottom: clamp(32px, 4vw, 48px);
}

.lp-blog-featured-section.lp-section--pad-lg {
  padding-top: clamp(40px, 5vw, 56px);
  padding-bottom: clamp(24px, 3vw, 36px);
}

.lp-blog-page .lp-blog-header-inner.lp-blog-index-hero {
  max-width: 1440px;
  padding: clamp(28px, 4vw, 48px) var(--lp-pad-x) clamp(36px, 4.5vw, 56px);
}

/* Archive / filtered index (no featured aside): same shell as index, full width (no tight copy column) */
.lp-blog-page .lp-blog-index-hero:not(.lp-mkt-hero-split) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.lp-blog-page .lp-blog-index-hero:not(.lp-mkt-hero-split) .lp-section-intro,
.lp-blog-page .lp-blog-index-hero:not(.lp-mkt-hero-split) .lp-mkt-hero-children {
  width: 100%;
  min-width: 0;
}

/* Split hero keeps a tight copy measure; archive uses the full shell width */
.lp-blog-index-hero .lp-headline {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  max-width: 560px;
}

.lp-blog-index-hero:not(.lp-mkt-hero-split) .lp-headline {
  max-width: none;
}

.lp-blog-index-hero .lp-subhead {
  max-width: 480px;
  margin-top: 16px;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.55;
}

.lp-blog-index-hero:not(.lp-mkt-hero-split) .lp-subhead {
  max-width: none;
}

.lp-blog-index-hero .lp-blog-filter {
  margin-top: clamp(20px, 2.5vw, 28px);
}

.lp-blog-index-hero .lp-mkt-hero-split-aside .lp-blog-featured-card {
  height: 100%;
}

.lp-blog-page .lp-blog-index-hero.lp-mkt-hero-split {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 560px);
  gap: clamp(40px, 5vw, 72px);
}

@media (max-width: 1024px) {
  .lp-blog-page .lp-blog-index-hero.lp-mkt-hero-split .lp-mkt-hero-split-aside {
    max-width: none;
  }
}

@media (max-width: 900px) {
  .lp-blog-page .lp-blog-index-hero.lp-mkt-hero-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .lp-blog-index-hero .lp-headline,
  .lp-blog-index-hero .lp-subhead,
  .lp-blog-index-hero .lp-blog-filter {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
}

.lp-blog-list-section.lp-section--pad-lg {
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(64px, 8vw, 96px);
}

/* Homepage teaser strip */
.lp-recent-blog-section .lp-recent-blog-head {
  max-width: 820px;
  margin-bottom: 8px;
}

.lp-recent-blog-section .lp-recent-blog-head .lp-headline {
  margin-bottom: 8px;
}

.lp-recent-blog-section .lp-recent-blog-head .lp-subhead {
  max-width: none;
}

.lp-recent-blog-section .lp-blog-grid-wrap {
  margin-top: 32px;
}

.lp-recent-blog-section .lp-recent-blog-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(22, 163, 74, 0.22);
  background: var(--white);
  color: var(--green);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

.lp-recent-blog-section .lp-recent-blog-cta:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.lp-recent-blog-section .lp-blog-card {
  min-height: 0;
  padding: 20px;
  gap: 12px;
}

.lp-recent-blog-section .lp-blog-card--has-cover {
  padding-top: 0;
}

.lp-recent-blog-section .lp-blog-card-cover-wrap {
  margin-inline: -20px;
}

.lp-recent-blog-section .lp-blog-card-title {
  font-size: 15px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lp-recent-blog-section .lp-blog-card-excerpt {
  font-size: 13px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lp-recent-blog-section .lp-blog-card-footer {
  padding-top: 8px;
  gap: 8px;
}

.lp-blog-list-section .lp-blog-grid-wrap {
  margin-top: 0;
}

.lp-blog-related-section.lp-section--pad-lg {
  padding-top: clamp(48px, 6vw, 72px);
}

.lp-blog-header-section .lp-section-inner,
.lp-blog-article-section .lp-section-inner {
  position: relative;
  z-index: 1;
  max-width: none;
  width: 100%;
  margin: 0;
}

.lp-blog-article-section .lp-section-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lp-blog-header-band {
  position: relative;
  overflow: hidden;
  width: 100%;
  /* Dot texture fills full band behind fixed nav (same pattern as .lp-hero) */
  padding-top: var(--lp-chrome-height);
  background: var(--white);
  background-image: var(--arion-dot-bg);
  background-size: var(--arion-dot-bg-size);
}

.lp-blog-header-inner {
  position: relative;
  z-index: 1;
  max-width: var(--lp-content-max);
  margin-left: auto;
  margin-right: auto;
  padding: clamp(28px, 4vw, 48px) var(--lp-pad-x) 0;
  width: 100%;
}

.lp-blog-article-section .lp-blog-header-band .lp-blog-header-fade {
  height: min(160px, 38%);
}

.lp-blog-article-section .lp-blog-prose.lp-blog-editorial {
  padding-left: 0;
  padding-right: 0;
}

/* Blog detail: match blog list page shell (index hero = 1440px + pad-x) */
.lp-blog-detail {
  --lp-blog-detail-width: 1440px;
}

@media (prefers-reduced-motion: no-preference) {
  html:has(.lp-blog-detail) {
    scroll-behavior: smooth;
  }
}

.lp-blog-heading-anchor {
  scroll-margin-top: calc(var(--lp-nav-height) + 24px);
}

.lp-blog-detail .lp-blog-header-inner,
.lp-blog-detail .lp-blog-article-layout,
.lp-blog-detail .lp-blog-related-section .lp-section-inner {
  width: 100%;
  max-width: var(--lp-blog-detail-width);
  margin-inline: auto;
  padding-inline: var(--lp-pad-x);
}

.lp-blog-detail .lp-blog-related-section {
  padding-left: 0;
  padding-right: 0;
}

.lp-blog-detail .lp-blog-article-layout {
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 56px);
  /* pad-x comes from the detail rule above; don't stack base layout padding */
  padding-left: var(--lp-pad-x);
  padding-right: var(--lp-pad-x);
}

.lp-blog-article-layout {
  max-width: var(--lp-content-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--lp-pad-x);
  padding-right: var(--lp-pad-x);
  width: 100%;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

.lp-blog-article-header-wrap {
  box-sizing: border-box;
}

.lp-blog-article-body.lp-blog-article-layout {
  padding-top: clamp(28px, 3.5vw, 40px);
  padding-bottom: clamp(24px, 3vw, 40px);
}

.lp-blog-article-body .lp-blog-editorial {
  max-width: none;
  margin: 0;
}

.lp-blog-article-section .lp-blog-article-lead {
  max-width: none;
}

.lp-blog-sidebar {
  position: sticky;
  top: calc(var(--lp-nav-height) + 24px);
  align-self: start;
  height: fit-content;
}

.lp-blog-sidebar-sticky {
  margin-top: clamp(24px, 3vw, 34px);
}

.lp-blog-toc {
  color: var(--gray-700);
}

.lp-blog-toc-title {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--gray-500);
}

.lp-blog-toc-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0 0 0 18px;
  list-style: none;
}

.lp-blog-toc-list::before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 0;
  width: 1px;
  background: var(--gray-200);
}

.lp-blog-toc-item {
  margin: 0;
}

.lp-blog-toc-link {
  position: relative;
  display: block;
  padding: 5px 0 5px 12px;
  color: var(--gray-600);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.18s ease;
}

.lp-blog-toc-item--nested .lp-blog-toc-link {
  padding-left: 24px;
  font-size: 12px;
  color: var(--gray-500);
}

.lp-blog-toc-link::before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: -18px;
  width: 2px;
  background: transparent;
}

.lp-blog-toc-link:hover {
  color: var(--black);
}

.lp-blog-toc-link:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 6px;
}

.lp-blog-toc-link--active,
.lp-blog-toc-item--nested .lp-blog-toc-link--active {
  color: var(--accent);
  font-weight: 700;
}

.lp-blog-toc-link--active::before {
  background: var(--accent);
}

.lp-blog-sidebar-promo {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(22, 163, 74, 0.07), rgba(255, 255, 255, 0) 42%),
    var(--white);
  border: 1px solid rgba(22, 163, 74, 0.22);
  border-radius: 16px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  box-shadow: 0 14px 36px rgba(17, 24, 39, 0.06);
}

.lp-blog-sidebar-promo::before {
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
  opacity: 0.45;
}

.lp-blog-sidebar-promo-mark {
  line-height: 0;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(22, 163, 74, 0.16);
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.06);
}

.lp-blog-sidebar-promo-headline {
  margin: 0;
  font-size: clamp(19px, 1.7vw, 24px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--black);
  max-width: 270px;
}

.lp-blog-sidebar-promo-sub {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--gray-700);
  max-width: 270px;
}

.lp-blog-sidebar-promo-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
  width: 100%;
  max-width: 210px;
}

.lp-blog-sidebar-promo-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  width: 100%;
  border: 1px solid var(--green);
  border-radius: 10px;
  background: var(--green);
  text-align: center;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  padding: 8px 14px;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(22, 163, 74, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lp-blog-sidebar-promo-wa:hover {
  color: var(--white);
  background: #0f7a38;
  transform: translateY(-1px);
  box-shadow: 0 13px 26px rgba(22, 163, 74, 0.24);
}

/* Article share — inline (mobile) + sidebar (under Tanya dulu) */
.lp-blog-share-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 4px;
}

.lp-blog-share-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(22, 163, 74, 0.14);
}

.lp-blog-share-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-family: var(--font-mono);
}

.lp-blog-share-actions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.lp-blog-share-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.lp-blog-share-btn:hover {
  background: var(--off-white);
  border-color: var(--gray-500);
}

.lp-blog-share-btn:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.lp-blog-share-btn--wa {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(22, 163, 74, 0.18);
}

.lp-blog-share-btn--wa:hover {
  background: #0f7a38;
  border-color: #0f7a38;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(22, 163, 74, 0.24);
}

/* Desktop: share lives in sticky sidebar; hide header inline row */
@media (min-width: 1025px) {
  .lp-blog-share-inline-wrap {
    display: none;
  }
}

/* Featured + related sections: dot texture with edge fades */
.lp-blog-grid-section {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.lp-blog-grid-section .lp-section-inner {
  position: static;
  z-index: 1;
}

.lp-blog-grid-section-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.lp-blog-grid-section .lp-blog-featured-card,
.lp-blog-grid-section .lp-section-intro,
.lp-blog-grid-section .lp-blog-grid-wrap,
.lp-blog-grid-section .lp-blog-empty {
  position: relative;
  z-index: 1;
}

.lp-blog-grid-section-grid {
  position: absolute;
  inset: 0;
  background-color: var(--white);
  background-image: var(--arion-dot-bg);
  background-size: var(--arion-dot-bg-size);
}

.lp-blog-grid-section-fade {
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}

.lp-blog-grid-section-fade--top {
  top: 0;
  height: min(42%, 220px);
  background: linear-gradient(to bottom, var(--white) 0%, rgba(255, 255, 255, 0.92) 42%, rgba(255, 255, 255, 0) 100%);
}

.lp-blog-grid-section-fade--bottom {
  bottom: 0;
  height: min(48%, 260px);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.92) 48%, var(--white) 100%);
}

.lp-blog-grid-section-decor--connect-top .lp-blog-grid-section-fade--top {
  height: min(28%, 140px);
  background: linear-gradient(to bottom, var(--white) 0%, rgba(255, 255, 255, 0.75) 55%, rgba(255, 255, 255, 0) 100%);
}

.lp-blog-header-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(120px, 32%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 100%);
  pointer-events: none;
  z-index: 0;
}

.lp-blog-header-radial {
  position: absolute;
  right: -200px;
  bottom: -200px;
  width: min(900px, 90vw);
  height: min(900px, 90vw);
  background: radial-gradient(circle at center, var(--off-white) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.lp-blog-intro {
  width: 100%;
}

.lp-blog-featured-card .lp-headline a {
  color: inherit;
  text-decoration: none;
}

.lp-blog-featured-card .lp-headline a:hover {
  color: var(--black);
}

.lp-blog-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 6px;
  row-gap: 10px;
  margin-top: 24px;
}

.lp-blog-filter--industry {
  margin-top: 8px;
}

.lp-blog-filter .lp-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}

.lp-blog-filter .lp-chip-dot {
  width: 5px;
  height: 5px;
}

.lp-blog-filter .lp-chip--accent {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.lp-blog-filter .lp-chip--accent .lp-chip-dot {
  background: var(--white);
}

.lp-blog-filter .lp-chip--empty {
  opacity: 0.62;
}

.lp-blog-filter .lp-chip--empty.lp-chip--accent {
  opacity: 1;
}

.lp-blog-filter .lp-chip--more {
  border: 1px dashed var(--gray-300);
  background: transparent;
  color: var(--gray-700);
  cursor: pointer;
  font-family: inherit;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}

.lp-blog-filter .lp-chip--more:hover,
.lp-blog-filter .lp-chip--more-open {
  border-color: var(--gray-500);
  color: var(--black);
  background: var(--off-white);
}

.lp-blog-index-hero .lp-blog-filter--industry {
  margin-top: 8px;
}

.lp-blog-empty-block {
  margin-top: 48px;
  max-width: 520px;
}

.lp-blog-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 440px;
  margin: clamp(24px, 4vw, 48px) auto;
  padding: clamp(28px, 4vw, 40px) 20px;
  gap: 14px;
}

.lp-blog-empty-state-visual {
  position: relative;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  margin-bottom: 4px;
}

.lp-blog-empty-state-visual-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: var(--white);
  background-image: var(--arion-dot-bg);
  background-size: var(--arion-dot-bg-size);
  box-shadow: inset 0 0 0 1px var(--gray-200);
}

.lp-blog-empty-state-visual-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at 50% 45%,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.55) 48%,
    transparent 72%
  );
  pointer-events: none;
}

.lp-blog-empty-state-icon {
  position: relative;
  z-index: 1;
}

.lp-blog-empty-state-title {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--black);
}

.lp-blog-empty-state-body {
  margin: 0;
  color: var(--gray-500);
  font-size: 15px;
  line-height: 1.6;
  text-wrap: balance;
}

.lp-blog-empty-state-cta {
  margin-top: 8px;
  font-family: var(--font-jb-mono), ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--black);
}

.lp-blog-empty-state-cta:hover {
  color: var(--green);
}

.lp-blog-editorial {
  max-width: 880px;
  margin: 0 auto;
  width: 100%;
}

.lp-blog-grid-wrap {
  margin-top: 48px;
}

.lp-blog-load-sentinel {
  height: 1px;
  width: 100%;
}

.lp-blog-crawl-link {
  margin: 24px auto 0;
  width: fit-content;
}

.lp-blog-loading-more {
  margin: 24px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  font-size: 14px;
  color: var(--gray-500);
}

.lp-blog-loading-more[hidden] {
  display: none !important;
}

/* ArionLoader (duo) — pathLength sweep, mirrors Framer pathLength 0→1 */
.arion-loader__sweep {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: arion-loader-sweep 1.75s ease-in-out infinite;
}

@keyframes arion-loader-sweep {
  0% {
    stroke-dashoffset: 1;
  }
  80% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .arion-loader__base {
    display: none;
  }

  .arion-loader__sweep {
    animation: none;
    stroke-dasharray: none;
    stroke-dashoffset: 0;
  }
}

.lp-blog-pager {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lp-blog-pager-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: var(--radius-md, 12px);
  border: 1px solid var(--gray-200);
  color: var(--black);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.lp-blog-pager-page {
  font-size: 13px;
  color: var(--gray-500);
}

.lp-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 32px);
}

.lp-blog-grid > * {
  min-width: 0;
}

.lp-blog-grid--related {
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

.lp-blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}

.lp-section--surface .lp-blog-card {
  background: var(--white);
}

.lp-blog-card--has-cover {
  padding-top: 0;
  overflow: hidden;
}

.lp-blog-card-cover-wrap {
  display: block;
  margin-inline: -32px;
  text-decoration: none;
}

.lp-blog-card-cover-wrap--featured {
  margin: clamp(-48px, -4vw, -32px) clamp(-48px, -4vw, -32px) 0;
}

.lp-blog-card-cover {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--gray-100);
}

.lp-blog-card-cover__img,
.lp-blog-article-cover__img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.lp-blog-article-cover-wrap {
  margin-bottom: clamp(24px, 3vw, 32px);
}

.lp-blog-article-cover {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--gray-100);
  border-radius: 16px;
  border: 1px solid var(--gray-200);
}

.lp-blog-cover-placeholder {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  background: var(--white);
}

.lp-blog-cover-placeholder-grid {
  position: absolute;
  inset: 0;
  background-color: var(--white);
  background-image: var(--arion-dot-bg);
  background-size: var(--arion-dot-bg-size);
}

.lp-blog-cover-placeholder-fade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 75% at 50% 50%, var(--white) 0%, rgba(255, 255, 255, 0.92) 42%, transparent 72%),
    linear-gradient(to bottom, var(--white) 0%, transparent 22%),
    linear-gradient(to top, var(--white) 0%, transparent 18%),
    linear-gradient(to right, var(--white) 0%, transparent 14%),
    linear-gradient(to left, var(--white) 0%, transparent 14%);
  pointer-events: none;
}

.lp-blog-cover-placeholder-mark {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  opacity: 0.38;
  pointer-events: none;
}

/* Featured highlight: wider ratio so cover height stays proportional on large cards */
.lp-blog-card-cover-wrap--featured .lp-blog-card-cover {
  aspect-ratio: 21 / 9;
}

.lp-blog-card-cat {
  align-self: flex-start;
  text-decoration: none;
}

.lp-blog-card-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.lp-blog-card-title a {
  color: inherit;
  text-decoration: none;
}

.lp-blog-card-title a:hover {
  color: var(--black);
}

.lp-blog-card-excerpt {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.lp-blog-card-footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-blog-card-link {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: rgba(31, 138, 91, 0.28);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.lp-blog-card-link:hover {
  color: #0f7a38;
  text-decoration-color: currentColor;
}

.lp-blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
  font-family: var(--font-jb-mono), ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.lp-blog-meta--inline {
  margin-top: 8px;
}

.lp-blog-grid--related .lp-blog-card {
  min-height: 0;
  padding: 20px;
  gap: 12px;
}

.lp-blog-grid--related .lp-blog-card--has-cover {
  padding-top: 0;
}

.lp-blog-grid--related .lp-blog-card-cover-wrap {
  margin-inline: -20px;
}

.lp-blog-grid--related .lp-blog-card-title {
  font-size: 15px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lp-blog-grid--related .lp-blog-card-excerpt {
  font-size: 13px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lp-blog-grid--related .lp-blog-card-footer {
  padding-top: 8px;
  gap: 8px;
}

.lp-blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.lp-blog-tags .lp-chip {
  text-decoration: none;
  color: inherit;
}

.lp-blog-featured-card {
  padding: clamp(32px, 4vw, 48px);
  min-height: 0;
  gap: clamp(20px, 2.5vw, 28px);
  box-shadow: 0 14px 36px rgba(17, 24, 39, 0.06);
}

.lp-blog-featured-card.lp-blog-card--has-cover {
  padding-top: 0;
}

.lp-blog-featured-card.lp-blog-card--has-cover > .lp-chip {
  margin-top: clamp(4px, 0.5vw, 8px);
}

.lp-blog-featured-card--hero {
  padding: 24px;
  gap: 14px;
  min-height: 0;
  box-shadow: 0 14px 36px rgba(17, 24, 39, 0.06);
}

.lp-blog-featured-card--hero.lp-blog-card--has-cover {
  padding-top: 0;
}

.lp-blog-featured-card--hero .lp-blog-card-cover-wrap {
  margin: -24px -24px 0;
}

.lp-blog-featured-card--hero .lp-blog-card-cover {
  aspect-ratio: 16 / 9;
}

.lp-blog-featured-card--hero .lp-blog-card-title {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.25;
}

.lp-blog-featured-card--hero .lp-subhead {
  margin: 0;
  max-width: none;
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lp-blog-featured-card--hero .lp-blog-card-footer {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding-top: 8px;
  margin-top: auto;
}

.lp-blog-featured-card--hero.lp-blog-card--has-cover > .lp-chip {
  margin-top: 2px;
}

.lp-blog-featured-card .lp-headline {
  max-width: none;
}

.lp-blog-featured-card .lp-subhead {
  max-width: 640px;
}

.lp-blog-featured-card .lp-blog-card-footer {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lp-blog-empty {
  color: var(--gray-500);
  font-size: 15px;
  line-height: 1.6;
}

.lp-blog-article-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}

.lp-blog-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  margin-left: -10px;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  font-family: var(--font-jb-mono), ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.lp-blog-back:hover {
  border-color: var(--gray-300);
  background: var(--off-white);
}

.lp-blog-back-icon {
  font-size: 14px;
  line-height: 1;
}

.lp-blog-breadcrumb {
  width: 100%;
}

.lp-blog-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-jb-mono), ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.lp-blog-breadcrumb-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.lp-blog-breadcrumb-list li:not(:last-child)::after {
  content: "/";
  color: var(--gray-300);
}

.lp-blog-breadcrumb-list a {
  color: var(--gray-600);
  text-decoration: none;
}

.lp-blog-breadcrumb-list a:hover {
  color: var(--black);
}

.lp-blog-breadcrumb-current span {
  color: var(--black);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: min(100%, 420px);
}

.lp-blog-article-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 0;
  min-width: 0;
}

.lp-blog-article-header .lp-headline,
.lp-blog-article-header h1 {
  max-width: none;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.lp-blog-article-lead {
  margin: 0;
  font-family: var(--font-open-sans), system-ui, sans-serif;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.6;
  color: var(--gray-600);
  max-width: 42em;
}

.lp-blog-article-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 0 0 40px;
}

.lp-blog-prose {
  margin-top: 0;
  font-family: var(--font-open-sans), system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  letter-spacing: -0.011em;
  font-feature-settings: "kern" 1, "liga" 1;
}

.lp-blog-prose h2,
.lp-blog-prose h3,
.lp-blog-prose p,
.lp-blog-prose li,
.lp-blog-prose blockquote {
  font-family: var(--font-open-sans), system-ui, sans-serif;
}

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

.lp-blog-prose h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  margin: 2.75em 0 0.75em;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--black);
}

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

.lp-blog-prose h3 {
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 700;
  margin: 2em 0 0.65em;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--black);
}

.lp-blog-prose ul,
.lp-blog-prose ol {
  margin: 0 0 1.5em;
  padding: 0;
}

.lp-blog-list {
  list-style: none;
  margin: 0 0 1.5em;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-blog-list > li {
  position: relative;
  margin: 0;
  display: block;
  padding: 14px 16px 14px 50px;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  background: var(--off-white);
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-700);
}

.lp-blog-list-body {
  min-width: 0;
  overflow-wrap: break-word;
}

/* Lead label (**Name** ...) stacks above long copy so wraps stay readable */
.lp-blog-list-body > strong:first-child,
.lp-blog-list-body > p:first-child > strong:first-child,
.lp-blog-list > li > strong:first-child,
.lp-blog-list > li > p:first-child > strong:first-child {
  display: block;
  margin: 0 0 0.35em;
  line-height: 1.35;
  font-weight: 700;
  color: var(--black);
}

.lp-blog-list--checklist > li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 16px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background-color: rgba(22, 163, 74, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2316A34A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.lp-blog-list--ordered {
  counter-reset: blog-step;
}

.lp-blog-list--ordered > li {
  counter-increment: blog-step;
  padding-left: 58px;
  background: var(--white);
}

.lp-blog-list--ordered > li::before {
  content: counter(blog-step);
  position: absolute;
  left: 16px;
  top: 14px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  background: var(--off-white);
  font-family: var(--font-jb-mono), ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.lp-blog-list-body > p,
.lp-blog-list > li > p {
  margin: 0;
}

.lp-blog-list-body > p + p,
.lp-blog-list > li > p + p {
  margin-top: 0.5em;
}

.lp-blog-figure {
  margin: 2em 0 2.25em;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--off-white);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.lp-blog-figure img,
.lp-blog-figure-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
}

.lp-blog-figure-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 480px;
}

.lp-blog-figure-cover .progressive-image__placeholder,
.lp-blog-figure-cover .progressive-image__full {
  object-fit: cover;
}

.lp-blog-figure figcaption {
  margin: 0;
  padding: 12px 16px;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
  font-family: var(--font-jb-mono), ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
  line-height: 1.45;
}

.lp-blog-hero-cover-wrap {
  max-width: var(--lp-content-max);
  margin: 0 auto;
  padding: 0 var(--lp-pad-x);
}

/* Detail: single-column hero — title block, then cover above body */
.lp-blog-detail .lp-blog-article-divider {
  margin: clamp(24px, 3vw, 32px) 0 0;
}

.lp-blog-detail .lp-blog-article-nav {
  margin-bottom: clamp(22px, 2.5vw, 32px);
  padding-bottom: 0;
  border-bottom: 0;
  gap: 12px;
}

.lp-blog-detail .lp-blog-breadcrumb-current span {
  max-width: min(100%, 520px);
}

.lp-blog-detail .lp-blog-article-header .lp-blog-tags {
  margin-top: 4px;
}

.lp-blog-hero-cover {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 21 / 9;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
}

img.lp-blog-hero-cover,
.lp-blog-hero-cover .progressive-image__placeholder,
.lp-blog-hero-cover .progressive-image__full {
  object-fit: cover;
  border-radius: 16px;
}

img.lp-blog-card-cover {
  object-fit: cover;
}

.lp-blog-sidebar,
.lp-blog-related-section,
.lp-blog-deferred-cta {
  content-visibility: auto;
  contain-intrinsic-size: auto 640px;
}

.lp-blog-sidebar {
  contain-intrinsic-size: auto 360px;
}

.lp-blog-related-section {
  contain-intrinsic-size: auto 520px;
}

.lp-blog-deferred-cta {
  contain-intrinsic-size: auto 520px;
}

.lp-blog-photo-credits {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-500);
}

.lp-blog-photo-credits-title {
  margin: 0 0 10px;
  font-family: var(--font-jb-mono), ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.lp-blog-photo-credits-list {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lp-blog-photo-credits-list a {
  color: var(--gray-700);
  text-decoration: underline;
}

.lp-blog-photo-credits-list a:hover {
  color: var(--black);
}

.lp-blog-photo-credits-provider {
  margin: 0;
  font-family: var(--font-jb-mono), ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lp-blog-photo-credits-provider a {
  color: var(--gray-700);
  text-decoration: underline;
}

.lp-blog-photo-credits-provider a:hover {
  color: var(--black);
}

.lp-blog-seo-links {
  margin-top: clamp(40px, 5vw, 48px);
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid var(--gray-100);
}

.lp-blog-seo-links-eyebrow {
  margin: 0 0 8px;
  font-family: var(--font-jb-mono), ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.lp-blog-seo-links-title {
  margin: 0 0 16px;
  font-size: clamp(15px, 1.2vw, 16px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--black);
}

.lp-blog-seo-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.lp-blog-seo-links-item {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  background: var(--white);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--gray-700);
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.lp-blog-seo-links-item:hover {
  border-color: rgba(22, 163, 74, 0.35);
  color: var(--green);
  background: rgba(22, 163, 74, 0.04);
}

.lp-blog-code-inline {
  font-family: var(--font-jb-mono), ui-monospace, monospace;
  font-size: 0.88em;
  font-weight: 500;
  padding: 0.12em 0.4em;
  border-radius: 6px;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  color: var(--black);
}

.lp-blog-pre {
  margin: 1.5em 0;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  background: var(--off-white);
  overflow-x: auto;
  font-family: var(--font-jb-mono), ui-monospace, monospace;
  font-size: 13px;
  line-height: 1.6;
  color: var(--black);
}

.lp-blog-pre code {
  font-family: inherit;
  font-size: inherit;
  background: transparent;
  border: 0;
  padding: 0;
}

.lp-blog-prose p {
  margin: 0 0 1.35em;
}

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

.lp-blog-prose strong {
  font-weight: 700;
  color: var(--black);
}

.lp-blog-prose a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-weight: 600;
}

.lp-blog-assistant-link {
  display: inline;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-weight: 600;
  cursor: pointer;
}

.lp-blog-assistant-link:hover {
  color: #0f7a38;
}

.lp-blog-prose blockquote {
  margin: 1.75em 0;
  padding: 20px 24px;
  border-left: 3px solid var(--accent);
  background: var(--off-white);
  border-radius: 0 12px 12px 0;
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.65;
}

.lp-blog-prose blockquote p {
  margin-bottom: 0;
}

.lp-blog-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.75em 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--black);
  background: var(--white);
}

.lp-blog-prose th,
.lp-blog-prose td {
  border: 1px solid var(--gray-200);
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
}

.lp-blog-prose th {
  background: var(--off-white);
  font-weight: 700;
  color: var(--black);
}

/* WordPress Custom HTML / core table block wrappers */
.lp-blog-prose .wp-block-table,
.lp-blog-prose figure.wp-block-table {
  margin: 1.75em 0;
  padding: 0;
  border: 0;
  overflow-x: auto;
  background: transparent;
  box-shadow: none;
}

.lp-blog-prose .wp-block-table table,
.lp-blog-prose figure.wp-block-table table {
  width: 100%;
  min-width: 280px;
  border-collapse: collapse;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--black);
  background: var(--white);
  border: 0;
}

.lp-blog-prose .wp-block-table th,
.lp-blog-prose .wp-block-table td,
.lp-blog-prose figure.wp-block-table th,
.lp-blog-prose figure.wp-block-table td {
  border: 1px solid var(--gray-200);
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
  background: var(--white);
}

.lp-blog-prose .wp-block-table thead th,
.lp-blog-prose .wp-block-table th,
.lp-blog-prose figure.wp-block-table thead th,
.lp-blog-prose figure.wp-block-table th {
  background: var(--off-white);
  font-weight: 700;
  color: var(--black);
}

.lp-blog-prose .wp-block-table figcaption {
  margin-top: 8px;
  font-size: 12px;
  color: var(--gray-500);
}

.lp-blog-prose hr {
  border: 0;
  height: 1px;
  background: var(--gray-200);
  margin: 2.5em 0;
}

@media (max-width: 1024px) {
  .lp-blog-detail .lp-blog-header-inner,
  .lp-blog-detail .lp-blog-article-layout,
  .lp-blog-detail .lp-blog-related-section .lp-section-inner {
    width: 100%;
    max-width: 100%;
    padding-inline: var(--lp-pad-x);
  }

  .lp-blog-detail .lp-blog-related-section {
    padding-left: 0;
    padding-right: 0;
  }

  .lp-blog-detail .lp-blog-article-layout {
    grid-template-columns: 1fr;
  }

  .lp-blog-article-layout {
    grid-template-columns: 1fr;
  }

  .lp-blog-detail .lp-blog-article-main,
  .lp-blog-detail .lp-blog-prose {
    min-width: 0;
  }

  .lp-blog-sidebar {
    display: none;
  }
}

@media (max-width: 768px) {
  .lp-blog-detail .lp-blog-prose {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .lp-blog-editorial {
    max-width: 100%;
  }

  .lp-blog-article-lead {
    max-width: none;
  }

  .lp-blog-prose {
    font-size: 15px;
    line-height: 1.65;
  }
}

@media (max-width: 900px) {
  .lp-blog-grid,
  .lp-blog-grid--related {
    grid-template-columns: 1fr;
  }

  .lp-blog-featured-card .lp-blog-card-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .lp-blog-grid:not(.lp-blog-grid--related) {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Marketing route loading skeletons ───────────────────────────────────── */

@keyframes lp-sk-shimmer {
  0% { background-position: calc(-1 * var(--lp-sk-sweep) / 2) 0; }
  100% { background-position: calc(var(--lp-sk-sweep) / 2) 0; }
}

.lp-sk {
  animation: lp-sk-shimmer 1.25s ease-in-out infinite;
  background:
    linear-gradient(
      90deg,
      var(--lp-sk-base) 0%,
      var(--off-white) 38%,
      var(--lp-sk-shine) 50%,
      var(--off-white) 62%,
      var(--lp-sk-base) 100%
    );
  background-size: var(--lp-sk-sweep) 100%;
  border-radius: 8px;
}

.lp-section--surface .lp-sk {
  --lp-sk-base: var(--gray-200);
}

@media (prefers-reduced-motion: reduce) {
  .lp-sk {
    animation: none;
    background: var(--lp-sk-base);
  }
}

.lp-sk-chip {
  width: 120px;
  height: 28px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.lp-sk-headline {
  width: min(560px, 90%);
  height: 40px;
  margin-bottom: 12px;
}

.lp-sk-headline--short {
  width: min(420px, 75%);
}

.lp-sk-subhead {
  width: min(480px, 85%);
  height: 18px;
  margin-bottom: 24px;
}

.lp-sk-subhead--wide {
  width: min(620px, 92%);
}

.lp-sk-toggle {
  width: 240px;
  height: 44px;
  border-radius: 999px;
}

.lp-loading-landing-hero {
  padding-top: calc(var(--lp-nav-height) + clamp(56px, 7vw, 96px));
  padding-bottom: clamp(64px, 8vw, 112px);
}

.lp-loading-landing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: clamp(40px, 7vw, 96px);
}

.lp-loading-landing-copy {
  min-width: 0;
}

.lp-sk-headline--hero {
  width: min(680px, 100%);
  height: clamp(44px, 5vw, 68px);
  border-radius: 12px;
}

.lp-loading-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.lp-sk-cta {
  width: 148px;
  height: 48px;
  border-radius: 10px;
}

.lp-sk-cta--secondary {
  width: 132px;
}

.lp-loading-trust-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}

.lp-sk-avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
}

.lp-sk-trust-line {
  width: min(220px, 48vw);
  height: 14px;
  margin-left: 8px;
}

.lp-loading-landing-visual {
  display: flex;
  justify-content: center;
}

.lp-sk-phone-shell {
  width: min(340px, 100%);
  aspect-ratio: 0.62;
  border-radius: 32px;
  padding: 22px;
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.08);
  border: 1px solid var(--gray-200);
}

.lp-sk-phone-top {
  width: 96px;
  height: 10px;
  margin: 0 auto 28px;
  border-radius: 999px;
}

.lp-sk-phone-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp-sk-phone-card {
  height: 86px;
  border-radius: 16px;
}

.lp-sk-phone-card--short {
  height: 62px;
}

.lp-loading-section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-sk-section-card {
  height: 220px;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
}

.lp-loading-pricing-hero {
  padding-top: clamp(48px, 8vw, 96px);
  padding-bottom: clamp(48px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.lp-loading-pricing-hero .lp-sk-chip,
.lp-loading-pricing-hero .lp-sk-headline,
.lp-loading-pricing-hero .lp-sk-subhead,
.lp-loading-pricing-hero .lp-sk-toggle {
  margin-left: auto;
  margin-right: auto;
}

.lp-loading-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: clamp(48px, 6vw, 72px) 0;
}

.lp-sk-tier {
  height: 420px;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
}

.lp-sk-tier--tall {
  height: 440px;
}

.lp-loading-blog-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}

.lp-loading-blog-header.lp-blog-index-hero {
  display: grid;
  align-items: center;
}

.lp-loading-blog-header .lp-sk-chip,
.lp-loading-blog-header .lp-sk-headline,
.lp-loading-blog-header .lp-sk-subhead {
  margin-left: 0;
  margin-right: auto;
}

.lp-sk-blog-featured-card {
  width: 100%;
  min-height: 360px;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
}

.lp-loading-chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.lp-sk-filter-chip {
  width: 88px;
  height: 36px;
  border-radius: 999px;
}

.lp-loading-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: clamp(40px, 5vw, 56px) var(--lp-pad-x);
}

.lp-sk-blog-card {
  height: 280px;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
}

.lp-loading-blog-detail-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding-top: clamp(24px, 4vw, 40px);
}

.lp-sk-breadcrumb {
  width: 220px;
  height: 16px;
  margin-bottom: 20px;
}

.lp-loading-blog-meta-row,
.lp-loading-blog-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lp-loading-blog-meta-row {
  margin-bottom: 16px;
}

.lp-loading-blog-tag-row {
  margin-bottom: 8px;
}

.lp-sk-meta-pill {
  width: 100px;
  height: 14px;
  border-radius: 999px;
}

.lp-sk-meta-pill--short {
  width: 72px;
}

.lp-sk-filter-chip--short {
  width: 72px;
}

.lp-sk-article-divider {
  width: 100%;
  height: 1px;
  margin-bottom: 0;
}

.lp-loading-blog-detail-cover-wrap {
  width: 100%;
  margin: 0 0 clamp(10px, 1.5vw, 18px);
  min-width: 0;
}

.lp-loading-blog-detail-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.lp-sk-blog-detail-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
}

.lp-loading-blog-detail-layout {
  padding-top: clamp(24px, 3vw, 36px);
}

.lp-loading-blog-detail-main {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp-sk-prose-block {
  width: 100%;
  height: 120px;
  border-radius: 14px;
}

.lp-sk-prose-block--short {
  height: 88px;
}

.lp-loading-blog-detail-sidebar {
  align-self: start;
}

.lp-sk-sidebar-card {
  width: 100%;
  min-height: 220px;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
}

.lp-loading-section-grid > .lp-sk:nth-child(1),
.lp-loading-tier-grid > .lp-sk:nth-child(1),
.lp-loading-blog-grid > .lp-sk:nth-child(1) { animation-delay: 0ms; }

.lp-loading-section-grid > .lp-sk:nth-child(2),
.lp-loading-tier-grid > .lp-sk:nth-child(2),
.lp-loading-blog-grid > .lp-sk:nth-child(2) { animation-delay: 80ms; }

.lp-loading-section-grid > .lp-sk:nth-child(3),
.lp-loading-tier-grid > .lp-sk:nth-child(3),
.lp-loading-blog-grid > .lp-sk:nth-child(3) { animation-delay: 160ms; }

.lp-loading-blog-grid > .lp-sk:nth-child(4) { animation-delay: 240ms; }
.lp-loading-blog-grid > .lp-sk:nth-child(5) { animation-delay: 320ms; }
.lp-loading-blog-grid > .lp-sk:nth-child(6) { animation-delay: 400ms; }

.lp-loading-blog-detail-main > .lp-loading-blog-detail-cover-wrap .lp-sk { animation-delay: 0ms; }
.lp-loading-blog-detail-main > .lp-sk:nth-child(2) { animation-delay: 70ms; }
.lp-loading-blog-detail-main > .lp-sk:nth-child(3) { animation-delay: 140ms; }
.lp-loading-blog-detail-main > .lp-sk:nth-child(4) { animation-delay: 210ms; }
.lp-loading-blog-detail-main > .lp-sk:nth-child(5) { animation-delay: 280ms; }
.lp-loading-blog-detail-main > .lp-sk:nth-child(6) { animation-delay: 350ms; }
.lp-loading-blog-detail-main > .lp-sk:nth-child(7) { animation-delay: 420ms; }
.lp-loading-blog-detail-main > .lp-sk:nth-child(8) { animation-delay: 490ms; }

@media (max-width: 900px) {
  .lp-loading-landing-grid {
    grid-template-columns: 1fr;
  }

  .lp-loading-landing-visual {
    display: none;
  }

  .lp-loading-section-grid {
    grid-template-columns: 1fr;
  }

  .lp-loading-tier-grid {
    grid-template-columns: 1fr;
  }

  .lp-loading-blog-grid {
    grid-template-columns: 1fr;
  }

  .lp-loading-blog-detail-sidebar {
    display: none;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .lp-loading-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.lp-sk-prose-line {
  height: 14px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.lp-sk-prose-line--short {
  width: 72%;
}

.lp-static-loading-body {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(32px, 4vw, 48px) 0;
}

/* ── Marketing static pages (legal, about, contact, …) ───────────────────── */

.lp-static-updated {
  margin: 8px 0 0;
  padding-left: 2px;
  font-size: 13px;
  color: var(--gray-500);
}

.lp-static-page--legal .lp-static-body-section .lp-section-inner {
  max-width: var(--lp-content-max);
  margin: 0 auto;
}

.lp-static-page--legal .lp-static-prose.lp-blog-editorial {
  max-width: var(--lp-content-max);
  margin: 0 auto;
}

/* Match home / blog index hero measure (not --lp-content-max). */
.lp-static-page--legal .lp-blog-header-inner {
  max-width: 1440px;
}

/* Each legal block is a <section>; restore spacing before numbered h2s
   (h2:first-child would otherwise zero out margin-top on every section). */
.lp-static-page--legal .lp-static-prose > section + section {
  margin-top: 2.75em;
}

.lp-static-page--legal .lp-static-prose > section > h2:first-child {
  margin-top: 0;
}

.lp-static-section-title {
  margin: 0 0 32px;
  max-width: 720px;
}

.lp-static-card-grid,
.lp-static-feature-grid,
.lp-static-case-grid {
  display: grid;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .lp-static-card-grid,
  .lp-static-feature-grid,
  .lp-static-case-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-static-feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lp-static-card,
.lp-static-feature-card {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  background: var(--white);
}

.lp-static-feature-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lp-static-feature-card:hover {
  border-color: var(--gray-300);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.lp-static-feature-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 8px;
}

.lp-static-feature-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

.lp-static-card-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
}

.lp-static-card-body {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-600);
}

.lp-static-contact-grid {
  display: grid;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .lp-static-contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.lp-static-contact-heading {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 700;
}

.lp-static-channel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-static-channel-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.lp-static-channel-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
}

.lp-static-channel-value:hover {
  color: var(--accent);
}

.lp-static-contact-note,
.lp-static-contact-aside-sub {
  margin: 20px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-600);
}

.lp-static-contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.lp-static-contact-aside {
  padding: 28px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
}

.lp-static-contact-aside-links,
.lp-static-about-links,
.lp-static-features-footer,
.lp-static-help-footer,
.lp-static-case-disclaimer {
  margin-top: 16px;
  font-size: 14px;
  color: var(--gray-600);
}

.lp-static-contact-aside-links a,
.lp-static-about-links a,
.lp-static-features-footer a,
.lp-static-help-footer a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.lp-static-about-lead {
  max-width: 720px;
  margin: 0 auto;
}

.lp-static-timeline {
  list-style: none;
  margin: 0 auto 32px;
  padding: 0;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lp-static-timeline-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
}

.lp-static-timeline-year {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}

.lp-static-about-cta {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.lp-static-faq {
  max-width: 720px;
  margin: 0 auto;
}

.lp-static-faq-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
}

.lp-static-faq-item:first-child {
  padding-top: 0;
}

.lp-static-faq-q {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
}

.lp-static-faq-a {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-600);
}

.lp-static-case-card {
  padding: 28px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
}

.lp-static-case-segment {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 8px;
}

.lp-static-case-columns {
  display: grid;
  gap: 16px;
  margin: 16px 0;
}

@media (min-width: 600px) {
  .lp-static-case-columns {
    grid-template-columns: 1fr 1fr;
  }
}

.lp-static-case-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  margin-bottom: 6px;
}

.lp-static-case-columns p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-600);
}

.lp-static-case-outcome {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-700);
}

/* ── Contact page (handoff) ──────────────────────────────────────────────── */
