@import url("./tokens.css");

/* ==========================================================================
   두레대학 수강신청 — 프로덕션 콘솔 (shadcn/ui new-york 문법의 바닐라 이식)
   액센트는 벽돌색 하나. 나머지는 무채상 완성도로 말한다.
   ========================================================================== */

*,
*::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); }

: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;
}

/* ── 앱바: 브랜드 · 학점 칩 · 탭. 스티키. ── */
.appbar {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 20;
}
.appbar-inner {
  max-width: 1180px; margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-3) var(--space-5);
}
.appbar-actions { display: flex; align-items: center; gap: var(--space-3); min-width: 0; }
/* 좁은 화면에서는 액션 줄이 브랜드 아래로 — 최소폭 합이 320px 를 넘기 때문 */
@media (max-width: 680px) {
  .appbar-inner { flex-wrap: wrap; row-gap: 0; }
  .appbar-actions { flex: 1 1 100%; justify-content: space-between; }
}
.brand {
  font-family: var(--font-display);
  display: inline-flex; align-items: center; gap: var(--space-2);
  color: var(--foreground); text-decoration: none;
  font-weight: 600; font-size: var(--step-1); white-space: nowrap;
}
.brand-mark {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 2px;
}
.credits {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--muted-foreground);
  background: var(--muted-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  font-size: var(--step-1);
  white-space: nowrap;
}
.credits strong { color: var(--accent-ink); font-size: var(--step-0); font-weight: 600; font-variant-numeric: tabular-nums; }

/* 탭 — 언더라인 내비 */
.tabs {
  max-width: 1180px; margin-inline: auto;
  display: flex; gap: var(--space-1);
  padding: 0 var(--space-5);
  overflow-x: auto;
  overflow-y: hidden; /* overflow-x:auto 는 반대축을 auto 로 만든다 — 세로 스크롤 금지 */
  scrollbar-width: none; /* 좁은 창 가로 스크롤바도 노출 금지 — 스와이프는 유지 */
}

.tab {
  appearance: none; cursor: pointer; font: inherit;
  font-size: var(--step-0); font-weight: 500;
  color: var(--muted-foreground);
  background: none; border: 0;
  border-bottom: 2px solid transparent;
  height: 42px;
  padding: 0 var(--space-2);
  white-space: nowrap;
  transition: color 100ms ease, border-color 100ms ease;
}
.tab:hover { color: var(--foreground); }
.tab.is-current { color: var(--foreground); font-weight: 600; border-bottom-color: var(--accent); }

/* ── 레이아웃 ── */
.layout {
  max-width: 1180px;
  margin-inline: auto;
  padding: var(--space-5) var(--space-5) 96px;
}
.view { display: none; }
.view.is-on { display: block; }
.view:focus { outline: none; }
.view > h1 { margin-bottom: 4px; }

/* 뷰 전환 — 상태 변화를 알리는 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); } }
}
.view-sub { color: var(--muted-foreground); font-size: var(--step-0); margin-bottom: var(--space-5); max-width: 46em; }
#view-catalog.is-on {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: var(--space-4);
  align-items: start;
}
.view > *:not(:first-child):not(.view-sub) { margin-top: 0; }

/* ── 카드(장부 판 → 카드) ── */
.sheet {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-4);
  min-width: 0;
}
.sheet-tt { padding: var(--space-4); }
.sheet-note { font-size: var(--step--1); color: var(--faint); margin-top: var(--space-3); }

/* ── 빈 상태 ── */
.empty-box {
  display: grid; gap: var(--space-2); justify-items: start;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5);
  background: var(--muted);
}
.empty-box p:first-child { font-weight: 600; }
.empty-box .muted { font-size: var(--step-0); }
.empty-box .btn-line { margin-top: var(--space-2); }

