/* ============================================================
   anybit — product engineering studio
   Основная таблица стилей
   ------------------------------------------------------------
   1.  Токены
   2.  Сброс и база
   3.  Утилиты и типографика
   4.  Кнопки и ссылки
   5.  Медиа-слоты
   6.  Курсор и прогресс-бар
   7.  Шапка и навигация
   8.  Первый экран
   9.  Портфель (аккордеон)
   10. Продуктовые блоки
   11. Цифры
   12. Журнал
   13. Подвал
   14. Страница кейса
   15. Анимации
   16. Адаптив
   ============================================================ */

/* ---------- 1. Токены ---------- */
:root {
  --accent: #C8FF3D;
  --accent-line: rgba(200, 255, 61, .28);
  --accent-wash: rgba(200, 255, 61, .05);

  --bg: #0B0B0A;
  --bg-alt: #0E0F0D;
  --bg-elev: #121311;
  --bg-elev-2: #171815;

  --fg: #EFEFEA;
  --fg-muted: #B9BBB1;
  --fg-dim: #85877E;
  --fg-dimmer: #6F7168;
  --fg-faint: #4E5049;

  --line: rgba(239, 239, 234, .12);
  --line-soft: rgba(239, 239, 234, .08);
  --line-strong: rgba(239, 239, 234, .22);

  --font: 'Archivo', 'Helvetica Neue', Helvetica, Arial, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --pad-x: clamp(18px, 3.2vw, 32px);
  --section-y: clamp(72px, 9vw, 120px);
  --shell: 1680px;

  --ease: cubic-bezier(.16, 1, .3, 1);
  --pill: 100px;

  /* Маркерные штрихи: неровные края, как от фломастера.
     Задаются маской, поэтому цвет остаётся управляемым через background. */
  --marker-fill: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 32' preserveAspectRatio='none'><path d='M1.2 2.6Q1.2 2.6 8.5 2.2Q15.9 1.8 23.2 2.9Q30.6 3.9 37.9 2.7Q45.3 1.5 52.6 2.5Q60.0 3.5 67.3 3.1Q74.7 2.7 82.0 2.1Q89.4 1.4 96.8 2.4Q104.1 3.3 111.4 2.3Q118.8 1.4 118.8 13.9Q118.8 26.4 111.4 27.2Q104.1 27.9 96.8 28.8Q89.4 29.8 82.0 30.0Q74.7 30.2 67.3 28.6Q60.0 27.0 52.6 27.9Q45.3 28.8 37.9 29.6Q30.6 30.4 23.2 30.4Q15.9 30.5 8.5 29.6Z' fill='%23000'/></svg>");
  --marker-line: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 9' preserveAspectRatio='none'><path d='M0.6 1.0Q0.6 1.0 6.5 1.7Q12.5 2.4 18.4 2.3Q24.4 2.3 30.3 2.0Q36.2 1.8 42.2 1.5Q48.1 1.2 54.1 1.9Q60.0 2.7 65.9 2.7Q71.9 2.7 77.8 2.3Q83.8 1.9 89.7 1.9Q95.6 1.9 101.6 1.6Q107.5 1.2 113.5 0.9Q119.4 0.6 119.4 3.8Q119.4 7.0 113.5 6.8Q107.5 6.5 101.6 6.6Q95.6 6.8 89.7 6.5Q83.8 6.2 77.8 7.3Q71.9 8.3 65.9 8.1Q60.0 7.9 54.1 7.9Q48.1 7.9 42.2 7.3Q36.2 6.7 30.3 7.5Q24.4 8.2 18.4 7.7Q12.5 7.1 6.5 7.3Z' fill='%23000'/></svg>");
  --header-h: 68px;
}

