@import url('https://fonts.googleapis.com/css2?family=Gowun+Dodum&family=Noto+Sans+KR:wght@400;500;600;700&display=swap');

:root {
  --ink: #172b2a;
  --muted: #687978;
  --paper: #fffdf8;
  --canvas: #f2f5ef;
  --line: #dce5de;
  --brand: #176b61;
  --brand-dark: #0d4c45;
  --mint: #dff1e9;
  --coral: #f07965;
  --amber: #f5c76f;
  --shadow: 0 18px 55px rgba(35, 69, 60, 0.12);
  --radius: 24px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(245, 199, 111, .22), transparent 25rem),
    radial-gradient(circle at 92% 30%, rgba(23, 107, 97, .12), transparent 26rem),
    var(--canvas);
  font-family: "Noto Sans KR", sans-serif;
}

button, input, select { font: inherit; }
button { cursor: pointer; }

.shell { min-height: 100vh; }

.topbar {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  border-bottom: 1px solid rgba(23, 43, 42, .08);
  background: rgba(255, 253, 248, .82);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--brand); color: white; font-family: "Gowun Dodum", sans-serif;
}

.mode-switch { display: flex; gap: 6px; padding: 5px; background: #e9eee9; border-radius: 14px; }
.mode-switch button {
  border: 0; background: transparent; color: var(--muted);
  padding: 9px 14px; border-radius: 10px; font-size: 13px; font-weight: 600;
}
.mode-switch button.active { background: var(--paper); color: var(--brand-dark); box-shadow: 0 3px 12px rgba(20,60,50,.08); }

.admin-layout { display: grid; grid-template-columns: 235px 1fr; min-height: calc(100vh - 72px); }
.sidebar { padding: 34px 24px; border-right: 1px solid var(--line); background: rgba(255,255,255,.38); }
.admin-profile { display: flex; align-items: center; gap: 11px; margin-bottom: 34px; }
.avatar { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: var(--mint); color: var(--brand); font-weight: 700; }
.admin-profile small { color: var(--muted); }
.nav-item { width: 100%; border: 0; padding: 13px 14px; border-radius: 12px; margin: 3px 0; text-align: left; background: transparent; color: var(--muted); }
.nav-item.active { color: var(--brand-dark); background: var(--mint); font-weight: 700; }

.admin-main { padding: 44px clamp(24px, 5vw, 72px) 80px; max-width: 1500px; width: 100%; }
.eyebrow { color: var(--brand); text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 700; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-family: "Gowun Dodum", sans-serif; font-size: clamp(30px, 4vw, 46px); line-height: 1.2; margin-bottom: 10px; }
.lead { color: var(--muted); line-height: 1.7; }
.page-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 32px; }

.primary, .secondary, .ghost {
  border-radius: 13px; padding: 12px 18px; font-weight: 700; border: 1px solid transparent;
}
.primary { background: var(--brand); color: white; box-shadow: 0 9px 22px rgba(23,107,97,.18); }
.primary:hover { background: var(--brand-dark); }
.secondary { background: var(--paper); border-color: var(--line); color: var(--ink); }
.ghost { background: transparent; color: var(--brand); }
.wide { width: 100%; }

