@charset "UTF-8";
/* ============================================================
   style.css — ラクシス（laxis-tokushima.jp）
   構成: 1.トークン → 2.リセット/ベース → 3.レイアウト
        → 4.コンポーネント → 5.モーション → 6.停止ポリシー
   トークンは動画テンプレ(videos/template_v2.html)と共通。
   ============================================================ */

/* ---------- 1. トークン ---------- */
:root {
  --color-bg: #FAFAF7;          /* あたたかい白 */
  --color-surface: #ffffff;
  --color-text: #23272E;        /* ロゴの黒 */
  --color-muted: #5B6472;
  --color-accent: #3D7EF7;      /* スマイル青 */
  --color-accent-ink: #ffffff;
  --color-sky: #EAF2FE;         /* カード背景 */
  --color-line: #E3E6EC;
  --color-green: #06C755;       /* LINE緑: CTA専用 */
  --color-green-ink: #ffffff;

  --font-display: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Noto Sans JP", sans-serif;
  --font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;

  --space: 8px;
  --section-pad: clamp(64px, 11vw, 128px);
  --container: 1080px;
  --container-narrow: 760px;
  --radius: 14px;

  --z-header: 100;
  --z-nav: 200;
  --z-modal: 1000;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 0.8s;
}

/* ---------- 2. リセット/ベース ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.9;
  font-size: 17px;                  /* 苦手層向けに大きめ */
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: anywhere;
}

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

a { color: inherit; }
a:hover { opacity: 0.7; transition: opacity 0.3s; }

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

/* ---------- 3. レイアウト ---------- */
.container { width: min(var(--container), 100% - 40px); margin-inline: auto; }
.container--narrow { width: min(var(--container-narrow), 100% - 40px); margin-inline: auto; }

.section { padding-block: var(--section-pad); }
.section--tight { padding-block: calc(var(--section-pad) * 0.55); }
.section--sky { background: var(--color-sky); }

/* セクション見出し: スマイルの弧がシグネチャー */
.section-head { margin-bottom: calc(var(--space) * 6); text-align: center; }
.section-head__title { font-size: clamp(26px, 4.2vw, 40px); }
.section-head__sub { color: var(--color-muted); margin-top: calc(var(--space) * 1.5); font-size: 15px; }
.smile-mark { display: inline-block; width: 56px; height: 16px; margin-bottom: calc(var(--space) * 1); }

/* ---------- 4. コンポーネント ---------- */

/* ヘッダー */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-header);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 14px clamp(16px, 3vw, 40px);
  transition: background 0.4s, box-shadow 0.4s;
}
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--color-bg) 92%, transparent);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--color-line);
}
.site-header__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  text-decoration: none; letter-spacing: 0.08em;
}
.site-header__logo svg { width: 40px; height: 29px; flex: none; }

.header-line {
  display: inline-block; background: var(--color-green); color: var(--color-green-ink);
  font-size: 14px; font-weight: 700; font-family: var(--font-display);
  padding: 9px 18px; border-radius: 999px; text-decoration: none; white-space: nowrap;
}
.header-line:hover { opacity: 0.85; }

.global-nav ul { display: flex; align-items: center; gap: calc(var(--space) * 3.5); list-style: none; padding: 0; }
.global-nav a { text-decoration: none; font-size: 14px; font-weight: 500; letter-spacing: 0.06em; }
.global-nav a[aria-current="page"] {
  color: var(--color-accent);
  border-bottom: 2px solid currentColor;
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  position: relative; z-index: calc(var(--z-nav) + 1);
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; margin: 5px auto;
  background: var(--color-text); transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 767px) {
  .nav-toggle { display: block; }
  .site-header .header-line { margin-left: auto; }
  .global-nav {
    position: fixed; inset: 0; z-index: var(--z-nav);
    background: var(--color-bg);
    display: grid; place-content: center;
    opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s;
  }
  .global-nav.is-open { opacity: 1; visibility: visible; }
  .global-nav ul { flex-direction: column; text-align: center; gap: calc(var(--space) * 4); }
  .global-nav a { font-size: 20px; }
}

