/*
 * shindan.css — /shindan/ wireframe-specific styles (issue #112)
 * Home V2 デザインシステム準拠。新規パターンのみ (prefix .wf-shindan__)。
 * 共通コンポーネント (.card/.badge/.btn-*/.section/.grid-*) は components.css/pages.css を再利用。
 */

/* === /shindan/ wireframe-specific (scoped, prefix .wf-shindan__) === */
.wf-shindan__eyebrow {
  font-size: var(--text-caption);
  font-weight: var(--weight-semibold);
  letter-spacing: .12em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}
.section--dark .wf-shindan__eyebrow { color: var(--color-accent-light); }

.wf-shindan__hero-title {
  color: #fff;
  font-size: var(--text-h1);
  font-weight: var(--weight-bold);
  line-height: 1.5;
  margin: 0 0 var(--space-2);
}
.wf-shindan__hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 auto var(--space-5);
  max-width: 36em;
}
.wf-shindan__hero-cta { margin-bottom: var(--space-3); }
.wf-shindan__proof {
  font-size: var(--text-caption);
  color: rgba(255,255,255,0.6);
}
.wf-shindan__proof strong { color: var(--color-accent-light); font-weight: var(--weight-bold); }

/* WHAT YOU GET / TYPES の中央寄せカード */
.wf-shindan__card-center { text-align: center; }
.wf-shindan__card-icon { font-size: 30px; line-height: 1; display: block; margin-bottom: var(--space-2); }
.wf-shindan__card-title {
  font-size: 14px;
  font-weight: var(--weight-semibold);
  color: var(--color-text-primary);
}
.wf-shindan__card-desc {
  font-size: var(--text-small);
  color: var(--color-text-secondary);
  margin-top: 4px;
}

/* 診断フロー 3-step (front-page の step 構文を踏襲) */
.wf-shindan__flow { align-items: stretch; }
.wf-shindan__step {
  text-align: center;
  padding: var(--space-5) var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.wf-shindan__step-num {
  font-size: var(--text-caption);
  font-weight: var(--weight-bold);
  letter-spacing: .08em;
  color: var(--color-accent);
}
.wf-shindan__step-title {
  font-size: 15px;
  font-weight: var(--weight-semibold);
  color: var(--color-text-primary);
  margin-top: 6px;
}
.wf-shindan__step-desc {
  font-size: var(--text-small);
  color: var(--color-text-secondary);
  margin-top: 4px;
}

/* 診断UI = 本物の QSM フォームの .quiz-box ラッパー */
.wf-shindan__quiz-box {
  max-width: 720px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.wf-shindan__quiz-lead {
  font-size: var(--text-caption);
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: var(--space-4);
}

/* 5タイプ プレビュー — grid-5 (theme に未定義のため本ページで定義) */
.wf-shindan__types {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-3);
}
.wf-shindan__type-icon {
  font-size: 26px;
  line-height: 1;
  display: block;
  margin-bottom: var(--space-2);
}
.wf-shindan__type-name {
  font-size: 12px;
  font-weight: var(--weight-semibold);
  color: var(--color-text-primary);
}
.wf-shindan__type-locked {
  display: block;
  font-size: 11px;
  color: var(--color-text-secondary);
  margin-top: 2px;
}

/* 結果ページ構成 callout */
.wf-shindan__callout {
  background: var(--color-accent-bg);
  border: 1px solid var(--color-accent-light);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  max-width: 760px;
  margin: 0 auto;
}
.wf-shindan__callout-label {
  display: inline-block;
  font-size: var(--text-small);
  font-weight: var(--weight-bold);
  letter-spacing: .08em;
  color: var(--color-accent);
  margin-bottom: 6px;
}
.wf-shindan__callout-body {
  font-size: var(--text-caption);
  color: var(--color-text-body);
  line-height: 1.8;
  margin: 0;
}

/* CTA バンド */
.wf-shindan__band { text-align: center; }
.wf-shindan__band-title {
  color: #fff;
  font-size: var(--text-h2);
  font-weight: var(--weight-bold);
  margin: 0 0 var(--space-4);
}

@media (max-width: 768px) {
  .wf-shindan__types { grid-template-columns: repeat(2, 1fr); }
}