/* ── 검색 + 세그먼트 ── */
.toolbar { display: flex; gap: var(--space-3); align-items: center; flex-wrap: wrap; margin-bottom: 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:focus-visible { outline: 2px solid var(--ring); outline-offset: 2px; }
#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); }

/* ── 과목 목록 ── */
.course-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: minmax(0, 1fr); }
.course-row {
  appearance: none; background: none; cursor: pointer; font: inherit;
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: var(--space-4);
  padding: var(--space-3) var(--space-2);
  border: 0; border-bottom: 1px solid var(--border);
  border-radius: var(--radius);
  transition: background-color 80ms ease;
}
.course-row:first-child { border-top: 1px solid var(--border); }
.course-row:hover { background: var(--muted); }
.course-row:active { scale: 0.995; }
.c-main { display: grid; gap: 2px; min-width: 0; }
.c-name { font-weight: 600; display: flex; align-items: baseline; gap: var(--space-2); flex-wrap: wrap; }
.c-dept {
  font-size: var(--step--1); font-weight: 500;
  color: var(--muted-foreground);
  background: var(--muted-2);
  border-radius: var(--radius-xs);
  padding: 1px 6px;
}
.c-sub { color: var(--muted-foreground); font-size: var(--step--1); }
.c-side { display: grid; gap: 2px; text-align: right; flex: none; font-size: var(--step--1); }
.c-credit { font-weight: 500; color: var(--foreground); }
.c-seats { color: var(--muted-foreground); }
.c-seats.is-low { color: var(--danger); font-weight: 600; }
.c-star { color: var(--accent); font-weight: 600; }
.c-enrolled {
  display: inline-flex; align-items: center;
  color: var(--accent-ink);
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  border-radius: var(--radius-xs);
  padding: 1px 5px;
  font-size: var(--step--2);
  font-weight: 600;
}
.empty { padding: var(--space-4) 0; color: var(--muted-foreground); }

/* ── 표 ── */
.table-wrap { overflow-x: auto; overflow-y: hidden; }
table { width: 100%; border-collapse: collapse; }
th { font-weight: 500; } /* UA 기본 th 볼드 재정의 */
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; font-size: var(--step-0); }
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); }
.ar-sub { background: var(--muted); }
.ar-sub th, .ar-sub td { font-weight: 600; }
.low-seats { color: var(--danger); font-weight: 600; }

/* ── 신청 내역 ── */
.en-sum { color: var(--muted-foreground); margin-bottom: var(--space-4); }
.en-sum strong { color: var(--accent-ink); font-size: var(--step-2); font-weight: 600; }
.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: all 100ms ease;
  white-space: nowrap;
}
.give-btn:hover { border-color: var(--danger); color: var(--danger); }

/* ── 공지 게시판 ── */
.notice-list { list-style: none; margin: 0; padding: 0; display: grid; }
.notice-list li {
  display: grid;
  grid-template-columns: 3.2rem 4rem minmax(0, 1fr);
  gap: var(--space-3);
  align-items: baseline;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--border);
}
.notice-list li:first-child { border-top: 1px solid var(--border); }
.no-kind {
  font-size: var(--step--1); font-weight: 600;
  background: var(--muted-2); color: var(--muted-foreground);
  border-radius: var(--radius); padding: 2px 8px;
  text-align: center; white-space: nowrap;
  justify-self: start;
}
.no-kind[data-kind="변경"] { background: var(--accent-soft); color: var(--accent-ink); }
.no-date { color: var(--faint); }
.no-body { line-height: var(--leading-normal); word-break: keep-all; max-width: 68ch; }