/* ヒーロー(即答型) */
.hero {
  min-height: 88svh;
  display: grid; align-items: center;
  padding: calc(var(--section-pad) * 1.1) 0 calc(var(--space) * 8);
  text-align: center;
  position: relative;
  overflow: clip;
}
.hero__smile { width: clamp(120px, 16vw, 180px); margin: 0 auto calc(var(--space) * 3); }
.hero__title {
  font-size: clamp(30px, 6vw, 60px);
  line-height: 1.5;
}
.hero__title em { font-style: normal; color: var(--color-accent); }
.hero__lead { margin: calc(var(--space) * 3) auto 0; max-width: 36em; color: var(--color-muted); font-size: clamp(15px, 2vw, 18px); }
.hero__badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-top: calc(var(--space) * 3);
  padding: 0; list-style: none;
}
.hero__badges li {
  background: var(--color-surface); border: 1px solid var(--color-line);
  border-radius: 999px; padding: 6px 18px; font-size: 13px; font-weight: 500; color: var(--color-muted);
}
.hero__cta { margin-top: calc(var(--space) * 5); display: flex; flex-direction: column; align-items: center; gap: 12px; }
.hero__cta-note { font-size: 13px; color: var(--color-muted); }

/* 下層: page-header・パンくず */
.page-header__title { font-size: clamp(30px, 5vw, 52px); }
.breadcrumb { padding-block: calc(var(--space) * 2); font-size: 13px; color: var(--color-muted); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 0.6em; list-style: none; padding: 0; }
.breadcrumb li:not(:last-child)::after { content: "›"; margin-left: 0.6em; }
.breadcrumb a { text-decoration: none; }

/* ボタン */
.button {
  display: inline-block;
  padding: 16px 44px;
  background: var(--color-accent); color: var(--color-accent-ink);
  border: 2px solid var(--color-accent); border-radius: 999px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 16px; letter-spacing: 0.06em; text-decoration: none;
  cursor: pointer; transition: background 0.3s, color 0.3s;
}
.button:hover { background: transparent; color: var(--color-accent); opacity: 1; }

.button--line {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--color-green); border-color: var(--color-green);
  color: var(--color-green-ink);
  font-size: clamp(17px, 2.4vw, 20px);
  padding: 18px clamp(36px, 6vw, 64px);
}
.button--line:hover { background: transparent; color: var(--color-green); }
.button--line svg { width: 26px; height: 26px; flex: none; }

.button--ghost {
  background: transparent; color: var(--color-text); border-color: var(--color-line);
}
.button--ghost:hover { border-color: var(--color-accent); color: var(--color-accent); background: transparent; }

/* お困りごとナビ */
.nav-cards {
  display: grid; gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  list-style: none; padding: 0;
}
@media (max-width: 1023px) { .nav-cards { grid-template-columns: repeat(2, 1fr); } }
.nav-cards a {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  background: var(--color-surface);
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 26px 12px 20px;
  text-decoration: none; text-align: center;
  font-family: var(--font-display); font-weight: 500; font-size: 15px;
  line-height: 1.5;
  transition: transform 0.25s var(--ease-out), border-color 0.25s, box-shadow 0.25s;
}
.nav-cards a:hover {
  opacity: 1; transform: translateY(-4px);
  border-color: var(--color-accent);
  box-shadow: 0 8px 24px rgba(35, 39, 46, 0.08);
}
.nav-cards svg, .nav-cards img { width: 52px; height: 52px; }

