/* ============================================================
 * Keyboardister.com — style.css
 * 配色は config.js → applyTheme() が :root へ注入（下のフォールバックは保険）。
 * ブランドマーク・トップバー・ボタン・フッターの流儀は Pad / Launcher に準拠。
 * ============================================================ */

:root {
  --bg:#0d0e12; --surface:#16181f; --surface-2:#1f222b; --surface-3:#282b35;
  --border:#2a2d36; --border-strong:#3a3e4a;
  --text:#e8e9ed; --text-mute:#9095a0; --text-dim:#6b6f78;
  --accent:#f5a623; --accent-hover:#ffb83a; --section:#5fd4b8; --danger:#ff6b6b;

  --maxw:1120px;
  --radius:14px; --radius-sm:9px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN",
          "Hiragino Sans", Meiryo, "Noto Sans JP", system-ui, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Noto Sans Mono CJK JP", monospace;
}

* { box-sizing:border-box; }
html { scroll-behavior:smooth; scroll-padding-top:72px; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }

body {
  margin:0; background:var(--bg); color:var(--text);
  font-family:var(--font); line-height:1.7;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
}
a { color:inherit; text-decoration:none; }
img { max-width:100%; display:block; }
:focus-visible { outline:2px solid var(--accent); outline-offset:2px; border-radius:4px; }

