@import url("./tokens.css");

/* ==========================================================================
   가온 학적부 — 프로덕션 콘솔 (shadcn/ui new-york 문법의 바닐라 이식)
   컨트롤 h-9 · 표 행 리듬 · 카드 radius 12px · shadow-sm — 문법이 곧 품질.
   ========================================================================== */

*,
*::before,
*::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  background: var(--muted);
}

body {
  overscroll-behavior-y: none; /* 의도치 않은 pull-to-refresh 차단 */
  background: var(--muted);
  color: var(--foreground);
  font-family: var(--font-body);
  font-synthesis-weight: none;
  -webkit-text-size-adjust: 100%; text-size-adjust: 100%; /* 합성 볼드 금지 — 없는 웨이트는 가늘게 떨어진다 */
  font-size: var(--step-0);
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
}

:where(h1, h2, h3) { line-height: var(--leading-tight); font-weight: 600; word-break: keep-all; }
strong, b { font-weight: 600; } /* UA 기본 700 볼드 재정의 */
h1, h2.v-h {
  font-size: var(--step-4); font-weight: 600;
  font-family: var(--font-display); /* 학적부 서류의 명조 결 — 큰 제목에만 */
  letter-spacing: -0.01em;
  text-wrap: balance;
}
@media (max-width: 680px) {
  h1, h2.v-h { font-size: min(1.5rem, 6.4vw); } /* 뷰포트 단위 — 기기 글꼴 확대에도 제목은 부서지지 않는다 */
}
h2 { font-size: var(--step-2); }
h3 { font-size: var(--step-0); font-weight: 500; }

:where(p, li, td, th, dd, figcaption) { word-break: keep-all; overflow-wrap: anywhere; }

.mono { font-family: var(--font-mono); font-size: var(--font-mono-size); font-variant-numeric: tabular-nums; }
.muted { color: var(--muted-foreground); }
.num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }

:focus-visible { outline: 2px solid var(--ring); outline-offset: 2px; border-radius: var(--radius-xs); }

/* 모션 취향 존중 — 무한 루프·등장 모션 전부 정지. 앱은 여전히 완전히 작동한다 */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--primary); color: var(--primary-foreground);
  padding: var(--space-3) var(--space-4); z-index: 100; border-radius: var(--radius);
}
.skip:focus { left: var(--space-4); }

.sr-only {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* ── 앱 뼈대: 사이드바 244px + 본문 ── */
.app {
  display: grid;
  grid-template-columns: 244px minmax(0, 1fr);
  min-height: 100dvh;
  background: var(--background);
}

.side {
  background: var(--background);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-3);
  position: sticky;
  top: 0;
  height: 100dvh;
  overflow-y: auto;
}
.brand {
  display: flex; align-items: center; gap: var(--space-2);
  color: var(--foreground); text-decoration: none;
  font-weight: 600; font-size: var(--step-1);
  padding: var(--space-2) var(--space-2) var(--space-3);
}
.brand-mark {
  width: 24px; height: 24px; flex: none;
  border-radius: var(--radius);
  background: var(--accent);
  display: grid; place-items: center;
  color: var(--on-accent); font-size: 12px; font-weight: 600;
}
.brand-mark::after { content: "가"; }

.side-nav { display: grid; gap: 1px; }
.side-group {
  font-size: var(--step-1);
  font-weight: 500;
  color: var(--muted-foreground);
  padding: var(--space-4) var(--space-2) var(--space-1);
}
.side-link {
  appearance: none; border: 0; background: none; cursor: pointer;
  display: flex; align-items: center; gap: var(--space-2);
  width: 100%;
  text-align: left; color: var(--muted-foreground);
  font: inherit; font-size: var(--step-0); font-weight: 500;
  height: 34px;
  padding: 0 var(--space-2);
  border-radius: var(--radius);
  transition: background-color 100ms ease, color 100ms ease;
}
.side-link svg { flex: none; opacity: 0.9; }
.side-link:hover { color: var(--foreground); background: var(--muted-2); }
.side-link.is-current { color: var(--foreground); background: var(--muted-2); font-weight: 600; }
.side-link.is-current svg { color: var(--accent); opacity: 1; }
.side-foot {
  margin-top: auto;
  font-size: var(--step-1);
  color: var(--muted-foreground);
  line-height: 1.5;
  padding: var(--space-3) var(--space-2);
  border-top: 1px solid var(--border);
}

/* ── 탑바 ── */
.topbar {
  height: 52px;
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding: 0 var(--space-6);
  border-bottom: 1px solid var(--border);
  background: var(--background);
  flex: none;
}
.topbar .brand { display: none; } /* 브랜드는 사이드바에 있다 — 모바일에서만 탑바가 이어받는다 */
.crumb { display: flex; align-items: center; gap: var(--space-2); font-size: var(--step-0); color: var(--muted-foreground); }
.crumb strong { color: var(--foreground); font-weight: 600; }
.topbar-right { display: flex; align-items: center; gap: var(--space-3); }
.term-badge {
  display: inline-flex; align-items: center;
  font-size: var(--step-1); font-weight: 500;
  color: var(--muted-foreground);
  background: var(--muted-2);
  border-radius: var(--radius);
  padding: 3px 8px;
  white-space: nowrap;
}
.avatar {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-pill);
  background: var(--primary); color: var(--primary-foreground);
  font-size: var(--step-1); font-weight: 600;
}

