/**
 * Maestro Parents - marketing landing (RTL, Hebrew-first)
 * Warm paper / journal aesthetic, soft motion, non-clinical.
 */
:root {
  --mp-cream: #faf7f2;
  --mp-paper: #fffdf9;
  --mp-ink: #2c2620;
  --mp-muted: #6b5e54;
  --mp-gold: #c9a227;
  --mp-gold-soft: #e8d49a;
  --mp-blush: #f3ebe4;
  --mp-sage: #9aab95;
  --mp-radius-xl: 28px;
  --mp-radius-lg: 20px;
  --mp-shadow-soft: 0 18px 50px rgba(44, 38, 32, 0.08);
  --mp-shadow-card: 0 12px 40px rgba(44, 38, 32, 0.06);
  --mp-max: 1240px;
  --mp-font-display: "Rubik", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mp-font-body: "Assistant", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.mp-landing {
  margin: 0;
  font-family: var(--mp-font-body);
  color: var(--mp-ink);
  background: var(--mp-cream);
  direction: rtl;
  text-align: right;
  line-height: 1.82;
  -webkit-font-smoothing: antialiased;
}

body.mp-landing h1,
body.mp-landing h2,
body.mp-landing h3,
body.mp-landing h4,
body.mp-landing h5,
body.mp-landing h6 {
  font-family: var(--mp-font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Inline emphasis (replaces decorative guillemets) */
body.mp-landing .mp-em {
  font-size: 1.065em;
  font-weight: 600;
  color: var(--mp-ink);
  letter-spacing: -0.012em;
}

.mp-t-slide blockquote .mp-em {
  font-size: 1.06em;
  font-weight: 600;
}

body.mp-landing .mp-grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* iOS Safari: full-screen SVG noise + stacked blurs often crash the tab */
@media (max-width: 768px) {
  body.mp-landing .mp-grain {
    display: none;
  }

  .mp-nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 253, 249, 0.97);
  }

  .mp-hero__veil--blur {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

html.mp-light-media body.mp-landing .mp-grain {
  display: none;
}

.mp-wrap {
  position: relative;
  z-index: 1;
}

/* --- Nav --- */
.mp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255, 253, 249, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(44, 38, 32, 0.06);
  transition: box-shadow 0.35s ease;
}

.mp-nav.is-scrolled {
  box-shadow: var(--mp-shadow-soft);
}

.mp-brand {
  font-family: var(--mp-font-body);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--mp-ink);
  text-decoration: none;
}

.mp-brand span {
  color: var(--mp-gold);
}

.mp-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mp-nav-links a {
  font-family: var(--mp-font-body);
  color: var(--mp-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  line-height: 1.5;
  transition: color 0.2s;
}

.mp-nav-links a:hover {
  color: var(--mp-ink);
}

.mp-nav-cta {
  font-family: var(--mp-font-body);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  background: linear-gradient(135deg, #d4b84a, var(--mp-gold));
  color: #fff;
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.mp-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(201, 162, 39, 0.4);
}

.mp-nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .mp-nav-toggle {
    display: block;
  }

  .mp-nav-cta--bar {
    display: none;
  }

  .mp-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: var(--mp-paper);
    border-radius: var(--mp-radius-lg);
    box-shadow: var(--mp-shadow-soft);
    border: 1px solid rgba(44, 38, 32, 0.06);
  }

  .mp-nav-links.is-open {
    display: flex;
  }

  .mp-nav-links__cta-item {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(44, 38, 32, 0.08);
    list-style: none;
  }

  .mp-nav-cta--in-menu {
    display: flex;
    width: 100%;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }
}

@media (min-width: 901px) {
  .mp-nav-links__cta-item {
    display: none;
  }
}

/* --- Hero --- */
.mp-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 120px 32px 88px;
  overflow: hidden;
}

.mp-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.mp-hero__video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.04);
  animation: mpHeroKen 28s ease-in-out infinite alternate;
}

@media (max-width: 768px) {
  .mp-hero__video {
    animation: none;
    transform: scale(1.02);
    filter: saturate(1.03) contrast(1.01);
  }
}

@keyframes mpHeroKen {
  0% {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.09) translate3d(-1.2%, 0.6%, 0);
  }
}

.mp-hero__fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  background-color: #f5ebe0;
  background-image: linear-gradient(
      145deg,
      rgba(232, 223, 212, 0.72) 0%,
      rgba(245, 235, 224, 0.55) 40%,
      rgba(250, 244, 236, 0.45) 100%
    ),
    var(--mp-hero-poster, none);
  background-size: 200% 200%, cover;
  background-position: 0% 50%, center;
  background-repeat: no-repeat;
  transition: opacity 0.45s ease;
}

.mp-hero__fallback.is-active {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .mp-hero__fallback {
    opacity: 1;
    animation: none;
    background-size: cover, cover;
    background-position: center, center;
  }

  .mp-hero__video {
    opacity: 0 !important;
    pointer-events: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .mp-hero__fallback.is-active {
    animation: mpHeroDrift 18s ease-in-out infinite;
  }
}

@keyframes mpHeroDrift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.mp-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(250, 247, 242, 0.97) 0%,
    rgba(250, 247, 242, 0.55) 38%,
    rgba(44, 38, 32, 0.25) 100%
  );
  z-index: 2;
}

.mp-hero__veil--blur {
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.mp-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--mp-max);
  margin: 0 auto;
  width: 100%;
}

/* Hero ambient audio toggle */
.mp-hero__audio-wrap {
  position: absolute;
  z-index: 3;
  bottom: clamp(22px, 4vw, 44px);
  left: clamp(18px, 3vw, 32px);
  right: auto;
}

.mp-hero-audio {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: rgba(44, 38, 32, 0.72);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(44, 38, 32, 0.08);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease;
}

.mp-hero-audio:hover {
  transform: scale(1.07);
  background: rgba(255, 253, 249, 0.92);
  color: var(--mp-ink);
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: 0 10px 28px rgba(44, 38, 32, 0.12);
}

.mp-hero-audio:focus-visible {
  outline: 2px solid var(--mp-gold);
  outline-offset: 3px;
}

.mp-hero-audio.is-playing {
  color: var(--mp-ink);
  border-color: rgba(201, 162, 39, 0.5);
  background: rgba(255, 253, 249, 0.88);
}

.mp-hero-audio.is-remembered:not(.is-playing) {
  border-color: rgba(201, 162, 39, 0.35);
}

.mp-hero-audio__icon {
  position: relative;
  z-index: 2;
  display: block;
  opacity: 0.88;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mp-hero-audio.is-playing .mp-hero-audio__icon {
  opacity: 1;
  transform: scale(1.04);
}

.mp-hero-audio__waves {
  position: absolute;
  inset: -4px;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.mp-hero-audio.is-playing .mp-hero-audio__waves {
  opacity: 1;
}

.mp-hero-audio__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.42);
  animation: mpHeroAudioRing 2.4s ease-out infinite;
}

.mp-hero-audio__ring:nth-child(2) {
  animation-delay: 0.75s;
}

