/* ============================================================
   Clay — корпоративный ИИ. Лендинг.
   Светлая «бумажная» тема, глина — дозированный акцент.
   ============================================================ */

:root {
  /* fonts (overridable by Tweaks) */
  --font-head: "Geist", system-ui, sans-serif;
  --font-body: "Geist", system-ui, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, monospace;

  /* surfaces */
  --paper: #FAF9F7;   /* page background, warm paper white */
  --white: #FFFFFF;   /* card background */

  /* ink */
  --ink:   #1A1714;   /* near-black graphite */
  --ink-2: #4B453E;   /* secondary text */
  --ink-3: #8B847B;   /* muted / captions */

  /* lines */
  --line:   #ECE7E0;  /* hairline borders */
  --line-2: #DED7CD;  /* stronger dividers */

  /* accent — clay / terracotta (dosed) */
  --clay:       #C66B3D;
  --clay-press: #AE5A30;
  --clay-tint:  #F4E7DE;  /* very soft wash for zone highlight */

  --maxw: 1140px;
  --gut: clamp(20px, 5vw, 48px);

  --r-card: 16px;
  --r-btn: 10px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "cv01", "cv03", "ss01";
}

::selection { background: var(--clay-tint); color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }

/* ---------- layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.container--wide { max-width: 1280px; }
.container--narrow { max-width: 760px; }

section { position: relative; }
.section-pad { padding-block: clamp(72px, 11vw, 140px); }

.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

.overline {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 22px;
}
.overline--clay { color: var(--clay); }

/* Accent intensity (Tweaks): "min" keeps clay only on buttons + case metrics */
body[data-accent="min"] .overline--clay { color: var(--ink-3); }
body[data-accent="min"] .eyebrow-dot::before { background: var(--ink-3); }
body[data-accent="min"] .tcard__role { color: var(--ink-2); }
body[data-accent="min"] .tab-content__num { color: var(--ink-3); }

.eyebrow-dot::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--clay);
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 540;
  letter-spacing: -0.01em;
  border-radius: var(--r-btn);
  padding: 11px 20px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
  white-space: nowrap;
}
.btn--clay {
  background: var(--clay);
  color: #fff;
  box-shadow: 0 1px 1px rgba(80,40,20,.10), inset 0 1px 0 rgba(255,255,255,.14);
}
.btn--clay:hover { background: var(--clay-press); transform: translateY(-1px); }
.btn--clay:active { transform: translateY(0); }
.btn--lg { font-size: 17px; padding: 15px 28px; border-radius: 12px; }
.btn .arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 78%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  background: color-mix(in srgb, var(--paper) 90%, transparent);
}
.nav__inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.brand__dot { color: var(--clay); }

/* ============================================================
   GENERIC SECTION HEADINGS
   ============================================================ */
.h-display {
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
}
.h-section {
  font-size: clamp(1.8rem, 4vw, 2.9rem);
}
.lead {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  line-height: 1.5;
  color: var(--ink-2);
  letter-spacing: -0.01em;
}
.body-lg { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--ink-2); line-height: 1.62; }
.muted { color: var(--ink-3); }
.ink-strong { color: var(--ink); font-weight: 500; }

/* ---------- Проблема ---------- */
.problem__text {
  font-size: clamp(1.45rem, 4.4vw, 1.95rem);
  line-height: 1.4;
  letter-spacing: -0.018em;
  color: var(--ink);
  max-width: 44ch;
}
.problem__text .hl {
  font-weight: 560;
}
/* переиспользуемая «глиняная» подсветка текста */
.hl {
  color: var(--ink);
  position: relative;
  white-space: nowrap;
}
.hl::after {
  content: "";
  position: absolute;
  left: -0.05em; right: -0.05em; bottom: 0.04em;
  height: 0.44em;
  background: color-mix(in srgb, var(--clay) 26%, #fff);
  z-index: -1;
  border-radius: 3px;
}

/* ---------- Решение ---------- */
.solution__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
}

/* ============================================================
   КЕЙС — metric cards
   ============================================================ */
