/* ============================================================
   Marketing template refresh (2026-04-04)
   Intent: lighter, cleaner, more consistent public pages.
   ============================================================ */
body.landing-template {
  --landing-font-body: "Manrope", "Segoe UI", sans-serif;
  --landing-font-display: "Sora", "Segoe UI", sans-serif;
  --landing-ink: #10233c;
  --landing-muted: #5a6d84;
  --landing-brand: #1a4a78;
  --landing-brand-dark: #12385c;
  --landing-cyan: #4a7aa5;
  --landing-cyan-dark: #365f83;
  --landing-brand-rgb: 26, 74, 120;
  --landing-cyan-rgb: 74, 122, 165;
  --landing-panel: rgba(255, 255, 255, 0.84);
  --landing-panel-strong: rgba(255, 255, 255, 0.96);
  --landing-line: rgba(16, 35, 60, 0.1);
  --landing-line-strong: rgba(16, 35, 60, 0.16);
  --landing-shadow: 0 24px 60px rgba(8, 21, 54, 0.08);
  --landing-shadow-soft: 0 14px 32px rgba(8, 21, 54, 0.06);
  --landing-shadow-flat: 0 8px 18px rgba(8, 21, 54, 0.04);
  color: var(--landing-ink);
  font-family: var(--landing-font-body);
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(circle at top left, rgba(var(--landing-brand-rgb), 0.08), transparent 30%),
    radial-gradient(circle at 100% 0%, rgba(var(--landing-cyan-rgb), 0.08), transparent 24%),
    linear-gradient(180deg, #f8fafc 0%, #f2f5f8 52%, #eef2f6 100%);
}

body.landing-template::before {
  background:
    radial-gradient(circle at 12% 85%, rgba(var(--landing-brand-rgb), 0.06), transparent 34%),
    radial-gradient(circle at 92% 18%, rgba(var(--landing-cyan-rgb), 0.07), transparent 28%);
}

body.landing-template,
body.landing-template button,
body.landing-template input,
body.landing-template select,
body.landing-template textarea {
  font-family: var(--landing-font-body);
}

body.landing-template h1,
body.landing-template h2,
body.landing-template h3,
body.landing-template h4,
body.landing-template h5,
body.landing-template h6,
body.landing-template .landing-navbar__brand-name,
body.landing-template .blog-post-card h2,
body.landing-template .blog-feature-card h2,
body.landing-template .blog-related-card h3 {
  font-family: var(--landing-font-display);
}

body.landing-template .container,
body.landing-template.landing-home-template .container {
  width: 100%;
  max-width: 1280px;
  padding-inline: clamp(18px, 3.2vw, 40px);
}

body.landing-template .landing-main {
  overflow: visible;
}

body.landing-template .landing-main > .landing-hero,
body.landing-template .landing-main > .marketing-hero {
  padding-top: clamp(32px, 5vw, 54px);
}

body.landing-template .landing-hero,
body.landing-template .marketing-hero {
  padding-bottom: clamp(48px, 6vw, 80px);
}

body.landing-template .landing-section {
  padding: clamp(44px, 6vw, 76px) 0;
}

body.landing-template .landing-section--tight {
  padding: clamp(32px, 4.5vw, 56px) 0;
}

body.landing-template .landing-section--alt {
  background: transparent;
}

body.landing-template .landing-navbar {
  padding: 16px 0;
  border-bottom: 1px solid var(--landing-line);
  background: rgba(248, 250, 252, 0.78);
  box-shadow: 0 10px 26px rgba(8, 21, 54, 0.05);
  backdrop-filter: blur(20px);
}

body.landing-template .landing-navbar__inner {
  align-items: center;
  gap: 18px;
}

body.landing-template .landing-navbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0;
}

body.landing-template .landing-navbar__brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(var(--landing-brand-rgb), 0.08);
  background: rgba(255, 255, 255, 0.86);
  color: var(--landing-brand);
  font-size: 1rem;
  font-weight: 900;
  box-shadow: var(--landing-shadow-flat);
}

body.landing-template .landing-navbar__brand-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}

body.landing-template .landing-navbar__brand-name {
  color: #0f223c;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
}