/* 動画ライブラリ(グループごとに折りたたみ) */
.video-group {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  overflow: clip;
  margin-top: 14px;
}
.video-group:first-of-type { margin-top: 0; }
.video-group__title {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(17px, 2.4vw, 22px);
  padding: 18px 20px; cursor: pointer;
  list-style: none;
}
.video-group__title::-webkit-details-marker { display: none; }
.video-group__title img { width: 34px; height: 34px; }
.video-fold-hint {
  margin-left: auto; display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--color-accent); white-space: nowrap;
}
.video-fold-hint::after { content: "▼"; font-size: 11px; transition: rotate 0.3s; }
.video-group[open] .video-fold-hint::after { rotate: 180deg; }
.video-group .video-grid { padding: 4px 20px 20px; }
.video-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}
@media (max-width: 767px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .video-card__play::after { width: 56px; height: 56px; background-size: 26px; }
  .video-card__title { font-size: 13px; padding: 10px 12px; }
}
.video-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  overflow: clip;
}
.video-card__media { position: relative; aspect-ratio: 9 / 16; background: var(--color-sky); }
.video-card__media video { width: 100%; height: 100%; object-fit: cover; }
.video-card__play {
  position: absolute; inset: 0; width: 100%;
  border: none; padding: 0; cursor: pointer;
  background: transparent;
}
.video-card__play img { width: 100%; height: 100%; object-fit: cover; }
.video-card__play::after {
  content: "";
  position: absolute; left: 50%; top: 50%;
  width: 72px; height: 72px; translate: -50% -50%;
  background: rgba(35, 39, 46, 0.78) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 6.5 17.5 12 9 17.5z' fill='%23fff'/%3E%3C/svg%3E") center / 34px no-repeat;
  border-radius: 50%;
  transition: transform 0.25s var(--ease-out);
}
.video-card__play:hover::after { transform: scale(1.08); }
.video-card__title {
  font-family: var(--font-display); font-weight: 500; font-size: 15px;
  padding: 14px 16px; line-height: 1.5;
}

/* CTAバンド */
.cta-band { background: var(--color-sky); }
.cta-band__inner { text-align: center; }
.cta-band__title { font-size: clamp(22px, 3.4vw, 32px); margin-bottom: calc(var(--space) * 2); }
.cta-band p { color: var(--color-muted); margin-bottom: calc(var(--space) * 4); }

/* サービス4分類 */
.service-cards {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  list-style: none; padding: 0;
}
.service-cards li {
  background: var(--color-surface); border: 1px solid var(--color-line);
  border-radius: var(--radius); padding: 30px 24px; text-align: center;
}
.service-cards img { width: 64px; height: 64px; margin: 0 auto 14px; }
.service-cards h3 { font-size: 19px; margin-bottom: 8px; }
.service-cards p { font-size: 14px; color: var(--color-muted); line-height: 1.8; }

/* 料金 */
.price-cards {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  list-style: none; padding: 0;
  margin-bottom: calc(var(--space) * 7);
}
.price-cards li {
  position: relative;
  background: var(--color-surface); border: 1px solid var(--color-line);
  border-radius: var(--radius); padding: 34px 26px 30px;
  display: flex; flex-direction: column;
}
.price-cards li.is-featured { border: 2px solid var(--color-accent); }
.price-cards .price-badge {
  position: absolute; top: -14px; left: 50%; translate: -50% 0;
  background: var(--color-accent); color: var(--color-accent-ink);
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  padding: 4px 16px; border-radius: 999px; white-space: nowrap;
}
.price-cards h3 { font-size: 20px; text-align: center; }
.price-cards .price-amount {
  font-family: var(--font-display); font-weight: 700;
  font-size: 38px; color: var(--color-accent); text-align: center;
  margin: 10px 0 4px;
}
.price-cards .price-amount small { font-size: 16px; font-weight: 500; }
.price-cards .price-tax { text-align: center; font-size: 12px; color: var(--color-muted); margin-bottom: 16px; }
.price-cards ul { list-style: none; padding: 0; font-size: 14px; display: grid; gap: 8px; }
.price-cards ul li { border: none; padding: 0 0 0 26px; position: relative; display: block; }
.price-cards ul li::before {
  content: ""; position: absolute; left: 0; top: 0.45em;
  width: 16px; height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 10'%3E%3Cpath d='M2 2q6 7 12 0' stroke='%233D7EF7' stroke-width='2.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.price-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.price-table caption { font-family: var(--font-display); font-weight: 700; font-size: 19px; text-align: left; margin-bottom: 14px; }
.price-table th, .price-table td { padding: 13px 8px; border-bottom: 1px solid var(--color-line); text-align: left; }
.price-table td:last-child { text-align: right; white-space: nowrap; font-weight: 500; }
.price-table .price-table__note { font-weight: 400; font-size: 12px; color: var(--color-muted); display: block; }

.note-box {
  margin-top: calc(var(--space) * 4);
  background: var(--color-sky); border-radius: var(--radius);
  padding: 18px 22px; font-size: 14px; color: var(--color-muted);
}
.note-box strong { color: var(--color-text); }

/* 代表あいさつ */
.profile {
  display: flex; gap: clamp(24px, 5vw, 48px); align-items: center;
}
@media (max-width: 767px) { .profile { flex-direction: column; text-align: center; } }
.profile__photo { flex: none; width: clamp(180px, 24vw, 240px); }
.profile__photo img { border-radius: 50%; border: 4px solid var(--color-surface); box-shadow: 0 6px 24px rgba(35,39,46,0.1); }
.profile__name { font-size: 22px; margin-bottom: 4px; }
.profile__role { font-size: 13px; color: var(--color-muted); margin-bottom: 16px; }
.profile__text { font-size: 15px; }

/* 対応エリア */
.area-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; list-style: none; padding: 0; }
.area-tags li {
  background: var(--color-surface); border: 1px solid var(--color-line);
  border-radius: 999px; padding: 8px 22px;
  font-family: var(--font-display); font-weight: 500; font-size: 15px;
}
.area-note { text-align: center; color: var(--color-muted); font-size: 14px; margin-top: calc(var(--space) * 3); }