.case__head { max-width: 760px; }
.case__intro { margin-top: 26px; }

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.mcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 30px 28px 28px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.mcard__kicker {
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 18px;
}
.mcard__title {
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.mcard__body { font-size: 1rem; color: var(--ink-2); line-height: 1.55; }
.mcard__metric {
  margin-top: auto;
  padding-top: 26px;
}
.metric-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-head);
  letter-spacing: -0.03em;
  line-height: 1;
}
.metric-from {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--ink-3);
  font-weight: 500;
}
.metric-arrow { color: var(--ink-3); font-size: 1.5rem; transform: translateY(-2px); }
.metric-to {
  font-size: clamp(2.4rem, 4.6vw, 3.4rem);
  color: var(--clay);
  font-weight: 600;
}
.metric-single {
  font-family: var(--font-head);
  letter-spacing: -0.03em;
  line-height: 1.02;
}
.metric-single b {
  display: block;
  font-size: clamp(2.4rem, 4.6vw, 3.4rem);
  color: var(--clay);
  font-weight: 600;
}
.metric-single span { font-size: 1rem; color: var(--ink-2); font-weight: 400; letter-spacing: 0; }

/* ============================================================
   ТАБЫ + MOCKUP
   ============================================================ */
.tabs__row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  border-bottom: 1px solid var(--line);
  margin-top: 36px;
}
.tab {
  appearance: none;
  background: none;
  border: 0;
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink-3);
  padding: 14px 18px;
  cursor: pointer;
  position: relative;
  transition: color .18s var(--ease);
  white-space: nowrap;
}
.tab:hover { color: var(--ink-2); }
.tab[aria-selected="true"] { color: var(--ink); }
.tab[aria-selected="true"]::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: -1px;
  height: 2px;
  background: var(--clay);
  border-radius: 2px;
}

.tabs__panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  margin-top: 44px;
}
.tab-content { min-height: 200px; }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }
.tab-panel.is-active.fade-swap { animation: fadeSwap .42s var(--ease); }
.tab-content__num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--clay);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.tab-content__title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.022em;
  margin-bottom: 18px;
}
.tab-content__body { font-size: 1.12rem; color: var(--ink-2); line-height: 1.62; max-width: 38ch; }
.fade-swap { animation: fadeSwap .42s var(--ease); }
@keyframes fadeSwap { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ============================================================
   БЕЗОПАСНОСТЬ — 4 cards
   ============================================================ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: clamp(28px, 3.5vw, 40px);
}
.fcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 26px 28px 28px;
}
.fcard__icon {
  width: 30px; height: 30px;
  color: var(--clay);
  margin-bottom: 18px;
}
.fcard__title {
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.fcard__body { color: var(--ink-2); font-size: 1.02rem; line-height: 1.55; }

/* ============================================================
   НАШЕ РЕШЕНИЕ — слайдер (каждая карточка = отдельный слайд)
   ============================================================ */
.solu { margin-top: clamp(28px, 3.5vw, 44px); }
.solu__viewport {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--white);
}
.solu__track {
  display: flex;
  transition: transform .55s cubic-bezier(.65, .02, .2, 1);
  will-change: transform;
}
.solu__slide {
  flex: 0 0 100%;
  min-width: 100%;
  box-sizing: border-box;
  padding: clamp(34px, 5.2vw, 72px);
  min-height: clamp(300px, 33vw, 380px);
  display: flex;
  flex-direction: column;
}
.solu__num {
  font-family: var(--font-mono);
  font-size: .82rem;
  letter-spacing: .16em;
  color: var(--clay);
  margin-bottom: clamp(22px, 4vw, 40px);
}
.solu__icon {
  width: clamp(44px, 5vw, 56px);
  height: clamp(44px, 5vw, 56px);
  color: var(--clay);
  margin-bottom: clamp(20px, 2.6vw, 28px);
}
.solu__title {
  font-family: var(--font-head);
  font-size: clamp(1.55rem, 2.9vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.12;
  margin: 0 0 16px;
  max-width: 20ch;
}
.solu__body {
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 56ch;
  margin: 0;
}
.solu__controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: clamp(22px, 3vw, 30px);
}
.solu__arrow {
  width: 50px; height: 50px;
  flex: 0 0 50px;
  border: 1px solid var(--line-2);
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: border-color .2s, color .2s, background .2s;
}
.solu__arrow svg { width: 20px; height: 20px; }
.solu__arrow:hover { border-color: var(--clay); color: var(--clay); }
.solu__dots { display: flex; align-items: center; gap: 9px; margin-left: auto; }
.solu__dot {
  width: 8px; height: 8px;
  border-radius: 99px;
  background: var(--line-2);
  border: none; padding: 0; cursor: pointer;
  transition: background .25s, width .25s;
}
.solu__dot.is-on { background: var(--clay); width: 26px; }
@media (max-width: 900px) {
  .solu__dots { display: none; }
}