/* ── 시간표 ── */
.timetable-panel { min-width: 0; }
.timetable-panel h2 { margin-bottom: 4px; }
.tt-hint { font-size: var(--step--1); margin-bottom: var(--space-3); }
.tt-scroll { overflow-x: auto; overflow-y: hidden; }
.tt {
  display: grid;
  grid-template-columns: 2.5rem repeat(5, minmax(4.2rem, 1fr));
  grid-auto-rows: minmax(1.35rem, auto);
  min-width: min(100%, 420px);
}
.tt-corner { grid-column: 1; grid-row: 1; border-bottom: 1px solid var(--border-strong); }
.tt-day {
  font-size: var(--step--1); font-weight: 600;
  display: grid; place-items: center;
  border-bottom: 2px solid var(--border-strong);
  padding-bottom: var(--space-1);
}
.tt-hour {
  font-size: var(--step--2); color: var(--faint);
  display: grid; place-items: start end;
  padding: 2px 4px 0 0;
  position: relative;
}
.tt-cell { border-left: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.tt-block {
  appearance: none; border: 0; cursor: pointer;
  display: grid; align-content: start; gap: 2px;
  padding: var(--space-2);
  border-radius: var(--radius);
  text-align: left; overflow: hidden;
  transition: box-shadow 100ms ease, scale 80ms ease;
  min-width: 0;
}
.tt-block:hover { box-shadow: var(--shadow-lg); z-index: 2; }
.tt-block:active { scale: 0.98; }
.tt-block.is-major { background: var(--accent-soft); color: var(--accent-ink); box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 35%, transparent), inset 3px 0 0 var(--accent); }
.tt-block.is-gen { background: var(--muted-2); color: var(--foreground); box-shadow: inset 3px 0 0 var(--border-strong); }
.tt-block-name { font-size: var(--step--1); font-weight: 600; line-height: 1.35; word-break: keep-all; }
.tt-block-room { font-size: var(--step--2); color: var(--muted-foreground); }
.tt-empty {
  grid-column: 2 / -1; grid-row: 4 / span 8;
  display: flex; align-items: center; justify-content: center;
  color: var(--faint); font-size: var(--step--1);
  border: 1px dashed var(--border-strong); border-radius: var(--radius);
  pointer-events: none;
  background: var(--muted);
}

.status {
  margin-top: var(--space-3);
  font-size: var(--step--1);
  color: var(--muted-foreground);
  border-top: 1px solid var(--border);
  padding-top: var(--space-3);
  min-height: 2.2em;
}
.status.is-warn { color: var(--danger); }
.tt-legend { display: flex; gap: var(--space-4); margin-top: var(--space-2); font-size: var(--step--1); color: var(--muted-foreground); }
.key { display: inline-flex; align-items: center; gap: 6px; }
.key i { width: 10px; height: 10px; display: inline-block; border-radius: var(--radius-xs); }
.k-major { background: var(--accent-soft); box-shadow: inset 2px 0 0 var(--accent); }
.k-gen { background: var(--muted-2); box-shadow: inset 2px 0 0 var(--border-strong); }
.k-state { background: var(--accent); }

/* ── 버튼 ── */
.btn-primary, .btn-line, .btn-star {
  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;
  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-primary { background: var(--accent); border: 1px solid var(--accent); color: var(--on-accent); box-shadow: var(--shadow-sm); }
.btn-primary:hover:not(:disabled) { background: var(--accent-ink); border-color: var(--accent-ink); }
.btn-primary:disabled { opacity: 0.45; cursor: not-allowed; }
.btn-line { background: var(--card); border: 1px solid var(--border-strong); color: var(--foreground); box-shadow: var(--shadow-sm); }
.btn-line:hover { background: var(--muted); }
.btn-star { background: none; border: 1px solid var(--border-strong); color: var(--muted-foreground); }
.btn-star:hover { color: var(--accent-ink); border-color: var(--accent); }
.btn-star[aria-pressed="true"] { color: var(--accent-ink); border-color: var(--accent); background: var(--accent-soft); font-weight: 600; }
.btn-primary:active, .btn-line:active, .btn-star:active { scale: 0.98; }

/* ── 모달: 스플릿. 정보 패널과 핵심 동작을 분리한다. ── */
.modal {
  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;
  box-shadow: var(--shadow-xl);
}
.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-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-size: var(--step-3); line-height: 1.25; 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; gap: var(--space-3);
  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; text-align: right; 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;
}
.cd-line { color: var(--muted-foreground); font-size: var(--step-0); }
.msec h3 { color: var(--muted-foreground); margin-bottom: var(--space-3); font-weight: 500; font-size: var(--step-0); }
.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-actions { display: flex; gap: var(--space-2); align-items: center; flex-wrap: wrap; }

.warn {
  font-size: var(--step-0);
  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);
}