/* ながれ */
.steps { list-style: none; padding: 0; display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); counter-reset: step; }
.steps li {
  background: var(--color-surface); border: 1px solid var(--color-line);
  border-radius: var(--radius); padding: 30px 24px; text-align: center;
  counter-increment: step; position: relative;
}
.steps li::before {
  content: counter(step);
  display: grid; place-content: center;
  width: 48px; height: 48px; margin: 0 auto 14px;
  background: var(--color-accent); color: var(--color-accent-ink);
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  border-radius: 50%;
}
.steps h3 { font-size: 18px; margin-bottom: 8px; }
.steps p { font-size: 14px; color: var(--color-muted); }

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq details {
  background: var(--color-surface); border: 1px solid var(--color-line);
  border-radius: var(--radius); overflow: clip;
}
.faq summary {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px; cursor: pointer;
  font-family: var(--font-display); font-weight: 500; font-size: 16px;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: "Q"; flex: none;
  display: grid; place-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--color-sky); color: var(--color-accent);
  font-family: var(--font-display); font-weight: 700;
}
.faq summary::after {
  content: "＋"; margin-left: auto; color: var(--color-accent); font-weight: 700;
  transition: rotate 0.3s;
}
.faq details[open] summary::after { rotate: 45deg; }
.faq .faq__a { padding: 0 22px 20px 70px; font-size: 15px; color: var(--color-muted); }

