/* Forge · дизайн-система */

:root {
  --bg: #121011;
  --bg-2: #191617;
  --bg-3: #201c1c;
  --line: #2c2726;
  --line-soft: #221e1e;
  --text: #efe9e5;
  --text-2: #b4aaa4;
  --text-3: #8b817b;
  --accent: #f2681c;
  --accent-hot: #ff9245;
  --accent-dim: rgba(242, 104, 28, .12);
  --r: 10px;
  --w: 1240px;
  --gut: clamp(18px, 4vw, 40px);
  --font: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --z-nav: 40;
  --z-content: 2;
  --z-art: 1;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 17px/1.68 var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

h1, h2, h3 { margin: 0; font-weight: 640; line-height: 1.08; text-wrap: balance; }
h1 { font-size: clamp(38px, 6.2vw, 78px); letter-spacing: -.035em; }
h2 { font-size: clamp(28px, 4vw, 50px); letter-spacing: -.032em; }
h3 { font-size: clamp(18px, 1.5vw, 21px); letter-spacing: -.016em; }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; }

.wrap { width: 100%; max-width: var(--w); margin: 0 auto; padding: 0 var(--gut); }

section { position: relative; padding: clamp(46px, 5.4vw, 74px) 0; }
section > .wrap { position: relative; z-index: var(--z-content); }
.spread > section + section,
main > section + section,
main > .spread + section,
main > section + .spread { border-top: 1px solid var(--line-soft); }

.lead { color: var(--text-2); font-size: clamp(16px, 1.35vw, 19px); max-width: 58ch; }
.head-tight { margin-bottom: clamp(36px, 5vw, 64px); }
.head-tight .lead { max-width: 50ch; margin-top: 16px; }
.head-tight h2 { max-width: 26ch; }
@media (min-width: 1100px) { .head-tight h2 { max-width: 20ch; } }

