:root {
  --color-primary: #9fe870;
  --color-primary-active: #cdffad;
  --color-primary-pale: #e2f6d5;
  --color-on-primary: #0e0f0c;
  --color-secondary: #163300;
  --color-accent: #9fe870;
  --color-bg: #ffffff;
  --color-bg-alt: #e8ebe6;
  --color-surface: #ffffff;
  --color-dark: #0e0f0c;
  --color-text: #0e0f0c;
  --color-text-body: #454745;
  --color-text-muted: #868685;
  --color-text-on-dark: #e8ebe6;
  --color-text-on-dark-mute: #b9bdb7;
  --color-border: #0e0f0c;
  --color-border-soft: #d7dcd4;
  --color-positive-deep: #054d28;
  --color-negative: #d03238;
  --color-negative-bg: #fdeceb;
  --font-heading: 'Manrope', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-lg: 16px;
  --space-xl: 24px;
  --space-2xl: 32px;
  --space-3xl: 48px;
  --container: 1200px;
  --header-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text-body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "calt";
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-text);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-lg);
  line-height: 1.12;
}

p { margin: 0 0 var(--space-lg); }
p:last-child { margin-bottom: 0; }

a { color: var(--color-text); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--color-secondary); }

ul, ol { margin: 0; padding: 0; }

:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

main > section,
main > .mt-trustbar { padding: 60px 0; }

.section-alt { background: var(--color-bg-alt); }

section[id] { scroll-margin-top: 88px; }

.section-title {
  font-size: clamp(1.75rem, 5.2vw, 2.5rem);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-body);
  max-width: 62ch;
  margin: 0 0 var(--space-3xl);
}

/* ---------- buttons ---------- */
.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  padding: 12px 24px;
  border-radius: var(--radius-xl);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn-primary { background: var(--color-primary); color: var(--color-on-primary); }
.btn-primary:hover { background: var(--color-primary-active); color: var(--color-on-primary); }
.btn-secondary { background: var(--color-bg-alt); color: var(--color-text); }
.btn-secondary:hover { background: var(--color-primary-pale); color: var(--color-text); }
.btn-ghost { background: transparent; color: var(--color-text); border-color: var(--color-border); }
.btn-ghost:hover { background: var(--color-text); color: #ffffff; }
.btn-sm { padding: 8px 18px; font-size: 0.875rem; }
.btn-lg { padding: 15px 30px; font-size: 1.0625rem; }

/* ---------- header ---------- */
.mt-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border-soft);
}
.mt-header__inner {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  min-height: var(--header-h);
}
.mt-header__logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  margin-right: auto;
}
.mt-header__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: var(--color-primary);
  border-radius: var(--radius-pill);
  color: var(--color-on-primary);
}
.mt-header__logo-icon { width: 20px; height: 20px; }
.mt-header__logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--color-text);
}
.mt-header__nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border-soft);
  padding: var(--space-lg) 20px var(--space-xl);
  display: none;
}
.mt-header__nav.is-open { display: block; }
.mt-header__list { list-style: none; display: flex; flex-direction: column; gap: var(--space-md); }
.mt-header__link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  padding: 6px 0;
  display: inline-block;
}
.mt-header__link:hover { color: var(--color-secondary); text-decoration: underline; }
.mt-header__link.is-current { text-decoration: underline; text-decoration-color: var(--color-primary); text-decoration-thickness: 3px; }
.mt-header__cta { display: none; }
.mt-header__hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  padding: 0 9px;
  background: var(--color-bg-alt);
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
}
.mt-header__bar { display: block; height: 2px; background: var(--color-text); border-radius: 2px; }

