/* Shared marketing + legal shell (used with Tailwind CDN) */

/* Hero eyebrow pill (marketing pages — same look site-wide; add e.g. mb-md in HTML for spacing below) */
.mv-hero-pill {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 6px 14px;
  border-radius: 9999px;
  font-family: 'Be Vietnam Pro', ui-sans-serif, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: #d9e6d5;
  color: #131e14;
  border: 1px solid rgba(19, 30, 20, 0.14);
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.mv-bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.mv-glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid #d9e6d5;
}

.mv-faq details summary {
  list-style: none;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
}

.mv-faq details summary::-webkit-details-marker {
  display: none;
}

/* Store badges (matches website/en/index.html hero) */

.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  border: none;
  cursor: pointer;
  height: 60px;
  min-height: 60px;
  max-height: 60px;
  width: 200px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.store-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.store-button:hover::before {
  left: 100%;
}

.store-button:hover {
  opacity: 0.9;
  transform: scale(1.05) translateY(-2px);
  filter: brightness(1.1);
}

.store-button:active {
  transform: scale(0.97) translateY(0);
}

.store-badge {
  height: 60px;
  width: 200px;
  object-fit: contain;
  object-position: center;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.document-iframe {
  width: 100%;
  height: calc(100vh - 220px);
  min-height: 560px;
  border: none;
  border-radius: 0.75rem;
  background: #fff;
}

@media (max-width: 768px) {
  .document-iframe {
    height: calc(100vh - 200px);
    min-height: 480px;
  }
}

/* Blog article prose */
.mv-article-prose {
  font-size: 1rem;
  line-height: 1.75;
  color: #131e14;
}

.mv-article-prose > * + * {
  margin-top: 1.25rem;
}

.mv-article-prose h2 {
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #131e14;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.mv-article-prose h3 {
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
  color: #131e14;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

.mv-article-prose ul,
.mv-article-prose ol {
  padding-left: 1.5rem;
}

.mv-article-prose ul {
  list-style-type: disc;
}

.mv-article-prose ol {
  list-style-type: decimal;
}

.mv-article-prose li + li {
  margin-top: 0.5rem;
}

.mv-article-prose a {
  color: #006857;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.mv-article-prose a:hover {
  color: #004d42;
}

.mv-article-prose strong {
  font-weight: 600;
}

.mv-article-prose hr {
  border: none;
  border-top: 1px solid rgba(19, 30, 20, 0.12);
  margin: 2rem 0;
}

.mv-article-prose .mv-checklist {
  list-style: none;
  padding-left: 0;
}

.mv-article-prose .mv-checklist li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.mv-article-prose .mv-checklist li::before {
  content: '☐';
  flex-shrink: 0;
  color: #006857;
  font-size: 1.1em;
  line-height: 1.5;
}

.mv-article-prose .mv-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: 0.75rem;
  border: 1px solid rgba(19, 30, 20, 0.12);
}

.mv-article-prose table {
  width: 100%;
  min-width: 36rem;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.mv-article-prose th,
.mv-article-prose td {
  border-bottom: 1px solid rgba(19, 30, 20, 0.1);
  padding: 0.625rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

.mv-article-prose th {
  background-color: #f4f7f2;
  font-weight: 600;
}

.mv-article-prose tr:last-child td {
  border-bottom: none;
}

.mv-article-prose figure.mv-article-figure {
  margin: 2rem auto;
  max-width: 22rem;
}

.mv-article-prose figure.mv-article-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
  border: 1px solid rgba(19, 30, 20, 0.12);
  box-shadow: 0 8px 24px rgba(19, 30, 20, 0.08);
}

.mv-article-prose figure.mv-article-figure figcaption {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: #4a5a4c;
  text-align: center;
}