body.landing-template .landing-navbar__brand-tag {
  color: #6a7f97;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

body.landing-template .landing-navbar__primary,
body.landing-template .landing-navbar__secondary {
  gap: 6px;
}

body.landing-template .landing-navbar__secondary {
  margin-left: auto;
}

body.landing-template .navbar .nav-link,
body.landing-template .navbar-light .navbar-nav .nav-link {
  min-height: 42px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #40566f;
  font-size: 0.92rem;
  font-weight: 750;
  border: 1px solid transparent;
  box-shadow: none;
}

body.landing-template .landing-navbar__account-link {
  background: rgba(255, 255, 255, 0.65);
  border-color: transparent;
}

body.landing-template .landing-navbar__cta,
body.landing-template .navbar .landing-navbar__cta,
body.landing-template .navbar-light .navbar-nav .landing-navbar__cta {
  background: #10233c;
  border-color: #10233c;
  color: #ffffff !important;
}

body.landing-template .navbar .landing-navbar__cta:hover,
body.landing-template .navbar .landing-navbar__cta:focus,
body.landing-template .navbar-light .navbar-nav .landing-navbar__cta:hover,
body.landing-template .navbar-light .navbar-nav .landing-navbar__cta:focus {
  background: var(--landing-brand);
  border-color: var(--landing-brand);
  color: #ffffff !important;
}

body.landing-template .landing-kicker {
  padding: 7px 12px;
  border: 1px solid rgba(var(--landing-brand-rgb), 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: #3f5872;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: none;
}

body.landing-template h1 {
  color: #0f223c;
  font-size: clamp(3.2rem, 6.2vw, 5.6rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

body.landing-template .landing-lead,
body.landing-template .marketing-lead {
  max-width: 62ch;
  color: var(--landing-muted);
  line-height: 1.72;
}

body.landing-template .landing-main--home .landing-section-head p,
body.landing-template .landing-main--home .landing-cta-card p {
  padding-left: 0;
}

body.landing-template .landing-main--home .landing-section-head p::before,
body.landing-template .landing-main--home .landing-cta-card p::before {
  content: none;
}

body.landing-template .landing-section-head {
  gap: 12px;
  margin-bottom: 28px;
  max-width: 780px;
}

body.landing-template .landing-section-head h2 {
  color: #10233c;
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

body.landing-template .landing-section-head p {
  color: var(--landing-muted);
  font-size: 1rem;
  line-height: 1.7;
}

body.landing-template .landing-action-row {
  gap: 10px;
  margin-top: 22px;
}

body.landing-template .landing-action-row .btn,
body.landing-template .landing-price-card .btn {
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: none;
}

body.landing-template .landing-action-row .btn.custom-btn,
body.landing-template .landing-price-card .btn.custom-btn {
  background: #10233c;
  border-color: #10233c;
  color: #ffffff;
}

body.landing-template .landing-action-row .btn.custom-btn:hover,
body.landing-template .landing-price-card .btn.custom-btn:hover {
  background: var(--landing-brand);
  border-color: var(--landing-brand);
  color: #ffffff;
}

body.landing-template .landing-action-row .btn.custom-btn-bg {
  background: rgba(255, 255, 255, 0.78);
  color: var(--landing-ink);
  border-color: var(--landing-line);
  box-shadow: var(--landing-shadow-flat);
}

body.landing-template .landing-action-row .btn.custom-btn-bg:hover {
  background: rgba(255, 255, 255, 0.96);
  color: var(--landing-brand-dark);
  border-color: var(--landing-line-strong);
}

body.landing-template .landing-action-row--chips .btn {
  min-height: 38px;
  padding: 8px 14px;
  font-size: 0.82rem;
}

body.landing-template .landing-trust-pill {
  animation: none;
  border-color: var(--landing-line);
  background: rgba(255, 255, 255, 0.74);
  color: #425872;
  box-shadow: none;
}

body.landing-template .marketing-surface-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--landing-line);
  background: var(--landing-panel);
  box-shadow: var(--landing-shadow-soft);
  backdrop-filter: blur(18px);
}

body.landing-template .marketing-surface-card::before {
  display: none;
}

body.landing-template .marketing-card,
body.landing-template .marketing-kpi-card,
body.landing-template .marketing-pillar,
body.landing-template .landing-feature-card,
body.landing-template .feature-mini-card,
body.landing-template .feature-source-item,
body.landing-template .landing-price-card,
body.landing-template .landing-plan-compare,
body.landing-template .landing-cta-card,
body.landing-template .landing-legal,
body.landing-template .landing-io-column,
body.landing-template .landing-io-center {
  border-color: var(--landing-line);
  background: var(--landing-panel);
  box-shadow: var(--landing-shadow-soft);
}

body.landing-template .marketing-card,
body.landing-template .marketing-kpi-card,
body.landing-template .marketing-pillar,
body.landing-template .landing-feature-card,
body.landing-template .landing-price-card {
  border-radius: 24px;
}

body.landing-template .marketing-card {
  padding: 22px 22px 24px;
}

body.landing-template .marketing-card h3,
body.landing-template .marketing-kpi-card strong,
body.landing-template .landing-price-card h3 {
  color: #10233c;
}

body.landing-template .marketing-card p,
body.landing-template .marketing-kpi-card p,
body.landing-template .landing-price-note,
body.landing-template .landing-price-features li,
body.landing-template .feature-mini-card span,
body.landing-template .feature-source-item p {
  color: var(--landing-muted);
}

body.landing-template .landing-capability-list li::before,
body.landing-template .landing-proof-list li::before {
  background: #10233c;
  box-shadow: none;
}

body.landing-template .landing-main--home .landing-hero-mini-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  margin-top: 6px;
  padding: 0;
  list-style: none;
}

body.landing-template .landing-main--home .landing-hero-mini-list li {
  position: relative;
  margin: 0;
  padding: 12px 14px 12px 30px;
  border-radius: 18px;
  border: 1px solid var(--landing-line);
  background: rgba(255, 255, 255, 0.66);
  color: #304b67;
  font-size: 0.9rem;
  font-weight: 700;
}

body.landing-template .landing-main--home .landing-hero-mini-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--landing-brand);
  transform: translateY(-50%);
}

