/* ============================================================
   Threadsmith — styles.css
   미니멀 모노톤 + 포인트 컬러 1개(잉크). 모바일 우선. 다크모드.
   ============================================================ */

@font-face {
  font-family: 'Paperlogy';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-8ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-display: swap;
}

:root {
  /* 잉크 온 페이퍼 (랜딩과 동일 팔레트) */
  --bg: #f4f1ea;
  --surface: #efece4;
  --surface-2: #e9e5da;
  --border: rgba(22, 21, 15, .16);
  --border-strong: rgba(22, 21, 15, .30);
  --text: #16150f;
  --text-2: rgba(22, 21, 15, .70);
  --text-3: rgba(22, 21, 15, .60);

  /* 포인트 — 리소 형광 마젠타 */
  --accent: #c4008f;
  --accent-hover: #a30077;
  --accent-soft: rgba(196, 0, 143, .10);
  --accent-contrast: #f4f1ea;

  /* 상태색 (포인트색과 겹치지 않게) */
  --danger: #b3241a;
  --danger-soft: rgba(179, 36, 26, .10);
  --success: #00594f;

  /* 리소 인쇄물은 각지다 — 라운드 최소화 */
  --radius: 4px;
  --radius-sm: 3px;
  --radius-pill: 3px;

  --shadow-sm: none;
  --shadow-card: none;

  --font: 'Pretendard Variable', -apple-system, "Apple SD Gothic Neo",
    "Noto Sans KR", "Malgun Gothic", sans-serif;
  --display: 'Paperlogy', 'Pretendard Variable', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --grain-op: .30;
  --grain-blend: multiply;

  --space: 16px;
  --maxw: 640px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #14130d;
    --surface: #1c1b13;
    --surface-2: #23211a;
    --border: rgba(242, 238, 227, .18);
    --border-strong: rgba(242, 238, 227, .32);
    --text: #f2eee3;
    --text-2: rgba(242, 238, 227, .68);
    --text-3: rgba(242, 238, 227, .55);

    --accent: #ff5ecb;
    --accent-hover: #ff85d8;
    --accent-soft: rgba(255, 94, 203, .14);
    --accent-contrast: #14130d;

    --danger: #ff7a6e;
    --danger-soft: rgba(255, 122, 110, .14);
    --success: #3fb8ab;

    --shadow-sm: none;
    --shadow-card: none;

    --grain-op: .22;
    --grain-blend: screen;
  }
}

* { box-sizing: border-box; }

/* [hidden] 우선순위 보장: display:flex 등 author 규칙이 UA [hidden]을 이기는
   cascade-origin 함정 방지. 상태 토글은 항상 실제로 숨겨져야 한다. */
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* 한글은 어절 단위로 줄바꿈 (단어 중간에서 끊기지 않게) */
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* 헤드라인·설명문 줄 길이 균형 */
h1, h2, h3, .tagline, .field-hint, .error-message {
  text-wrap: balance;
}

/* 접근성 유틸 */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: 12px; top: -48px;
  background: var(--accent);
  color: var(--accent-contrast);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  z-index: 100;
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ============ 레이아웃 ============ */
.shell {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px 20px calc(48px + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ============ 헤더 ============ */
.app-header { padding: 4px 2px 0; }
.brand { display: flex; align-items: center; gap: 9px; }
.brand-mark {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--text);
  color: var(--bg);
}
.brand-name {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}
.tagline {
  margin: 8px 0 0;
  color: var(--text-2);
  font-size: 0.95rem;
}

/* ============ 카드 공통 ============ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.input-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.field-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.field-hint {
  margin: -6px 0 0;
  font-size: 0.8rem;
  color: var(--text-3);
}

.text-input {
  width: 100%;
  resize: vertical;
  min-height: 96px;
  padding: 13px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.6;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.text-input::placeholder { color: var(--text-3); }
.text-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

/* ============ 드롭존 ============ */
.dropzone {
  position: relative;
  border: 1.5px dashed var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
  min-height: 92px;
  display: flex;
}
.dropzone:hover { border-color: var(--accent); }
.dropzone.is-dragover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.dropzone-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 18px;
  text-align: center;
  color: var(--text-2);
}
.dropzone-icon { color: var(--text-3); display: inline-flex; }
.dropzone-text { font-size: 0.9rem; }
.dropzone-link { color: var(--accent); font-weight: 600; }
.dropzone-sub { font-size: 0.75rem; color: var(--text-3); }

.dropzone-preview {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
}
.preview-img {
  width: 64px; height: 64px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.preview-meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.preview-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.preview-size { font-size: 0.78rem; color: var(--text-3); }
.preview-remove {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-2);
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center; justify-content: center;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.preview-remove:hover {
  background: var(--danger-soft);
  color: var(--danger);
  border-color: var(--danger);
}

/* ============ 옵션 바 ============ */
.options {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  align-items: flex-start;
}
.option-group { border: 0; margin: 0; padding: 0; min-width: 0; }
.tone-group { flex: 1 1 260px; }
.option-legend {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-2);
  padding: 0;
  margin-bottom: 8px;
}

