:root {
  --ma-ink: #18251f;
  --ma-muted: #66736d;
  --ma-cream: #f8f5ed;
  --ma-orange: #9a6b22;
  --ma-green: #185d48;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ma-ink);
  background: var(--ma-cream);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, ol, ul { margin: 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ma-nav {
  position: relative;
  z-index: 10;
  min-height: 70px;
  padding: 0 max(24px, calc((100vw - 1220px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(24, 37, 31, .15);
  background: rgba(248, 245, 237, .94);
}
.ma-brand { display: flex; align-items: center; gap: 4px; font-size: 21px; font-weight: 600; }
.ma-brand img { width: 32px; height: 32px; object-fit: contain; }
.ma-nav__links { display: flex; align-items: center; gap: 25px; color: var(--ma-muted); font-size: 12px; font-weight: 600; }
.ma-nav__links > a:hover { color: var(--ma-green); }
.ma-nav__cta { padding: 9px 14px; border: 1px solid rgba(24, 37, 31, .22); border-radius: 99px; color: var(--ma-ink); }
.ma-back { display: flex; align-items: center; gap: 8px; color: var(--ma-muted); font-size: 13px; }
.ma-back::before { width: 1px; height: 18px; margin-right: 2px; background: rgba(24, 37, 31, .18); content: ""; }
.ma-brand:hover { color: var(--ma-green); }

.ma-hero {
  position: relative;
  max-width: 1280px;
  min-height: 670px;
  margin: 0 auto;
  padding: 92px 56px 84px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .86fr);
  align-items: center;
  gap: 70px;
}
.ma-hero::before {
  content: "";
  position: absolute;
  left: -18vw;
  top: 75px;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(24, 93, 72, .12);
  border-radius: 50%;
}
.ma-kicker { margin-bottom: 20px; color: var(--ma-orange); font-size: 11px; font-weight: 800; letter-spacing: .22em; }
.ma-hero h1,
.ma-section__heading h2,
.ma-evaluation__title h2,
.ma-caution h2,
.ma-final h2 {
  font-family: "Songti SC", "STSong", "Noto Serif CJK SC", serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.05em;
}
.ma-hero h1 { font-size: clamp(54px, 6vw, 86px); }
.ma-hero h1 em { color: var(--ma-green); font-style: normal; }
.ma-lead { max-width: 620px; margin-top: 30px; color: var(--ma-muted); font-size: 17px; line-height: 1.9; }
.ma-hero__actions { display: flex; align-items: center; gap: 26px; margin-top: 38px; }
.ma-primary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  min-width: 210px;
  padding: 16px 20px;
  border-radius: 3px;
  color: #fff;
  background: var(--ma-orange);
  box-shadow: 0 10px 24px rgba(154, 107, 34, .18);
  font-size: 13px;
  font-weight: 700;
  transition: transform .2s ease;
}
.ma-primary:hover { transform: translateY(-2px); }
.ma-text-link { padding-bottom: 5px; border-bottom: 1px solid rgba(24, 37, 31, .35); color: var(--ma-muted); font-size: 12px; }

.ma-hero__art { position: relative; min-height: 500px; display: grid; place-items: center; }
.ma-orbit { position: absolute; border: 1px solid rgba(24, 93, 72, .18); border-radius: 50%; }
.ma-orbit--one { width: 430px; height: 430px; }
.ma-orbit--two { width: 330px; height: 330px; border-color: rgba(154, 107, 34, .22); }
.ma-phone {
  position: relative;
  z-index: 2;
  width: 310px;
  padding: 28px 20px 22px;
  border: 7px solid var(--ma-ink);
  border-radius: 34px;
  background: #fffdf8;
  box-shadow: 0 30px 65px rgba(24, 37, 31, .2);
  transform: rotate(2deg);
}
.ma-phone::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  width: 82px;
  height: 18px;
  border-radius: 0 0 13px 13px;
  background: var(--ma-ink);
  transform: translateX(-50%);
}
.ma-phone__top { display: flex; align-items: center; gap: 8px; margin: 5px 3px 18px; font-size: 11px; font-weight: 750; }
.ma-phone__top i { width: 9px; height: 9px; border-radius: 50% 50% 50% 2px; background: var(--ma-orange); }
.ma-phone__search { height: 43px; padding: 0 13px; display: flex; align-items: center; gap: 8px; border: 1px solid #d8ddd8; border-radius: 9px; color: #87918c; font-size: 10px; }
.ma-phone__search b { color: var(--ma-green); font-size: 18px; font-weight: 400; }
.ma-phone__card { min-height: 77px; margin-top: 12px; padding: 14px 13px; display: flex; align-items: center; gap: 13px; border-radius: 10px; }
.ma-phone__card > span { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 8px; font-weight: 750; }
.ma-phone__card strong, .ma-phone__card small { display: block; }
.ma-phone__card strong { font-size: 11px; }
.ma-phone__card small { margin-top: 6px; color: rgba(24, 37, 31, .55); font-size: 8px; }
.ma-phone__card--yellow { color: #665817; background: #f4e8a9; }
.ma-phone__card--blue { color: #2e6376; background: #dcecf2; }
.ma-phone__card--green { color: #376b48; background: #dbe8d9; }
.ma-art-note { position: absolute; z-index: 3; padding: 10px 14px; color: #fff; background: var(--ma-ink); border-radius: 2px; box-shadow: 0 12px 28px rgba(24, 37, 31, .14); font-size: 10px; letter-spacing: .08em; }
.ma-art-note--top { top: 77px; right: -2px; transform: rotate(5deg); }
.ma-art-note--bottom { bottom: 82px; left: 6px; background: var(--ma-orange); transform: rotate(-6deg); }

.ma-intro-strip { min-height: 78px; padding: 20px 6vw; display: flex; align-items: center; justify-content: center; gap: 34px; color: #eff6ef; background: var(--ma-green); }
.ma-intro-strip p { font-size: 12px; font-weight: 650; letter-spacing: .08em; }
.ma-intro-strip span { width: 4px; height: 4px; border-radius: 50%; background: #efb54e; }

.ma-section { max-width: 1280px; margin: 0 auto; padding: 110px 56px; }
.ma-section__heading { display: grid; grid-template-columns: 1fr 420px; align-items: end; gap: 80px; margin-bottom: 54px; }
.ma-section__heading h2, .ma-evaluation__title h2, .ma-final h2 { font-size: clamp(38px, 4.5vw, 58px); }
.ma-section__heading > p { color: var(--ma-muted); font-size: 14px; line-height: 1.85; }
.ma-category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ma-category { min-height: 330px; padding: 28px; display: flex; flex-direction: column; color: inherit; border-radius: 4px; text-decoration: none; cursor: pointer; transition: transform .22s ease, box-shadow .22s ease; }
.ma-category:hover,
.ma-category:focus-visible { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(24, 37, 31, .1); outline: none; }
.ma-category--lilac { background: #e8dff0; }
.ma-category--sky { background: #dcecf2; }
.ma-category--yellow { background: #f4e8a9; }
.ma-category--blue { background: #cedde9; }
.ma-category--coral { background: #eadfc8; }
.ma-category--green { background: #dbe8d9; }
.ma-category__top { display: flex; align-items: center; justify-content: space-between; color: rgba(24, 37, 31, .45); font-size: 10px; font-weight: 750; }
.ma-category__mark { width: 50px; height: 50px; display: grid; place-items: center; color: var(--ma-ink); border: 1px solid rgba(24, 37, 31, .5); border-radius: 50%; font-family: "Songti SC", "STSong", serif; font-size: 20px; }
.ma-category h3 { margin-top: 44px; font-family: "Songti SC", "STSong", serif; font-size: 25px; font-weight: 600; }
.ma-category > p { margin-top: 12px; color: rgba(24, 37, 31, .68); font-size: 13px; line-height: 1.7; }
.ma-category ul { margin-top: auto; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; list-style: none; }
.ma-category li { padding: 6px 9px; border: 1px solid rgba(24, 37, 31, .18); border-radius: 99px; font-size: 9px; }

.ma-catalog { padding: 110px 0; background: #edf1ed; }
.ma-catalog__inner { max-width: 1280px; margin: 0 auto; padding: 0 56px; }
.ma-catalog .ma-section__heading { grid-template-columns: 1fr; }
.ma-catalog__date {
  margin-top: 14px;
  color: var(--ma-green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
}
.ma-catalog__toolbar {
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(280px, .8fr) 1.2fr;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(24, 37, 31, .15);
  border-radius: 4px;
  background: rgba(255, 255, 255, .72);
}
.ma-search {
  height: 50px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(24, 37, 31, .18);
  border-radius: 3px;
  background: #fff;
}
.ma-search b { color: var(--ma-green); font-size: 21px; font-weight: 400; }
.ma-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ma-ink);
  background: transparent;
  font: inherit;
  font-size: 13px;
}
.ma-search input::placeholder { color: #8a948f; }
.ma-filter-list { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px; }
.ma-filter-list button {
  padding: 9px 12px;
  border: 1px solid rgba(24, 37, 31, .16);
  border-radius: 99px;
  color: var(--ma-muted);
  background: transparent;
  font: inherit;
  font-size: 10px;
  font-weight: 650;
  cursor: pointer;
}
.ma-filter-list button:hover,
.ma-filter-list button.is-active { color: #fff; border-color: var(--ma-green); background: var(--ma-green); }
.ma-catalog__status { min-height: 58px; padding: 22px 2px 14px; color: var(--ma-muted); font-size: 12px; }
.ma-app-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ma-app-card {
  min-height: 360px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(24, 37, 31, .13);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(24, 37, 31, .035);
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.ma-app-card.is-linked { cursor: pointer; }
.ma-app-card.is-linked:hover,
.ma-app-card.is-linked:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(21, 75, 52, .38);
  box-shadow: 0 14px 34px rgba(24, 37, 31, .09);
  outline: none;
}
.ma-app-card__head { display: grid; grid-template-columns: 48px 1fr; align-items: center; gap: 13px; }
.ma-app-card__mark {
  position: relative;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  color: var(--ma-green);
  background: #dbe8d9;
  font-family: "Songti SC", "STSong", serif;
  font-size: 20px;
}
.ma-app-card__fallback { grid-area: 1 / 1; }
.ma-app-card__logo {
  z-index: 1;
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0;
  transition: opacity .15s ease;
}
.ma-app-card__mark.has-logo .ma-app-card__logo { opacity: 1; }
.ma-app-card__head h3 { font-size: 15px; line-height: 1.35; }
.ma-app-card__head p { margin-top: 4px; overflow: hidden; color: var(--ma-muted); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.ma-app-card__tags,
.ma-app-card__topics { display: flex; flex-wrap: wrap; gap: 5px; }
.ma-app-card__tags { margin-top: 18px; }
.ma-app-card__tags span { padding: 5px 7px; border-radius: 2px; color: var(--ma-green); background: #edf4ed; font-size: 8px; font-weight: 700; }
.ma-app-card__tags span.is-source {
  color: #73501d;
  background: #f4ead8;
}
.ma-app-card__evaluated {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #78857f;
  font-size: 9px;
  font-variant-numeric: tabular-nums;
}
.ma-app-card__evaluated span {
  color: var(--ma-orange);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
}
.ma-app-card__description {
  margin-top: 14px;
  display: -webkit-box;
  overflow: hidden;
  color: var(--ma-muted);
  font-size: 11px;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}
.ma-app-card__store-link {
  width: fit-content;
  margin-top: 16px;
  color: var(--ma-green);
  font-size: 9px;
  font-weight: 800;
  border-bottom: 1px solid rgba(21, 75, 52, .28);
}
.ma-app-card.is-linked:hover .ma-app-card__store-link { border-bottom-color: currentColor; }
.ma-app-card__topics { margin-top: auto; padding-top: 20px; border-top: 1px solid rgba(24, 37, 31, .1); }
.ma-app-card__topics span { padding: 5px 0; color: #52645c; font-size: 8px; }
.ma-app-card__topics span:not(:last-child)::after { content: "·"; margin-left: 6px; color: #a5ada9; }
.ma-load-more {
  min-width: 210px;
  margin: 34px auto 0;
  padding: 14px 22px;
  display: block;
  border: 1px solid var(--ma-green);
  border-radius: 3px;
  color: var(--ma-green);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.ma-load-more:hover { color: #fff; background: var(--ma-green); }
.ma-load-more[hidden] { display: none !important; }

.ma-evaluation { padding: 110px 0; color: #f9f6ef; background: var(--ma-ink); }
.ma-evaluation__inner { max-width: 1168px; margin: 0 auto; padding: 0 56px; display: grid; grid-template-columns: .85fr 1.15fr; gap: 110px; }
.ma-evaluation__title { position: sticky; top: 50px; align-self: start; }
.ma-evaluation__title .ma-kicker { color: #efb54e; }
.ma-evaluation__title > p:last-child { max-width: 440px; margin-top: 28px; color: rgba(255, 255, 255, .58); font-size: 14px; line-height: 1.85; }
.ma-evaluation__list { padding: 0; list-style: none; }
.ma-evaluation__list li { padding: 32px 0; display: grid; grid-template-columns: 52px 1fr; gap: 28px; border-top: 1px solid rgba(255, 255, 255, .16); }
.ma-evaluation__list li:last-child { border-bottom: 1px solid rgba(255, 255, 255, .16); }
.ma-evaluation__list > li > span { color: #efb54e; font-size: 10px; font-weight: 750; }
.ma-evaluation__list h3 { margin-top: -5px; font-family: "Songti SC", "STSong", serif; font-size: 25px; font-weight: 600; }
.ma-evaluation__list p { margin-top: 11px; color: rgba(255, 255, 255, .6); font-size: 13px; line-height: 1.8; }

.ma-steps { padding-bottom: 85px; }
.ma-step-grid { padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); list-style: none; border-top: 1px solid rgba(24, 37, 31, .2); }
.ma-step-grid li { min-height: 275px; padding: 30px; border-right: 1px solid rgba(24, 37, 31, .2); }
.ma-step-grid li:first-child { border-left: 1px solid rgba(24, 37, 31, .2); }
.ma-step-grid span { width: 34px; height: 34px; display: grid; place-items: center; color: #fff; background: var(--ma-orange); border-radius: 50%; font-size: 11px; font-weight: 750; }
.ma-step-grid h3 { margin-top: 65px; font-family: "Songti SC", "STSong", serif; font-size: 25px; font-weight: 600; }
.ma-step-grid p { margin-top: 12px; color: var(--ma-muted); font-size: 13px; line-height: 1.8; }

.ma-caution { max-width: 1168px; margin: 0 auto 110px; padding: 48px 56px; display: grid; grid-template-columns: 80px 1fr; gap: 34px; border: 1px solid rgba(24, 37, 31, .2); background: #eee9de; }
.ma-caution__symbol { width: 52px; height: 52px; display: grid; place-items: center; color: var(--ma-orange); border: 1px solid var(--ma-orange); border-radius: 50%; font-family: serif; font-size: 24px; font-style: italic; }
.ma-caution h2 { font-size: clamp(28px, 3.5vw, 43px); }
.ma-caution p { max-width: 870px; margin-top: 18px; color: var(--ma-muted); font-size: 13px; line-height: 1.9; }

.ma-final { padding: 110px 24px 92px; color: #fff; background: var(--ma-green); text-align: center; }
.ma-final .ma-kicker { color: #efb54e; }
.ma-final h2 { max-width: 850px; margin: 0 auto; }
.ma-primary--light { margin: 34px auto 0; color: var(--ma-green); background: #f7efe3; box-shadow: none; }
.ma-footer { padding: 24px max(24px, calc((100vw - 1180px) / 2)); display: block; border-top: 1px solid rgba(24, 37, 31, .15); color: var(--ma-muted); background: var(--ma-cream); font-size: 10px; line-height: 1.7; }
.ma-footer span { display: block; }

@media (max-width: 900px) {
  .ma-nav { padding-inline: 20px; }
  .ma-nav__links { gap: 14px; }
  .ma-back { font-size: 0; gap: 0; }
  .ma-back span { font-size: 13px; }
  .ma-back::before { margin-right: 14px; }
  .ma-hero { padding: 68px 28px 70px; grid-template-columns: 1fr; gap: 44px; }
  .ma-hero__copy { position: relative; z-index: 2; }
  .ma-hero__art { min-height: 430px; }
  .ma-category-grid { grid-template-columns: repeat(2, 1fr); }
  .ma-catalog__inner { padding-inline: 28px; }
  .ma-catalog__toolbar { grid-template-columns: 1fr; }
  .ma-filter-list { justify-content: flex-start; }
  .ma-app-grid { grid-template-columns: repeat(2, 1fr); }
  .ma-section { padding: 84px 28px; }
  .ma-section__heading { grid-template-columns: 1fr; gap: 20px; }
  .ma-evaluation__inner { padding-inline: 28px; grid-template-columns: 1fr; gap: 54px; }
  .ma-evaluation__title { position: static; }
  .ma-caution { margin-inline: 28px; padding: 38px; }
}

@media (max-width: 600px) {
  .ma-nav { min-height: 112px; padding: 0 18px; flex-wrap: wrap; }
  .ma-brand { height: 64px; }
  .ma-nav__links { width: 100%; height: 48px; order: 2; display: grid; grid-template-columns: 1fr 1fr 1.45fr; gap: 0; border-top: 1px solid rgba(24, 37, 31, .12); font-size: 11px; }
  .ma-nav__links > a { display: flex; height: 100%; align-items: center; justify-content: center; }
  .ma-nav__cta { padding: 0; border: 0; border-radius: 0; }
  .ma-nav__links > .ma-back { position: absolute; top: 0; right: 18px; width: auto; height: 64px; justify-content: flex-end; font-size: 11px; white-space: nowrap; }
  .ma-back span { font-size: 11px; }
  .ma-back::before { display: none; }
  .ma-hero { padding-inline: 20px; }
  .ma-hero h1 { font-size: 48px; }
  .ma-lead { font-size: 15px; }
  .ma-hero__actions { align-items: stretch; flex-direction: column; }
  .ma-primary { width: 100%; }
  .ma-text-link { align-self: flex-start; }
  .ma-phone { width: 280px; }
  .ma-orbit--one { width: 360px; height: 360px; }
  .ma-orbit--two { width: 285px; height: 285px; }
  .ma-intro-strip { min-height: 90px; flex-wrap: wrap; gap: 10px 16px; }
  .ma-intro-strip p { font-size: 10px; }
  .ma-section { padding: 72px 20px; }
  .ma-section__heading { margin-bottom: 34px; }
  .ma-category-grid { grid-template-columns: 1fr; }
  .ma-category { min-height: 0; padding: 15px 16px; }
  .ma-category__mark { display: none; }
  .ma-category h3 { margin-top: 8px; font-size: 22px; }
  .ma-category > p { display: -webkit-box; margin-top: 6px; overflow: hidden; font-size: 10px; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
  .ma-category ul { margin-top: 10px; flex-wrap: nowrap; overflow: hidden; }
  .ma-category li { padding: 4px 6px; font-size: 8px; white-space: nowrap; }
  .ma-catalog { padding: 72px 0; }
  .ma-catalog__inner { padding-inline: 20px; }
  .ma-catalog__toolbar { padding: 14px; }
  .ma-app-grid { min-width: 0; grid-template-columns: minmax(0, 1fr); }
  .ma-app-card { min-width: 0; min-height: 0; padding: 14px 16px; }
  .ma-app-card__head { grid-template-columns: 42px 1fr; gap: 10px; }
  .ma-app-card__head > div { min-width: 0; }
  .ma-app-card__mark { width: 42px; height: 42px; border-radius: 10px; }
  .ma-app-card__head h3 { display: -webkit-box; overflow: hidden; font-size: 14px; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
  .ma-app-card__tags { max-height: 24px; margin-top: 10px; overflow: hidden; flex-wrap: nowrap; }
  .ma-app-card__tags span { padding: 4px 6px; white-space: nowrap; }
  .ma-app-card__evaluated { margin-top: 8px; }
  .ma-app-card__description { margin-top: 8px; font-size: 10px; line-height: 1.55; -webkit-line-clamp: 2; }
  .ma-app-card__topics { max-height: 27px; margin-top: 10px; padding-top: 9px; overflow: hidden; flex-wrap: nowrap; }
  .ma-app-card__topics span { padding: 0; white-space: nowrap; }
  .ma-app-card__store-link { margin-top: 10px; }
  .ma-evaluation { padding: 56px 0; }
  .ma-evaluation__inner { padding-inline: 20px; }
  .ma-evaluation__list li { padding: 20px 0; grid-template-columns: 30px 1fr; gap: 10px; }
  .ma-evaluation__list h3 { font-size: 21px; }
  .ma-evaluation__list p { display: -webkit-box; margin-top: 7px; overflow: hidden; font-size: 10px; line-height: 1.6; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
  .ma-step-grid { grid-template-columns: 1fr; }
  .ma-step-grid li { min-height: 0; padding: 17px 18px; border-left: 1px solid rgba(24, 37, 31, .2); border-bottom: 1px solid rgba(24, 37, 31, .2); }
  .ma-step-grid span { width: 28px; height: 28px; }
  .ma-step-grid h3 { margin-top: 15px; font-size: 21px; }
  .ma-step-grid p { display: -webkit-box; margin-top: 7px; overflow: hidden; font-size: 10px; line-height: 1.6; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
  .ma-caution { margin: 0 20px 48px; padding: 17px 16px; grid-template-columns: 32px 1fr; gap: 12px; }
  .ma-caution__symbol { width: 32px; height: 32px; font-size: 17px; }
  .ma-caution h2 { font-size: 21px; line-height: 1.25; }
  .ma-caution p { display: -webkit-box; margin-top: 7px; overflow: hidden; font-size: 10px; line-height: 1.6; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
  .ma-final { padding: 52px 20px 48px; }
  .ma-final h2 { font-size: 34px; }
  .ma-primary--light { margin-top: 24px; }
  .ma-footer { padding: 22px 18px; display: block; line-height: 1.7; }
  .ma-footer span { display: block; }
}