.mp-hero-audio__ring:nth-child(3) {
  animation-delay: 1.5s;
}

@keyframes mpHeroAudioRing {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.75);
    opacity: 0;
  }
}

.mp-hero-audio__wave {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mp-hero-audio.is-playing .mp-hero-audio__wave {
  opacity: 0.75;
}

@media (max-width: 768px) {
  .mp-hero__audio-wrap {
    bottom: clamp(18px, 3.5vw, 28px);
    left: clamp(14px, 2.5vw, 20px);
  }

  .mp-hero-audio {
    width: 40px;
    height: 40px;
  }

  .mp-hero-audio__icon {
    width: 18px;
    height: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mp-hero-audio__ring {
    animation: none;
  }

  .mp-hero-audio:hover {
    transform: none;
  }
}

.mp-hero__float {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  opacity: 0.55;
}

.mp-hero__float--star {
  top: 18%;
  inset-inline-start: 8%;
  font-size: 1.4rem;
  animation: mpFloat 6s ease-in-out infinite;
}

.mp-hero__float--spark {
  top: 28%;
  inset-inline-end: 10%;
  font-size: 1.1rem;
  animation: mpFloat 5s ease-in-out infinite 0.5s;
}

.mp-hero__float--coin {
  bottom: 38%;
  inset-inline-start: 14%;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f0e4c4, #d4b84a);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.35);
  animation: mpFloat 7s ease-in-out infinite 1s;
}

@keyframes mpFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }
  50% {
    transform: translateY(-14px) rotate(4deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mp-hero__fallback,
  .mp-hero__float--star,
  .mp-hero__float--spark,
  .mp-hero__float--coin {
    animation: none;
  }

  .mp-hero__video {
    animation: none;
    transform: none;
  }
}

.mp-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mp-gold);
  margin-bottom: 12px;
}

.mp-hero h1 {
  font-family: var(--mp-font-display);
  font-size: clamp(2.05rem, 5.2vw, 3.35rem);
  font-weight: 800;
  line-height: 1.26;
  margin: 0 0 clamp(28px, 3.5vw, 42px);
  max-width: min(22em, 100%);
  letter-spacing: -0.015em;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95),
    0 0 18px rgba(255, 255, 255, 0.92),
    0 0 36px rgba(255, 255, 255, 0.75),
    0 6px 28px rgba(255, 255, 255, 0.65);
}

.mp-hero__subhead {
  font-family: var(--mp-font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 500;
  color: var(--mp-ink);
  line-height: 1.45;
  margin: 0 0 22px;
  max-width: min(36ch, 100%);
  opacity: 0.95;
}

.mp-hero__body {
  font-family: var(--mp-font-body);
  font-size: clamp(1.05rem, 2vw, 1.18rem);
  color: var(--mp-muted);
  max-width: min(58ch, 100%);
  margin: 0 0 clamp(36px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.88;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95),
    0 0 14px rgba(255, 255, 255, 0.9),
    0 0 28px rgba(255, 255, 255, 0.72),
    0 5px 22px rgba(255, 255, 255, 0.6);
}

.mp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 8px;
}

.mp-btn-primary {
  font-family: var(--mp-font-body);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.45;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #2c2620, #4a4038);
  box-shadow: var(--mp-shadow-card);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.mp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(44, 38, 32, 0.15);
}

.mp-btn-ghost {
  font-family: var(--mp-font-body);
  display: inline-flex;
  align-items: center;
  padding: 17px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.45;
  text-decoration: none;
  color: var(--mp-ink);
  background: rgba(255, 253, 249, 0.85);
  border: 1px solid rgba(44, 38, 32, 0.1);
  backdrop-filter: blur(8px);
  transition: background 0.2s;
}

.mp-btn-ghost:hover {
  background: var(--mp-paper);
}

.mp-hero__note {
  font-size: 0.95rem;
  color: var(--mp-muted);
  max-width: min(58ch, 100%);
  margin: 0;
  line-height: 1.7;
}

/* --- Sections shared --- */
.mp-section {
  padding: 108px 32px;
  position: relative;
}

.mp-section--paper {
  background: var(--mp-paper);
}

.mp-section--blush {
  background: linear-gradient(180deg, var(--mp-blush) 0%, var(--mp-cream) 100%);
}

.mp-inner {
  max-width: var(--mp-max);
  margin: 0 auto;
}

.mp-section-head {
  margin-bottom: 52px;
}

.mp-section-head h2 {
  font-family: var(--mp-font-display);
  font-size: clamp(1.7rem, 3.6vw, 2.45rem);
  font-weight: 700;
  margin: 0 0 clamp(18px, 2.5vw, 26px);
  line-height: 1.3;
  max-width: min(36em, 100%);
}

.mp-section-head p {
  font-family: var(--mp-font-body);
  margin: 0;
  font-size: 1.12rem;
  color: var(--mp-muted);
  max-width: min(62ch, 100%);
  line-height: 1.88;
}

/* --- Quiz / personalization (landing) --- */
.mp-quiz-personalize {
  position: relative;
  padding: clamp(80px, 11vw, 128px) clamp(24px, 4vw, 40px);
  background: #faf6ef;
  border-block: 1px solid rgba(44, 38, 32, 0.05);
}

.mp-quiz-personalize__inner {
  max-width: min(1180px, 100%);
  margin: 0 auto;
}

