:root{
  --bg:#07070A;
  --bg2:#0B0B14;
  --fg:#EAEAF2;
  --muted:rgba(234,234,242,.72);
  --soft:rgba(234,234,242,.55);
  --gold:#D9C27A;
  --gold2:rgba(217,194,122,.35);
  --glass:rgba(20,20,28,.46);
  --glass2:rgba(20,20,28,.28);
  --border:rgba(167,167,186,.18);
  --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%; }
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(1200px 800px at 20% 10%, rgba(180,140,255,.10), transparent 55%),
              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: var(--mt-top-h, 64px);
}
.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: 26px;
  height: 26px;
  border-radius: 11px;
  background: radial-gradient(circle at 30% 30%, rgba(217,194,122,.18), rgba(217,194,122,.06) 60%, transparent 72%);
  border:1px solid rgba(217,194,122,.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: 22px;
  height: 22px;
  display:block;
  transform: translateY(.4px);
  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;
}

.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__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-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 56px;
}
.mt-hero__grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items:center;
}

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

.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;
  }
  .mt-top__actions .mt-btn__ico{
    width: 18px;
    height: 18px;
  }

  .mt-hero{
    padding: 40px 0 44px;
  }
  .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: var(--mt-top-h, 64px);
    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: var(--mt-top-h, 64px);
    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-lotus{
  width: 96%;
  height: auto;
  filter: drop-shadow(0 22px 50px rgba(0,0,0,.6));
  transform: translateY(-6px) translateZ(0);
}
.mt-glow{
  position:absolute;
  inset: 16%;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, rgba(217,194,122,.18), transparent 62%);
  filter: blur(8px);
  pointer-events:none;
}
.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));
  backdrop-filter: blur(14px);
  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%),
    radial-gradient(700px 480px at 80% 30%, rgba(180,140,255,.10), 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);
}

@media (min-width: 860px){
  .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; }
}