/* ---------- 2. Сброс и база ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4, p, figure, blockquote, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }

a {
  color: inherit;
  text-decoration: none;
  transition: color .25s ease, border-color .25s ease, background-color .25s ease, opacity .25s ease;
}

button { font: inherit; color: inherit; }

::selection { background: var(--accent); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 12px 18px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- 3. Утилиты и типографика ---------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: var(--section-y) var(--pad-x);
  background: var(--bg);
}
.section--alt { background: var(--bg-alt); }
.section--accent { background: var(--accent); color: var(--bg); }
.section--flush-top { padding-top: 0; }
.section--flush-bottom { padding-bottom: 0; }
.section--tall { min-height: 100svh; display: flex; flex-direction: column; justify-content: center; }

.bleed { margin-inline: calc(var(--pad-x) * -1); }

.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.mono--dim {
  letter-spacing: .14em;
  color: var(--fg-dimmer);
}

.eyebrow {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
}
.section--accent .eyebrow,
.split-accent .eyebrow { color: rgba(11, 11, 10, .6); }
.eyebrow--muted { color: var(--fg-dim); }

.br { color: var(--accent); font-weight: 400; }
.section--accent .br,
.split-accent .br { color: rgba(11, 11, 10, .5); }

/* Заголовки. Размеры сняты с макетов один-в-один, поэтому классы
   названы по роли, а не по «размеру» — так их не перепутать местами. */
.title-hero,
.title-case,
.title-section,
.title-product,
.title-panel,
.title-journal,
.title-block,
.title-task,
.title-more {
  margin: 0;
  font-weight: 800;
  text-transform: uppercase;
}

/* h1 главной */
.title-hero {
  margin-bottom: 6px;
  font-size: clamp(52px, 11.2vw, 196px);
  line-height: .86;
  letter-spacing: -.045em;
}

/* h1 кейса */
.title-case {
  font-size: clamp(64px, 16vw, 260px);
  line-height: .86;
  letter-spacing: -.05em;
}

/* «Портфель продуктов» */
.title-section {
  font-size: clamp(34px, 5vw, 78px);
  line-height: .95;
  letter-spacing: -.04em;
}

/* Sentinel, Arc Pay */
.title-product {
  font-size: clamp(40px, 5.6vw, 86px);
  line-height: .92;
  letter-spacing: -.045em;
}

/* Takt & Metrage — на акцентной панели кегль чуть меньше */
.title-panel {
  font-size: clamp(38px, 5vw, 78px);
  line-height: .92;
  letter-spacing: -.045em;
}