.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip { position: relative; }
.chip input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}
.chip span {
  display: inline-block;
  padding: 7px 13px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  color: var(--text-2);
  background: var(--surface);
  transition: all .13s ease;
  user-select: none;
}
.chip input:hover + span { border-color: var(--accent); }
.chip input:checked + span {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
  font-weight: 600;
}
.chip input:focus-visible + span {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* 스테퍼 */
.stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  background: var(--surface);
  overflow: hidden;
}
.stepper-btn {
  width: 38px; height: 38px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  align-items: center; justify-content: center;
  transition: background .13s ease;
}
.stepper-btn:hover:not(:disabled) { background: var(--accent-soft); color: var(--accent); }
.stepper-btn:disabled { color: var(--text-3); cursor: not-allowed; }
.stepper-value {
  min-width: 30px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* ============ 생성 버튼 ============ */
.generate-btn {
  margin-top: 4px;
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: var(--accent-contrast);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: background .15s ease, opacity .15s ease;
}
.generate-btn:hover:not(:disabled) { background: var(--accent-hover); }
.generate-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-spinner { display: none; }
.generate-btn.is-loading .btn-spinner { display: inline-flex; animation: spin 0.8s linear infinite; }
.generate-btn.is-loading { cursor: progress; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ============ 로딩 블록 ============ */
.loading-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.loading-skeleton { display: flex; flex-direction: column; gap: 10px; }
.skeleton-line {
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--surface-2) 25%, var(--border) 50%, var(--surface-2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.3s ease-in-out infinite;
}
.w-100 { width: 100%; }
.w-90 { width: 90%; }
.w-70 { width: 70%; }
.w-50 { width: 50%; }
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.loading-caption {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

/* ============ 분석 요약 ============ */
.section-title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 0;
}
.section-title-icon { display: inline-flex; }

.analysis {
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: rise .25s ease both;
}
.analysis-summary {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--text);
}
.analysis-meta { margin: 0; display: flex; flex-direction: column; gap: 6px; }
.analysis-row { display: flex; gap: 10px; margin: 0; }
.analysis-row dt {
  flex-shrink: 0;
  width: 44px;
  font-size: 0.82rem;
  color: var(--text-3);
  font-weight: 600;
}
.analysis-row dd {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-2);
}
.keyword-list {
  list-style: none;
  margin: 2px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.keyword-list li {
  font-size: 0.8rem;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-weight: 600;
}

/* ============ 결과 영역 ============ */
.results { display: flex; flex-direction: column; gap: 14px; }
.results-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.results-count { font-size: 0.82rem; color: var(--text-3); }
.results-list { display: flex; flex-direction: column; gap: 14px; }

.variation-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  animation: rise .28s ease both;
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.card-tone {
  font-size: 0.76rem;
  color: var(--text-3);
  font-weight: 600;
}

.card-text {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.72;
  color: var(--text);
  white-space: pre-wrap;
  /* 한글은 어절 유지, 긴 URL 등만 강제로 끊음 */
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.card-hashtags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.card-hashtags li {
  font-size: 0.88rem;
  color: var(--accent);
  font-weight: 600;
}

.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.card-charcount {
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
  color: var(--text-3);
  font-weight: 600;
}
.card-charcount.over-limit { color: var(--danger); }

.card-actions { display: flex; gap: 8px; }
.card-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text-2);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all .13s ease;
}
.card-action:hover { border-color: var(--accent); color: var(--accent); }
.card-action.card-copy.copied {
  border-color: var(--success);
  color: var(--success);
  background: var(--surface);
}
.card-action svg { flex-shrink: 0; }

/* 재생성 버튼 */
.regenerate-btn {
  margin-top: 2px;
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .13s ease, border-color .13s ease;
}
.regenerate-btn:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); }
.regenerate-btn:disabled { opacity: 0.6; cursor: progress; }
.regen-icon { display: inline-flex; }
.btn-spinner-sm { display: none; }
.regenerate-btn.is-loading .btn-spinner-sm { display: inline-flex; animation: spin .8s linear infinite; }
.regenerate-btn.is-loading .regen-icon { display: none; }

/* ============ 에러 블록 ============ */
.error-block {
  padding: 28px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  animation: rise .25s ease both;
}
.error-icon { color: var(--danger); }
.error-title { margin: 4px 0 0; font-size: 1.05rem; font-weight: 700; }
.error-message {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-2);
  max-width: 44ch;
  line-height: 1.55;
}
.retry-btn {
  margin-top: 10px;
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: var(--accent-contrast);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background .15s ease;
}
.retry-btn:hover { background: var(--accent-hover); }