/* ── 본문 ── */
.main { min-width: 0; display: flex; flex-direction: column; }

.view { display: none; }
.view.is-on { display: block; }
.view:focus { outline: none; }

.view-sub { color: var(--muted-foreground); font-size: var(--step-0); margin-top: 4px; max-width: 46em; }
.view-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-6) var(--space-6) var(--space-5);
}
.view > *:not(.view-head) { margin-left: var(--space-6); margin-right: var(--space-6); }
.view > *:last-child { margin-bottom: var(--space-6); }

/* 뷰 전환 — 상태 변화를 알리는 70ms 상승. 감사·스크린샷 대기(100ms) 안에 끝난다 */
@media (prefers-reduced-motion: no-preference) {
  .view.is-on { animation: view-in 70ms var(--ease-out) both; }
  @keyframes view-in { from { opacity: 0; transform: translateY(4px); } }
}

/* ── 카드 ── */
.panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-5);
  min-width: 0;
}
.panel h2 { margin-bottom: var(--space-4); font-size: var(--step-2); }
.panel-note { font-size: var(--step-1); color: var(--faint); margin-top: var(--space-3); }

/* 통계 카드 */
.headline { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-4); }
.headline > div {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); padding: var(--space-4) var(--space-5);
}
.headline dt { font-size: var(--step-0); color: var(--muted-foreground); font-weight: 500; }
.headline dd { font-size: var(--step-3); font-weight: 600; letter-spacing: -0.03em; line-height: 1.2; font-variant-numeric: tabular-nums; margin-top: 4px; }
.headline .stat-sub { font-size: var(--step--1); color: var(--faint); margin: 6px 0 0; margin-inline-start: 0; font-variant-numeric: tabular-nums; }

.dash-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: var(--space-4);
  align-items: start;
  margin-top: var(--space-4);
}
.week-panel { grid-row: span 2; }

/* ── 표 ── */
.table-wrap { overflow-x: auto; overflow-y: hidden; }
table { width: 100%; border-collapse: collapse; }
thead th {
  text-align: left; font-weight: 500; font-size: var(--step-1);
  color: var(--muted-foreground); padding: 0 var(--space-3) var(--space-3);
  border-bottom: 1px solid var(--border);
  height: 36px; white-space: nowrap;
}
tbody td, tbody th { padding: var(--space-3); border-bottom: 1px solid var(--border); vertical-align: middle; text-align: left; }
tbody th { font-weight: 500; }
tbody tr:last-child td, tbody tr:last-child th { border-bottom: 0; }
tbody tr { transition: background-color 80ms ease; }
tbody tr:hover { background: var(--muted); }
.tsum { padding: var(--space-3); font-size: var(--step--1); color: var(--muted-foreground); border-top: 1px solid var(--border); font-variant-numeric: tabular-nums; white-space: nowrap; }

.row-open {
  appearance: none; border: 0; background: none; padding: 0;
  font: inherit; font-weight: 500; color: var(--foreground);
  cursor: pointer; text-align: left;
  transition: color 80ms ease;
}
.row-open:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ── 배지 ── */
.state {
  display: inline-flex; align-items: center;
  font-size: var(--step-1); font-weight: 500;
  border-radius: var(--radius);
  padding: 2px 8px;
  white-space: nowrap;
  background: var(--success-soft); color: var(--success-ink);
}
.state-wait { background: var(--warning-soft); color: var(--warning-ink); }
.state-off { background: var(--muted-2); color: var(--muted-foreground); }
.state-run { background: var(--accent-soft); color: var(--accent-ink); }
.state-run::before { content: ""; width: 6px; height: 6px; border-radius: var(--radius-pill); background: var(--accent); margin-right: 6px; animation: dot-pulse 1.6s ease infinite; }
@keyframes dot-pulse { 50% { opacity: 0.35; } }
.t-warn { color: var(--warning-ink); font-weight: 500; }

/* ── 차트 ── */
.week-chart svg { display: block; width: 100%; height: auto; }
.dist-chart svg { display: block; height: 200px; width: auto; max-width: 100%; margin-inline: auto; }
.dist-chart .bars text { font-size: 11px; font-weight: 600; fill: var(--muted-foreground); }
.dist-body { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); gap: var(--space-6); align-items: center; }
.dist-stats { border-left: 1px solid var(--border); padding-left: var(--space-5); }
.dist-stats > div { display: flex; justify-content: space-between; align-items: baseline; gap: var(--space-3); padding: 9px 0; border-bottom: 1px solid var(--border); }
.dist-stats > div:last-child { border-bottom: 0; }
.dist-stats dt { font-size: var(--step-0); color: var(--muted-foreground); }
.dist-stats dd { font-weight: 600; font-variant-numeric: tabular-nums; }
.axis line { stroke: var(--border); stroke-width: 1; }
.axis-labels text { font-size: 11px; fill: var(--muted-foreground); }
.b-att { fill: var(--border-strong); }
.b-late { fill: var(--late); }
.b-abs { fill: var(--danger); }
.b-hl { fill: var(--accent); }
.week-chart figcaption, .dist-chart figcaption {
  display: flex; gap: var(--space-4);
  font-size: var(--step-1); color: var(--muted-foreground);
  margin-top: var(--space-3);
}
.wk-sum { margin-top: var(--space-4); border-top: 1px solid var(--border); }
.wk-sum thead th { padding: 8px var(--space-2); }
.wk-sum tbody td { padding: 7px var(--space-2); }
.wk-sum tfoot td { padding: 8px var(--space-2); border-top: 1px solid var(--border-strong); font-weight: 600; }
.wk-sum td:first-child, .wk-sum th:first-child { padding-left: var(--space-2); white-space: nowrap; }
.wk-sum td:last-child, .wk-sum th:last-child { padding-right: var(--space-2); }
.key { display: inline-flex; align-items: center; gap: 6px; }
.key i { width: 8px; height: 8px; display: inline-block; border-radius: var(--radius-xs); }
.k-att { background: var(--border-strong); }
.k-late { background: var(--late); }
.k-abs { background: var(--danger); }
.hl { background: none; padding: 0; font-weight: 600; color: var(--foreground); }