/* «Журнал» */
.title-journal {
  font-size: clamp(32px, 4.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

/* «Единый контур доступа», «Выдача прав за час» */
.title-block {
  font-size: clamp(32px, 4.4vw, 68px);
  line-height: .95;
  letter-spacing: -.045em;
}

/* «Разрозненный доступ в 12 системах» */
.title-task {
  font-size: clamp(30px, 3.6vw, 54px);
  line-height: 1;
  letter-spacing: -.04em;
}

/* «Другие проекты» */
.title-more {
  font-size: clamp(24px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.lead {
  font-size: 19px;
  line-height: 1.6;
  letter-spacing: -.01em;
  color: var(--fg-muted);
  text-wrap: pretty;
}
.section--accent .lead,
.split-accent .lead { color: rgba(11, 11, 10, .78); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: clamp(32px, 4vw, 56px);
}
.section-head__note {
  max-width: 380px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.9;
  letter-spacing: .06em;
  color: var(--fg-dim);
}

.dim { color: var(--fg-faint); }

/* ---------- 4. Кнопки ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  border: 1px solid transparent;
  border-radius: var(--pill);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -.01em;
  cursor: pointer;
  white-space: nowrap;
}
.btn__meta { font-family: var(--mono); font-weight: 500; font-size: 12px; letter-spacing: .04em; }

.btn--primary { background: var(--accent); color: var(--bg); }
.btn--primary:hover { background: #D7FF6B; color: var(--bg); }

.btn--ghost { border-color: rgba(239, 239, 234, .24); color: var(--fg); font-weight: 500; }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn--outline {
  border-color: var(--accent);
  color: var(--accent);
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 14px 22px;
}
.btn--outline:hover { background: var(--accent); color: var(--bg); }

.btn--dark {
  background: var(--bg);
  color: var(--accent);
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 14px 22px;
}
.btn--dark:hover { color: var(--fg); }

.btn--onaccent {
  border-color: rgba(11, 11, 10, .35);
  color: var(--bg);
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 14px 22px;
}
.btn--onaccent:hover { background: var(--bg); color: var(--accent); }

.btn--lg { padding: 18px 28px; font-size: 16px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}
.link-arrow:hover { color: var(--fg); }

/* ---------- 5. Медиа-слоты ---------- */
.media {
  position: relative;
  overflow: hidden;
  background: var(--bg-elev);
  border: 1px solid var(--line);
}
.media--accent { border-color: var(--accent-line); }
.media--framed {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  background: var(--bg);
}
.media--rounded { border-radius: 26px; }
.media--circle { border-radius: 50%; }
.media--fill { position: absolute; inset: 0; border: 0; }

.media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media--top > img { object-position: top center; }

/* Скриншот показываем целиком на тёмной подложке — кроп широкого
   интерфейса под узкую колонку съедает половину экрана. */
.media--contain > img { object-fit: contain; }

.media__ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-dimmer);
  background: repeating-linear-gradient(135deg, var(--bg-elev-2) 0 6px, var(--bg-elev) 6px 12px);
}
.media > img + .media__ph { display: none; }

.ratio-16-10 { aspect-ratio: 16 / 10; }

/* Широкий скриншот десктопного интерфейса: на телефоне показываем экран
   целиком, без кропа, иначе от интерфейса остаётся полоска. */
.shot-web { aspect-ratio: 16 / 9; }
.ratio-16-9 { aspect-ratio: 16 / 9; }
.ratio-9-16 { aspect-ratio: 9 / 16; }
.ratio-3-4 { aspect-ratio: 3 / 4; }

/* ---------- 6. Курсор и прогресс-бар ---------- */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99;
  opacity: 0;
  mix-blend-mode: difference;
  transition: width .25s ease, height .25s ease, margin .25s ease, background-color .25s ease, opacity .3s ease;
}
.cursor.is-active { opacity: 1; }
.cursor.is-magnet {
  width: 64px;
  height: 64px;
  margin: -32px 0 0 -32px;
  background: var(--accent);
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  z-index: 80;
}

/* ---------- 7. Шапка ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px var(--pad-x);
  background: linear-gradient(180deg, rgba(11, 11, 10, .92), rgba(11, 11, 10, .55) 70%, transparent);
  border-bottom: 1px solid var(--line-soft);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: padding .35s var(--ease), background-color .35s ease;
}
.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(11, 11, 10, .95);
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo__mark {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 20px;
  letter-spacing: -.05em;
}
.logo__br {
  font-weight: 400;
  color: var(--accent);
  transition: transform .3s var(--ease);
}
.logo__word { font-weight: 800; }
.logo__exp {
  align-self: flex-start;
  margin-top: -2px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--accent);
}
.logo:hover .logo__br--l { transform: translateX(-3px); }
.logo:hover .logo__br--r { transform: translateX(3px); }
.logo__tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.logo--back {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-muted);
  white-space: nowrap;
}
.logo--back:hover { color: var(--accent); }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.nav__links {
  display: contents;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--accent);
  border-radius: var(--pill);
  color: var(--accent);
}
.nav__cta:hover { background: var(--accent); color: var(--bg); }
.nav__cta:hover .nav__icon { fill: var(--bg); }
.nav__icon {
  width: 13px;
  height: 13px;
  fill: var(--accent);
  transition: fill .25s ease;
}

.burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  cursor: pointer;
}
.burger__lines { position: relative; display: block; width: 16px; height: 10px; }
.burger__lines::before,
.burger__lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--fg);
  transition: transform .3s var(--ease), top .3s var(--ease);
}
.burger__lines::before { top: 0; }
.burger__lines::after { top: 8.5px; }
.burger[aria-expanded="true"] .burger__lines::before { top: 4px; transform: rotate(45deg); }
.burger[aria-expanded="true"] .burger__lines::after { top: 4px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 96px var(--pad-x) 40px;
  background: var(--bg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .35s ease, transform .45s var(--ease), visibility .35s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(26px, 8vw, 40px);
  font-weight: 700;
  letter-spacing: -.03em;
  text-transform: uppercase;
}
.mobile-menu__foot {
  padding-top: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

/* ---------- 8. Первый экран ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header-h) + clamp(20px, 4vh, 52px)) var(--pad-x) 0;
  background: radial-gradient(120% 90% at 78% 8%, rgba(200, 255, 61, .13), transparent 58%), var(--bg);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero__blob {
  position: absolute;
  top: -12%;
  right: -6%;
  width: min(58vw, 860px);
  aspect-ratio: 1;
  filter: blur(48px);
  opacity: .62;
  will-change: transform;
}
.hero__blob span {
  position: absolute;
  display: block;
}
.hero__blob span:nth-child(1) {
  inset: 0;
  background: radial-gradient(closest-side, rgba(200, 255, 61, .5), rgba(200, 255, 61, 0) 72%);
  border-radius: 52% 48% 39% 61% / 44% 57% 43% 56%;
  animation: morph 16s ease-in-out infinite, drift 22s ease-in-out infinite;
}
.hero__blob span:nth-child(2) {
  inset: 14% 8% 6% 16%;
  background: radial-gradient(closest-side, rgba(120, 255, 214, .34), rgba(120, 255, 214, 0) 70%);
  border-radius: 61% 39% 55% 45% / 38% 62% 38% 62%;
  animation: morph 21s ease-in-out -6s infinite reverse, drift 28s ease-in-out -9s infinite reverse;
}
.hero__blob span:nth-child(3) {
  inset: 26% 30% 22% 4%;
  background: radial-gradient(closest-side, rgba(255, 255, 255, .18), rgba(255, 255, 255, 0) 68%);
  border-radius: 45% 55% 62% 38% / 58% 41% 59% 42%;
  animation: morph 13s ease-in-out -3s infinite;
}

.hero__top {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: clamp(20px, 3.5vh, 40px);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-dim);
  animation: fadein 1.2s .9s both;
}
.hero__pitch {
  max-width: 340px;
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: .06em;
  text-transform: none;
  color: var(--fg-muted);
}

.hero__line { display: block; overflow: hidden; padding-bottom: .04em; }
.hero__line > span { display: inline-block; animation: rise 1s var(--ease) both; }
.hero__line:nth-child(1) > span { animation-delay: .05s; }
.hero__line:nth-child(2) > span { animation-delay: .17s; }
.hero__line:nth-child(3) > span { animation-delay: .29s; }

.hero__swap {
  color: var(--accent);
  display: inline-flex;
  align-items: baseline;
}
.hero__swap .br { letter-spacing: .02em; }
.hero__word {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width .62s cubic-bezier(.62, .02, .34, 1);
}

.hero__actions {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: clamp(18px, 3vh, 28px) 0 clamp(20px, 3.4vh, 34px);
  animation: fadein 1.2s 1.05s both;
}

.hero__actions .btn { gap: 14px; }

.marquee {
  position: relative;
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(239, 239, 234, .1);
  border-bottom: 1px solid rgba(239, 239, 234, .1);
}
.marquee__track {
  display: flex;
  gap: 56px;
  width: max-content;
  align-items: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fg-dimmer);
  white-space: nowrap;
  animation: marquee 34s linear infinite;
}
.marquee__sep {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  height: 9px;
}
.marquee__sep i { display: block; width: 1px; height: 9px; background: var(--accent); }
.marquee__sep i:nth-child(2) { width: 4px; height: 4px; }

/* ---------- 9. Портфель ---------- */
.acc { border-top: 1px solid rgba(239, 239, 234, .14); }
.acc__item { border-bottom: 1px solid rgba(239, 239, 234, .14); }

.acc__trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 64px minmax(0, 1.5fr) minmax(0, 1fr) 92px 44px;
  align-items: center;
  gap: 20px;
  padding: 26px 8px;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  transition: background-color .3s ease;
}
.acc__trigger:hover { background: var(--accent-wash); }
.acc__n { font-family: var(--mono); font-size: 12px; color: var(--fg-dimmer); }
.acc__name {
  font-size: clamp(22px, 3.1vw, 42px);
  font-weight: 700;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.acc__domain { font-size: 15px; color: var(--fg-muted); letter-spacing: -.01em; }
.acc__year { font-family: var(--mono); font-size: 12px; color: var(--fg-dimmer); }
.acc__sign {
  justify-self: end;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: 16px;
  color: var(--accent);
  transition: transform .35s var(--ease), border-color .25s ease;
}
.acc__sign::before { content: "+"; }
.acc__trigger[aria-expanded="true"] .acc__sign { transform: rotate(45deg); border-color: var(--accent); }

.acc__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .55s var(--ease);
}
.acc__trigger[aria-expanded="true"] + .acc__panel { grid-template-rows: 1fr; }
.acc__panel > div { overflow: hidden; }

