/* =====================================================
   МОДУЛИ И ОТРАСЛЕВЫЕ РЕШЕНИЯ (в стиле v6)
===================================================== */

/* ---------- первый экран: текст слева, конструктор справа ---------- */
.mhero { text-align: left; padding-bottom: 32px; }
.mhero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.mhero .hero__title { margin: 0 0 var(--space-6); max-width: none; font-size: 56px; line-height: 60px; }
.mhero .hero__lead { margin: 0 0 36px; max-width: 46ch; }
.mhero .hero__actions, .mhero .hero__checks { justify-content: flex-start; }
.mhero .hero__actions .btn svg { width: 16px; height: 16px; }
.mhero .hero__actions .btn--primary:hover svg { transform: translateY(3px); }

.builder-stage { perspective: 1400px; }
.builder {
  border-radius: var(--r-panel);
  padding: 28px;
  transform: rotateY(-10deg) rotateX(6deg);
  transform-origin: 60% 50%;
  transition: transform 0.9s var(--ease);
  box-shadow: inset 0 0 0 1px rgba(108,196,255,0.22), var(--shadow-lg);
}
.builder-stage:hover .builder { transform: none; }
.builder__head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 20px; }
.builder__title { margin: 0; font-size: 14px; line-height: 20px; font-weight: 600; color: var(--ink-on-brand-muted); }
.builder__ind { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px 6px 10px; border-radius: var(--r-pill); background: rgba(108,196,255,0.12); box-shadow: inset 0 0 0 1px rgba(108,196,255,0.3); font-size: 14px; line-height: 20px; }
.builder__ind-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-blue); box-shadow: 0 0 0 0 rgba(23,162,248,0.6); animation: live 1.8s ease-out infinite; }
.builder__ind b { font-weight: 700; }
.builder__ind.is-swap b { animation: swapIn 0.5s var(--ease); }
@keyframes swapIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.builder__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.btile {
  position: relative; min-height: 76px; padding: 10px 12px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 6px; text-align: left;
  border: 0; border-radius: 12px; cursor: pointer;
  background: rgba(255,255,255,0.05); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
  color: var(--ink-on-brand-muted);
  transition: background 0.45s ease, color 0.45s ease, box-shadow 0.45s ease, transform 0.45s var(--ease);
}
.btile__num { font-family: var(--mono); font-size: 11px; line-height: 14px; opacity: 0.8; }
.btile__name { font-size: 13px; line-height: 16px; font-weight: 600; }
.btile:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1px rgba(108,196,255,0.6); color: #FFFFFF; }
.btile.is-on {
  background: linear-gradient(160deg, #3DB6FF 0%, var(--brand-blue) 55%, #0C85D6 100%);
  color: var(--brand-navy);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.25) inset, 0 10px 30px -10px rgba(23,162,248,0.9);
}
.btile.is-on .btile__num { opacity: 1; }
.builder__foot { margin-top: 20px; display: flex; align-items: center; gap: 16px; }
.builder__bar { flex: 1; height: 6px; border-radius: 3px; background: rgba(255,255,255,0.1); overflow: hidden; }
.builder__bar i { display: block; height: 100%; width: 0; border-radius: 3px; background: linear-gradient(90deg, var(--accent-text-on-brand), var(--brand-blue)); transition: width 0.7s var(--ease); }
.builder__foot p { margin: 0; font-size: 12px; line-height: 16px; color: var(--ink-on-brand-muted); white-space: nowrap; }
.builder__foot b { font-size: 16px; color: #FFFFFF; }
.builder__dots { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; gap: 6px; justify-content: space-between; }
.builder__dot {
  flex: 1; height: 40px; border: 0; border-radius: 10px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04); color: var(--ink-on-brand-muted);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.builder__dot svg { width: 20px; height: 20px; }
.builder__dot:hover { color: #FFFFFF; box-shadow: inset 0 0 0 1px rgba(108,196,255,0.5); }
.builder__dot.is-active { background: rgba(23,162,248,0.2); color: #FFFFFF; box-shadow: inset 0 0 0 1px rgba(108,196,255,0.7); }
.builder :focus-visible { outline-color: var(--accent-text-on-brand); }

@media (max-width: 1100px) {
  .mhero__grid { grid-template-columns: 1fr; gap: 48px; }
  .mhero { text-align: center; }
  .mhero .hero__title, .mhero .hero__lead { margin-left: auto; margin-right: auto; }
  .mhero .hero__actions, .mhero .hero__checks { justify-content: center; }
  .builder { transform: none; max-width: 640px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .mhero .hero__title { font-size: 34px; line-height: 39px; }
  .builder { padding: 16px; border-radius: 20px; }
  .builder__grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .btile { min-height: 0; flex-direction: row; align-items: center; justify-content: flex-start; gap: 8px; padding: 9px 10px; }
  .builder__foot { flex-direction: column; align-items: stretch; gap: 8px; }
  .builder__foot p { white-space: normal; text-align: center; }
}

/* ---------- фильтры ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin: -16px 0 32px; }
.filter {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border: 0; border-radius: var(--r-pill); cursor: pointer;
  background: #FFFFFF; color: var(--ink); box-shadow: inset 0 0 0 1px var(--border), var(--shadow-sm);
  font-size: 14px; line-height: 20px; font-weight: 600;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.filter span { min-width: 24px; padding: 1px 7px; border-radius: var(--r-pill); background: var(--surface-sunken); color: var(--ink-muted); font-size: 12px; line-height: 18px; text-align: center; transition: background 0.25s ease, color 0.25s ease; }
.filter:hover { box-shadow: inset 0 0 0 1px var(--border-strong), var(--shadow-sm); }
.filter.is-active { background: var(--brand-navy); color: #FFFFFF; box-shadow: 0 10px 24px -12px rgba(8,24,110,0.7); }
.filter.is-active span { background: var(--brand-blue); color: var(--brand-navy); }

/* ---------- карточки модулей ---------- */
.mods { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.mod {
  position: relative; display: flex; flex-direction: column;
  padding: 24px; border-radius: var(--r-card); background: #FFFFFF;
  box-shadow: inset 0 0 0 1px var(--border), var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.35s ease, opacity 0.35s ease;
}
.mod:hover, .mod:focus-within { transform: translateY(-6px); box-shadow: inset 0 0 0 1px rgba(23,162,248,0.55), var(--shadow-md); }
.mod__hit { position: absolute; inset: 0; z-index: 2; border: 0; background: none; border-radius: inherit; cursor: pointer; }
.mod__hit:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; }
.mod__top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; }
.mod__icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--accent-soft), #FFFFFF); box-shadow: inset 0 0 0 1px #CFE7FB; color: var(--accent-text); transition: transform 0.45s var(--ease), background 0.3s ease, color 0.3s ease; }
.mod__icon svg { width: 24px; height: 24px; }
.mod:hover .mod__icon { transform: rotate(-6deg) scale(1.06); background: var(--brand-navy); color: #FFFFFF; box-shadow: none; }
.mod__num { font-family: var(--mono); font-size: 13px; line-height: 16px; font-weight: 600; color: var(--border-strong); letter-spacing: 0.04em; transition: color 0.3s ease; }
.mod:hover .mod__num { color: var(--accent-text); }
.mod__group { margin: 0 0 4px; font-size: 11px; line-height: 16px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); }
.mod__name { margin: 0 0 8px; font-size: 20px; line-height: 26px; font-weight: 700; letter-spacing: -0.01em; }
.mod__desc { margin: 0 0 16px; font-size: 14px; line-height: 20px; color: var(--ink-muted); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.mod__prev { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.mod__prev span { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 12px; line-height: 16px; font-weight: 600; padding: 4px 10px; border-radius: var(--r-pill); background: var(--surface-sunken); color: var(--ink); }
.mod__prev .mod__more { background: var(--accent-soft); color: var(--accent-text); }
.mod__foot { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; font-size: 13px; line-height: 18px; font-weight: 600; color: var(--accent-text); }
.mod__arrow { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--surface-sunken); color: var(--ink); transition: background 0.3s ease, color 0.3s ease, transform 0.45s var(--ease); }
.mod__arrow svg { width: 14px; height: 14px; }
.mod:hover .mod__arrow { background: var(--brand-blue); color: var(--brand-navy); transform: rotate(-45deg); }
.mod.is-hidden { display: none; }
.mod.is-shown { animation: modIn 0.55s var(--ease) both; }
@keyframes modIn { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: none; } }
.mod.is-flash { box-shadow: inset 0 0 0 2px var(--brand-blue), var(--shadow-md); }
@media (max-width: 1200px) { .mods { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 900px) { .mods { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) {
  .mods { grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .filters { flex-wrap: nowrap; overflow-x: auto; margin: -8px calc(var(--gutter) * -1) 24px; padding: 4px var(--gutter) 8px; scrollbar-width: none; }
  .filters::-webkit-scrollbar { display: none; }
  .filter { flex-shrink: 0; }
  .mod { padding: 20px; }
}

/* ---------- отраслевые решения ---------- */
.ind__tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: -16px auto 28px; max-width: 1000px; }
.itab {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px 8px 8px; border: 0; border-radius: var(--r-pill); cursor: pointer;
  background: #FFFFFF; color: var(--ink); box-shadow: inset 0 0 0 1px var(--border), var(--shadow-sm);
  font-size: 15px; line-height: 20px; font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.35s var(--ease);
}
.itab__icon { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--accent-soft); color: var(--accent-text); transition: background 0.3s ease, color 0.3s ease; }
.itab__icon svg { width: 18px; height: 18px; }
.itab:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1px var(--border-strong), var(--shadow-md); }
.itab.is-active { background: var(--brand-navy); color: #FFFFFF; box-shadow: 0 14px 30px -14px rgba(8,24,110,0.8); }
.itab.is-active .itab__icon { background: var(--brand-blue); color: var(--brand-navy); }

.ind__stage { position: relative; }
.ind__panel {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: 20px;
  animation: panelIn 0.6s var(--ease) both;
}
.ind__panel[hidden] { display: none; }
@keyframes panelIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.ind__main, .ind__side { border-radius: var(--r-panel); padding: 44px; }
.ind__main { background: #FFFFFF; box-shadow: inset 0 0 0 1px var(--border), var(--shadow-md); }
.ind__side {
  background-color: var(--surface-brand);
  background-image:
    radial-gradient(120% 80% at 100% 100%, rgba(23,162,248,0.22) 0%, transparent 55%),
    radial-gradient(80% 60% at 0% 0%, rgba(40,70,200,0.45) 0%, transparent 60%),
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: auto, auto, 44px 44px, 44px 44px;
  color: #FFFFFF;
  box-shadow: inset 0 0 0 1px rgba(108,196,255,0.2), var(--shadow-lg);
  display: flex; flex-direction: column;
}
.ind__chip { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 20px; font-size: 12px; line-height: 16px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-text); }
.ind__icon { width: 52px; height: 52px; border-radius: 16px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--brand-navy), #1D3BC0); color: #FFFFFF; box-shadow: 0 0 0 6px var(--accent-soft); }
.ind__icon svg { width: 26px; height: 26px; }
.ind__title { margin: 0 0 12px; font-size: 48px; line-height: 52px; font-weight: 700; letter-spacing: -0.035em; }
.ind__desc { margin: 0 0 32px; font-size: 17px; line-height: 27px; color: var(--ink-muted); max-width: 58ch; }
.ind__label { margin: 0 0 14px; display: flex; align-items: center; gap: 10px; font-size: 12px; line-height: 16px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); }
.ind__label::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, var(--border), transparent); }
.ind__side .ind__label { color: var(--ink-on-brand-muted); }
.ind__side .ind__label::after { background: linear-gradient(90deg, rgba(255,255,255,0.18), transparent); }
.ind__tasks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.ind__tasks li {
  display: grid; grid-template-columns: 36px 1fr; gap: 14px; align-items: center;
  padding: 14px 16px; border-radius: 14px; background: var(--surface-sunken);
  font-size: 16px; line-height: 22px; font-weight: 600;
  transition: background 0.3s ease, transform 0.4s var(--ease);
}
.ind__tasks li:hover { background: var(--accent-soft); transform: translateX(4px); }
.ind__tasks li span { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #FFFFFF; box-shadow: inset 0 0 0 1px var(--border); font-size: 12px; font-weight: 700; color: var(--accent-text); }

.ind__ring { position: relative; width: 132px; height: 132px; margin: 0 0 28px; }
.ind__ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring__bg { fill: none; stroke: rgba(255,255,255,0.1); stroke-width: 8; }
.ring__fg { fill: none; stroke: var(--brand-blue); stroke-width: 8; stroke-linecap: round; stroke-dashoffset: 276.5; transition: stroke-dashoffset 1.1s var(--ease); filter: drop-shadow(0 0 6px rgba(23,162,248,0.7)); }
.ind__panel.is-active .ring__fg { stroke-dashoffset: var(--off); }
.ind__ring p { position: absolute; inset: 0; margin: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.ind__ring b { font-size: 40px; line-height: 40px; letter-spacing: -0.03em; }
.ind__ring span { font-size: 12px; line-height: 16px; color: var(--ink-on-brand-muted); }
.mchips { display: flex; flex-wrap: wrap; gap: 8px; }
.mchip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px 8px 8px; border: 0; border-radius: var(--r-pill); cursor: pointer;
  background: rgba(255,255,255,0.07); color: #FFFFFF; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14);
  font-size: 14px; line-height: 18px; font-weight: 600;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.35s var(--ease);
}
.mchip span { font-family: var(--mono); font-size: 11px; line-height: 14px; padding: 3px 6px; border-radius: var(--r-pill); background: rgba(23,162,248,0.25); color: var(--accent-text-on-brand); }
.mchip:hover { background: rgba(23,162,248,0.22); box-shadow: inset 0 0 0 1px rgba(108,196,255,0.7); transform: translateY(-2px); }
.mchip:focus-visible { outline-color: var(--accent-text-on-brand); }
.ind__hint { margin: auto 0 0; padding-top: 24px; font-size: 12px; line-height: 16px; color: var(--ink-on-brand-muted); }
@media (max-width: 1024px) { .ind__panel { grid-template-columns: 1fr; } .ind__title { font-size: 40px; line-height: 44px; } }
@media (max-width: 640px) {
  .ind__tabs { flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; margin: -8px calc(var(--gutter) * -1) 20px; padding: 4px var(--gutter) 10px; scrollbar-width: none; }
  .ind__tabs::-webkit-scrollbar { display: none; }
  .itab { flex-shrink: 0; }
  .ind__main, .ind__side { padding: 24px; border-radius: 20px; }
  .ind__title { font-size: 32px; line-height: 36px; }
  .ind__desc { font-size: 15px; line-height: 23px; }
  .ind__tasks li { font-size: 15px; line-height: 21px; padding: 12px; }
  .ind__ring { width: 108px; height: 108px; }
}

/* ---------- боковая панель модуля ---------- */
.drawer { position: fixed; inset: 0; z-index: 300; }
.drawer[hidden] { display: none; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(8,24,110,0.35); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); opacity: 0; transition: opacity 0.35s ease; }
.drawer__panel {
  position: absolute; top: 12px; right: 12px; bottom: 12px;
  width: min(560px, calc(100vw - 24px));
  display: flex; flex-direction: column;
  background: #FFFFFF; border-radius: var(--r-panel);
  box-shadow: 0 30px 80px -20px rgba(8,24,110,0.55), inset 0 0 0 1px var(--border);
  transform: translateX(calc(100% + 24px));
  transition: transform 0.55s var(--ease);
  outline: none; overflow: hidden;
}
.drawer.is-open .drawer__scrim { opacity: 1; }
.drawer.is-open .drawer__panel { transform: none; }
.drawer__bar { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px 0 32px; }
.drawer__meta { display: inline-flex; align-items: center; gap: 12px; font-size: 12px; line-height: 16px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); }
.drawer__meta b { font-family: var(--mono); color: var(--accent-text); letter-spacing: 0.04em; font-size: 14px; }
.drawer__meta i { width: 24px; height: 1px; background: var(--border-strong); }
.drawer__close { width: 44px; height: 44px; border: 0; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; background: var(--surface-sunken); color: var(--ink); transition: background 0.2s ease, transform 0.35s var(--ease); }
.drawer__close svg { width: 16px; height: 16px; }
.drawer__close:hover { background: var(--accent-soft); transform: rotate(90deg); }
.drawer__body { flex: 1; overflow-y: auto; padding: 24px 32px 32px; }
.drawer__body.is-swap { animation: panelIn 0.45s var(--ease); }
.drawer__icon { width: 64px; height: 64px; border-radius: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; background: linear-gradient(135deg, var(--brand-navy), #1D3BC0); color: #FFFFFF; box-shadow: 0 0 0 8px var(--accent-soft); }
.drawer__icon svg { width: 30px; height: 30px; }
.drawer__name { margin: 0 0 12px; font-size: 40px; line-height: 44px; font-weight: 700; letter-spacing: -0.035em; }
.drawer__desc { margin: 0 0 32px; font-size: 17px; line-height: 27px; color: var(--ink-muted); }
.drawer__label { margin: 0 0 14px; display: flex; align-items: center; gap: 10px; font-size: 12px; line-height: 16px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); }
.drawer__label span { padding: 2px 8px; border-radius: var(--r-pill); background: var(--accent-soft); color: var(--accent-text); letter-spacing: 0; }
.drawer__caps { list-style: none; margin: 0 0 32px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.drawer__caps li {
  position: relative; padding: 12px 14px 12px 42px; border-radius: 12px;
  background: var(--surface-sunken); font-size: 15px; line-height: 21px; font-weight: 600;
  animation: capIn 0.5s var(--ease) both; animation-delay: calc(var(--i, 0) * 40ms);
}
.drawer__caps li::before {
  content: ""; position: absolute; left: 12px; top: 12px; width: 20px; height: 20px; border-radius: 50%;
  background: #FFFFFF url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%230572B6' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8.5l2.5 2.5L12 5.5'/%3E%3C/svg%3E") center / 12px no-repeat;
  box-shadow: inset 0 0 0 1px #CFE7FB;
}
@keyframes capIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.drawer__inds { display: flex; flex-wrap: wrap; gap: 8px; }
.drawer__inds a { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: var(--r-pill); background: #FFFFFF; box-shadow: inset 0 0 0 1px var(--border); color: var(--ink); text-decoration: none; font-size: 14px; line-height: 18px; font-weight: 600; transition: background 0.2s ease, box-shadow 0.2s ease; }
.drawer__inds a:hover { background: var(--accent-soft); box-shadow: inset 0 0 0 1px #9FD3F7; }
.drawer__foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 16px 24px 16px 32px; border-top: 1px solid var(--border); background: rgba(241,245,250,0.6); }
.drawer__nav { display: flex; gap: 8px; }
.drawer__step { width: 48px; height: 48px; border: 0; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; background: #FFFFFF; color: var(--ink); box-shadow: inset 0 0 0 1px var(--border); transition: box-shadow 0.2s ease, background 0.2s ease; }
.drawer__step svg { width: 16px; height: 16px; }
.drawer__step:hover { background: var(--accent-soft); box-shadow: inset 0 0 0 1px #9FD3F7; }
@media (max-width: 560px) {
  .drawer__panel { top: auto; left: 0; right: 0; bottom: 0; width: 100%; max-height: 88vh; border-radius: 24px 24px 0 0; transform: translateY(100%); }
  .drawer__bar { padding: 16px 16px 0 20px; }
  .drawer__body { padding: 16px 20px 24px; }
  .drawer__name { font-size: 30px; line-height: 34px; }
  .drawer__desc { font-size: 15px; line-height: 23px; margin-bottom: 24px; }
  .drawer__caps { grid-template-columns: 1fr; }
  .drawer__foot { padding: 12px 16px 12px 20px; }
  .drawer__foot .btn { flex: 1; min-height: 48px; }
}
html.is-locked { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .builder { transform: none; }
  .drawer__panel, .drawer__scrim { transition: none; }
}