/* 주간 자리 미니 격자 */
.cd-strip { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: var(--space-2); }
.cd-track { display: grid; justify-items: center; gap: var(--space-1); }
.cd-rail { position: relative; width: 100%; height: 92px; border-left: 1px solid var(--border-strong); }
.cd-off { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--faint); }
.cd-slot { position: absolute; left: 0; right: 4px; border-radius: var(--radius-xs); }
.cd-slot.is-major { background: var(--accent-soft); border-left: 3px solid var(--accent); }
.cd-slot.is-gen { background: var(--muted-2); border-left: 3px solid var(--border-strong); }
.cd-day-l { font-size: var(--step--2); color: var(--faint); }
.cd-day-l.is-on { color: var(--foreground); font-weight: 600; }

/* 평가 누적 막대 — 벽돌의 농도 3단 */
.eval-bar {
  display: flex; height: 14px;
  border-radius: var(--radius-xs);
  overflow: hidden;
  margin-bottom: var(--space-3);
  background: var(--muted-2);
}
.eval-seg { display: block; height: 100%; }
.eval-seg.seg-1 { background: var(--accent); }
.eval-seg.seg-2 { background: var(--accent-tint-2); }
.eval-seg.seg-3 { background: var(--accent-tint-3); }
.eval-legend { display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-5); }
.eval-legend dt { color: var(--muted-foreground); font-size: var(--step--1); }
.eval-legend dd { font-weight: 600; font-size: var(--step--1); }

/* ── 반응형 ── */
@media (max-width: 900px) {
  #view-catalog.is-on { grid-template-columns: minmax(0, 1fr); gap: var(--space-4); }
  .timetable-panel { position: static; }
  .notice-list li { grid-template-columns: minmax(0, 1fr); gap: var(--space-1); }
  .no-kind, .no-date { justify-self: start; }
  /* 모바일 앱 — 내비는 바텀 탭으로(HIG·M3), 앱바는 safe-area 를 존중한다.
     본문 인셋은 앱바(24px)와 같은 축 — 제목이 카드·앱바보다 왼쪽으로 튀면 리듬이
     무너져 '가장자리에 붙었다'로 읽힌다(실측 사고: 제목 16 vs 앱바·카드 24 혼재) */
  .tabs { display: none; }
  .appbar { padding-top: var(--safe-top); }
  .layout {
    padding: var(--space-4) max(var(--space-5), var(--safe-right)) calc(72px + var(--safe-bottom)) max(var(--space-5), var(--safe-left));
  }
}
@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; }
  .msheet { padding: var(--space-4); min-height: 0; }
  .course-row { flex-direction: column; align-items: flex-start; gap: var(--space-2); }
  .c-side { text-align: left; display: flex; gap: var(--space-3); align-items: center; }
  .modal-actions { flex-wrap: wrap; }
}

/* ── 뷰 공통 요약 스트립 (가온과 같은 문법) ── */
.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;
}

/* ── 관심 과목 학점 경고 — 오류 예방 ── */
.st-warn {
  font-size: var(--step-0); line-height: 1.6; word-break: keep-all;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--muted-2); color: var(--muted-foreground);
  padding: 10px 14px; margin-bottom: var(--space-4);
  font-variant-numeric: tabular-nums;
}
.st-warn.is-over {
  background: color-mix(in srgb, var(--accent) 8%, white);
  border-color: color-mix(in srgb, var(--accent) 30%, white);
  color: var(--accent-ink);
}

/* ── 모바일 갸행 수습 — 과목행 부정보는 세그먼트(코드·교수·시간·장소) 단위로만 끊는다 ── */
.c-sub i { font-style: normal; white-space: nowrap; }
.view-sub, .no-body, .st-warn, .empty, .notice-list { word-break: keep-all; overflow-wrap: anywhere; text-wrap: pretty; }

