:root{
  --bg:#07070A;
  --bg2:#0B0D14;
  --fg:#E4E4E7;
  --muted:rgba(228,228,231,.62);
  --soft:rgba(228,228,231,.45);
  --gold:#D9C27A;
  --gold2:rgba(217,194,122,.35);
  --teal:#57D6C7;
  --amber:#F59E0B;
  --tg-blue:#2AABEE;
  --glass:rgba(39,39,42,.30);
  --glass2:rgba(39,39,42,.18);
  --border:rgba(63,63,70,.30);
  --shadow:0 24px 80px rgba(0,0,0,.55);
  --radius:22px;
  --max:1120px;
  --pad:18px;
  color-scheme: dark;
}

*{ box-sizing:border-box; }
html,body{ height:100%; overflow-x:hidden; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, "SF Pro Text", "SF Pro Display", Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: radial-gradient(900px 700px at 90% 30%, rgba(217,194,122,.08), transparent 60%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--fg);
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }

.mt-container{
  width: min(var(--max), calc(100% - 2*var(--pad)));
  margin: 0 auto;
}

#mt-sky{
  position:fixed;
  inset:0;
  width:100%;
  height:100%;
  z-index:-3;
}
.mt-vignette{
  position:fixed;
  inset:-2px;
  background: radial-gradient(1200px 900px at 50% 0%, transparent 50%, rgba(0,0,0,.55) 100%);
  pointer-events:none;
  z-index:-2;
}

.mt-top{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(7,7,10,.66);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding-top: env(safe-area-inset-top, 0);
  transform: translateZ(0);
}
.mt-top__inner{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:14px;
  padding: 10px 0;
  flex-wrap: wrap;
}

main#top{
  padding-top: min(var(--mt-top-h, 120px), 200px);
  /* iOS WebView paint fix: the fixed z-index:-3/-2 starfield+vignette make the
     in-flow content not paint until first scroll. Forcing main onto its own
     composited layer (like .mt-top already does) makes it paint immediately. */
  position: relative;
  z-index: 1;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.mt-brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 150px;
  order: 1;
}
.mt-brand--toggle{
  appearance:none;
  border:0;
  background: transparent;
  padding: 0;
  color: inherit;
  cursor: pointer;
  text-align:left;
}
.mt-brand--toggle:focus-visible{
  outline: 2px solid rgba(217,194,122,.45);
  outline-offset: 3px;
  border-radius: 14px;
}
.mt-brand__mark{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,.10) 0%, rgba(255,255,255,.04) 34%, rgba(15,19,32,0) 72%),
    radial-gradient(circle at 50% 50%, rgba(217,194,122,.30) 0%, rgba(0,0,0,0) 62%);
  border:1px solid rgba(167,167,186,.18);
  box-shadow: 0 0 24px rgba(217,194,122,.10);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.mt-brand__lotus{
  width: 36px;
  height: 36px;
  display:block;
  transform: translateY(-8%);
  filter: drop-shadow(0 8px 16px rgba(217,194,122,.14));
  pointer-events:none;
}
.mt-brand__text{
  font-weight: 650;
  letter-spacing: .2px;
}
.mt-nav{
  display:flex;
  gap:18px;
  align-items:center;
  width: 100%;
  order: 3;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.mt-nav::-webkit-scrollbar{ display:none; }
.mt-nav__link{
  all: unset;
  box-sizing: border-box;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 8px 10px;
  border-radius: 12px;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;

  color: var(--muted);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .15px;
  line-height: 1;
}
.mt-nav__link:hover{ background: rgba(255,255,255,.06); color: rgba(255,255,255,.9); }
.mt-nav__link:focus-visible{
  outline: 2px solid rgba(217,194,122,.45);
  outline-offset: 2px;
}

.mt-top__actions{
  display:flex;
  gap:10px;
  align-items:center;
  margin-left: auto;
  order: 2;
}

/* Language toggle (РУ | EN) — a link to /ru/ or /en/, which set a `lang` cookie
   and bounce back to / so the URL stays a single path. The active side is a
   non-link <span>; the other is the switch link. */
.mt-langToggle{
  display:inline-flex;
  align-items:center;
  gap:2px;
  padding:3px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  flex:0 0 auto;
}
.mt-langToggle__item{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:38px;
  min-height:38px;
  padding:0 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.4px;
  line-height:1;
  color:var(--muted);
}
a.mt-langToggle__item{ cursor:pointer; transition: color .18s ease, background .18s ease; }
a.mt-langToggle__item:hover{ color:var(--fg); background:rgba(255,255,255,.06); }
a.mt-langToggle__item:focus-visible{
  outline:2px solid rgba(217,194,122,.45);
  outline-offset:2px;
}
.mt-langToggle__item.is-active{
  background:rgba(217,194,122,.16);
  color:var(--gold);
}

.mt-linkBtn{
  appearance:none;
  background:transparent;
  border:0;
  color: inherit;
  font: inherit;
  cursor:pointer;
}

.mt-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  font-weight: 600;
  letter-spacing: .2px;
  transition: transform .12s ease, background .18s ease, border-color .18s ease;
  box-shadow: 0 10px 28px rgba(0,0,0,.24);
}
.mt-btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); }
.mt-btn:active{ transform: translateY(0); }
.mt-btn--primary{
  background: linear-gradient(180deg, rgba(217,194,122,.95), rgba(217,194,122,.72));
  color: rgba(11,11,20,.95);
  border-color: rgba(217,194,122,.40);
  box-shadow: 0 18px 46px rgba(217,194,122,.12), 0 18px 46px rgba(0,0,0,.36);
}
.mt-btn--primary:hover{ background: linear-gradient(180deg, rgba(217,194,122,.98), rgba(217,194,122,.78)); }
.mt-btn--ghost{
  background: rgba(255,255,255,.04);
}
.mt-btn--lg{ padding: 12px 16px; border-radius: 18px; }
.mt-btn:focus-visible{
  outline: 2px solid rgba(217,194,122,.6);
  outline-offset: 3px;
  border-radius: 18px;
}

