﻿/* ============================================================
   CSSクリップパスMakerナズナ — style.css
   デザインはしまお（CSSグラデーション背景生成しまお）に準拠
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #FDF4EA;
  --surface:      #FFFFFF;
  --surface2:     #F5EAD8;
  --border:       rgba(73,167,206,0.15);
  --border2:      rgba(73,167,206,0.30);
  --text:         #2C2C2C;
  --muted:        #7A7A7A;
  --accent:       #49A7CE;
  --accent-dark:  #3388AD;
  --accent-light: rgba(73,167,206,0.10);
  --accent-glow:  rgba(73,167,206,0.20);
  --success:      #2DA870;
  --warning:      #D48A10;
  --danger:       #D64545;
  --danger-bg:    rgba(214,69,69,0.09);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  min-height: 100vh;
  line-height: 1.7;
}

/* ── ヘッダー ── */
header {
  background: var(--surface);
  border-bottom: 1px solid var(--border2);
  padding: 0;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.logo-img { width: 38px; height: 38px; border-radius: var(--radius-sm); display: block; }
.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.logo-text small {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--muted);
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0;
}
.header-free-badge {
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
  font-family: 'Noto Sans JP', sans-serif;
}

.header-usage-count {
  margin-left: auto;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted);
  font-family: 'Noto Sans JP', sans-serif;
  white-space: nowrap;
}

.header-usage-count strong {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--accent-dark);
}

/* ── ヒーロー ── */
.hero {
  background: linear-gradient(135deg, #FDF4EA 0%, #FEF1DA 50%, #FDF4EA 100%);
  border-bottom: 2px solid rgba(73,167,206,0.15);
  padding: 0;
  overflow: hidden;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.8rem 2rem 0;
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}
.hero-text { flex: 1; padding-bottom: 2.5rem; }
.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 0.9rem;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-lead { font-size: 0.92rem; color: var(--muted); line-height: 1.8; max-width: 560px; margin-bottom: 1.4rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.hero-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 1px solid var(--border2);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  color: var(--text);
  font-weight: 500;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #AAAAAA; flex-shrink: 0; display: inline-block; }
.hero-chara { flex-shrink: 0; width: 300px; height: 300px; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; }
.hero-chara img { width: 300px; height: 300px; object-fit: contain; object-position: bottom; display: block; }

/* ── ツール本体ラッパー ── */
.tool-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
}
.tool-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tool-heading::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.1em;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── ツールカード（全体コンテナ）── */
.tool-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  box-shadow: 0 2px 16px rgba(73,167,206,0.07);
}

/* ── ツールバー（サイズ・背景設定）── */
.editor-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.toolbar-group { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.toolbar-label { font-size: 0.78rem; color: var(--muted); white-space: nowrap; }
.toolbar-sep { width: 1px; height: 22px; background: var(--border2); flex-shrink: 0; }

/* ── 2カラムレイアウト：左=エディタ、右=コントロール ── */
.tool-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 1.75rem;
  align-items: start;
}

/* ══ 左：エディタカラム ══════════════════════════════════════ */
.editor-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

/* キャンバスエリア */
.canvas-wrap {
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.5rem 1rem;
  overflow: auto;
  min-height: 200px;
  gap: 0.75rem;
}

.canvas-container {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 2px 24px rgba(0,0,0,0.10);
  flex-shrink: 0;
}
.canvas-container canvas,
.canvas-container img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.editor-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: default;
}

/* Undo / Redo ボタン */
.undo-redo-btns {
  display: flex;
  gap: 6px;
  align-self: flex-end;
}
.undo-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border2);
  background: var(--surface);
  cursor: pointer;
  font-size: 0.78rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  color: var(--text);
  transition: all 0.15s;
  white-space: nowrap;
}
.undo-btn:hover:not(:disabled) { background: var(--accent-light); border-color: var(--accent); color: var(--accent-dark); }
.undo-btn:disabled { opacity: 0.35; cursor: not-allowed; }

/* CSS出力パネル */
.code-panel {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border2);
}
.code-panel-header {
  background: #12122a;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.code-dots { display: flex; gap: 5px; }
.code-dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }
.code-label { font-size: 0.75rem; color: #888; font-family: 'Outfit', sans-serif; }
.code-display {
  background: #1a1a2e;
  padding: 1rem 1.25rem;
  font-family: 'Courier New', monospace;
  font-size: 0.82rem;
  line-height: 1.8;
  color: #ffd9a0;
  white-space: pre-wrap;
  word-break: break-all;
  min-height: 54px;
}
.copy-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: background 0.15s;
  white-space: nowrap;
}
.copy-btn:hover { background: var(--accent-dark); }
.copy-btn.copied { background: var(--success); }

