/* =============================================
   AIDISH SPA — 追加スタイル
   style.css を拡張（重複なし）
   ============================================= */

/* ── エージェントパネル表示制御 ── */
.agent-panel { display: block; }
.agent-panel.hidden { display: none !important; }

/* ── ストーリー角度カード ── */
.angle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 12px; }
@media (max-width: 700px) { .angle-grid { grid-template-columns: 1fr; } }
.angle-card {
  border: 2px solid var(--separator); border-radius: var(--radius-md);
  padding: 16px; cursor: pointer; transition: all .2s; background: var(--surface);
  position: relative;
}
.angle-card:hover { border-color: rgba(255,107,53,0.4); background: var(--fill-1); }
.angle-card.selected { border-color: var(--brand); background: var(--brand-light); }
.angle-card.selected::after {
  content: '✓'; position: absolute; top: 10px; right: 12px;
  color: var(--brand); font-size: 16px; font-weight: 900;
}
.angle-emoji { font-size: 28px; margin-bottom: 8px; }
.angle-name  { font-size: 14px; font-weight: 800; color: var(--label-1); margin-bottom: 6px; }
.angle-desc  { font-size: 12px; color: var(--label-2); line-height: 1.6; margin-bottom: 8px; }

/* ── 感情チップ ── */
.emotion-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.emotion-chip {
  padding: 8px 16px; border-radius: 20px; border: 1.5px solid var(--separator);
  font-size: 12px; font-weight: 700; cursor: pointer; transition: all .15s;
  background: var(--surface); color: var(--label-2);
}
.emotion-chip.selected {
  border-color: var(--brand); background: var(--brand-light); color: var(--brand);
}