.acc__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(24px, 3.4vw, 48px);
  align-items: start;
  padding: 8px 8px 48px;
}
.acc__desc {
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.45;
  letter-spacing: -.02em;
  text-wrap: pretty;
  padding-bottom: 28px;
}

.tags { display: flex; flex-wrap: wrap; gap: 6px 18px; padding-bottom: 28px; }
.tags li {
  position: relative;
  isolation: isolate;
  padding: 4px 3px 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--fg-muted);
}
.tags li::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -2px;
  right: -2px;
  bottom: 0;
  height: 5px;
  background: rgba(200, 255, 61, .32);
  -webkit-mask: var(--marker-line) center / 100% 100% no-repeat;
  mask: var(--marker-line) center / 100% 100% no-repeat;
}

.facts {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.facts__v { font-size: 34px; font-weight: 700; letter-spacing: -.04em; color: var(--accent); }
.facts__k {
  padding-top: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.acc__case { margin-bottom: 28px; }

/* ---------- 10. Продуктовые блоки ---------- */
.duo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 4vw, 56px);
}
.duo--wide-left { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); }

.showcase { overflow: hidden; }
.showcase__index {
  position: absolute;
  top: -6vw;
  left: -1vw;
  font-size: 34vw;
  font-weight: 800;
  line-height: .8;
  letter-spacing: -.06em;
  color: rgba(239, 239, 234, .028);
  pointer-events: none;
  user-select: none;
}
.showcase__copy { position: relative; max-width: 540px; }
.showcase__copy .title-product { margin: 22px 0 20px; }
.showcase__meta {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--fg-dim);
}
.showcase__visual {
  position: relative;
  height: min(72vh, 680px);
}

