/* Famory LP — 配色はアプリアイコン（生なりの地・虹色の筆の輪・赤いハート）から取っている */

:root {
  --cream: #f7f2ea;
  --cream-deep: #efe6d8;
  --white: #ffffff;

  --heart: #e8565c;
  --heart-deep: #cf424a;
  --coral: #e8834a;
  --amber: #efb53f;
  --sage: #7fa76b;
  --teal: #4fa3a0;
  --lilac: #9b8bc4;
  --rose: #e38ba8;

  --ink: #2b2320;
  --muted: #6e6058;
  --faint: #9a8b81;
  --rule: #e2d7c8;

  --radius: 18px;
  --shadow: 0 2px 6px rgba(43, 35, 32, .05), 0 18px 44px rgba(43, 35, 32, .08);
  --shadow-sm: 0 1px 3px rgba(43, 35, 32, .06), 0 6px 18px rgba(43, 35, 32, .05);

  --serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --sans: "Noto Sans JP", "Hiragino Sans", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; height: auto; }

a { color: var(--heart-deep); }

/* ============ ナビ ============ */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 242, 234, .88);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 66px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.logo img { width: 34px; height: 34px; border-radius: 9px; }
.logo-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: .04em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
}
.nav-links a { color: var(--muted); text-decoration: none; }
.nav-links a:hover { color: var(--heart-deep); }
@media (max-width: 720px) { .nav-links { display: none; } }

.nav-cta {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--heart);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--heart-deep); }

/* ============ ヒーロー ============ */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 9vw, 108px) 0 clamp(64px, 10vw, 120px);
}

/* アイコンの筆の輪をそのままモチーフに */
.hero-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(1180px, 155vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  opacity: .3;
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-ring { animation: ringDrift 42s ease-in-out infinite; }
}
@keyframes ringDrift {
  0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
  50%      { transform: translate(-50%, -51%) rotate(7deg); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(30px, 5vw, 60px);
}
.hero-text { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; justify-items: center; }
  .hero-text { align-items: center; text-align: center; }
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 5.6vw, 3.5rem);
  line-height: 1.5;
  letter-spacing: .02em;
  margin: 0;
  text-wrap: balance;
}
.hero h1 .accent { color: var(--heart); }

.hero .lead {
  margin: 0;
  max-width: 34em;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.13rem);
}

.hero-note { margin: 0; font-size: 13px; color: var(--faint); }

.badge-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.appstore-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 26px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}
.appstore-btn:hover { background: #1c1614; }
.appstore-btn-icon { width: 26px; height: 26px; flex: 0 0 auto; }
.appstore-btn-text { display: flex; flex-direction: column; line-height: 1.25; text-align: left; }
.appstore-btn-text .small { font-size: 10px; letter-spacing: .08em; opacity: .8; }
.appstore-btn-text .big { font-size: 18px; font-weight: 700; }


/* ============ 端末フレーム ============ */
/* スクショは実機のもの。角丸と枠だけ足して端末に見せている */
.device {
  position: relative;
  width: 100%;
  max-width: 286px;
  margin: 0 auto;
  padding: 9px;
  border-radius: 44px;
  background: linear-gradient(160deg, #3a3230, #221c1a 55%, #3a3230);
  box-shadow: var(--shadow);
}
.device::after {
  content: "";
  position: absolute;
  top: 20px; left: 50%;
  width: 76px; height: 20px;
  transform: translateX(-50%);
  background: #14100f;
  border-radius: 999px;
  z-index: 2;
}
.device img {
  display: block;
  width: 100%;
  border-radius: 36px;
  background: var(--cream);
}
.device-lg { max-width: 320px; }

/* ヒーローだけスクショを何枚か送る */
.hero-shot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.shotshow {
  overflow: hidden;
  border-radius: 36px;
  background: var(--cream);
}
.shotshow-track {
  display: flex;
  width: 100%;
  transition: transform .62s cubic-bezier(.4, 0, .2, 1);
}
.shotshow .shot {
  flex: 0 0 100%;
  border-radius: 0;
}
.shot-dots { display: flex; gap: 10px; }
.shot-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--rule);
  cursor: pointer;
  transition: background .3s ease, transform .3s ease;
}
.shot-dot:hover { background: var(--faint); }
.shot-dot.is-on { background: var(--heart); transform: scale(1.3); }