.mp-quiz-personalize__split {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

@media (max-width: 820px) {
  .mp-quiz-personalize__split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.mp-quiz-personalize__copy {
  text-align: right;
  max-width: min(52ch, 100%);
}

@media (min-width: 821px) {
  .mp-quiz-personalize__copy {
    justify-self: start;
    width: 100%;
  }
}

.mp-quiz-personalize__headline {
  font-family: var(--mp-font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 clamp(22px, 3vw, 36px);
  color: var(--mp-ink);
  letter-spacing: 0.01em;
}

.mp-quiz-personalize__headline-end {
  white-space: nowrap;
  display: inline;
}

.mp-quiz-personalize__body {
  font-family: var(--mp-font-body);
  font-size: clamp(1.05rem, 1.35vw, 1.18rem);
  line-height: 1.95;
  color: var(--mp-muted);
  margin: 0 0 1.1rem;
  max-width: min(58ch, 100%);
}

.mp-quiz-personalize__copy > .mp-quiz-personalize__body:last-of-type {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.mp-quiz-personalize__cta {
  display: inline-flex;
  margin-bottom: clamp(18px, 2.5vw, 26px);
  text-decoration: none;
}

.mp-quiz-personalize__trust {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  max-width: min(54ch, 100%);
  font-family: var(--mp-font-body);
  font-size: 0.88rem;
  line-height: 1.82;
  color: var(--mp-muted);
  opacity: 0.88;
}

.mp-quiz-personalize__trust-icon {
  flex-shrink: 0;
  margin-top: 3px;
  color: rgba(107, 94, 84, 0.72);
  display: flex;
}

.mp-quiz-personalize__lock-svg {
  display: block;
}

.mp-quiz-personalize__trust-text {
  flex: 1;
  min-width: 0;
}

.mp-quiz-personalize__visual {
  width: 100%;
}

.mp-quiz-personalize__video-shell {
  border-radius: var(--mp-radius-xl);
  overflow: hidden;
  border: 1px solid rgba(44, 38, 32, 0.07);
  box-shadow: var(--mp-shadow-card);
  background: linear-gradient(165deg, #f2ebe2 0%, #ebe4dc 100%);
  max-width: 520px;
  margin-inline: auto;
}

@media (min-width: 821px) {
  .mp-quiz-personalize__video-shell {
    margin-inline: 0;
    margin-inline-start: auto;
    max-width: 100%;
  }
}

.mp-quiz-personalize__vid {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
  opacity: 0.98;
}

/* --- Testimonials carousel --- */
.mp-t-carousel {
  position: relative;
  max-width: min(800px, 100%);
  margin: 0 auto;
}

.mp-t-track {
  overflow: hidden;
  border-radius: var(--mp-radius-xl);
  background: var(--mp-paper);
  border: 1px solid rgba(44, 38, 32, 0.07);
  box-shadow: var(--mp-shadow-soft);
  padding: 40px 32px 48px;
}

.mp-t-slide {
  display: none;
  animation: mpFadeIn 0.5s ease;
}

.mp-t-slide.is-active {
  display: block;
}

@keyframes mpFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mp-t-slide blockquote {
  font-family: var(--mp-font-display);
  margin: 0;
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.88;
  color: var(--mp-ink);
}

.mp-t-slide cite {
  font-family: var(--mp-font-body);
  display: block;
  margin-top: 22px;
  font-style: normal;
  font-weight: 600;
  color: var(--mp-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.mp-t-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.mp-t-nav button {
  font-family: var(--mp-font-body);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(44, 38, 32, 0.12);
  background: var(--mp-paper);
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.2s;
}

.mp-t-nav button:hover {
  background: var(--mp-blush);
}

/* --- About --- */
.mp-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 860px) {
  .mp-about-grid {
    grid-template-columns: 1fr;
  }
}

.mp-about-photo {
  border-radius: var(--mp-radius-xl);
  overflow: hidden;
  box-shadow: var(--mp-shadow-soft);
  aspect-ratio: 4/5;
}

.mp-about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mp-about-copy h2 {
  margin-top: 0;
}

.mp-about-copy p {
  font-family: var(--mp-font-body);
  color: var(--mp-muted);
  margin: 0 0 22px;
  max-width: min(58ch, 100%);
  line-height: 1.9;
  font-size: 1.08rem;
}

/* --- Store teaser --- */
.mp-store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 900px) {
  .mp-store-grid {
    grid-template-columns: 1fr;
  }
}

.mp-store-card {
  border-radius: var(--mp-radius-lg);
  overflow: hidden;
  background: var(--mp-paper);
  border: 1px solid rgba(44, 38, 32, 0.06);
  box-shadow: var(--mp-shadow-card);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.25s;
}

.mp-store-card:hover {
  transform: translateY(-4px);
}

.mp-store-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.mp-store-card__body {
  padding: 18px 18px 22px;
}

.mp-store-card__body h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.mp-store-card__body p {
  font-family: var(--mp-font-body);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.72;
  color: var(--mp-muted);
}

.mp-store-cta-row {
  margin-top: 32px;
  text-align: center;
}

/* --- Final CTA --- */
.mp-final {
  text-align: center;
  padding: 112px 32px;
  position: relative;
  overflow: hidden;
}

.mp-final__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201, 162, 39, 0.18), transparent),
    linear-gradient(180deg, var(--mp-cream), var(--mp-paper));
  z-index: 0;
}

.mp-final__inner {
  position: relative;
  z-index: 1;
  max-width: min(52ch, 100%);
  margin: 0 auto;
}

.mp-final h2 {
  font-family: var(--mp-font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.32;
  margin: 0 0 20px;
}

.mp-final p {
  font-family: var(--mp-font-body);
  color: var(--mp-muted);
  margin: 0 0 32px;
  line-height: 1.88;
  font-size: 1.08rem;
}

/* --- Footer --- */
.mp-footer {
  font-family: var(--mp-font-body);
  padding: 36px 28px 52px;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--mp-muted);
  border-top: 1px solid rgba(44, 38, 32, 0.06);
}

.mp-footer a {
  color: var(--mp-muted);
  margin: 0 10px;
}

.mp-footer a:hover {
  color: var(--mp-ink);
}

/* --- Product photography - two-row layout: hero pair, then three detail shots --- */
.mp-product-grid {
  display: grid;
  gap: clamp(20px, 4vw, 28px);
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .mp-product-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .mp-product-shot:nth-child(1),
  .mp-product-shot:nth-child(2) {
    grid-column: span 3;
  }

  .mp-product-shot:nth-child(3),
  .mp-product-shot:nth-child(4),
  .mp-product-shot:nth-child(5) {
    grid-column: span 2;
  }
}

.mp-product-shot {
  margin: 0;
}

.mp-product-shot img {
  width: 100%;
  border-radius: var(--mp-radius-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--mp-shadow-card);
  border: 1px solid rgba(44, 38, 32, 0.06);
}

.mp-product-shot:nth-child(1) img {
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: linear-gradient(188deg, #faf9f6 0%, #f0ebe3 100%);
}

.mp-product-shot figcaption {
  font-family: var(--mp-font-body);
  margin-top: 12px;
  font-size: 0.92rem;
  color: var(--mp-muted);
  line-height: 1.65;
}

/* --- Practical facts --- */
.mp-facts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
  max-width: min(68ch, 100%);
}

.mp-facts li {
  font-family: var(--mp-font-body);
  position: relative;
  padding-inline-start: 22px;
  line-height: 1.88;
  color: var(--mp-muted);
  font-size: 1.05rem;
}

.mp-facts li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mp-gold);
}

/* --- How it works: stage image grid (2×2) --- */
#how-it-works .mp-section-head {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.mp-how-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 24px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.mp-how-grid__item {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: clamp(12px, 2vw, 16px);
  border-radius: var(--mp-radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(44, 38, 32, 0.06);
  box-shadow: 0 10px 32px rgba(44, 38, 32, 0.06);
}

.mp-how-grid__item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: clamp(8px, 1.2vw, 12px);
}

@media (max-width: 900px) {
  .mp-how-grid {
    grid-template-columns: 1fr;
    gap: clamp(20px, 5vw, 28px);
    max-width: min(32rem, 100%);
    margin-inline: auto;
  }

  .mp-how-grid__item {
    padding: clamp(14px, 3.5vw, 18px);
  }
}

/* --- Founder story (#about) - immediately after hero --- */
.mp-founder {
  background: var(--mp-cream);
  padding: clamp(56px, 9vw, 96px) 0 clamp(64px, 10vw, 104px);
}