.mt-btn__ico{
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill:none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .95;
}
.mt-btn__ico--apple{
  fill: currentColor;
  stroke: none;
}

.mt-chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(217,194,122,.10);
  border: 1px solid rgba(217,194,122,.18);
  color: rgba(217,194,122,.92);
  font-size: 12px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.mt-hero{
  padding: 54px 0 36px;
}
.mt-hero__grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items:center;
}

.mt-nav--desktop{ display:flex; }

/* Шапка не помещалась в свой контейнер НИКОГДА, а не только на узких экранах:
   бренд 150px + меню 860px + действия 197px + зазоры 28px = 1235px при
   контейнере максимум 1120px. На широких экранах перебор уходил в поля и был
   не виден, а примерно с 1275px кнопку App Store начинало срезать — замерено
   на всех страницах сразу, включая сам лендинг (вылет +36px на 1280).

   Две половины починки, и обе нужны:
   1) меню разрешено СЖИМАТЬ (`min-width:0`) — без этого flex-элемент не
      уступает ни пикселя, и лишнее выталкивает соседей за край; в базовом
      `.mt-nav` уже стоит `overflow-x:auto`, поэтому не поместившееся
      прокручивается, а не пропадает;
   2) шаг и внутренние отступы пунктов ужаты ровно настолько, чтобы на обычных
      ширинах прокрутка не понадобилась вовсе (1235 → ~1107 < 1120).
   Бургер сюда не тянем: он живёт ниже 640px вместе с мобильной перекладкой
   бренда и действий, и включать его на ноутбуке значит лечить не ту болезнь. */
@media (min-width: 1160px){
  .mt-nav--desktop{
    min-width: 0;
    gap: 4px;
  }
  .mt-nav--desktop .mt-nav__link{
    padding-left: 5px;
    padding-right: 5px;
  }
  /* Уступает МЕНЮ, а не кнопка. Без этого сжималось всё подряд, и подпись
     App Store ломалась на две строки — кнопка помещалась, но выглядела битой. */
  .mt-top__actions{
    flex: 0 0 auto;
  }
  .mt-top__actions .mt-btn{
    white-space: nowrap;
  }
}

.mt-mobileMenuOverlay,
.mt-mobileMenu{
  display:none;
}

@media (max-width: 640px){
  .mt-top__inner{
    flex-wrap: nowrap;
    gap: 10px;
  }
  .mt-brand{
    min-width: 0;
    gap: 8px;
  }
  .mt-brand__text{
    font-size: 14px;
    white-space: nowrap;
    max-width: 34vw;
    overflow:hidden;
    text-overflow: ellipsis;
  }
  .mt-nav--desktop{ display:none; }
  .mt-top__actions{
    margin-left: 0;
    order: 3;
    flex: 0 0 auto;
  }
  .mt-top__actions .mt-btn{
    padding: 8px 9px;
    border-radius: 14px;
    font-size: 12px;
    min-height: 44px;
  }
  .mt-top__actions .mt-btn__ico{
    width: 18px;
    height: 18px;
  }

  .mt-hero{
    padding: 12px 0 28px;
  }
  .mt-hero__grid{
    gap: 18px;
  }
  .mt-cta{
    flex-direction: column;
  }
  .mt-cta .mt-btn{
    width: 100%;
  }

  /* Mobile dropdown menu */
  .mt-mobileMenuOverlay{
    display:block;
    position:fixed;
    left:0;
    right:0;
    top: min(var(--mt-top-h, 120px), 200px);
    bottom:0;
    background: rgba(0,0,0,.55);
    opacity:0;
    pointer-events:none;
    transition: opacity .16s ease;
    z-index: 49;
  }
  .mt-mobileMenu{
    display:block;
    position:fixed;
    left: 0;
    right: 0;
    top: min(var(--mt-top-h, 120px), 200px);
    padding: 10px 12px 14px;
    background: rgba(7,7,10,.86);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    transform: translateY(-10px);
    opacity:0;
    pointer-events:none;
    transition: transform .18s ease, opacity .16s ease;
    z-index: 50;
  }
  .mt-mobileMenu__item{
    all: unset;
    box-sizing: border-box;
    display:flex;
    align-items:center;
    justify-content:space-between;
    width: 100%;
    padding: 12px 12px;
    border-radius: 16px;
    color: rgba(255,255,255,.92);
    font-size: 15px;
    font-weight: 650;
    letter-spacing: .15px;
    cursor:pointer;
    user-select:none;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
  }
  .mt-mobileMenu__item + .mt-mobileMenu__item{ margin-top: 10px; }
  .mt-mobileMenu__item:hover{ background: rgba(255,255,255,.05); }
  .mt-top.is-menu-open .mt-mobileMenuOverlay{
    opacity:1;
    pointer-events:auto;
  }
  .mt-top.is-menu-open .mt-mobileMenu{
    opacity:1;
    pointer-events:auto;
    transform: translateY(0);
  }
  .mt-top.is-menu-open .mt-brand__mark{
    box-shadow: 0 0 26px rgba(217,194,122,.18);
  }
}