/* ── ストーリー結果 ── */
.story-output { display: none; }
.story-output.visible { display: block; }
.story-section {
  background: var(--fill-1); border-radius: var(--radius-md);
  border-left: 3px solid var(--brand);
  padding: 14px 16px; margin-bottom: 10px; position: relative;
}
.story-section.highlight { border-left-color: #ff9800; background: #fff8e1; }
.story-section.fire      { border-left-color: #f44336; background: #fce4ec; }
.story-section-label {
  font-size: 10px; font-weight: 800; color: var(--brand);
  letter-spacing: .5px; margin-bottom: 6px;
}
.story-section.highlight .story-section-label { color: #e65100; }
.story-section.fire      .story-section-label { color: #c62828; }
.story-section-content { font-size: 13px; color: var(--label-1); line-height: 1.8; white-space: pre-wrap; }

/* ── タイトルチップ ── */
.title-chips { display: flex; flex-direction: column; gap: 6px; }
.title-chip {
  background: var(--surface); border: 1.5px solid var(--separator);
  border-radius: var(--radius-md); padding: 10px 14px;
  font-size: 13px; color: var(--label-1); font-weight: 700;
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
}

/* ── SNS投稿ボックス ── */
.sns-post-box {
  background: #fff; border: 2px solid var(--brand);
  border-radius: var(--radius-md); padding: 16px;
  font-size: 13px; line-height: 1.9; color: #333;
  white-space: pre-wrap; font-family: inherit;
}
.sns-copy-bar { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.btn-copy-sns {
  background: var(--brand); color: #fff; border: none; cursor: pointer;
  padding: 10px 18px; border-radius: var(--radius-md);
  font-size: 12px; font-weight: 700; font-family: inherit; transition: opacity .15s;
}
.btn-copy-sns:hover { opacity: .85; }
.btn-copy-sns.ghost {
  background: var(--fill-2); color: var(--brand);
  border: 1.5px solid var(--brand);
}

/* ── ローディングステージ ── */
.story-loading { display: none; text-align: center; padding: 40px 20px; }
.story-loading.visible { display: block; }
.loading-stages { display: flex; flex-direction: column; gap: 8px; max-width: 320px; margin: 20px auto 0; }
.loading-stage { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--label-2); }
.stage-icon {
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; background: var(--fill-1); flex-shrink: 0;
}
.stage-icon.done   { background: #e8f5e9; }
.stage-icon.active { background: var(--brand-light); animation: pulse 1s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .5; } }

/* ── シンプルモード ── */
.platform-grid { display: flex; gap: 8px; flex-wrap: wrap; margin: 10px 0; }
.platform-btn {
  padding: 8px 16px; border-radius: 20px; border: 1.5px solid var(--separator);
  font-size: 12px; font-weight: 700; cursor: pointer; background: var(--surface);
  color: var(--label-2); transition: all .15s; font-family: inherit;
}
.platform-btn.on { border-color: var(--brand); background: var(--brand-light); color: var(--brand); }

/* ── パイプラインステップ（動画AI） ── */
.pipeline-steps {
  display: flex; align-items: center; justify-content: center;
  gap: 0; background: var(--surface); border-radius: var(--radius-lg);
  padding: 12px 20px; box-shadow: var(--shadow-sm);
}
.pipeline-step {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: var(--radius-md);
  cursor: pointer; transition: all .2s;
  color: var(--label-3); font-size: 13px; font-weight: 600;
}
.pipeline-step:hover { background: var(--fill-1); }
.pipeline-step.active {
  background: var(--brand-light); color: var(--brand);
}
.pipeline-step.done {
  color: var(--green);
}
.pipeline-step-num {
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
  background: var(--fill-1); color: var(--label-3);
  transition: all .2s;
}
.pipeline-step.active .pipeline-step-num {
  background: var(--brand); color: #fff;
}
.pipeline-step.done .pipeline-step-num {
  background: var(--green); color: #fff;
}
.pipeline-step-label { white-space: nowrap; }
.pipeline-step-arrow {
  color: var(--label-4); font-size: 14px; margin: 0 4px;
  user-select: none;
}

/* ── ビデオステップ表示制御 ── */
.video-step { display: block; }
.video-step.hidden { display: none !important; }

/* ── プレビューキャンバス ── */
.overlay-preview {
  background: #000; border-radius: var(--radius-md);
  overflow: hidden; position: relative;
  aspect-ratio: 9 / 16; max-height: 480px;
  display: flex; align-items: center; justify-content: center;
}
.overlay-preview canvas {
  width: 100%; height: 100%; object-fit: contain;
}

/* ── プログレスバー ── */
.progress-wrap {
  background: var(--fill-1); border-radius: 6px;
  height: 8px; overflow: hidden;
}
.progress-fill {
  height: 100%; background: var(--brand);
  border-radius: 6px; transition: width .3s ease;
  width: 0%;
}

/* ── 文字カウント ── */
.char-count {
  font-size: 11px; color: var(--label-3);
  text-align: right; margin-top: 4px;
}

/* ── クリップリスト ── */
.clip-list {
  display: flex; flex-direction: column; gap: 6px;
}

/* ── メニュー管理の追加フォームグリッド（モバイル対応） ── */
@media (max-width: 900px) {
  .add-form-grid { grid-template-columns: 1fr 1fr !important; }
}

/* ── 設定ページ content-narrow ── */
.content-narrow { max-width: 680px; }

/* ── トップバーアクション ── */
.topbar-actions {
  display: flex; gap: 8px; align-items: center;
}
.topbar-actions .btn-sm {
  font-size: 12px; padding: 6px 14px;
}

/* ── クイックカードにリンクスタイル ── */
.quick-card { text-decoration: none; }
.quick-desc {
  font-size: 12px; color: var(--label-3); margin-top: 4px; line-height: 1.5;
}

/* ── フェードアップアニメーション ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── チップセレクト（目的・フォーマット選択） ── */
.chip-select {
  padding: 6px 14px; border-radius: 20px;
  border: 2px solid var(--separator); background: var(--surface);
  color: var(--label-2); font-size: 12px; font-weight: 700;
  cursor: pointer; transition: all .15s; font-family: inherit;
}
.chip-select:hover { border-color: rgba(255,107,53,0.4); }
.chip-select.active {
  border-color: var(--brand); background: var(--brand-light); color: var(--brand);
}

/* ── アップロードプレビュー行 ── */
.upload-preview-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; background: var(--fill-1);
  border-radius: var(--radius-sm); transition: background .15s;
}
.upload-preview-item:hover { background: var(--fill-2); }
.upload-preview-thumb {
  width: 48px; height: 48px; border-radius: 6px;
  object-fit: cover; flex-shrink: 0; background: var(--separator);
}
.upload-preview-info { flex: 1; min-width: 0; }
.upload-preview-name {
  font-size: 12px; font-weight: 600; color: var(--label-1);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.upload-preview-size { font-size: 11px; color: var(--label-3); margin-top: 2px; }
.upload-preview-remove {
  background: none; border: none; cursor: pointer;
  font-size: 16px; color: var(--label-4); padding: 4px;
  transition: color .15s; line-height: 1;
}
.upload-preview-remove:hover { color: var(--red); }

/* ── 容量バーの色変化 ── */
.upload-bar-warning { background: #f59e0b !important; }
.upload-bar-danger  { background: var(--red) !important; }

/* ── レスポンシブ: パイプライン ── */
@media (max-width: 600px) {
  .pipeline-steps { flex-wrap: wrap; gap: 4px; padding: 10px; }
  .pipeline-step { padding: 6px 10px; font-size: 12px; }
  .pipeline-step-arrow { display: none; }
}

/* ── レスポンシブ: 振り返り入力グリッド ── */
@media (max-width: 768px) {
  .review-input-grid { grid-template-columns: 1fr !important; }
  #panel-home .stat-grid + .mb-4 + .quick-grid + .card .review-input-grid + div {
    grid-template-columns: 1fr 1fr !important;
  }
}


/* ═══ movie.html固有スタイル移植（2026-07-11 フロントStage2統合・P3構造改善） ═══
   詳細モード（プロ編集）セクションと共有JS描画部品が使用。spa.css/style.cssに無いルールのみ */
.clip-list { display:flex; flex-direction:column; gap:10px; margin-top:14px; }
.clip-item {
      display:flex; gap:10px; align-items:flex-start;
      background:var(--fill-2); border-radius:var(--radius-md); padding:10px;
      cursor:grab;
    }
.clip-item.dragging { opacity:.4; }
.clip-thumb {
      /* 54px幅は「細い棒」で何の素材か判別できなかった（2026-07-21 店主指摘）→ 拡大 */
      width:78px; height:138px; border-radius:var(--radius-xs);
      overflow:hidden; flex-shrink:0; position:relative; background:#111;
    }
.clip-thumb img, .clip-thumb video { width:100%;height:100%;object-fit:cover; }
.clip-num {
      position:absolute;top:3px;left:3px;
      background:rgba(0,0,0,0.7);color:#fff;
      font-size:10px;font-weight:700;
      width:18px;height:18px;border-radius:50%;
      display:flex;align-items:center;justify-content:center;
    }
.clip-type-badge {
      position:absolute;bottom:3px;left:3px;right:3px;
      background:rgba(0,0,0,0.6);color:#fff;
      font-size:9px;text-align:center;border-radius:3px;padding:1px;
    }
.clip-settings { flex:1;min-width:0; }
.clip-label { font-size:12px;font-weight:600;color:var(--label-1);margin-bottom:6px;
      white-space:nowrap;overflow:hidden;text-overflow:ellipsis; }
.clip-row { display:flex;align-items:center;gap:8px;margin-bottom:6px; }
.clip-row label { font-size:11px;color:var(--label-3);width:50px;flex-shrink:0; }
.clip-select {
      flex:1;padding:5px 8px;border:1px solid var(--separator);border-radius:var(--radius-xs);
      font-size:12px;font-family:inherit;background:var(--surface);color:var(--label-1);
      -webkit-appearance:none;appearance:none;
    }
.clip-dur-input {
      width:52px;padding:5px 8px;border:1px solid var(--separator);border-radius:var(--radius-xs);
      font-size:12px;font-family:inherit;background:var(--surface);color:var(--label-1);text-align:center;
    }
.clip-del {
      background:var(--red-bg);color:var(--red);border:none;cursor:pointer;
      border-radius:var(--radius-xs);padding:4px 8px;font-size:12px;font-family:inherit;
      flex-shrink:0;align-self:flex-start;
    }
.trim-slider-wrap {
      position:relative;height:24px;margin:6px 0 2px;user-select:none;
    }
.trim-track {
      position:absolute;top:10px;left:0;right:0;height:4px;
      background:var(--separator);border-radius:2px;
    }
.trim-range {
      position:absolute;top:10px;height:4px;background:var(--brand);border-radius:2px;
    }
.trim-handle {
      position:absolute;top:4px;width:16px;height:16px;
      background:var(--brand);border:2px solid #fff;border-radius:50%;
      cursor:grab;box-shadow:0 1px 4px rgba(0,0,0,0.3);
      transform:translateX(-50%);
    }
.trim-handle:active { cursor:grabbing;transform:translateX(-50%) scale(1.2); }
.trim-labels {
      display:flex;justify-content:space-between;font-size:10px;color:var(--label-3);margin-top:2px;
    }
.tl-item {
      background:var(--fill-1);border:1px solid var(--separator);border-radius:var(--radius-sm);
      padding:10px;margin-bottom:8px;position:relative;
    }
.tl-item.tl-active { border-color:var(--brand); }
.tl-header { display:flex;justify-content:space-between;align-items:center;margin-bottom:8px; }
.tl-badge { font-size:10px;font-weight:700;color:var(--brand);background:var(--brand-light);
      border-radius:10px;padding:2px 8px; }
.tl-del { background:none;border:none;color:var(--red);cursor:pointer;font-size:14px;padding:0 4px; }
.tl-row { display:flex;gap:6px;align-items:center;margin-bottom:6px; }
.tl-row label { font-size:10px;color:var(--label-3);width:38px;flex-shrink:0; }
.tl-input { flex:1;padding:5px 8px;border:1px solid var(--separator);border-radius:var(--radius-xs);
      font-size:12px;background:var(--surface);color:var(--label-1);font-family:inherit; }
.tl-num { width:56px;text-align:center; }
.tl-pos-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:3px; }
.tl-pos-btn { padding:3px;border:1px solid var(--separator);border-radius:3px;
      font-size:9px;cursor:pointer;background:var(--surface-2);color:var(--label-3);text-align:center; }
.tl-pos-btn.active { border-color:var(--brand);background:var(--brand-light);color:var(--brand); }
.tl-style-row { display:flex;gap:4px;flex-wrap:wrap;margin-top:4px; }
.tl-bg-chip { padding:2px 8px;border:1px solid var(--separator);border-radius:10px;
      font-size:10px;cursor:pointer;background:var(--surface);color:var(--label-2); }
.tl-bg-chip.selected { border-color:var(--brand);background:var(--brand-light);color:var(--brand); }
.text-pos-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:4px;margin-top:8px; }
.text-pos-btn { padding:6px;border:1.5px solid var(--separator);border-radius:var(--radius-xs);
      font-size:11px;cursor:pointer;background:var(--surface-2);color:var(--label-3);
      font-family:inherit;transition:all var(--dur) var(--ease); }
.text-pos-btn.active { border-color:var(--brand);background:var(--brand-light);color:var(--brand); }
.hook-chip.active { border-color:var(--brand);background:var(--brand-light);color:var(--brand); }
#blur-toggle.active { background:var(--brand);color:#fff;border-color:var(--brand); }
.effect-legend { font-size:11px;color:var(--label-3);line-height:1.8; }
.pipeline-stage:last-child { border-bottom:none; }
.stage-icon.running { background:#fff3e0; border-color:#f90; animation:pulse .8s infinite; }
.stage-body { flex:1; min-width:0; }
.stage-label { font-size:13px; font-weight:700; color:var(--label-1); }
.stage-desc { font-size:12px; color:var(--label-3); margin-top:2px; }
.arc-phase {
      flex:1; border-radius:var(--radius-md); padding:10px 8px;
      text-align:center; cursor:pointer; transition:transform .15s;
    }
.arc-phase:hover { transform:translateY(-2px); }
.arc-phase.hook { background:#fff3e0; border:1.5px solid #f90; }
.arc-phase.buildup { background:#e8f5e9; border:1.5px solid #4caf50; }
.arc-phase.climax { background:#fce4ec; border:1.5px solid #e91e63; }
.arc-phase.cta { background:var(--brand-light); border:1.5px solid var(--brand); }
.arc-phase-emoji { font-size:20px; }
.arc-phase-name { font-size:10px; font-weight:700; margin-top:4px; }
.arc-phase-time { font-size:9px; color:var(--label-3); }
.arc-detail {
      background:var(--fill-1); border-radius:var(--radius-md);
      padding:12px 14px; margin-top:10px; display:none;
    }
.arc-detail.visible { display:block; }
.arc-detail-row { display:flex; gap:8px; margin-bottom:6px; align-items:flex-start; }
.arc-detail-row:last-child { margin-bottom:0; }
.arc-detail-key { font-size:11px; font-weight:700; color:var(--label-3); width:60px; flex-shrink:0; }
.arc-detail-val { font-size:12px; color:var(--label-1); line-height:1.6; }
.key-point-item {
      display:flex; align-items:flex-start; gap:8px;
      background:var(--surface); border:1px solid var(--separator);
      border-radius:var(--radius-md); padding:8px 12px;
    }
.key-point-num {
      width:22px; height:22px; border-radius:50%;
      background:var(--brand); color:#fff;
      font-size:11px; font-weight:700;
      display:flex; align-items:center; justify-content:center; flex-shrink:0;
    }
.key-point-text { font-size:13px; color:var(--label-1); line-height:1.5; }
.footage-card {
      position:relative; border-radius:var(--radius-md); overflow:hidden;
      aspect-ratio:9/16; max-height:180px; background:#111; cursor:pointer;
    }
.footage-card img { width:100%; height:100%; object-fit:cover; }
.footage-overlay {
      position:absolute; inset:0; background:linear-gradient(transparent 50%,rgba(0,0,0,.7));
      display:flex; flex-direction:column; justify-content:flex-end; padding:8px;
    }
.footage-dur { font-size:10px; color:#fff; font-weight:600; }
.footage-link { font-size:10px; color:var(--brand); text-decoration:none; }
.footage-link:hover { text-decoration:underline; }
.footage-no-key {
      background:var(--fill-2); border:2px dashed var(--separator);
      border-radius:var(--radius-md); padding:16px; text-align:center;
      color:var(--label-3); font-size:12px; line-height:1.7; margin-top:10px;
    }
.score-ring.high { background:linear-gradient(135deg,#4caf50,#81c784); }
.score-ring.mid  { background:linear-gradient(135deg,#ff9800,#ffb74d); }
.score-ring.low  { background:linear-gradient(135deg,#f44336,#e57373); }
.scene-card:hover { border-color:var(--brand-dim); }
.scene-card-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:6px; }
.scene-card-num { width:24px; height:24px; border-radius:50%; background:#6d28d9; color:#fff;
      font-size:11px; font-weight:800; display:flex; align-items:center; justify-content:center; }
.scene-card-model { font-size:10px; background:var(--fill-1); border-radius:12px; padding:2px 8px;
      font-weight:600; color:var(--label-2); }
.scene-card-cost { font-size:10px; font-weight:700; color:#059669; }
.scene-card-prompt { font-size:11px; color:var(--label-2); line-height:1.5; margin-top:4px;
      background:var(--fill-1); border-radius:6px; padding:6px 8px; }
.scene-card-model-select { font-size:11px; padding:3px 6px; border-radius:6px;
      border:1px solid var(--separator); background:var(--surface); color:var(--label-1); cursor:pointer; }
.scene-chain-arrow { text-align:center; font-size:16px; color:var(--label-3); margin:2px 0; }
.mv-angle-chip:hover  { border-color:var(--brand-dim); }
.mv-angle-chip.mv-selected { border-color:var(--brand); background:var(--brand-light); color:var(--brand); }
.qr-step { opacity:0.4; transition:opacity .3s; }
.qr-step.running { opacity:1; }
.qr-step.done { opacity:1; }
.qr-step.done .qr-step-icon { color:#22c55e; }

/* ═══ 動画モード切替（かんたん/プロ制作）— 2026-07-12 ═══
   セグメントコントロール。選択中はカード浮き上がり+ブランド色。
   プロ領域(#pro-mode-panel)の表示はspa-init.jsのsetVideoMode()が制御 */
.video-mode-switch {
  display: flex; gap: 4px;
  background: var(--fill-1);
  border-radius: 16px; padding: 4px;
  margin-bottom: 18px;
}
.vm-btn {
  flex: 1; border: none; background: transparent; cursor: pointer;
  border-radius: 13px; padding: 10px 8px 9px;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  color: var(--label-3);
  transition: all .22s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.vm-btn:hover { color: var(--label-2); }
.vm-btn .vm-title { font-size: 14px; font-weight: 800; letter-spacing: .01em; }
.vm-btn .vm-sub { font-size: 10px; opacity: .75; }
.vm-btn.active {
  background: var(--surface);
  color: var(--brand);
  box-shadow: 0 2px 10px rgba(0,0,0,.14), 0 0 0 1.5px var(--brand-dim, rgba(255,107,53,.35)) inset;
}
.vm-btn.active .vm-sub { opacity: .9; }
@media (max-width: 480px) {
  .vm-btn .vm-sub { font-size: 9px; }
}

/* ═══ 動画スタジオ デザイン刷新（2026-07-13）═══
   配色・タイポ・余白の統一レイヤー。DOM構造・IDは不変（checkVideoPanelIntegrityの保護対象）。
   原則: フルグラデ背景・2〜3pxの色枠を廃止し、
   「白カード + ヘアライン + 左アクセントレール + 色付きラベル」で機能色を示す */

/* ── パネル冒頭タイポ ── */
#panel-video .page-title { font-size: 26px; font-weight: 800; letter-spacing: -0.6px; }
#panel-video .page-subtitle { font-size: 13px; max-width: 560px; }

/* ── 機能カード（アクセントは左レール3px+ラベル色のみ） ── */
.studio-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--separator);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.studio-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--studio-bar, var(--brand));
}
.studio-brand  { --studio-bar: linear-gradient(180deg, var(--brand), var(--brand-dark)); --studio-ink: var(--brand); }
.studio-gold   { --studio-bar: linear-gradient(180deg, var(--gold-light), var(--gold)); --studio-ink: var(--gold); }
.studio-violet { --studio-bar: linear-gradient(180deg, var(--violet-light), var(--violet)); --studio-ink: var(--violet); }
.studio-rose   { --studio-bar: linear-gradient(180deg, #EF4444, var(--rose)); --studio-ink: var(--rose); }
.studio-card > .card-header .card-title,
.studio-card > .card-title { color: var(--studio-ink, var(--label-1)); }

/* ── カード内サブセクション（薄いティント面+ヘアライン） ── */
.studio-sub {
  background: var(--studio-tint, var(--surface-2));
  border: 1px solid var(--studio-line, var(--separator));
  border-radius: var(--radius-md);
  padding: 16px;
}
.studio-sub-gold   { --studio-tint: var(--gold-bg);   --studio-line: var(--gold-line); }
.studio-sub-violet { --studio-tint: var(--violet-bg); --studio-line: var(--violet-line); }

/* ── 通知バナー（台本が届いています等） ── */
.studio-banner {
  background: var(--brand-light);
  border: 1px solid rgba(255,107,53,0.35);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
}

/* ── アクセントボタン（btn-primaryと同じ造形言語のカラーバリエーション） ── */
.btn-gold   { background: linear-gradient(160deg, #F59E0B, var(--gold-light)); color: #fff; box-shadow: 0 2px 8px rgba(217,119,6,0.30); }
.btn-violet { background: linear-gradient(160deg, var(--violet-light), var(--violet)); color: #fff; box-shadow: 0 2px 8px rgba(109,40,217,0.30); }
.btn-sky    { background: linear-gradient(160deg, var(--sky-light), var(--sky)); color: #fff; box-shadow: 0 2px 8px rgba(2,132,199,0.30); }
.btn-teal   { background: linear-gradient(160deg, var(--teal-light), var(--teal)); color: #fff; box-shadow: 0 2px 8px rgba(5,150,105,0.30); }
.btn-rec    { background: linear-gradient(160deg, #EF4444, var(--rose)); color: #fff; box-shadow: 0 2px 8px rgba(220,38,38,0.30); }
.btn-gold:hover, .btn-violet:hover, .btn-sky:hover, .btn-teal:hover, .btn-rec:hover {
  transform: translateY(-1px); filter: brightness(1.04);
}
.btn-gold:active, .btn-violet:active, .btn-sky:active, .btn-teal:active, .btn-rec:active {
  transform: scale(0.97); box-shadow: none;
}

/* ── 主役CTA（全幅・太字） ── */
.btn-hero { width: 100%; font-weight: 800; font-size: 14px; padding: 13px 20px; border-radius: var(--radius-md); }

/* ── 3つの仕上げ経路ボタン（撮影台本/AI生成/高品質予約）── */
.btn-path { flex: 1; min-width: 150px; font-weight: 800; font-size: 13px; padding: 11px 12px; border-radius: var(--radius-sm); }

/* ── モード切替・ステップの磨き ── */
.video-mode-switch { border: 1px solid var(--separator-2); }
#panel-video .pipeline-steps { border: 1px solid var(--separator-2); }
