/* ============================================================
   Field Vault × GenAxis  —  ダーク / プレミアム UI
   ============================================================ */
:root {
  --bg-0: #0c0d0f;
  --bg-1: #141518;
  --bg-2: #1b1d21;

  --surface: rgba(30, 33, 38, 0.72);
  --surface-solid: #1c1f24;
  --raise: rgba(255, 255, 255, 0.045);
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.14);

  --ink: #d4d8de;
  --ink-2: #aab0b8;
  --sub: #868c95;

  --orange: #f28c00;
  --orange-l: #ffab38;
  --orange-d: #d97a00;
  --gold: #c9a85a;
  --gold-l: #e6cd8f;

  --grad: linear-gradient(135deg, #ffab38 0%, #f28c00 52%, #d97a00 100%);
  --grad-soft: linear-gradient(135deg, rgba(242, 140, 0, 0.18), rgba(217, 122, 0, 0.1));
  --glow: 0 6px 18px rgba(242, 140, 0, 0.16);

  --radius: 18px;
  --radius-sm: 13px;
  --shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 10px 30px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
  margin: 0;
  padding: 0;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
/* 土台の暗い背景は html にだけ置く（body は透明にして、下の固定レイヤーを見せる） */
html { background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 100%); }
body { background: transparent; padding-bottom: env(safe-area-inset-bottom); }

/* 右上オレンジ・左下ゴールドのダウンライト。
   iOS Safari は background-attachment:fixed を正しく扱えないため、
   position:fixed の専用レイヤーで描画。土台を html・本文を body の透明にしたので
   この z-index:-1 レイヤーが土台の上・本文の下に正しく挟まり、PC/iPhone 両方で固定表示される。 */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(103.6vw 64.4vh at 90% -4%, rgba(242, 140, 0, 0.15), transparent 62%),
    radial-gradient(98vw 64.4vh at -8% 104%, rgba(201, 160, 99, 0.14), transparent 60%);
}