/* ---------- hero ---------- */
.mt-hero {
  background: var(--color-dark);
  color: #ffffff;
  padding: 48px 0 56px;
}
.mt-hero__inner { display: grid; gap: var(--space-2xl); }
.mt-hero__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}
.mt-hero__title {
  color: #ffffff;
  font-weight: 800;
  font-size: clamp(2.25rem, 8.5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: var(--space-lg);
}
.mt-hero__lede {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: 0;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}
.mt-hero__subtitle {
  font-size: 1.125rem;
  color: #ffffff;
  max-width: 52ch;
  margin-bottom: var(--space-xl);
}
.mt-hero__facts { list-style: none; display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-bottom: var(--space-xl); }
.mt-hero__fact {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-on-primary);
  background: var(--color-primary-pale);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
}
.mt-hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-md); }
.mt-hero__ghost { color: #ffffff; border-color: #ffffff; }
.mt-hero__ghost:hover { background: #ffffff; color: var(--color-text); }
.mt-hero__media img { border-radius: var(--radius-xl); aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }

/* ---------- trust bar ---------- */
.mt-trustbar { background: var(--color-bg); padding: 26px 0; border-bottom: 1px solid var(--color-border-soft); }
.mt-trustbar__inner { display: grid; gap: var(--space-lg); }
.mt-trustbar__item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
}
.mt-trustbar__icon { width: 24px; height: 24px; flex: none; color: var(--color-secondary); }

/* ---------- products ---------- */
.mt-products .section-subtitle { margin-bottom: var(--space-2xl); }
.products-grid { display: grid; gap: var(--space-xl); }
.product-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
}
.product-card--unavailable .product-card__media img { filter: grayscale(.55); }
.product-card--unavailable .product-card__title { color: var(--color-text-muted); }
.product-card__media {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-lg);
}
.product-card__media img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; padding: var(--space-md); }
.product-card__title { font-size: 1.125rem; line-height: 1.25; margin-bottom: var(--space-sm); }
.product-card__rating { font-size: 0.9375rem; font-weight: 600; color: var(--color-secondary); margin-bottom: var(--space-md); }
.product-card__reviews { color: var(--color-text-muted); font-weight: 400; }
.product-card__description {
  font-size: 0.9375rem;
  color: var(--color-text-body);
  margin-bottom: var(--space-sm);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__description.is-expanded { -webkit-line-clamp: unset; overflow: visible; }
.product-card__more {
  align-self: flex-start;
  background: none;
  border: none;
  padding: 0 0 var(--space-lg);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.product-card__highlights, .product-card-bullets {
  list-style: none;
  margin: 0 0 var(--space-xl);
  display: grid;
  gap: var(--space-sm);
}
.product-card__highlights li, .product-card-bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 0.875rem;
  color: var(--color-text-body);
}
.product-card__highlights li::before, .product-card-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 8px;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
}
.product-card__cta { margin-top: auto; }
.product-card__cta,
a.product-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-on-primary);
  font-weight: 600;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: var(--radius-xl);
}
.product-card__cta:hover { background: var(--color-primary-active); color: var(--color-on-primary); }
.product-badge {
  display: inline-block;
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  background: #fff3c4;
  color: #4a3b1c;
  margin-bottom: var(--space-sm);
}
.product-badge--restock { background: var(--color-primary-pale); color: var(--color-positive-deep); }

/* ---------- information gain table ---------- */
.mt-datagain { background: var(--color-bg); }
.mt-datatable__wrap { overflow-x: auto; border-radius: var(--radius-xl); background: var(--color-bg-alt); }
.mt-datatable { width: 100%; border-collapse: collapse; min-width: 640px; }
.mt-datatable th, .mt-datatable td { text-align: left; padding: 16px; vertical-align: top; }
.mt-datatable thead th {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border-soft);
}
.mt-datatable tbody tr + tr { border-top: 1px solid var(--color-border-soft); }
.mt-datatable__metric {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--color-secondary);
  white-space: nowrap;
}
.mt-datatable__claim { width: 60%; }
.mt-datatable__text { font-size: 0.9375rem; color: var(--color-text-body); margin-bottom: var(--space-sm); }
.mt-datatable__gap { font-size: 0.875rem; color: var(--color-text-muted); margin: 0; }
.mt-datatable__proof { font-size: 0.8125rem; color: var(--color-text-body); }

/* ---------- benefits ---------- */
.mt-benefits__rows { display: grid; gap: var(--space-xl); }
.mt-benefit-row {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
}
.mt-benefit-row__plaque {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px; height: 76px;
  border-radius: var(--radius-lg);
  flex: none;
}
.mt-benefit-row__plaque--sage { background: var(--color-bg-alt); color: var(--color-secondary); }
.mt-benefit-row__plaque--green { background: var(--color-primary-pale); color: var(--color-positive-deep); }
.mt-benefit-row__plaque--dark { background: var(--color-dark); color: var(--color-primary); }
.mt-benefit-row__icon { width: 32px; height: 32px; }
.mt-benefit-row__title { font-size: 1.1875rem; margin-bottom: var(--space-sm); }
.mt-benefit-row__text { font-size: 0.9375rem; color: var(--color-text-body); margin: 0; }
.mt-benefit-row__copy { min-width: 0; max-width: 84ch; }

