/* =========================================================
   VJ AutoStage ランディングページ スタイル
   ブランド: ダーク背景 × ネオン（緑→シアン→青→紫→ピンク）
   フォント: Montserrat（見出し）/ Noto Sans JP（本文）
   ========================================================= */

:root {
  --bg:       #07070e;
  --bg-2:     #0c0c16;
  --panel:    #11111d;
  --panel-2:  #161626;
  --line:     rgba(255,255,255,0.10);
  --text:     #eef0f8;
  --muted:    #9aa0bd;
  --muted-2:  #6e7494;

  --green:  #39ff9b;
  --cyan:   #2fe6ff;
  --blue:   #4d8cff;
  --purple: #8a6cff;
  --pink:   #ff5cae;
  --rec:    #ff3b52;  /* 録画（REC）専用アクセント。新機能を一目で立たせるための唯一の暖色 */

  --grad-brand: linear-gradient(100deg, #39ff9b 0%, #2fe6ff 32%, #6a5cff 66%, #ff5cae 100%);
  --grad-cta:   linear-gradient(135deg, #6a5cff 0%, #ff5cae 100%);
  --glow-cta:   0 10px 40px -8px rgba(138,108,255,0.65);

  --maxw: 1180px;
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  /* 日本語本文はシステムフォント（アプリ本体と同様）。Noto Sans JP は導入済み環境でのみ使用 */
  font-family: "Segoe UI", "Yu Gothic UI", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* 背景の常時グロー（固定） */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(60vw 60vw at 12% -5%, rgba(57,255,155,0.10), transparent 60%),
    radial-gradient(55vw 55vw at 95% 5%, rgba(47,230,255,0.10), transparent 60%),
    radial-gradient(70vw 70vw at 50% 110%, rgba(138,108,255,0.14), transparent 60%);
}
body::after {
  content: "";
  position: fixed; inset: 0; z-index: -2;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 75%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 92%; max-width: var(--maxw); margin: 0 auto; }

/* ---------- タイポ ---------- */
h1, h2, h3, .eyebrow, .btn, .nav-link, .stat-num {
  /* 英字は Montserrat（同梱）、日本語はシステムのゴシック太字へフォールバック */
  font-family: "Montserrat", "Yu Gothic UI", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
}
h2 { font-size: clamp(1.7rem, 4.2vw, 3rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.01em; }
h3 { font-size: 1.18rem; font-weight: 700; }
p  { color: var(--muted); }

.grad-text {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cyan);
  padding: 7px 14px; border: 1px solid var(--line); border-radius: 999px;
  background: rgba(47,230,255,0.06);
}
.eyebrow::before { content:""; width:7px; height:7px; border-radius:50%; background: var(--green); box-shadow: 0 0 10px var(--green); }

.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 16px; font-size: 1.05rem; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 1rem; letter-spacing: 0.01em;
  padding: 15px 28px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad-cta); color: #fff; box-shadow: var(--glow-cta); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 50px -8px rgba(255,92,174,0.7); }
.btn-ghost { background: rgba(255,255,255,0.04); color: var(--text); border-color: var(--line); }
.btn-ghost:hover { background: rgba(255,255,255,0.10); transform: translateY(-2px); }
.btn-lg { padding: 18px 40px; font-size: 1.12rem; }
.btn-block { width: 100%; }

.cta-note { font-size: 0.82rem; color: var(--muted-2); margin-top: 12px; }

/* ---------- ナビ ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: rgba(7,7,14,0.66); border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 22px; height: 68px; }
.nav-logo img { height: 30px; }
.nav-links { display: flex; gap: 26px; margin-left: 14px; }
.nav-link { font-size: 0.9rem; font-weight: 600; color: var(--muted); transition: color .2s; }
.nav-link:hover { color: var(--text); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }

.lang-toggle { display: flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.lang-toggle button {
  background: transparent; color: var(--muted); border: none; cursor: pointer;
  font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 0.78rem;
  padding: 7px 12px; transition: background .2s, color .2s;
}
.lang-toggle button.active { background: var(--grad-cta); color: #fff; }
.nav .btn { padding: 11px 20px; font-size: 0.9rem; }

/* ---------- ヒーロー ---------- */
.hero { position: relative; padding: clamp(56px, 8vw, 110px) 0 clamp(40px,6vw,80px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero-logo { width: min(440px, 80%); margin-bottom: 26px; filter: drop-shadow(0 8px 40px rgba(106,92,255,0.45)); }
.hero h1 { font-size: clamp(2.1rem, 5.2vw, 3.8rem); font-weight: 900; line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 22px; }
.hero p.lead { font-size: clamp(1.02rem, 1.6vw, 1.22rem); color: var(--muted); max-width: 560px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 26px; }
.hero-badge { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--muted); }
.hero-badge svg { width: 16px; height: 16px; color: var(--green); }

/* 画面モックアップ */
.mockup {
  position: relative; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line); background: #000;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.9), 0 0 0 1px rgba(255,255,255,0.04);
}
.mockup .bar { height: 34px; background: #0d0d16; display: flex; align-items: center; gap: 7px; padding: 0 14px; border-bottom: 1px solid var(--line); }
.mockup .bar i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.mockup .bar i:nth-child(1){ background:#ff5f57 } .mockup .bar i:nth-child(2){ background:#febc2e } .mockup .bar i:nth-child(3){ background:#28c840 }
.mockup img, .mockup video { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.mockup.glow { box-shadow: 0 40px 90px -24px rgba(106,92,255,0.5), 0 0 0 1px rgba(255,255,255,0.05); }
.mockup .bar-title { margin-left: 10px; font-size: 0.72rem; color: var(--muted-2); font-family: "Montserrat", sans-serif; letter-spacing: 0.04em; }

/* 動画＋音声トグル */
.video-wrap { position: relative; }
.vid-btn {
  position: absolute; right: 12px; bottom: 12px; z-index: 2;
  width: 42px; height: 42px; border-radius: 50%; cursor: pointer;
  background: rgba(7,7,14,0.62); border: 1px solid rgba(255,255,255,0.25); color: #fff;
  display: grid; place-items: center; backdrop-filter: blur(6px);
  transition: background .2s, transform .15s;
}
.vid-btn:hover { background: rgba(106,92,255,0.7); transform: scale(1.06); }
.vid-btn svg { width: 20px; height: 20px; }
.vid-btn .i-on { display: none; }
.vid-btn.on .i-on { display: block; }
.vid-btn.on .i-off { display: none; }

.hero-vid-actions { margin-top: 16px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-vid-actions .btn { padding: 11px 20px; font-size: 0.92rem; }
.vid-hint { font-size: 0.8rem; color: var(--muted-2); }

/* フル尺モーダル */
.vid-modal {
  position: fixed; inset: 0; z-index: 110; background: rgba(0,0,0,0.94);
  display: none; place-items: center; padding: 3vw;
}
.vid-modal.open { display: grid; }
.vid-modal video { width: min(62vw, 1080px); max-height: 60vh; border-radius: 10px; background: #000; box-shadow: 0 30px 80px rgba(0,0,0,0.8); outline: none; }
.vm-close { position: absolute; top: 18px; right: 26px; font-size: 2rem; color: #fff; background: none; border: none; cursor: pointer; line-height: 1; }
.vm-close:hover { color: var(--pink); }
.float { animation: float 7s ease-in-out infinite; }
@keyframes float { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-12px) } }

/* ---------- ロゴ帯 / トラスト ---------- */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.015); }
.trust-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 44px; padding: 26px 0; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 0.92rem; font-weight: 600; }
.trust-item svg { width: 20px; height: 20px; color: var(--cyan); }

/* ---------- 没入セクション ---------- */
.immersive { text-align: center; }
.immersive h2 { font-size: clamp(2rem, 6vw, 4.2rem); font-weight: 900; line-height: 1.1; }
.immersive p { font-size: 1.15rem; max-width: 660px; margin: 24px auto 0; }

/* ---------- 特徴グリッド ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature {
  background: linear-gradient(160deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px;
  transition: transform .25s ease, border-color .25s ease;
}
.feature:hover { transform: translateY(-6px); border-color: rgba(138,108,255,0.5); }
.feature .ic {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 16px;
  background: rgba(138,108,255,0.12); border: 1px solid rgba(138,108,255,0.3);
}
.feature .ic svg { width: 24px; height: 24px; color: var(--cyan); }
.feature h3 { margin-bottom: 8px; }
.feature p { font-size: 0.92rem; }

/* ---------- 対象ユーザー ---------- */
.persona-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.persona {
  position: relative; overflow: hidden;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 30px;
}
.persona::after { content:""; position:absolute; left:0; top:0; bottom:0; width:4px; background: var(--grad-brand); }
.persona .role { font-family:"Montserrat",sans-serif; font-weight:800; font-size:1.25rem; margin-bottom:6px; }
.persona .role span { font-size: 0.8rem; color: var(--muted-2); font-weight:600; margin-left: 8px; letter-spacing: .04em; }
.persona p { font-size: 0.96rem; }

/* ---------- ステップ ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { text-align: center; padding: 10px; }
.step .num {
  font-family:"Montserrat",sans-serif; font-weight:900; font-size: 2.4rem;
  width: 78px; height: 78px; margin: 0 auto 18px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  background: rgba(255,255,255,0.03); border: 1px solid var(--line);
}
.step:nth-child(1) .num { box-shadow: inset 0 0 26px rgba(57,255,155,0.35); }
.step:nth-child(2) .num { box-shadow: inset 0 0 26px rgba(47,230,255,0.35); }
.step:nth-child(3) .num { box-shadow: inset 0 0 26px rgba(255,92,174,0.4); }
.step h3 { margin-bottom: 8px; }
.step p { font-size: 0.95rem; }

/* ---------- ギャラリー ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery figure { position: relative; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); cursor: pointer; }
.gallery img { aspect-ratio: 16/9; object-fit: cover; width: 100%; transition: transform .4s ease; }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figure::after {
  content: "⤢"; position: absolute; right: 12px; bottom: 8px; font-size: 1rem; color: #fff;
  opacity: 0; transition: opacity .25s; text-shadow: 0 1px 4px #000;
}
.gallery figure:hover::after { opacity: 0.9; }

/* ライトボックス */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,0.92); display: none; place-items: center; padding: 4vw; }
.lightbox.open { display: grid; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,0.8); }
.lightbox .close { position: absolute; top: 20px; right: 28px; font-size: 2rem; color: #fff; cursor: pointer; background: none; border: none; }

/* ---------- 仕様 ---------- */
.specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 40px; }
.spec { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.spec .k { min-width: 130px; font-weight: 700; color: var(--text); font-size: 0.95rem; }
.spec .v { color: var(--muted); font-size: 0.95rem; }

/* ライセンス */
.license-card {
  background: linear-gradient(160deg, var(--panel-2), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(28px,4vw,48px);
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 36px; align-items: center;
}
.license-card ul { list-style: none; margin-top: 18px; }
.license-card li { display: flex; gap: 12px; margin-bottom: 12px; color: var(--muted); }
.license-card li svg { width: 20px; height: 20px; color: var(--green); flex: 0 0 auto; margin-top: 3px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; background: var(--panel); overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 700; font-size: 1.02rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--cyan); transition: transform .2s; flex: 0 0 auto; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .ans { padding: 0 24px 22px; color: var(--muted); font-size: 0.96rem; }

/* ---------- 最終CTA ---------- */
.cta-band { text-align: center; }
.cta-band .inner {
  background: var(--grad-cta); border-radius: 28px; padding: clamp(44px,6vw,80px) 24px;
  position: relative; overflow: hidden;
}
.cta-band .inner::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 30% 0%, rgba(255,255,255,0.25), transparent 55%); }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: rgba(255,255,255,0.9); position: relative; max-width: 560px; margin: 16px auto 30px; }
.cta-band .btn-ghost { background: rgba(255,255,255,0.16); color: #fff; border-color: rgba(255,255,255,0.4); }
.cta-band .btn-light { background: #fff; color: #5a3df0; }
.cta-band .btn-light:hover { transform: translateY(-2px); box-shadow: 0 16px 50px -10px rgba(0,0,0,0.5); }
.cta-band .actions { position: relative; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- フッター ---------- */
footer { border-top: 1px solid var(--line); padding: 56px 0 40px; }
.foot-grid { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; align-items: flex-start; }
footer .logo img { height: 34px; margin-bottom: 14px; }
footer p { font-size: 0.88rem; color: var(--muted-2); max-width: 320px; }
.foot-links { display: flex; gap: 40px; flex-wrap: wrap; }
.foot-col h4 { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 14px; }
.foot-col a { display: block; color: var(--muted); font-size: 0.92rem; margin-bottom: 9px; transition: color .2s; }
.foot-col a:hover { color: var(--text); }
.foot-bottom { margin-top: 42px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 0.82rem; color: var(--muted-2); }

/* ---------- 追従ダウンロード ---------- */
.float-dl {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  opacity: 0; transform: translateY(20px) scale(0.9); pointer-events: none;
  transition: opacity .3s, transform .3s;
}
.float-dl.show { opacity: 1; transform: none; pointer-events: auto; }

/* ---------- 言語切替の表示制御 ---------- */
[data-en] { transition: opacity .15s; }

/* ---------- スクロール演出 ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- レスポンシブ ---------- */
/* 英語表記はナビ項目が横に長くなるため、狭めのデスクトップでは間隔を詰めて折返しを防ぐ */
@media (max-width: 1160px) {
  .nav-links { gap: 18px; margin-left: 8px; }
  .nav-inner { gap: 14px; }
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-logo { margin-inline: auto; }
  .hero { text-align: center; }
  .hero p.lead { margin-inline: auto; }
  .hero-actions, .hero-badges { justify-content: center; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .license-card { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .persona-grid, .steps, .gallery, .specs { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .foot-grid { flex-direction: column; }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  /* 狭い画面では長いラベル（「無料版を入手（Microsoft Store）」等）を折り返す。
     nowrap のままだとボタンがカード幅を超えて右へはみ出す。 */
  .btn { white-space: normal; text-align: center; }
  .btn-lg { padding: 16px 22px; font-size: 1.02rem; }
  /* グリッド／フレックスの子は既定で min-width:auto のため、中身が縮まずはみ出す */
  .license-card, .license-card > div { min-width: 0; }
}

/* =========================================================
   追加: 比較表 / 記事・ドキュメント / 法務ページ 共通スタイル
   ========================================================= */

/* ---------- 比較表 ---------- */
.compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(160deg, var(--panel), var(--bg-2));
}
.compare-table { width: 100%; border-collapse: collapse; min-width: 680px; }
.compare-table th, .compare-table td {
  padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.94rem; vertical-align: top;
}
.compare-table thead th {
  font-family: "Montserrat", sans-serif; font-weight: 800; color: var(--text);
  font-size: 0.9rem; letter-spacing: 0.02em;
}
.compare-table thead th.col-own {
  background: rgba(138,108,255,0.16); color: #fff;
  border-bottom: 2px solid rgba(138,108,255,0.6);
}
.compare-table tbody td.col-own { background: rgba(138,108,255,0.06); color: var(--text); font-weight: 600; }
.compare-table tbody th { font-weight: 700; color: var(--muted); white-space: nowrap; }
.compare-table tbody tr:last-child td, .compare-table tbody tr:last-child th { border-bottom: none; }
.compare-yes { color: var(--green); font-weight: 700; }
.compare-partial { color: var(--cyan); font-weight: 700; }
.compare-no { color: var(--muted-2); }
.compare-note { margin-top: 14px; font-size: 0.82rem; color: var(--muted-2); }

/* ---------- 記事・ドキュメント共通 ---------- */
.doc-main { padding: clamp(36px, 6vw, 64px) 0 20px; }
.breadcrumb { font-size: 0.82rem; color: var(--muted-2); margin-bottom: 22px; display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb span { color: var(--muted-2); }

.article { max-width: 820px; margin: 0 auto; }
.article-head { margin-bottom: 38px; }
.article-head .eyebrow { margin-bottom: 18px; }
.article-head h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); font-weight: 900; line-height: 1.16; letter-spacing: -0.01em; margin-bottom: 16px; }
.article-head .meta { font-size: 0.84rem; color: var(--muted-2); }
.article-head .lead { font-size: 1.12rem; color: var(--muted); margin-top: 18px; line-height: 1.75; }

.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: clamp(1.4rem, 3vw, 1.95rem); font-weight: 800; margin: 46px 0 16px; line-height: 1.25; }
.prose h3 { font-size: 1.15rem; font-weight: 700; margin: 30px 0 10px; color: var(--text); }
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol { margin: 0 0 18px 1.25em; color: var(--muted); }
.prose li { margin-bottom: 9px; }
.prose li::marker { color: var(--cyan); }
.prose strong { color: var(--text); }
.prose a { color: var(--cyan); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--text); }
.prose .compare-wrap, .prose figure { margin: 26px 0; }

.callout { border: 1px solid rgba(138,108,255,0.4); background: rgba(138,108,255,0.08); border-radius: 14px; padding: 20px 22px; margin: 26px 0; }
.callout p { margin: 0; color: var(--text); font-size: 0.96rem; }
.callout strong { color: #fff; }

/* 記事内CTA */
.article-cta {
  margin: 50px auto; max-width: 820px; padding: clamp(28px,4vw,40px);
  border-radius: var(--radius); text-align: center;
  background: linear-gradient(160deg, var(--panel-2), var(--bg-2)); border: 1px solid var(--line);
}
.article-cta h3 { font-size: 1.35rem; margin-bottom: 8px; }
.article-cta p { margin-bottom: 22px; font-size: 0.96rem; }

/* 関連記事 */
.related { max-width: 820px; margin: 60px auto 0; }
.related h2 { font-size: 1.3rem; font-weight: 800; margin-bottom: 18px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.related-card { display: block; padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--panel); transition: transform .2s, border-color .2s; }
.related-card:hover { transform: translateY(-4px); border-color: rgba(138,108,255,0.5); }
.related-card .k { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan); font-weight: 700; }
.related-card h3 { margin: 8px 0 6px; font-size: 1.02rem; }
.related-card p { font-size: 0.85rem; color: var(--muted-2); }

/* ---------- 法務・定義リスト ---------- */
.legal-list { border-top: 1px solid var(--line); margin-top: 8px; }
.legal-list .row { display: grid; grid-template-columns: 240px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.legal-list .row .k { font-weight: 700; color: var(--text); font-size: 0.95rem; }
.legal-list .row .v { color: var(--muted); font-size: 0.95rem; }
.legal-list .row .v .todo { color: var(--pink); font-weight: 700; }
@media (max-width: 640px) { .legal-list .row { grid-template-columns: 1fr; gap: 4px; } }

/* =========================================================
   追加: v1.1.0（画面録画）関連
   ========================================================= */

/* ---------- ヒーローのバージョン告知ピル ---------- */
.ver-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 8px 7px 7px; margin-bottom: 20px;
  border-radius: 999px; border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  font-size: 0.84rem; font-weight: 600; color: var(--muted);
  transition: border-color .25s, color .25s, transform .25s;
}
.ver-pill:hover { color: var(--text); border-color: rgba(138,108,255,0.6); transform: translateY(-2px); }
.ver-pill .vp-tag {
  font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 0.7rem; letter-spacing: 0.08em;
  padding: 4px 9px; border-radius: 999px; color: #fff; background: var(--grad-cta);
}
.ver-pill b { color: var(--cyan); font-weight: 700; }
.ver-pill .vp-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--rec);
  box-shadow: 0 0 10px var(--rec); animation: recBlink 1.4s ease-in-out infinite;
}
@keyframes recBlink { 0%,100% { opacity: 1 } 50% { opacity: 0.25 } }