/* ── 라운드 1: 이수 진행 바 · 학점 게이지 · 관심 추천 ── */
.cr-bar { height: 6px; border-radius: var(--radius-pill); background: var(--muted-2); overflow: hidden; min-width: 90px; }
.cr-bar i { display: block; height: 100%; background: var(--accent); border-radius: var(--radius-pill); }
.cr-total { margin-top: var(--space-4); padding-top: var(--space-4); border-top: 1px solid var(--border); }
.cr-total .cr-bar { height: 8px; }
.credit-gauge { height: 8px; border-radius: var(--radius-pill); background: var(--muted-2); overflow: hidden; margin: 10px 0 6px; }
.credit-gauge i { display: block; height: 100%; background: var(--accent); border-radius: var(--radius-pill); transition: width var(--dur-3) var(--ease-out); }
.h-note { font-size: var(--step--1); font-weight: 400; color: var(--muted-foreground); margin-left: 8px; }
.st-suggest { margin-top: var(--space-4); }

/* ── 단축키 안내 — 물리 키 모양의 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;
}
.kbd-hint {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: var(--step--2); color: var(--faint);
  white-space: nowrap;
}
@media (max-width: 900px) { .kbd-hint { display: none; } }

/* ── 앱바 아이콘 버튼(인쇄) ── */
.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); }

/* ── 상태줄 실행취소 — 취소는 되돌릴 수 있어야 한다 ── */
.status .undo-btn {
  appearance: none; border: 0; background: none; cursor: pointer;
  font: inherit; font-size: var(--step--1); font-weight: 600;
  color: var(--accent-ink);
  padding: 0 2px;
  text-decoration: underline; text-underline-offset: 3px;
}
.status .undo-btn:hover { color: var(--accent); }

/* ── 인쇄 — 시간표·강의계획서의 본연. 앱 크롬은 물러나고 서류만 ── */
@media print {
  @page { size: A4 landscape; margin: 10mm; }
  html, body { background: var(--print-paper); }
  .skip, .tabs, .credits, .toolbar, .tt-hint, .status, .tt-legend, .kbd-hint, .icon-btn,
  .empty-box .btn-line, .sheet-note { display: none !important; }
  .appbar { position: static; border-bottom: 1px solid var(--print-line); }
  .appbar-inner { padding: 0; }
  .layout { max-width: none; padding: 6mm 0 0; }
  .view { display: none !important; }
  .view.is-on { display: block !important; animation: none; }
  #view-catalog.is-on { display: grid !important; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 6mm; }
  .view > h1 { font-size: 13pt; }
  .view-sub { font-size: 9pt; margin-bottom: 4mm; }
  .sheet { box-shadow: none; border-color: var(--print-line); break-inside: avoid; }
  .table-wrap { overflow: visible; }
  table { font-size: 9pt; }
  thead th, tbody tr { break-inside: avoid; }
  tbody tr:hover { background: none; }
  .tt { min-width: 0; }
  .tt-block, .cd-slot, .eval-seg, .c-enrolled, .c-dept, .no-kind {
    print-color-adjust: exact; -webkit-print-color-adjust: exact;
  }

  /* 강의계획서 모달이 열려 있으면 앱 대신 그 서류만 인쇄한다 */
  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) .appbar,
  body:has(dialog[open].modal) .layout { display: none; }
  .mspread { grid-template-columns: 190pt 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; }
}

/* ── 모바일 앱 기반 — 표준 위생(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 가 font:inherit 로 요소 선택자를 덮으므로
     같은 명시도 이상으로 파일 뒤에서 이긴다 */
  input, select, textarea, #q { 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; } }
  .mspread { max-height: 92dvh; }
}

/* ── 터치 타깃 — M3 48dp·HIG 44pt 정신의 44px 하한(coarse 포인터에서만) ── */
@media (pointer: coarse) {
  .chip, .give-btn, .btn-line { min-height: 44px; }
  .icon-btn, .bell, .modal-close { width: 44px; height: 44px; }
  .btn-primary, .btn-star { min-height: 44px; }
  #q { min-height: 44px; }
}

/* 인쇄·데스크톱에서 모바일 전용 크롬은 존재하지 않는다 */
@media print { .bottom-nav, #more-dialog { display: none !important; } }