/* ---------- reviews ---------- */
.mt-reviews { background: var(--color-bg); }
.mt-reviews__feed { display: grid; gap: var(--space-lg); max-width: 780px; }
.mt-quote {
  margin: 0;
  background: var(--color-bg-alt);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
}
.mt-quote__body { margin: 0 0 var(--space-lg); }
.mt-quote__body p { font-size: 1rem; color: var(--color-text-body); margin: 0; }
.mt-quote__meta { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-sm) var(--space-md); font-size: 0.8125rem; }
.mt-quote__stars { color: var(--color-secondary); letter-spacing: 1px; }
.mt-quote__name { font-weight: 600; color: var(--color-text); }
.mt-quote__badge {
  background: var(--color-primary-pale);
  color: var(--color-positive-deep);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
  font-weight: 600;
}
.mt-quote__product { color: var(--color-text-muted); }

/* ---------- features ---------- */
.mt-features__stack { display: grid; gap: var(--space-3xl); }
.mt-feature { display: grid; gap: var(--space-xl); align-items: center; }
.mt-feature__media img { border-radius: var(--radius-xl); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.mt-feature__title { font-size: clamp(1.375rem, 4vw, 1.75rem); }
.mt-feature__text { font-size: 1rem; color: var(--color-text-body); }
.mt-feature__list { list-style: none; display: grid; gap: var(--space-md); margin-bottom: var(--space-xl); }
.mt-feature__list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.9375rem;
  color: var(--color-text-body);
}
.mt-feature__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 14px; height: 14px;
  border-radius: var(--radius-pill);
  border: 3px solid var(--color-primary);
}
.mt-feature__cta {
  text-decoration: none;
  background: var(--color-surface);
  border-color: var(--color-border);
}
.mt-feature__cta:hover { background: var(--color-text); color: #ffffff; }

/* ---------- how it works ---------- */
.mt-how { background: var(--color-bg); }
.mt-how__track { list-style: none; display: grid; gap: var(--space-xl); counter-reset: step; }
.mt-step { background: var(--color-bg-alt); border-radius: var(--radius-xl); padding: var(--space-xl); }
.mt-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  color: var(--color-on-primary);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: var(--space-lg);
}
.mt-step__title { font-size: 1.125rem; margin-bottom: var(--space-sm); }
.mt-step__text { font-size: 0.9375rem; color: var(--color-text-body); margin: 0; }

/* ---------- about (landing) ---------- */
.mt-about__inner { display: grid; gap: var(--space-2xl); align-items: start; }
.mt-about__body p { font-size: 1rem; color: var(--color-text-body); }
.mt-about__link { margin-top: var(--space-lg); text-decoration: none; }
.mt-about__media img { border-radius: var(--radius-xl); aspect-ratio: 1 / 1; object-fit: cover; width: 100%; }
.mt-about__copy { min-width: 0; }

/* ---------- who it's for ---------- */
.mt-who { background: var(--color-bg); }
.mt-who__grid { display: grid; gap: var(--space-lg); margin-bottom: var(--space-2xl); }
.mt-persona { background: var(--color-bg-alt); border-radius: var(--radius-xl); padding: var(--space-xl); }
.mt-persona__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  color: var(--color-on-primary);
  margin-bottom: var(--space-lg);
}
.mt-persona__svg { width: 24px; height: 24px; }
.mt-persona__title { font-size: 1.0625rem; margin-bottom: var(--space-sm); }
.mt-persona__text { font-size: 0.9375rem; color: var(--color-text-body); margin: 0; }
.mt-who__notfor { background: var(--color-dark); border-radius: var(--radius-xl); padding: var(--space-xl); }
.mt-who__notfor-title { color: var(--color-primary); font-size: 1.125rem; margin-bottom: var(--space-lg); }
.mt-who__notfor-list { list-style: none; display: grid; gap: var(--space-md); }
.mt-who__notfor-list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.9375rem;
  color: var(--color-text-on-dark);
}
.mt-who__notfor-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 2px;
  background: var(--color-primary);
}