/* ── 마감 목록 ── */
.due-list { list-style: none; margin: 0; padding: 0; display: grid; }
.due-row {
  appearance: none; background: none; border: 0;
  width: 100%; display: grid; gap: 2px; text-align: left;
  font: inherit; padding: var(--space-3);
  cursor: pointer; border-bottom: 1px solid var(--border);
  transition: background-color 80ms ease;
}
.due-list li:last-child .due-row { border-bottom: 0; }
.due-row:hover { background: var(--muted); }
.due-row span:last-child { font-size: var(--step-1); color: var(--muted-foreground); }
.due-row.is-static { cursor: default; }
.due-row.is-static:hover { background: none; }

/* ── 검색 + 세그먼트 ── */
.toolbar { display: flex; gap: var(--space-3); align-items: center; flex-wrap: wrap; margin: 0 0 var(--space-4); }
#q {
  font: inherit; color: var(--foreground);
  background: var(--card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  height: 36px;
  padding: 0 var(--space-3);
  min-width: 13rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 100ms ease, box-shadow 100ms ease;
}
#q:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 15%, transparent); }
#q::placeholder { color: var(--faint); }

.chips {
  display: inline-flex; gap: 2px;
  background: var(--muted-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 3px;
}
.chip {
  appearance: none; cursor: pointer; font: inherit;
  font-size: var(--step-1); font-weight: 500;
  background: none; color: var(--muted-foreground);
  border: 0; border-radius: var(--radius);
  height: 28px; padding: 0 var(--space-3);
  display: inline-flex; align-items: center;
  transition: background-color 100ms ease, color 100ms ease, box-shadow 100ms ease;
}
.chip:hover { color: var(--foreground); }
.chip.is-on { background: var(--card); color: var(--foreground); box-shadow: var(--shadow-sm); }

/* ── 출석부 히트맵 ── */
.att-day { text-align: center; }
.att-cell { text-align: center; padding: 3px; }
.att-cell.is-na { color: var(--faint); }
.att-btn {
  appearance: none; border: 1px solid transparent; cursor: pointer;
  font: inherit; font-size: var(--step-1); line-height: 1; font-weight: 600;
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  transition: transform 100ms ease, box-shadow 100ms ease;
}
.att-btn:hover { transform: scale(1.08); box-shadow: var(--shadow-sm); }
.att-btn:active { scale: 0.94; }
.att-btn.v-att { background: var(--success-soft); color: var(--success-ink); }
.att-btn.v-late { background: var(--late-soft); color: var(--warning-ink); }
.att-btn.v-abs { background: var(--danger-soft); color: var(--danger-ink); }

.week-nav { display: inline-flex; align-items: center; gap: var(--space-2); }
.week-label { min-width: 4.5em; text-align: center; color: var(--muted-foreground); font-size: var(--step-1); }
.week-nav .btn-line:disabled { opacity: 0.4; cursor: not-allowed; }

/* ── 자료실 ── */
.give-btn {
  appearance: none; cursor: pointer; font: inherit;
  font-size: var(--step-1); font-weight: 500;
  background: none; color: var(--muted-foreground);
  border: 1px solid var(--border-strong); border-radius: var(--radius);
  height: 28px; padding: 0 10px;
  transition: background-color 100ms ease, border-color 100ms ease, color 100ms ease;
  white-space: nowrap;
}
.give-btn:hover { border-color: var(--foreground); color: var(--foreground); }
.give-btn.is-given { background: var(--success-soft); border-color: transparent; color: var(--success-ink); }

/* ── 학사 일정 ── */
.cal-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: var(--space-4);
  align-items: start;
}
.cal { table-layout: fixed; }
.cal th { text-align: center; font-size: var(--step-1); height: 32px; padding-inline: var(--space-2); }
.cal-day {
  height: 76px; padding: var(--space-1);
  border: 1px solid var(--border);
  vertical-align: top;
}
.cal-day:nth-child(7n+6), .cal-day:nth-child(7n+7) { background: var(--muted); }
.cal-day.is-empty { border: 0; background: none !important; }
.cal-num { display: block; color: var(--muted-foreground); font-size: var(--step-1); font-weight: 500; }
.cal-day.is-today .cal-num {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px;
  color: var(--on-accent); font-weight: 600;
  background: var(--accent-strong); /* 흰 숫자 5.4:1 */
  border-radius: var(--radius-pill);
}
.cal-ev {
  display: block; margin-top: 2px;
  font-size: var(--step--2); line-height: 1.35; word-break: keep-all;
  background: var(--accent-soft); color: var(--accent-ink);
  border-radius: var(--radius-xs);
  padding: 1px 4px;
}