/* ══ 右：サイドバー ══════════════════════════════════════════ */
.sidebar {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(73,167,206,0.07);
}
.sidebar-section {
  padding: 0.9rem 1rem 0.85rem;
  border-bottom: 1px solid var(--border);
}
.sidebar-section:last-child { border-bottom: none; }
.sidebar-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.6rem;
  display: block;
  font-family: 'Outfit', sans-serif;
}

/* ── 形状タブ ── */
.shape-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}
.stab {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0.4rem 0.4rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border2);
  cursor: pointer;
  background: var(--surface);
  color: var(--muted);
  transition: all 0.15s;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}
.stab-ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 2px;
  display: block;
}
.stab:hover { border-color: var(--accent); color: var(--accent); }
.stab.active { border-color: var(--accent); background: var(--accent); color: #fff; }
.stab.active .stab-ja { color: rgba(255,255,255,0.8); }

/* ── アコーディオン ── */
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  padding: 0.9rem 1rem 0.85rem;
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  border-left: none;
  border-right: none;
  background: transparent;
  width: 100%;
  text-align: left;
  transition: background 0.15s;
}
.accordion-header:hover { background: var(--accent-light); }
.accordion-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.accordion-arrow { font-size: 0.65rem; color: var(--muted); transition: transform 0.2s; flex-shrink: 0; }
.accordion-arrow.open { transform: rotate(180deg); }
.accordion-body { overflow: hidden; transition: max-height 0.25s ease, opacity 0.2s; max-height: 0; opacity: 0; }
.accordion-body.open { max-height: 600px; opacity: 1; }

/* プリセットグリッド */
.preset-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid var(--border);
}
.preset-btn {
  /* aspect-ratio を廃止し、SVG固定高さ＋ラベル分で自然な高さに */
  border: 1.5px solid var(--border2);
  border-radius: var(--radius-sm);
  background: var(--bg);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.15s;
  overflow: visible;
  padding: 5px 4px 4px;
  gap: 3px;
}
.preset-btn:hover { border-color: var(--accent); background: var(--accent-light); }
.preset-btn.active { border-color: var(--accent-dark); background: var(--accent-light); }
.preset-btn svg {
  width: 100%;
  height: 52px;   /* SVGの高さを固定してラベルが押し出されないようにする */
  flex-shrink: 0;
}
.preset-btn-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.6rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  text-align: center;
  line-height: 1.3;
  flex-shrink: 0;
  padding-bottom: 1px;
}

/* ── 編集モードボタン ── */
.edit-mode-btns { display: flex; gap: 5px; }
.edit-mode-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 0.45rem 0.25rem 0.4rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border2);
  cursor: pointer;
  background: var(--surface);
  color: var(--muted);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  transition: all 0.15s;
}
.edit-mode-btn svg { flex-shrink: 0; }
.edit-mode-btn:hover { background: var(--accent-light); border-color: var(--accent); color: var(--accent-dark); }
.edit-mode-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); }

.edit-mode-hint {
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 0.5rem;
  padding: 0.45rem 0.6rem;
  background: var(--bg);
  border-radius: var(--radius-sm);
  min-height: 34px;
}

/* ── 頂点リスト ── */
.point-list { max-height: 140px; overflow-y: auto; }
.point-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.3rem 0.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.78rem;
  font-family: 'Outfit', sans-serif;
  transition: background 0.1s;
}
.point-item:hover { background: var(--accent-light); }
.point-item.selected { background: var(--accent-light); font-weight: 600; }
.point-label { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.point-delete-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: none;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
  transition: background 0.15s, color 0.15s;
  opacity: 0;
}
.point-item:hover .point-delete-btn,
.point-item.selected .point-delete-btn { opacity: 1; }
.point-delete-btn:hover { background: var(--danger-bg); color: var(--danger); }
.point-delete-btn:disabled { opacity: 0.2; cursor: not-allowed; pointer-events: none; }

.point-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.point-dot.selected { background: var(--accent-dark); }

/* ── スライダー ── */
.ctrl-row { display: flex; align-items: center; gap: 8px; margin-bottom: 0.5rem; }
.ctrl-label { font-size: 0.72rem; color: var(--muted); min-width: 46px; font-family: 'Noto Sans JP', sans-serif; }
.ctrl-row input[type="range"] { flex: 1; accent-color: var(--accent); height: 4px; cursor: pointer; }
.ctrl-val { font-family: 'Outfit', sans-serif; font-size: 0.78rem; min-width: 26px; text-align: right; color: var(--text); }

.radius-num-input {
  width: 50px;
  padding: 0.25rem 0.4rem;
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  color: var(--text);
  background: var(--surface);
  outline: none;
  flex-shrink: 0;
}
.radius-num-input:focus { border-color: var(--accent); }