.counter {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-dimmer);
  text-align: right;
}

.shots-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.shots-3 > *:nth-child(odd) { transform: translateY(28px); }

.split-accent {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  background: var(--accent);
  color: var(--bg);
  min-height: 100svh;
}
.split-accent__media {
  position: relative;
  min-height: 60svh;
  padding: clamp(20px, 3vw, 40px);
  background: var(--bg);
}
.split-accent__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: clamp(56px, 7vw, 96px) clamp(18px, 3.6vw, 48px);
}
.split-accent__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 10px;
}
.accent-note {
  max-width: 380px;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: .06em;
  color: rgba(11, 11, 10, .6);
}

.split-accent__note {
  max-width: 260px;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: .06em;
  color: rgba(11, 11, 10, .6);
}

/* Нумерованный список на акцентной панели */
.split-accent .problems { border-top-color: rgba(11, 11, 10, .22); }
.split-accent .problems li {
  border-bottom-color: rgba(11, 11, 10, .22);
  color: rgba(11, 11, 10, .78);
}
.split-accent .problems b { color: rgba(11, 11, 10, .5); }
.split-accent .problems strong { font-weight: 700; color: var(--bg); }

/* ---------- 11. Цифры ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--line);
}
.stat { background: var(--bg-alt); padding: clamp(32px, 4vw, 48px) clamp(20px, 2.4vw, 32px); }
.stat__v {
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1;
}
.stat__k {
  max-width: 220px;
  padding-top: 16px;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

/* ---------- 12. Журнал ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 56px;
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--bg-alt);
}
.card:hover { border-color: var(--accent); }
.card__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.card__title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.025em;
  text-wrap: pretty;
}

/* ---------- 13. Подвал ---------- */
.site-footer {
  position: relative;
  padding: var(--section-y) var(--pad-x) 40px;
  background: var(--bg);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.site-footer__inner { display: flex; flex-direction: column; gap: clamp(24px, 3vw, 36px); }
.title-footer {
  margin: 0;
  font-size: clamp(40px, 9vw, 150px);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.05em;
  text-transform: uppercase;
}
.title-footer--case { font-size: clamp(38px, 8vw, 132px); }

.contacts { display: flex; gap: 14px; flex-wrap: wrap; padding-top: 8px; }
.site-footer__bar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: clamp(56px, 8vw, 96px);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fg-dimmer);
}

