/* 01. Цвета, шрифты и базовые настройки */
:root {
  --bg: #1c2433;
  --surface: #273344;
  --line: #ffffff12;
  --text: #f7f6fb;
  --muted: #b4bfcf;
  --accent: #83ded6;
  --success: #92cb58;
  --accent-light: #b2eee8;
  --accent-rgb: 131 222 214;
  --cta: #f38971;
  --cta-light: #ffad91;
  --cta-hover: #ff9d85;
  --cta-hover-light: #ffc1a8;
  --cta-edge: #ad5546;
  --cta-border: #ffd2bf;
  --cta-text: #341c18;
  --cta-rgb: 255 155 125;
  font-family: Manrope, Arial, sans-serif;
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}
/* 02. Сброс и общие элементы */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 6px;
}
::selection {
  background: var(--accent);
  color: var(--bg);
}
/* 03. Контейнер и быстрый переход */
.container {
  width: min(1220px, calc(100% - 80px));
  margin: auto;
}
.skip {
  position: fixed;
  top: -100px;
  left: 15px;
  background: var(--success);
  color: #17240d;
  padding: 12px;
  z-index: 30;
}
.skip:focus {
  top: 12px;
}
/* 04. Шапка и навигация */
header {
  position: relative;
  z-index: 5;
  background: var(--bg);
}
.header-inner {
  height: 102px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.brand {
  display: inline-flex;
  align-items: center;
}
.brand img {
  width: 190px;
  height: auto;
  display: block;
}
.desktop-nav {
  display: flex;
  gap: 36px;
  font-size: 15px;
  font-weight: 700;
}
.desktop-nav a:hover,
footer a:hover {
  color: var(--accent);
}
/* 05. Кнопки */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: var(--cta);
  color: var(--cta-text);
  padding: 16px 27px;
  border-radius: 9px;
  font-weight: 800;
  border: 1px solid rgb(var(--cta-rgb) / 0.27);
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px #101c1730;
}
.button > span {
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
}
.header-button {
  font-size: 14px;
  padding: 12px 23px;
}
.menu-toggle,
#mobile-nav {
  display: none;
}
/* 06. Первый экран */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero-inner {
  min-height: 653px;
  display: flex;
  align-items: center;
  padding-block: 35px 70px;
  position: relative;
}
.hero-copy {
  width: 55%;
  max-width: 660px;
}
.hero-picture {
  position: absolute;
  z-index: -1;
  inset: 0 -60px 0 40%;
  display: flex;
  align-items: center;
}
.hero-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 19%),
    linear-gradient(0deg, transparent 0%, #000 15%, #000 93%, transparent 100%);
  mask-composite: intersect;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 5px 12px;
  border-radius: 50px;
  background: #b4a2f00d;
  border: 1px solid #b4a2f029;
  color: #cdc9e0;
  font-size: 12px;
  font-weight: 650;
  margin-bottom: 20px;
}
.pill > span {
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
}
h1,
h2,
h3 {
  font-family: Rubik, Manrope, Arial, sans-serif;
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.8px;
}
h1 {
  font-size: clamp(52px, 5.6vw, 78px);
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--accent);
  white-space: nowrap;
  margin-bottom: 20px;
}
h1 > span {
  color: var(--accent-light);
}
.hero h2 {
  font-size: 34px;
  line-height: 1.3;
  max-width: 560px;
  font-weight: 600;
  letter-spacing: -0.8px;
}
.hero-copy > p {
  font-size: 17px;
  line-height: 1.8;
  max-width: 470px;
  color: #c0bfd0;
  margin: 21px 0;
}
.hero-checks {
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
  margin: 22px 0 26px;
}
.hero-checks b {
  color: var(--success);
  margin-right: 7px;
}
.download {
  font-size: 17px;
  min-width: 310px;
  min-height: 65px;
  box-shadow: 0 8px 26px #17221333;
}
.download svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}
.download-note {
  display: block;
  font-size: 12px;
  line-height: 1.7;
  color: #a1a2b6;
  margin-top: 12px;
}
/* 07. Секции и карточки возможностей */
.section {
  padding-block: 86px;
}
.section-title {
  text-align: center;
  margin: 0 auto 44px;
}
.eyebrow {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  margin-bottom: 13px;
}
.section-title h2 {
  font-size: 40px;
  letter-spacing: -1px;
}
.section-title p {
  font-size: 17px;
  color: var(--muted);
  margin: 14px 0 0;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.benefit {
  padding: 16px 25px 28px;
  border: 1px solid #ffffff0b;
  border-radius: 18px;
  text-align: center;
  background: linear-gradient(150deg, #2d3a4c, #253144);
  transition:
    transform 0.2s,
    border-color 0.2s;
}
.benefit:hover {
  transform: translateY(-5px);
  border-color: rgb(var(--accent-rgb) / 0.25);
}
.benefit img {
  width: 200px;
  height: 183px;
  object-fit: contain;
  margin: 0 auto 2px;
  display: block;
  filter: drop-shadow(0 12px 13px #14152530);
}
.benefit h3 {
  font-size: 23px;
  letter-spacing: -0.5px;
  margin-bottom: 11px;
}
.benefit p {
  font-size: 16px;
  line-height: 1.7;
  color: #b8b8cd;
  margin: 0;
}
.compatibility-note {
  font-size: 13px;
  color: #9193ac;
  text-align: center;
  max-width: 730px;
  margin: 26px auto 0;
}
/* 08. Пошаговая инструкция */
.how-section {
  background: #17202e;
  border-block: 1px solid #ffffff08;
}
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px;
}
.step {
  text-align: center;
  position: relative;
}
.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--accent);
  color: #163733;
  border-radius: 50%;
  font-family: Rubik, sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin: 0 auto 21px;
  position: relative;
  z-index: 2;
}
.step:not(:last-child):after {
  content: '';
  position: absolute;
  left: calc(50% + 38px);
  top: 18px;
  width: calc(100% - 30px);
  border-top: 2px dashed #5b5270;
}
.step-picture {
  height: 182px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.step-picture img {
  width: 245px;
  max-width: 100%;
  height: auto;
  max-height: 174px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px #08091266);
}
.step h3 {
  font-size: 22px;
  margin-bottom: 13px;
}
.step p {
  font-size: 16px;
  line-height: 1.75;
  color: #b8b8cd;
  margin: 0 auto;
  max-width: 330px;
}
.steps-note {
  margin: 35px auto 0;
  max-width: 700px;
  text-align: center;
  color: #9396af;
  font-size: 13px;
}
.manual-link {
  display: block;
  width: fit-content;
  margin: 16px auto 0;
  color: var(--accent);
  font-size: 14px;
  font-weight: 650;
}
.manual-link:hover {
  text-decoration: underline;
}
.manual-link span {
  margin-left: 7px;
}
/* 09. Частые вопросы */
.faq-list {
  max-width: 850px;
  margin: auto;
}
.faq-list details {
  background: #253144;
  border: 1px solid #ffffff08;
  border-radius: 10px;
  margin-bottom: 13px;
  padding: 21px 25px;
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.5;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  color: var(--accent);
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.2s;
  flex: none;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list details[open] summary {
  color: var(--accent);
}
.faq-list details p {
  font-size: 16px;
  line-height: 1.8;
  color: #b6b8cb;
  margin: 17px 35px 1px 0;
}
/* 10. Финальный блок скачивания */
.final-cta {
  background: #243545;
  border-block: 1px solid #ffffff0a;
  padding-block: 53px 60px;
  overflow: hidden;
}
.final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  text-align: center;
}
.final-inner > img {
  width: 230px;
  height: 240px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px #0d0e2055);
  transform: rotate(-10deg);
}
.final-inner > img:last-child {
  transform: rotate(10deg);
}
.final-inner > div {
  flex: 1;
}
.final-inner h2 {
  font-size: 40px;
  line-height: 1.25;
}
.final-inner h2 span {
  color: var(--accent);
}
.final-inner p {
  font-size: 16px;
  color: #c0bfd1;
  margin: 19px 0 25px;
}
.final-inner .download {
  min-width: 320px;
}
/* 11. Подвал */
footer {
  padding: 34px 0 27px;
  background: #17202b;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer-top .brand img {
  width: 170px;
}
.footer-top nav {
  display: flex;
  gap: 28px;
}
.footer-top nav,
.footer-top > a:last-child {
  font-size: 14px;
  color: #bbbdcf;
}
.footer-note {
  margin-top: 25px;
  padding-top: 21px;
  border-top: 1px solid #ffffff0b;
  color: #8589a1;
  font-size: 12px;
  line-height: 1.8;
}

/* 12. Адаптация к размеру экрана */
@media (min-width: 1600px) {
  .hero-picture {
    inset: 0 max(calc((100vw - 1540px) / 2), 0px) 0 43%;
  }
  .hero-inner {
    min-height: 690px;
  }
}
@media (max-width: 1150px) {
  .container {
    width: calc(100% - 56px);
  }
  .desktop-nav {
    gap: 24px;
    font-size: 14px;
  }
  .brand img {
    width: 168px;
  }
  .header-inner {
    gap: 15px;
    height: 90px;
  }
  .header-button {
    font-size: 13px;
    padding: 11px 17px;
  }
  .hero-copy {
    width: 58%;
  }
  .hero h2 {
    font-size: 30px;
  }
  .hero-copy > p {
    max-width: 420px;
    font-size: 16px;
  }
  .hero-picture {
    inset: 0 -150px 0 36%;
  }
  .hero-picture img {
    object-position: 65% center;
    mask-image:
      linear-gradient(90deg, transparent, #000 32%),
      linear-gradient(0deg, transparent, #000 15%, #000 93%, transparent);
    mask-composite: intersect;
  }
  .hero-inner {
    min-height: 665px;
  }
  .hero-checks {
    gap: 14px;
  }
  .section-title h2 {
    font-size: 36px;
  }
  .benefit-grid {
    gap: 18px;
  }
  .benefit {
    padding-inline: 18px;
  }
  .benefit h3 {
    font-size: 22px;
  }
  .benefit p {
    font-size: 15px;
  }
  .final-inner > img {
    width: 170px;
    height: 200px;
  }
  .final-inner h2 {
    font-size: 35px;
  }
  .footer-top nav {
    gap: 20px;
  }
  .step-grid {
    gap: 24px;
  }
}
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  .header-button {
    margin-left: auto;
  }
  .menu-toggle {
    width: 42px;
    height: 42px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffffff24;
    background: transparent;
    border-radius: 8px;
  }
  .menu-toggle > span {
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
  }
  #mobile-nav:not([hidden]) {
    display: flex;
    flex-direction: column;
    padding: 20px 28px;
    gap: 17px;
    border-top: 1px solid var(--line);
    font-weight: 650;
  }
  .hero-inner {
    min-height: 680px;
  }
  .hero-copy {
    width: 65%;
  }
  h1 {
    font-size: 57px;
  }
  .hero h2 {
    font-size: 27px;
  }
  .hero-copy > p {
    max-width: 380px;
  }
  .hero-picture {
    inset: 30px -230px 0 30%;
    opacity: 0.8;
  }
  .hero-picture img {
    mask-image:
      linear-gradient(90deg, transparent 5%, #000 50%),
      linear-gradient(0deg, transparent, #000 15%, #000 93%, transparent);
    mask-composite: intersect;
  }
  .hero-checks {
    font-size: 13px;
    gap: 12px;
  }
  .section {
    padding-block: 64px;
  }
  .benefit-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .benefit {
    padding: 13px 13px 24px;
  }
  .benefit img {
    width: 150px;
    max-width: 100%;
    height: 155px;
  }
  .benefit h3 {
    font-size: 19px;
  }
  .benefit p {
    font-size: 14px;
  }
  .benefit p br {
    display: none;
  }
  .step-grid {
    gap: 24px;
  }
  .step-picture img {
    width: 210px;
  }
  .step h3 {
    font-size: 20px;
  }
  .step p {
    font-size: 15px;
  }
  .final-inner > img {
    width: 125px;
    height: 180px;
  }
  .final-inner h2 {
    font-size: 32px;
  }
  .final-inner p {
    font-size: 15px;
  }
  .final-inner .download {
    min-width: 290px;
  }
  .footer-top {
    flex-wrap: wrap;
  }
  .footer-top nav {
    margin-left: auto;
  }
  .footer-top > a:last-child {
    font-size: 13px;
  }
}
@media (max-width: 600px) {
  .container {
    width: calc(100% - 36px);
  }
  .header-inner {
    height: 77px;
  }
  .brand img {
    width: 164px;
  }
  .header-button {
    display: none;
  }
  .menu-toggle {
    margin-left: auto;
  }
  #mobile-nav:not([hidden]) {
    padding: 20px 18px;
  }
  .hero {
    padding-bottom: 0;
  }
  .hero-inner {
    min-height: auto;
    padding-top: 23px;
    padding-bottom: 360px;
    display: block;
  }
  .hero-copy {
    width: 100%;
    max-width: 460px;
    margin: auto;
    text-align: center;
  }
  .pill {
    font-size: 12px;
    padding: 4px 10px;
    margin-bottom: 21px;
    gap: 6px;
  }
  h1 {
    font-size: clamp(43px, 11.3vw, 65px);
    letter-spacing: -1.8px;
    margin-bottom: 17px;
  }
  .hero h2 {
    font-size: 26px;
    letter-spacing: -0.6px;
    line-height: 1.3;
  }
  .hero h2 br:last-of-type {
    display: none;
  }
  .hero-copy > p {
    font-size: 15px;
    line-height: 1.7;
    margin: 18px auto;
    max-width: 345px;
  }
  .hero-checks {
    font-size: 12px;
    justify-content: center;
    gap: 14px;
    margin: 20px 0 23px;
  }
  .hero-checks b {
    margin-right: 4px;
  }
  .download {
    width: 100%;
    min-width: 0;
    max-width: 350px;
    font-size: 16px;
    gap: 17px;
    padding: 17px 18px;
    min-height: 63px;
  }
  .download-note {
    font-size: 12px;
    max-width: 350px;
    margin: 11px auto 0;
  }
  .hero-picture {
    inset: auto -22px -10px -22px;
    height: 395px;
    opacity: 1;
  }
  .hero-picture img {
    object-position: center center;
    object-fit: cover;
    mask-image: linear-gradient(0deg, transparent, #000 15%, #000 85%, transparent);
    mask-composite: add;
  }
  .section {
    padding-block: 48px;
  }
  .section-title {
    margin-bottom: 29px;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
  }
  .section-title h2 {
    font-size: 30px;
    line-height: 1.25;
    letter-spacing: -0.7px;
  }
  .section-title p {
    font-size: 15px;
    margin-top: 12px;
  }
  .benefit-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .benefit {
    padding: 9px 10px 20px;
    border-radius: 13px;
  }
  .benefit img {
    width: 140px;
    height: 139px;
    max-width: 100%;
    margin-bottom: 5px;
  }
  .benefit h3 {
    font-size: 18px;
    line-height: 1.25;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
  }
  .benefit p {
    font-size: 14px;
    line-height: 1.6;
  }
  .compatibility-note {
    font-size: 12px;
    line-height: 1.8;
    margin-top: 22px;
  }
  .step-grid {
    grid-template-columns: 1fr;
    gap: 33px;
  }
  .step {
    padding: 23px 20px 28px;
    border-radius: 14px;
    background: #233142;
    border: 1px solid #ffffff09;
  }
  .step:after {
    display: none;
  }
  .step-number {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 34px;
    height: 34px;
    font-size: 18px;
  }
  .step-picture {
    height: 157px;
    margin: 0 0 18px;
  }
  .step-picture img {
    width: 215px;
    max-height: 155px;
  }
  .step h3 {
    font-size: 23px;
  }
  .step p {
    font-size: 16px;
    max-width: 310px;
  }
  .steps-note {
    font-size: 12px;
    line-height: 1.8;
    margin-top: 24px;
  }
  .manual-link {
    font-size: 14px;
  }
  .faq-list details {
    padding: 20px 17px;
    margin-bottom: 11px;
  }
  .faq-list summary {
    font-size: 16px;
    gap: 15px;
  }
  .faq-list details p {
    font-size: 15px;
    margin-right: 0;
  }
  .final-cta {
    padding: 39px 0 43px;
  }
  .final-inner {
    position: relative;
    display: block;
  }
  .final-inner > img {
    display: none;
  }
  .final-inner h2 {
    font-size: 31px;
    letter-spacing: -0.7px;
  }
  .final-inner p {
    font-size: 15px;
    max-width: 290px;
    margin: 16px auto 23px;
  }
  .final-inner .download {
    min-width: 0;
  }
  .final-inner .download-note {
    font-size: 12px;
  }
  .footer-top {
    justify-content: center;
    gap: 23px;
  }
  .footer-top .brand img {
    width: 180px;
  }
  .footer-top nav {
    margin: 0;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px 22px;
    width: 100%;
    font-size: 13px;
  }
  .footer-top > a:last-child {
    font-size: 13px;
  }
  .footer-note {
    text-align: center;
    font-size: 12px;
  }
  .footer-top .brand {
    margin: auto;
  }
}
@media (max-width: 360px) {
  .container {
    width: calc(100% - 28px);
  }
  h1 {
    font-size: 41px;
  }
  .hero h2 {
    font-size: 24px;
  }
  .hero-checks {
    gap: 9px;
  }
  .hero-copy > p {
    font-size: 15px;
  }
  .pill {
    font-size: 11px;
  }
  .benefit h3 {
    font-size: 16px;
  }
  .benefit p {
    font-size: 13px;
  }
  .benefit img {
    height: 125px;
  }
  .section-title h2 {
    font-size: 27px;
  }
  .final-inner h2 {
    font-size: 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 600px) {
  .eyebrow {
    font-size: 12px;
    letter-spacing: 0.8px;
  }
  .pill {
    font-size: 12px;
  }
  .benefit p {
    font-size: 14px;
  }
}
.benefit {
  padding: 0 0 27px;
  overflow: hidden;
}
.benefit img {
  width: 100%;
  max-width: none;
  height: 235px;
  object-fit: cover;
  object-position: center;
  margin: 0 0 24px;
  filter: none;
}
.benefit h3,
.benefit p {
  padding-inline: 15px;
}
.final-inner > img {
  display: none;
}
.final-inner > div {
  max-width: 800px;
  margin: auto;
}
@media (max-width: 900px) {
  .benefit img {
    height: 185px;
  }
  .benefit h3 {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .benefit {
    padding-bottom: 21px;
  }
  .benefit img {
    height: 157px;
    margin-bottom: 18px;
  }
  .benefit h3 {
    font-size: 18px;
    padding-inline: 9px;
  }
  .benefit p {
    padding-inline: 12px;
  }
  .final-inner h2 {
    font-size: 31px;
  }
}
@media (max-width: 360px) {
  .benefit img {
    height: 136px;
  }
  .benefit h3 {
    font-size: 17px;
  }
}

.brand {
  gap: 11px;
  white-space: nowrap;
}
.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 42px;
  height: 42px;
  flex: none;
  background: var(--success);
  color: #1c2433;
  font-family: Rubik, Arial, sans-serif;
  font-size: 38px;
  font-weight: 700;
  border-radius: 12px;
  line-height: 1;
  padding-bottom: 4px;
  box-shadow: 3px 3px 0 #ffbd5233;
}
.brand-mark > span {
  position: absolute;
  right: -5px;
  top: -6px;
  color: var(--accent);
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-shadow: 0 2px 0 #1c2433;
}
.brand-name {
  font-family: Rubik, Arial, sans-serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -1px;
}
.benefit img {
  object-fit: contain;
}
.step-picture img {
  width: 240px;
  height: 180px;
  object-fit: contain;
  max-height: 180px;
  filter: none;
}
.step-picture {
  height: 190px;
}
.step-number {
  margin-bottom: 13px;
}
@media (max-width: 600px) {
  .brand-mark {
    width: 35px;
    height: 35px;
    font-size: 31px;
    border-radius: 10px;
  }
  .brand-mark > span {
    font-size: 20px;
  }
  .brand-name {
    font-size: 24px;
  }
  .step-picture {
    height: 180px;
  }
  .step-picture img {
    width: 235px;
    height: 180px;
  }
  .benefit img {
    height: 158px;
  }
}
.benefit img,
.step-picture img {
  mask-image:
    linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent),
    linear-gradient(0deg, transparent, #000 12%, #000 88%, transparent);
  mask-composite: intersect;
}