/* 頂点の丸み：モード切り替えトグル */
.corner-mode-toggle {
  display: flex;
  gap: 0;
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 4px;
}

.corner-mode-btn {
  flex: 1;
  padding: 5px 6px;
  border: none;
  background: var(--surface);
  cursor: pointer;
  font-size: 0.72rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  color: var(--muted);
  transition: background 0.15s, color 0.15s;
  line-height: 1.3;
}
.corner-mode-btn:not(:last-child) {
  border-right: 1px solid var(--border2);
}
.corner-mode-btn:hover { background: var(--accent-light); color: var(--accent-dark); }
.corner-mode-btn.active { background: var(--accent); color: #fff; }

.corner-note {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.5;
}

.corner-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0.65rem 0 0.55rem;
}

/* ── ブロブボタン ── */
.blob-btn {
  width: 100%;
  padding: 0.55rem 0.75rem;
  background: var(--bg);
  border: 1.5px solid var(--border2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.8rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  color: var(--accent-dark);
  transition: all 0.15s;
  text-align: center;
  margin-bottom: 0.45rem;
}
.blob-btn:hover { background: var(--accent-light); border-color: var(--accent); }
.blob-hint { font-size: 0.7rem; color: var(--muted); line-height: 1.5; }

/* ── 共通 tbtn ── */
.tbtn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border2);
  background: var(--surface);
  cursor: pointer;
  font-size: 0.78rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--text);
  transition: all 0.15s;
  white-space: nowrap;
}
.tbtn:hover { background: var(--accent-light); border-color: var(--accent); color: var(--accent-dark); }
.tbtn.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.file-upload-btn { cursor: pointer; }

.size-input {
  width: 60px;
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  padding: 0.28rem 0.4rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  text-align: center;
  outline: none;
}
.size-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }

.url-input {
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-family: 'Noto Sans JP', sans-serif;
  width: 180px;
  color: var(--text);
  background: var(--surface);
  outline: none;
}
.url-input:focus { border-color: var(--accent); }
.url-input::placeholder { color: var(--muted); }

.sample-thumbs { display: flex; gap: 4px; }
.sample-thumb {
  width: 28px; height: 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  display: block;
  transition: border-color 0.15s;
  flex-shrink: 0;
}
.sample-thumb:hover { border-color: var(--accent); }
.sample-thumb.active { border-color: var(--accent-dark); }

.sidebar::-webkit-scrollbar,
.point-list::-webkit-scrollbar { width: 4px; }
.sidebar::-webkit-scrollbar-track,
.point-list::-webkit-scrollbar-track { background: transparent; }
.sidebar::-webkit-scrollbar-thumb,
.point-list::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 2px; }

/* ══ コンテンツセクション ══════════════════════════════════════ */
.content-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}
.section-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-heading::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.2em;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-lead { color: var(--muted); font-size: 0.875rem; margin-bottom: 1.75rem; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.35rem;
  transition: box-shadow 0.15s;
}
.feature-card:hover { box-shadow: 0 4px 16px rgba(73,167,206,0.10); }
.feature-icon { font-size: 1.5rem; margin-bottom: 0.6rem; }
.feature-title { font-size: 0.92rem; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; }
.feature-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.65; }

.usecase-list { display: flex; flex-direction: column; gap: 1rem; }
.usecase-item {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.35rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.usecase-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  margin-top: 1px;
}
.usecase-item h3 { font-size: 0.92rem; font-weight: 600; color: var(--text); margin-bottom: 0.3rem; }
.usecase-item p { font-size: 0.84rem; color: var(--muted); line-height: 1.65; margin: 0; }

.cost-table-wrap { overflow-x: auto; }
.cost-table { width: 100%; max-width: 480px; border-collapse: collapse; font-size: 0.9rem; }
.cost-table th,
.cost-table td { padding: 0.7rem 1.1rem; text-align: left; border-bottom: 1px solid var(--border); background: var(--surface); }
.cost-table th {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  background: var(--surface2);
  text-transform: uppercase;
}
.cost-table .total-row { font-weight: 600; background: var(--accent-light); border-top: 2px solid var(--border2); }

/* ── フッター ── */
footer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  padding: 2rem;
  border-top: 1px solid var(--border2);
}

/* ══ レスポンシブ ══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .tool-layout { grid-template-columns: 1fr; }
  .url-input { width: 140px; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 1.4rem; }
  .hero-chara { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .tool-section { padding: 1.5rem 1rem; }
  .tool-card { padding: 1.25rem 1rem; }
  .editor-toolbar { gap: 6px; }
  .header-usage-count { display: none; }
}