/* ---------- 14. Страница кейса ---------- */
.case-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header-h) + 72px) var(--pad-x) 0;
  background: radial-gradient(110% 80% at 82% 12%, rgba(200, 255, 61, .12), transparent 58%), var(--bg);
  overflow: hidden;
}
.case-hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(239, 239, 234, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 239, 234, .045) 1px, transparent 1px);
  background-size: 88px 88px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, .9), transparent 85%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .9), transparent 85%);
}
.chips {
  position: relative;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding-bottom: 26px;
  animation: fadein 1s .7s both;
}
.chip {
  position: relative;
  isolation: isolate;
  padding: 7px 4px 9px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
/* Вторичный чип — подчёркнут маркером */
.chip::before {
  content: "";
  position: absolute;
  z-index: -1;
  transform: rotate(-.5deg);
  left: -3px;
  right: -3px;
  bottom: 2px;
  height: 6px;
  background: rgba(239, 239, 234, .3);
  -webkit-mask: var(--marker-line) center / 100% 100% no-repeat;
  mask: var(--marker-line) center / 100% 100% no-repeat;
}
/* Основной — закрашен маркером целиком */
.chip--accent {
  color: var(--bg);
  font-weight: 500;
  padding: 7px 12px 8px;
}
.chip--accent::before {
  inset: -2px -4px;
  transform: rotate(-.7deg);
  height: auto;
  background: var(--accent);
  -webkit-mask: var(--marker-fill) center / 100% 100% no-repeat;
  mask: var(--marker-fill) center / 100% 100% no-repeat;
}

.case-hero .title-case { position: relative; }
.case-hero__lead {
  position: relative;
  max-width: 640px;
  margin-top: 26px;
  font-size: clamp(17px, 1.7vw, 24px);
  line-height: 1.5;
  letter-spacing: -.015em;
  color: var(--fg-muted);
  text-wrap: pretty;
  animation: fadein 1s .9s both;
}
.meta-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(40px, 6vw, 64px);
  background: var(--line);
  animation: fadein 1s 1.05s both;
}
.meta-grid > div { background: var(--bg); padding: 26px clamp(18px, 3.2vw, 32px); }
.meta-grid dt {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg-dimmer);
}
.meta-grid dd { margin: 0; padding-top: 10px; font-size: 17px; letter-spacing: -.015em; }

.trio {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}
.trio__cell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  padding: 36px 30px;
  background: var(--bg-alt);
}
.trio__cell h3 { font-size: 24px; font-weight: 700; letter-spacing: -.03em; }
.trio__cell p { font-size: 16px; line-height: 1.6; color: var(--fg-muted); text-wrap: pretty; }
.trio__n { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; color: var(--fg-dimmer); }

.duo-case {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 4vw, 64px);
}
.problems { border-top: 1px solid var(--line); }
.problems li {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -.01em;
}
.problems b { font-family: var(--mono); font-size: 12px; font-weight: 500; color: var(--accent); padding-top: 3px; }

.shots-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.shots-4 > *:nth-child(even) { transform: translateY(24px); }

.results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(11, 11, 10, .18);
}
.result { background: var(--accent); padding: 40px 30px; }
.result__v { font-size: clamp(46px, 6vw, 88px); font-weight: 800; letter-spacing: -.05em; line-height: 1; }
.result__k {
  max-width: 230px;
  padding-top: 14px;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(11, 11, 10, .65);
}

.quote {
  font-size: clamp(22px, 2.6vw, 38px);
  line-height: 1.35;
  letter-spacing: -.03em;
  text-wrap: pretty;
}
.quote__by { display: flex; gap: 16px; align-items: center; padding-top: 32px; }
.quote__avatar { width: 52px; height: 52px; flex: none; }
.quote__who {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: .1em;
  color: var(--fg-dim);
}
.quote__who b { display: block; font-weight: 400; color: var(--fg); }

.rowlinks { border-bottom: 0; }
.rowlink {
  display: grid;
  grid-template-columns: 64px minmax(0, 1.4fr) minmax(0, 1fr) 44px;
  align-items: center;
  gap: 20px;
  padding: 24px 8px;
  border-bottom: 1px solid rgba(239, 239, 234, .14);
}
.rowlink:hover { background: var(--accent-wash); }
.rowlink__n { font-family: var(--mono); font-size: 12px; color: var(--fg-dimmer); }
.rowlink__t {
  font-size: clamp(20px, 2.6vw, 36px);
  font-weight: 700;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.rowlink__d { font-size: 15px; color: var(--fg-muted); }
.rowlink__arrow { justify-self: end; font-family: var(--mono); font-size: 16px; color: var(--accent); }

.head-line {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(239, 239, 234, .14);
}

/* ---------- 14.1 Блоки страницы продукта ---------- */

/* Сетка карточек: возможности, сценарии */
.cells {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1px;
  background: var(--line);
}
.cell {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 30px;
  background: var(--bg-alt);
}
.cell--dark { background: var(--bg); }
.cell__n {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--fg-dimmer);
}
.cell h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.2;
  text-wrap: balance;
}
.cell p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-muted);
  text-wrap: pretty;
}

