/* 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;
  }
}