/* ── 상담 기록 ── */
.counsel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}
.counsel-card {
  appearance: none; cursor: pointer; font: inherit; text-align: left;
  display: grid; gap: 4px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-4);
  transition: border-color 100ms ease, box-shadow 100ms ease;
}
.counsel-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow-lg); }
.counsel-card:active { scale: 0.995; }
.co-head { display: flex; justify-content: space-between; align-items: baseline; gap: var(--space-3); }
.co-head strong { font-weight: 600; }
.co-sub { font-size: var(--step-1); }
.co-text { font-size: var(--step-0); line-height: var(--leading-normal); word-break: keep-all; }
.empty-note { color: var(--muted-foreground); font-size: var(--step-0); }

/* ── 버튼 ── */
.btn-line, .btn-solid {
  appearance: none; cursor: pointer; font: inherit;
  font-size: var(--step-0); font-weight: 500;
  height: 36px; padding: 0 var(--space-4);
  border-radius: var(--radius);
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  transition: background-color var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out), color var(--dur-2) var(--ease-out), scale var(--dur-1) var(--ease-out);
  white-space: nowrap;
}
.btn-solid { background: var(--primary); border: 1px solid var(--primary); color: var(--primary-foreground); box-shadow: var(--shadow-sm); }
.btn-solid:hover:not(:disabled) { background: var(--primary-hover); border-color: var(--primary-hover); }
.btn-solid:disabled { opacity: 0.45; cursor: not-allowed; box-shadow: none; }
.btn-line { background: var(--card); border: 1px solid var(--border-strong); color: var(--foreground); box-shadow: var(--shadow-sm); }
.btn-line:hover:not(:disabled) { background: var(--muted); }
.btn-line:active, .btn-solid:active:not(:disabled) { scale: 0.98; }

/* ── 모달 ── */
.modal {
  position: fixed;
  inset: 0;
  margin: auto;
  width: min(94vw, 860px);
  max-height: min(86dvh, 760px);
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  color: var(--foreground);
  overflow: hidden;
  overscroll-behavior: contain;
  box-shadow: var(--shadow-xl);
}

html:has(dialog.modal[open]) { overflow: hidden; }
.modal::backdrop { background: var(--backdrop-dim); backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); }
@media (prefers-reduced-motion: no-preference) {
  .modal[open] { animation: modal-in 200ms cubic-bezier(0.16, 1, 0.3, 1) both; }
  @keyframes modal-in { from { opacity: 0; transform: translateY(8px) scale(0.99); } }
}
.mspread {
  display: grid;
  grid-template-columns: 264px minmax(0, 1fr);
  max-height: min(86dvh, 760px);
}
.mcover {
  position: relative;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: var(--space-6);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.mcover-mark {
  position: absolute; right: -14px; bottom: -20px;
  font-size: 8rem; font-weight: 600; line-height: 1;
  color: var(--panel-mark);
  pointer-events: none; user-select: none;
}
.mcover-label {
  display: inline-flex; align-items: center;
  width: fit-content;
  color: var(--panel-muted);
  border: 1px solid var(--panel-line);
  padding: 3px 6px;
  font-size: var(--step--2); font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-4);
}
.mcover-name {
  font-family: var(--font-display);
  font-size: var(--step-3); line-height: 1.2; font-weight: 600;
  letter-spacing: -0.02em; word-break: keep-all;
}
.mcover-meta { color: var(--panel-muted); font-size: var(--step-1); margin-top: var(--space-2); }
.mcover-stats { margin-top: var(--space-5); border-top: 1px solid var(--panel-line); }
.mcover-stats > div {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--panel-line);
}
.mcover-stats dt { font-size: var(--step-1); color: var(--panel-muted); }
.mcover-stats dd { font-size: var(--step-1); font-weight: 600; font-variant-numeric: tabular-nums; }
.mcover-foot { margin-top: auto; color: var(--panel-faint); font-size: var(--step--2); }

.msheet {
  position: relative;
  background: var(--card);
  padding: var(--space-6);
  overflow-y: auto;
  overscroll-behavior: contain;
  display: grid; gap: var(--space-5);
  align-content: start;
  min-height: 340px;
}
.msec h3 { color: var(--muted-foreground); margin-bottom: var(--space-3); font-weight: 500; font-size: var(--step-0); }
.modal-title { font-size: var(--step-3); letter-spacing: -0.02em; }
.modal-meta { color: var(--muted-foreground); margin-top: 2px; }
.modal-close {
  position: absolute; top: var(--space-4); right: var(--space-4);
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--card); color: var(--muted-foreground); cursor: pointer;
  transition: background-color 100ms ease, color 100ms ease;
  z-index: 2;
}
.modal-close:hover { background: var(--muted-2); color: var(--foreground); }
.modal-inner { position: relative; padding: var(--space-6); display: grid; gap: var(--space-4); }