/* ---------- ワードマーク ---------- */
.wordmark { font-weight: 700; letter-spacing: 0.2px; }
.wordmark .ax { background: linear-gradient(135deg, var(--gold-l), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- アプリバー ---------- */
.appbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  padding-top: calc(11px + env(safe-area-inset-top));
  background: rgba(16, 17, 20, 0.72);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.appbar .brand { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.appbar .brand img { height: 26px; width: auto; flex: none; }
.appbar .title {
  font-size: 17px; font-weight: 600; letter-spacing: 0;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.appbar .ghost {
  flex: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  height: 38px; min-width: 38px; padding: 0 13px;
  border: 1px solid var(--line-2);
  border-radius: 11px;
  background: var(--raise);
  color: var(--ink-2);
  font-size: 14px; font-weight: 600;
}
.appbar .ghost:active { background: rgba(255,255,255,0.09); }
.appbar .ghost.icon { padding: 0; width: 38px; font-size: 17px; }

/* ---------- レイアウト ---------- */
.wrap { max-width: 720px; margin: 0 auto; padding: 18px 16px 24px; }
.view { display: none; animation: fade 0.28s ease; }
.view.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.section-label { font-size: 12px; font-weight: 600; letter-spacing: 0.3px; color: var(--sub); margin: 4px 4px 10px; }

/* ---------- カード ---------- */
.card {
  background: var(--surface);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  margin-bottom: 14px;
}

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  min-height: 56px;
  border: none;
  border-radius: 15px;
  background: var(--grad);
  color: #fff;
  font-size: 16px; font-weight: 600; letter-spacing: 0;
  cursor: pointer;
  box-shadow: var(--glow);
  transition: transform 0.07s ease, filter 0.15s ease, opacity 0.15s;
}
.btn:active { transform: scale(0.98); filter: brightness(1.06); }
.btn.secondary {
  background: var(--raise);
  border: 1px solid var(--line-2);
  color: var(--ink);
  box-shadow: none;
}
.btn.danger { background: rgba(224, 70, 62, 0.14); border: 1px solid rgba(224, 70, 62, 0.4); color: #ff8a82; box-shadow: none; }
.btn.small { width: auto; min-height: 42px; font-size: 15px; padding: 0 18px; border-radius: 12px; }
.btn:disabled { opacity: 0.5; box-shadow: none; }

/* ---------- フォーム ---------- */
label.field { display: block; font-size: 13px; color: var(--sub); font-weight: 600; letter-spacing: 0.3px; margin: 2px 2px 7px; }
input[type="text"], input[type="password"], textarea, select {
  width: 100%;
  font-size: 16px;
  padding: 15px;
  border: 1px solid var(--line-2);
  border-radius: 13px;
  background: rgba(0, 0, 0, 0.28);
  color: var(--ink);
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}
input::placeholder, textarea::placeholder { color: #6b7079; }
textarea { resize: vertical; min-height: 120px; line-height: 1.7; }
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23c9a85a' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 42px;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(242, 140, 0, 0.18); }

/* ---------- パンくず ---------- */
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 2px; margin: 2px 2px 16px; font-size: 14px; }
.breadcrumb .crumb { color: var(--ink-2); padding: 4px 8px; border-radius: 8px; cursor: pointer; white-space: nowrap; }
.breadcrumb .crumb:active { background: var(--raise); }
.breadcrumb .crumb.current { color: var(--gold-l); font-weight: 600; }
.breadcrumb .crumb-sep { color: #5a606a; padding: 0 1px; }

/* ---------- フォルダ／現場一覧 ---------- */
.site-item {
  position: relative;
  display: flex; align-items: center; gap: 14px;
  padding: 16px 16px;
  background: var(--surface);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 12px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.08s ease, border-color 0.15s;
}
.site-item:active { transform: scale(0.99); border-color: var(--line-2); }
.site-item::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--grad); }
.site-item .ic {
  flex: none; width: 46px; height: 46px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  background: var(--grad-soft); border: 1px solid var(--line);
}
.site-item .meta { flex: 1; min-width: 0; }
.site-item .name { font-size: 17px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.site-item .sub { font-size: 13px; color: var(--sub); margin-top: 3px; display: flex; align-items: center; gap: 8px; }
.site-item .chev { color: #5a606a; font-size: 22px; flex: none; }
.site-item .mini-act {
  flex: none; width: 36px; height: 36px; border-radius: 10px;
  border: 1px solid var(--line); background: var(--raise); color: var(--sub);
  font-size: 14px; display: flex; align-items: center; justify-content: center;
}
.site-item .mini-act:active { background: rgba(255,255,255,0.09); }
.site-item .mini-act.del:active { color: #ff8a82; }
.badge { display: inline-flex; align-items: center; background: var(--grad-soft); color: var(--orange-l); font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 999px; border: 1px solid rgba(242, 140, 0, 0.25); }
.badge.alt { background: rgba(201, 168, 90, 0.14); color: var(--gold-l); border-color: rgba(201, 168, 90, 0.3); }

/* ---------- 投稿 ---------- */
.post {
  background: var(--surface);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 16px;
  margin-bottom: 13px;
}
.post .head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.grip {
  flex: none; align-self: center;
  background: none; border: none; padding: 4px 4px 4px 0; margin: -2px 0;
  color: var(--sub); font-size: 17px; line-height: 1;
  cursor: grab; touch-action: none;
  -webkit-user-select: none; user-select: none; -webkit-touch-callout: none;
}
.grip:active { cursor: grabbing; color: var(--orange-l); }
.post.dragging, .site-item.dragging {
  position: relative; z-index: 50;
  border-color: var(--orange);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  transition: none;
}
body.reordering { -webkit-user-select: none; user-select: none; cursor: grabbing; }
.post .avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--grad); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; flex: none;
  box-shadow: 0 4px 12px rgba(242, 140, 0, 0.3);
}
.post .who { font-weight: 600; font-size: 15px; }
.post .when { font-size: 12px; color: var(--sub); margin-top: 1px; }
.post .del { margin-left: auto; background: var(--raise); border: 1px solid var(--line); color: var(--sub); font-size: 15px; padding: 7px 10px; border-radius: 10px; }
.post .del:active { color: #ff8a82; }
.post .edit { margin-left: auto; background: var(--raise); border: 1px solid var(--line); color: var(--sub); font-size: 15px; padding: 7px 10px; border-radius: 10px; }
.post .edit:active { color: var(--orange-l); }
.post .text { white-space: pre-wrap; word-break: break-word; font-size: 16px; line-height: 1.75; color: var(--ink-2); }

/* ---------- コメント ---------- */
.comments { margin-top: 13px; border-top: 1px solid var(--line); padding-top: 11px; }
.comment { margin-bottom: 9px; }
.comment .c-head { display: flex; align-items: center; gap: 8px; }
.comment .c-head b { font-size: 13px; font-weight: 600; color: var(--gold-l); }
.comment .c-when { font-size: 11px; color: var(--sub); }
.comment .c-del { margin-left: auto; background: none; border: none; color: var(--sub); font-size: 18px; line-height: 1; padding: 0 6px; }
.comment .c-del:active { color: #ff8a82; }
.comment .c-text { font-size: 14.5px; line-height: 1.6; color: var(--ink-2); white-space: pre-wrap; word-break: break-word; margin-top: 2px; }
.comment-add { display: flex; gap: 8px; margin-top: 10px; }
.comment-add .comment-input { flex: 1; min-width: 0; padding: 10px 13px; font-size: 15px; border-radius: 11px; }
.comment-send { flex: none; background: var(--raise); border: 1px solid var(--line-2); color: var(--ink); border-radius: 11px; padding: 0 16px; font-size: 14px; font-weight: 600; }
.comment-send:active { background: rgba(255, 255, 255, 0.09); }

.media-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(46%, 1fr)); gap: 8px; margin-top: 12px; }
.media-grid.single { grid-template-columns: 1fr; }
.media-grid img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: 13px; background: #000; cursor: zoom-in;
  border: 1px solid var(--line);
}
.media-grid.single img { aspect-ratio: auto; max-height: 72vh; object-fit: contain; }
.media-grid video { width: 100%; border-radius: 13px; background: #000; max-height: 72vh; border: 1px solid var(--line); }

/* ---------- 投稿バー ---------- */
.composer {
  position: sticky; bottom: 0; z-index: 20;
  background: rgba(16, 17, 20, 0.82);
  backdrop-filter: saturate(160%) blur(22px); -webkit-backdrop-filter: saturate(160%) blur(22px);
  border-top: 1px solid var(--line);
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
}
.composer textarea { min-height: 48px; max-height: 170px; padding: 13px 15px; }
.composer .row { display: flex; gap: 9px; margin-top: 9px; align-items: center; }
.composer .who-pill { font-size: 13px; color: var(--sub); display: inline-flex; align-items: center; gap: 6px; }
.composer .who-pill b { color: var(--gold-l); font-weight: 600; }
.attach-btn {
  flex: none; min-height: 48px; padding: 0 16px;
  border-radius: 13px; border: 1px solid var(--line-2);
  background: var(--raise); font-size: 15px; font-weight: 600; color: var(--ink);
  display: inline-flex; align-items: center; gap: 7px;
}
.attach-btn:active { background: rgba(255,255,255,0.09); }
.send-btn { flex: 1; min-height: 48px; font-size: 16px; }

.thumbs { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 10px; }
.thumb { position: relative; width: 66px; height: 66px; border-radius: 11px; overflow: hidden; background: #000; border: 1px solid var(--line); }
.thumb img, .thumb video { width: 100%; height: 100%; object-fit: cover; }
.thumb .x { position: absolute; top: 3px; right: 3px; width: 22px; height: 22px; border-radius: 50%; background: rgba(0,0,0,0.7); color: #fff; border: none; font-size: 13px; line-height: 22px; padding: 0; }
.thumb .vtag { position: absolute; bottom: 3px; left: 4px; font-size: 11px; color: #fff; text-shadow: 0 1px 3px #000; }

/* ---------- 投稿本文（文章・写真を順番に）---------- */
.post .body .text { white-space: pre-wrap; word-break: break-word; font-size: 16px; line-height: 1.75; color: var(--ink-2); margin: 8px 0; }
.post .body .text:first-child { margin-top: 0; }
.post .body .media-wrap { position: relative; margin: 9px 0; }
.post .body .block-img { display: block; width: 100%; max-height: 75vh; object-fit: contain; background: #000; border: 1px solid var(--line); border-radius: 13px; cursor: zoom-in; }
.post .body .block-video { display: block; width: 100%; max-height: 75vh; background: #000; border: 1px solid var(--line); border-radius: 13px; }
.save-media {
  position: absolute; top: 9px; right: 9px;
  background: rgba(0, 0, 0, 0.58); color: #fff; border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 9px; font-size: 13px; font-weight: 600; padding: 5px 10px;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.save-media:active { background: rgba(0, 0, 0, 0.82); }
/* 折りたたみ：写真・動画を閉じる／本文を約3行に省略 */
.post .body.collapsed .media-wrap { display: none; }
.post .body.clamp { max-height: 5.3em; overflow: hidden; position: relative; }
.post .body.clamp::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2.2em;
  background: linear-gradient(rgba(26, 28, 32, 0), rgba(26, 28, 32, 0.92)); pointer-events: none;
}
.more-btn {
  display: block; width: 100%; margin-top: 9px;
  background: var(--raise); border: 1px solid var(--line); color: var(--gold-l);
  font-size: 13px; font-weight: 600; padding: 8px; border-radius: 10px; cursor: pointer;
}
.more-btn:active { background: rgba(255, 255, 255, 0.09); }

/* ---------- 並び替えトグル ---------- */
.timeline-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.sort-toggle { display: inline-flex; background: var(--raise); border: 1px solid var(--line); border-radius: 999px; padding: 2px; }
.sort-toggle button { border: none; background: none; color: var(--sub); font-size: 12px; font-weight: 600; padding: 5px 11px; border-radius: 999px; cursor: pointer; }
.sort-toggle button.active { background: var(--grad); color: #fff; }
#timeline.drag-off .post .grip { display: none; }

/* ---------- コンパクト入力バー ---------- */
.composer-bar { width: 100%; text-align: left; background: var(--raise); border: 1px solid var(--line-2); color: var(--sub); font-size: 15px; font-weight: 600; padding: 13px 16px; border-radius: 13px; cursor: pointer; }
.composer-bar:active { background: rgba(255, 255, 255, 0.09); }
.composer-full { max-height: 72vh; overflow-y: auto; }
.editor-tools { gap: 9px; flex-wrap: wrap; }
.chip-btn { flex: none; display: inline-flex; align-items: center; gap: 6px; min-height: 42px; padding: 0 14px; border-radius: 12px; border: 1px solid var(--line-2); background: var(--raise); color: var(--ink); font-size: 14px; font-weight: 600; cursor: pointer; }
.chip-btn:active { background: rgba(255, 255, 255, 0.09); }

/* ---------- ノートエディタ（ブロック）---------- */
.note-editor { display: flex; flex-direction: column; gap: 8px; }
.ne-block { position: relative; }
.ne-textblock .ne-text { width: 100%; min-height: 44px; padding: 11px 40px 11px 13px; resize: none; line-height: 1.6; }
.ne-mediablock { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: #000; }
.ne-thumb { display: block; width: 100%; max-height: 42vh; object-fit: contain; background: #000; }
.ne-vtag { position: absolute; bottom: 7px; left: 9px; font-size: 11px; color: #fff; text-shadow: 0 1px 3px #000; }
.ne-del { position: absolute; top: 7px; right: 7px; width: 28px; height: 28px; border-radius: 50%; background: rgba(0, 0, 0, 0.62); color: #fff; border: none; font-size: 17px; line-height: 28px; padding: 0; }
.ne-textblock .ne-del { top: 9px; background: var(--raise); border: 1px solid var(--line); color: var(--sub); }

/* ---------- ゴミ箱 ---------- */
.trash-item {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 14px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); margin-bottom: 10px;
}
.trash-item .ic { font-size: 22px; flex: none; }
.trash-item .meta { flex: 1; min-width: 0; }
.trash-item .name { font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.trash-item .sub { font-size: 12px; color: var(--sub); margin-top: 2px; }
.trash-item .btn { flex: none; }

/* ---------- メンバー管理 ---------- */
.member-row {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
}
.member-row .avatar {
  width: 36px; height: 36px; border-radius: 50%; flex: none;
  background: var(--grad); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px;
}
.member-row .mname { flex: 1; min-width: 0; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.member-row .acts { display: flex; gap: 6px; flex: none; }
.member-row .mini { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line-2); background: var(--raise); color: var(--ink-2); font-size: 15px; display: flex; align-items: center; justify-content: center; }
.member-row .mini:active { background: rgba(255,255,255,0.09); }
.member-row .mini.del:active { color: #ff8a82; }
.add-member { display: flex; gap: 9px; margin-top: 4px; }
.add-member input { flex: 1; }
.add-member button { flex: none; }

/* ---------- ライトボックス / モーダル ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0, 0, 0, 0.93);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 16px;
}
.lightbox.open { display: flex; animation: fade 0.2s ease; }
.lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 10px; }
.lightbox .close { position: absolute; top: calc(14px + env(safe-area-inset-top)); right: 16px; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.14); color: #fff; border: none; font-size: 22px; }
.lightbox .lb-save { position: absolute; top: calc(16px + env(safe-area-inset-top)); left: 16px; background: rgba(255,255,255,0.16); color: #fff; border: none; border-radius: 999px; padding: 10px 18px; font-size: 15px; font-weight: 600; }
.lightbox .lb-save:active { background: rgba(255,255,255,0.28); }

.modal { position: fixed; inset: 0; z-index: 110; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(0,0,0,0.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.modal.open { display: flex; animation: fade 0.2s ease; }
.modal .card { width: 100%; max-width: 380px; margin: 0; }
.modal h3 { margin: 0 0 4px; font-size: 19px; }

/* ---------- 補助 ---------- */
.empty { text-align: center; color: var(--sub); padding: 56px 20px; }
.empty .big { font-size: 44px; margin-bottom: 10px; opacity: 0.9; }
.muted { color: var(--sub); font-size: 14px; }
.center { text-align: center; }
.spacer { height: 10px; }
.err { color: #ff8a82; font-size: 14px; margin-top: 10px; min-height: 18px; }
.toast { position: fixed; left: 50%; bottom: 96px; transform: translateX(-50%); background: rgba(20,21,24,0.95); border: 1px solid var(--line-2); color: #fff; padding: 12px 22px; border-radius: 999px; font-size: 15px; z-index: 200; opacity: 0; transition: opacity 0.2s, transform 0.2s; pointer-events: none; max-width: 90%; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(-6px); }
.fab-spacer { height: 86px; }

/* ---------- ログイン ---------- */
.login-screen { min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; justify-content: center; padding: 24px; }
.login-box { width: 100%; max-width: 380px; }
.login-box .logo { text-align: center; margin-bottom: 26px; }
.login-box .logo img { width: 215px; height: auto; filter: drop-shadow(0 10px 26px rgba(242,140,0,0.30)); }
.login-box .logo .name { font-size: 22px; font-weight: 600; margin-top: 14px; letter-spacing: 0.3px; color: var(--ink-2); }
.login-box .logo .desc { color: var(--sub); font-size: 14px; margin-top: 6px; }
.login-box .logo .by { color: var(--sub); font-size: 12px; margin-top: 14px; letter-spacing: 1px; }
.login-box .logo .by .wordmark { font-size: 13px; }
