/* ============================================================
   QFlow.cc — AIGCHub 設計語言（極暗未來科技風）
   背景 #08080F→#0E0E1A｜主漸層 #00D4FF→#7B2FF7｜顯示字體 Orbitron
   ============================================================ */

:root {
  --bg-0: #08080F;
  --bg-1: #0E0E1A;
  --card: rgba(18, 18, 31, 0.72);
  --card-solid: #1A1A2E;
  --border: #1E1E35;
  --border-hover: rgba(0, 212, 255, 0.5);
  --primary: #00D4FF;
  --primary-2: #7B2FF7;
  --accent: #00D4FF;
  --text: #F0F0F5;
  --muted: #8888A0;
  --danger: #ef4444;
  --warn: #ffb020;
  --ok: #22C55E;
  --gold: #ffb020;
  --grad: linear-gradient(135deg, #00D4FF 0%, #7B2FF7 100%);
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  --font: "Plus Jakarta Sans", "Noto Sans SC", "Noto Sans TC", "Microsoft JhengHei", system-ui, sans-serif;
  --font-display: "Orbitron", "Plus Jakarta Sans", "Noto Sans TC", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(123, 47, 247, 0.22), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(0, 212, 255, 0.10), transparent 55%),
    linear-gradient(160deg, var(--bg-0) 0%, var(--bg-1) 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

#app { min-height: 100vh; }

/* ---------- 應用外框 ---------- */
.app-shell { display: flex; min-height: 100vh; }

.main {
  flex: 1;
  min-width: 0;
  padding: 20px 26px 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ---------- 側欄（毛玻璃） ---------- */
.sidebar {
  width: 218px;
  flex-shrink: 0;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: sticky;
  top: 0;
  height: 100vh;
  background: rgba(14, 14, 26, 0.82);
  backdrop-filter: blur(18px);
  border-right: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 10px 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 1px;
}

.brand .logo {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.brand .logo svg { display: block; }

.brand-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.18s ease;
  border: 1px solid transparent;
}

.nav-item:hover { color: var(--text); background: rgba(123, 47, 247, 0.12); }

.nav-item.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.16), rgba(123, 47, 247, 0.22));
  border-color: var(--border-hover);
  box-shadow: inset 3px 0 0 var(--accent);
}

.nav-item .ico {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-item .ico svg { width: 18px; height: 18px; }

.sidebar .spacer { flex: 1; }

.credits-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  background: linear-gradient(160deg, rgba(123, 47, 247, 0.16), rgba(18, 18, 31, 0.7));
}

.credits-card .label { font-size: 12px; color: var(--muted); }
.credits-card .num { font-size: 22px; font-weight: 800; color: var(--gold); }
.credits-card .btn { margin-top: 10px; width: 100%; }

