html {
  scroll-behavior: smooth;
}

body {
  background-color: #050505;
  color: #fff;
  overflow-x: hidden;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

/* スクロールアニメーション（控えめ） */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ホバー：Feature カード */
.feature-card {
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-2px);
}
.feature-card:hover i {
  color: #fff;
}

/* ホバー：ステップ画像 */
.step-img {
  transition: border-color 0.3s ease;
}
.step-img:hover {
  border-color: rgba(255,255,255,0.25);
}

/* インストールステップ */
.install-step {
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s ease;
}
.install-step:hover {
  border-color: rgba(255, 255, 255, 0.15);
}
.install-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 11px;
  font-weight: 700;
  color: #888;
}
/* ホバー：動作環境テーブル行 */
.env-row td {
  transition: color 0.3s ease;
}
.env-row:hover td {
  color: #fff;
}