body.landing-template .landing-home-hero__copy {
  display: grid;
  gap: 18px;
  padding-right: clamp(0px, 2vw, 28px);
}

body.landing-template .landing-main--home h1 {
  max-width: 11ch;
}

body.landing-template .landing-main--home .landing-lead--rich {
  max-width: 60ch;
  font-size: clamp(1.02rem, 2vw, 1.12rem);
}

body.landing-template .landing-main--home .landing-hero-microcopy {
  margin: 0;
  color: #58708a;
  font-size: 0.88rem;
  font-weight: 700;
}

body.landing-template .landing-home-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

body.landing-template .landing-home-hero__stat {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--landing-line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--landing-shadow-flat);
}

body.landing-template .landing-home-hero__stat strong {
  display: block;
  margin-bottom: 4px;
  color: #10233c;
  font-size: 0.92rem;
  font-weight: 800;
}

body.landing-template .landing-home-hero__stat span {
  display: block;
  color: var(--landing-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

body.landing-template .landing-home-hero__visual {
  position: relative;
  display: grid;
  gap: 16px;
  padding-left: clamp(0px, 1vw, 18px);
}

body.landing-template .landing-home-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 20px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(var(--landing-brand-rgb), 0.1);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(var(--landing-cyan-rgb), 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 252, 0.9));
  box-shadow: var(--landing-shadow);
}

body.landing-template .landing-home-shell::before {
  content: "";
  position: absolute;
  inset: auto -16% -36% 42%;
  height: 220px;
  border-radius: 999px;
  background: rgba(var(--landing-brand-rgb), 0.08);
  filter: blur(34px);
  pointer-events: none;
}

body.landing-template .landing-home-shell__header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
}

body.landing-template .landing-home-shell__headline {
  display: grid;
  gap: 10px;
}