/* ---------- 頂欄 ---------- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.topbar .left { display: flex; align-items: center; gap: 12px; }

.page-title { font-family: var(--font-display); font-size: 20px; font-weight: 800; letter-spacing: 0.5px; margin: 0; }
.page-sub { font-size: 13px; color: var(--muted); }

.topbar .right { display: flex; align-items: center; gap: 8px; }

.lang-switch {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.lang-switch button {
  background: transparent;
  border: none;
  color: var(--muted);
  padding: 6px 10px;
  font-size: 12px;
  cursor: pointer;
}

.lang-switch button.on { color: #fff; background: rgba(123, 47, 247, 0.45); }

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--grad);
  display: grid;
  place-items: center;
  font-size: 14px;
}

/* ---------- 卡片 ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  transition: border-color 0.2s ease;
}

.card.hoverable:hover { border-color: var(--border-hover); box-shadow: var(--shadow); }

.card-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-title .sub { font-size: 12px; color: var(--muted); font-weight: 400; }

/* ---------- 按鈕 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 9px 15px;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.16s ease;
  background: rgba(30, 36, 64, 0.8);
  color: var(--text);
}

.btn:hover { border-color: var(--border-hover); box-shadow: 0 0 14px rgba(123, 47, 247, 0.28); }

.btn-primary {
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(123, 47, 247, 0.35);
}

.btn-primary:hover { filter: brightness(1.08); }

.btn-ghost { background: transparent; border-color: var(--border); }
.btn-danger { background: rgba(239, 68, 68, 0.12); border-color: rgba(239, 68, 68, 0.4); color: #ef4444; }
.btn-danger:hover { border-color: #ef4444; box-shadow: 0 0 14px rgba(239, 68, 68, 0.3); }

.btn-sm { padding: 6px 11px; font-size: 12.5px; border-radius: 9px; }

.btn-icon { padding: 8px 10px; }

.btn:disabled { opacity: 0.5; cursor: not-allowed; box-shadow: none; }

.btn.full { width: 100%; }

/* ---------- 表單 ---------- */
.input, .textarea, .select {
  width: 100%;
  background: rgba(11, 14, 26, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 10px 12px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.input:focus, .textarea:focus, .select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(123, 47, 247, 0.22);
}

.textarea { resize: vertical; line-height: 1.7; min-height: 90px; }

.input::placeholder, .textarea::placeholder { color: #5A6088; }

.field { margin-bottom: 13px; }
.field > label { display: block; font-size: 12.5px; color: var(--muted); margin-bottom: 6px; }
.field .hint { font-size: 11.5px; color: #565B80; margin-top: 4px; }

/* ---------- 選項 chips / 網格按鈕 ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 7px; }

.chip {
  padding: 6px 11px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(11, 14, 26, 0.6);
  color: var(--muted);
  font-size: 12.5px;
  cursor: pointer;
  transition: all 0.14s ease;
}

.chip.on {
  color: #fff;
  background: linear-gradient(135deg, rgba(123, 47, 247, 0.55), rgba(142, 123, 255, 0.4));
  border-color: var(--primary);
}

.platform-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }

.pf-btn {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(11, 14, 26, 0.6);
  color: var(--muted);
  padding: 9px 4px;
  text-align: center;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.14s ease;
}

.pf-btn .em { font-size: 18px; display: flex; justify-content: center; margin-bottom: 3px; }
.pf-btn .em svg { width: 18px; height: 18px; }

.pf-btn.on {
  color: #fff;
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(123, 47, 247, 0.45), rgba(0, 212, 255, 0.14));
  box-shadow: 0 0 12px rgba(123, 47, 247, 0.3);
}

/* ---------- 兩欄佈局 ---------- */
.cols { display: grid; grid-template-columns: 320px 1fr; gap: 16px; align-items: start; }
.cols.tight { grid-template-columns: 300px 1fr; }
.col-stack { display: flex; flex-direction: column; gap: 16px; min-width: 0; }

/* ---------- 結果工具列 ---------- */
.toolbar { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }

/* ---------- 分頁 ---------- */
.pager { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 14px; }

/* ---------- 徽章 / 標籤 ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  padding: 3px 9px;
  border-radius: 20px;
  border: 1px solid var(--border);
  color: var(--muted);
}

.badge.primary { color: var(--primary-2); border-color: rgba(123, 47, 247, 0.5); background: rgba(123, 47, 247, 0.12); }
.badge.accent { color: var(--accent); border-color: rgba(0, 212, 255, 0.4); background: rgba(0, 212, 255, 0.08); }
.badge.gold { color: var(--gold); border-color: rgba(255, 209, 102, 0.4); background: rgba(255, 209, 102, 0.08); }
.badge.cost { color: var(--warn); }

.tag-chip {
  display: inline-flex;
  background: rgba(123, 47, 247, 0.14);
  border: 1px solid rgba(123, 47, 247, 0.35);
  color: var(--primary-2);
  border-radius: 16px;
  padding: 3px 9px;
  font-size: 12px;
}

/* ---------- 網格卡 ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }

/* ---------- 漸層文字 ---------- */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Hero ---------- */
.hero {
  text-align: center;
  padding: 34px 10px 14px;
}

.hero h1 { font-family: var(--font-display); font-size: 40px; font-weight: 900; margin: 6px 0; letter-spacing: 1px; }
.hero .sub { font-size: 15px; color: var(--muted); margin: 6px 0 22px; }

.hero-input {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.hero-input .input {
  font-size: 16px;
  padding: 15px 130px 15px 18px;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(123, 47, 247, 0.22);
}

.hero-input .go {
  position: absolute;
  right: 8px;
  top: 7px;
  bottom: 7px;
  padding: 0 22px;
  border-radius: 13px;
}

.mode-toggle {
  display: inline-flex;
  margin: 16px auto 0;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 4px;
  background: rgba(11, 14, 26, 0.5);
}

.mode-toggle button {
  border: none;
  background: transparent;
  color: var(--muted);
  padding: 8px 18px;
  border-radius: 18px;
  font-size: 13.5px;
  cursor: pointer;
}

.mode-toggle button.on { color: #fff; background: var(--grad); }

.feature-card { cursor: pointer; }
.feature-card .em { font-size: 26px; display: flex; }
.feature-card .em svg { width: 26px; height: 26px; }
.feature-card h3 { margin: 10px 0 6px; font-size: 15px; }
.feature-card p { margin: 0; font-size: 12.5px; color: var(--muted); line-height: 1.6; }

/* ---------- 分鏡表 ---------- */
.story-table { width: 100%; border-collapse: collapse; font-size: 12.5px; }

.story-table th {
  text-align: left;
  color: var(--muted);
  font-weight: 600;
  padding: 8px 10px;
  border-bottom: 1px solid var(--border);
}

.story-table td { padding: 10px; border-bottom: 1px solid rgba(30, 36, 64, 0.6); vertical-align: top; }

.story-table tr:hover td { background: rgba(123, 47, 247, 0.06); }

/* ---------- 影片預覽 ---------- */
.preview-win {
  aspect-ratio: 9 / 16;
  max-height: 640px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(400px 300px at 30% 20%, rgba(123, 47, 247, 0.35), transparent 60%),
    linear-gradient(180deg, #12121F 0%, #08080F 100%);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.preview-win .preview-body {
  flex: 1;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  color: var(--muted);
  font-size: 13px;
}

.preview-win .preview-body .em { font-size: 58px; display: block; margin-bottom: 12px; }

.preview-controls {
  padding: 10px 12px;
  border-top: 1px solid var(--border);
  background: rgba(11, 14, 26, 0.55);
}

.progress { height: 4px; border-radius: 2px; background: rgba(255,255,255,0.08); margin-bottom: 8px; overflow: hidden; }
.progress .bar { height: 100%; width: 34%; background: var(--grad); border-radius: 2px; }

.pc-row { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 12px; }
.pc-row .btn-icon { padding: 4px 8px; font-size: 12px; }

/* ---------- 視窗卡 ---------- */
.win-head { display: flex; align-items: center; gap: 8px; padding-bottom: 10px; margin-bottom: 12px; border-bottom: 1px solid var(--border); }
.win-head .dot { width: 9px; height: 9px; border-radius: 50%; }
.win-head .dot.r { background: #ef4444; } .win-head .dot.y { background: #ffb020; } .win-head .dot.g { background: #22C55E; }
.win-head .t { font-size: 13px; color: var(--muted); }

/* ---------- 空狀態 ---------- */
.empty { text-align: center; padding: 40px 16px; color: var(--muted); }
.empty .em { font-size: 40px; display: block; margin-bottom: 12px; }

/* ---------- 串流生成預覽（打字機） ---------- */
.stream-preview { border: 1px dashed rgba(123, 47, 247, 0.4); border-radius: 10px; padding: 12px 14px; background: rgba(123, 47, 247, 0.06); }
.stream-preview .stream-head { font-size: 12px; color: var(--accent); margin-bottom: 8px; font-weight: 600; }
.stream-preview pre { margin: 0; white-space: pre-wrap; word-break: break-word; font-family: inherit; font-size: 14px; line-height: 1.7; color: var(--text); max-height: 420px; overflow-y: auto; }

/* ---------- 模組（視頻工坊） ---------- */
.module {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  padding: 15px 16px;
  margin-bottom: 12px;
}

.module .m-head { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.module .m-head .n {
  width: 26px; height: 26px; border-radius: 8px;
  background: rgba(123, 47, 247, 0.18);
  color: var(--primary-2);
  display: grid; place-items: center; font-size: 13px; font-weight: 700;
}
.module .m-head .t { font-weight: 700; font-size: 14px; flex: 1; }
.module .m-head .chev { color: var(--muted); font-size: 12px; transition: transform 0.2s; }
.module.open .chev { transform: rotate(180deg); }
.module .m-body { margin-top: 13px; }

/* ---------- 流程指引條（視頻工坊） ---------- */
.flow-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 8px;
  padding: 12px 14px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
}

.flow-step {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--muted);
  white-space: nowrap;
  padding: 4px 10px;
  border-radius: 16px;
  border: 1px solid transparent;
}

.flow-step .fs-n {
  width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.flow-step.done { color: var(--primary-2); }
.flow-step.done .fs-n { background: rgba(123, 47, 247, 0.25); color: var(--primary-2); }

.flow-step.active {
  color: #fff;
  border-color: rgba(123, 47, 247, 0.5);
  background: linear-gradient(135deg, rgba(123, 47, 247, 0.35), rgba(0, 212, 255, 0.10));
}
.flow-step.active .fs-n { background: var(--grad); color: #fff; }

.fs-arrow { color: var(--muted); opacity: 0.5; font-size: 12px; }

/* ---------- 視頻工坊工作區（模組 1→6 + 預覽窗置右） ---------- */
.studio-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 14px;
  align-items: start;
}

.studio-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  align-items: start;
  min-width: 0;
}

.studio-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.studio-rail {
  position: sticky;
  top: 14px;
  min-width: 0;
}

.studio-rail .preview-win { border: none; border-radius: 0; }

.studio-col-head {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--primary-2);
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(123, 47, 247, 0.12);
  border: 1px solid rgba(123, 47, 247, 0.22);
}

.studio-col .module { margin-bottom: 0; }

/* 分鏡表容器（橫向捲動） */
.story-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: 10px; }
.story-table-wrap .story-table { min-width: 520px; }

/* 封面預覽 */
.cover-preview {
  aspect-ratio: 3 / 4;
  max-height: 260px;
  border-radius: 12px;
  border: 1px dashed var(--border);
  background:
    radial-gradient(300px 220px at 35% 25%, rgba(123, 47, 247, 0.28), transparent 60%),
    linear-gradient(180deg, #12121F 0%, #08080F 100%);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 13px;
}

/* ---------- 幫助中心 FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 760px; }
.faq-item { padding: 0; overflow: hidden; }
.faq-q {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}
.faq-q .faq-ico { color: var(--primary-2); font-size: 13px; width: 14px; }
.faq-a {
  padding: 0 16px 14px 40px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

/* ---------- 響應式 ---------- */
@media (max-width: 1080px) {
  .cols, .cols.tight { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .studio-layout { grid-template-columns: 1fr; }
  .studio-cols { grid-template-columns: 1fr; }
  .studio-rail { position: static; }
  .sidebar { display: none; }
}

@media (max-width: 640px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 28px; }
}

/* ---------- 雜項 ---------- */
.row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.mt-0 { margin-top: 0; } .mt-8 { margin-top: 8px; } .mt-12 { margin-top: 12px; } .mt-16 { margin-top: 16px; }
.mb-0 { margin-bottom: 0; } .mb-8 { margin-bottom: 8px; } .mb-12 { margin-bottom: 12px; }
.muted { color: var(--muted); }
.small { font-size: 12px; }
.fade-enter-active, .fade-leave-active { transition: opacity 0.18s ease; }
.fade-enter-from, .fade-leave-to { opacity: 0; }

/* ---------- 首頁落地頁 / 登入頁（公開） ---------- */
.btn-lg { padding: 12px 26px; font-size: 15px; border-radius: 12px; }

.landing { min-height: 100vh; display: flex; flex-direction: column; width: 100%; flex: 1 1 auto; min-width: 0; background: radial-gradient(1200px 600px at 50% -10%, rgba(123,47,247,0.18), transparent 60%), var(--bg-0); }
.landing-nav { display: flex; align-items: center; justify-content: space-between; padding: 10px 28px; border-bottom: 1px solid var(--border); }
.landing-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: 1px; }
.landing-nav-right { display: flex; align-items: center; gap: 12px; }

/* Hero：精簡單頁，不強制佔滿整頁 */
.landing-hero { max-width: 940px; margin: 0 auto; padding: 22px 20px 12px; text-align: center; }
.landing-hero h1 { font-family: var(--font-display); font-size: 30px; font-weight: 900; margin: 2px 0; letter-spacing: 1px; }
.landing-hero .sub { font-size: 13px; color: var(--muted); margin: 4px auto 14px; max-width: 560px; line-height: 1.7; }
.landing-cta { display: flex; justify-content: center; }
.landing-sec { max-width: 1440px; margin: 14px auto 0; padding: 0 24px; width: 100%; }
.landing-sec h2 { font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: 1px; }

/* 核心功能：6 個黑底功能框（3 欄網格，無小圖示） */
.landing-feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.landing-feat { display: flex; flex-direction: column; gap: 10px; padding: 18px 20px; border: 1px solid rgba(255, 255, 255, 0.09); border-radius: 12px; background: #0a0a0f; cursor: pointer; transition: border-color 0.15s, background 0.15s, transform 0.15s; }
.landing-feat:hover { border-color: rgba(123, 47, 247, 0.65); background: #101018; transform: translateY(-2px); }
.lf-head { min-width: 0; }
.lf-head h3 { margin: 0 0 3px; font-size: 16px; font-weight: 700; }
.lf-desc { margin: 0; font-size: 12px; color: var(--muted); }
.lf-bullets { list-style: none; margin: 2px 0 0; padding: 0; display: flex; flex-direction: column; gap: 3px; }
.lf-bullets li { font-size: 12px; line-height: 1.45; position: relative; padding-left: 12px; }
.lf-bullets li::before { content: "·"; position: absolute; left: 1px; color: var(--primary-2); font-weight: 900; }

.landing-foot { margin-top: auto; padding: 14px; text-align: center; border-top: 1px solid var(--border); }

@media (max-width: 1080px) {
  .landing-feats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .landing-hero { padding: 26px 20px 14px; }
  .landing-hero h1 { font-size: 26px; }
  .landing-feats { grid-template-columns: 1fr; }
}

/* ---------- 側欄使用者列 ---------- */
.user-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 8px 10px; margin: 10px 0 0; border: 1px solid var(--border); border-radius: var(--radius-sm); background: rgba(255,255,255,0.02); }
.user-email { font-size: 12px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