.mp-founder__inner {
  max-width: var(--mp-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

.mp-founder__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.mp-founder__figure {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}

.mp-founder__photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
}

.mp-founder__copy {
  min-width: 0;
  text-align: right;
}

.mp-founder__title {
  font-family: var(--mp-font-display);
  font-size: clamp(1.75rem, 4.2vw, 2.45rem);
  font-weight: 700;
  line-height: 1.22;
  color: var(--mp-ink);
  margin: 0 0 clamp(24px, 3.5vw, 36px);
}

.mp-founder__p {
  font-family: var(--mp-font-body);
  font-size: clamp(1.05rem, 1.8vw, 1.16rem);
  line-height: 1.95;
  color: rgba(62, 54, 48, 0.96);
  margin: 0 0 clamp(18px, 2.8vw, 26px);
  max-width: 58ch;
}

.mp-founder__signature {
  margin: clamp(6px, 1.5vw, 12px) 0 clamp(24px, 3.5vw, 34px);
  max-width: 58ch;
  font-family: var(--mp-font-display);
  font-size: clamp(1.12rem, 2.1vw, 1.32rem);
  font-weight: 600;
  font-style: italic;
  color: var(--mp-ink);
  letter-spacing: 0.03em;
}

.mp-founder__more {
  margin-top: clamp(28px, 4vw, 40px);
  padding-top: 0;
}

.mp-founder__more-prompt {
  font-family: var(--mp-font-display);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 600;
  color: var(--mp-ink);
  margin: 0 0 12px;
}

.mp-founder__more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mp-font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--mp-ink);
  text-decoration: none;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  transition: color 0.2s ease;
}

.mp-founder__more-link:hover {
  color: var(--mp-muted);
}

.mp-founder__more-link::after {
  content: "←";
  font-size: 0.9em;
  opacity: 0.7;
}

.mp-founder__media-col {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 3vw, 24px);
  min-width: 0;
}

.mp-consultation-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin: 0;
  padding: clamp(1.2rem, 2.8vw, 1.5rem) clamp(1.15rem, 3vw, 1.5rem);
  background: var(--mp-paper);
  border: 1px solid rgba(44, 38, 32, 0.1);
  border-radius: 16px;
  border-inline-start: 4px solid var(--mp-sage, #5c7c5c);
  box-shadow: 0 10px 32px rgba(44, 38, 32, 0.07);
}

.mp-consultation-card__title {
  margin: 0 0 0.65rem;
  font-family: var(--mp-font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--mp-ink);
}

.mp-consultation-card__intro {
  margin: 0 0 clamp(1rem, 2.5vw, 1.25rem);
  font-family: var(--mp-font-body);
  font-size: clamp(0.94rem, 1.7vw, 1.02rem);
  line-height: 1.72;
  color: rgba(62, 54, 48, 0.94);
}

.mp-consultation-card__cta {
  align-self: flex-start;
  width: auto;
  max-width: 100%;
  min-width: 0;
  margin-top: auto;
}

@media (max-width: 900px) {
  .mp-founder__grid {
    grid-template-columns: 1fr;
    gap: clamp(24px, 5vw, 36px);
  }

  .mp-founder__media-col {
    order: -1;
    max-width: min(420px, 100%);
    margin-inline: auto;
  }

  .mp-founder__figure {
    max-width: 100%;
    margin-inline: 0;
  }

  .mp-founder__copy {
    max-width: 40rem;
    margin-inline: auto;
  }

  .mp-founder__p {
    max-width: none;
  }
}

/* --- Journaling videos (before #evidence) --- */
.mp-journaling {
  padding: clamp(48px, 8vw, 80px) 0 clamp(40px, 6vw, 64px);
  background: var(--mp-cream);
}

.mp-journaling__inner {
  max-width: min(720px, 100%);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

.mp-journaling__stack {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3.5vw, 32px);
}

.mp-journaling__figure {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  border-radius: var(--mp-radius-lg);
  overflow: hidden;
}

.mp-journaling__vid {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  background: var(--mp-paper);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

@media (max-width: 600px) {
  .mp-journaling__inner {
    padding-inline: clamp(16px, 4vw, 24px);
  }

  .mp-journaling__stack {
    gap: 18px;
  }
}

/* --- Research card grid (#evidence) --- */
.mp-research {
  padding: clamp(64px, 10vw, 104px) 0 clamp(72px, 11vw, 112px);
  background: var(--mp-cream);
}

.mp-research__inner {
  max-width: var(--mp-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

.mp-research__header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto clamp(40px, 6vw, 56px);
}

.mp-research__title {
  font-family: var(--mp-font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--mp-ink);
  margin: 0 0 14px;
}

.mp-research__lead {
  font-size: clamp(1.02rem, 1.9vw, 1.12rem);
  line-height: 1.75;
  color: var(--mp-muted);
  margin: 0;
}

.mp-research__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 26px);
}

.mp-research-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  padding: clamp(22px, 3vw, 28px) clamp(20px, 2.8vw, 26px);
  border-radius: var(--mp-radius-lg);
  border: none;
  box-shadow: var(--mp-shadow-card);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.mp-research-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(44, 38, 32, 0.1);
}

