/* ============================================================================
   sections.css — блоки страницы сверху вниз
   ========================================================================== */

@layer components {
  /* Надзаголовок — встречается в половине секций, поэтому компонент */
  .eyebrow {
    margin: 0;
    font: 400 var(--fs-label) / 1 var(--font-mono);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #6e6e6e;
  }

  .eyebrow--strong {
    color: #3a4a20;
  }

  .eyebrow--on-dark {
    color: rgb(255 255 255 / 0.5);
  }

  .dot {
    display: block;
    flex: none;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgb(203 251 85 / 0.35);
  }
}

@layer sections {
  /* ====================================================== 02 · Первый экран */
  .hero {
    margin-top: calc(-84px);
    padding: var(--frame);
    background: var(--bg);
  }

  .hero__frame {
    position: relative;
    /* Свой контекст наложения: иначе слой видео с z-index:-1 уезжает
       под собственный фон рамки и его не видно */
    isolation: isolate;
    display: flex;
    flex-direction: column;
    min-height: calc(100svh - 2 * var(--frame));
    overflow: hidden;
    border-radius: var(--r-hero);
    background: var(--sky);
    box-shadow: var(--shadow-hero);
  }

  .hero__inner {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    gap: clamp(16px, 3vh, 44px);
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding: clamp(76px, 9vh, 104px) var(--gutter) clamp(12px, 1.8vw, 26px);
  }

  .hero__badge {
    display: flex;
    align-items: center;
    gap: 12px;
    font: 400 var(--fs-small) / 1.4 var(--font-mono);
    letter-spacing: 0.05em;
    color: var(--ink-on-sky-muted);
  }

  .hero__title {
    position: relative;
    z-index: 1;
    margin-top: clamp(14px, 2.4vh, 34px);
    font: 400 var(--fs-h1) / 1 var(--font-display);
    letter-spacing: normal;
    text-wrap: nowrap;
  }

  .hero__mid {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: clamp(24px, 4vw, 56px);
    margin-top: clamp(12px, 1.6vw, 24px);
  }

  .hero__pitch {
    flex: 0 1 460px;
    min-width: 260px;
  }

  .hero__kicker {
    font: 400 clamp(17px, 1.5vw, 20px) / 1.4 var(--font-sans);
  }

  .hero__text {
    max-width: 430px;
    margin-top: 8px;
    font: 400 var(--fs-body) / 1.5 var(--font-sans);
    color: var(--ink-on-sky);
  }

  .hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: clamp(18px, 2.2vw, 28px);
  }

  .hero__note {
    margin-top: 10px;
    font: 400 var(--fs-caption) / 1.45 var(--font-sans);
    color: var(--ink-on-sky);
  }

  .hero__script {
    flex: 0 1 auto;
    text-align: right;
    font: 400 var(--fs-script) / 1 var(--font-script);
    color: #1a1a1a;
    text-wrap: nowrap;
  }

  .hero__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 16px;
    margin-top: auto;
  }

  .hero__stat {
    min-height: 150px;
  }

  .hero__stat-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 22px 22px 0;
  }

  .hero__stat-foot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding: 24px 22px 22px;
  }

  .hero__stat--dark .chip {
    background: rgb(255 255 255 / 0.1);
    color: rgb(255 255 255 / 0.74);
  }

  /* Узкий экран: заголовок и каллиграфия перестают быть в одну строку */
  @media (width < 700px) {
    .hero__title,
    .hero__script {
      text-wrap: balance;
    }

    .hero__script {
      text-align: left;
    }
  }

  /* ========================================================== 03 · Для кого */
  .who__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
    gap: 16px;
    margin-top: clamp(36px, 4.5vw, 64px);
  }

  .who__card {
    overflow: hidden;
    border: 0;
  }

  .who__card:hover {
    box-shadow: 0 20px 44px rgb(0 0 0 / 0.11);
  }

  .who__head {
    position: relative;
    padding: 26px;
  }

  .who__head--dark {
    background: var(--ink);
    color: #fff;
  }

  .who__head--soft {
    background: var(--accent-soft);
  }

  .who__head--sky {
    background:
      image-set(
        url("../assets/img/sky-panel-960.avif") type("image/avif"),
        url("../assets/img/sky-panel-960.webp") type("image/webp")
      )
      center / cover no-repeat;
  }

  .who__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font: 400 var(--fs-label) / 1 var(--font-mono);
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }

  .who__meta svg {
    width: 20px;
    height: 20px;
  }

  .who__head--dark .who__meta {
    color: rgb(255 255 255 / 0.55);
  }

  .who__head--dark .who__meta svg {
    color: var(--accent);
  }

  .who__head--soft .who__meta {
    color: #3a4a20;
  }

  .who__head--soft .who__meta svg {
    color: #5a7a1e;
  }

  .who__head--sky .who__meta,
  .who__head--sky .who__meta svg {
    color: var(--ink-on-sky-muted);
  }

  .who__title {
    margin: 18px 0 20px;
    font: 400 clamp(21px, 1.9vw, 25px) / 1.28 var(--font-sans);
    letter-spacing: -0.015em;
  }

  .who__quote {
    margin: 0;
    padding: 20px;
    border-radius: 16px;
    font: italic 400 14px / 1.6 var(--font-sans);
  }

  .who__head--dark .who__quote {
    border: 1px solid var(--line-on-dark);
    background: rgb(255 255 255 / 0.08);
    color: rgb(255 255 255 / 0.8);
  }

  .who__head--soft .who__quote {
    background: rgb(255 255 255 / 0.75);
    color: #2a3018;
  }

  .who__quote--glass {
    border: 1px solid rgb(255 255 255 / 0.6);
    background: rgb(255 255 255 / 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #20272e;
  }

  .who__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 26px;
  }

  .who__body .eyebrow {
    margin-bottom: 8px;
  }

  /* Настоящие чекбоксы: посетитель отмечает то, что узнал про себя.
     Галочка держится на :checked, а не на :hover — ховер только подсказывает,
     что элемент кликабельный, и на тач-экранах его вообще нет */
  .symptoms__item {
    border-bottom: 1px solid rgb(0 0 0 / 0.09);
    font: 400 14px / 1.45 var(--font-sans);
    color: var(--ink-body);
  }

  .symptoms__label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 11px 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .symptoms__input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }

  .symptoms__box {
    display: grid;
    place-items: center;
    flex: none;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    border: 1px solid rgb(0 0 0 / 0.2);
    border-radius: 6px;
    transition:
      background var(--dur-fast) ease,
      border-color var(--dur-fast) ease,
      scale var(--dur-fast) var(--ease);
  }

  .symptoms__box::after {
    content: "✓";
    font-size: 12px;
    line-height: 1;
    opacity: 0;
    transition: opacity var(--dur-fast) ease;
  }

  /* Подсказка при наведении — бледная, чтобы её нельзя было спутать с отметкой */
  @media (hover: hover) {
    .symptoms__label:hover .symptoms__box {
      border-color: var(--ink);
      background: var(--accent-soft);
    }

    .symptoms__label:hover .symptoms__box::after {
      opacity: 0.35;
    }
  }

  .symptoms__input:checked + .symptoms__box,
  .symptoms__label:hover .symptoms__input:checked + .symptoms__box {
    border-color: var(--ink);
    background: var(--accent);
  }

  .symptoms__input:checked + .symptoms__box::after {
    opacity: 1;
  }

  .symptoms__input:active + .symptoms__box {
    scale: 0.9;
  }

  /* Клавиатурный фокус виден на самой рамке чекбокса */
  .symptoms__input:focus-visible + .symptoms__box {
    outline: 2px solid var(--accent-deep);
    outline-offset: 2px;
  }

  .symptoms {
    margin-bottom: 22px;
  }

  /* Лаймовая плашка прижата к низу карточки — карточки в ряду выравниваются */
  .who__result {
    margin-top: auto;
    padding: 18px 20px;
    border-radius: 16px;
    background: var(--accent-soft);
    font: 400 14px / 1.55 var(--font-sans);
    color: var(--ink);
  }

  .who__result .eyebrow {
    margin-bottom: 8px;
  }

  .who__cta {
    justify-content: space-between;
    width: 100%;
    margin-top: 18px;
  }

  .who__also {
    margin-top: clamp(28px, 3vw, 40px);
    font: 400 var(--fs-caption) / 1.6 var(--font-sans);
    color: var(--ink-muted);
  }

  /* Полоса из трёх цифр со ссылками на источники */
  .facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: clamp(20px, 2.6vw, 40px);
    margin-top: clamp(36px, 4.5vw, 64px);
    padding-top: clamp(28px, 3vw, 40px);
    border-top: 1px solid var(--line);
  }

  .facts__value {
    font: 300 clamp(40px, 5vw, 68px) / 1 var(--font-sans);
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
  }

  .facts__text {
    margin-top: 10px;
    font: 400 var(--fs-caption) / 1.6 var(--font-sans);
    color: var(--ink-muted);
  }

  /* Надстрочная ссылка на сноску: кликабельна, но не ломает строку */
  .facts__ref {
    margin-left: 2px;
    font-size: 0.75em;
    vertical-align: super;
    line-height: 0;
    color: var(--accent-deep);
    text-decoration: none;
  }

  .facts__ref:hover {
    text-decoration: underline;
  }

  .footnotes {
    margin-top: clamp(20px, 2.4vw, 28px);
    padding-left: 1.4em;
    display: grid;
    gap: 6px;
    list-style: decimal;
    font: 400 var(--fs-label) / 1.55 var(--font-sans);
    color: var(--ink-muted);
  }

  .footnotes a {
    color: var(--ink-muted);
  }

  .footnotes li::marker {
    color: var(--accent-deep);
  }

  /* ============================================================ 04 · Метод */
  .proof__head {
    max-width: 880px;
  }

  .proof__head .section-title {
    max-width: 22ch;
  }

  .proof__head .section-lead {
    margin-top: 18px;
  }

  .proof__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
    gap: 16px;
    margin-top: clamp(36px, 4.5vw, 64px);
  }

  .proof__card {
    gap: 14px;
    padding: clamp(24px, 2.6vw, 34px);
    border-color: rgb(255 255 255 / 0.6);
    background: rgb(255 255 255 / 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .proof__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font: 400 var(--fs-label) / 1 var(--font-mono);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--ink-faint);
  }

  .proof__title {
    font: 400 clamp(26px, 2.6vw, 36px) / 1.1 var(--font-display);
    letter-spacing: -0.02em;
  }

  /* Заголовок яруса: меньше, чем section-title, но крупнее карточек */
  .proof__tier {
    margin-top: clamp(44px, 5vw, 72px);
    font: 400 clamp(24px, 2.4vw, 34px) / 1.15 var(--font-display);
    letter-spacing: -0.02em;
    color: var(--ink-on-sky);
  }

  .proof__claim {
    margin-top: clamp(28px, 3vw, 40px);
    padding: clamp(24px, 2.8vw, 36px);
    border-radius: var(--r-card);
    background: rgb(255 255 255 / 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .proof__claim-title {
    max-width: 30ch;
    font: 400 clamp(22px, 2.2vw, 30px) / 1.25 var(--font-display);
    letter-spacing: -0.02em;
  }

  .proof__claim-title em {
    font-style: normal;
    background: linear-gradient(transparent 62%, var(--accent) 62%);
  }

  .proof__claim-text {
    margin-top: 12px;
    font: 400 var(--fs-body) / 1.6 var(--font-sans);
    color: var(--ink-muted);
  }

  /* Ярус «что вырезать»: текст и три шага рядом */
  .subtract {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
    gap: clamp(20px, 2.6vw, 40px);
    margin-top: clamp(28px, 3.2vw, 44px);
    padding: clamp(24px, 2.8vw, 36px);
    border-radius: var(--r-card);
    background: rgb(255 255 255 / 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .subtract__text {
    display: grid;
    gap: 14px;
    font: 400 var(--fs-body) / 1.65 var(--font-sans);
    color: var(--ink-body);
  }

  .subtract__steps {
    display: grid;
    align-content: start;
    gap: 14px;
    list-style: none;
  }

  .subtract__steps li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
    font: 400 var(--fs-caption) / 1.55 var(--font-sans);
  }

  .subtract__steps li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .subtract__num {
    font: 400 var(--fs-label) / 1.5 var(--font-mono);
    color: var(--accent-deep);
  }

  /* Шесть задач: та же сетка, что у карточек, но плотнее */
  .tasks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 16px;
    margin-top: clamp(28px, 3.2vw, 44px);
  }

  .tasks__card {
    gap: 12px;
    padding: clamp(22px, 2.4vw, 30px);
    border-color: rgb(255 255 255 / 0.6);
    background: rgb(255 255 255 / 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .tasks__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--ink-faint);
  }

  .tasks__meta svg {
    width: 20px;
    height: 20px;
  }

  .tasks__title {
    font: 400 clamp(19px, 1.9vw, 24px) / 1.2 var(--font-display);
    letter-spacing: -0.015em;
  }

  /* Второй абзац — «как решаем», отделяем линией, а не отступом */
  .tasks__how {
    margin-top: 2px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }

  .proof__facts {
    margin-top: clamp(28px, 3vw, 40px);
    padding: 18px 22px;
    border-radius: var(--r-pill);
    background: rgb(255 255 255 / 0.7);
    font: 400 var(--fs-small) / 1.6 var(--font-sans);
    color: var(--ink-on-sky);
    text-align: center;
  }

  /* ============================================================= 05 · Цикл */
  .cycle__head .section-title {
    flex: 1 1 520px;
  }

  .cycle__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    margin-top: clamp(36px, 4.5vw, 64px);
    border-top: 1px solid var(--line-on-dark);
  }

  .cycle__step {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: clamp(24px, 2.4vw, 32px) clamp(18px, 2vw, 28px);
    border-right: 1px solid var(--line-on-dark);
  }

  .cycle__step:first-child {
    border-left: 1px solid var(--line-on-dark);
  }

  .cycle__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .cycle__num {
    font: 400 clamp(24px, 2.2vw, 30px) / 1 var(--font-display);
    color: rgb(255 255 255 / 0.32);
  }

  .cycle__title {
    font: 400 var(--fs-h4) / 1.3 var(--font-sans);
    letter-spacing: -0.01em;
  }

  .cycle__step .chip-row {
    margin-top: auto;
    padding-top: 8px;
  }

  .cycle__note {
    margin-top: clamp(24px, 3vw, 36px);
    max-width: 62ch;
    font: 400 var(--fs-body) / 1.6 var(--font-sans);
    color: rgb(255 255 255 / 0.66);
  }

  .cycle__subtitle {
    margin-top: clamp(52px, 6vw, 86px);
    max-width: 20ch;
  }

  .cycle__disclaim {
    font: 400 var(--fs-body) / 1.6 var(--font-sans);
    color: rgb(255 255 255 / 0.66);
  }

  .cycle__split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
    gap: 16px;
    margin-top: clamp(32px, 4vw, 56px);
  }

  .cycle__col {
    padding: clamp(24px, 2.4vw, 32px);
    border: 1px solid var(--line-on-dark);
    border-radius: var(--r-lg);
    background: var(--ink-2);
  }

  .cycle__col .eyebrow {
    margin-bottom: 18px;
  }

  .cycle__claim {
    margin-top: clamp(32px, 4vw, 56px);
    padding-top: clamp(28px, 3vw, 40px);
    border-top: 1px solid var(--line-on-dark);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
    gap: clamp(24px, 4vw, 56px);
    align-items: start;
  }

  .cycle__claim-title {
    font: 400 clamp(24px, 2.6vw, 38px) / 1.2 var(--font-display);
    letter-spacing: -0.02em;
  }

  .cycle__claim-title em {
    color: var(--accent);
  }

  .cycle__claim-text {
    font: 400 var(--fs-lead) / 1.6 var(--font-sans);
    color: rgb(255 255 255 / 0.62);
  }

  /* ====================================================== 06 · ТЗ не нужно */
  .entries__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: clamp(24px, 4vw, 48px);
  }

  .entries__head .section-title {
    flex: 1 1 560px;
    max-width: 24ch;
  }

  .entries__head .section-lead {
    flex: 0 1 320px;
  }

  .entries__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: 16px;
    margin-top: clamp(36px, 4.5vw, 64px);
  }

  .entries__card {
    gap: 12px;
    padding: clamp(22px, 2.2vw, 28px);
    border-radius: var(--r-lg);
  }

  .entries__num {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--accent-soft);
    font: 400 var(--fs-small) / 1 var(--font-mono);
    color: #3a4a20;
  }

  .entries__card--dark .entries__num {
    background: var(--accent);
    color: var(--ink);
  }

  .entries__title {
    font: 400 var(--fs-h4) / 1.3 var(--font-sans);
    letter-spacing: -0.01em;
  }

  /* ============================================================ 07 · Кейсы */
  .entries__cta {
    margin-top: clamp(28px, 3vw, 40px);
    text-align: center;
  }

  .cases__lead {
    margin-top: 12px;
  }

  .cases__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
    gap: 16px;
    margin-top: clamp(36px, 4.5vw, 64px);
  }

  .case {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--r-lg);
    background: var(--sky);
    transform-style: preserve-3d;
    transition:
      transform var(--dur) ease,
      box-shadow var(--dur) ease;
  }

  .case:hover {
    color: inherit;
    box-shadow: 0 26px 56px rgb(0 0 0 / 0.16);
  }

  /* Без наведения плитка просто приподнимается; наклон добавляет скрипт */
  @media (hover: hover) {
    .case:hover {
      translate: 0 -3px;
    }
  }

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

  .case__top {
    position: absolute;
    inset: clamp(16px, 2vw, 26px) clamp(16px, 2vw, 26px) auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .case__year {
    font: 400 var(--fs-small) / 1 var(--font-mono);
    color: rgb(255 255 255 / 0.9);
    text-shadow: 0 1px 6px rgb(0 0 0 / 0.3);
  }

  .case__tag {
    height: 26px;
    padding-inline: 10px;
    border: 1px solid rgb(255 255 255 / 0.4);
    background: rgb(255 255 255 / 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-size: 11px;
  }

  /* Крупная буква по центру — уходит при наведении */
  .case__mark {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 10px;
    font: 400 clamp(64px, 8vw, 104px) / 1 var(--font-display);
    color: rgb(255 255 255 / 0.9);
    text-shadow: 0 2px 18px rgb(0 0 0 / 0.25);
    transition:
      opacity var(--dur) ease,
      scale var(--dur) ease;
  }

  .case__mark--slot {
    font: 400 var(--fs-label) / 1.4 var(--font-mono);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
  }

  .case__mark--slot svg {
    width: 26px;
    height: 26px;
    margin-inline: auto;
  }

  .case:hover .case__mark {
    opacity: 0;
    scale: 0.92;
  }

  .case__reveal {
    position: absolute;
    inset: auto 0 0;
    display: grid;
    gap: 10px;
    justify-items: start;
    padding: clamp(20px, 2.4vw, 30px);
    background: linear-gradient(to top, rgb(0 0 0 / 0.72), rgb(0 0 0 / 0));
    color: #fff;
    opacity: 0;
    translate: 0 12px;
    transition:
      opacity var(--dur) ease,
      translate var(--dur) ease;
  }

  .case:hover .case__reveal,
  .case:focus-visible .case__reveal {
    opacity: 1;
    translate: 0 0;
  }

  .case__arrow {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--ink);
  }

  .case__arrow svg {
    width: 18px;
    height: 18px;
  }

  .case__name {
    font: 400 clamp(22px, 2.2vw, 30px) / 1.1 var(--font-sans);
    letter-spacing: -0.02em;
  }

  .case__line {
    max-width: 46ch;
    font: 400 14px / 1.5 var(--font-sans);
    color: rgb(255 255 255 / 0.82);
  }

  .case__line b {
    font-weight: 400;
    color: rgb(255 255 255 / 0.58);
  }

  .cases__failed {
    margin-top: clamp(28px, 3vw, 40px);
    padding: clamp(22px, 2.4vw, 30px);
    border: 1px dashed var(--line);
    border-radius: var(--r-card);
  }

  .cases__failed-title {
    margin-bottom: 10px;
    font: 400 clamp(20px, 2vw, 26px) / 1.2 var(--font-display);
  }

  /* Тач: ховера не будет никогда, поэтому подпись показываем сразу,
     а крупную букву убираем — иначе она перекрывает текст */
  @media (hover: none) {
    .case__reveal {
      opacity: 1;
      translate: 0 0;
    }

    .case__mark {
      opacity: 0;
    }

    .case__mark--slot {
      opacity: 1;
      inset-block-end: auto;
      height: 50%;
    }
  }

  .cases__foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: clamp(24px, 3vw, 36px);
    padding-top: clamp(18px, 2vw, 24px);
    border-top: 1px solid var(--line);
    font: 400 var(--fs-caption) / 1.5 var(--font-sans);
    color: var(--ink-muted);
  }

  .cases__all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
  }

  .cases__all svg {
    width: 16px;
    height: 16px;
  }

  /* ======================================================= 08 · Кто делает */
  .team__title {
    margin-top: 14px;
    max-width: 26ch;
  }

  .team__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.6fr);
    gap: 16px;
    margin-top: clamp(36px, 4.5vw, 64px);
  }

  @media (width < 900px) {
    .team__grid {
      grid-template-columns: minmax(0, 1fr);
    }
  }

  .team__portrait {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: var(--r-lg);
    background: var(--ink-2);
  }

  .team__portrait img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    object-position: top center;
  }

  .team__plate {
    position: absolute;
    inset: auto 16px 16px;
    display: grid;
    gap: 2px;
    padding: 16px 20px;
    border: 1px solid rgb(255 255 255 / 0.6);
    border-radius: var(--r-md);
    background: rgb(255 255 255 / 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: var(--ink);
  }

  .team__name {
    font: 400 var(--fs-h4) / 1.2 var(--font-sans);
    letter-spacing: -0.01em;
  }

  .team__role {
    font: 400 var(--fs-caption) / 1 var(--font-sans);
    color: var(--ink-muted);
  }

  .team__side {
    display: grid;
    gap: 16px;
    align-content: start;
  }

  .team__facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: 16px;
  }

  .team__fact {
    display: grid;
    gap: 14px;
    align-content: start;
    padding: clamp(20px, 2.2vw, 28px);
    border: 1px solid var(--line-on-dark);
    border-radius: var(--r-lg);
    background: var(--ink-2);
    font: 400 14px / 1.55 var(--font-sans);
    color: rgb(255 255 255 / 0.72);
  }

  .team__bio {
    display: grid;
    gap: 14px;
    font: 400 var(--fs-body) / 1.65 var(--font-sans);
    color: rgb(255 255 255 / 0.78);
  }

  .team__quote {
    margin: 0;
    padding: clamp(26px, 3vw, 40px);
    border-radius: var(--r-lg);
    background: var(--accent);
    color: var(--ink);
    font: italic 400 clamp(17px, 1.7vw, 23px) / 1.45 var(--font-display);
  }

  .team__shots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
    gap: 16px;
    margin-top: 16px;
  }

  .team__shot {
    overflow: hidden;
    border: 1px solid var(--line-on-dark);
    border-radius: var(--r-md);
    background: var(--ink-2);
  }

  .team__shot img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .team__shot-cap {
    display: block;
    padding: 14px 18px;
    font: 400 var(--fs-caption) / 1.4 var(--font-sans);
    color: rgb(255 255 255 / 0.6);
  }

  .team__note {
    margin-top: clamp(24px, 3vw, 36px);
    font-size: var(--fs-caption);
    line-height: 1.6;
  }

  /* ===================================================== 09 · Почему быстро */
  .speed__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
    gap: 16px;
    margin-top: clamp(36px, 4.5vw, 64px);
    align-items: start;
  }

  .speed__list {
    display: grid;
    gap: 16px;
  }

  .speed__card {
    gap: 10px;
    padding: clamp(22px, 2.2vw, 30px);
  }

  .speed__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .speed__meta svg {
    width: 20px;
    height: 20px;
    color: var(--accent-deep);
  }

  .speed__title {
    font: 400 var(--fs-h4) / 1.3 var(--font-sans);
    letter-spacing: -0.01em;
  }

  .speed__hero {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
    padding: clamp(26px, 3vw, 40px);
  }

  .speed__meta--hero svg {
    width: 24px;
    height: 24px;
    color: var(--ink);
  }

  .speed__chip {
    background: var(--ink);
    color: #fff;
  }

  .speed__hero-title {
    font: 400 clamp(28px, 3vw, 44px) / 1.1 var(--font-display);
    letter-spacing: -0.025em;
  }

  .speed__hero-text {
    font: 400 var(--fs-lead) / 1.6 var(--font-sans);
    color: #2a3018;
  }

  .speed__hero-text--foot {
    margin-top: auto;
    padding-top: 12px;
  }

  /* --- таблица сравнения --------------------------------------------------- */
  .compare {
    margin-top: 16px;
    padding: clamp(18px, 2vw, 26px);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: var(--card);
    box-shadow: var(--shadow-card);
  }

  .compare__scroll {
    overflow-x: auto;
    overscroll-behavior-x: contain;
  }

  .compare__table {
    width: 100%;
    min-width: 640px;
    font: 400 14px / 1.5 var(--font-sans);
    text-align: left;
  }

  .compare__table th,
  .compare__table td {
    padding: 14px 18px;
    vertical-align: top;
    font-weight: 400;
  }

  .compare__table thead th {
    font: 400 var(--fs-label) / 1 var(--font-mono);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ink-faint);
  }

  .compare__table tbody th {
    width: 26%;
    color: var(--ink);
  }

  .compare__table tbody td:first-of-type {
    color: var(--ink-muted);
  }

  .compare__table tbody tr + tr th,
  .compare__table tbody tr + tr td {
    border-top: 1px solid var(--line);
  }

  /* Правый столбец заливается лаймом построчно при появлении */
  .compare__table thead th:last-child,
  .compare__table tbody td:last-child {
    background-image: linear-gradient(var(--accent-soft), var(--accent-soft));
    background-repeat: no-repeat;
    background-size: var(--fill, 0%) 100%;
    transition: background-size 0.6s var(--ease);
  }

  .compare__table tbody tr.is-filled td:last-child,
  .compare__table.is-filled thead th:last-child {
    --fill: 100%;
  }

  .compare__note {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    font: 400 var(--fs-caption) / 1.6 var(--font-sans);
    color: var(--ink-muted);
  }

  .compare__note svg {
    flex: none;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: var(--accent-deep);
  }

  /* ===================================================== 10 · Что получите */
  .gains {
    position: relative;
    margin-top: var(--section-gap);
  }

  .gains__stage {
    position: sticky;
    top: 0;
    z-index: 0;
    display: grid;
    place-items: center;
    height: 100svh;
  }

  /* Фон растёт при скролле от 40vw × 48vh до полного экрана */
  .gains__img {
    width: 40vw;
    height: 48svh;
    overflow: hidden;
    border-radius: var(--r-lg);
    background:
      image-set(
        url("../assets/img/gains-bg-1344.avif") type("image/avif"),
        url("../assets/img/gains-bg-1344.webp") type("image/webp")
      )
      center / cover no-repeat;
    box-shadow: 0 20px 50px rgb(30 50 20 / 0.12);
    will-change: width, height;
  }

  @supports (animation-timeline: view()) {
    .gains__img {
      animation: gains-grow linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 45%;
    }
  }

  @keyframes gains-grow {
    to {
      width: 100vw;
      height: 100svh;
      border-radius: 0;
      box-shadow: 0 20px 50px rgb(30 50 20 / 0);
    }
  }

  .gains__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(24px, 4vw, 56px);
    margin-top: -100svh;
    padding-block: clamp(60px, 8vh, 110px) var(--section-gap);
  }

  @media (width < 900px) {
    .gains__content {
      grid-template-columns: minmax(0, 1fr);
    }
  }

  .gains__side {
    position: sticky;
    top: clamp(90px, 12vh, 130px);
    align-self: start;
    display: grid;
    gap: 16px;
    height: fit-content;
  }

  @media (width < 900px) {
    .gains__side {
      position: static;
    }
  }

  .gains__pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 9px 16px 9px 13px;
    border: 1px solid rgb(255 255 255 / 0.6);
    border-radius: var(--r-pill);
    background: rgb(255 255 255 / 0.8);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    font: 400 var(--fs-caption) / 1 var(--font-sans);
  }

  .gains__list {
    display: grid;
    gap: 16px;
  }

  .gains__item {
    gap: 12px;
    padding: clamp(22px, 2.4vw, 32px);
    border-color: rgb(255 255 255 / 0.7);
    background: rgb(255 255 255 / 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .gains__item--wide {
    flex-direction: row;
    align-items: flex-start;
    gap: 18px;
  }

  .gains__body {
    display: grid;
    gap: 10px;
    flex: 1;
  }

  .gains__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
  }

  .gains__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .gains__num {
    font: 400 var(--fs-small) / 1 var(--font-mono);
    color: var(--ink-faint);
  }

  .gains__instead {
    font: italic 400 var(--fs-caption) / 1.5 var(--font-sans);
    color: var(--ink-faint);
  }

  /* ==================================================== 11 · Альтернативы */
  .alts__list {
    margin-top: clamp(36px, 4.5vw, 64px);
  }

  /* ========================================================= 12 · Границы */
  .limits__head {
    text-align: center;
  }

  .limits__head .section-title {
    max-width: 21ch;
    margin-inline: auto;
  }

  .limits__lead {
    max-width: 52ch;
    margin-inline: auto;
    margin-top: 16px;
  }

  .limits__grid {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 16px;
    margin-top: clamp(36px, 4.5vw, 64px);
  }

  .limits__panel {
    position: relative;
    flex: 1 1 440px;
    min-width: min(100%, 290px);
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: clamp(26px, 3vw, 38px);
    overflow: hidden;
    border-radius: var(--r-lg);
    background:
      image-set(
        url("../assets/img/limits-bg-880.avif") type("image/avif"),
        url("../assets/img/limits-bg-880.webp") type("image/webp")
      )
      center / cover no-repeat;
    color: #fff;
    min-height: clamp(430px, 46vw, 600px);
  }

  /* Затемнение под текстом: без него контраст на снимке не проходит */
  .limits__panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(10 10 10 / 0.78), rgb(10 10 10 / 0.15));
  }

  .limits__panel > * {
    position: relative;
  }

  .limits__panel-label {
    margin: 0;
    width: fit-content;
    padding: 6px 12px;
    border-radius: var(--r-pill);
    background: rgb(255 255 255 / 0.9);
    font: 400 var(--fs-label) / 1 var(--font-mono);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ink);
  }

  .limits__panel-title {
    margin-top: auto;
    font: 400 clamp(26px, 2.8vw, 38px) / 1.15 var(--font-sans);
    letter-spacing: -0.02em;
  }

  .limits__panel-text {
    max-width: 44ch;
    font: 400 14px / 1.6 var(--font-sans);
    color: rgb(255 255 255 / 0.78);
  }

  .limits__cta {
    align-self: flex-start;
    margin-top: 6px;
    background: #fff;
    color: var(--ink);
  }

  .limits__cta:hover {
    background: var(--accent);
    color: var(--ink);
  }

  .limits__cards {
    flex: 1 1 440px;
    min-width: min(100%, 290px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  @media (width < 520px) {
    .limits__cards {
      grid-template-columns: minmax(0, 1fr);
    }
  }

  .limits__card {
    gap: 12px;
    padding: clamp(20px, 2.2vw, 28px);
  }

  .limits__num {
    font: 400 clamp(22px, 2vw, 28px) / 1 var(--font-display);
    color: var(--ink-faint);
  }

  .limits__card-title {
    font: 400 var(--fs-h4) / 1.3 var(--font-sans);
    letter-spacing: -0.01em;
  }

  .limits__todo {
    margin-top: clamp(28px, 3vw, 40px);
    font-size: var(--fs-caption);
    line-height: 1.6;
  }

  .limits__foot {
    margin-top: 12px;
    font: 400 var(--fs-body) / 1.6 var(--font-sans);
    color: var(--ink-muted);
  }

  /* ==================================================== 13 · Форматы и цены */
  .prices__head {
    text-align: center;
  }

  .prices__head .section-title {
    max-width: 26ch;
    margin-inline: auto;
  }

  .prices__lead {
    max-width: 62ch;
    margin-inline: auto;
    margin-top: 16px;
    color: var(--ink-on-sky);
  }

  .prices__entry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
    gap: 0;
    margin-top: clamp(36px, 4.5vw, 64px);
    overflow: hidden;
    border-color: rgb(255 255 255 / 0.7);
  }

  .prices__entry-main {
    display: grid;
    gap: 10px;
    align-content: start;
    padding: clamp(26px, 3vw, 40px);
    background: var(--accent-softer);
  }

  .prices__entry-title {
    font: 400 clamp(24px, 2.4vw, 32px) / 1.15 var(--font-display);
    letter-spacing: -0.02em;
  }

  .prices__amount {
    font: 300 var(--fs-metric) / 1 var(--font-sans);
    letter-spacing: -0.025em;
    font-variant-numeric: tabular-nums;
  }

  .prices__term {
    width: fit-content;
    padding: 7px 13px;
    border-radius: var(--r-pill);
    background: var(--accent);
    /* цвет задан явно: на лаймовом фоне унаследованный белый не читается */
    color: var(--ink);
    font: 400 var(--fs-small) / 1 var(--font-sans);
  }

  .prices__for {
    margin-top: 4px;
    font: 400 var(--fs-caption) / 1.5 var(--font-sans);
    color: var(--ink-muted);
  }

  /* Вход по макету — тёмная карточка целиком. Левая половина отделяется
     подсветкой, а не лаймовым фоном: на лайме белый текст не читается */
  .prices__entry.card--dark .prices__entry-main {
    background: rgb(255 255 255 / 0.05);
  }

  .prices__entry.card--dark .eyebrow {
    color: rgb(255 255 255 / 0.5);
  }

  .prices__entry.card--dark .prices__for {
    color: rgb(255 255 255 / 0.62);
  }

  .prices__entry-side {
    display: grid;
    gap: 20px;
    align-content: start;
    padding: clamp(26px, 3vw, 40px);
  }

  .prices__entry-side .btn {
    justify-self: start;
  }

  .prices__divider {
    margin-top: clamp(32px, 4vw, 48px);
    text-align: center;
    font: 400 var(--fs-label) / 1 var(--font-mono);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ink-on-sky-muted);
  }

  .prices__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
    gap: 16px;
    margin-top: 18px;
  }

  .prices__plan {
    gap: 10px;
    padding: clamp(24px, 2.6vw, 32px);
    border-color: rgb(255 255 255 / 0.7);
    background: rgb(255 255 255 / 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .prices__plan-title {
    font: 400 var(--fs-h4) / 1.3 var(--font-sans);
    letter-spacing: -0.01em;
  }

  .prices__plan-amount {
    font: 400 clamp(26px, 2.4vw, 32px) / 1 var(--font-display);
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
  }

  .prices__per {
    font-size: 0.55em;
    color: var(--ink-muted);
  }

  .prices__plan-term {
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
    font: 400 var(--fs-caption) / 1.5 var(--font-sans);
    color: var(--ink-muted);
  }

  .prices__plan-term em {
    color: var(--ink-faint);
  }

  /* «Когда это нужно» — курсивная строка над описанием формата */
  .prices__plan-when {
    font: 400 var(--fs-caption) / 1.5 var(--font-sans);
    font-style: italic;
    color: var(--ink-muted);
  }

  .prices__todo {
    margin-top: clamp(24px, 3vw, 36px);
    text-align: center;
  }

  .prices__features {
    display: grid;
    gap: 9px;
    font: 400 var(--fs-caption) / 1.5 var(--font-sans);
    color: var(--ink-body);
  }

  .prices__features li::before {
    content: "— ";
    color: var(--accent-deep);
  }

  .prices__cta {
    margin-top: auto;
    align-self: flex-start;
    padding-top: 0;
  }

  .prices__plan .prices__cta {
    margin-top: 18px;
  }

  /* ========================================================== 14 · Вопросы */
  .faq__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.6fr);
    gap: clamp(24px, 4vw, 56px);
    align-items: start;
  }

  @media (width < 900px) {
    .faq__grid {
      grid-template-columns: minmax(0, 1fr);
    }
  }

  .faq__side {
    position: sticky;
    top: clamp(90px, 12vh, 130px);
    display: grid;
    gap: 20px;
  }

  @media (width < 900px) {
    .faq__side {
      position: static;
    }
  }

  .faq__title {
    margin-top: 14px;
  }

  .faq__ask {
    gap: 14px;
    align-items: start;
    padding: clamp(24px, 2.6vw, 32px);
  }

  .faq__group {
    margin-top: clamp(24px, 3vw, 34px);
    margin-bottom: 12px;
  }

  .faq__main > .faq__group:first-child {
    margin-top: 0;
  }

  /* ============================================================ 15 · Финал */
  .final {
    position: relative;
    margin-top: var(--section-gap);
    padding-block: clamp(56px, 7vw, 110px) 0;
    background: var(--ink);
    color: #fff;
  }

  .final__cta {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
  }

  @media (width < 900px) {
    .final__cta {
      grid-template-columns: minmax(0, 1fr);
    }
  }

  .final__copy {
    display: grid;
    gap: 18px;
    justify-items: start;
  }

  .final__title {
    max-width: 16ch;
  }

  .final__title em {
    color: var(--accent);
  }

  /* Картина результата — строка над заголовком финала */
  .final__picture {
    max-width: 54ch;
    margin-bottom: clamp(18px, 2vw, 26px);
    font: 400 var(--fs-body) / 1.6 var(--font-sans);
    color: rgb(255 255 255 / 0.66);
  }

  /* Запасной канал: тем, кто не готов бронировать время */
  .final__telegram {
    margin-bottom: 14px;
  }

  .final__telegram a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font: 400 var(--fs-caption) / 1.4 var(--font-sans);
    color: rgb(255 255 255 / 0.72);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .final__telegram a:hover {
    color: var(--accent);
  }

  .final__telegram svg {
    width: 16px;
    height: 16px;
  }

  .final__note {
    max-width: 48ch;
    font: 400 var(--fs-body) / 1.6 var(--font-sans);
    color: rgb(255 255 255 / 0.6);
  }

  .final__media {
    position: relative;
    isolation: isolate;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: var(--r-lg);
    background: var(--ink-2);
  }

  .final__media .video-bg {
    z-index: 0;
  }
}