/* ---------- comparison ---------- */
.mt-compare__wrap { overflow-x: auto; border-radius: var(--radius-xl); background: var(--color-surface); }
.mt-compare__table { width: 100%; border-collapse: collapse; min-width: 620px; }
.mt-compare__table th, .mt-compare__table td { text-align: left; padding: 16px; font-size: 0.9375rem; vertical-align: top; }
.mt-compare__table thead th {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-border-soft);
}
.mt-compare__brand-head { background: var(--color-primary); color: var(--color-on-primary); }
.mt-compare__brand { background: var(--color-primary-pale); font-weight: 600; color: var(--color-text); }
.mt-compare__table tbody th { font-family: var(--font-body); font-weight: 600; color: var(--color-text); }
.mt-compare__table tbody tr + tr th,
.mt-compare__table tbody tr + tr td { border-top: 1px solid var(--color-border-soft); }

/* ---------- fears ---------- */
.mt-fears { background: var(--color-bg); }
.mt-fears__list { display: grid; gap: var(--space-lg); }
.mt-risk {
  display: grid;
  gap: var(--space-lg);
  background: var(--color-bg-alt);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
}
.mt-risk__title { font-size: 1.0625rem; margin-bottom: var(--space-sm); }
.mt-risk__text { font-size: 0.9375rem; color: var(--color-text-body); margin: 0; }
.mt-risk__answer { background: var(--color-primary-pale); border-radius: var(--radius-lg); padding: var(--space-lg); }
.mt-risk__stat {
  margin: var(--space-md) 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-positive-deep);
}
.mt-risk__worry { min-width: 0; }

/* ---------- what you get ---------- */
.mt-timeline { list-style: none; display: grid; gap: var(--space-lg); margin-bottom: var(--space-2xl); }
.mt-timeline__item {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border-left: 6px solid var(--color-primary);
}
.mt-timeline__label {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}
.mt-timeline__text { font-size: 0.9375rem; color: var(--color-text-body); margin: 0; }
.mt-getting__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
}
.mt-getting__cta .btn-secondary { background: var(--color-surface); }

/* ---------- faq ---------- */
.mt-faq { background: var(--color-bg); }
.mt-faq__inner { max-width: 840px; }
.mt-faq__list, .mt-faq__more { display: grid; gap: var(--space-md); }
.mt-faq__more { margin-top: var(--space-md); }
.mt-faq__item {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
}
.mt-faq__item > summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text);
  position: relative;
  padding-right: 34px;
}
.mt-faq__item > summary::-webkit-details-marker { display: none; }
.mt-faq__question::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--color-secondary);
}
.mt-faq__item[open] > .mt-faq__question::after { content: "\2013"; }
.mt-faq__answer { padding-top: var(--space-md); }
.mt-faq__answer p { font-size: 0.9375rem; color: var(--color-text-body); margin: 0; }
.mt-faq__toggle {
  margin-top: var(--space-xl);
  background: var(--color-dark);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-xl);
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}
.mt-faq__toggle:hover { background: var(--color-secondary); }

/* ---------- newsletter ---------- */
.mt-newsletter { background: var(--color-dark); }
.mt-newsletter__inner { display: grid; gap: var(--space-2xl); }
.mt-newsletter__title { color: var(--color-primary); font-size: clamp(1.75rem, 5vw, 2.375rem); margin-bottom: var(--space-md); }
.mt-newsletter__subtitle { color: var(--color-text-on-dark); font-size: 1.0625rem; margin: 0; }
.mt-newsletter__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-on-dark-mute);
  margin-bottom: var(--space-sm);
}
.mt-newsletter__row { display: grid; gap: var(--space-md); }
.mt-newsletter__note { font-size: 0.8125rem; color: var(--color-text-on-dark-mute); margin: var(--space-md) 0 0; }
.mt-newsletter__form { min-width: 0; }
.mt-newsletter__copy { min-width: 0; }
.mt-newsletter__message,
.mt-form-message {
  margin-top: var(--space-md);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
}
.mt-newsletter__message--error,
.mt-form-message--error {
  color: var(--color-negative);
  background: var(--color-negative-bg);
  border: 1px solid var(--color-negative);
}