/* ---------- ブランドマーク（CSS再現・--ms で可変） ---------- */
.brand-mark, .hero-mark {
  --ms:22px; width:var(--ms); height:var(--ms); position:relative; flex-shrink:0;
  background:linear-gradient(135deg, var(--accent), #ff8a00);
  border-radius:calc(var(--ms) * .227);
  box-shadow:0 0 0 1px rgba(245,166,35,.3), 0 2px 10px rgba(245,166,35,.22);
  transition:transform .15s ease;
}
.brand-mark::before, .brand-mark::after,
.hero-mark::before, .hero-mark::after {
  content:""; position:absolute; background:var(--bg);
  width:calc(var(--ms) * .182); height:calc(var(--ms) * .637); top:calc(var(--ms) * .182);
  border-radius:0;
}
.brand-mark::before, .hero-mark::before { left:calc(var(--ms) * .207); }
.brand-mark::after,  .hero-mark::after  { left:calc(var(--ms) * .613); }
.brand:hover .brand-mark { transform:scale(1.08); }

/* ---------- トップバー ---------- */
.topbar {
  position:sticky; top:0; z-index:50;
  background:color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter:saturate(140%) blur(10px);
  border-bottom:1px solid var(--border);
}
.topbar-inner {
  max-width:var(--maxw); margin:0 auto; padding:10px 20px;
  display:flex; align-items:center; gap:16px;
}
.brand { display:inline-flex; align-items:center; gap:9px; }
.brand-text { font-weight:700; letter-spacing:.2px; padding:2px 4px; border-radius:4px; transition:background .15s; }
.brand:hover .brand-text { background:var(--surface-2); }
.topnav { display:flex; gap:4px; }
.topnav a {
  color:var(--text-mute); font-size:.86rem; padding:7px 11px; border-radius:8px; transition:.15s;
}
.topnav a:hover { color:var(--text); background:var(--surface-2); }
.topbar-spacer { flex:1; }

/* ---------- ボタン ---------- */
.btn {
  display:inline-flex; align-items:center; gap:8px; cursor:pointer;
  font:inherit; font-size:.9rem; font-weight:600; color:var(--text);
  background:var(--surface-2); border:1px solid var(--border-strong);
  padding:9px 15px; border-radius:10px; transition:.15s; white-space:nowrap;
}
.btn:hover { background:var(--surface-3); }
.btn svg { width:17px; height:17px; }
.btn-primary {
  color:#1a1205; background:linear-gradient(135deg, var(--accent), #ff8a00);
  border-color:transparent; box-shadow:0 2px 12px rgba(245,166,35,.25);
}
.btn-primary:hover { filter:brightness(1.06); background:linear-gradient(135deg, var(--accent-hover), #ff9a18); }
.btn-ghost { background:transparent; }
.btn-mini { padding:7px 12px; font-size:.84rem; }
.btn-chrome { color:var(--section); border-color:color-mix(in srgb, var(--section) 35%, var(--border)); background:color-mix(in srgb, var(--section) 8%, var(--surface-2)); }
.btn-chrome:hover { background:color-mix(in srgb, var(--section) 14%, var(--surface-2)); }
.launcher-btn {
  color:var(--accent); background:color-mix(in srgb, var(--accent) 12%, var(--surface-2));
  box-shadow:0 0 0 1px color-mix(in srgb, var(--accent) 30%, transparent);
}
.launcher-btn:hover { color:var(--accent-hover); background:color-mix(in srgb, var(--accent) 18%, var(--surface-2)); }

/* ---------- レイアウト ---------- */
.container { max-width:var(--maxw); margin:0 auto; padding:0 20px 40px; }
.sec { padding:54px 0 8px; }
.sec-head { margin-bottom:22px; }
.eyebrow {
  display:inline-block; font-size:.72rem; font-weight:700; letter-spacing:.18em;
  text-transform:uppercase; color:var(--accent); margin-bottom:8px;
}
.sec-title { font-size:1.55rem; font-weight:800; letter-spacing:.2px; margin:0; }
.sec-note { color:var(--text-mute); margin:0 0 18px; }
.sec-note.small { font-size:.85rem; }

/* ---------- ヒーロー ---------- */
.hero {
  max-width:var(--maxw); margin:0 auto; padding:46px 20px 22px;
}
.hero-grid {
  display:grid; grid-template-columns:1.15fr .85fr; gap:40px; align-items:center;
}
.hero-mark { --ms:54px; margin-bottom:18px; display:block; }
.hero-title {
  font-size:clamp(2.3rem, 5vw, 3.4rem); font-weight:800; line-height:1.04;
  letter-spacing:-.5px; margin:0 0 6px;
}
.hero-dot { color:var(--accent); }
.hero-tagline { font-size:1.12rem; font-weight:600; color:var(--text); margin:0 0 14px; }
.hero-lead { color:var(--text-mute); max-width:46ch; margin:0 0 24px; }
.hero-cta { display:flex; flex-wrap:wrap; gap:12px; }
.hero-note { color:var(--text-dim); font-size:.86rem; margin:14px 0 0; }

.hero-art { display:flex; flex-direction:column; align-items:center; gap:12px; }
.hero-kb {
  width:100%; background:linear-gradient(180deg, var(--surface), var(--surface-2));
  border:1px solid var(--border); border-radius:var(--radius);
  padding:20px; box-shadow:0 16px 40px rgba(0,0,0,.4);
}
.mini-kb { width:100%; height:auto; }
.hero-kb-cap { color:var(--text-dim); font-size:.84rem; }

/* ---------- ニュース ---------- */
.news-list { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px; }
.news-item {
  display:grid; grid-template-columns:140px 1fr; gap:16px;
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:16px 18px;
}
.news-meta { display:flex; flex-direction:column; gap:7px; align-items:flex-start; }
.news-date { color:var(--text-dim); font-size:.82rem; font-variant-numeric:tabular-nums; }
.news-tag {
  font-size:.72rem; font-weight:700; color:var(--accent);
  background:color-mix(in srgb, var(--accent) 12%, transparent);
  border:1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  padding:2px 9px; border-radius:999px;
}
.news-title { font-size:1.02rem; font-weight:700; margin:0 0 6px; }
.news-text { color:var(--text-mute); font-size:.92rem; }
.news-img { border-radius:var(--radius-sm); border:1px solid var(--border); margin-bottom:10px; }
.news-more { display:inline-flex; align-items:center; gap:5px; color:var(--accent); font-size:.86rem; font-weight:600; margin-top:8px; }
.news-more svg { width:14px; height:14px; }
.news-more:hover { color:var(--accent-hover); }

/* ---------- コンセプト ---------- */
.concept-lead { font-size:1.3rem; font-weight:700; line-height:1.45; margin:0 0 18px; max-width:30ch; }
.concept-body { color:var(--text-mute); max-width:70ch; }
.concept-body p { margin:0 0 14px; }
.concept-body code, .news-text code, .tool-points code {
  font-family:var(--mono); font-size:.86em; color:var(--accent);
  background:color-mix(in srgb, var(--accent) 10%, var(--surface-2)); padding:1px 6px; border-radius:5px;
}

/* ---------- Launcher（強調・少し大きく） ---------- */
.sec-launcher { padding-top:54px; }
.launcher-panel {
  display:grid; grid-template-columns:1.25fr 1fr; gap:0; overflow:hidden;
  background:linear-gradient(135deg, color-mix(in srgb, var(--accent) 10%, var(--surface)), var(--surface));
  border:1px solid color-mix(in srgb, var(--accent) 35%, var(--border));
  border-radius:18px; box-shadow:0 12px 40px rgba(0,0,0,.4); transition:.18s;
}
.launcher-panel:hover {
  border-color:var(--accent);
  box-shadow:0 16px 50px rgba(0,0,0,.5), 0 0 0 1px color-mix(in srgb, var(--accent) 40%, transparent);
}
.launcher-shot { position:relative; background:var(--surface-2); aspect-ratio:1350/768; }
.launcher-shot img, .tool-shot img { width:100%; height:100%; object-fit:cover; object-position:top left; }
.launcher-info { padding:30px 30px; display:flex; flex-direction:column; justify-content:center; }
.launcher-badge {
  display:inline-flex; align-items:center; gap:7px; align-self:flex-start;
  color:var(--accent); font-size:.78rem; font-weight:700; letter-spacing:.04em;
  background:color-mix(in srgb, var(--accent) 12%, transparent);
  padding:5px 11px; border-radius:999px; margin-bottom:14px;
}
.launcher-badge svg { width:14px; height:14px; }
.launcher-name { font-size:1.5rem; font-weight:800; margin:0 0 6px; }
.launcher-desc { color:var(--text); margin:0 0 6px; }
.launcher-lead { color:var(--text-mute); font-size:.92rem; margin:0 0 18px; }
.launcher-open { display:inline-flex; align-items:center; gap:6px; color:var(--accent); font-weight:700; }
.launcher-open svg { width:16px; height:16px; }

/* ---------- ツールグリッド ---------- */
.tool-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:18px; }
.tool-card {
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius);
  overflow:hidden; display:flex; flex-direction:column; transition:.16s;
}
.tool-card:hover { border-color:var(--border-strong); transform:translateY(-2px); box-shadow:0 10px 28px rgba(0,0,0,.35); }
.tool-shot { position:relative; display:block; aspect-ratio:1350/768; background:var(--surface-2); border-bottom:1px solid var(--border); }
.shot-fallback {
  position:absolute; inset:0; display:none; align-items:center; justify-content:center;
  color:var(--text-dim); font-weight:700; padding:10px; text-align:center;
  background:repeating-linear-gradient(135deg, var(--surface-2), var(--surface-2) 10px, var(--surface-3) 10px, var(--surface-3) 20px);
}
.shot-error img { display:none; }
.shot-error .shot-fallback { display:flex; }
.tool-body { padding:16px 17px 17px; display:flex; flex-direction:column; gap:9px; flex:1; }
.tool-name { font-size:1.06rem; font-weight:700; margin:0; }
.tool-desc { color:var(--text-mute); font-size:.88rem; margin:0; }
.tool-points { list-style:none; margin:2px 0 4px; padding:0; display:flex; flex-direction:column; gap:6px; }
.tool-points li {
  position:relative; padding-left:18px; color:var(--text-mute); font-size:.84rem; line-height:1.5;
}
.tool-points li::before {
  content:""; position:absolute; left:2px; top:.62em; width:7px; height:7px; border-radius:50%;
  background:var(--accent);
}
.tool-actions { margin-top:auto; padding-top:6px; display:flex; flex-wrap:wrap; gap:8px; }

/* ---------- マニュアル ---------- */
.manual-tabs { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:16px; }
.mtab {
  font:inherit; font-size:.86rem; font-weight:600; cursor:pointer; color:var(--text-mute);
  background:var(--surface-2); border:1px solid var(--border); padding:8px 14px; border-radius:999px; transition:.15s;
}
.mtab:hover { color:var(--text); background:var(--surface-3); }
.mtab.is-active { color:#1a1205; background:linear-gradient(135deg, var(--accent), #ff8a00); border-color:transparent; }
.manual-panel { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; }
.manual-toolbar { display:flex; justify-content:flex-end; padding:10px 16px; border-bottom:1px solid var(--border); background:var(--surface-2); }
.manual-open { display:inline-flex; align-items:center; gap:6px; color:var(--accent); font-size:.85rem; font-weight:600; }
.manual-open svg { width:14px; height:14px; }
.manual-doc { padding:8px 26px 28px; max-height:640px; overflow:auto; }
.manual-loading, .manual-error { color:var(--text-mute); padding:18px 0; }
.manual-error { color:var(--danger); }

/* Markdown 整形（.md 配下） */
.md h1 { font-size:1.5rem; font-weight:800; margin:24px 0 10px; }
.md h2 { font-size:1.22rem; font-weight:700; margin:26px 0 10px; padding-top:10px; border-top:1px solid var(--border); }
.md h3 { font-size:1.04rem; font-weight:700; margin:20px 0 8px; color:var(--accent); }
.md h4, .md h5, .md h6 { font-size:.96rem; font-weight:700; margin:16px 0 6px; }
.md p { margin:10px 0; color:var(--text); }
.md a { color:var(--accent); text-decoration:underline; text-underline-offset:2px; }
.md ul, .md ol { margin:10px 0; padding-left:1.4em; }
.md li { margin:4px 0; }
.md li > ul, .md li > ol { margin:4px 0; }
.md strong { color:var(--text); font-weight:700; }
.md code { font-family:var(--mono); font-size:.86em; color:var(--accent); background:color-mix(in srgb, var(--accent) 10%, var(--surface-2)); padding:1px 6px; border-radius:5px; }
.md pre { background:#0a0b0e; border:1px solid var(--border); border-radius:10px; padding:14px 16px; overflow:auto; margin:12px 0; }
.md pre code { color:var(--text); background:none; padding:0; font-size:.84rem; line-height:1.6; }
.md hr { border:0; border-top:1px solid var(--border); margin:22px 0; }
.md blockquote { margin:12px 0; padding:8px 16px; border-left:3px solid var(--accent); background:var(--surface-2); border-radius:0 8px 8px 0; color:var(--text-mute); }
.md-table-wrap { overflow-x:auto; margin:12px 0; }
.md table { border-collapse:collapse; width:100%; font-size:.88rem; }
.md th, .md td { border:1px solid var(--border); padding:8px 12px; text-align:left; vertical-align:top; }
.md th { background:var(--surface-2); font-weight:700; }
.md tr:nth-child(even) td { background:color-mix(in srgb, var(--surface-2) 50%, transparent); }

/* ===== マニュアルモーダル（本文中の …/MANUAL.md リンクをモーダル表示） ===== */
.modal-backdrop {
  position:fixed; inset:0; background:rgba(0,0,0,0.6);
  display:flex; align-items:center; justify-content:center;
  z-index:200; padding:16px; animation:fadeIn 0.15s ease-out;
}
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.modal {
  background:var(--surface); border:1px solid var(--border); border-radius:14px;
  padding:20px; max-width:420px; width:100%;
  max-height:calc(100vh - 32px); max-height:calc(100dvh - 32px);
  overflow-y:auto; scrollbar-gutter:stable;
}
.modal.modal-manual { max-width:760px; }
.manual-head { display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:4px; }
.manual-title { margin:0; font-size:16px; font-weight:700; }
.manual-back { font-size:13px; }
.modal-actions { display:flex; gap:8px; justify-content:flex-end; margin-top:8px; }
.modal .manual-doc { padding:8px 6px 14px; }

/* ---------- 支援（広告・ドネーション） ---------- */
.support-lead { color:var(--text); font-size:1.02rem; margin:0 0 16px; }
.support-soon { display:inline-flex; align-items:center; gap:8px; color:var(--text-mute); }
.support-soon svg { width:18px; height:18px; color:var(--accent); }
.ad-row { display:flex; flex-wrap:wrap; gap:14px; margin:18px 0 8px; }
.ad-slot { background:var(--surface); border:1px dashed var(--border-strong); border-radius:var(--radius-sm); padding:6px; min-width:160px; }

/* ---------- net バナー ---------- */
.sec-net { padding-top:46px; }
.net-banner {
  display:flex; align-items:center; gap:16px; padding:20px 22px;
  background:color-mix(in srgb, var(--section) 8%, var(--surface));
  border:1px solid color-mix(in srgb, var(--section) 30%, var(--border)); border-radius:var(--radius);
}
.net-banner.is-planned { border-style:dashed; }
.net-icon { display:inline-flex; color:var(--section); }
.net-icon svg { width:26px; height:26px; }
.net-text { display:flex; flex-direction:column; flex:1; gap:2px; }
.net-text strong { font-size:1.05rem; }
.net-text span { color:var(--text-mute); font-size:.9rem; }
.net-soon { color:var(--section); font-weight:700; border:1px solid color-mix(in srgb, var(--section) 40%, transparent); padding:6px 14px; border-radius:999px; font-size:.85rem; }

/* ---------- 窓口 ---------- */
.contact-lead { color:var(--text); margin:0 0 16px; }

/* ---------- フッター ---------- */
.app-footer {
  max-width:var(--maxw); margin:0 auto; padding:28px 20px 40px;
  border-top:1px solid var(--border); display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
}
.app-footer small { color:var(--text-dim); }

.boot-error { max-width:var(--maxw); margin:60px auto; padding:0 20px; color:var(--text-mute); }

/* ---------- レスポンシブ ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns:1fr; gap:26px; }
  .hero-art { order:-1; max-width:460px; }
  .tool-grid { grid-template-columns:repeat(2, 1fr); }
  .launcher-panel { grid-template-columns:1fr; }
  .topnav { display:none; }
}
@media (max-width: 600px) {
  html { scroll-padding-top:64px; }
  .topbar-inner { padding:9px 14px; gap:10px; }
  .container { padding:0 14px 32px; }
  .hero { padding:32px 14px 14px; }
  .sec { padding:40px 0 6px; }
  .sec-title { font-size:1.35rem; }
  .tool-grid { grid-template-columns:1fr; }
  .news-item { grid-template-columns:1fr; gap:8px; }
  .news-meta { flex-direction:row; align-items:center; }
  .launcher-info { padding:22px 20px; }
  .launcher-btn-label { display:none; }
  .manual-doc { padding:6px 16px 22px; }
}

/* ホバー不可端末ではカードの浮きを抑制 */
.no-hover .tool-card:hover { transform:none; box-shadow:none; }

/* ============================================================
 * スピンオフ v.20260618A：コンセプト3点 / 使い方の流れ
 * ============================================================ */

/* コンセプトの3点ブロック */
.concept-points { display:grid; grid-template-columns:repeat(3, 1fr); gap:18px; margin-top:24px; }
.concept-point {
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius);
  padding:20px 20px 22px; border-top:3px solid var(--accent);
}
.cp-title { font-size:1.06rem; font-weight:800; margin:0 0 10px; line-height:1.4; }
.cp-body { color:var(--text-mute); font-size:.92rem; margin:0; }
.cp-body strong { color:var(--text); }

/* 使い方の流れ（ステップ＋連結線） */
.flow { display:flex; flex-direction:column; }
.flow-step { display:grid; grid-template-columns:48px 1fr; gap:20px; padding-bottom:30px; }
.flow-rail { display:flex; flex-direction:column; align-items:center; }
.flow-num {
  width:40px; height:40px; border-radius:50%; flex-shrink:0;
  display:flex; align-items:center; justify-content:center; font-weight:800; font-size:1.05rem;
  color:#1a1205; background:linear-gradient(135deg, var(--accent), #ff8a00);
  box-shadow:0 2px 12px rgba(245,166,35,.28);
}
.flow-rail::after {
  content:""; flex:1; width:2px; margin-top:8px;
  background:linear-gradient(var(--border-strong), color-mix(in srgb, var(--border) 30%, transparent));
}
.flow-step:last-child .flow-rail::after { display:none; }
.flow-body { min-width:0; }
.flow-head { display:flex; align-items:center; gap:12px; flex-wrap:wrap; margin-bottom:6px; }
.flow-verb { font-size:1.3rem; font-weight:800; margin:0; letter-spacing:.2px; }
.flow-role {
  font-size:.74rem; font-weight:700; color:var(--section);
  background:color-mix(in srgb, var(--section) 12%, transparent);
  border:1px solid color-mix(in srgb, var(--section) 30%, transparent);
  padding:3px 11px; border-radius:999px;
}
.flow-desc { color:var(--text-mute); margin:0 0 16px; max-width:72ch; }
.flow-desc code {
  font-family:var(--mono); font-size:.86em; color:var(--accent);
  background:color-mix(in srgb, var(--accent) 10%, var(--surface-2)); padding:1px 6px; border-radius:5px;
}
.flow-tools { display:grid; grid-template-columns:repeat(auto-fit, minmax(248px, 1fr)); gap:16px; }
/* 単独ツールのステップは大きくなりすぎないように上限を設ける */
.flow-tools:has(.tool-card:only-child) { grid-template-columns:minmax(0, 460px); }

.flow-extra { margin-left:68px; padding-top:4px; }
.flow-extra-head { color:var(--text-dim); font-weight:700; font-size:.92rem; margin-bottom:12px; }
.flow-extra-head span { color:var(--text-mute); font-weight:400; }
.flow-extra .flow-tools { grid-template-columns:minmax(0, 460px); }

@media (max-width: 900px) {
  .concept-points { grid-template-columns:1fr; }
}
@media (max-width: 600px) {
  .flow-step { grid-template-columns:34px 1fr; gap:14px; }
  .flow-num { width:30px; height:30px; font-size:.92rem; }
  .flow-verb { font-size:1.12rem; }
  .flow-extra { margin-left:0; }
  .flow-tools, .flow-extra .flow-tools, .flow-tools:has(.tool-card:only-child) { grid-template-columns:1fr; }
}

/* v1.06：ツール括りの先頭に置く Launcher パネルの下余白 */
.tools-launcher { margin-bottom: 22px; }

/* ───────── お問い合わせフォーム（contact） ───────── */
.contact-lead { color:var(--text-mute); margin:0 0 16px; }
.contact-open { margin:0; }
.contact-form[hidden], .contact-open[hidden] { display:none !important; }
.contact-form {
  margin-top:16px; max-width:560px;
  display:flex; flex-direction:column; gap:14px;
  background:var(--surface); border:1px solid var(--border);
  border-radius:var(--radius); padding:18px 18px 20px;
}
.cf-field { display:flex; flex-direction:column; gap:6px; }
.cf-label { font-size:.85rem; color:var(--text-mute); font-weight:600; display:flex; align-items:center; gap:8px; }
.cf-req {
  font-size:.66rem; font-weight:700; font-style:normal; color:var(--accent);
  background:color-mix(in srgb, var(--accent) 12%, transparent);
  border:1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  border-radius:999px; padding:1px 7px;
}
.contact-form input, .contact-form select, .contact-form textarea {
  width:100%; font:inherit; color:var(--text);
  background:var(--surface-2); border:1px solid var(--border-strong);
  border-radius:var(--radius-sm); padding:10px 12px;
}
.contact-form textarea { resize:vertical; min-height:120px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline:none; border-color:var(--accent);
  box-shadow:0 0 0 2px color-mix(in srgb, var(--accent) 25%, transparent);
}
.cf-gotcha { position:absolute !important; left:-9999px !important; width:1px !important; height:1px !important; opacity:0 !important; pointer-events:none; }
.cf-actions { display:flex; gap:10px; align-items:center; flex-wrap:wrap; margin-top:2px; }
.cf-submit[disabled] { opacity:.6; cursor:default; filter:none; }
.cf-status { margin:4px 0 0; font-size:.88rem; }
.cf-status-ok { color:var(--section); }
.cf-status-error { color:var(--danger); }

/* ドネーションボタンと注記の間隔（ボタンは inline-flex のため枠で下余白を確保） */
.support-donate { margin:0 0 22px; }