/* 출석 스트립 */
.att-strip { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.att-cell2 { display: grid; justify-items: center; gap: 4px; min-width: 40px; }
.att-mark {
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: var(--step-1); line-height: 1; font-weight: 600;
  border-radius: var(--radius);
}
.att-mark.v-att { background: var(--success-soft); color: var(--success-ink); }
.att-mark.v-late { background: var(--late-soft); color: var(--warning-ink); }
.att-mark.v-abs { background: var(--danger-soft); color: var(--danger-ink); }
.att-date { font-size: var(--step--2); color: var(--faint); }
.att-strip-na { font-size: var(--step-1); color: var(--muted-foreground); }

/* 상담 타임라인 */
#stu-note-list {
  list-style: none; margin: 0 0 var(--space-4); padding: 0;
  display: grid;
}
#stu-note-list li {
  display: grid; grid-template-columns: 3rem minmax(0, 1fr);
  gap: var(--space-3); align-items: baseline;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--border);
  font-size: var(--step-0);
}
.note-date { color: var(--faint); font-size: var(--step-1); }
.note-text { word-break: keep-all; }
.note-form { display: flex; gap: var(--space-2); }
.note-form input {
  flex: 1; min-width: 0; font: inherit; font-size: var(--step-0);
  height: 36px;
  border: 1px solid var(--border-strong); border-radius: var(--radius);
  background: var(--card); color: var(--foreground);
  padding: 0 var(--space-3);
  box-shadow: var(--shadow-sm);
}
.note-form input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 15%, transparent); }
.note-form input::placeholder { color: var(--faint); }

/* 채점 */
.as-summary {
  font-size: var(--step-0); color: var(--muted-foreground);
  border-top: 1px solid var(--border);
  padding-top: var(--space-3);
}
.as-summary strong { color: var(--foreground); font-weight: 600; font-size: var(--step-2); font-variant-numeric: tabular-nums; }
.grade-table input.score {
  width: 5rem; font-family: var(--font-mono); font-size: var(--font-mono-size);
  text-align: right; color: var(--foreground);
  height: 30px;
  border: 1px solid var(--border-strong); border-radius: var(--radius);
  background: var(--card);
}
.grade-table input.score:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 15%, transparent); }
.modal-actions { display: flex; align-items: center; gap: var(--space-4); }
.modal-note { font-size: var(--step-1); }

/* ── 반응형 ── */
@media (max-width: 900px) {
  .app { grid-template-columns: minmax(0, 1fr); }
  /* 모바일 앱 헤더 — 내비는 바텀 탭으로(HIG·M3). 헤더는 브랜드+액션 한 줄(두레 앱바 문법):
     화면 이름은 각 뷰 헤드와 활성 탭이 말하므로 크럼은 데스크톱 문법이다.
     탑바가 sticky 로 상단에 남고, safe-top 으로 노치/상태바를 피한다 */
  .side { display: none; }
  .topbar {
    position: sticky; top: 0; z-index: 40;
    height: auto; min-height: 56px; min-width: 0;
    padding: 0 max(var(--space-4), var(--safe-right)) 0 max(var(--space-4), var(--safe-left));
    padding-top: max(0px, var(--safe-top));
  }
  .topbar .brand { display: flex; flex: none; padding: 0; }
  .crumb { display: none; }
  .main { padding-bottom: calc(72px + var(--safe-bottom)); } /* 바텀 내비 + 홈 인디케이터 확보 */
  .dash-grid, .cal-layout, .counsel-grid { grid-template-columns: minmax(0, 1fr); }
  .week-panel { grid-row: auto; }
  .dist-body { grid-template-columns: minmax(0, 1fr); }
  .view-head { flex-direction: column; align-items: flex-start; gap: var(--space-2); padding: var(--space-5) var(--space-4) var(--space-4); }
  .view > *:not(.view-head) { margin-inline: var(--space-4); }
  .headline { gap: var(--space-2); }
  .term-badge { display: none; }
  .cal-day { height: 56px; }
}
@media (max-width: 680px) {
  .mspread { grid-template-columns: minmax(0, 1fr); }
  .mcover { padding: var(--space-4); flex-direction: row; align-items: center; gap: var(--space-3); }
  .mcover-label { margin-bottom: 0; }
  .mcover-name { font-size: var(--step-2); }
  .mcover-meta { margin-top: 2px; }
  .mcover-stats, .mcover-foot { display: none; }
  .mcover-mark { font-size: 5rem; }
  .msheet { padding: var(--space-4); min-height: 0; }
  .headline { grid-template-columns: minmax(0, 1fr); }
}

/* ── 알림 센터 ── */
.bell-wrap { position: relative; }
.bell {
  position: relative; width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius); border: none; background: none; cursor: pointer;
  color: var(--muted-foreground); transition: background-color 80ms ease, color 80ms ease;
}
.bell:hover, .bell.is-open { background: var(--muted-2); color: var(--foreground); }
.bell-dot {
  position: absolute; top: 8px; right: 8px;
  width: 8px; height: 8px; border-radius: var(--radius-pill);
  background: var(--danger); border: 2px solid var(--background);
}
.bell-menu {
  display: none; position: absolute; top: 52px; right: 0; z-index: 40;
  width: min(340px, calc(100vw - 32px));
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden;
}
.bell-menu.is-open { display: block; }
.bell-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; border-bottom: 1px solid var(--border);
  font-size: var(--step-0); font-weight: 600;
}
.bell-head button {
  border: none; background: none; cursor: pointer;
  font-size: var(--step--1); color: var(--accent-ink); padding: 2px 4px; border-radius: var(--radius-xs);
}
.bell-head button:hover { background: var(--accent-soft); }
.ntc { display: flex; gap: 10px; padding: 11px 14px; border-bottom: 1px solid var(--border); }
.ntc:last-child { border-bottom: 0; }
.ntc .n-ico {
  width: 28px; height: 28px; flex: none; border-radius: var(--radius);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--muted-2); color: var(--muted-foreground);
}
.ntc.is-unread .n-ico { background: var(--accent-soft); color: var(--accent-ink); }
.ntc p { font-size: var(--step-0); line-height: 1.45; }
.ntc.is-read p { color: var(--muted-foreground); }
.ntc time { display: block; font-size: var(--step--1); color: var(--faint); margin-top: 2px; }