/* Сравнение с классическим VPN */
.compare { border-top: 1px solid var(--line); }
.compare__row {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.compare__row--head {
  padding: 14px 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-dimmer);
}
.compare__row--head .compare__b { color: var(--accent); }
.compare__k { font-size: 15px; letter-spacing: -.01em; color: var(--fg-dim); }
.compare__a { font-size: 16px; line-height: 1.5; color: var(--fg-dimmer); }
.compare__b { font-size: 16px; line-height: 1.5; color: var(--fg); }

/* Шаги внедрения */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
}
.step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 28px;
  background: var(--bg);
}
.step__n {
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--accent);
}
.step h3 { font-size: 19px; font-weight: 700; letter-spacing: -.03em; }
.step p { font-size: 15px; line-height: 1.6; color: var(--fg-muted); text-wrap: pretty; }

/* Кнопки на обложке продукта */
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; padding-top: 34px; }

/* Список-перечисление через точку */
.dots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: .06em;
  color: var(--fg-muted);
}
.dots li { position: relative; padding-left: 16px; }
.dots li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 5px;
  height: 5px;
  background: var(--accent);
}

/* ---------- 14.2 Экраны в рамке айфона ---------- */
.phones {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 32px);
  align-items: start;
}
.phone-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  max-width: 320px;
  margin-inline: auto;
}
.phone-card:nth-child(odd) { transform: translateY(28px); }

/* Корпус: скругления заданы в процентах, поэтому рамка остаётся
   пропорциональной на любой ширине колонки. */
.phone {
  position: relative;
  aspect-ratio: 9 / 19.5;
  padding: 2.4%;
  border-radius: 13% / 6%;
  background: linear-gradient(155deg, #4A4D45 0%, #1B1C19 22%, #121310 60%, #3A3D36 100%);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, .55),
    inset 0 0 0 1px rgba(239, 239, 234, .16);
}
.phone--accent { box-shadow: 0 28px 60px rgba(0, 0, 0, .55), inset 0 0 0 1px var(--accent-line); }

.phone__screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 11% / 5%;
  background: var(--bg-elev);
}
.phone__screen > img + .media__ph { display: none; }

.phone__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.phone__label {
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.phone__label b { display: block; font-weight: 400; color: var(--fg); }

/* ---------- 14.3 Отрасли (на акцентном фоне) ---------- */
.branches {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(11, 11, 10, .22);
}
.branch {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px 26px;
  background: var(--accent);
}
.branch h3 {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  text-transform: uppercase;
  text-wrap: balance;
}
.branch p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(11, 11, 10, .76);
  text-wrap: pretty;
}

/* Последняя ячейка — намёк, что список длиннее */
.branch--more { justify-content: center; }
.branch--more p { color: rgba(11, 11, 10, .62); }


/* ---------- 15. Анимации ---------- */
@keyframes rise {
  from { transform: translateY(110%) rotate(2deg); opacity: 0; }
  to { transform: translateY(0) rotate(0); opacity: 1; }
}
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes blink { 0%, 60% { opacity: 1; } 61%, 100% { opacity: .15; } }
@keyframes tick {
  0% { transform: translateY(3px) scale(.7); opacity: .2; }
  22%, 100% { transform: none; opacity: 1; }
}
@keyframes morph {
  0%, 100% { border-radius: 52% 48% 39% 61% / 44% 57% 43% 56%; transform: rotate(0deg) scale(1); }
  33% { border-radius: 38% 62% 63% 37% / 61% 39% 61% 39%; transform: rotate(42deg) scale(1.08); }
  66% { border-radius: 63% 37% 44% 56% / 36% 64% 36% 64%; transform: rotate(-28deg) scale(.94); }
}
@keyframes drift {
  0%, 100% { translate: 0 0; }
  25% { translate: -5% 4%; }
  50% { translate: 4% -3%; }
  75% { translate: -2% -6%; }
}