/* ---------- gallery + lightbox ---------- */
.mt-gallery__grid { display: grid; gap: var(--space-lg); grid-template-columns: 1fr; }
.mt-gallery__tile { margin: 0; }
.mt-gallery__tile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  cursor: zoom-in;
  background: var(--color-surface);
}
.mt-gallery__caption { font-size: 0.8125rem; color: var(--color-text-body); padding-top: var(--space-sm); }
.mt-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(14, 15, 12, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.mt-lightbox__img { max-width: 92vw; max-height: 86vh; border-radius: var(--radius-lg); }
.mt-lightbox__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 44px; height: 44px;
  border: none;
  border-radius: var(--radius-pill);
  background: #ffffff;
  color: var(--color-text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

/* ---------- footer ---------- */
.mt-footer { background: var(--color-dark); color: var(--color-text-on-dark); padding: 48px 0 32px; }
.mt-footer__grid { display: grid; gap: var(--space-2xl); }
.mt-footer__col { min-width: 0; }
.mt-footer__col--brand { max-width: 34ch; }
.mt-footer__logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--color-primary);
  text-decoration: none;
  display: inline-block;
  margin-bottom: var(--space-md);
}
.mt-footer__tagline { font-size: 0.9375rem; color: var(--color-text-on-dark-mute); }
.mt-footer__address { font-style: normal; font-size: 0.875rem; color: var(--color-text-on-dark); display: grid; gap: 2px; margin-bottom: var(--space-md); }
.mt-footer__addr-line { display: block; }
.mt-footer__contact-link { color: var(--color-primary); text-decoration: none; }
.mt-footer__contact-link:hover { color: var(--color-primary-active); text-decoration: underline; }
.mt-footer__hours { font-size: 0.875rem; color: var(--color-text-on-dark-mute); margin: 0; }
.mt-footer__heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-on-dark-mute);
  margin-bottom: var(--space-lg);
}
.mt-footer__list { list-style: none; display: grid; gap: var(--space-sm); }
.mt-footer__list a { font-size: 0.9375rem; color: var(--color-text-on-dark); text-decoration: none; }
.mt-footer__list a:hover { color: var(--color-primary); text-decoration: underline; }
.mt-footer__social { display: flex; flex-wrap: wrap; gap: var(--space-sm); }
.mt-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(232, 235, 230, 0.35);
  color: var(--color-text-on-dark);
}
.mt-footer__social-link svg { width: 20px; height: 20px; }
.mt-footer__social-link:hover { background: var(--color-primary); border-color: var(--color-primary); color: var(--color-on-primary); }
.mt-footer__languages { display: flex; flex-wrap: wrap; gap: var(--space-md); margin-top: var(--space-2xl); }
.mt-footer__languages:empty { display: none; }
.mt-footer__bottom {
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(232, 235, 230, 0.2);
}
.footer__copyright { font-size: 0.875rem; color: var(--color-text-on-dark); margin-bottom: var(--space-sm); }
.mt-footer__bottom p { font-size: 0.8125rem; color: var(--color-text-on-dark-mute); }
.mt-footer__bottom a { color: var(--color-text-on-dark-mute); }

/* ---------- cookie + sticky ---------- */
.mt-cookie {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 100;
  background: #ffffff;
  border-top: 1px solid var(--color-border-soft);
  padding: var(--space-md) 0;
}
.mt-cookie__inner { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-md); justify-content: space-between; }
.mt-cookie__text { font-size: 0.875rem; color: var(--color-text-body); margin: 0; }
.mt-cookie__link { color: var(--color-secondary); }
.mt-cookie__actions { display: flex; gap: var(--space-sm); }
.mt-sticky {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: rgba(14, 15, 12, 0.94);
  backdrop-filter: blur(8px);
  padding: var(--space-md) 0;
}
.mt-sticky__inner { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-md); justify-content: space-between; }
.mt-sticky__text { font-size: 0.9375rem; font-weight: 600; color: #ffffff; margin: 0; }
.mt-sticky__actions { display: flex; align-items: center; gap: var(--space-sm); }
.mt-sticky__btn { text-decoration: none; }
.mt-sticky__close {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-pill);
  background: transparent;
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

/* ---------- inner pages ---------- */
.mt-page { padding-top: 0; }
.mt-page__title { font-size: clamp(2rem, 6vw, 3rem); margin-bottom: var(--space-lg); }
.mt-page__lead { font-size: 1.0625rem; color: var(--color-text-body); max-width: 62ch; margin-bottom: var(--space-3xl); }
.mt-back {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-secondary);
  text-decoration: none;
  margin-bottom: var(--space-xl);
}
.mt-back:hover { text-decoration: underline; }
.auto-email { color: inherit; }