@media (max-width: 420px){
  .mt-brand__text{ max-width: 40vw; }
}
.mt-h1{
  margin: 14px 0 10px;
  font-size: clamp(30px, 4.8vw, 50px);
  line-height: 1.02;
  letter-spacing: -.9px;
}
.mt-lead{
  margin: 0;
  max-width: 52ch;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}
.mt-bullets{
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,.80);
  max-width: 60ch;
  display:grid;
  gap: 8px;
}
.mt-bullets li{
  position: relative;
  padding-left: 20px;
  line-height: 1.45;
  font-size: 14px;
}
.mt-bullets li::before{
  content: '';
  position:absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(217,194,122,.78);
  box-shadow: 0 0 16px rgba(217,194,122,.22);
  transform: translateY(-50%);
}

.mt-subgrid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.mt-subgrid--two{ grid-template-columns: 1fr; }
.mt-cta{
  margin-top: 18px;
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
}
.mt-ctaPrompt{
  margin-top: 16px;
  color: rgba(255,255,255,.86);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: .15px;
}
.mt-hero__fine{
  margin-top: 14px;
  color: rgba(255,255,255,.68);
  font-size: 13px;
}
.mt-inline-pill{
  display:inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(42,171,238,.22);
  border: 1px solid rgba(42,171,238,.38);
  color: rgba(255,255,255,.92);
  white-space:nowrap;
  box-shadow: 0 0 22px rgba(42,171,238,.10);
}

.mt-hero__visual{
  position:relative;
  min-height: 420px;
  padding-bottom: 76px;
}
.mt-lotusWrap{
  position: relative;
  width: min(340px, 92vw);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
}
.mt-lunarDisk{
  position:absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(167,167,186,.18);
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,.10) 0%, rgba(255,255,255,.04) 34%, rgba(15,19,32,0) 72%),
    radial-gradient(circle at 50% 50%, rgba(217,194,122,.30) 0%, rgba(0,0,0,0) 62%);
  pointer-events:none;
}
.mt-lotus{
  width: 100%;
  height: auto;
  position:relative;
  filter: drop-shadow(0 22px 50px rgba(0,0,0,.6));
  transform: translateY(-8%) translateZ(0);
}
.mt-pollen{
  position:absolute;
  inset:0;
  pointer-events:none;
}
.mt-heroCard{
  position:absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  width: min(420px, 92vw);
  padding: 14px 14px 10px;
}
.mt-heroCard__row{
  display:flex;
  gap:10px;
  align-items:center;
  padding: 7px 4px;
}
.mt-heroCard__dot{
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: rgba(217,194,122,.78);
  box-shadow: 0 0 18px rgba(217,194,122,.22);
}
.mt-heroCard__label{
  font-size: 13px;
  color: rgba(255,255,255,.84);
}

@media (max-width: 820px){
  .mt-hero__visual{
    display:none !important;
  }
}

@media (max-width: 640px){
  .mt-hero__fine{ display:none; }
}

.mt-section{
  padding: 56px 0;
}
.mt-h2{
  margin: 0 0 10px;
  font-size: 26px;
  letter-spacing: -.3px;
}
.mt-sub{
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 70ch;
}