/* ---------- 録画セクション ---------- */
.rec-grid { display: grid; grid-template-columns: 1.08fr 1fr; gap: 52px; align-items: center; }
.rec-copy h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.rec-copy .lead { font-size: 1.02rem; margin-top: 16px; }
.rec-note { font-size: 0.8rem; color: var(--muted-2); margin-top: 16px; line-height: 1.65; }

.rec-points { display: grid; gap: 12px; margin-top: 30px; }
.rec-point {
  display: flex; gap: 14px; align-items: flex-start;
  background: linear-gradient(160deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px;
}
.rec-point .ic {
  width: 38px; height: 38px; flex: 0 0 auto; border-radius: 10px; display: grid; place-items: center;
  background: rgba(255,59,82,0.10); border: 1px solid rgba(255,59,82,0.32);
}
.rec-point .ic svg { width: 19px; height: 19px; color: var(--rec); }
.rec-point h3 { font-size: 1rem; margin-bottom: 3px; }
.rec-point p { font-size: 0.9rem; }
.rec-point .chips { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
.rec-point .chips span {
  font-family: "Montserrat", sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.03em;
  padding: 4px 10px; border-radius: 999px; color: var(--muted);
  background: rgba(255,255,255,0.04); border: 1px solid var(--line);
}
.rec-point .chips span.on { color: #fff; background: rgba(255,59,82,0.16); border-color: rgba(255,59,82,0.5); }

/* 録画中の画面を模したHUD（映像の上に重ねる） */
.rec-visual .video-wrap { position: relative; }
.rec-hud {
  position: absolute; top: 14px; left: 14px;
  display: flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(7,7,14,0.62); border: 1px solid rgba(255,59,82,0.45);
  backdrop-filter: blur(6px);
  font-family: "Montserrat", sans-serif; font-size: 0.74rem; font-weight: 800; letter-spacing: 0.08em; color: #fff;
}
.rec-hud .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--rec); box-shadow: 0 0 12px var(--rec); animation: recBlink 1.4s ease-in-out infinite; }
.rec-hud .t { font-weight: 600; color: rgba(255,255,255,0.78); letter-spacing: 0.06em; }
.rec-badge {
  position: absolute; right: 14px; bottom: 14px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(7,7,14,0.62); border: 1px solid var(--line); backdrop-filter: blur(6px);
  font-family: "Montserrat", sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; color: var(--muted);
}

/* ---------- 特徴グリッドの新機能カード（最終行いっぱいの横長バナー） ---------- */
.feature-new {
  grid-column: 1 / -1; position: relative;
  display: flex; align-items: center; gap: 26px;
  padding: 26px 30px;
  border-color: rgba(255,59,82,0.38);
  background:
    radial-gradient(60% 160% at 100% 0%, rgba(255,59,82,0.14), transparent 62%),
    linear-gradient(160deg, var(--panel), var(--bg-2));
}
.feature-new .ic { margin-bottom: 0; flex: 0 0 auto; width: 52px; height: 52px; }
.feature-new .ic svg { width: 26px; height: 26px; }
.feature-new .fn-body { flex: 1 1 auto; padding-right: 90px; }
.feature-new p { font-size: 0.95rem; }
.feature-new:hover { border-color: rgba(255,59,82,0.75); }
.feature-new .ic { background: rgba(255,59,82,0.12); border-color: rgba(255,59,82,0.32); }
.feature-new .ic svg { color: var(--rec); }
.feature-new .new-badge {
  position: absolute; top: 20px; right: 20px;
  font-family: "Montserrat", sans-serif; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em;
  padding: 5px 10px; border-radius: 999px; color: #fff; background: var(--rec);
  box-shadow: 0 6px 20px -6px rgba(255,59,82,0.8);
}
.feature-new .feature-link { display: inline-block; margin-top: 12px; font-size: 0.88rem; font-weight: 700; color: var(--cyan); }
.feature-new .feature-link:hover { color: var(--text); }

/* ---------- 更新履歴 ---------- */
.changelog { max-width: 820px; margin: 0 auto; }
.changelog summary { gap: 12px; }
.changelog .cl-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.changelog .cl-ver {
  font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 0.98rem;
  padding: 4px 12px; border-radius: 999px;
  background: rgba(138,108,255,0.14); border: 1px solid rgba(138,108,255,0.4); color: #fff;
}
.changelog .cl-date { font-size: 0.8rem; color: var(--muted-2); font-weight: 600; }
.changelog .cl-tag {
  font-family: "Montserrat", sans-serif; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.08em;
  padding: 4px 9px; border-radius: 999px; color: #fff; background: var(--rec);
}
.changelog .ans ul { list-style: none; }
.changelog .ans li { position: relative; padding-left: 22px; margin-bottom: 10px; line-height: 1.75; }
.changelog .ans li::before { content: "—"; position: absolute; left: 0; top: 0; color: var(--muted-2); }
.changelog .ans strong { color: var(--text); }

@media (max-width: 980px) {
  .rec-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 760px) {
  .feature-new { flex-direction: column; align-items: flex-start; gap: 16px; }
  .feature-new .fn-body { padding-right: 0; }
  .feature-new .new-badge { position: static; display: inline-block; }
}