.mt-about-hero { background: var(--color-bg); }
.mt-about-story { display: grid; gap: var(--space-2xl); align-items: start; }
.mt-about-story__copy { min-width: 0; }
.mt-about-story__copy p { font-size: 1rem; color: var(--color-text-body); }
.mt-about-story__media img { border-radius: var(--radius-xl); aspect-ratio: 1 / 1; object-fit: cover; width: 100%; }

.mt-values__grid { display: grid; gap: var(--space-lg); }
.mt-value { background: var(--color-surface); border-radius: var(--radius-xl); padding: var(--space-xl); }
.mt-value__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: var(--radius-pill);
  background: var(--color-primary-pale);
  color: var(--color-positive-deep);
  margin-bottom: var(--space-lg);
}
.mt-value__svg { width: 24px; height: 24px; }
.mt-value__title { font-size: 1.0625rem; margin-bottom: var(--space-sm); }
.mt-value__text { font-size: 0.9375rem; color: var(--color-text-body); margin: 0; }

.mt-figures { background: var(--color-bg); }
.mt-figures__grid { display: grid; gap: var(--space-lg); margin-bottom: var(--space-2xl); }
.mt-stat { background: var(--color-bg-alt); border-radius: var(--radius-xl); padding: var(--space-xl); }
.mt-stat__num {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--color-secondary);
  margin-bottom: var(--space-xs);
}
.mt-stat__label { font-size: 0.875rem; color: var(--color-text-body); }
.mt-figures__cta { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-md); font-weight: 600; color: var(--color-text); margin: 0; }

.mt-contact { background: var(--color-bg); }
.mt-contact__grid { display: grid; gap: var(--space-2xl); align-items: start; }
.mt-contact__form-wrap, .mt-contact__details { background: var(--color-bg-alt); border-radius: var(--radius-xl); padding: var(--space-xl); }
.mt-contact__heading { font-size: 1.25rem; margin-bottom: var(--space-xl); }
.mt-contact__form { display: grid; gap: var(--space-lg); }
.mt-field { display: grid; gap: var(--space-sm); }
.mt-field label { font-size: 0.875rem; font-weight: 600; color: var(--color-text); }
.mt-field__req { color: var(--color-negative); }
.mt-input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
}
.mt-input--area { resize: vertical; min-height: 140px; }
.mt-input::placeholder { color: var(--color-text-muted); }
.mt-contact__list { list-style: none; display: grid; gap: var(--space-lg); margin-bottom: var(--space-xl); }
.mt-contact__item { display: flex; gap: var(--space-md); font-size: 0.9375rem; color: var(--color-text-body); }
.mt-contact__icon { width: 24px; height: 24px; flex: none; color: var(--color-secondary); }
.mt-contact__label { display: block; font-weight: 600; color: var(--color-text); margin-bottom: 2px; }
.mt-contact__note { font-size: 0.875rem; color: var(--color-text-muted); margin: 0; }

.mt-legal { background: var(--color-bg); }
.mt-legal__inner { max-width: 760px; }
.mt-legal__updated { font-size: 0.875rem; color: var(--color-text-muted); margin-bottom: var(--space-3xl); }
.mt-legal__block { margin-bottom: var(--space-3xl); }
.mt-legal__block:last-child { margin-bottom: 0; }
.mt-legal__heading { font-size: 1.25rem; margin-bottom: var(--space-md); }
.mt-legal__block p { font-size: 0.9375rem; color: var(--color-text-body); }

/* ---------- section shells ---------- */
.mt-about { background: var(--color-bg-alt); }
.mt-benefits { background: var(--color-bg-alt); }
.mt-features { background: var(--color-bg-alt); }
.mt-compare { background: var(--color-bg-alt); }
.mt-getting { background: var(--color-bg-alt); }
.mt-gallery { background: var(--color-bg-alt); }
.mt-values { background: var(--color-bg-alt); }
.mt-hero__copy { min-width: 0; }
.mt-benefit-row--left .mt-benefit-row__plaque { order: 0; }