/* ============================================================
   ПОЧЕМУ — numbered list
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 3vw, 40px) clamp(36px, 4vw, 56px);
  margin-top: clamp(34px, 3.5vw, 44px);
}
.why-item { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: start; }
.why-item__num {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  padding-top: 2px;
  font-variant-numeric: tabular-nums;
}
.why-item__title {
  font-size: 1.24rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.why-item__body { color: var(--ink-2); font-size: 1.04rem; line-height: 1.56; }

/* ============================================================
   КОМАНДА
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.tcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 38px 36px 40px;
}
.tcard__name {
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}
.tcard__role {
  font-family: var(--font-mono);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: var(--clay);
  margin-bottom: 22px;
}
.tcard__body { color: var(--ink-2); font-size: 1.05rem; line-height: 1.58; }

.team-note {
  margin-top: clamp(34px, 4.5vw, 52px);
  padding-top: clamp(28px, 3.5vw, 40px);
  border-top: 1px solid var(--line);
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.6vw, 1.95rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.32;
  color: var(--ink-2);
  max-width: 30ch;
  text-wrap: balance;
}
.team-note__hl { color: var(--ink); font-weight: 600; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta {
  text-align: center;
}
.cta:not(.slide) { padding-block: clamp(96px, 15vw, 200px); }
.cta__title { font-size: clamp(2.4rem, 6vw, 4.4rem); letter-spacing: -0.03em; }
.cta-mark {
  display: block;
  width: clamp(120px, 14vw, 168px);
  height: auto;
  margin: 0 auto clamp(28px, 4vw, 44px);
  color: var(--clay);
  opacity: 0.78;
}
.cta__text {
  max-width: 540px;
  margin: 26px auto 40px;
  font-size: clamp(1.1rem, 2vw, 1.32rem);
  color: var(--ink-2);
  line-height: 1.5;
}

/* ---------- footer ---------- */
.foot {
  border-top: 1px solid var(--line);
  padding-block: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--ink-3);
  font-size: 0.92rem;
}

/* ============================================================
   FADE-IN ON SCROLL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .fade-swap { animation: none; }
}

/* ============================================================
   SLIDE RHYTHM — страница как презентация, которую листают
   ============================================================ */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

.slide {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: safe center;
  padding-block: clamp(80px, 9vh, 120px);
}
.slide > .container { width: 100%; }
.slide--tight { min-height: auto; }
.case-examples {
  margin-top: clamp(48px, 6vw, 76px);
  padding-top: clamp(40px, 5vw, 60px);
  border-top: 1px solid var(--line);
}
.case-examples__title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 clamp(24px, 3vw, 34px);
}
.slide--paper { background: var(--paper); }
.slide--white { background: #FFFFFF; }

/* тонкий глиняный хайрлайн между слайдами */
.slide + .slide { border-top: 1px solid color-mix(in srgb, var(--clay) 16%, transparent); }

/* карточки контрастируют с фоном слайда */
.slide--white .mcard,
.slide--white .tcard { background: var(--paper); }

/* ---------- Решение / главный слайд ---------- */
.hero-row {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}
.hero-mark {
  width: 100%;
  height: auto;
  max-width: 340px;
  justify-self: end;
  color: var(--clay);
  opacity: 0.82;
}
@media (max-width: 900px) {
  .hero-row { grid-template-columns: 1fr; gap: 40px; }
  .hero-mark { max-width: 240px; opacity: 0.7; justify-self: start; }
}

/* ---------- этапы кейса ---------- */
.case-slide__inner { position: relative; z-index: 1; }
.case-head-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.case-factory {
  width: 100%;
  height: auto;
  max-width: 460px;
  justify-self: end;
  color: var(--clay);
  opacity: 0.42;
}
@media (max-width: 900px) {
  .case-head-row { grid-template-columns: 1fr; gap: 28px; }
  .case-factory { max-width: 320px; opacity: 0.32; order: -1; justify-self: start; }
}
.stages { margin-top: clamp(34px, 5vw, 56px); }
.stage {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(18px, 3vw, 44px);
  align-items: start;
  padding: clamp(20px, 2.6vw, 30px) 0;
}
.stage + .stage { border-top: 1px solid var(--line); }
.stage__n {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--clay);
  padding-top: 8px;
  white-space: nowrap;
}
.stage__text {
  font-size: clamp(1.12rem, 1.7vw, 1.34rem);
  line-height: 1.5;
  color: var(--ink-2);
  letter-spacing: -0.01em;
  max-width: 64ch;
  margin: 0;
}