body.landing-template .landing-home-shell__eyebrow {
  margin: 0;
  color: #58708a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.landing-template .landing-home-shell__headline h2 {
  margin: 0;
  color: #10233c;
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

body.landing-template .landing-home-shell__headline p {
  margin: 0;
  color: #52677f;
  line-height: 1.7;
}

body.landing-template .landing-home-shell__status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(28, 117, 84, 0.14);
  background: rgba(31, 149, 103, 0.08);
  color: #176646;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Homepage hero preview now shows a real review journey instead of a faux dashboard snapshot. */
body.landing-template .landing-home-shell__review {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  padding: 18px 18px 20px;
  border-radius: 26px;
  border: 1px solid rgba(16, 35, 60, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 250, 253, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

body.landing-template .landing-home-shell__review-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

body.landing-template .landing-home-shell__review-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.landing-template .landing-home-shell__review-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(var(--landing-brand-rgb), 0.08);
  background: rgba(var(--landing-brand-rgb), 0.08);
  color: #284a67;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.landing-template .landing-home-shell__review-pill--success {
  border-color: rgba(31, 149, 103, 0.12);
  background: rgba(31, 149, 103, 0.1);
  color: #176646;
}

body.landing-template .landing-home-shell__review-rating {
  display: grid;
  gap: 2px;
  justify-items: end;
}

body.landing-template .landing-home-shell__review-rating strong {
  color: #10233c;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

body.landing-template .landing-home-shell__review-rating span {
  color: #58708a;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.landing-template .landing-home-shell__review-title {
  color: #10233c;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.35;
}

body.landing-template .landing-home-shell__review-quote {
  margin: 0;
  color: #405a75;
  font-size: 0.96rem;
  line-height: 1.75;
}

body.landing-template .landing-home-shell__review-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(16, 35, 60, 0.08);
  color: #58708a;
  font-size: 0.82rem;
  font-weight: 700;
}

body.landing-template .landing-home-shell__review-footer span + span {
  position: relative;
  padding-left: 16px;
}

body.landing-template .landing-home-shell__review-footer span + span::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(88, 112, 138, 0.72);
  transform: translateY(-50%);
}

body.landing-template .landing-home-shell__flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

body.landing-template .landing-home-shell__step {
  padding: 16px 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(16, 35, 60, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

body.landing-template .landing-home-shell__step p {
  display: block;
  margin-top: 4px;
  color: #58708a;
  font-size: 0.85rem;
  line-height: 1.55;
}

body.landing-template .landing-home-shell__step span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(var(--landing-brand-rgb), 0.08);
  color: var(--landing-brand);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

body.landing-template .landing-home-shell__step strong {
  display: block;
  margin-top: 12px;
  color: #10233c;
  font-size: 0.98rem;
  font-weight: 800;
}

body.landing-template .landing-home-shell__footer {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

body.landing-template .landing-home-shell__footer > span {
  color: #58708a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.landing-template .landing-home-shell__chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.landing-template .landing-home-shell__chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(16, 35, 60, 0.08);
  background: rgba(255, 255, 255, 0.82);
  color: #274660;
  font-size: 0.82rem;
  font-weight: 700;
}

body.landing-template .landing-home-proof-card {
  display: grid;
  gap: 12px;
  padding: 22px 24px;
  border-radius: 28px;
  border: 1px solid rgba(var(--landing-brand-rgb), 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(var(--landing-brand-rgb), 0.04));
  box-shadow: var(--landing-shadow-flat);
}

body.landing-template .landing-home-proof-card__eyebrow {
  color: #58708a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.landing-template .landing-home-proof-card strong {
  color: #10233c;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.45;
}

body.landing-template .landing-home-proof-card p {
  margin: 0;
  color: #58708a;
  line-height: 1.65;
}

body.landing-template .landing-price-card {
  padding: 26px 24px;
}

body.landing-template .landing-price-card.is-recommended {
  border-color: rgba(var(--landing-brand-rgb), 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(var(--landing-brand-rgb), 0.04));
  box-shadow: var(--landing-shadow);
}

body.landing-template .landing-price-badge,
body.landing-template .marketing-kpi-card span {
  background: rgba(var(--landing-brand-rgb), 0.08);
  color: #2e516f;
}

body.landing-template .landing-price-features li {
  border-bottom-color: rgba(16, 35, 60, 0.08);
}

body.landing-template .landing-plan-compare {
  padding: 28px;
  border-radius: 30px;
}

body.landing-template .landing-plan-compare-table-wrap {
  border: 1px solid var(--landing-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.55);
}

body.landing-template .landing-plan-compare-plan-head.is-featured {
  background: rgba(var(--landing-brand-rgb), 0.06);
}

body.landing-template .landing-plan-compare-table th,
body.landing-template .landing-plan-compare-table td {
  border-color: rgba(16, 35, 60, 0.08);
}

body.landing-template .landing-cta {
  padding: 36px 0 72px;
}

body.landing-template .landing-cta-card {
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(245, 248, 252, 0.9));
  box-shadow: var(--landing-shadow);
}

body.landing-template .landing-cta-card::before {
  height: 1px;
  background: rgba(var(--landing-brand-rgb), 0.16);
  opacity: 1;
}

body.landing-template .landing-cta-card h2 {
  color: #10233c;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

body.landing-template .landing-cta-card p {
  color: var(--landing-muted);
}

body.landing-template .marketing-hero-shell {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: start;
}

body.landing-template .marketing-hero-copy {
  padding-top: 4px;
}

body.landing-template .marketing-page--blog .blog-hero,
body.landing-template .marketing-page--blog-post .blog-post-hero {
  background: transparent;
}

body.landing-template .marketing-page--blog .blog-hero::before,
body.landing-template .marketing-page--blog .blog-hero::after,
body.landing-template .marketing-page--blog-post .blog-post-hero::before,
body.landing-template .marketing-page--blog-post .blog-post-hero::after {
  display: none;
}

body.landing-template .marketing-page--blog .blog-hero-copy h1,
body.landing-template .marketing-page--blog-post .blog-post-hero-copy h1 {
  max-width: 14ch;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 0.96;
}

body.landing-template .marketing-page--blog .blog-topic-pill,
body.landing-template .marketing-page--blog .blog-content-pill,
body.landing-template .marketing-page--blog-post .blog-content-pill {
  border: 1px solid var(--landing-line);
  background: rgba(255, 255, 255, 0.68);
  color: #39536e;
  box-shadow: none;
}

body.landing-template .marketing-page--blog .blog-hero-track {
  border-color: var(--landing-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: none;
}

body.landing-template .marketing-page--blog .blog-hero-track__index {
  border-radius: 16px;
  background: rgba(var(--blog-track-accent-rgb), 0.12);
  color: var(--blog-track-accent);
  box-shadow: none;
}

body.landing-template .marketing-page--blog .blog-hero-stat {
  border: 1px solid var(--landing-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.65);
}

body.landing-template .marketing-page--blog .blog-feature-card,
body.landing-template .marketing-page--blog .blog-post-card,
body.landing-template .marketing-page--blog-post .blog-post-toc-card,
body.landing-template .marketing-page--blog-post .blog-post-sidebar-card,
body.landing-template .marketing-page--blog-post .blog-post-cta-card,
body.landing-template .marketing-page--blog-post .blog-related-card,
body.landing-template .marketing-page--blog-post .blog-fact-card,
body.landing-template .marketing-page--blog-post .blog-tldr-card {
  background: var(--landing-panel);
  border-color: var(--landing-line);
  box-shadow: var(--landing-shadow-soft);
}

body.landing-template .marketing-page--blog .blog-feature-card[data-card-index]::after,
body.landing-template .marketing-page--blog .blog-post-card[data-card-index]::after {
  content: none;
}

body.landing-template .marketing-page--blog .blog-feature-card {
  padding: 28px;
}

body.landing-template .marketing-page--blog .blog-feature-card__meta,
body.landing-template .marketing-page--blog .blog-post-card__meta {
  color: #667d95;
}

body.landing-template .marketing-page--blog .blog-feature-card__eyebrow,
body.landing-template .marketing-page--blog .blog-post-card__eyebrow,
body.landing-template .marketing-page--blog-post .blog-post-toc-card__eyebrow,
body.landing-template .marketing-page--blog-post .blog-post-sidebar-card__eyebrow,
body.landing-template .marketing-page--blog-post .blog-related-card__eyebrow {
  background: rgba(var(--landing-brand-rgb), 0.08);
  color: #2e516f;
}

body.landing-template .marketing-page--blog .blog-feature-card h2,
body.landing-template .marketing-page--blog .blog-feature-card p,
body.landing-template .marketing-page--blog .blog-feature-card a {
  color: inherit;
}

body.landing-template .marketing-page--blog .blog-feature-card p,
body.landing-template .marketing-page--blog .blog-post-card p,
body.landing-template .marketing-page--blog-post .blog-related-card p,
body.landing-template .marketing-page--blog-post .blog-post-sidebar-card p,
body.landing-template .marketing-page--blog-post .blog-post-cta-card p {
  color: var(--landing-muted);
}

body.landing-template .marketing-page--blog .blog-feature-card__outline li,
body.landing-template .marketing-page--blog .blog-post-card__outline li {
  color: #3f5b77;
}

body.landing-template .marketing-page--blog .blog-feature-card__outline li::before,
body.landing-template .marketing-page--blog .blog-post-card__outline li::before {
  background: rgba(var(--landing-brand-rgb), 0.42);
}

body.landing-template .marketing-page--blog .blog-feature-card__footer,
body.landing-template .marketing-page--blog .blog-post-card__footer {
  border-top-color: rgba(16, 35, 60, 0.08);
  color: #5e748d;
}

body.landing-template .marketing-page--blog .blog-inline-link,
body.landing-template .marketing-page--blog-post .blog-inline-link {
  color: #1a4a78;
}

body.landing-template .marketing-page--blog .blog-post-grid {
  gap: 20px;
}

body.landing-template .marketing-page--blog .blog-post-card,
body.landing-template .marketing-page--blog .blog-post-card:nth-child(1),
body.landing-template .marketing-page--blog .blog-post-card:nth-child(2) {
  gap: 16px;
  padding: 26px;
  margin-top: 0;
}

body.landing-template .marketing-page--blog .blog-post-card h2 {
  max-width: 18ch;
  font-size: 1.28rem;
  line-height: 1.12;
}

body.landing-template .marketing-page--blog .blog-feature-card h2,
body.landing-template .marketing-page--blog .blog-post-card h2 {
  letter-spacing: -0.035em;
}

body.landing-template .marketing-page--blog .blog-library-guide {
  padding: 24px;
}

body.landing-template .marketing-page--blog .blog-library-guide::after {
  display: none;
}

body.landing-template .blog-reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 480;
  background: rgba(255, 255, 255, 0.6);
}

body.landing-template .blog-reading-progress span {
  transform-origin: 0 50%;
  background: linear-gradient(90deg, #10233c, var(--landing-brand));
}

body.landing-template .marketing-page--blog-post .blog-post-meta-row span {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--landing-line);
  color: #37506d;
}

body.landing-template .marketing-page--blog-post .blog-post-shell {
  gap: clamp(28px, 4vw, 42px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 340px);
}

body.landing-template .marketing-page--blog-post .blog-post-main {
  gap: clamp(28px, 4vw, 40px);
}

body.landing-template .marketing-page--blog-post .blog-post-main::before {
  display: none;
}

body.landing-template .marketing-page--blog-post .blog-post-toc-card,
body.landing-template .marketing-page--blog-post .blog-post-sidebar-card,
body.landing-template .marketing-page--blog-post .blog-post-cta-card {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

body.landing-template .marketing-page--blog-post .blog-post-toc-list a {
  border: 1px solid transparent;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: #233d58;
}

body.landing-template .marketing-page--blog-post .blog-post-toc-list a span {
  background: rgba(var(--landing-brand-rgb), 0.08);
  color: var(--landing-brand);
}

body.landing-template .marketing-page--blog-post .blog-post-toc-link.is-active {
  background: rgba(var(--landing-brand-rgb), 0.08);
  border-color: rgba(var(--landing-brand-rgb), 0.16);
  box-shadow: none;
  color: #153d67;
}

body.landing-template .marketing-page--blog-post .blog-post-toc-meta p,
body.landing-template .marketing-page--blog-post .blog-post-toc-meta strong {
  color: #4e647c;
}

body.landing-template .marketing-page--blog-post .blog-post-sidebar {
  top: 112px;
  gap: 14px;
}

body.landing-template .marketing-page--blog-post .blog-section-card {
  display: block;
  padding: 0 0 34px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.landing-template .marketing-page--blog-post .blog-section-card:not(:last-child) {
  border-bottom: 1px solid rgba(16, 35, 60, 0.08);
}

body.landing-template .marketing-page--blog-post .blog-section-card::after {
  display: none;
}

body.landing-template .marketing-page--blog-post .blog-section-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: #6b8098;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body.landing-template .marketing-page--blog-post .blog-section-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(var(--landing-brand-rgb), 0.08);
  background: rgba(var(--landing-brand-rgb), 0.08);
  color: var(--landing-brand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: none;
}

body.landing-template .marketing-page--blog-post .blog-section-card__body {
  display: grid;
  gap: 18px;
}

body.landing-template .marketing-page--blog-post .blog-section-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

body.landing-template .marketing-page--blog-post .blog-section-card h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(1.7rem, 2.9vw, 2.3rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

body.landing-template .marketing-page--blog-post .blog-section-card__body > .blog-block-paragraph:first-of-type,
body.landing-template .marketing-page--blog-post .blog-section-card__body > p:first-of-type {
  color: #294560;
  font-size: 1.08rem;
  line-height: 1.88;
}

body.landing-template .marketing-page--blog-post .blog-block-paragraph,
body.landing-template .marketing-page--blog-post .blog-section-card p,
body.landing-template .marketing-page--blog-post .blog-section-subblock p,
body.landing-template .marketing-page--blog-post .blog-section-list li {
  max-width: 72ch;
  color: #405a75;
  font-size: 1.01rem;
  line-height: 1.84;
}

body.landing-template .marketing-page--blog-post .blog-section-anchor {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border-color: var(--landing-line);
  background: rgba(255, 255, 255, 0.84);
  color: #2f4e6b;
  box-shadow: none;
  text-decoration: none;
}

body.landing-template .marketing-page--blog-post .blog-section-anchor:hover,
body.landing-template .marketing-page--blog-post .blog-section-anchor:focus {
  background: rgba(var(--landing-brand-rgb), 0.08);
  color: #163f68;
}

body.landing-template .marketing-page--blog-post .blog-section-quote {
  padding: 20px 24px;
  border-left: 0;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(var(--landing-brand-rgb), 0.06), rgba(255, 255, 255, 0.7));
}

body.landing-template .marketing-page--blog-post .blog-section-quote p {
  color: #1c446d;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.65;
}

body.landing-template .marketing-page--blog-post .blog-section-quote footer {
  margin-top: 10px;
  color: #617890;
  font-size: 0.84rem;
}

body.landing-template .marketing-page--blog-post .blog-section-callout {
  border: 1px solid var(--landing-line);
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(var(--landing-brand-rgb), 0.04);
  box-shadow: none;
}

body.landing-template .marketing-page--blog-post .blog-block-stat-callout,
body.landing-template .marketing-page--blog-post .blog-block-chart,
body.landing-template .marketing-page--blog-post .blog-block-table,
body.landing-template .marketing-page--blog-post .blog-block-calculator,
body.landing-template .marketing-page--blog-post .blog-block-steps,
body.landing-template .marketing-page--blog-post .blog-block-decision-tree,
body.landing-template .marketing-page--blog-post .blog-block-templates,
body.landing-template .marketing-page--blog-post .blog-block-mistakes {
  padding: 26px;
  border: 1px solid var(--landing-line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: none;
}

body.landing-template .marketing-page--blog-post .blog-block-calculator {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(var(--landing-brand-rgb), 0.05));
}

body.landing-template .marketing-page--blog-post .blog-block-chart__description,
body.landing-template .marketing-page--blog-post .blog-block-table__caption,
body.landing-template .marketing-page--blog-post .blog-block-calculator__intro,
body.landing-template .marketing-page--blog-post .blog-block-steps__intro,
body.landing-template .marketing-page--blog-post .blog-block-decision-tree__description,
body.landing-template .marketing-page--blog-post .blog-block-templates__intro,
body.landing-template .marketing-page--blog-post .blog-block-mistakes__intro,
body.landing-template .marketing-page--blog-post .blog-block-footnote {
  color: var(--landing-muted);
}

body.landing-template .marketing-page--blog-post .blog-chart-bar,
body.landing-template .marketing-page--blog-post .blog-step-card,
body.landing-template .marketing-page--blog-post .blog-decision-card,
body.landing-template .marketing-page--blog-post .blog-template-card,
body.landing-template .marketing-page--blog-post .blog-mistake-card,
body.landing-template .marketing-page--blog-post .blog-calculator-result {
  border: 1px solid var(--landing-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: none;
}

body.landing-template .marketing-page--blog-post .blog-block-list__title,
body.landing-template .marketing-page--blog-post .blog-section-subblock h3,
body.landing-template .marketing-page--blog-post .blog-block-chart h3,
body.landing-template .marketing-page--blog-post .blog-block-table h3,
body.landing-template .marketing-page--blog-post .blog-block-calculator h3,
body.landing-template .marketing-page--blog-post .blog-block-steps h3,
body.landing-template .marketing-page--blog-post .blog-block-decision-tree h3,
body.landing-template .marketing-page--blog-post .blog-block-templates h3,
body.landing-template .marketing-page--blog-post .blog-block-mistakes h3,
body.landing-template .marketing-page--blog-post .blog-template-group__title,
body.landing-template .marketing-page--blog-post .blog-step-card h4,
body.landing-template .marketing-page--blog-post .blog-template-card h5,
body.landing-template .marketing-page--blog-post .blog-mistake-card h4 {
  color: #10233c;
  letter-spacing: -0.02em;
}

body.landing-template .marketing-page--blog-post .blog-chart-bar__track {
  background: rgba(16, 35, 60, 0.08);
}

body.landing-template .marketing-page--blog-post .blog-chart-bar__fill {
  background: #10233c;
}

body.landing-template .marketing-page--blog-post .blog-chart-bar.is-highlighted .blog-chart-bar__fill {
  background: var(--landing-brand);
}

body.landing-template .marketing-page--blog-post .blog-block-table__wrap {
  border: 1px solid var(--landing-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
}

body.landing-template .marketing-page--blog-post .blog-block-table th {
  background: rgba(16, 35, 60, 0.04);
  color: #1e3955;
}

body.landing-template .marketing-page--blog-post .blog-step-card__number,
body.landing-template .marketing-page--blog-post .blog-template-card__number,
body.landing-template .marketing-page--blog-post .blog-mistake-card__number {
  background: rgba(var(--landing-brand-rgb), 0.08);
  color: var(--landing-brand);
  box-shadow: none;
}

body.landing-template .marketing-page--blog-post .blog-template-card__body {
  background: rgba(var(--landing-brand-rgb), 0.04);
  box-shadow: inset 0 0 0 1px rgba(var(--landing-brand-rgb), 0.05);
}

body.landing-template .marketing-page--blog-post .blog-template-card__copy {
  border-radius: 999px;
  background: #10233c;
  color: #ffffff;
}

body.landing-template .marketing-page--blog-post .blog-template-card__copy:hover,
body.landing-template .marketing-page--blog-post[data-blog-theme="negative"] .blog-template-card__copy:hover {
  background: var(--landing-brand);
  color: #ffffff;
}

body.landing-template .marketing-page--blog-post .blog-template-card__tip,
body.landing-template .marketing-page--blog-post .blog-template-card__warning {
  border: 1px solid var(--landing-line);
  background: rgba(255, 255, 255, 0.62);
}

body.landing-template .marketing-page--blog-post .blog-faq-item {
  border: 1px solid var(--landing-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--landing-shadow-flat);
}

body.landing-template .marketing-page--blog-post .blog-faq-question {
  color: #10233c;
}

body.landing-template .marketing-page--blog-post .blog-related-card {
  padding: 22px;
}

body.landing-template .marketing-page--blog-post .blog-related-card__meta {
  border-top-color: rgba(16, 35, 60, 0.08);
}

body.landing-template .landing-footer {
  margin-top: clamp(20px, 4vw, 40px);
  padding-top: clamp(32px, 5vw, 52px);
  border-top: 1px solid rgba(16, 35, 60, 0.08);
  background: rgba(248, 250, 252, 0.62);
  box-shadow: none;
}

body.landing-template .landing-footer__brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  box-shadow: none;
}

body.landing-template .landing-footer__links a,
body.landing-template .landing-footer__account a,
body.landing-template .landing-footer__copyright {
  color: #5a6d84;
}

body.landing-template .landing-footer__links a:hover,
body.landing-template .landing-footer__account a:hover {
  color: var(--landing-brand);
}

@media (min-width: 992px) {
  body.landing-template .marketing-page--blog .blog-post-card:nth-child(1),
  body.landing-template .marketing-page--blog .blog-post-card:nth-child(2) {
    grid-column: span 6;
  }
}

@media (max-width: 1199px) {
  body.landing-template .landing-home-hero__stats,
  body.landing-template .marketing-hero-shell,
  body.landing-template .marketing-page--blog-post .blog-post-shell {
    grid-template-columns: 1fr;
  }

  body.landing-template .landing-home-hero__visual {
    padding-left: 0;
  }
}

@media (max-width: 991px) {
  body.landing-template .landing-navbar__menu {
    margin-top: 14px;
    padding: 16px;
    border: 1px solid var(--landing-line);
    border-radius: 22px;
    background: var(--landing-panel-strong);
    box-shadow: var(--landing-shadow-soft);
  }

  body.landing-template .landing-navbar__primary,
  body.landing-template .landing-navbar__secondary {
    width: 100%;
    align-items: stretch;
    gap: 8px;
  }

  body.landing-template .landing-navbar__secondary {
    margin-top: 10px;
  }

  body.landing-template .landing-navbar__primary .nav-item,
  body.landing-template .landing-navbar__secondary .nav-item {
    width: 100%;
  }

  body.landing-template .landing-navbar .nav-link {
    width: 100%;
    justify-content: center;
  }

  body.landing-template .landing-home-shell__header,
  body.landing-template .landing-home-shell__flow {
    grid-template-columns: 1fr;
  }

  body.landing-template .marketing-page--blog .blog-post-grid {
    grid-template-columns: 1fr;
  }

  body.landing-template .marketing-page--blog .blog-post-card,
  body.landing-template .marketing-page--blog .blog-post-card:nth-child(1),
  body.landing-template .marketing-page--blog .blog-post-card:nth-child(2) {
    grid-column: auto;
  }

  body.landing-template .marketing-page--blog-post .blog-post-sidebar {
    position: static;
  }
}

@media (max-width: 767px) {
  body.landing-template h1 {
    max-width: none;
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  body.landing-template .landing-section-head h2 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  body.landing-template .landing-main--home .landing-hero-mini-list,
  body.landing-template .landing-home-hero__stats {
    grid-template-columns: 1fr;
  }

  body.landing-template .landing-home-shell {
    padding: 20px;
    border-radius: 28px;
  }

  body.landing-template .landing-home-shell__review {
    padding: 18px;
  }

  body.landing-template .landing-home-shell__review-rating {
    justify-items: start;
  }

  body.landing-template .landing-action-row {
    width: 100%;
  }

  body.landing-template .landing-action-row .btn {
    width: 100%;
    justify-content: center;
  }

  body.landing-template .marketing-page--blog .blog-hero-track-list,
  body.landing-template .marketing-page--blog-post .blog-template-grid,
  body.landing-template .marketing-page--blog-post .blog-step-grid,
  body.landing-template .marketing-page--blog-post .blog-decision-grid,
  body.landing-template .marketing-page--blog-post .blog-mistake-grid {
    grid-template-columns: 1fr;
  }

  body.landing-template .marketing-page--blog-post .blog-section-card {
    padding: 0 0 28px;
  }

  body.landing-template .marketing-page--blog-post .blog-section-card__head {
    flex-direction: column;
    align-items: flex-start;
  }

  body.landing-template .marketing-page--blog-post .blog-section-card__index {
    min-width: 38px;
    height: 30px;
  }

  body.landing-template .landing-price-card,
  body.landing-template .landing-plan-compare,
  body.landing-template .landing-cta-card,
  body.landing-template .marketing-card,
  body.landing-template .marketing-kpi-card,
  body.landing-template .marketing-page--blog .blog-feature-card,
  body.landing-template .marketing-page--blog .blog-post-card,
  body.landing-template .marketing-page--blog-post .blog-post-toc-card,
  body.landing-template .marketing-page--blog-post .blog-post-sidebar-card,
  body.landing-template .marketing-page--blog-post .blog-post-cta-card,
  body.landing-template .marketing-page--blog-post .blog-fact-card,
  body.landing-template .marketing-page--blog-post .blog-section-card,
  body.landing-template .marketing-page--blog-post .blog-related-card,
  body.landing-template .marketing-page--blog-post .blog-tldr-card,
  body.landing-template .marketing-page--blog-post .blog-block-stat-callout,
  body.landing-template .marketing-page--blog-post .blog-block-chart,
  body.landing-template .marketing-page--blog-post .blog-block-table,
  body.landing-template .marketing-page--blog-post .blog-block-calculator,
  body.landing-template .marketing-page--blog-post .blog-block-steps,
  body.landing-template .marketing-page--blog-post .blog-block-decision-tree,
  body.landing-template .marketing-page--blog-post .blog-block-templates,
  body.landing-template .marketing-page--blog-post .blog-block-mistakes {
    padding-left: 20px;
    padding-right: 20px;
  }

  body.landing-template .marketing-page--blog-post .blog-section-card {
    padding-left: 0;
    padding-right: 0;
  }
}