.mt-card{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.mt-card--glass{
  background: linear-gradient(180deg, var(--glass), var(--glass2));
  transition: transform .14s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
  will-change: transform;
}

.mt-features{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.mt-features--benefits{
  grid-template-columns: 1fr;
}
.mt-features--inside{
  grid-template-columns: 1fr;
}
.mt-feature{
  padding: 16px;
  display:flex;
  flex-direction:column;
}
.mt-feature__icon{
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: rgba(217,194,122,.10);
  border: 1px solid rgba(217,194,122,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom: 12px;
  box-shadow: 0 0 30px rgba(217,194,122,.08);
}
.mt-ico{
  width: 22px;
  height: 22px;
  fill: none;
  stroke: rgba(217,194,122,.92);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mt-h3{
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -.2px;
}
.mt-p{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.mt-screen{
  margin-top: 12px;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: transparent;
  box-shadow: 0 18px 56px rgba(0,0,0,.45);
  width: 100%;
}
.mt-screen__img{
  width: 100%;
  height: auto;
  display:block;
}

.mt-shot__placeholder{
  position:relative;
  border-radius: 18px;
  overflow:hidden;
  aspect-ratio: 9 / 16;
  background:
    radial-gradient(600px 420px at 30% 20%, rgba(217,194,122,.12), transparent 60%),
    rgba(255,255,255,.03);
  border: 1px dashed rgba(217,194,122,.28);
}
.mt-shot__placeholder::after{
  content: attr(data-label);
  position:absolute;
  inset: 0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 650;
  letter-spacing: .6px;
  color: rgba(217,194,122,.7);
}
.mt-shot__img{
  width: 100%;
  height: 100%;
  display:block;
  border-radius: 18px;
  object-fit: cover;
}

.mt-steps{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.mt-step{
  padding: 14px 16px;
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.mt-step__num{
  width: 44px;
  height: 44px;
  border-radius: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(217,194,122,.92);
  font-weight: 750;
}
.mt-step__title{ font-weight: 650; margin-bottom: 4px; }
.mt-step__text{ color: var(--muted); line-height: 1.55; font-size: 14px; }

.mt-bottomCTA{
  margin-top: 18px;
  padding: 16px;
  display:flex;
  flex-wrap:wrap;
  gap: 14px;
  align-items:center;
  justify-content:space-between;
}
.mt-bottomCTA__copy{
  flex: 1 1 auto;
  min-width: 0;
}
.mt-bottomCTA--solo{ justify-content: flex-start; }
.mt-bottomCTA__title{ font-weight: 750; font-size: 16px; }
.mt-bottomCTA__text{ color: var(--muted); font-size: 14px; margin-top: 6px; max-width: 58ch; }
.mt-bottomCTA__actions{ display:flex; gap: 10px; flex-wrap:wrap; }

.mt-footer{
  padding: 34px 0 48px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(7,7,10,.35);
}
.mt-footer__inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 18px;
  flex-wrap:wrap;
}
.mt-footer__brand{ font-weight: 750; letter-spacing: .2px; }
.mt-footer__fine{ margin-top: 6px; color: rgba(255,255,255,.55); font-size: 12px; }
.mt-footer__right{ display:flex; gap: 14px; align-items:center; }
.mt-footer__link{ color: rgba(255,255,255,.72); font-size: 13px; padding: 8px 10px; border-radius: 12px; }
.mt-footer__link:hover{ background: rgba(255,255,255,.06); color: rgba(255,255,255,.92); }
.mt-footer__icoLink{ padding: 8px; }
.mt-icoTg{
  width: 18px;
  height: 18px;
  display:block;
  fill:none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Docs drawer (shield) */
.mt-drawerRoot{
  position:fixed;
  inset:0;
  z-index: 1000;
  pointer-events:none;
}
.mt-drawerOverlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.64);
  backdrop-filter: blur(8px);
  opacity:0;
  transition: opacity .18s ease;
}
.mt-drawer{
  position:absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 18px);
  width: min(520px, calc(100% - 18px));
  max-height: min(88dvh, 760px);
  background: linear-gradient(180deg, rgba(20,20,28,.88), rgba(20,20,28,.62));
  border: 1px solid rgba(255,255,255,.10);
  border-bottom: 0;
  border-radius: 26px 26px 0 0;
  box-shadow: 0 28px 90px rgba(0,0,0,.65);
  opacity: 0;
  transition: transform .22s ease, opacity .18s ease;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.mt-drawer__handle{
  width: 44px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  margin: 10px auto 6px;
}
.mt-drawer__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 14px 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mt-drawer__title{
  font-weight: 700;
  color: rgba(255,255,255,.92);
  letter-spacing: .2px;
}
.mt-drawer__close{
  appearance:none;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.88);
  border-radius: 14px;
  padding: 8px 10px;
  cursor:pointer;
}
.mt-drawer__content{
  padding: 14px;
  overflow:auto;
  flex: 1 1 auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding-bottom: calc(14px + env(safe-area-inset-bottom, 0));
}

.mt-docsIntro{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
}
.mt-docsIntro__mark{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(15,19,32,.62);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  flex: 0 0 auto;
}
.mt-docsIntro__lotus{ width: 30px; height: 30px; display:block; }
.mt-docsIntro__title{ font-weight: 650; color: rgba(255,255,255,.92); }
.mt-docsIntro__desc{ margin-top: 4px; color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.45; }

.mt-docsList{ margin-top: 12px; display:flex; flex-direction:column; gap: 10px; }
.mt-docItem{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  transition: transform .14s ease, background .16s ease, border-color .16s ease;
}
.mt-docItem:hover{ background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); transform: translateY(-1px); }
.mt-docItem__ico{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(15,19,32,.62);
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(217,194,122,.95);
  flex: 0 0 auto;
}
.mt-docIco{
  width: 20px;
  height: 20px;
  fill:none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mt-docItem__title{ font-weight: 650; color: rgba(255,255,255,.92); }
.mt-docItem__meta{
  margin-top: 6px;
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  align-items:center;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(255,255,255,.6);
}
.mt-docPill{
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(217,194,122,.12);
  border: 1px solid rgba(217,194,122,.22);
  color: rgba(217,194,122,.92);
  white-space: nowrap;
}
.mt-docMetaText{ color: rgba(255,255,255,.55); }
.mt-docsSupport{
  margin-top: 14px;
  padding: 2px 2px 10px;
  color: rgba(255,255,255,.55);
  font-size: 12px;
}
.mt-docsSupport__link{ color: rgba(217,194,122,.92); }
.mt-docsSupport__link:hover{ text-decoration: underline; }

.mt-drawerRoot.is-open{
  pointer-events:auto;
}
.mt-drawerRoot.is-open .mt-drawerOverlay{
  opacity: 1;
}
.mt-drawerRoot.is-open .mt-drawer{
  opacity: 1;
  transform: translate(-50%, 0);
}

/* 1160, а не 860: однорядная шапка требует ~1100px (бренд 150 + меню ~690 +
   действия 233 + зазоры), а контейнер это `min(1120px, 100% - 36px)`. С 860px
   она не помещалась НИКОГДА и, поскольку меню здесь `overflow:visible`,
   лишнее рисовалось поверх бренда и переключателя языка. Ниже порога
   работает штатная двухрядная раскладка: меню уходит на свою строку
   (`.mt-nav{width:100%;order:3}`) — это режим самого дизайна, а не выдумка. */
@media (min-width: 1160px){
  .mt-top__inner{ flex-wrap: nowrap; }
  .mt-brand{ order: 0; }
  .mt-nav{
    width: auto;
    order: 1;
    overflow: visible;
    flex: 1 1 auto;
    justify-content: center;
  }
  .mt-top__actions{
    order: 2;
    margin-left: 0;
  }
  .mt-hero__grid{ grid-template-columns: 1.1fr .9fr; gap: 32px; }
  .mt-features{ grid-template-columns: repeat(2, 1fr); }
  .mt-features--benefits{ grid-template-columns: repeat(2, 1fr); }
  .mt-features--inside{ grid-template-columns: repeat(2, 1fr); }
  .mt-steps{ grid-template-columns: repeat(3, 1fr); }
  .mt-subgrid--two{ grid-template-columns: repeat(2, 1fr); }
  /* On desktop, allow CTA copy to use full card width (no narrow column). */
  .mt-bottomCTA__copy{ max-width: none; }
  .mt-bottomCTA__text{ max-width: none; }
}

@media (min-width: 1100px){
  .mt-features--inside{ grid-template-columns: repeat(3, 1fr); }
  .mt-features--benefits{ grid-template-columns: repeat(4, 1fr); }
}

@media (hover:hover) and (pointer:fine){
  .mt-card--glass:hover{
    transform: translateY(-2px);
    border-color: rgba(255,255,255,.16);
    box-shadow: 0 26px 86px rgba(0,0,0,.62);
  }
  /* Keep the hero floating card centered while applying the hover lift. */
  .mt-heroCard:hover{
    transform: translateX(-50%) translateY(-2px);
  }
  .mt-btn:hover{ transform: translateY(-2px); }
}

@media (prefers-reduced-motion: reduce){
  .mt-btn{ transition:none; }
  .mt-card--glass{ transition:none; }
  .mt-docItem{ transition:none; }
  .mt-drawerOverlay{ transition:none; }
  .mt-drawer{ transition:none; }
  /* Defeat the runtime-injected (.mt-pollenDot) infinite float for reduced-motion
     users. !important is required because onepager.js appends its <style> after
     styles.css, so equal-specificity source order would otherwise win. */
  .mt-pollenDot{ animation: none !important; }
}

/* ============================================================================
   Selling rebuild — S1–S9 section styles (namespace mt-, on §4 tokens)
   system-sans body · serif (Playfair fallback) ONLY in the kicker · flat glass
   reading text ≥16px / line-height 1.5–1.75 · touch targets ≥44px · focus-states
   ========================================================================== */

/* ── S1 Hero ─────────────────────────────────────────────────────────────── */
.mt-kicker{
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(15px, 2.2vw, 18px);
  font-weight: 600;
  letter-spacing: .4px;
  color: var(--gold);
  margin: 0 0 14px;
}
.mt-lead--lg{
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.6;
  max-width: 56ch;
}
.mt-heroCta{
  margin-top: 26px;
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap: 14px 20px;
}
.mt-heroCta__primary{
  min-height: 48px;
  font-size: 16px;
}
.mt-heroCta .mt-btn,
.mt-finalCta .mt-btn{
  min-height: 48px;
}
.mt-textLink{
  display:inline-flex;
  align-items:center;
  min-height: 44px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid rgba(217,194,122,.38);
  transition: color .18s ease, border-color .18s ease;
  cursor: pointer;
}
.mt-textLink:hover{
  color: #E1CD92;
  border-color: var(--gold);
}
.mt-textLink:focus-visible{
  outline: 2px solid rgba(217,194,122,.5);
  outline-offset: 4px;
  border-radius: 6px;
}
.mt-microcopy{
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: .15px;
}

/* ── S2 Hook ─────────────────────────────────────────────────────────────── */
.mt-hook__inner{
  max-width: 760px;
}
/* S2 hook is short copy — keep it a tight band that flows out of the hero,
   not a big block floating in empty space (founder feedback) */
.mt-section.mt-hook{ padding: 6px 0 14px; }
.mt-lead-line{
  margin: 0 0 16px;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.55;
  color: var(--fg);
  font-weight: 500;
  max-width: 34ch;
}
.mt-phaseList{
  list-style: none;
  margin: 0;
  padding: 0;
  display:grid;
  gap: 8px;
  max-width: 60ch;
}
.mt-phaseList__item{
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}
.mt-phaseList__item::before{
  content:'';
  position:absolute;
  left: 0;
  top: .62em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(87,214,199,.88);
  box-shadow: 0 0 16px rgba(87,214,199,.30);
}
.mt-phaseList__name{
  color: var(--fg);
  font-weight: 600;
}
/* Desktop: lay the hook lead-line and the phase list side by side so the block
   uses the page width instead of sitting alone on the left (founder feedback). */
@media (min-width: 760px){
  .mt-hook__inner{
    max-width: 1000px;
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    gap: 48px;
    align-items: center;
  }
  .mt-lead-line{ margin: 0; max-width: none; }
  .mt-phaseList{ max-width: none; }
}

/* ── S3 Что приходит каждое утро ─────────────────────────────────────────── */
.mt-morning__grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items:center;
}
.mt-dailyCard{
  margin-top: 18px;
  padding: 22px 24px;
  border-left: 2px solid rgba(217,194,122,.55);
}
.mt-dailyCard__text{
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg);
}
.mt-morning__demo{
  display:flex;
  justify-content:center;
}

/* ── S4 Что внутри ───────────────────────────────────────────────────────── */
.mt-feature__text{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 16px;
}
.mt-features--inside .mt-feature{
  gap: 6px;
}
.mt-features--inside .mt-feature .mt-demo{
  margin-top: 14px;
}
.mt-deeper{
  margin: 22px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 64ch;
}

/* ── S5 Доверие ──────────────────────────────────────────────────────────── */
.mt-trustGrid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.mt-trust__item{
  padding: 20px 22px;
}
.mt-trust__text{
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 16px;
}
.mt-proof{
  margin: 22px auto 0;
  text-align:center;
  max-width: 56ch;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(228,228,231,.86);
}

/* ── S6 Как начать ───────────────────────────────────────────────────────── */
.mt-step__text--lead{
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg);
}
.mt-trialLine{
  margin: 22px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

/* Install / push blocks (replaces former inline styles; both RU files share) */
.mt-installBlock{
  margin-top: 40px;
}
.mt-installBlock__title,
.mt-pushBlock__title{
  text-align:center;
  font-size: 1.3rem;
  margin: 0 0 8px;
}
.mt-installBlock__sub,
.mt-pushBlock__sub{
  text-align:center;
  max-width: 600px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.mt-pwa-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.mt-pwa-grid--install{
  grid-template-columns: 1fr;
  max-width: 520px;
}
.mt-installCard{
  padding: 1.5rem;
}
.mt-installCard--appstore{
  position: relative;
  overflow: hidden;
}
.mt-installCard--appstore::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(217,194,122,.16), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.05), transparent 48%);
  pointer-events: none;
}
.mt-installCard--appstore > *{
  position: relative;
  z-index: 1;
}
.mt-installCard__head{
  display:flex;
  align-items:center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.mt-installCard__ico{ flex-shrink:0; }
.mt-installCard__title{
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
}
.mt-installSteps{
  display:flex;
  flex-direction:column;
  gap: 1rem;
}
.mt-installStep{
  display:flex;
  gap: .75rem;
  align-items:flex-start;
}
/* the unclassed body div: let text wrap inside the flex row instead of forcing
   an overflow / line break on narrow WebViews (iOS Safari / Telegram) */
.mt-installStep > div{ flex: 1 1 auto; min-width: 0; }
/* safety: a demo can never overflow its install/push card on mobile */
.mt-installCard__demo, .mt-pushCard{ max-width: 100%; overflow: hidden; }
.mt-installCard__demo .mt-demo, .mt-pushCard .mt-demo{ max-width: 100%; }
.mt-installStep__num{
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(217,194,122,.15);
  color: var(--gold);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.mt-installStep__head{
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 2px;
  font-size: 16px;
  line-height: 1.5;
}
.mt-installStep__text{
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.5;
}
.mt-installStep__shareIco{
  vertical-align: middle;
  margin: 0 2px;
}
.mt-installCard__demo{ margin-top: 1.25rem; }
.mt-appStoreCard__text{
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 1rem;
}
.mt-appStoreCard__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .65rem;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}
.mt-appStoreCard__list li{
  position: relative;
  padding-left: 20px;
}
.mt-appStoreCard__list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(217,194,122,.26);
}
.mt-appStoreCard__btn{
  width: 100%;
  margin-top: 1.25rem;
}
.mt-gold{ color: var(--gold); }
.mt-installWhy{
  margin: 1.5rem auto 0;
  padding: 1.25rem 1.5rem;
  text-align:center;
  max-width: 600px;
}
.mt-installWhy__text{
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}
.mt-pushBlock{ margin-top: 3rem; }
.mt-pushCard{
  padding: 1.5rem;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.mt-pushCard__note{
  margin-top: 1rem;
  text-align:center;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--muted);
}