.stats { display: grid; grid-template-columns: repeat(4, minmax(140px, 1fr)); gap: 16px; margin-bottom: 25px; }
.stat, .panel, .survey-card {
  border: 1px solid rgba(23,43,42,.08); background: rgba(255,253,248,.92); box-shadow: var(--shadow); border-radius: var(--radius);
}
.stat { padding: 21px; }
.stat-label { color: var(--muted); font-size: 13px; }
.stat-value { font-family: "Gowun Dodum", sans-serif; font-size: 32px; margin: 7px 0 2px; }
.stat-note { color: var(--brand); font-size: 12px; }
.panel { overflow: hidden; }
.panel-head { display: flex; justify-content: space-between; align-items: center; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.panel-head h2 { font-size: 18px; margin: 0; }
.search { border: 1px solid var(--line); background: #fff; border-radius: 12px; padding: 10px 13px; width: 220px; }
.table-tools { display: flex; gap: 9px; }
.table-tools select.search { width: 125px; }
.cell-sub { display: block; color: var(--muted); margin-top: 3px; }
.eval-cell { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; min-width: 150px; }
.due-line { width: 100%; display: flex; align-items: center; gap: 7px; margin-bottom: 2px; }
.due-line strong { font-size: 13px; }
.dday { padding: 3px 7px; border-radius: 999px; background: var(--mint); color: var(--brand-dark); font-size: 10px; font-weight: 700; }
.dday.late { background: #ffe3de; color: #a54535; }

.table-wrap { overflow-x: auto; }
table { border-collapse: collapse; width: 100%; min-width: 760px; }
th, td { text-align: left; padding: 16px 20px; border-bottom: 1px solid #edf0ed; font-size: 14px; }
th { color: var(--muted); font-size: 12px; background: #fafbf8; }
tr:last-child td { border-bottom: 0; }
.person { display: flex; align-items: center; gap: 10px; }
.person-dot { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: #eff3ef; color: var(--brand-dark); font-weight: 700; }
.person small { display: block; color: var(--muted); margin-top: 2px; }
.badge { display: inline-flex; padding: 6px 9px; border-radius: 999px; font-size: 11px; font-weight: 700; white-space: nowrap; }
.done { background: #dff1e9; color: #146258; }
.progressing { background: #fff0cf; color: #855c0c; }
.issued { background: #e9ecf7; color: #48547b; }
.empty { background: #eef0ee; color: #78817b; }
.link-action { border: 0; background: transparent; color: var(--brand); font-weight: 700; }

.drawer-backdrop { position: fixed; inset: 0; z-index: 50; background: rgba(13, 42, 39, .35); display: flex; justify-content: flex-end; }
.drawer { width: min(470px, 100%); height: 100%; background: var(--paper); padding: 34px; overflow-y: auto; box-shadow: -20px 0 60px rgba(10, 40, 35, .16); }
.drawer-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 28px; }
.icon-button { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; background: white; font-size: 20px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 8px; }
.field select, .field input { width: 100%; border: 1px solid var(--line); background: white; padding: 13px; border-radius: 12px; color: var(--ink); }
.identity-preview { background: #f1f5ef; padding: 17px; border-radius: 15px; margin: 18px 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.identity-preview small { display: block; color: var(--muted); margin-bottom: 4px; }
.generated { margin-top: 22px; border-top: 1px solid var(--line); padding-top: 22px; }
.url-box { display: flex; gap: 8px; background: #eff4f1; border: 1px dashed #aac5bb; padding: 10px; border-radius: 13px; align-items: center; }
.url-box code { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; flex: 1; font-size: 12px; }

.survey-stage { min-height: calc(100vh - 72px); display: grid; place-items: center; padding: 42px 18px 70px; }
.phone-wrap { width: min(100%, 470px); }
.demo-ribbon { text-align: center; font-size: 12px; color: var(--muted); margin-bottom: 12px; }
.survey-card { padding: clamp(23px, 6vw, 38px); }
.survey-card h1 { font-size: 32px; }
.survey-card .lead { font-size: 15px; }
.check-graphic { width: 62px; height: 62px; border-radius: 22px; background: var(--mint); color: var(--brand); display: grid; place-items: center; font-size: 30px; margin-bottom: 24px; transform: rotate(-4deg); }
.identity-list { border-top: 1px solid var(--line); margin: 25px 0; }
.identity-row { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.identity-row span:first-child { color: var(--muted); }
.identity-row strong { text-align: right; }
.notice { background: #fff5dc; color: #75571a; border-radius: 13px; padding: 13px 14px; font-size: 12px; line-height: 1.6; margin-bottom: 22px; }

.survey-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; font-size: 13px; }
.survey-top strong { color: var(--brand); }
.progress-track { height: 7px; background: #e7ece8; border-radius: 999px; overflow: hidden; margin-bottom: 30px; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--brand), #5ea493); border-radius: inherit; transition: width .35s ease; }
.question-kicker { color: var(--coral); font-weight: 700; font-size: 12px; letter-spacing: .08em; }
.question { font-family: "Gowun Dodum", sans-serif; font-size: 24px; line-height: 1.55; min-height: 110px; margin: 10px 0 23px; }
.options { display: grid; gap: 10px; }
.option { border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; background: white; text-align: left; color: var(--ink); transition: .18s ease; }
.option:hover { border-color: #91b7ad; transform: translateY(-1px); }
.option.selected { background: var(--brand); color: white; border-color: var(--brand); }
.save-state { min-height: 28px; margin: 14px 0 4px; color: var(--brand); font-size: 12px; text-align: right; }
.survey-actions { display: grid; grid-template-columns: 1fr 2fr; gap: 10px; margin-top: 12px; }
.survey-actions.single { grid-template-columns: 1fr; }
.survey-actions button:disabled { opacity: .45; cursor: not-allowed; }
.option:disabled { cursor: wait; }
.autosave-note { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 12px; margin-top: 18px; }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: #50a18f; box-shadow: 0 0 0 5px rgba(80,161,143,.13); }
.complete-score { font-family: "Gowun Dodum", sans-serif; font-size: 46px; color: var(--brand); margin: 10px 0; }
.toast { position: fixed; left: 50%; bottom: 24px; z-index: 100; transform: translate(-50%, 20px); opacity: 0; color: white; background: #173d38; padding: 12px 18px; border-radius: 12px; transition: .25s; pointer-events: none; font-size: 13px; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.login-page { min-height: 100vh; display: grid; place-items: center; padding: 24px; background: #fff; }
.login-card { width: min(100%, 480px); padding: 46px; border: 1px solid #dededb; border-radius: 24px; box-shadow: 0 18px 50px rgba(0,0,0,.08); background: #fff; }
.login-card h1 { margin: 9px 0 12px; font-family: "Noto Sans KR", sans-serif; font-size: 43px; color: #171717; letter-spacing: -.04em; }
.login-card .primary { min-height: 58px; margin-top: 17px; border-radius: 10px; background: #171717; font-size: 19px; }
.login-note, .survey-pending-note { margin: 17px 0 0; color: #777; font-size: 13px; text-align: center; line-height: 1.6; }
.admin-account { display: flex; align-items: center; justify-content: flex-end; gap: 14px; margin-bottom: 14px; color: #777; font-size: 14px; }
.admin-account button { padding: 3px 0; border: 0; border-bottom: 1px solid #777; background: transparent; color: #333; }
.primary:disabled { opacity: .52; cursor: not-allowed; box-shadow: none; }

@media (max-width: 900px) {
  .sidebar { display: none; }
  .admin-layout { display: block; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .admin-main { padding-top: 28px; }
}

@media (max-width: 600px) {
  .login-card { padding: 32px 24px; border-radius: 18px; }
  .login-card h1 { font-size: 34px; }
  .topbar { height: 64px; padding: 0 16px; }
  .brand span:last-child { display: none; }
  .mode-switch button { padding: 8px 10px; font-size: 12px; }
  .page-head { align-items: flex-start; flex-direction: column; }
  .page-head .primary { width: 100%; }
  .stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat { padding: 16px; border-radius: 18px; }
  .stat-value { font-size: 26px; }
  .panel { border-radius: 18px; }
  .panel-head { align-items: stretch; flex-direction: column; gap: 12px; }
  .search { width: 100%; }
  .table-tools { width: 100%; }
  .table-tools select.search { width: 38%; }
  .survey-stage { padding: 18px 12px 45px; align-items: start; }
  .survey-card { border-radius: 22px; }
  .question { min-height: 95px; font-size: 22px; }
}

/* 관리자 현황: 정보 밀도를 낮춘 모노톤 표 */
.admin-monochrome {
  --ink: #171717;
  --muted: #737373;
  --line: #ddddda;
  --brand: #171717;
  --brand-dark: #000000;
  background: #ffffff;
  background-image: none;
}
.admin-monochrome .simple-admin { max-width: 1600px; margin: 0 auto; padding: 54px clamp(24px, 4vw, 60px) 32px; }
.admin-monochrome .page-head { align-items: flex-end; margin-bottom: 32px; }
.admin-monochrome .page-label { margin-bottom: 9px; color: #777774; font-size: 15px; font-weight: 700; letter-spacing: .16em; }
.admin-monochrome .page-head h1 { margin-bottom: 8px; font-family: "Noto Sans KR", sans-serif; font-size: 48px; font-weight: 700; letter-spacing: -.04em; }
.admin-monochrome .page-head .lead { margin-bottom: 0; font-size: 21px; }
.admin-monochrome .primary { min-height: 60px; padding-inline: 26px; background: #171717; border-radius: 10px; box-shadow: 0 6px 14px rgba(0,0,0,.08); font-size: 24px; }
.admin-monochrome .primary:hover { background: #000000; }
.admin-monochrome .panel { overflow: hidden; border: 1px solid #d7d8d4; border-radius: 14px; box-shadow: 0 12px 32px rgba(35,39,34,.06); background: #ffffff; }
.admin-monochrome .list-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 24px; border-bottom: 1px solid #dededb; }
.admin-monochrome .list-head h2 { margin: 0 0 3px; font-size: 25.5px; }
.admin-monochrome .list-head p { margin: 0; color: #888885; font-size: 16.5px; }
.admin-monochrome .list-head p strong { color: #222222; }
.admin-monochrome .search-wrap { position: relative; width: 360px; }
.admin-monochrome .search-wrap > span { position: absolute; left: 14px; top: 10px; color: #777774; font-size: 27px; }
.admin-monochrome .search { width: 100%; height: 58px; padding-left: 48px; border-color: #c8c8c5; border-radius: 10px; background: #ffffff; font-size: 24px; }
.admin-monochrome .search:focus { outline: 2px solid #222222; outline-offset: -1px; }
.admin-monochrome .filter-bar { display: grid; grid-template-columns: auto auto 1fr; align-items: end; gap: 30px; padding: 16px 24px; border-bottom: 1px solid #d8d8d5; background: #fafaf8; }
.admin-monochrome .filter-bar fieldset { display: flex; align-items: center; gap: 10px; margin: 0; padding: 0; border: 0; }
.admin-monochrome .filter-bar legend { float: left; width: auto; margin: 0; color: #666663; font-size: 16.5px; font-weight: 700; line-height: 40px; }
.admin-monochrome .filter-options { display: flex; gap: 5px; }
.admin-monochrome .check-filter { position: relative; display: inline-flex; cursor: pointer; }
.admin-monochrome .check-filter input { position: absolute; opacity: 0; pointer-events: none; }
.admin-monochrome .check-filter span { min-width: 58px; padding: 8px 14px; border: 1px solid #cfcfcc; border-radius: 8px; background: #ffffff; color: #444441; text-align: center; font-size: 16.5px; transition: background .12s, color .12s, transform .12s; }
.admin-monochrome .check-filter input:checked + span { border-color: #222222; background: #222222; color: #ffffff; }
.admin-monochrome .check-filter:hover span { transform: translateY(-1px); }
.admin-monochrome .check-filter input:focus-visible + span { outline: 2px solid #777777; outline-offset: 2px; }
.admin-monochrome .filter-reset { justify-self: end; padding: 6px 0; border: 0; border-bottom: 1px solid #555555; background: transparent; color: #333333; font-size: 16.5px; }
.admin-monochrome .filter-reset:disabled { border-color: transparent; color: #aaaaaa; cursor: default; }
.admin-monochrome .table-wrap { overflow-x: auto; }
.admin-monochrome table { min-width: 1540px; table-layout: fixed; }
.admin-monochrome .col-person { width: 9%; }
.admin-monochrome .col-study { width: 13%; }
.admin-monochrome .col-region { width: 7%; }
.admin-monochrome .col-eval { width: 23.66%; }
.admin-monochrome th { position: sticky; top: 0; z-index: 1; background: #f1f1ef; color: #5c5c59; font-size: 16.5px; font-weight: 700; }
.admin-monochrome th small { margin-left: 4px; color: #898986; font-size: 15px; font-weight: 500; }
.admin-monochrome th,
.admin-monochrome td { padding: 20px 20px; border-bottom-color: #e3e3e0; vertical-align: top; }
.admin-monochrome td { font-size: 21px; }
.admin-monochrome th { padding: 13px 20px; }
.admin-monochrome tbody tr { transition: background .12s; }
.admin-monochrome tbody tr:hover { background: #f8f9f6; }
.admin-monochrome .person { display: block; }
.admin-monochrome .person strong { font-size: 21px; }
.admin-monochrome .person small { color: #777777; font-size: 18px; }
.admin-monochrome .eval-cell { display: block; min-width: 278px; }
.admin-monochrome .eval-line { display: grid; grid-template-columns: 65px 108px 1fr; align-items: baseline; min-height: 36px; gap: 12px; font-size: 18px; }
.admin-monochrome .eval-line span { color: #888888; }
.admin-monochrome .eval-line strong { font-size: 18px; font-weight: 600; color: #222222; }
.admin-monochrome .eval-line em { color: #555555; font-size: 16.5px; font-style: normal; }
.admin-monochrome .eval-cell.urgent .eval-line:first-child strong,
.admin-monochrome .eval-cell.urgent .eval-line:first-child em { color: #b42318; font-weight: 700; }
.admin-monochrome .eval-footer { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 15px; padding-top: 13px; border-top: 1px solid #e9e9e6; font-size: 16.5px; }
.admin-monochrome .plain-status { color: #555552; font-weight: 600; }
.admin-monochrome .link-action { padding: 2px 0; color: #111111; font-size: 16.5px; font-weight: 700; text-decoration: none; }
.admin-monochrome .link-action:hover { text-decoration: underline; text-underline-offset: 3px; }
.admin-monochrome .cell-sub { color: #777777; }
.admin-monochrome .empty-state { display: flex; align-items: center; justify-content: center; gap: 18px; min-height: 220px; color: #777774; font-size: 21px; }
.admin-monochrome .empty-state button { border: 0; border-bottom: 1px solid #333333; background: transparent; color: #222222; }
.admin-monochrome .admin-footer { display: flex; justify-content: space-between; padding: 15px 2px; color: #888885; font-size: 15px; }
.admin-monochrome .admin-footer button { border: 0; background: transparent; color: #555552; font-size: 15px; text-decoration: underline; }
.admin-monochrome .admin-tabs { display: flex; gap: 6px; margin: 0 0 34px; padding-bottom: 10px; border-bottom: 1px solid #dededb; }
.admin-monochrome .admin-tabs button { padding: 10px 15px; border: 0; border-radius: 8px; background: transparent; color: #777774; font-size: 18px; font-weight: 700; }
.admin-monochrome .admin-tabs button:hover { background: #f5f5f3; color: #222222; }
.admin-monochrome .admin-tabs button.active { background: #222222; color: #ffffff; }
.admin-monochrome .filter-bar.regional { grid-template-columns: auto auto 1fr; }
.admin-monochrome .scope-filter { display: flex; align-items: center; gap: 10px; min-height: 40px; color: #666663; font-size: 16.5px; }
.admin-monochrome .scope-filter span { padding: 8px 14px; border: 1px solid #cfcfcc; border-radius: 8px; background: #ffffff; color: #222222; font-weight: 700; }
.admin-monochrome .secondary.compact { min-height: 42px; padding: 8px 14px; border-radius: 8px; font-size: 16px; }
.admin-monochrome .account-table-wrap { overflow-x: auto; }
.admin-monochrome .account-table { min-width: 980px; table-layout: auto; }
.admin-monochrome .account-table th,
.admin-monochrome .account-table td { vertical-align: middle; }
.admin-monochrome .account-table td { font-size: 18px; }
.admin-monochrome .account-status { font-weight: 700; }
.admin-monochrome .account-status.disabled { color: #b42318; }
.admin-monochrome .protected-account { color: #888885; font-size: 16px; }
.admin-monochrome .drawer-backdrop { background: rgba(0, 0, 0, .32); }
.admin-monochrome .drawer { padding: 36px 32px; background: #ffffff; box-shadow: -16px 0 44px rgba(0, 0, 0, .13); font-size: 24px; }
.admin-monochrome .drawer .eyebrow { color: #777774; }
.admin-monochrome .drawer h2 { font-size: 36px; letter-spacing: -.03em; }
.admin-monochrome .drawer .icon-button { border-color: #cfcfcc; border-radius: 10px; }
.admin-monochrome .drawer .field { margin-bottom: 17px; }
.admin-monochrome .drawer .field label { color: #444441; font-size: 16.5px; }
.admin-monochrome .drawer .field select,
.admin-monochrome .drawer .field input { min-height: 56px; border-color: #c8c8c5; border-radius: 9px; font-size: 24px; }
.admin-monochrome .drawer .field input[readonly] { background: #f4f4f2; color: #555552; }
.admin-monochrome .drawer .field select:focus,
.admin-monochrome .drawer .field input:focus { outline: 2px solid #222222; outline-offset: -1px; }
.admin-monochrome .drawer .login-id-entry { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; overflow: hidden; border: 1px solid #c8c8c5; border-radius: 9px; }
.admin-monochrome .drawer .login-id-entry:focus-within { outline: 2px solid #222222; outline-offset: -1px; }
.admin-monochrome .drawer .login-id-entry input { min-width: 0; border: 0; border-radius: 0; }
.admin-monochrome .drawer .login-id-entry input:focus { outline: 0; }
.admin-monochrome .drawer .login-id-entry span { padding: 0 14px; color: #666663; font-size: 18px; }
.admin-monochrome .drawer .field-help { display: block; margin-top: 7px; color: #777774; font-size: 14px; line-height: 1.5; }
.admin-monochrome .drawer .identity-preview { padding: 15px 16px; border: 1px solid #dededb; border-radius: 10px; background: #f7f7f5; }
.admin-monochrome .drawer .generated { border-top-color: #dededb; }
.admin-monochrome .drawer .url-box { border: 1px solid #c8c8c5; border-radius: 9px; background: #f7f7f5; }
.admin-monochrome .drawer .secondary { border-color: #c8c8c5; border-radius: 8px; }

@media (max-width: 600px) {
  .admin-monochrome .simple-admin { padding: 25px 14px 50px; }
  .admin-monochrome .admin-tabs { margin-bottom: 25px; overflow-x: auto; }
  .admin-monochrome .page-head { align-items: stretch; }
  .admin-monochrome .list-head { align-items: stretch; flex-direction: column; padding: 18px 15px; }
  .admin-monochrome .search-wrap { width: 100%; }
  .admin-monochrome .filter-bar { display: flex; align-items: flex-start; flex-direction: column; gap: 12px; padding: 14px 15px; overflow-x: auto; }
  .admin-monochrome .filter-bar fieldset { min-width: max-content; }
  .admin-monochrome .filter-reset { align-self: flex-start; }
}

/* 개인 설문: 흰색 배경, 큰 글자, 한 문항 집중형 모바일 화면 */
.survey-shell {
  --ink: #181818;
  --muted: #686868;
  --line: #dededb;
  --brand: #191919;
  --brand-dark: #000000;
  min-height: 100vh;
  background: #ffffff;
}
.survey-shell .survey-stage { min-height: 100vh; padding: 28px 16px 52px; background: #ffffff; }
.survey-shell .phone-wrap { width: min(100%, 560px); }
.survey-shell .survey-card { padding: clamp(25px, 6vw, 42px); border: 1px solid #dededb; border-radius: 24px; background: #ffffff; box-shadow: 0 18px 48px rgba(0, 0, 0, .07); }
.survey-shell .survey-card h1 { font-family: "Noto Sans KR", sans-serif; font-size: clamp(30px, 7vw, 40px); font-weight: 700; letter-spacing: -.04em; }
.survey-shell .survey-card .lead { font-size: 19px; line-height: 1.75; }
.survey-shell .eyebrow, .survey-shell .question-kicker { color: #666666; }
.survey-shell .check-graphic { border-radius: 18px; background: #f1f1ef; color: #191919; transform: none; }
.survey-shell .primary { min-height: 60px; border-radius: 12px; background: #191919; box-shadow: none; font-size: 20px; }
.survey-shell .primary:hover { background: #000000; }
.survey-shell .secondary { min-height: 54px; border-color: #cfcfcc; border-radius: 12px; background: #ffffff; color: #222222; font-size: 17px; }
.survey-shell .notice { border: 1px solid #e0e0dd; border-radius: 12px; background: #f6f6f4; color: #4d4d4a; font-size: 15px; }
.survey-shell .neutral-notice { margin-top: 22px; }
.survey-shell .identity-row { padding: 16px 0; font-size: 17px; }
.survey-shell .identity-row strong { max-width: 68%; }
.survey-shell .survey-pending-note { font-size: 14px; }
.survey-shell .question-card { min-height: 640px; }
.survey-shell .survey-top { color: #666666; font-size: 15px; }
.survey-shell .survey-top strong { color: #191919; }
.survey-shell .progress-track { height: 8px; margin-bottom: 34px; background: #eeeeeb; }
.survey-shell .progress-fill { background: #191919; }
.survey-shell .question-kicker { font-size: 14px; letter-spacing: .08em; }
.survey-shell .question-instruction { margin: 9px 0 0; color: #70706d; font-size: 15px; line-height: 1.6; }
.survey-shell .question { min-height: 0; margin: 12px 0 28px; color: #171717; font-family: "Noto Sans KR", sans-serif; font-size: clamp(24px, 5.8vw, 31px); font-weight: 650; line-height: 1.55; letter-spacing: -.025em; }
.survey-shell .options { gap: 11px; }
.survey-shell .option { display: grid; grid-template-columns: 38px 1fr; align-items: center; min-height: 62px; padding: 12px 16px; border-color: #d2d2cf; border-radius: 13px; color: #222222; font-size: 17px; }
.survey-shell .option:hover { border-color: #555555; transform: none; }
.survey-shell .option:focus-visible { outline: 3px solid #777777; outline-offset: 2px; }
.survey-shell .option.selected { border-color: #191919; background: #191919; color: #ffffff; }
.survey-shell .option-value { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid currentColor; border-radius: 50%; font-size: 14px; font-weight: 700; }
.survey-shell .option-label { padding-left: 6px; line-height: 1.45; }
.survey-shell .scale-hints { display: flex; justify-content: space-between; gap: 20px; margin: 0 2px 13px; color: #555552; font-size: 13px; line-height: 1.45; }
.survey-shell .scale-hints span:last-child { text-align: right; }
.survey-shell .number-scale { grid-template-columns: repeat(7, 1fr); gap: 7px; }
.survey-shell .number-scale .option { display: grid; grid-template-columns: 1fr; place-items: center; min-width: 0; min-height: 56px; padding: 8px 2px; }
.survey-shell .number-scale .option-value { border: 0; font-size: 18px; }
.survey-shell .save-state { min-height: 25px; margin-top: 15px; color: #555552; font-size: 14px; }
.survey-shell .survey-actions { grid-template-columns: auto 1fr; align-items: center; margin-top: 4px; }
.survey-shell .survey-actions.single { grid-template-columns: 1fr; }
.survey-shell .autosave-note { justify-self: end; margin: 0; font-size: 13px; }
.survey-shell .pulse { background: #444444; box-shadow: 0 0 0 5px rgba(0, 0, 0, .08); }
.survey-shell .answer-entry { display: grid; gap: 12px; }
.survey-shell .answer-entry > label { color: #555552; font-size: 15px; font-weight: 700; }
.survey-shell .answer-entry input, .survey-shell .answer-entry textarea { width: 100%; border: 1px solid #cfcfcc; border-radius: 12px; background: #ffffff; color: #171717; font: inherit; font-size: 20px; }
.survey-shell .answer-entry input { min-height: 62px; padding: 13px 16px; }
.survey-shell .answer-entry textarea { min-height: 150px; padding: 15px 16px; resize: vertical; line-height: 1.6; }
.survey-shell .answer-entry input:focus, .survey-shell .answer-entry textarea:focus { outline: 3px solid #777777; outline-offset: 1px; }
.survey-shell .number-entry { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px; }
.survey-shell .number-entry span { font-size: 20px; }
.survey-shell .review-actions { display: grid; grid-template-columns: 1fr 1.5fr; gap: 10px; }
.survey-shell .review-card .identity-row strong { font-size: 15px; line-height: 1.6; }

@media (max-width: 600px) {
  .survey-shell .survey-stage { padding: 12px 10px 32px; }
  .survey-shell .survey-card { min-height: calc(100vh - 24px); padding: 25px 20px; border-radius: 20px; box-shadow: none; }
  .survey-shell .question-card { min-height: calc(100vh - 24px); }
  .survey-shell .number-scale { gap: 5px; }
  .survey-shell .number-scale .option { min-height: 52px; border-radius: 10px; }
  .survey-shell .scale-hints { font-size: 12px; }
  .survey-shell .review-actions { grid-template-columns: 1fr; }
}