/* ---------- scroll reveal ---------- */
.mt-benefit-row, .mt-feature, .mt-step, .mt-persona, .mt-quote, .mt-timeline__item, .mt-value, .mt-stat {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease;
}
.mt-benefit-row.visible, .mt-feature.visible, .mt-step.visible, .mt-persona.visible,
.mt-quote.visible, .mt-timeline__item.visible, .mt-value.visible, .mt-stat.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mt-benefit-row, .mt-feature, .mt-step, .mt-persona, .mt-quote, .mt-timeline__item, .mt-value, .mt-stat {
    opacity: 1; transform: none; transition: none;
  }
}

/* ---------- 768px ---------- */
@media (min-width: 768px) {
  .container { padding: 0 32px; }
  main > section { padding: 72px 0; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .mt-trustbar__inner { grid-template-columns: repeat(2, 1fr); gap: var(--space-lg) var(--space-2xl); }
  .mt-hero__facts { gap: var(--space-md); }
  .mt-benefit-row { grid-template-columns: 76px 1fr; gap: var(--space-xl); padding: var(--space-2xl); }
  .mt-benefit-row--right { grid-template-columns: 1fr 76px; }
  .mt-benefit-row--right .mt-benefit-row__plaque { order: 2; }
  .mt-feature { grid-template-columns: repeat(2, 1fr); gap: var(--space-2xl); }
  .mt-feature--media-left .mt-feature__media { order: 1; }
  .mt-feature--media-left .mt-feature__copy { order: 2; }
  .mt-feature--media-right .mt-feature__media { order: 2; }
  .mt-feature--media-right .mt-feature__copy { order: 1; }
  .mt-how__track { grid-template-columns: repeat(2, 1fr); }
  .mt-who__grid { grid-template-columns: repeat(2, 1fr); }
  .mt-values__grid { grid-template-columns: repeat(2, 1fr); }
  .mt-figures__grid { grid-template-columns: repeat(2, 1fr); }
  .mt-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .mt-risk { grid-template-columns: 1fr 1fr; align-items: start; }
  .mt-newsletter__row { grid-template-columns: 1fr auto; }
  .mt-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .mt-timeline { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- 1024px ---------- */
@media (min-width: 1024px) {
  main > section { padding: 80px 0; }
  .container { padding: 0 40px; }
  .mt-header__nav {
    position: static;
    display: block;
    padding: 0;
    border: none;
    background: transparent;
  }
  .mt-header__list { flex-direction: row; gap: var(--space-xl); }
  .mt-header__cta { display: block; }
  .mt-header__hamburger { display: none; }
  .mt-hero { padding: 72px 0 80px; }
  .mt-hero__inner { grid-template-columns: 1.2fr 1fr; align-items: center; gap: var(--space-3xl); }
  .mt-trustbar__inner { grid-template-columns: repeat(4, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .mt-how__track { grid-template-columns: repeat(4, 1fr); }
  .mt-who__grid { grid-template-columns: repeat(4, 1fr); }
  .mt-values__grid { grid-template-columns: repeat(4, 1fr); }
  .mt-figures__grid { grid-template-columns: repeat(4, 1fr); }
  .mt-gallery__grid { grid-template-columns: repeat(4, 1fr); }
  .mt-timeline { grid-template-columns: repeat(4, 1fr); }
  .mt-about__inner { grid-template-columns: 1.25fr 1fr; gap: var(--space-3xl); }
  .mt-about-story { grid-template-columns: 1.25fr 1fr; gap: var(--space-3xl); }
  .mt-contact__grid { grid-template-columns: 1.1fr 1fr; }
  .mt-newsletter__inner { grid-template-columns: 1fr 1fr; align-items: center; }
  .mt-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-3xl); }
  .mt-benefits__rows { gap: var(--space-lg); }
}

/* ---------- 1200px ---------- */
@media (min-width: 1200px) {
  .mt-hero__title { font-size: 4.25rem; }
  .section-title { font-size: 2.75rem; }
  .mt-reviews__feed { max-width: 820px; }
}

/* ---------- 1600px ---------- */
@media (min-width: 1600px) {
  :root { --container: 1320px; }
  .mt-hero { padding: 88px 0 96px; }
}