.is-ticking { animation: tick 1s var(--ease) infinite; }
.is-blinking { animation: blink 2.4s steps(1, end) infinite; }

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .9s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
.no-js [data-reveal] { opacity: 1; transform: none; }

/* ---------- 16. Адаптив ---------- */
@media (max-width: 1100px) {
  .acc__trigger { grid-template-columns: 52px minmax(0, 1.4fr) minmax(0, 1fr) 78px 40px; gap: 14px; }
  .shots-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shots-4 > * { transform: none !important; }
}

@media (max-width: 960px) {
  :root { --header-h: 62px; }

  .compare__row { grid-template-columns: minmax(0, 1fr); gap: 6px; padding: 18px 0; }
  .compare__row--head { display: none; }
  .compare__k {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding-bottom: 4px;
  }
  .compare__a::before { content: "Обычно — "; color: var(--fg-faint); }
  .compare__b::before { content: "Giraffic — "; color: var(--accent); }

  .nav__links { display: none; }
  .burger { display: inline-flex; }

  .branches { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .duo,
  .duo--wide-left,
  .duo-case,
  .split-accent,
  .trio,
  .results { grid-template-columns: minmax(0, 1fr); }

  .split-accent { min-height: 0; }
  /* На узком экране панель прижимается к скриншоту, а не держит высоту экрана */
  .split-accent__media { min-height: 0; }
  .split-accent__media .media--fill {
    position: relative;
    aspect-ratio: 1680 / 896;
  }

  .showcase__visual { height: min(58vh, 520px); }
  .showcase__copy { max-width: none; }

  .acc__body { grid-template-columns: minmax(0, 1fr); }
  .acc__media { order: -1; }

  .meta-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trio__cell { min-height: 0; }
  .card { min-height: 220px; gap: 40px; }
  .counter { text-align: left; }
}

@media (max-width: 760px) {
  .logo__tag { display: none; }
  .logo--back { font-size: 10px; letter-spacing: .12em; }

  .hero { justify-content: flex-end; }
  .hero__pitch { max-width: none; }
  .title-hero { font-size: clamp(38px, 12vw, 72px); }
  .title-case { font-size: clamp(44px, 14vw, 88px); }
  .title-footer,
  .title-footer--case { font-size: clamp(34px, 12vw, 84px); }
  .nav__icon { width: 18px; height: 18px; }
  .showcase__index { font-size: 46vw; }

  .hero__actions { padding: 22px 0 26px; }
  .btn { padding: 14px 22px; font-size: 14px; }
  .btn--lg { padding: 16px 24px; font-size: 15px; }

  .acc__trigger {
    grid-template-columns: 34px minmax(0, 1fr) 30px;
    gap: 12px;
    row-gap: 4px;
    padding: 20px 0;
  }
  .acc__domain { grid-column: 2; grid-row: 2; font-size: 14px; }
  .acc__year { grid-column: 2; grid-row: 3; }
  .acc__sign { grid-column: 3; grid-row: 1; }
  .acc__body { padding: 8px 0 36px; }

  .shots-3 { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .shots-3 > * { transform: none !important; }

  .phones { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .phone-card { transform: none !important; }

  .branches { grid-template-columns: minmax(0, 1fr); }
  .branch { padding: 26px 22px; }

  .facts { gap: 28px; }
  .rowlink { grid-template-columns: 34px minmax(0, 1fr) 30px; row-gap: 2px; }
  .rowlink__d { grid-column: 2; grid-row: 2; font-size: 14px; }
  .rowlink__arrow { grid-column: 3; grid-row: 1; }

  .card { padding: 22px; }
  .shot-web { aspect-ratio: 3 / 2; }
  .cell { padding: 26px 22px; }
  .step { padding: 26px 22px; }
  .contacts .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .meta-grid { grid-template-columns: minmax(0, 1fr); }
  .hero__top { font-size: 10px; }
}

@media (hover: none) {
  .cursor { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .acc__panel { transition: none; }
}

@media print {
  .site-header, .cursor, .progress, .mobile-menu, .hero__bg { display: none !important; }
  body { background: #fff; color: #000; }
}