.mp-research-card--tone-1 { background: #fff9f3; }
.mp-research-card--tone-2 { background: #fdf6ee; }
.mp-research-card--tone-3 { background: #fbf3ea; }
.mp-research-card--tone-4 { background: #faf7f0; }
.mp-research-card--tone-5 { background: #fff7ef; }
.mp-research-card--tone-6 { background: #f9f4ec; }
.mp-research-card--tone-7 { background: #fdf8f1; }
.mp-research-card--tone-8 { background: #faf5ed; }
.mp-research-card--tone-9 { background: #fffbf6; }

.mp-research-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 14px;
  font-size: 1.35rem;
  line-height: 1;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.45);
  box-shadow: none;
}

.mp-research-card__title {
  font-family: var(--mp-font-display);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--mp-ink);
  margin: 0 0 10px;
}

.mp-research-card__text {
  font-size: clamp(0.98rem, 1.65vw, 1.05rem);
  line-height: 1.82;
  color: rgba(62, 54, 48, 0.92);
  margin: 0;
  flex: 1;
}

.mp-research-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-top: 14px;
}

.mp-research-card__link {
  display: inline;
  margin-top: 14px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--mp-muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(44, 38, 32, 0.18);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.mp-research-card__links .mp-research-card__link {
  margin-top: 0;
}

.mp-research-card__link:hover {
  color: var(--mp-ink);
  border-bottom-color: rgba(44, 38, 32, 0.45);
}

@media (max-width: 960px) {
  .mp-research__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .mp-research__grid {
    grid-template-columns: 1fr;
  }

  .mp-research-card {
    padding: 22px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mp-research-card,
  .mp-research__link {
    transition: none;
  }

  .mp-research-card:hover,
  .mp-research__link:hover {
    transform: none;
  }
}

/* --- Evidence / research (legacy trust layout) --- */
.mp-section--evidence {
  background: var(--mp-paper);
}

.mp-section--trust {
  padding-top: clamp(64px, 11vw, 112px);
  padding-bottom: clamp(72px, 12vw, 120px);
}

.mp-trust {
  position: relative;
  overflow: hidden;
}

.mp-trust--plain {
  min-height: 0;
}

/* Atmospheric layer - soft WebM + stars */
.mp-trust__atmo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.mp-trust__atmo-vid-wrap {
  position: absolute;
  z-index: 0;
  left: clamp(-72px, -8vw, -12px);
  right: auto;
  top: 42%;
  transform: translateY(-50%);
  width: min(112vw, 920px);
  max-width: 88vw;
  overflow: visible;
  pointer-events: none;
}

.mp-trust__atmo-vid {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: screen;
  opacity: 0.38;
  filter: brightness(1) contrast(1.08) saturate(1.04);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 8% 50%, #000 0%, #000 52%, transparent 100%);
  mask-image: radial-gradient(ellipse 90% 90% at 8% 50%, #000 0%, #000 52%, transparent 100%);
  transform: translateX(-4%);
}

@keyframes mp-trust-star-rise {
  0% {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.85);
  }
  18% {
    opacity: 0.55;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -120px, 0) scale(1);
  }
}

.mp-trust__stars-rise {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.mp-trust__star {
  position: absolute;
  font-size: clamp(0.65rem, 1.8vw, 0.95rem);
  color: rgba(201, 162, 39, 0.45);
  text-shadow: 0 0 14px rgba(255, 240, 210, 0.35);
  animation: mp-trust-star-rise 14s ease-in infinite;
}

.mp-trust__star::before {
  content: "✦";
}

.mp-trust__star--a {
  inset-inline-end: 12%;
  bottom: 8%;
  animation-delay: 0s;
}

.mp-trust__star--b {
  inset-inline-start: 18%;
  bottom: 22%;
  animation-delay: 2.5s;
}

.mp-trust__star--c {
  inset-inline-end: 28%;
  bottom: 35%;
  animation-delay: 5s;
}

.mp-trust__star--d {
  inset-inline-start: 8%;
  bottom: 48%;
  animation-delay: 1.2s;
}

.mp-trust__star--e {
  inset-inline-end: 42%;
  bottom: 15%;
  animation-delay: 7s;
}

.mp-trust__star--f {
  inset-inline-start: 38%;
  bottom: 58%;
  animation-delay: 3.8s;
}

/* Unified editorial: flowing prose + research image (no card chrome) */
.mp-trust-editorial__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "fig"
    "text";
  gap: clamp(22px, 4vw, 36px);
  margin-top: clamp(6px, 1.2vw, 12px);
  align-items: start;
}

@media (min-width: 900px) {
  .mp-trust-editorial__grid {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.38fr);
    grid-template-areas: "text fig";
    gap: clamp(28px, 4vw, 48px);
    align-items: start;
  }
}

.mp-trust-editorial__text {
  grid-area: text;
  min-width: 0;
}

.mp-trust-editorial__figure {
  grid-area: fig;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.mp-trust-editorial__links-wrap {
  max-width: min(920px, 100%);
  margin-inline: auto;
  margin-top: clamp(28px, 5vw, 48px);
}

@media (min-width: 640px) {
  .mp-trust-editorial__links {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px clamp(20px, 3vw, 32px);
  }
}

/* Quiet credibility row - below Dr. Maly block only (no strip chrome) */
.mp-trust-author__cred {
  margin-top: clamp(32px, 5.5vw, 52px);
  padding: 0;
  border: none;
  background: none;
}

.mp-trust-cred-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: clamp(10px, 2vw, 16px) clamp(14px, 2.6vw, 26px);
  max-width: min(920px, 100%);
  margin-inline: auto;
  padding: 0;
}

.mp-trust-cred-name {
  font-family: var(--mp-font-body);
  font-size: clamp(0.64rem, 1.25vw, 0.78rem);
  font-weight: 500;
  color: rgba(107, 94, 84, 0.44);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.mp-trust-cred-name--en {
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: clamp(0.58rem, 1.1vw, 0.7rem);
  color: rgba(107, 94, 84, 0.4);
}

.mp-trust-cred-name--long {
  text-transform: none;
  letter-spacing: 0.04em;
  font-weight: 500;
  max-width: min(15rem, 42vw);
  text-align: center;
  line-height: 1.28;
  font-size: clamp(0.56rem, 1.05vw, 0.66rem);
  color: rgba(107, 94, 84, 0.38);
}

/* Unified story - Dr. Maly, protocol, research, credibility (single column feel) */
.mp-trust-author {
  position: relative;
  z-index: 2;
  margin-top: clamp(8px, 2vw, 20px);
  padding-top: clamp(48px, 9vw, 80px);
  border-top: 1px solid rgba(44, 38, 32, 0.055);
}

.mp-trust-author__inner {
  max-width: min(920px, 100%);
  margin-inline: auto;
}

.mp-trust-author__title {
  font-family: var(--mp-font-display);
  font-size: clamp(1.45rem, 3.8vw, 2.05rem);
  font-weight: 700;
  line-height: 1.28;
  color: var(--mp-ink);
  margin: 0 0 clamp(22px, 4vw, 32px);
  text-align: right;
}

.mp-trust-author__copy {
  min-width: 0;
  text-align: right;
}

.mp-trust-author__p {
  font-family: var(--mp-font-body);
  font-size: clamp(1.02rem, 2.5vw, 1.1rem);
  line-height: 1.92;
  color: rgba(62, 54, 48, 0.97);
  margin: 0 0 clamp(14px, 2.4vw, 20px);
  max-width: 52ch;
}

.mp-trust-editorial__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 0;
}

.mp-trust-author__link {
  font-family: var(--mp-font-body);
  font-size: clamp(0.92rem, 2.1vw, 1rem);
  font-weight: 600;
  color: rgba(74, 64, 56, 0.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(91, 74, 61, 0.28);
  padding-bottom: 3px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.mp-trust-author__link:hover {
  color: var(--mp-ink);
  border-bottom-color: rgba(44, 38, 32, 0.4);
}

.mp-trust-author__figure {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.mp-trust-author__photo {
  width: 100%;
  height: auto;
  display: block;
  max-height: min(82vh, 620px);
  object-fit: contain;
  border-radius: 10px;
  opacity: 0.98;
}

@media (max-width: 799px) {
  .mp-trust__atmo-vid-wrap {
    top: 38%;
    left: clamp(-56px, -7vw, -8px);
    width: min(118vw, 820px);
    max-width: 92vw;
  }

  .mp-trust__atmo-vid {
    opacity: 0.34;
  }
}

.mp-section-head p + p {
  margin-top: 18px;
}

/* --- Testimonials + trust moment --- */
.mp-voices-split {
  display: grid;
  grid-template-columns: min(300px, 34vw) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

@media (max-width: 900px) {
  .mp-voices-split {
    grid-template-columns: 1fr;
  }

  .mp-voices-split__moment {
    max-width: 320px;
    margin-inline: auto;
  }
}

.mp-voices-split__moment {
  border-radius: var(--mp-radius-xl);
  overflow: hidden;
  box-shadow: var(--mp-shadow-soft);
  border: 1px solid rgba(44, 38, 32, 0.07);
}

.mp-trust-moment__vid {
  width: 100%;
  display: block;
  vertical-align: bottom;
}

.mp-voices-foot {
  font-family: var(--mp-font-body);
  text-align: center;
  margin: 28px auto 0;
  font-size: 0.94rem;
  color: var(--mp-muted);
  max-width: min(48ch, 100%);
  line-height: 1.78;
}

/* --- Kit showcase (#kit) — visual editorial gallery --- */
.mp-kit {
  background: var(--mp-cream);
  padding: clamp(52px, 8vw, 88px) 0 clamp(64px, 9vw, 100px);
  border-block-start: 1px solid rgba(44, 38, 32, 0.05);
}

.mp-kit__inner {
  max-width: var(--mp-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

.mp-kit__intro {
  max-width: 40rem;
  margin: 0 auto clamp(48px, 7vw, 72px);
  text-align: center;
}

.mp-kit__title {
  font-family: var(--mp-font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--mp-ink);
  margin: 0 0 16px;
  text-align: center;
}

.mp-kit__lead {
  font-size: clamp(1.05rem, 1.9vw, 1.14rem);
  line-height: 1.75;
  color: rgba(62, 54, 48, 0.92);
  margin: 0 auto clamp(20px, 3.5vw, 32px);
  max-width: 38ch;
  text-align: center;
}

.mp-kit__story {
  max-width: 40rem;
  margin-inline: auto;
  margin-top: clamp(28px, 4.5vw, 40px);
  padding-inline: clamp(8px, 2vw, 16px);
}

.mp-kit__stickers-note {
  font-size: clamp(0.95rem, 1.6vw, 1.02rem);
  line-height: 1.7;
  color: var(--mp-muted);
  margin: 0 auto;
  max-width: 36ch;
  text-align: center;
}

.mp-kit-stickers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3.5vw, 40px);
  margin-block: clamp(36px, 5vw, 56px);
  padding-inline: clamp(4px, 1vw, 12px);
}

.mp-kit-sticker-card {
  margin: 0;
  background: #fff;
  border-radius: clamp(14px, 2vw, 20px);
  padding: clamp(14px, 2.2vw, 22px);
  box-shadow: 0 6px 22px rgba(44, 38, 32, 0.06);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .mp-kit-sticker-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 38, 32, 0.09);
  }
}

.mp-kit-sticker-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: clamp(8px, 1.2vw, 12px);
}

.mp-kit__footnote {
  text-align: center;
  font-size: 0.92rem;
  color: var(--mp-muted);
  margin: 0 auto clamp(24px, 4vw, 32px);
  max-width: 42ch;
  line-height: 1.65;
}

.mp-kit__actions {
  text-align: center;
}

@media (max-width: 900px) {
  .mp-kit-stickers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 3vw, 28px);
  }
}

@media (max-width: 520px) {
  .mp-kit-stickers {
    grid-template-columns: 1fr;
    max-width: 18rem;
    margin-inline: auto;
  }
}

/* Canva presentation — homepage teaser + full presentation page */
.mp-kit-canva {
  max-width: min(52rem, 100%);
  margin-inline: auto;
  margin-block: clamp(20px, 3.5vw, 28px);
}

.mp-kit-canva__frame {
  position: relative;
  width: 100%;
  border-radius: clamp(12px, 2vw, 18px);
  overflow: hidden;
  box-shadow: 0 14px 44px rgba(44, 38, 32, 0.09);
  background: rgba(255, 252, 248, 0.92);
}

.mp-kit-canva__embed {
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
  transform-origin: top left;
  pointer-events: auto;
}

.mp-kit-canva__credit {
  margin: clamp(12px, 2vw, 18px) auto 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--mp-muted);
  line-height: 1.5;
}

.mp-kit-canva__credit a {
  color: rgba(62, 54, 48, 0.88);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.mp-kit-canva__credit a:hover {
  color: var(--mp-ink);
}

/* Self-hosted export (replaces Canva iframe) */
.mp-kit-canva--hosted .mp-kit-canva__art {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.mp-kit-canva--hosted.mp-kit-canva--teaser .mp-kit-canva__art {
  width: 100%;
  height: auto;
}

.mp-kit-canva--hosted.mp-kit-canva--fullpage {
  max-width: none;
  width: 100%;
  margin: 0;
}

.mp-kit-canva--hosted.mp-kit-canva--fullpage .mp-kit-canva__frame {
  height: auto;
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.mp-kit-canva--hosted.mp-kit-canva--fullpage .mp-kit-canva__art {
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* Homepage: upper crop (2× height) + black CTA */
.mp-kit-canva--teaser .mp-kit-canva__frame {
  height: clamp(400px, 72vw, 600px);
}

.mp-kit-canva__mobile-fallback {
  display: none;
}

.mp-kit-canva--mobile-static .mp-kit-canva__embed {
  display: none !important;
}

.mp-kit-canva--mobile-static .mp-kit-canva__mobile-fallback {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.mp-kit-canva--mobile-static .mp-kit-canva__mobile-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .mp-kit-canva--teaser .mp-kit-canva__frame {
    height: clamp(220px, 56vw, 360px);
  }

  .mp-kit-canva--teaser:not(.mp-kit-canva--mobile-static) .mp-kit-canva__embed {
    display: none;
  }

  .mp-kit-canva--teaser .mp-kit-canva__mobile-fallback {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .mp-kit-canva--teaser .mp-kit-canva__mobile-fallback img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}

.mp-kit-canva--teaser .mp-kit-canva__frame::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 38%;
  background: linear-gradient(to bottom, transparent, var(--mp-cream));
  pointer-events: none;
  z-index: 1;
}

.mp-kit-canva__cta {
  position: absolute;
  z-index: 2;
  bottom: clamp(14px, 3vw, 22px);
  right: clamp(14px, 3vw, 22px);
  left: auto;
  top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.12em 0.42em;
  border-radius: 0.28em;
  font-family: var(--mp-font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 4.5vw, 2.5rem);
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
  color: #fff;
  background: #12100e;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.mp-kit-canva__cta:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.mp-kit-canva__cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* Full presentation page — edge-to-edge Canva */
.mp-kit-page {
  min-height: 100vh;
}

.mp-kit-page--immersive {
  overflow-x: hidden;
}

.mp-kit-page--immersive .mp-kit-page__main {
  padding: 0;
  margin: 0;
  width: 100%;
}

/* Home button: maestro-home-button.css (.maestro-btn-home) */

.mp-kit-canva--fullpage {
  width: 100%;
  max-width: none;
  margin: 0;
}

.mp-kit-canva--fullpage .mp-kit-canva__frame {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.mp-kit-canva--fullpage .mp-kit-canva__embed {
  pointer-events: auto;
}

@media (max-width: 768px) {
  .mp-kit-canva--teaser .mp-kit-canva__frame {
    height: clamp(340px, 92vw, 560px);
  }

  .mp-kit-canva__cta {
    font-size: clamp(1.35rem, 6.2vw, 1.85rem);
    bottom: 12px;
    right: 12px;
    max-width: calc(100% - 24px);
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 380px) {
  .mp-kit-canva--teaser .mp-kit-canva__frame {
    height: clamp(300px, 88vw, 480px);
  }

  .mp-kit-canva__cta {
    font-size: clamp(1.2rem, 7vw, 1.55rem);
  }
}

/* Kit slideshow — soft cross-dissolve, natural image proportions */
.mp-kit-slideshow {
  max-width: min(40rem, 100%);
  margin-inline: auto;
  margin-block: clamp(20px, 3.5vw, 32px);
}

.mp-kit-slideshow__stage {
  position: relative;
  width: 100%;
  min-height: clamp(200px, 46vw, 380px);
  border-radius: clamp(12px, 2vw, 18px);
  overflow: hidden;
  box-shadow: 0 14px 44px rgba(44, 38, 32, 0.09);
}

.mp-kit-slideshow__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: clamp(10px, 2.5vw, 18px);
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  pointer-events: none;
}

.mp-kit-slideshow__slide.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.mp-kit-slideshow__slide img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(62vh, 360px);
  object-fit: contain;
  object-position: center;
  border-radius: clamp(10px, 1.4vw, 14px);
  filter: drop-shadow(0 8px 24px rgba(44, 38, 32, 0.11));
}

@media (prefers-reduced-motion: reduce) {
  .mp-kit-slideshow__slide {
    transition: none;
  }

  .mp-kit-slideshow__slide:not(.is-active) {
    visibility: hidden;
  }
}

.mp-kit__prose {
  text-align: center;
  max-width: none;
  margin-inline: auto;
}

.mp-kit__prose p {
  font-size: clamp(1rem, 1.8vw, 1.08rem);
  line-height: 1.85;
  color: rgba(62, 54, 48, 0.9);
  margin: 0 auto clamp(14px, 2.2vw, 20px);
  max-width: 36ch;
}

.mp-kit__prose p:nth-child(-n + 3) {
  color: rgba(62, 54, 48, 0.82);
  font-style: italic;
}

.mp-kit__prose p:nth-child(4),
.mp-kit__prose p:nth-child(5) {
  font-family: var(--mp-font-display);
  font-weight: 600;
  font-size: clamp(1.05rem, 1.9vw, 1.15rem);
  color: var(--mp-ink);
}

.mp-kit__prose-close {
  margin-top: clamp(8px, 1.5vw, 16px);
  padding-top: clamp(16px, 2.5vw, 24px);
  border-top: 1px solid rgba(44, 38, 32, 0.08);
  color: rgba(62, 54, 48, 0.88);
  max-width: 36ch;
  margin-inline: auto;
}

@media (max-width: 768px) {
  .mp-kit {
    padding: clamp(40px, 10vw, 52px) 0 clamp(48px, 11vw, 64px);
    overflow-x: hidden;
  }

  .mp-kit-slideshow__stage {
    min-height: clamp(180px, 52vw, 300px);
  }

  .mp-kit-slideshow__slide img {
    max-height: min(50vh, 280px);
  }

  .mp-kit__inner {
    padding-inline: clamp(16px, 4.5vw, 22px);
  }

  .mp-kit__title {
    font-size: clamp(1.55rem, 6.5vw, 1.9rem);
    margin-bottom: 12px;
  }

  .mp-kit__lead {
    font-size: clamp(0.98rem, 3.8vw, 1.06rem);
    line-height: 1.7;
    margin-bottom: clamp(16px, 4vw, 22px);
    max-width: 32ch;
  }

  .mp-kit__prose p {
    font-size: clamp(0.95rem, 3.6vw, 1.02rem);
    line-height: 1.8;
    max-width: 34ch;
    margin-bottom: clamp(12px, 3vw, 16px);
  }

  .mp-kit__prose p:nth-child(4),
  .mp-kit__prose p:nth-child(5) {
    font-size: clamp(1rem, 3.8vw, 1.08rem);
  }
}

@media (max-width: 380px) {
  .mp-kit__prose p {
    max-width: 100%;
  }

  .mp-kit-slideshow__stage {
    min-height: clamp(160px, 48vw, 260px);
  }

  .mp-kit-slideshow__slide img {
    max-height: min(44vh, 240px);
  }
}

.mp-kit-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.mp-kit-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Behind the Kit long-form page --- */
body.mp-landing.mp-btk-page {
  --mp-btk-bg: #fefdfc;
  background: transparent;
}

/* Lower viewport (below jar center): agreed page color; upper half stays transparent */
body.mp-landing.mp-btk-page::before {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: 50%;
  bottom: 0;
  z-index: 0;
  background: var(--mp-btk-bg);
  pointer-events: none;
}

body.mp-landing.mp-btk-page .mp-grain {
  display: none;
}

.mp-btk-shell {
  position: relative;
  overflow: visible;
}

.mp-btk-atmo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.mp-btk-atmo__stars-rise {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.mp-btk-atmo__star {
  position: absolute;
  font-size: clamp(0.6rem, 1.6vw, 0.9rem);
  color: rgba(201, 162, 39, 0.42);
  text-shadow: 0 0 12px rgba(255, 240, 210, 0.3);
  animation: mp-trust-star-rise 16s ease-in infinite;
}

.mp-btk-atmo__star::before {
  content: "✦";
}

.mp-btk-atmo__star--a {
  inset-inline-end: 14%;
  bottom: 10%;
  animation-delay: 0s;
}

.mp-btk-atmo__star--b {
  inset-inline-start: 20%;
  bottom: 24%;
  animation-delay: 2.8s;
}

.mp-btk-atmo__star--c {
  inset-inline-end: 30%;
  bottom: 38%;
  animation-delay: 5.5s;
}

.mp-btk-atmo__star--d {
  inset-inline-start: 10%;
  bottom: 52%;
  animation-delay: 1.4s;
}

.mp-btk-atmo__star--e {
  inset-inline-end: 44%;
  bottom: 18%;
  animation-delay: 7.2s;
}

.mp-btk-atmo__star--f {
  inset-inline-start: 36%;
  bottom: 62%;
  animation-delay: 4s;
}

.mp-btk-hero,
.mp-btk-main,
.mp-btk-cta {
  position: relative;
  z-index: 2;
}

/* Fixed jar — middle-left of viewport; page scrolls above it */
.mp-btk-jar-fixed {
  position: fixed;
  left: clamp(0px, 1.5vw, 16px);
  top: 50%;
  z-index: 1;
  width: 400px;
  height: 800px;
  transform: translateY(-50%);
  pointer-events: none;
  overflow: visible;
}

.mp-btk-jar-fixed__vid {
  display: block;
  width: 400px;
  height: 800px;
  object-fit: contain;
  object-position: center center;
  opacity: 0.72;
  mix-blend-mode: multiply;
  filter: brightness(1.02) contrast(1.08) saturate(1.06);
}

.mp-btk-hero {
  position: relative;
  padding: clamp(48px, 8vw, 88px) 0 clamp(40px, 6vw, 64px);
  background: transparent;
  border-block-end: none;
  overflow: visible;
}

.mp-btk-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 46rem;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
  text-align: center;
}

.mp-btk-hero__eyebrow {
  margin: 0 0 20px;
  font-size: 0.92rem;
}

.mp-btk-hero__eyebrow .maestro-btn-home {
  margin-inline: auto;
}

.mp-btk-hero__title {
  font-family: var(--mp-font-display);
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--mp-ink);
  margin: 0 0 16px;
}

.mp-btk-hero__subtitle {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.75;
  color: rgba(62, 54, 48, 0.9);
  margin: 0;
  max-width: 36ch;
  margin-inline: auto;
}

.mp-btk-hero__accent,
.mp-btk-cta__accent {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.mp-btk-accent__star {
  position: absolute;
  color: var(--mp-gold-soft);
  font-size: 0.85rem;
  opacity: 0.55;
  line-height: 1;
}

.mp-btk-accent__star--a { top: 18%; inset-inline-start: 12%; }
.mp-btk-accent__star--b { top: 28%; inset-inline-end: 14%; font-size: 1rem; opacity: 0.45; }
.mp-btk-accent__star--c { bottom: 22%; inset-inline-start: 18%; }
.mp-btk-accent__star--d { bottom: 30%; inset-inline-end: 16%; font-size: 0.75rem; }

.mp-btk-accent__heart {
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(201, 162, 39, 0.35);
}

.mp-btk-moment {
  padding: 0 0 clamp(12px, 2vw, 20px);
  background: transparent;
}

.mp-btk-moment__inner {
  max-width: min(52rem, 92vw);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

.mp-btk-moment__frame {
  border-radius: 18px;
  overflow: hidden;
  background: var(--mp-paper);
  box-shadow:
    0 20px 50px rgba(44, 38, 32, 0.08),
    0 4px 14px rgba(44, 38, 32, 0.04);
  border: 1px solid rgba(44, 38, 32, 0.06);
}

.mp-btk-moment__vid {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
  object-fit: contain;
  background: #f5f0e8;
}

.mp-btk-main {
  position: relative;
  overflow: visible;
  padding: clamp(32px, 5vw, 48px) 0 clamp(56px, 9vw, 96px);
  background: transparent;
}

.mp-btk-main__inner {
  position: relative;
  z-index: 2;
  max-width: 52rem;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

.mp-btk-story {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3.5vw, 28px);
}

.mp-btk-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 253, 249, 0.97);
  border-radius: var(--mp-radius-lg);
  padding: clamp(24px, 4vw, 36px) clamp(22px, 4vw, 40px);
  border: 1px solid rgba(44, 38, 32, 0.07);
  box-shadow: var(--mp-shadow-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mp-btk-card__q {
  font-family: var(--mp-font-display);
  font-size: clamp(1.15rem, 2.6vw, 1.45rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--mp-ink);
  margin: 0 0 clamp(16px, 2.5vw, 22px);
}

.mp-btk-card__body p {
  font-size: clamp(1.02rem, 1.8vw, 1.1rem);
  line-height: 1.92;
  color: rgba(62, 54, 48, 0.96);
  margin: 0 0 1em;
}

.mp-btk-card__body p:last-child {
  margin-bottom: 0;
}

.mp-btk-cta {
  position: relative;
  padding: clamp(56px, 9vw, 88px) 0 clamp(72px, 11vw, 104px);
  background: transparent;
  border-block-start: none;
  overflow: visible;
}

.mp-btk-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
  text-align: center;
}

.mp-btk-cta__title {
  font-family: var(--mp-font-display);
  font-size: clamp(1.6rem, 3.8vw, 2.1rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 14px;
  color: var(--mp-ink);
}

.mp-btk-cta__text {
  font-size: clamp(1.02rem, 1.9vw, 1.12rem);
  line-height: 1.8;
  color: rgba(62, 54, 48, 0.92);
  margin: 0 0 28px;
}

.mp-btk-cta__btn {
  margin-inline: auto;
}

@media (max-width: 768px) {
  .mp-btk-jar-fixed {
    width: min(56vw, 240px);
    height: min(112vw, 480px);
    left: 0;
    transform: translateY(-50%);
  }

  .mp-btk-jar-fixed__vid {
    width: min(56vw, 240px);
    height: min(112vw, 480px);
    opacity: 0.65;
  }

  .mp-btk-card {
    background: rgba(255, 253, 249, 0.98);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mp-quiz-personalize__vid,
  .mp-trust-moment__vid,
  .mp-trust__atmo-vid,
  .mp-btk-jar-fixed,
  .mp-btk-jar-fixed__vid {
    display: none;
  }

  .mp-btk-atmo__star {
    animation: none !important;
    opacity: 0.3;
  }

  .mp-trust__star {
    animation: none !important;
    opacity: 0.35;
  }
}

/* --- Mobile refinements (site-wide) --- */
@media (max-width: 768px) {
  body.mp-landing {
    overflow-x: clip;
  }

  .mp-wrap {
    overflow-x: clip;
  }

  .mp-section {
    padding: clamp(52px, 12vw, 72px) clamp(16px, 4vw, 20px);
  }

  .mp-section-head {
    margin-bottom: clamp(28px, 6vw, 40px);
  }

  .mp-section-head h2 {
    font-size: clamp(1.5rem, 6.5vw, 1.85rem);
    margin-bottom: 14px;
  }

  .mp-hero {
    padding: clamp(88px, 18vw, 104px) clamp(16px, 4vw, 20px) clamp(56px, 12vw, 72px);
  }

  .mp-hero h1 {
    font-size: clamp(1.7rem, 7.5vw, 2.1rem);
    line-height: 1.28;
    max-width: 100%;
    margin-bottom: clamp(20px, 5vw, 28px);
  }

  .mp-hero__body {
    font-size: clamp(0.98rem, 3.8vw, 1.05rem);
    line-height: 1.75;
    max-width: 100%;
    margin-bottom: clamp(24px, 5vw, 32px);
  }

  .mp-hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .mp-hero__actions .mp-btn-primary,
  .mp-hero__actions .mp-btn-ghost {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  .mp-quiz-personalize {
    padding: clamp(56px, 12vw, 72px) clamp(16px, 4vw, 20px);
  }

  .mp-quiz-personalize__copy {
    max-width: 100%;
  }

  .mp-quiz-personalize__cta {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  .mp-kit-canva--teaser .mp-kit-canva__frame {
    height: clamp(360px, 105vw, 520px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .mp-kit-canva__credit {
    font-size: 0.78rem;
    padding-inline: 8px;
  }

  #how-it-works .mp-inner {
    padding-inline: 0;
  }

  .mp-founder__grid {
    gap: clamp(24px, 6vw, 32px);
  }

  .mp-store-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .mp-how-grid {
    max-width: 100%;
  }

}