.shots {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 26px);
}
.shots .device { margin: 0; max-width: 236px; }
.shots .device:nth-child(2) { transform: translateY(-18px); }
@media (max-width: 560px) {
  .shots .device:nth-child(2) { display: none; }
}

/* ============ セクション共通 ============ */
section { padding: clamp(56px, 8vw, 96px) 0; }
.section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  margin-bottom: clamp(34px, 5vw, 54px);
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--heart);
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 3.6vw, 2.15rem);
  line-height: 1.55;
  margin: 0;
  text-wrap: balance;
}
.section-head p { margin: 0; color: var(--muted); max-width: 40em; }

.on-white { background: var(--white); }

/* ============ 3つの価値 ============ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.on-white .value-card { background: var(--cream); }
.value-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.value-icon svg { width: 24px; height: 24px; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.value-card h3 { margin: 0; font-size: 1.06rem; font-weight: 700; }
.value-card p { margin: 0; color: var(--muted); font-size: 15px; }

.tint-heart { background: rgba(232, 86, 92, .12); }
.tint-heart svg { stroke: var(--heart); }
.tint-teal { background: rgba(79, 163, 160, .14); }
.tint-teal svg { stroke: var(--teal); }
.tint-amber { background: rgba(239, 181, 63, .16); }
.tint-amber svg { stroke: #c8922a; }

/* ============ 機能（交互レイアウト） ============ */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(28px, 4vw, 42px) 0;
}
.feature + .feature { border-top: 1px solid var(--rule); }
@media (max-width: 820px) { .feature { grid-template-columns: 1fr; } }

.feature-body { display: flex; flex-direction: column; gap: 14px; }
.feature-num {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: .16em;
  color: var(--faint);
}
.feature-body h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.6vw, 1.55rem);
  line-height: 1.6;
  margin: 0;
}
.feature-body p { margin: 0; color: var(--muted); }

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.chip {
  font-size: 13px;
  padding: 5px 13px;
  border-radius: 999px;
  background: var(--cream-deep);
  color: var(--muted);
  white-space: nowrap;
}
.on-white .chip { background: var(--cream); }

/* タスクの逆算を見せる小さな図 */
.timeline {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.on-white .timeline { background: var(--cream); }
.timeline-row {
  display: grid;
  grid-template-columns: 62px 22px 1fr;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
}
.timeline-when {
  font-size: 13px;
  color: var(--faint);
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.timeline-mark { display: grid; place-items: center; position: relative; height: 100%; }
.timeline-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--coral);
  z-index: 1;
}
.timeline-row.is-day .timeline-dot { background: var(--heart); border-color: var(--heart); }
.timeline-mark::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--rule);
}
.timeline-row:first-child .timeline-mark::before { top: 50%; }
.timeline-row:last-child .timeline-mark::before { bottom: 50%; }
.timeline-what { font-size: 15px; }
.timeline-row.is-day .timeline-what { font-weight: 700; }

/* ============ 料金 ============ */
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  align-items: stretch;
}
.plan {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}
.on-white .plan { background: var(--cream); }
.plan.is-featured {
  border-color: var(--heart);
  box-shadow: var(--shadow);
  position: relative;
}
.plan-tag {
  position: absolute;
  top: -11px; left: 24px;
  background: var(--heart);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 3px 12px;
  border-radius: 999px;
}
.plan h3 { margin: 0; font-size: 1rem; font-weight: 700; }
.plan-price {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  font-variant-numeric: tabular-nums;
}
.plan-price .per { font-family: var(--sans); font-size: 14px; font-weight: 400; color: var(--muted); }
.plan p { margin: 0; font-size: 14px; color: var(--muted); }

.free-note {
  margin: 26px auto 0;
  max-width: 46em;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}
.subscription-terms {
  margin: 14px auto 0;
  max-width: 46em;
  text-align: center;
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--faint);
}