/* ── S7 Анти-хайп band ───────────────────────────────────────────────────── */
.mt-band{
  padding: 40px 0;
}
.mt-band__text{
  margin: 0 auto;
  max-width: 30ch;
  text-align:center;
  font-size: clamp(20px, 2.6vw, 26px);
  line-height: 1.5;
  color: var(--fg);
  font-weight: 500;
}

/* ── S8 Финальный CTA ────────────────────────────────────────────────────── */
.mt-final__inner{
  text-align:center;
}
.mt-final__line{
  margin: 0 0 22px;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.45;
  color: var(--fg);
  font-weight: 600;
  letter-spacing: -.3px;
}
.mt-finalCta{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap: 14px 20px;
}
.mt-finalCta .mt-btn--primary{ min-height: 48px; }

/* ── S9 Footer additions ─────────────────────────────────────────────────── */
.mt-footer__mission{
  max-width: 64ch;
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(228,228,231,.84);
}
.mt-footer__brandAlt{
  color: var(--muted);
  font-weight: 500;
}
.mt-footer__care{
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
}
.mt-footer__careLink{
  color: var(--gold);
  min-height: 44px;
  display:inline-flex;
  align-items:center;
}
.mt-footer__careLink:focus-visible{
  outline: 2px solid rgba(217,194,122,.5);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ── Responsive: section layouts ─────────────────────────────────────────── */
@media (min-width: 760px){
  .mt-morning__grid{
    grid-template-columns: 1fr 1fr;
  }
  .mt-features--inside{
    grid-template-columns: repeat(3, 1fr);
  }
  .mt-trustGrid{
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 760px){
  .mt-pwa-grid--install{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 800px;
  }
  .mt-pwa-grid--install .mt-installCard--appstore{
    grid-column: 1 / -1;
  }
}
@media (min-width: 1100px){
  .mt-pwa-grid--install{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1040px;
  }
  .mt-pwa-grid--install .mt-installCard--appstore{
    grid-column: auto;
  }
}
@media (max-width: 640px){
  .mt-pwa-grid{ grid-template-columns: 1fr; }
  .mt-heroCta{ gap: 14px 16px; }
  .mt-heroCta .mt-btn,
  .mt-finalCta .mt-btn,
  .mt-heroCta .mt-textLink,
  .mt-finalCta .mt-textLink{
    width: 100%;
    justify-content: center;
  }
}

/* Reduced motion: kill any transitions added by selling-rebuild sections */
@media (prefers-reduced-motion: reduce){
  .mt-textLink{ transition:none; }
}

/* ── Cookie/analytics consent — bottom rising banner (glass, brand style) ─── */
.mt-consent{
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 400;
  padding: 12px clamp(14px, 4vw, 28px);
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  background: rgba(7,7,10,.86);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-top: 1px solid rgba(217,194,122,.28);
  box-shadow: 0 -12px 34px rgba(0,0,0,.45);
  transform: translateY(115%);
  transition: transform .40s cubic-bezier(.22,.61,.36,1);
}
.mt-consent.is-in{ transform: translateY(0); }
.mt-consent__inner{
  max-width: 1080px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
}
.mt-consent__text{
  margin: 0; flex: 1 1 300px;
  font-size: 13.5px; line-height: 1.45; color: rgba(228,228,231,.86);
}
.mt-consent__more{ color: var(--gold); text-decoration: underline; text-underline-offset: 2px; white-space: nowrap; }
.mt-consent__more:hover{ color: #FFEBB4; }
.mt-consent__actions{ display: flex; gap: 10px; flex: 0 0 auto; }
.mt-consent__btn{
  padding: 9px 18px; border-radius: 999px;
  font: inherit; font-size: 13.5px; font-weight: 600; cursor: pointer;
  border: 1px solid transparent;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.mt-consent__btn--ghost{ background: rgba(255,255,255,.06); color: rgba(228,228,231,.86); border-color: rgba(255,255,255,.14); }
.mt-consent__btn--ghost:hover{ background: rgba(255,255,255,.11); }
.mt-consent__btn--gold{ background: rgba(217,194,122,.16); color: var(--gold); border-color: rgba(217,194,122,.46); }
.mt-consent__btn--gold:hover{ background: rgba(217,194,122,.24); border-color: rgba(217,194,122,.62); }
@media (max-width: 560px){
  .mt-consent__inner{ flex-direction: column; align-items: stretch; }
  .mt-consent__text{ flex: 0 0 auto; }   /* natural height in the column (avoid 300px flex-basis) */
  .mt-consent__actions{ justify-content: flex-end; }
}
@media (prefers-reduced-motion: reduce){
  .mt-consent{ transition: none; }
}

/* ── Contribute page: small extensions over the onepager canon ───────────── */
.mt-contrib-example{
  display:grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items:start;
}
.mt-contrib-example__demo{
  display:flex;
  justify-content:center;
}
.mt-contrib-example__formats{
  margin-top: 28px;
}
@media (min-width: 760px){
  .mt-contrib-example{
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    gap: 28px;
    align-items: start;
  }
  .mt-contrib-example__demo{
    justify-content: flex-end;
  }
}
.mt-contrib-page,
.mt-contrib-page .mt-top,
.mt-contrib-page main,
.mt-contrib-page .mt-footer{
  -webkit-user-select: none;
  user-select: none;
}
.mt-contrib-page .mt-contrib-form input,
.mt-contrib-page .mt-contrib-form textarea,
.mt-contrib-page .mt-contrib-form select,
.mt-contrib-page .mt-contrib-checks label{
  -webkit-user-select: text;
  user-select: text;
}
.mt-contrib-panel{
  padding: 22px;
}
.mt-contrib-panel .mt-phaseList{
  margin-top: 14px;
}
.mt-contrib-form-section{
  background: linear-gradient(180deg, transparent, rgba(87,214,199,.025));
}
.mt-contrib-form-wrap{
  display:grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items:start;
}
.mt-contrib-form{
  padding: clamp(20px, 4vw, 30px);
  display:grid;
  gap: 18px;
}
.mt-contrib-field{
  display:grid;
  gap: 8px;
}
.mt-contrib-field label,
.mt-contrib-fieldset legend{
  color: rgba(255,255,255,.9);
  font-size: 14px;
  font-weight: 650;
}
.mt-contrib-field input,
.mt-contrib-field select,
.mt-contrib-field textarea{
  width:100%;
  min-height:48px;
  padding: 12px 14px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:14px;
  background:rgba(7,7,10,.72);
  color:var(--fg);
  font:inherit;
}
.mt-contrib-field textarea{
  min-height:120px;
  resize:vertical;
  line-height:1.55;
}
.mt-contrib-field select{
  color-scheme:dark;
}
.mt-contrib-field input::placeholder{
  color:var(--soft);
}
.mt-contrib-field input:focus,
.mt-contrib-field select:focus,
.mt-contrib-field textarea:focus{
  outline:2px solid rgba(217,194,122,.55);
  outline-offset:2px;
  border-color:rgba(217,194,122,.35);
}
.mt-contrib-fieldset{
  min-width:0;
  margin:0;
  padding:0;
  border:0;
}
.mt-contrib-fieldset legend{
  margin-bottom:10px;
}
.mt-contrib-checks{
  display:grid;
  grid-template-columns:1fr;
  gap:8px;
}
.mt-contrib-checks label{
  min-height:44px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border:1px solid rgba(255,255,255,.09);
  border-radius:14px;
  background:rgba(255,255,255,.025);
  color:var(--muted);
  cursor:pointer;
}
.mt-contrib-checks label:has(input:checked){
  border-color:rgba(87,214,199,.35);
  background:rgba(87,214,199,.07);
  color:var(--fg);
}
.mt-contrib-checks input{
  width:18px;
  height:18px;
  margin:0;
  accent-color:var(--teal);
}
.mt-contrib-optional{
  color:var(--soft);
  font-size:12px;
  font-weight:500;
}
.mt-contrib-privacy{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.55;
}
.mt-contrib-privacy a{
  color:var(--gold);
  text-decoration:underline;
  text-underline-offset:3px;
}
.mt-contrib-submit{
  width:100%;
  min-height:48px;
}
.mt-contrib-submit:disabled{
  cursor:wait;
  opacity:.68;
  transform:none;
}
.mt-contrib-status{
  padding:12px 14px;
  border-radius:14px;
  font-size:14px;
  line-height:1.5;
}
.mt-contrib-status.is-success{
  color:#bcebe5;
  border:1px solid rgba(87,214,199,.25);
  background:rgba(87,214,199,.08);
}
.mt-contrib-status.is-error{
  color:#f4d5d5;
  border:1px solid rgba(239,120,120,.25);
  background:rgba(239,120,120,.07);
}
.mt-contrib-status a{
  display:inline-flex;
  margin-left:6px;
  color:var(--gold);
  text-decoration:underline;
  text-underline-offset:3px;
}
.mt-contrib-status a[hidden]{
  display:none;
}
.mt-contrib-honeypot{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}

@media (min-width:760px){
  .mt-contrib-form-wrap{
    grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr);
    gap:48px;
  }
  .mt-contrib-checks{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