.eyebrow {
  font: 600 12px/1 var(--mono);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.num { font-family: var(--mono); font-variant-numeric: tabular-nums; }

/* Кнопки */
.btn {
  display: inline-block;
  border: 0;
  border-radius: var(--r);
  padding: 15px 26px;
  font: 600 16px/1 var(--font);
  cursor: pointer;
  text-decoration: none;
  transition: transform .18s var(--ease), background .18s, border-color .18s;
}
.btn-primary { background: var(--accent); color: #17100b; }
.btn-primary:hover { background: var(--accent-hot); }
.btn-primary:active { transform: translateY(1px); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--text-3); }
.btn-ghost:active { transform: translateY(1px); }
.btn-full { width: 100%; }
.btn:focus-visible { outline: 2px solid var(--accent-hot); outline-offset: 3px; }

/* Шапка */
.nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  height: 84px; display: flex; align-items: center;
  background: rgba(18, 16, 17, .78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
}
.nav .wrap { display: flex; align-items: center; gap: 28px; }
.logo {
  display: inline-flex; align-items: center; gap: 10px; line-height: 0;
  font: 700 17px/1 var(--font); letter-spacing: .26em; text-transform: uppercase; text-decoration: none;
}
.logo b { color: var(--accent); font-weight: 700; }
.logo .mark { height: 21px; width: auto; display: block; color: var(--text); flex: 0 0 auto; }
.nav-mark { height: 56px; width: auto; display: block; }
.foot-mark { width: clamp(190px, 20vw, 250px); height: auto; display: block; }
.logo-lg { font-size: 22px; gap: 13px; }
.logo-lg .mark { height: 34px; }
.motto { color: var(--text-2); font-size: 15px; margin: 16px 0 14px; max-width: 44ch; }
.nav nav { margin-left: auto; display: flex; gap: 26px; }
.nav nav a { color: var(--text-2); text-decoration: none; font-size: 15px; white-space: nowrap; transition: color .18s; }
.nav nav a:hover { color: var(--text); }
.nav .btn { padding: 11px 18px; font-size: 15px; }
@media (max-width: 920px) { .nav nav { display: none; } }

/* Сквозной разворот: иллюстрация живёт поверх двух секций сразу */
.spread { position: relative; overflow: hidden; }

.art {
  position: absolute; inset: 0; z-index: var(--z-art);
  pointer-events: none;
  background-repeat: no-repeat;
  mix-blend-mode: screen;
}
.art-left {
  -webkit-mask-image: linear-gradient(270deg, transparent 0, transparent 52%, #000 94%);
  mask-image: linear-gradient(270deg, transparent 0, transparent 52%, #000 94%);
}
.art-right {
  -webkit-mask-image: linear-gradient(90deg, transparent 0, transparent 52%, #000 94%);
  mask-image: linear-gradient(90deg, transparent 0, transparent 52%, #000 94%);
}
.art-flip { transform: scaleX(-1); }

.art-hero {
  background-image: url(../img/art-hero.webp);
  background-position: right 1vw top 4%;
  background-size: auto 76%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 26%);
  mask-image: linear-gradient(90deg, transparent 0, #000 26%);
}
.art-facade {
  background-image: url(../img/art-facade.webp);
  background-position: right -14vw center;
  background-size: auto 116%;
  opacity: .62;
}
.art-node {
  background-image: url(../img/art-node.webp);
  background-position: left -18vw center;
  background-size: auto 114%;
  opacity: .58;
}
/* слой отражён по горизонтали, поэтому left визуально даёт правый край */
.art-tongs {
  background-image: url(../img/art-tongs.webp);
  background-position: left -2vw center;
  background-size: auto 104%;
  opacity: .5;
}
.art-gauge {
  background-image: url(../img/art-gauge.webp);
  background-position: left -18vw center;
  background-size: auto 102%;
  opacity: .55;
}
.art-shelf {
  background-image: url(../img/art-shelf.webp);
  background-position: right -16vw center;
  background-size: auto 110%;
  opacity: .58;
}
.art-scale {
  background-image: url(../img/art-scale.webp);
  background-position: left -24vw top 8%;
  background-size: auto 62%;
  opacity: .4;
}
.art-forge {
  background-image: url(../img/art-forge.webp);
  background-position: right -10vw bottom -6%;
  background-size: auto 62%;
  opacity: .62;
}

/* Слои чуть дышат при прокрутке там, где браузер это умеет */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) and (min-width: 981px) {
    .art { animation: drift linear both; animation-timeline: view(); animation-range: entry 0% exit 100%; }
    @keyframes drift { from { transform: translateY(3%) var(--flip, ); } to { transform: translateY(-3%) var(--flip, ); } }
    .art-flip { --flip: scaleX(-1); }
  }
}

/* Первый экран */
.hero {
  min-height: calc(100dvh - 84px);
  display: flex; align-items: flex-start;
  padding-top: clamp(24px, 3vw, 44px);
  padding-bottom: clamp(40px, 4.4vw, 64px);
}
.hero h1 { max-width: 13ch; }
.hero .lead { margin: 24px 0 36px; max-width: 44ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

.facts {
  display: flex; flex-wrap: wrap; gap: 0 clamp(28px, 5vw, 64px);
  margin: clamp(48px, 8vh, 96px) 0 0; padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  max-width: 44ch;
}
.facts div { display: flex; flex-direction: column; gap: 4px; }
.facts dt { color: var(--text-3); font-size: 13.5px; }
.facts dd { margin: 0; font-size: 17px; color: var(--text); letter-spacing: -.01em; }

@media (prefers-reduced-motion: no-preference) {
  .hero h1, .hero .lead, .hero-cta, .facts {
    animation: rise .8s var(--ease) both;
  }
  .hero .lead { animation-delay: .08s; }
  .hero-cta { animation-delay: .16s; }
  .facts { animation-delay: .24s; }
  @keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
}

/* Стыки: два ведущих пункта крупнее остальных */
.seams {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0 clamp(28px, 5vw, 72px);
  border-top: 1px solid var(--line);
}
/* Держим список в левой половине: правая отдана иллюстрации */
@media (min-width: 1024px) {
  .seams { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 60%; }
}
.seam { padding: 26px 0; border-bottom: 1px solid var(--line-soft); }
.seam h3 { margin-bottom: 8px; }
.seam p { color: var(--text-2); font-size: 15.5px; max-width: 46ch; }
.seam-lead h3 { font-size: clamp(21px, 2vw, 27px); letter-spacing: -.022em; }
.seam-lead p { color: var(--text); }

/* Манифест */
.manifest-section { padding-block: clamp(54px, 6.4vw, 90px); }
.manifest { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr); gap: clamp(32px, 6vw, 88px); align-items: start; }
.manifest .big {
  font-size: clamp(27px, 3.6vw, 46px);
  font-weight: 620; letter-spacing: -.03em; line-height: 1.14;
  max-width: 20ch;
}
.manifest .big em { font-style: normal; color: var(--accent); }
.stat { padding-top: 14px; border-top: 2px solid var(--accent); }
.stat .v { font-size: clamp(44px, 5vw, 68px); line-height: .95; letter-spacing: -.05em; margin: 0 0 14px; }
.stat .v span { color: var(--accent); }
.stat .k { color: var(--text-2); font-size: 15px; max-width: 34ch; }
@media (max-width: 860px) { .manifest { grid-template-columns: minmax(0, 1fr); } }

/* Четыре контура */
.bento { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }
.bento .cell {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(22px, 2.4vw, 32px); min-width: 0;
}
.bento .cell h3 { margin-bottom: 10px; }
.bento .cell p { color: var(--text-2); font-size: 15.5px; }
.cell-a { grid-column: span 4; background: linear-gradient(140deg, #241b16 0%, var(--bg-2) 64%); }
.cell-b { grid-column: span 2; }
.cell-c { grid-column: span 2; }
.cell-d { grid-column: span 4; background: linear-gradient(220deg, #221a16 0%, var(--bg-2) 60%); }
@media (max-width: 860px) { .bento { grid-template-columns: minmax(0, 1fr); } .bento .cell { grid-column: auto; } }

/* Шаги: лента со ступенчатым смещением */
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 36px) clamp(24px, 3vw, 44px);
}
/* держим шаги в левой половине: правая отдана иллюстрации */
@media (min-width: 1024px) { .steps { max-width: 62%; } }
.step { padding-top: 22px; border-top: 1px solid var(--line); }
.step .t { display: block; color: var(--accent); font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; }
.step h3 { margin: 12px 0 8px; }
.step p { color: var(--text-2); font-size: 15px; }
@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .step:nth-child(n) { margin-top: 0; }
  .step:nth-child(n+3) { margin-top: 8px; }
}
@media (max-width: 520px) { .steps { grid-template-columns: minmax(0, 1fr); } }

/* Наши системы: разноразмерная сетка */
.systems { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }
.system {
  grid-column: span 2; min-width: 0;
  border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  background: var(--bg-2);
  transition: border-color .2s;
}
.system:hover { border-color: #3d3532; }
.system-wide { grid-column: span 3; }
.system { display: flex; flex-direction: column; }
.system .shot {
  display: block; overflow: hidden;
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid var(--line);
  background: #0e0c0d;
}
.system .shot img {
  display: block; width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  transition: transform .5s var(--ease), opacity .3s;
  opacity: .92;
}
.system:hover .shot img { transform: scale(1.02); opacity: 1; }
.system .body { padding: 20px 22px 24px; }
.system h3 { font-size: 18px; margin-bottom: 6px; }
.system p { color: var(--text-2); font-size: 14.5px; }
.system .src { color: var(--text-3); font-size: 12.5px; margin-top: 12px; letter-spacing: .04em; }
.system-note {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(22px, 2.4vw, 30px);
  background: linear-gradient(150deg, #1d1917, var(--bg-2) 70%);
}
.system-note h3 { margin-bottom: 8px; }
@media (max-width: 900px) { .systems { grid-template-columns: repeat(2, minmax(0, 1fr)); } .system, .system-wide { grid-column: span 1; } }
@media (max-width: 560px) { .systems { grid-template-columns: minmax(0, 1fr); } }

/* Кому подходит: заголовок держится сбоку, список идёт колонкой */
.fits-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(28px, 5vw, 80px); align-items: start; }
.fits-grid h2 { max-width: 12ch; position: sticky; top: 124px; }
.fits { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.fits li {
  padding: 20px 0; border-bottom: 1px solid var(--line-soft);
  color: var(--text-2); font-size: 16px; max-width: 56ch;
}
.fits b { color: var(--text); font-weight: 600; }
@media (max-width: 900px) {
  .fits-grid { grid-template-columns: minmax(0, 1fr); }
  .fits-grid h2 { position: static; max-width: 18ch; }
}

/* Цены */
.tabs { display: inline-flex; gap: 4px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r); padding: 4px; }
.tabs button {
  border: 0; background: transparent; color: var(--text-2); cursor: pointer;
  font: 600 15px/1 var(--font); padding: 11px 20px; border-radius: 7px; transition: background .18s, color .18s;
}
.tabs button[aria-selected="true"] { background: var(--accent); color: #17100b; }
.tabs button:focus-visible { outline: 2px solid var(--accent-hot); outline-offset: 2px; }

.price-group { margin-top: clamp(36px, 5vw, 56px); }
.price-group > h3 { margin-bottom: 12px; }
.price-group > h3 span { color: var(--text-3); font-weight: 400; font-size: 15px; letter-spacing: 0; }
.rows { border-top: 1px solid var(--line); }
.row {
  display: grid; grid-template-columns: minmax(0, 1fr) 118px 116px; gap: 20px; align-items: baseline;
  padding: 17px 0; border-bottom: 1px solid var(--line-soft);
  transition: background .18s;
}
.row:hover { background: rgba(255,255,255,.02); }
.row .name { font-size: 16.5px; }
.row .name span { display: block; color: var(--text-3); font-size: 14px; margin-top: 4px; }
.row .term { color: var(--text-2); font-size: 14px; }
.row .cost { font-size: 18px; font-weight: 600; text-align: right; white-space: nowrap; }
@media (max-width: 700px) {
  .row { grid-template-columns: minmax(0, 1fr) auto; gap: 6px 16px; }
  .row .term { grid-row: 2; }
  .row .cost { grid-row: 1 / span 2; align-self: center; }
}

.plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: clamp(28px, 4vw, 44px); }
.plan { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(24px, 2.6vw, 32px); }
.plan.hot { border-color: var(--accent); background: linear-gradient(160deg, #241a14, var(--bg-2) 72%); }
.plan .p { font-size: clamp(28px, 3vw, 36px); font-weight: 600; letter-spacing: -.035em; margin: 16px 0 2px; }
.plan .p span { display: block; font: 400 14px/1.4 var(--font); color: var(--text-3); letter-spacing: 0; margin-top: 6px; }
.plan .entry { color: var(--accent); font: 600 13.5px/1 var(--mono); margin-bottom: 4px; }
.plan ul { list-style: none; margin: 20px 0 0; padding: 0; }
.plan li { color: var(--text-2); font-size: 15px; padding: 9px 0 9px 22px; position: relative; }
.plan li::before { content: ""; position: absolute; left: 0; top: 16px; width: 9px; height: 1.5px; background: var(--accent); }
.sub-note { margin-top: 28px; max-width: 72ch; }
@media (max-width: 880px) { .plans { grid-template-columns: minmax(0, 1fr); } }

/* Условия */
.terms { columns: 2; column-gap: clamp(32px, 5vw, 72px); }
.term-item { break-inside: avoid; padding: 20px 0; border-bottom: 1px solid var(--line-soft); }
.term-item h3 { font-size: 17px; margin-bottom: 6px; }
.term-item p { color: var(--text-2); font-size: 15px; }
@media (max-width: 760px) { .terms { columns: 1; } }

/* Финал */
.final-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 440px); gap: clamp(32px, 5vw, 72px); align-items: start; }
.final-grid > div:first-child .lead { margin-top: 18px; }
.pilot {
  margin-top: 28px; padding: 18px 20px;
  border: 1px solid var(--accent); background: var(--accent-dim); border-radius: var(--r);
  color: var(--text-2); font-size: 15.5px; max-width: 52ch;
}
.pilot b { color: var(--text); }
.tg-note { margin-top: 24px; color: var(--text-2); font-size: 15.5px; }
.tg-note a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 980px) { .final-grid { grid-template-columns: minmax(0, 1fr); } }

.card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(24px, 2.6vw, 30px); }
.q-step { display: none; }
.q-step.on { display: block; }
.q-progress { display: flex; gap: 5px; margin-bottom: 24px; }
.q-progress i { flex: 1; height: 3px; border-radius: 2px; background: var(--line); transition: background .3s var(--ease); }
.q-progress i.done { background: var(--accent); }
.q-title { font-size: 19px; font-weight: 620; letter-spacing: -.018em; margin-bottom: 16px; }
.opts { display: grid; gap: 8px; }
.opt {
  text-align: left; background: var(--bg-3); border: 1px solid var(--line); color: var(--text);
  border-radius: var(--r); padding: 14px 16px; font: 400 15.5px/1.4 var(--font); cursor: pointer;
  transition: border-color .18s, background .18s, transform .18s var(--ease);
}
.opt:hover { border-color: var(--accent); }
.opt:active { transform: translateY(1px); }
.opt[aria-pressed="true"] { border-color: var(--accent); background: var(--accent-dim); }
.opt:focus-visible { outline: 2px solid var(--accent-hot); outline-offset: 2px; }

.field { display: grid; gap: 7px; margin-bottom: 14px; }
.field label { font-size: 14.5px; color: var(--text-2); }
.field input {
  background: var(--bg-3); border: 1px solid var(--line); color: var(--text);
  border-radius: var(--r); padding: 13px 15px; font: 400 16px/1.4 var(--font); width: 100%;
}
.field input::placeholder { color: #7d736e; }
.field input:focus { outline: 2px solid var(--accent); outline-offset: -1px; border-color: transparent; }
.field .err { color: #ff8b7a; font-size: 13.5px; display: none; }
.field.invalid .err { display: block; }
.field.invalid input { border-color: #ff8b7a; }
.consent { display: flex; gap: 10px; align-items: flex-start; margin: 6px 0 18px; }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--accent); flex: 0 0 auto; }
.consent label { font-size: 13.5px; color: var(--text-3); line-height: 1.5; }
.consent a { color: var(--text-2); }
.form-note { color: var(--text-3); font-size: 13.5px; margin-top: 12px; }
.q-back { background: none; border: 0; color: var(--text-3); font: 400 14.5px/1 var(--font); cursor: pointer; padding: 12px 0 0; }
.q-back:hover { color: var(--text-2); }

.state { display: none; text-align: center; padding: 20px 0; }
.state.on { display: block; }
.state h3 { margin-bottom: 8px; }
.state p { color: var(--text-2); font-size: 15.5px; }
.spinner {
  width: 26px; height: 26px; margin: 0 auto 16px; border-radius: 50%;
  border: 2px solid var(--line); border-top-color: var(--accent); animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Подвал */
footer {
  padding: clamp(44px, 5vw, 64px) 0 clamp(28px, 3vw, 36px);
  border-top: 1px solid var(--line-soft);
  color: var(--text-3); font-size: 14.5px;
}
.foot-top {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px); align-items: start;
  padding-bottom: clamp(32px, 4vw, 48px);
}
.foot-brand .logo { display: inline-block; margin-bottom: 18px; }
.foot-mark { width: clamp(160px, 17vw, 210px); height: auto; display: block; }
.motto { color: var(--text-2); font-size: 15.5px; margin: 0; max-width: 34ch; }

.foot-cta { justify-self: end; text-align: right; max-width: 42ch; }
.foot-q {
  color: var(--text); font-size: clamp(19px, 2vw, 25px);
  font-weight: 620; letter-spacing: -.02em; line-height: 1.2; margin-bottom: 20px;
}
.foot-actions { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }
.foot-actions .btn { padding: 13px 22px; font-size: 15px; }
.foot-people { color: var(--text-3); font-size: 14px; margin-top: 16px; }

.foot-bottom {
  display: flex; flex-wrap: wrap; gap: 12px 32px; align-items: baseline;
  padding-top: clamp(20px, 2.4vw, 28px); border-top: 1px solid var(--line-soft);
}
.foot-bottom .req { font-size: 13px; color: var(--text-3); letter-spacing: .01em; }
.foot-bottom a { color: var(--text-3); text-decoration: none; margin-left: auto; transition: color .18s; }
.foot-bottom a:hover { color: var(--text-2); }

@media (max-width: 820px) {
  .foot-top { grid-template-columns: minmax(0, 1fr); }
  .foot-cta { justify-self: start; text-align: left; }
  .foot-actions { justify-content: flex-start; }
  .foot-bottom a { margin-left: 0; }
}

/* Слои на узких экранах уходят в углы и приглушаются */
@media (max-width: 980px) {
  .art-facade, .art-node, .art-tongs, .art-gauge,
  .art-shelf, .art-scale, .art-forge {
    opacity: .24;
    background-size: auto 52%;
  }
  .art-node, .art-gauge, .art-scale { background-position: left -34vw bottom; }
  .art-facade, .art-tongs, .art-shelf, .art-forge { background-position: right -34vw bottom; }
  .art-hero {
    background-position: right -42vw top 6%;
    background-size: auto 42%;
    opacity: .22;
    -webkit-mask-image: linear-gradient(180deg, #000 0, #000 30%, transparent 52%);
    mask-image: linear-gradient(180deg, #000 0, #000 30%, transparent 52%);
  }
}