/* ============ プライバシーの一言 ============ */
.privacy-band { background: var(--ink); color: var(--cream); }
.privacy-band .section-head h2 { color: var(--cream); }
.privacy-band .section-head p { color: rgba(247, 242, 234, .72); }
.privacy-band .section-eyebrow { color: var(--rose); }
.privacy-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.privacy-point {
  border: 1px solid rgba(247, 242, 234, .16);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.privacy-point h3 { margin: 0; font-size: 1rem; font-weight: 700; color: var(--cream); }
.privacy-point p { margin: 0; font-size: 14px; color: rgba(247, 242, 234, .72); }

/* ============ 最終CTA ============ */
.final-cta { text-align: center; }
.final-cta .badge-row { align-items: center; }

/* ============ フッター ============ */
footer {
  background: var(--cream-deep);
  border-top: 1px solid var(--rule);
  padding: 40px 0 32px;
}
/* ロゴは左のまま、リンクだけをページの中央に置く。
   3列にして両端を 1fr で釣り合わせているので、真ん中の列がぴったり中央に来る。 */
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}
.footer-logo {
  /* 1fr の列いっぱいに伸びるとリンクの当たり判定が無駄に広がるので、左に寄せて縮める */
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 600;
}
.footer-logo img { width: 28px; height: 28px; border-radius: 8px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; font-size: 14px; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--heart-deep); }

/* 狭い画面ではロゴもリンクも縦に積んで中央に揃える */
@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; justify-items: center; }
  .footer-logo { justify-self: center; }
}
.footer-copy {
  margin: 26px 0 0;
  font-size: 12.5px;
  color: var(--faint);
  text-align: center;
}

/* ============ 規約・サポートの本文ページ ============ */
.doc-page {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(44px, 7vw, 76px) 24px clamp(56px, 8vw, 88px);
}
.doc-page h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin: 0 0 6px;
}
.doc-page .last-updated {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--faint);
}
.doc-page h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.2rem;
  margin: 40px 0 10px;
  padding-top: 4px;
}
.doc-page h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 26px 0 6px;
}
.doc-page p, .doc-page li { color: var(--muted); }
.doc-page p { margin: 0 0 14px; }
.doc-page ul, .doc-page ol { margin: 0 0 14px; padding-left: 1.35em; }
.doc-page li { margin-bottom: 6px; }
.doc-page strong { color: var(--ink); }
.doc-page hr {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 34px 0;
}
.doc-page .callout {
  background: var(--white);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--heart);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 0 0 14px;
}
.doc-page .callout p:last-child { margin-bottom: 0; }

.doc-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  font-size: 14px;
}

:focus-visible { outline: 2px solid var(--heart); outline-offset: 3px; border-radius: 4px; }

/* ============ 動き ============ */
/* スクロール演出は JS が動いているときだけ隠す（.js は head で付ける）。
   JS が落ちても本文が読めなくならないようにするため。
   transform ではなく translate を使うのは、hover の transform とぶつけないため。 */
.js .reveal {
  opacity: 0;
  translate: 0 22px;
  transition: opacity .75s cubic-bezier(.16, .84, .44, 1),
              translate .75s cubic-bezier(.16, .84, .44, 1);
  transition-delay: var(--reveal-delay, 0s);
}
.js .reveal.is-visible { opacity: 1; translate: none; }

/* ナビ：地の色に溶けたままだと境目が分からないので、スクロールしたら影を落とす */
nav { transition: box-shadow .3s ease; }
nav.is-scrolled { box-shadow: 0 6px 26px rgba(43, 35, 32, .07); }

/* ヒーローは読み込み時に順番に立ち上がる */
@media (prefers-reduced-motion: no-preference) {
  .hero-text > *,
  .hero-shot { animation: enterUp .95s cubic-bezier(.16, .84, .44, 1) both; }
  .hero-text > *:nth-child(1) { animation-delay: .08s; }
  .hero-text > *:nth-child(2) { animation-delay: .20s; }
  .hero-text > *:nth-child(3) { animation-delay: .32s; }
  .hero-shot { animation-delay: .26s; }
  .hero-shot .device { animation: deviceFloat 9.5s ease-in-out infinite 1.3s; }
}
@keyframes enterUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@keyframes deviceFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-11px); }
}