/* QR(PCのみ) */
.qr-box { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: calc(var(--space) * 4); }
.qr-box img { width: 132px; height: 132px; border: 1px solid var(--color-line); border-radius: 10px; background: #fff; padding: 8px; }
.qr-box p { font-size: 13px; color: var(--color-muted); text-align: left; }
@media (max-width: 767px) { .qr-box { display: none; } }

/* 法人バンド */
.biz-band { background: var(--color-text); color: #F5F6F8; }
.biz-band .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.biz-band h2 { font-size: clamp(20px, 3vw, 26px); }
.biz-band p { font-size: 14px; color: #B9BFC9; margin-top: 6px; }

/* スタッツ(法人) */
.stats { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); list-style: none; padding: 0; text-align: center; }
.stats li { background: var(--color-surface); border: 1px solid var(--color-line); border-radius: var(--radius); padding: 28px 18px; }
.stats .stats__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(34px, 5vw, 48px); color: var(--color-accent); line-height: 1.2; }
.stats .stats__num small { font-size: 0.45em; }
.stats p { font-size: 14px; color: var(--color-muted); margin-top: 6px; }

/* 事例 Before/After */
.case-box { background: var(--color-surface); border: 1px solid var(--color-line); border-radius: var(--radius); padding: clamp(24px, 4vw, 44px); }
.case-box__tag { display: inline-block; background: var(--color-sky); color: var(--color-accent); font-size: 13px; font-weight: 700; border-radius: 999px; padding: 4px 16px; margin-bottom: 14px; }
.case-box h3 { font-size: clamp(20px, 3vw, 26px); margin-bottom: 20px; }
.ba { display: grid; gap: 14px; }
.ba > div { display: flex; gap: 14px; align-items: baseline; }
.ba .ba__label { flex: none; font-family: var(--font-display); font-weight: 700; font-size: 13px; border-radius: 6px; padding: 3px 12px; }
.ba .ba__label--before { background: #FCEBEB; color: #A32D2D; }
.ba .ba__label--after { background: #E1F5EE; color: #0F6E56; }
.case-box .case-results { list-style: none; padding: 20px 22px; margin-top: 22px; background: var(--color-sky); border-radius: var(--radius); font-size: 15px; display: grid; gap: 8px; }
.case-box .case-results li { padding-left: 26px; position: relative; }
.case-box .case-results li::before {
  content: ""; position: absolute; left: 0; top: 0.5em;
  width: 16px; height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 10'%3E%3Cpath d='M2 2q6 7 12 0' stroke='%233D7EF7' stroke-width='2.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* 研修メニュー */
.menu-list { list-style: none; padding: 0; display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.menu-list li {
  background: var(--color-surface); border: 1px solid var(--color-line); border-radius: var(--radius);
  padding: 18px 22px; font-size: 15px; font-weight: 500;
  display: flex; align-items: center; gap: 12px;
}
.menu-list li::before {
  content: ""; flex: none; width: 18px; height: 11px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 10'%3E%3Cpath d='M2 2q6 7 12 0' stroke='%233D7EF7' stroke-width='2.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* フッター */
.site-footer {
  padding: calc(var(--space) * 8) 0 calc(var(--space) * 5);
  border-top: 1px solid var(--color-line);
  font-size: 14px; color: var(--color-muted);
}
.site-footer__inner { display: grid; gap: 18px; justify-items: center; text-align: center; }
.site-footer__logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--color-text); text-decoration: none; }
.site-footer__logo svg { width: 36px; height: 26px; }
.site-footer nav ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; list-style: none; padding: 0; font-size: 13px; }
.site-footer a { text-decoration: none; }
.site-footer .mail-a { color: var(--color-accent); font-weight: 700; font-style: normal; }

/* ---------- 5. モーション基盤 ---------- */
.js-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}
.js-reveal.is-inview { opacity: 1; transform: none; }
.js-reveal[data-delay="1"] { transition-delay: 0.1s; }
.js-reveal[data-delay="2"] { transition-delay: 0.2s; }
.js-reveal[data-delay="3"] { transition-delay: 0.3s; }
.js-reveal[data-delay="4"] { transition-delay: 0.4s; }

/* スマイルの弧が引かれるシグネチャー演出 */
.smile-mark path { stroke-dasharray: 60; stroke-dashoffset: 60; transition: stroke-dashoffset 1s var(--ease-out) 0.3s; }
.smile-mark circle { opacity: 0; transition: opacity 0.4s 0.9s; }
.js-reveal.is-inview .smile-mark path, .smile-mark.is-inview path { stroke-dashoffset: 0; }
.js-reveal.is-inview .smile-mark circle, .smile-mark.is-inview circle { opacity: 1; }

/* ---------- 6. モーション停止(削除禁止) ---------- */
.motion-stop {
  display: none;
  position: fixed; right: 16px; bottom: 16px; z-index: var(--z-modal);
  padding: 10px 16px; font-size: 12px;
  background: var(--color-surface); border: 1px solid var(--color-line);
  border-radius: 999px; cursor: pointer;
}
@media (prefers-reduced-motion: reduce) {
  .motion-stop { display: block; }
}
html.is-motion-off .js-reveal,
html.is-motion-off *[class] {
  transition-duration: 0.01ms !important;
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
}
html.is-motion-off .js-reveal { opacity: 1; transform: none; }