/* ============ 토스트 ============ */
.toast {
  position: fixed;
  left: 50%;
  bottom: calc(24px + env(safe-area-inset-bottom));
  transform: translateX(-50%) translateY(12px);
  background: var(--text);
  color: var(--bg);
  padding: 11px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-card);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  max-width: calc(100vw - 40px);
  display: flex;
  align-items: center;
  gap: 8px;
}
.toast[data-visible="true"] {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast.toast-error { background: var(--danger); color: #fff; }

/* ============ 애니메이션 ============ */
@keyframes rise {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ============ 반응형 ============ */
@media (max-width: 480px) {
  .shell { padding: 20px 14px 40px; gap: 16px; }
  .input-card { padding: 16px; }
  .options { gap: 14px; }
  .tone-group { flex-basis: 100%; }
  .card-bottom { flex-wrap: wrap; }
}

/* ============ 사이트 바로가기 독 (우측 고정) ============ */
.site-dock {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-dock-item {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-3);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition: transform .18s ease, color .18s ease, border-color .18s ease;
}
.site-dock-item:hover,
.site-dock-item:focus-visible { transform: translateX(-3px); }
.site-dock-item[data-site="cheonmyeong"]:hover,
.site-dock-item[data-site="cheonmyeong"]:focus-visible { color: var(--success); border-color: var(--success); }
.site-dock-item[data-site="simte"]:hover,
.site-dock-item[data-site="simte"]:focus-visible { color: var(--accent); border-color: var(--accent); }

.site-dock-label {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%) translateX(4px);
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  opacity: 0;
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease;
}
.site-dock-item:hover .site-dock-label,
.site-dock-item:focus-visible .site-dock-label { opacity: 1; transform: translateY(-50%) translateX(0); }

@media (max-width: 640px) {
  .site-dock { right: 8px; gap: 8px; }
  .site-dock-item { width: 40px; height: 40px; }
  .site-dock-label { display: none; }
}

/* ============================================================
   리소 워크숍 마감 — 랜딩(pluver.site)과 톤 통일
   ============================================================ */

/* 인쇄 그레인 */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  z-index: 999;
  pointer-events: none;
  opacity: var(--grain-op);
  mix-blend-mode: var(--grain-blend);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* 헤드라인은 디스플레이 서체로 */
.brand-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -.035em;
}
.section-title,
.error-title { font-family: var(--display); font-weight: 800; letter-spacing: -.028em; }

/* 브랜드 마크 — 각지게 */
.brand-mark { border-radius: var(--radius-sm); }

/* 라운드 잔재 정리 */
.preview-img,
.preview-remove { border-radius: var(--radius-sm); }

/* 영문·숫자 라벨은 모노 (한글엔 절대 쓰지 말 것 — 글리프 없음) */
.card-charcount,
.stepper-value { font-family: var(--mono); font-weight: 500; letter-spacing: .04em; }

/* 결과 카드 — 종이 위 인쇄물처럼 */
.variation-card { border-radius: var(--radius); }
/* card-tone은 한글이 들어간다("공감","도발"…) — 모노 금지, 본문 서체 유지 */
.card-tone {
  font-weight: 700;
  letter-spacing: .02em;
}

/* 비활성 버튼 — opacity로 포인트색을 흐리면 탁해진다. 회색조로 명확히 */
.generate-btn:disabled {
  opacity: 1;
  background: var(--surface-2);
  color: var(--text-3);
  box-shadow: inset 0 0 0 1px var(--border);
}

/* 영문 제품명 옆 한글 이름 — 디스플레이 서체는 영문에만 */
.brand-ko {
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -.01em;
  color: var(--text-3);
  margin-left: .18em;
  white-space: nowrap;
}

/* 사이트 독 — 우하단 고정, 아이콘은 각 사이트 고유색을 유지한다 */
.site-dock {
  right: 18px;
  bottom: 18px;
  top: auto;
  transform: none;
}
.site-dock-item {
  border-radius: 10px;
  transition: transform .28s cubic-bezier(.16,1,.3,1), border-color .28s cubic-bezier(.16,1,.3,1);
}
.site-dock-item:hover,
.site-dock-item:focus-visible {
  transform: translateY(-3px);
  border-color: currentColor;
}
.site-dock-item svg { display: block; }
.site-dock-label {
  font-family: var(--font);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: -.005em;
  border-radius: 6px;
  text-transform: none;
}
@media (max-width: 620px) {
  .site-dock { right: 12px; bottom: 12px; }
  .site-dock-item { width: 42px; height: 42px; }
}

/* 우하단 독과 토스트가 겹치지 않도록 (긴 메시지는 화면폭까지 늘어난다) */
@media (max-width: 620px) {
  .toast { bottom: calc(70px + env(safe-area-inset-bottom)); }
}

/* 헤더 계정 표시 */
.app-account { margin-top: 12px; }