/* ============================================================================
   Появление блоков.

   Главное правило: ни один текст не прячется в расчёте на то, что его покажет
   JS. Если скрипт не загрузился — по file://, из-за CSP, ошибки или старого
   браузера, — страница обязана остаться читаемой. Поэтому:

     [data-intro]  — обычная CSS-анимация с fill: both. Она всегда доигрывает
                     до видимого состояния, даже если JS на странице нет вовсе.
     [data-reveal] — прячется ТОЛЬКО там, где есть scroll-таймлайны, и там же
                     сама себя показывает. Где их нет — блок просто виден сразу,
                     без анимации. JS для видимости не нужен нигде.
     .word         — разбиение на слова делает JS, поэтому начальное состояние
                     повешено на класс, который он же и ставит.
   ========================================================================== */
@layer utils {
  /* --- первый экран ------------------------------------------------------- */
  [data-intro] {
    animation: intro-rise var(--dur-slow) var(--ease) var(--delay, 0ms) both;
  }

  @keyframes intro-rise {
    from {
      opacity: 0;
      translate: 0 22px;
    }
  }

  .hero__badge {
    --delay: 120ms;
  }

  .hero__pitch {
    --delay: 210ms;
  }

  .hero__script {
    --delay: 300ms;
  }

  .hero__stat:nth-child(1) {
    --delay: 390ms;
  }

  .hero__stat:nth-child(2) {
    --delay: 480ms;
  }

  .hero__stat:nth-child(3) {
    --delay: 570ms;
  }

  .hero__stat:nth-child(4) {
    --delay: 660ms;
  }

  /* --- блоки по ходу страницы --------------------------------------------- */
  @supports (animation-timeline: view()) {
    @media (prefers-reduced-motion: no-preference) {
      [data-reveal] {
        animation: reveal-rise linear both;
        animation-timeline: view();
        animation-range: entry 0% cover 30%;
      }
    }
  }

  @keyframes reveal-rise {
    from {
      opacity: 0;
      translate: 0 50px;
    }
  }

  /* --- заголовки по словам -------------------------------------------------- */
  /* Класс is-split ставит скрипт вместе с самими span: если его нет,
     заголовок остался цельным и прятать нечего */
  .is-split .word {
    display: inline-block;
    opacity: 0;
    translate: 0 0.5em;
    transition:
      opacity 0.5s var(--ease) var(--delay, 0ms),
      translate 0.6s var(--ease) var(--delay, 0ms);
  }

  .is-split.is-in .word {
    opacity: 1;
    translate: 0 0;
  }

  /* Кто просил меньше движения — получает готовое состояние сразу */
  @media (prefers-reduced-motion: reduce) {
    [data-intro],
    .is-split .word {
      animation: none;
      opacity: 1;
      translate: none;
    }
  }
}