/* 좁거나 낮은 화면에서는 종 모서리가 아니라 뷰포트가 알림판의 기준이다.
   상대 위치를 유지하면 340px 패널이 좌측으로 밀리고 긴 목록이 하단 내비 아래로 사라진다. */
@media (max-width: 680px) {
  .bell-menu {
    position: fixed;
    top: calc(56px + var(--safe-top) + var(--space-2));
    right: max(var(--space-3), var(--safe-right));
    bottom: calc(72px + var(--safe-bottom) + var(--space-2));
    left: max(var(--space-3), var(--safe-left));
    width: auto;
    max-height: none;
    overflow-y: auto;
  }
}

/* ── 태그 칩 (유형·사유) ── */
.tag {
  display: inline-flex; align-items: center; white-space: nowrap;
  font-size: var(--step--2); font-weight: 500;
  border: 1px solid var(--border); color: var(--muted-foreground);
  border-radius: var(--radius-pill); padding: 1px 8px;
}
.tag-quiz { background: var(--accent-soft); color: var(--accent-ink); border-color: transparent; }
.tag-exam { background: var(--warning-soft); color: var(--warning-ink); border-color: transparent; }
.tag-warn { background: var(--warning-soft); color: var(--warning-ink); border-color: transparent; }
.tag-ok { background: var(--success-soft); color: var(--success-ink); border-color: transparent; }

/* ── 수업 진행 ── */
.h-note { font-size: var(--step--1); font-weight: 400; color: var(--faint); margin-left: 8px; }
.prog-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--space-4); }
.prog-head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-2); }
.prog-head strong { font-size: var(--step-0); font-weight: 600; }
.prog-bar { height: 6px; border-radius: var(--radius-pill); background: var(--muted-2); overflow: hidden; margin-top: 10px; }
.prog-bar i { display: block; height: 100%; border-radius: var(--radius-pill); background: var(--accent); }
.prog-meta { font-size: var(--step--1); color: var(--faint); margin-top: 8px; font-variant-numeric: tabular-nums; }

/* ── 공지 뷰 ── */
.notice-list { list-style: none; display: flex; flex-direction: column; }
.notice-row {
  width: 100%; text-align: left; cursor: pointer;
  background: none; border: none; border-bottom: 1px solid var(--border);
  padding: 14px var(--space-4);
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 4px var(--space-3);
}
.notice-list li:last-child .notice-row { border-bottom: 0; }
.notice-row:hover { background: var(--muted); }
.n-t { font-size: var(--step-0); font-weight: 600; display: flex; align-items: center; gap: 8px; min-width: 0; word-break: keep-all; }
.notice-row.is-unread .n-t::after {
  content: ""; width: 6px; height: 6px; border-radius: var(--radius-pill);
  background: var(--accent); flex: none;
}
.pin { color: var(--accent-ink); flex: none; }
.n-meta {
  grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: var(--space-3);
  font-size: var(--step--1); color: var(--faint); font-variant-numeric: tabular-nums;
}
.n-body {
  max-width: 68ch;
  grid-column: 1 / -1; display: none;
  font-size: var(--step-0); line-height: 1.65; color: var(--muted-foreground);
  padding-top: 2px;
}
.notice-row.is-open .n-body { display: block; }

/* ── 출결 사유 칩 ── */
.att-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--space-2); }
@media (pointer: coarse) {
  .att-btn { width: 40px; height: 40px; }
  .chip, .side-link, .give-btn { min-height: 40px; }
}

@media (max-width: 1080px) {
  .prog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .prog-grid { grid-template-columns: minmax(0, 1fr); }
}

/* ── 뷰 공통 요약 스트립 ── */
.statline {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: var(--space-4);
}
.statline > div {
  display: inline-flex; align-items: baseline; gap: 6px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: 6px 12px; font-size: var(--step-1); color: var(--muted-foreground);
}
.statline strong {
  font-size: var(--step-0); font-weight: 600; color: var(--foreground);
  font-variant-numeric: tabular-nums;
}
.statline .warn-ink { color: var(--warning-ink); }
.statline .muted-ink { color: var(--muted-foreground); }

/* ── 리포트 학기 요약 카드(4열) ── */
.headline-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) { .headline-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .headline-4 { grid-template-columns: minmax(0, 1fr); } }

/* ── 수강생 보호자 · 모달 보호자 블록 ── */
#stu-table td.muted { color: var(--muted-foreground); white-space: nowrap; }
.guard-line { font-size: var(--step-0); font-weight: 500; }
.guard-log {
  list-style: none; margin-top: 8px;
  font-size: var(--step--1); color: var(--muted-foreground);
  display: grid; gap: 4px;
}

