/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --bg: #fff;
  --surface: #f2f4f6;
  --text: #191f28;
  --muted: #6b7684;
  --line: #e5e8eb;
  --primary: #3182f6;
  --primary-active: #1b64da;
  --danger: #f04452;
  --success: #00a76f;
  --radius-card: 20px;
  --radius-chip: 999px;
  --radius-small: 16px;
}

*, :before, :after {
  box-sizing: border-box;
}

html, body {
  background: var(--surface);
  color: var(--text);
  margin: 0;
  font-family: Pretendard, Apple SD Gothic Neo, Noto Sans KR, system-ui, -apple-system, sans-serif;
}

body {
  min-height: 100vh;
}

main.page {
  gap: 16px;
  width: min(1080px, 100% - 40px);
  margin: 0 auto;
  padding: 16px 0 130px;
  display: grid;
}

a {
  color: inherit;
  text-decoration: none;
}

.app-shell {
  min-height: 100vh;
}

.textLink {
  color: var(--primary);
  width: fit-content;
  font-weight: 600;
  text-decoration: none;
}

.hero {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-card);
  padding: 24px;
}

h1, h2, h3, p {
  margin: 0;
}

h1 {
  margin-top: 6px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
}

h2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

h3 {
  font-size: 17px;
  line-height: 1.4;
}

button, input, select, textarea {
  font: inherit;
}

.eyebrow {
  color: #89a3ff;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.muted {
  color: var(--muted);
}

.tiny {
  color: var(--muted);
  font-size: 12px;
}

.summaryGrid, .caseList, .taskList, .verificationList, .activityList {
  gap: 12px;
  display: grid;
}

.summaryGrid {
  grid-template-columns: repeat(4, 1fr);
}

.summaryCard, .card, .caseCard, .emptyCard, .urgentCard, .taskRow, .reportTaskRow, .platformSelect, .btn {
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
}

.summaryCard, .panelHeader, .card, .urgentCard, .emptyCard, .taskRow, .reportTaskRow {
  background: var(--bg);
  padding: 16px;
}

.summaryCard p, .muted {
  font-size: 14px;
}

.summaryCard strong {
  margin-top: 6px;
  font-size: 32px;
  line-height: 1.2;
  display: block;
}

.card {
  gap: 14px;
  display: grid;
}

.panel {
  gap: 12px;
  display: grid;
}

.panelHeader, .rowBetween, .platformMiniList, .rowStart, .taskRow {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.rowStart {
  justify-content: flex-start;
  gap: 12px;
}

.platformMiniList {
  gap: 8px;
  padding-top: 4px;
  overflow-x: auto;
}

.platformMini {
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: #fff;
  align-items: center;
  gap: 8px;
  min-width: 130px;
  padding: 10px;
  display: flex;
}

.platformIcon {
  color: #fff;
  border-radius: 999px;
  place-items: center;
  width: 28px;
  height: 28px;
  font-size: 14px;
  font-weight: 800;
  display: grid;
}

.urgentTitle {
  margin: 4px 0 6px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.caseCardHeader {
  justify-content: space-between;
  align-items: baseline;
  display: flex;
}

.percent {
  font-size: 32px;
}

.progressTrack {
  background: #dbe1e8;
  border-radius: 999px;
  height: 10px;
  overflow: hidden;
}

.progressTrack span {
  background: linear-gradient(90deg, #3182f6, #2b8dff);
  height: 100%;
  transition: width .2s;
  display: block;
}

.taskList {
  gap: 10px;
}

.taskRow, .reportTaskRow {
  border: 1px solid var(--line);
  background: #fff;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 72px;
  text-decoration: none;
  display: grid;
}

.taskMeta p {
  margin: 0;
}

.taskMeta {
  text-align: right;
}

.tag {
  border-radius: var(--radius-chip);
  border: 1px solid var(--line);
  color: var(--text);
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

.formStack {
  gap: 10px;
  display: grid;
}

.formStack label, label {
  gap: 6px;
  display: grid;
}

label span {
  color: #3e4c59;
  font-size: 14px;
}

input, select, textarea {
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: #fff;
  width: 100%;
  min-height: 52px;
  padding: 12px;
}

input:focus, select:focus, textarea:focus {
  outline-offset: 2px;
  outline: 2px solid #b9d7ff;
}

button {
  cursor: pointer;
  border: 0;
  border-radius: 16px;
  min-height: 56px;
  font-weight: 700;
}

.btn {
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 0 16px;
  display: inline-flex;
}

.btnPrimary {
  background: var(--primary);
  color: #fff;
}

.btnPrimary:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.btnPrimary:hover {
  background: var(--primary-active);
}

.btnSecondary {
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
}

.btnGhost {
  background: var(--surface);
  border: 1px solid var(--line);
  width: fit-content;
  color: var(--primary);
  padding: 0 12px;
}

.linkBtn {
  color: var(--primary);
  align-items: center;
  min-height: 44px;
  font-weight: 600;
  display: inline-flex;
}

.platformSelectGrid {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  display: grid;
}

.platformSelect {
  border: 1px solid var(--line);
  text-align: left;
  background: #fff;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 72px;
  padding: 12px;
  display: flex;
}

.platformSelect.isSelected {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px #3182f633;
}

.platformSelect strong {
  margin: 0;
  display: block;
}

.platformSelect span {
  color: var(--muted);
  display: block;
}

.emptyCard, .urgentCard {
  gap: 8px;
  display: grid;
}

.emptyTitle {
  font-size: 20px;
  font-weight: 700;
}

.footnote {
  text-align: center;
  color: var(--muted);
  margin-bottom: 80px;
}

.fixedCta {
  position: fixed;
  bottom: 16px;
  left: 20px;
  right: 20px;
  box-shadow: 0 -8px 18px #10182826;
}

.stickyFooter {
  flex-direction: column;
  gap: 8px;
  padding: 12px 0 0;
  display: flex;
  position: sticky;
  bottom: 12px;
}

.toast {
  color: #fff;
  text-align: center;
  z-index: 10;
  background: #1b2430;
  border-radius: 14px;
  padding: 12px 14px;
  position: fixed;
  bottom: 100px;
  left: 20px;
  right: 20px;
}

.errorText {
  color: var(--danger);
  font-weight: 600;
}

.verificationList .card {
  border-style: dashed;
}

.simpleList, .activityList {
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.activityList p {
  margin: 2px 0;
}

.radioRow {
  gap: 16px;
  display: flex;
}

.radioRow label {
  align-items: center;
  gap: 8px;
  display: inline-flex;
}

.rowGap {
  gap: 8px;
  display: grid;
}

.reportTaskRow {
  justify-content: space-between;
  display: flex;
}

@media (max-width: 900px) {
  .summaryGrid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  main.page {
    gap: 12px;
    width: min(100% - 24px, 1080px);
    padding: 16px 0 132px;
  }

  h1 {
    font-size: 30px;
  }

  .platformSelectGrid {
    grid-template-columns: 1fr;
  }

  .fixedCta {
    left: 12px;
    right: 12px;
    bottom: calc(16px + env(safe-area-inset-bottom));
  }

  .toast {
    left: 12px;
    right: 12px;
  }
}

/*# sourceMappingURL=src_app_globals_162hn9o.css.map*/