/**
 * home.css
 * ホーム画面のスタイル
 */

.home-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: 32px 20px;
  gap: 0;
}

/* ── ロゴ・タイトル ── */
.home-logo {
  text-align: center;
  margin-bottom: 8px;
}

.app-title {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.1;
}

.app-title span {
  color: var(--accent);
}

.app-tagline {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-top: 8px;
  letter-spacing: 0.01em;
}

/* ── 前回設定サマリー ── */
.settings-summary {
  margin: 20px 0 28px;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  width: 100%;
  max-width: 340px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.settings-summary-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.settings-summary-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── ボタングループ ── */
.home-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 320px;
}

.btn-start {
  font-size: 1.25rem;
  padding: 20px 48px;
  border-radius: var(--radius-xl);
  width: 100%;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 24px rgba(91,141,217,0.4);
  letter-spacing: 0.03em;
}

.btn-start:hover {
  background: var(--accent-hover);
  box-shadow: 0 8px 28px rgba(91,141,217,0.5);
}

.home-sub-actions {
  display: flex;
  gap: 10px;
  width: 100%;
}

.home-sub-actions .btn {
  flex: 1;
}

/* ── フッター ── */
.home-footer {
  margin-top: auto;
  padding-top: 24px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}