/* ── 학사 일정: 유형색 + 범례 + D-day 점 ── */
.cal-ev.is-exam { background: var(--warning-soft); color: var(--warning-ink); }
.cal-ev.is-admin { background: var(--muted-2); color: var(--muted-foreground); }
.cal-ev.is-holi { background: var(--danger-soft); color: var(--danger-ink); }
.cal-legend {
  display: flex; flex-wrap: wrap; gap: var(--space-4);
  margin-top: var(--space-3); padding-top: var(--space-3);
  border-top: 1px solid var(--border);
  font-size: var(--step--1); color: var(--muted-foreground);
}
.lg-exam, .lg-due, .lg-admin, .lg-holi, .ev-dot {
  width: 8px; height: 8px; border-radius: var(--radius-xs); display: inline-block;
}
.lg-exam, .ev-dot.is-exam { background: var(--warning); }
.lg-due, .ev-dot.is-due { background: var(--accent); }
.lg-admin, .ev-dot.is-admin { background: var(--border-strong); }
.lg-holi, .ev-dot.is-holi { background: var(--danger); }
.ev-dot { margin-right: 8px; vertical-align: 0; }

/* ── 공지 뷰 툴바 여백 ── */
#view-notice .toolbar { margin-bottom: var(--space-4); }

/* ── 모바일 갸행 수습(v12) — 한글은 어절에서만 끊고, 외톨이 줄을 만들지 않는다 ── */
.view-sub, .n-body, .n-meta, .prog-meta, .stat-sub, .guard-line, .counsel-grid .co-text, .panel-note, .att-chips {
  word-break: keep-all;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}
.due-row span { word-break: keep-all; }

@media (max-width: 680px) {
  /* 마감 임박 · 예정 상담 행 — 제목과 메타를 세로로 쌓아 메타가 끊기지 않게 */
  .due-row { display: block; }
  .due-row span { display: block; }
  .due-row .mono { margin-top: 2px; }
  /* 공지 행 — 제목이 전체 폭을 쓰고 분류 칩은 아래로 */
  .notice-row { grid-template-columns: minmax(0, 1fr); }
  .notice-row .tag { justify-self: start; }
}

/* ── 단축키 안내 — 물리 키 모양의 kbd. 콘솔 앱의 손가락 문법 ── */
kbd {
  font-family: var(--font-mono); font-size: var(--step--2); line-height: 1;
  color: var(--muted-foreground);
  background: var(--card);
  border: 1px solid var(--border-strong); border-bottom-width: 2px;
  border-radius: var(--radius-xs);
  padding: 2px 5px;
  white-space: nowrap;
}
.side-kbd {
  margin-top: var(--space-2);
  padding: 0 var(--space-2) var(--space-2);
  font-size: var(--step--2); color: var(--faint);
  display: flex; align-items: center; gap: 4px; flex-wrap: wrap;
}

/* ── 탑바 아이콘 버튼(인쇄) — 종과 같은 문법 ── */
.icon-btn {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius); border: none; background: none; cursor: pointer;
  color: var(--muted-foreground);
  transition: background-color var(--dur-1) var(--ease-out), color var(--dur-1) var(--ease-out);
}
.icon-btn:hover { background: var(--muted-2); color: var(--foreground); }

/* ── 채점 검증 — 범위 밖 점수는 저장을 막고 이유를 말한다 ── */
.grade-table input.score.is-bad {
  border-color: var(--danger);
  background: var(--danger-soft);
}
.grade-table input.score[aria-invalid="true"]:focus {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--danger) 15%, transparent);
}
.score-warn {
  font-size: var(--step-1); line-height: 1.5; word-break: keep-all;
  color: var(--danger-ink);
  background: var(--danger-soft);
  border: 1px solid color-mix(in srgb, var(--danger) 25%, transparent);
  border-radius: var(--radius);
  padding: var(--space-2) var(--space-3);
}

/* ── 인쇄 — 학적부의 본연: 활성 화면을 서류로. 크롬은 물러나고 내용만 ── */
@media print {
  @page { size: A4; margin: 12mm; }
  html, body { background: var(--print-paper); }
  .side, .topbar, .skip, .toolbar, .att-chips, .panel-note, .side-kbd, .icon-btn { display: none !important; }
  .app { display: block; }
  .view { display: none !important; }
  .view.is-on { display: block !important; animation: none; }
  .view > *:not(.view-head) { margin-inline: 0; }
  .view > *:last-child { margin-bottom: 0; }
  .view-head { padding: 0 0 10pt; }
  h1, h2.v-h { font-size: 15pt; }
  .view-sub { font-size: 9.5pt; }
  .panel, .headline > div, .statline > div, .counsel-card {
    box-shadow: none; border-color: var(--print-line); break-inside: avoid;
  }
  .statline { display: block; }
  .statline > div { border: 0; padding: 0 12pt 0 0; }
  .table-wrap { overflow: visible; }
  table { font-size: 9.5pt; }
  thead th, tbody tr, .due-list li { break-inside: avoid; }
  tbody tr:hover { background: none; }
  .att-btn { box-shadow: none; }
  .att-btn, .att-mark, .state, .tag { print-color-adjust: exact; -webkit-print-color-adjust: exact; }
  .row-open, .due-row { text-decoration: none; }

  /* 모달(학적 카드·채점)이 열려 있으면 앱 대신 그 서류만 인쇄한다 */
  dialog[open].modal {
    display: block; position: static; width: 100%; max-height: none;
    border: 0; box-shadow: none;
  }
  dialog[open].modal::backdrop { display: none; }
  body:has(dialog[open].modal) .app { display: none; }
  .mspread { grid-template-columns: 200pt minmax(0, 1fr); max-height: none; }
  .mcover { background: var(--primary) !important; print-color-adjust: exact; -webkit-print-color-adjust: exact; }
  .msheet { overflow: visible; }
  .modal-close { display: none; }
}