/* 舞う花びら。色はアイコンの筆の輪から取っている */
.petal {
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  width: var(--s, 22px);
  color: var(--c, var(--rose));
  opacity: var(--o, .2);
  transform: rotate(var(--rot, 0deg));
  pointer-events: none;
  z-index: 0;
}
.petal svg { display: block; width: 100%; height: auto; fill: currentColor; }
@media (prefers-reduced-motion: no-preference) {
  .petal { animation: var(--drift, petalDriftA) var(--d, 15s) ease-in-out infinite var(--delay, 0s); }
}
@media (max-width: 720px) {
  .petal.is-inner { display: none; }
}
@keyframes petalDriftA {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(var(--rot, 0deg)); }
  32%      { transform: translate3d(10px, -22px, 0) rotate(calc(var(--rot, 0deg) + 13deg)); }
  68%      { transform: translate3d(-8px, -9px, 0) rotate(calc(var(--rot, 0deg) - 9deg)); }
}
@keyframes petalDriftB {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(var(--rot, 0deg)); }
  40%      { transform: translate3d(-13px, -16px, 0) rotate(calc(var(--rot, 0deg) - 15deg)); }
  74%      { transform: translate3d(7px, -26px, 0) rotate(calc(var(--rot, 0deg) + 7deg)); }
}
@keyframes petalDriftC {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(var(--rot, 0deg)); }
  36%      { transform: translate3d(6px, 18px, 0) rotate(calc(var(--rot, 0deg) + 18deg)); }
  70%      { transform: translate3d(-11px, 7px, 0) rotate(calc(var(--rot, 0deg) - 6deg)); }
}
@keyframes petalDriftD {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(var(--rot, 0deg)); }
  45%      { transform: translate3d(-9px, -28px, 0) rotate(calc(var(--rot, 0deg) + 10deg)); }
  80%      { transform: translate3d(12px, -12px, 0) rotate(calc(var(--rot, 0deg) - 12deg)); }
}

/* カードは浮く */
.value-card,
.plan,
.privacy-point,
.timeline,
.device {
  transition: transform .35s cubic-bezier(.16, .84, .44, 1),
              box-shadow .35s ease,
              border-color .35s ease;
}
.value-card:hover,
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.privacy-point:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 242, 234, .34);
  background: rgba(247, 242, 234, .04);
}
.feature .device:hover { transform: translateY(-6px); }

/* App Store ボタン */
.appstore-btn {
  transition: transform .28s cubic-bezier(.16, .84, .44, 1),
              background .25s ease,
              box-shadow .28s ease;
}
.appstore-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.appstore-btn:active { transform: translateY(0); }
.nav-cta { transition: background .25s ease, transform .25s ease; }
.nav-cta:hover { transform: translateY(-1px); }

/* 逆算タスクは上から順に引かれていく */
.js .timeline-row {
  opacity: 0;
  translate: -12px 0;
  transition: opacity .55s ease, translate .55s cubic-bezier(.16, .84, .44, 1);
}
.js .timeline.is-visible .timeline-row { opacity: 1; translate: none; }
.js .timeline.is-visible .timeline-row:nth-child(1) { transition-delay: .22s; }
.js .timeline.is-visible .timeline-row:nth-child(2) { transition-delay: .33s; }
.js .timeline.is-visible .timeline-row:nth-child(3) { transition-delay: .44s; }
.js .timeline.is-visible .timeline-row:nth-child(4) { transition-delay: .55s; }
.js .timeline.is-visible .timeline-row:nth-child(5) { transition-delay: .66s; }
@media (prefers-reduced-motion: no-preference) {
  .timeline.is-visible .timeline-row.is-day .timeline-dot {
    animation: dayPulse 2.6s ease-out 1.3s infinite;
  }
}
@keyframes dayPulse {
  0%       { box-shadow: 0 0 0 0 rgba(232, 86, 92, .42); }
  70%, 100% { box-shadow: 0 0 0 13px rgba(232, 86, 92, 0); }
}

/* チップは少しずつ置かれていく */
.chip { transition: background .25s ease, color .25s ease; }
.chip:hover { background: rgba(232, 86, 92, .12); color: var(--heart-deep); }
@media (prefers-reduced-motion: no-preference) {
  .js .is-visible .chip { animation: chipIn .5s cubic-bezier(.16, .84, .44, 1) both; }
  .js .is-visible .chip:nth-child(1) { animation-delay: .20s; }
  .js .is-visible .chip:nth-child(2) { animation-delay: .27s; }
  .js .is-visible .chip:nth-child(3) { animation-delay: .34s; }
  .js .is-visible .chip:nth-child(4) { animation-delay: .41s; }
  .js .is-visible .chip:nth-child(5) { animation-delay: .48s; }
  .js .is-visible .chip:nth-child(6) { animation-delay: .55s; }
  .js .is-visible .chip:nth-child(n+7) { animation-delay: .62s; }
}
@keyframes chipIn {
  from { opacity: 0; transform: translateY(8px) scale(.94); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .js .reveal { opacity: 1; translate: none; }
  .js .timeline-row { opacity: 1; translate: none; }
}
