/* Phase 1 — site-specific additions (design tokens unchanged) */

.mdfriday-cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  width: min(42rem, calc(100vw - 2rem));
  background: var(--white, #fff);
  border-radius: var(--border-radius-base, 0.75rem);
  box-shadow: 0 2px 16px 0 var(--shadow, #10182814);
  padding: 1.25rem 1.5rem;
}

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

.mdfriday-cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mdfriday-cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.mdfriday-cookie-banner__actions .button,
.mdfriday-cookie-banner__actions .button-secondary {
  cursor: pointer;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mdfriday-cookie-preferences[hidden] {
  display: none !important;
}

.mdfriday-cookie-preferences {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(13, 15, 44, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.mdfriday-cookie-preferences__panel {
  background: var(--white, #fff);
  border-radius: var(--border-radius-base, 0.75rem);
  box-shadow: 0 8px 32px var(--shadow, #10182814);
  width: min(28rem, 100%);
  padding: 1.5rem;
}

.mdfriday-cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--grey-200, #e6eaf4);
}

.mdfriday-cookie-option:last-of-type {
  border-bottom: none;
}

.navbar_login-link {
  margin-right: 0.25rem;
}

/* Footer — brand + 4 nav columns (product · solutions · resources · legal) */
.footer-section .mdf-footer-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 2.25fr) repeat(4, minmax(0, 1fr));
  column-gap: 2rem;
  row-gap: 2rem;
  align-items: start;
}

.footer-section .mdf-footer-brand {
  min-width: 0;
}

.footer-section .mdf-footer-grid > .flex-vertical {
  min-width: 0;
}

.footer-section .mdf-footer-grid a.paragraph-small {
  text-decoration: none;
  color: inherit;
}

.footer-section .mdf-footer-grid a.paragraph-small:hover {
  color: var(--indigo-300, #a4bcfd);
}

@media screen and (max-width: 991px) {
  .footer-section .mdf-footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-section .mdf-footer-brand {
    grid-column: 1 / -1;
  }
}

@media screen and (max-width: 767px) {
  .footer-section .mdf-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Phase 2 — section grids & cards */
.mdf-section--soft {
  background: var(--grey-100, #f2f4fd);
}

.mdf-section--cta {
  background: linear-gradient(180deg, var(--indigo-100, #f5f8ff) 0%, var(--white, #fff) 100%);
}

.mdf-grid-3,
.mdf-grid-4 {
  display: grid;
  gap: 1.5rem;
}

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

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

.mdf-card {
  background: var(--white, #fff);
  border: 1px solid var(--grey-200, #e6eaf4);
  border-radius: var(--border-radius-base, 0.75rem);
  padding: 1.5rem;
  height: 100%;
}

.mdf-card--highlight {
  border: 1px solid transparent;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(to bottom left, #3f58da 10%, #8098f9 70%) border-box;
  box-shadow: 0 6px 40px 0 var(--shadow, #10182814);
}

.mdf-card--link {
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.mdf-card--link:hover {
  box-shadow: 0 6px 24px 0 var(--shadow, #10182814);
  transform: translateY(-2px);
}

.mdf-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.mdf-step__img {
  width: 100%;
  border-radius: var(--border-radius-base, 0.75rem);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  box-shadow: 0 6px 40px 0 var(--shadow, #10182814);
}

.mdf-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.mdf-pricing-grid .pricing-card_wrapper {
  text-decoration: none;
  color: inherit;
  display: flex;
  height: 100%;
}

.mdf-page-hero {
  padding-top: 6rem;
  padding-bottom: 2rem;
}

.mdf-compare-table {
  width: 100%;
  border-collapse: collapse;
}

.mdf-compare-table th,
.mdf-compare-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--grey-200, #e6eaf4);
  text-align: left;
}

.mdf-compare-table th {
  color: var(--indigo-500-main, #3e57da);
  font-weight: 600;
}

.mdf-legal-content {
  max-width: 42rem;
  margin: 0 auto;
}

.mdf-legal-content h2 {
  margin-top: 2rem;
}

/* ── Blog (Mintlify-inspired) ── */
.mdf-blog-page__hero {
  padding-bottom: 4rem;
}

.mdf-blog-container,
.mdf-blog-post-container {
  max-width: 72rem;
  margin: 0 auto;
}

.mdf-blog-header {
  margin-bottom: 2.5rem;
}

.mdf-blog-header__title {
  font-size: clamp(2.75rem, 5vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--base-dark, #0d0f2c);
  margin: 0;
  line-height: 1.05;
}

/* Featured dark card */
.mdf-blog-featured-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: center;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  border-radius: 1rem;
  background: #12131a;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  min-height: 18rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mdf-blog-featured-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(13, 15, 44, 0.25);
}

.mdf-blog-featured-card__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 85% 40%, rgba(62, 87, 218, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 70% 80%, rgba(128, 152, 249, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.mdf-blog-featured-card__content {
  position: relative;
  z-index: 1;
}

.mdf-blog-featured-card__meta {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1rem;
}

.mdf-blog-featured-card__dot {
  margin: 0 0.35rem;
}

.mdf-blog-featured-card__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 1rem;
  max-width: 32rem;
}

.mdf-blog-featured-card__desc {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 1.5rem;
  max-width: 30rem;
}

.mdf-blog-featured-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mdf-blog-featured-card__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
}

.mdf-blog-featured-card__author-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.mdf-blog-featured-card__author-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
}

.mdf-blog-featured-card__author-role {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.mdf-blog-featured-card__visual {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 12rem;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mdf-blog-featured-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Filter tabs + RSS */
.mdf-blog-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--grey-200, #e6eaf4);
  margin-bottom: 2.5rem;
}

.mdf-blog-filters--tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 0;
}

.mdf-blog-tab {
  appearance: none;
  border: none;
  background: none;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--grey-600, #667085);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
}

.mdf-blog-tab:hover {
  color: var(--base-dark, #0d0f2c);
}

.mdf-blog-tab.is-active {
  color: var(--base-dark, #0d0f2c);
  font-weight: 500;
  border-bottom-color: var(--indigo-500-main, #3e57da);
}

.mdf-blog-rss {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 0.5rem;
  margin-bottom: -1px;
  color: var(--grey-600, #667085);
  transition: color 0.15s;
}

.mdf-blog-rss:hover {
  color: var(--indigo-500-main, #3e57da);
}

.mdf-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--indigo-100, #f5f8ff);
  color: var(--indigo-500-main, #3e57da);
  font-size: 0.6875rem;
  font-weight: 600;
  flex-shrink: 0;
}

.mdf-avatar--lg {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.75rem;
}

.mdf-author-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--base-dark, #0d0f2c);
}

.mdf-author-role {
  font-size: 0.8125rem;
  color: var(--grey-600, #667085);
}

.mdf-blog-grid-mint {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.5rem;
}

.mdf-blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.15s ease;
}

.mdf-blog-card:hover {
  opacity: 0.92;
}

.mdf-blog-card__media {
  aspect-ratio: 16 / 10;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--grey-100, #f2f4fd);
  border: 1px solid var(--grey-200, #e6eaf4);
}

.mdf-blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.mdf-blog-card:hover .mdf-blog-card__media img {
  transform: scale(1.04);
}

.mdf-blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--grey-600, #667085);
  margin-bottom: 0.5rem;
}

.mdf-blog-card__category {
  color: var(--grey-600, #667085);
}

.mdf-blog-card__date {
  color: var(--grey-600, #667085);
}

.mdf-blog-card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--base-dark, #0d0f2c);
  margin: 0;
}

.mdf-blog-empty {
  color: var(--grey-600, #667085);
  padding: 3rem 0;
}

/* Blog post detail (Mintlify 3-column) */
.mdf-blog-post-page__hero {
  padding-bottom: 4rem;
}

.mdf-blog-post-container {
  max-width: 72rem;
  margin: 0 auto;
}

.mdf-blog-back {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--grey-600, #667085);
  text-decoration: none;
  margin-bottom: 2rem;
}

.mdf-blog-back:hover {
  color: var(--indigo-500-main, #3e57da);
}

.mdf-blog-post-hero {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

.mdf-blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
}

.mdf-blog-post-meta__category {
  color: var(--indigo-500-main, #3e57da);
}

.mdf-blog-post-meta__date {
  color: var(--grey-600, #667085);
}

.mdf-blog-post-meta__sep {
  color: var(--grey-300, #d0d5dd);
  font-weight: 400;
}

.mdf-blog-post-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--base-dark, #0d0f2c);
  margin: 0 0 1rem;
}

.mdf-blog-post-readtime {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-500, #98a2b3);
  margin: 0 0 1.5rem;
}

.mdf-blog-post-readtime--zh {
  text-transform: none;
  letter-spacing: normal;
  font-weight: 500;
}

.mdf-blog-post-divider {
  border: none;
  border-top: 1px solid var(--grey-200, #e6eaf4);
  margin: 0;
}

.mdf-blog-post-layout {
  display: grid;
  grid-template-columns: 10.5rem minmax(0, 42rem) 11.5rem;
  gap: 2.5rem 3rem;
  justify-content: center;
  align-items: start;
}

.mdf-blog-post-aside--left,
.mdf-blog-post-aside--right {
  position: sticky;
  top: 6rem;
}

.mdf-blog-post-author-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0;
}

.mdf-blog-post-author-block__photo {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
}

.mdf-blog-post-author-block__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--base-dark, #0d0f2c);
  line-height: 1.3;
}

.mdf-blog-post-author-block__role {
  font-size: 0.875rem;
  color: var(--grey-600, #667085);
  margin-top: 0.125rem;
  line-height: 1.3;
}

.mdf-blog-post-share {
  margin-top: 2.5rem;
}

.mdf-blog-post-share__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #9ca3af;
  margin: 0 0 0.875rem;
}

.mdf-blog-post-share__label--caps {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-size: 0.6875rem;
}

.mdf-blog-post-share__icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
}

.mdf-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: #f3f4f6;
  color: #4b5563;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}

.mdf-share-btn svg {
  width: 1.125rem;
  height: 1.125rem;
  display: block;
}

.mdf-share-btn:hover {
  background: #e5e7eb;
  color: #1f2937;
}

.mdf-share-btn.is-copied {
  color: var(--indigo-500-main, #3e57da);
  background: #eef2ff;
}

.mdf-blog-post-main {
  min-width: 0;
}

.mdf-blog-post-cover {
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid var(--grey-200, #e6eaf4);
  background: var(--grey-100, #f2f4fd);
}

.mdf-blog-post-cover img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.mdf-blog-summary {
  background: linear-gradient(135deg, #f5f8ff 0%, #f0fdf4 100%);
  border: 1px solid rgba(62, 87, 218, 0.12);
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.mdf-blog-summary__head {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 0.625rem;
}

.mdf-blog-summary__icon {
  color: var(--indigo-500-main, #3e57da);
  flex-shrink: 0;
}

.mdf-blog-summary__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--indigo-500-main, #3e57da);
  margin: 0;
}

.mdf-blog-summary__text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--grey-700, #475467);
  margin: 0;
}

.mdf-blog-toc__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-500, #98a2b3);
  margin: 0 0 1rem;
}

.mdf-blog-toc {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.mdf-blog-toc__link {
  display: block;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--grey-600, #667085);
  text-decoration: none;
  padding-left: 0.75rem;
  border-left: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.mdf-blog-toc__link:hover {
  color: var(--base-dark, #0d0f2c);
}

.mdf-blog-toc__link.is-active {
  color: var(--base-dark, #0d0f2c);
  font-weight: 500;
  border-left-color: var(--base-dark, #0d0f2c);
}

.mdf-blog-article {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--grey-700, #475467);
}

.mdf-blog-article h2 {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--base-dark, #0d0f2c);
  margin: 2.5rem 0 0.75rem;
  letter-spacing: -0.01em;
  scroll-margin-top: 6rem;
}

.mdf-blog-article h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--base-dark, #0d0f2c);
  margin: 1.75rem 0 0.5rem;
}

.mdf-blog-article p {
  margin: 0 0 1.25rem;
}

.mdf-blog-article ul,
.mdf-blog-article ol {
  padding-left: 1.25rem;
  margin: 0 0 1.25rem;
}

.mdf-blog-article li {
  margin-bottom: 0.375rem;
}

.mdf-blog-article a {
  color: var(--indigo-500-main, #3e57da);
}

.mdf-blog-article table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9375rem;
}

.mdf-blog-article th,
.mdf-blog-article td {
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--grey-200, #e6eaf4);
  text-align: left;
}

.mdf-blog-article th {
  background: var(--grey-100, #f2f4fd);
  font-weight: 600;
  color: var(--base-dark, #0d0f2c);
}

.mdf-blog-article code {
  background: var(--grey-100, #f2f4fd);
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-size: 0.875em;
}

.mdf-blog-article pre {
  background: var(--grey-100, #f2f4fd);
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  overflow-x: auto;
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
}

.mdf-blog-related {
  grid-column: 2 / -1;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--grey-200, #e6eaf4);
}

.mdf-blog-related__title {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--base-dark, #0d0f2c);
  margin: 0 0 1.75rem;
}

.mdf-blog-related__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 1.5rem;
}

.mdf-blog-related-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.15s ease;
}

.mdf-blog-related-card:hover {
  opacity: 0.88;
}

.mdf-blog-related-card__media {
  aspect-ratio: 16 / 10;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--grey-100, #f2f4fd);
  border: 1px solid var(--grey-200, #e6eaf4);
}

.mdf-blog-related-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.mdf-blog-related-card:hover .mdf-blog-related-card__media img {
  transform: scale(1.03);
}

.mdf-blog-related-card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--base-dark, #0d0f2c);
  margin: 0 0 0.625rem;
}

.mdf-blog-related-card__desc {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--grey-600, #667085);
  margin: 0 0 0.875rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mdf-blog-related-card__date {
  display: block;
  font-size: 0.8125rem;
  color: #9ca3af;
}

/* Newsletter (TOC sidebar + mobile) */
.mdf-blog-newsletter {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--grey-200, #e6eaf4);
}

.mdf-blog-newsletter--mobile {
  display: none;
}

.mdf-blog-newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mdf-blog-newsletter__input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--grey-200, #e6eaf4);
  border-radius: var(--border-radius-xsmall, 0.5rem);
  background: var(--white, #fff);
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--base-dark, #0d0f2c);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.mdf-blog-newsletter__input::placeholder {
  color: var(--grey-500, #98a2b3);
}

.mdf-blog-newsletter__input:focus {
  outline: none;
  border-color: var(--indigo-300, #a4bcfd);
  box-shadow: 0 0 0 3px rgba(62, 87, 218, 0.12);
}

.mdf-blog-newsletter__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mdf-blog-newsletter__btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  text-decoration: none;
}

.mdf-blog-newsletter__btn > div {
  width: 100%;
  text-align: center;
}

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

@media screen and (max-width: 1100px) {
  .mdf-blog-post-layout {
    grid-template-columns: 9rem minmax(0, 1fr);
  }

  .mdf-blog-post-aside--right {
    display: none;
  }

  .mdf-blog-newsletter--mobile {
    display: block;
    margin-top: 3rem;
  }

  .mdf-blog-related {
    grid-column: 1 / -1;
  }
}

@media screen and (max-width: 767px) {
  .mdf-blog-post-layout {
    grid-template-columns: 1fr;
  }

  .mdf-blog-post-aside--left {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--grey-200, #e6eaf4);
    margin-bottom: 1.5rem;
  }

  .mdf-blog-post-author-block {
    flex-direction: row;
    align-items: center;
  }

  .mdf-blog-post-share {
    margin-top: 1.5rem;
    margin-left: 0;
    width: 100%;
  }

  .mdf-blog-related__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Legal (Mintlify-inspired) ── */
.mdf-legal-layout {
  display: grid;
  grid-template-columns: 14rem minmax(0, 1fr);
  gap: 4rem;
  align-items: start;
}

.mdf-legal-sidebar {
  position: sticky;
  top: 6rem;
}

.mdf-legal-sidebar__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-600, #667085);
  margin: 0 0 1rem;
}

.mdf-legal-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.mdf-legal-sidebar__link {
  display: block;
  font-size: 0.875rem;
  color: var(--grey-600, #667085);
  text-decoration: none;
  padding: 0.375rem 0;
  line-height: 1.4;
  transition: color 0.15s;
}

.mdf-legal-sidebar__link:hover {
  color: var(--base-dark, #0d0f2c);
}

.mdf-legal-sidebar__link.is-active {
  color: var(--base-dark, #0d0f2c);
  font-weight: 600;
}

.mdf-legal-sidebar__locale {
  margin: 1.5rem 0 0;
  font-size: 0.875rem;
}

.mdf-legal-sidebar__locale a {
  color: var(--indigo-500-main, #3e57da);
  text-decoration: none;
}

.mdf-legal-main {
  max-width: 42rem;
}

.mdf-legal-main__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--base-dark, #0d0f2c);
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.mdf-legal-main__dates {
  font-size: 0.875rem;
  color: var(--grey-600, #667085);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--grey-200, #e6eaf4);
}

.mdf-legal-main__dates-sep {
  margin: 0 0.35rem;
}

.mdf-legal-main h2,
.mdf-legal-main .heading-xsmall {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--base-dark, #0d0f2c);
  margin: 2.5rem 0 0.75rem;
  letter-spacing: -0.01em;
}

.mdf-legal-main h3,
.mdf-legal-main .paragraph-large.is-medium {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--base-dark, #0d0f2c);
  margin: 1.5rem 0 0.5rem;
}

.mdf-legal-main p,
.mdf-legal-main .paragraph-medium {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--grey-700, #475467);
  margin: 0 0 1rem;
}

.mdf-legal-main ul,
.mdf-legal-main ol {
  padding-left: 1.25rem;
  margin: 0 0 1rem;
}

.mdf-legal-main li {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--grey-700, #475467);
  margin-bottom: 0.375rem;
}

.mdf-legal-main a {
  color: var(--indigo-500-main, #3e57da);
}

/* ── Product page (Stripe-inspired) ── */
:root {
  --mdf-navbar-height: 4.475rem;
  --mdf-product-subnav-height: 2.75rem;
}

body:has(.mdf-product-page) .navbar[variant="light"],
body:has(.mdf-solution-page) .navbar[variant="light"] {
  background-color: var(--white, #fff);
  box-shadow: none;
}

body:has(.mdf-product-page) .navbar[variant="light"]:not(.is-open) .navbar_mobile-container,
body:has(.mdf-solution-page) .navbar[variant="light"]:not(.is-open) .navbar_mobile-container {
  background-color: var(--white, #fff);
  border-bottom-color: transparent;
}

.mdf-product-page {
  padding-top: 0;
}

.mdf-product-page [id] {
  scroll-margin-top: calc(var(--mdf-navbar-height) + var(--mdf-product-subnav-height));
}

/* Unified header: subnav + hero (Stripe Payments layout) */
.mdf-product-header {
  position: relative;
  overflow: visible;
  background: var(--white, #fff);
  display: flex;
  flex-direction: column;
}

.mdf-product-header__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, transparent calc(25% - 0.5px), rgba(99, 102, 241, 0.12) calc(25% - 0.5px), rgba(99, 102, 241, 0.12) calc(25% + 0.5px), transparent calc(25% + 0.5px)),
    linear-gradient(90deg, transparent calc(75% - 0.5px), rgba(99, 102, 241, 0.12) calc(75% - 0.5px), rgba(99, 102, 241, 0.12) calc(75% + 0.5px), transparent calc(75% + 0.5px));
  mask-image: linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
}

.mdf-product-header__slant {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -8%;
  height: min(52vw, 28rem);
  pointer-events: none;
  z-index: 0;
  transform: rotate(-7deg);
  transform-origin: center bottom;
  clip-path: inset(0 -10% -10% -10%);
  background:
    radial-gradient(ellipse 55% 70% at 18% 85%, rgba(34, 211, 238, 0.85) 0%, transparent 58%),
    radial-gradient(ellipse 50% 65% at 52% 90%, rgba(99, 102, 241, 0.9) 0%, transparent 55%),
    radial-gradient(ellipse 45% 60% at 82% 80%, rgba(168, 85, 247, 0.88) 0%, transparent 52%),
    linear-gradient(105deg, rgba(34, 211, 238, 0.55) 0%, rgba(99, 102, 241, 0.65) 42%, rgba(168, 85, 247, 0.7) 100%);
  filter: blur(0.5px);
}

.mdf-product-subnav {
  position: sticky;
  z-index: 2;
  flex-shrink: 0;
  background: var(--white, #fff);
  border-bottom: 1px solid var(--grey-200, #e6eaf4);
}

.mdf-product-subnav[data-sticky-section] {
  top: var(--mdf-navbar-height) !important;
}

.mdf-product-subnav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.75rem;
  overflow-x: auto;
}

.mdf-product-subnav__product {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--indigo-500-main, #3e57da);
  white-space: nowrap;
}

.mdf-product-subnav__links {
  display: flex;
  gap: 1.5rem;
  flex-shrink: 0;
}

.mdf-product-subnav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey-600, #667085);
  text-decoration: none;
  white-space: nowrap;
  padding: 0.125rem 0;
}

.mdf-product-subnav__links a:hover {
  color: var(--indigo-500-main, #3e57da);
}

.mdf-product-hero {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  padding: clamp(3.5rem, 5.5vw, 5.5rem) 0 clamp(4rem, 6vw, 6rem);
  background: transparent;
}

.mdf-product-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.mdf-product-hero__title {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  line-height: 1.12;
  font-weight: 700;
  color: var(--base-dark, #101828);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.mdf-product-hero__desc {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--grey-700, #475467);
  margin: 0 0 1.75rem;
  max-width: 32rem;
}

.mdf-product-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.mdf-product-hero__visual {
  position: relative;
  z-index: 1;
}

.mdf-product-hero__visual img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-base, 0.75rem);
  box-shadow: 0 16px 56px rgba(16, 24, 40, 0.14);
}

.mdf-product-pillars {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 4rem;
  background: var(--white, #fff);
  border-bottom: 1px solid var(--grey-200, #e6eaf4);
}

.mdf-product-pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.mdf-product-pillar {
  padding: 0;
}

.mdf-product-pillar__icon {
  display: block;
  margin-bottom: 1.25rem;
  line-height: 0;
}

.mdf-product-pillar__icon svg {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
}

.mdf-product-pillar__heading {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.625rem;
}

.mdf-product-pillar__accent {
  flex-shrink: 0;
  width: 2px;
  height: 1.125rem;
  margin-top: 0.2rem;
  background: linear-gradient(180deg, #7c3aed, #6366f1);
  border-radius: 1px;
}

.mdf-product-pillar__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--base-dark, #101828);
  margin: 0;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.mdf-product-pillar__desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--grey-700, #475467);
  margin: 0;
}

.mdf-product-proof {
  padding: 2.5rem 0;
  background: var(--grey-100, #f2f4fd);
  border-bottom: 1px solid var(--grey-200, #e6eaf4);
}

.mdf-product-proof__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  text-align: center;
}

.mdf-product-proof__stat {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--indigo-500-main, #3e57da);
  letter-spacing: -0.02em;
}

.mdf-product-proof__label {
  font-size: 1rem;
  color: var(--grey-700, #475467);
  margin: 0;
  max-width: 20rem;
  text-align: left;
}

.mdf-product-spotlights {
  padding: 2rem 0 0;
}

.mdf-product-spotlight {
  padding: 4rem 0;
  border-bottom: 1px solid var(--grey-200, #e6eaf4);
}

.mdf-product-spotlight__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.mdf-product-spotlight--reverse .mdf-product-spotlight__grid {
  direction: rtl;
}

.mdf-product-spotlight--reverse .mdf-product-spotlight__grid > * {
  direction: ltr;
}

.mdf-product-spotlight__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--indigo-500-main, #3e57da);
  margin: 0 0 0.5rem;
}

.mdf-product-spotlight__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--base-dark, #101828);
  margin: 0 0 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.mdf-product-spotlight__desc {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--grey-700, #475467);
  margin: 0 0 1.5rem;
  max-width: 28rem;
}

.mdf-product-spotlight__stat {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--grey-200, #e6eaf4);
  max-width: 20rem;
}

.mdf-product-spotlight__stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--indigo-500-main, #3e57da);
  letter-spacing: -0.02em;
}

.mdf-product-spotlight__stat-label {
  font-size: 0.875rem;
  color: var(--grey-700, #475467);
  line-height: 1.4;
}

.mdf-product-spotlight__visual img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-base, 0.75rem);
  box-shadow: 0 8px 32px 0 var(--shadow, #10182814);
}

.mdf-product-install {
  padding: 4rem 0 5rem;
  background: linear-gradient(180deg, var(--white, #fff) 0%, var(--indigo-100, #f5f8ff) 100%);
}

.mdf-product-install__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.mdf-product-install__steps {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--grey-700, #475467);
  line-height: 1.75;
}

.mdf-product-install__steps li {
  margin-bottom: 0.5rem;
}

.mdf-product-install__visual img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-base, 0.75rem);
  box-shadow: 0 8px 32px 0 var(--shadow, #10182814);
}

/* ── Solution page (Stripe SaaS-style deep dives) ── */
.mdf-product-header--solution {
  background: #f6f9fc;
}

.mdf-product-header--solution .mdf-product-subnav--solution {
  background: #f6f9fc;
  border-bottom-color: rgba(99, 102, 241, 0.12);
}

.mdf-product-header__grid--solution {
  opacity: 0.35;
}

.mdf-product-header__slant--solution {
  left: auto;
  right: -8%;
  width: min(58%, 36rem);
  height: min(36vw, 20rem);
  bottom: -2%;
  transform: rotate(-10deg);
  transform-origin: right bottom;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  background:
    radial-gradient(ellipse 80% 90% at 70% 60%, rgba(99, 102, 241, 0.95) 0%, transparent 62%),
    linear-gradient(145deg, #6d5efc 0%, #635bff 45%, #7c3aed 100%);
  filter: none;
}

.mdf-product-hero--solution {
  padding-bottom: clamp(3.5rem, 5vw, 5rem);
}

.mdf-hero-text-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--indigo-500-main, #3e57da);
  text-decoration: none;
  padding: 0.625rem 0.25rem;
}

.mdf-hero-text-link:hover {
  color: var(--indigo-600, #4f46e5);
}

.mdf-solution-trust {
  background: #f6f9fc;
  border-top: 1px solid var(--grey-200, #e6eaf4);
  border-bottom: 1px solid var(--grey-200, #e6eaf4);
  padding: 1.75rem 0;
}

.mdf-solution-trust__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.mdf-solution-trust__list a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--grey-600, #667085);
  text-decoration: none;
}

.mdf-solution-trust__list a:hover {
  color: var(--indigo-500-main, #3e57da);
}

.mdf-solution-hero__label {
  margin-bottom: 0.75rem;
}

.mdf-product-pillars--solution {
  padding-top: 4rem;
}

.mdf-product-pillars--why {
  background: #f6f9fc;
  border-top: 1px solid var(--grey-200, #e6eaf4);
}

.mdf-solution-dive--product {
  padding-bottom: 5rem;
}

.mdf-product-pillars--solution .mdf-solution-dive__intro {
  margin-bottom: 2.5rem;
}

.mdf-solution-dive {
  position: relative;
  padding: 4.5rem 0;
  background: var(--white, #fff);
  border-bottom: none;
}

.mdf-solution-dive__edge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5rem;
  pointer-events: none;
  background: linear-gradient(175deg, #f6f9fc 0%, #f6f9fc 42%, transparent 42%);
  transform: skewY(-1.5deg);
  transform-origin: top left;
}

.mdf-solution-dive--soft {
  background: var(--white, #fff);
}

.mdf-solution-dive__intro {
  max-width: 40rem;
  margin-bottom: 3rem;
}

.mdf-solution-dive__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--indigo-500-main, #3e57da);
  margin: 0 0 0.5rem;
}

.mdf-solution-dive__title {
  font-size: clamp(1.75rem, 3vw, 2.375rem);
  font-weight: 700;
  color: var(--base-dark, #101828);
  margin: 0 0 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.mdf-solution-dive__desc {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--grey-700, #475467);
  margin: 0;
}

.mdf-solution-dive__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.mdf-solution-dive--reverse .mdf-solution-dive__grid {
  direction: rtl;
}

.mdf-solution-dive--reverse .mdf-solution-dive__grid > * {
  direction: ltr;
}

.mdf-solution-dive__features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mdf-solution-dive__feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.mdf-solution-dive__feature .mdf-product-pillar__icon {
  margin-bottom: 0;
}

.mdf-solution-dive__feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--base-dark, #101828);
  margin: 0;
  line-height: 1.35;
}

.mdf-solution-dive__feature-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--grey-700, #475467);
  margin: 0.375rem 0 0;
}

.mdf-solution-dive__features--list {
  gap: 1.5rem;
}

.mdf-solution-dive__points {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--grey-700, #475467);
  line-height: 1.75;
}

.mdf-solution-dive__points li {
  margin-bottom: 0.5rem;
}

.mdf-solution-dive__visual img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-base, 0.75rem);
  box-shadow: 0 12px 48px rgba(16, 24, 40, 0.12);
}

@media screen and (max-width: 991px) {
  .mdf-grid-3,
  .mdf-grid-4,
  .mdf-steps,
  .mdf-pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mdf-blog-featured-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .mdf-blog-featured-card__visual {
    min-height: 10rem;
    order: -1;
  }

  .mdf-blog-grid-mint {
    grid-template-columns: 1fr 1fr;
  }

  .mdf-legal-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mdf-legal-sidebar {
    position: static;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--grey-200, #e6eaf4);
  }

  .mdf-legal-sidebar__nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }

  .mdf-product-hero__grid,
  .mdf-product-spotlight__grid,
  .mdf-product-install__inner,
  .mdf-solution-dive__grid {
    grid-template-columns: 1fr;
  }

  .mdf-solution-dive--reverse .mdf-solution-dive__grid {
    direction: ltr;
  }

  .mdf-product-pillars__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .mdf-product-spotlight--reverse .mdf-product-spotlight__grid {
    direction: ltr;
  }
}

@media screen and (max-width: 767px) {
  .mdf-grid-3,
  .mdf-grid-4,
  .mdf-steps,
  .mdf-pricing-grid,
  .mdf-blog-grid-mint {
    grid-template-columns: 1fr;
  }

  .mdf-blog-related__grid {
    grid-template-columns: 1fr;
  }

  .mdf-product-page [id] {
    scroll-margin-top: calc(var(--mdf-navbar-height) + 5.5rem);
  }

  .mdf-product-header__grid {
    display: none;
  }

  .mdf-product-header__slant {
    left: -15%;
    right: -15%;
    bottom: -5%;
    height: 55vw;
    transform: rotate(-5deg);
  }

  .mdf-product-header__slant--solution {
    left: auto;
    right: -20%;
    width: 75%;
    height: 42vw;
    max-height: 14rem;
  }

  .mdf-solution-trust__list {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1rem;
  }

  .mdf-product-subnav {
    position: relative;
    top: auto !important;
  }

  .mdf-product-subnav[data-sticky-section] {
    top: auto !important;
  }

  .mdf-product-hero {
    padding: 2rem 0 3rem;
  }

  .mdf-product-subnav__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.625rem;
    min-height: 0;
    padding: 0.75rem 0;
    overflow: visible;
  }

  .mdf-product-subnav__product {
    font-size: 0.875rem;
  }

  .mdf-product-subnav__links {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.125rem;
  }

  .mdf-product-subnav__links::-webkit-scrollbar {
    display: none;
  }

  .mdf-product-subnav__links a {
    font-size: 0.8125rem;
    flex-shrink: 0;
  }

  .mdf-product-hero__grid {
    gap: 2rem;
  }

  .mdf-product-hero__title {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
    line-height: 1.15;
  }

  .mdf-product-hero__desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }

  .mdf-product-hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.625rem;
  }

  .mdf-product-hero__actions .button,
  .mdf-product-hero__actions .button-secondary {
    display: flex;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .mdf-product-hero__visual img {
    box-shadow: 0 8px 32px rgba(16, 24, 40, 0.12);
  }

  .mdf-product-pillars {
    padding: 2.5rem 0 3rem;
  }

  .mdf-product-pillars__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mdf-product-pillar:last-child {
    padding-bottom: 0;
  }

  .mdf-product-spotlight {
    padding: 2.5rem 0;
  }

  .mdf-product-spotlight__title {
    font-size: clamp(1.5rem, 5vw, 1.875rem);
  }

  .mdf-product-spotlight__desc {
    font-size: 1rem;
  }

  .mdf-product-install {
    padding: 2.5rem 0 3rem;
  }

  .mdf-solution-dive {
    padding: 2.5rem 0;
  }

  .mdf-solution-dive__intro {
    margin-bottom: 2rem;
  }

  .mdf-solution-dive__feature {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .mdf-solution-dive__features--list .button {
    display: flex;
    width: 100%;
    justify-content: center;
  }

  .mdf-solution-products {
    grid-template-columns: 1fr;
  }
}

/* ── Solution recommended products (Stripe-style stack) ── */
.mdf-product-pillars--solution .mdf-product-pillars__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mdf-solution-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.mdf-solution-product {
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--grey-200, #e6eaf4);
  border-radius: var(--border-radius-base, 0.75rem);
  background: var(--white, #fff);
}

.mdf-solution-product--soon {
  background: var(--grey-100, #f2f4fd);
}

.mdf-solution-product__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.mdf-solution-product__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--base-dark, #101828);
  margin: 0;
}

.mdf-solution-product__name a {
  color: inherit;
  text-decoration: none;
}

.mdf-solution-product__name a:hover {
  color: var(--indigo-500-main, #3e57da);
}

.mdf-solution-product__badge {
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  white-space: nowrap;
}

.mdf-solution-product__badge--live {
  background: var(--indigo-100, #f5f8ff);
  color: var(--indigo-500-main, #3e57da);
}

.mdf-solution-product__badge--coming_soon {
  background: var(--grey-200, #e6eaf4);
  color: var(--grey-600, #667085);
}

.mdf-solution-product__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--grey-700, #475467);
  margin: 0;
}

.mdf-solution-addons {
  margin-bottom: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--grey-200, #e6eaf4);
}

.mdf-solution-addons__label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--grey-600, #667085);
  margin: 0 0 0.75rem;
}

.mdf-solution-addons__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.mdf-solution-addons__list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
}

.mdf-solution-addons__desc {
  color: var(--grey-700, #475467);
}

.mdf-solution-products__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

@media screen and (max-width: 767px) {
  .mdf-product-pillars--solution .mdf-product-pillars__grid {
    grid-template-columns: 1fr;
  }
}