/* 모바일 가로 스트립에는 kbd 안내가 들어갈 자리가 없다 — 기본 규칙보다 뒤에 있어야 이긴다 */
@media (max-width: 900px) {
  .side-kbd { display: none; }
}

/* ── 모바일 앱 기반 — 표준 위생(WebKit·M3·CSS-Tricks 조사 research/mobile-app-ux-v1.md) ── */
:is(button, a, input, select, textarea) { touch-action: manipulation; } /* 더블탭 줌 지연 제거 */
@media (max-width: 680px) {
  /* iOS 포커스 자동 확대 방지(CSS-Tricks) — #q·.note-form input 가 font:inherit 로
     요소 선택자를 덮으므로 같은 명시도 이상으로 파일 뒤에서 이긴다 */
  input, select, textarea,
  #q, .note-form input, .grade-table input.score { font-size: 16px; }
}

/* ── 바텀 내비 — HIG 탭바(5~6 이하)·M3 바텀 내비(3~5 목적지·48dp). 나머지 화면은 더보기 시트로 ── */
.bottom-nav {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  display: none;
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 6px max(var(--space-2), var(--safe-left)) calc(6px + var(--safe-bottom)) max(var(--space-2), var(--safe-right));
}
@media (max-width: 900px) { .bottom-nav { display: grid; grid-auto-flow: column; } }
.bnav-item {
  appearance: none; background: none; border: 0; cursor: pointer; font: inherit;
  display: grid; justify-items: center; align-content: center; gap: 3px;
  min-height: 52px; min-width: 48px; padding: 4px 2px;
  border-radius: var(--radius);
  color: var(--muted-foreground);
}
.bnav-item span { font-size: var(--step--2); font-weight: 500; }
.bnav-item.is-current { color: var(--accent-ink); font-weight: 600; }
.bnav-item.is-current svg { color: var(--accent); }

/* ── 더보기 시트 — 전체 화면 원장. 그룹 문법은 데스크톱 내비와 같다 ── */
.more-sheet { width: min(94vw, 440px); }
.more-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--space-4) var(--space-5) var(--space-2);
}
.more-head h2 { font-size: var(--step-2); }
.more-list {
  display: grid; overflow-y: auto; overscroll-behavior: contain;
  padding: var(--space-2) var(--space-4) calc(var(--space-4) + var(--safe-bottom));
}
.more-group {
  font-size: var(--step-1); font-weight: 500; color: var(--muted-foreground);
  padding: var(--space-3) var(--space-2) var(--space-1);
}
.more-item {
  appearance: none; background: none; border: 0; cursor: pointer; font: inherit; text-align: left;
  display: flex; align-items: center; gap: var(--space-3);
  min-height: 48px; padding: var(--space-2);
  border-radius: var(--radius); color: var(--foreground);
}
.more-item svg { color: var(--muted-foreground); flex: none; }
.more-item.is-current { background: var(--accent-soft); color: var(--accent-ink); font-weight: 600; }
.more-item.is-current svg { color: var(--accent); }

/* ── 바텀 시트(≤680) — 모바일 모달은 하단 시트(NN/g·HIG). 그래버·상단 라운드·내부 스크롤 ── */
@media (max-width: 680px) {
  dialog.modal {
    top: auto; bottom: 0; left: 0; right: 0;
    margin: 0 auto;
    width: 100%; max-width: 100%;
    max-height: 92dvh;
    border-left: 0; border-right: 0; border-bottom: 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    animation: sheet-up var(--dur-3) var(--ease-out) both;
  }
  dialog.modal::before { /* 그래버 — 시트의 표준 존재 표시 */
    content: ""; position: absolute; top: 8px; left: 50%; translate: -50% 0;
    width: 36px; height: 4px; border-radius: var(--radius-pill);
    background: var(--border-strong); z-index: 3;
  }
  @keyframes sheet-up { from { transform: translateY(24px); opacity: 0; } }
  .modal-inner { max-height: calc(92dvh - 16px); overflow-y: auto; }
  .mspread { max-height: 92dvh; }
}

/* ── 터치 타깃 — M3 48dp·HIG 44pt 정신의 44px 하한(coarse 포인터에서만) ── */
@media (pointer: coarse) {
  .chip, .give-btn, .btn-line, .btn-solid, .bell-head button { min-height: 44px; }
  .icon-btn, .bell, .modal-close { width: 44px; height: 44px; }
  #q { min-height: 44px; }
  .att-btn { width: 44px; height: 44px; }
  .side-link { height: 44px; }
  .grade-table input.score { height: 44px; }
}

/* 인쇄·데스크톱에서 모바일 전용 크롬은 존재하지 않는다 */
@media print { .bottom-nav, #more-dialog { display: none !important; } }