/* ---------- команда: одно утверждение ---------- */
.team-line {
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
  max-width: 19ch;
  margin-top: 12px;
  text-wrap: balance;
}

@media (max-width: 900px) {
  .slide { min-height: auto; padding-block: clamp(72px, 12vw, 96px); }
  .stage { gap: 16px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  body { font-size: 17px; }
  .metric-grid { grid-template-columns: 1fr; }
  .tabs__panel { grid-template-columns: 1fr; gap: 32px; }
  .feat-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 34px; }
  .team-grid { grid-template-columns: 1fr; }
  .tabs__row { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .tabs__row::-webkit-scrollbar { display: none; }
}

/* — телефоны — */
@media (max-width: 600px) {
  :root { --gut: 20px; }
  body { font-size: 16px; }
  .nav__inner { height: 58px; }
  .slide { padding-block: clamp(54px, 15vw, 78px); }
  .problem__text { max-width: none; font-size: clamp(1.32rem, 6vw, 1.7rem); }
  .mcard { min-height: auto; padding: 24px 22px 26px; }
  .case-examples { margin-top: 40px; padding-top: 32px; }
  .metric-grid { gap: 14px; }
  .tcard { padding: 28px 24px 30px; }
  .why-grid { gap: 30px; margin-top: 36px; }
  .team-note { margin-top: 30px; padding-top: 26px; }
  .btn--lg { width: 100%; justify-content: center; }
  .foot { font-size: 0.85rem; }
}

/* footer reachable past the snap points */
.foot { }

/* ============================================================
   PRINT — один слайд = одна страница (A4 portrait)
   Платформа: каждый таб печатается отдельной страницей.
   ============================================================ */
@media print {
  @page { size: A4 portrait; margin: 12mm; }

  *, *::before, *::after {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    transition: none !important;
    animation: none !important;
  }

  html { scroll-snap-type: none !important; }
  body { background: #fff !important; }
  .nav, #tweaks-root { display: none !important; }

  .reveal { opacity: 1 !important; transform: none !important; }

  .slide {
    min-height: 0 !important;
    display: block !important;
    padding: 0 0 6mm 0 !important;
    border-top: 0 !important;
    break-inside: avoid;
  }
  .slide + .slide { break-before: page; }
  .slide--white, .slide--paper, .cta { background: #fff !important; }
  .slide--white .mcard, .slide--white .fcard { background: #fff !important; }
  .cta:not(.slide) { padding-block: 0 !important; }

  .container, .container--wide, .container--narrow {
    max-width: 100% !important;
    padding-inline: 0 !important;
  }

  .mcard, .fcard, .why-item, .stage, .tcard, .mk,
  .metric-grid, .feat-grid, .team-grid { break-inside: avoid; }

  /* ---- платформа: ВСЕ табы, каждый отдельной страницей ---- */
  .tabs__row { display: none !important; }
  .tabs__panel { display: block !important; }
  .tab-panel {
    display: block !important;
    break-before: page;
    break-inside: avoid;
    padding-top: 4mm;
    max-width: 70ch;
  }
  .tab-panel .tab-content__body { font-size: 1.05rem; }
  /* первый таб остаётся на странице с заголовком секции */
  .tab-panel[data-i="0"] { break-before: auto; }

  /* мокап — своя страница, нейтральный, без подсветки */
  #mockup, .tabs__panel > .reveal { break-before: page; }
  .mk { box-shadow: none !important; height: 440px !important; }
  .mk.zoned [data-zone] { opacity: 1 !important; }
  .mk [data-zone].is-hl { box-shadow: none !important; background: transparent !important; }

  .foot { break-before: page; border-top: 0; }
}
