/* ============================================================
   KOCEA 최초경력신고 — 토스 스타일 프로토타입 (to-be v2 · PC)
   토스뱅크 UX 문법의 데스크톱 적용: One Thing Per Page ·
   질문형 문구 · 선택형 입력 · 자동 채움 · 하단 고정 단일 CTA
   외부 폰트/CDN 없음. PC 우선, 768px 이하는 모바일 폴백.
   ============================================================ */

:root {
  --blue:       #3182f6;   /* 주요 CTA (토스 블루 계열) */
  --blue-dark:  #1b64da;
  --blue-soft:  #e8f3ff;
  --ink:        #191f28;   /* 본문 진한 텍스트 */
  --sub:        #4e5968;   /* 보조 텍스트 */
  --muted:      #8b95a1;   /* 흐린 텍스트 */
  --line:       #f2f4f6;   /* 구분선 */
  --line-2:     #e5e8eb;
  --fill:       #f9fafb;   /* 카드 채움 */
  --fill-2:     #f2f4f6;
  --green:      #0bb25f;
  --green-soft: #e7f8ef;
  --amber:      #e58a00;
  --amber-soft: #fff3e0;
  --red:        #f04452;
  --purple:     #7048e8;   /* 기법 배지 */
  --purple-soft:#f1ecfe;
  --content:    720px;     /* 위저드 본문 폭 */
  --wide:       1040px;    /* 헤더 내부 폭 */
  --radius:     18px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
               "Segoe UI", "Malgun Gothic", "맑은 고딕", "Apple SD Gothic Neo",
               "Noto Sans KR", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; color: inherit; }
input {
  font-family: inherit;
  font-size: inherit;
  color: var(--ink);
  border: none;
  outline: none;
  background: transparent;
}

.app { min-height: 100vh; }

/* ---------- 상단 바 (PC 헤더) ---------- */
.top {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 64px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  z-index: 40;
}
.top-inner {
  max-width: var(--wide);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
}
.icon-btn {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--ink);
  transition: background .15s;
  flex: none;
}
.icon-btn:hover { background: var(--fill-2); }
.icon-btn.is-hidden { visibility: hidden; }
.top-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
  color: var(--sub);
  flex: none;
}
.top-brand svg { flex: none; }
.top-divider { width: 1px; height: 16px; background: var(--line-2); flex: none; }
.top-title { font-size: 15px; font-weight: 600; color: var(--ink); }
.top .spacer { flex: 1; }

/* 진행률 (얇은 바 — 스텝 번호 없음) */
.progress-track {
  position: fixed;
  top: 64px; left: 0; right: 0;
  height: 3px;
  background: var(--line);
  z-index: 40;
}
.progress-track i {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--blue);
  border-radius: 0 3px 3px 0;
  transition: width .35s ease;
}

/* 기법 보기 토글 */
.tech-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--fill);
  transition: all .15s;
}
body.show-tech .tech-toggle { color: var(--purple); background: var(--purple-soft); }

/* ---------- 화면(스크린) ---------- */
.screen {
  display: none;
  max-width: var(--content);
  margin: 0 auto;
  padding: 128px 32px 170px;
  animation: rise .3s ease both;
}
.screen.on { display: block; }
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 방향성 전환 — 앞으로 갈 땐 오른쪽에서, 뒤로 갈 땐 왼쪽에서 */
.screen.on.fwd { animation: slide-fwd .32s cubic-bezier(.2,.8,.3,1) both; }
.screen.on.bwd { animation: slide-bwd .32s cubic-bezier(.2,.8,.3,1) both; }
@keyframes slide-fwd {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slide-bwd {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* 기법 배지 (데모 설득용 — 토글로 on/off) */
.tech-pill {
  display: none;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 26px;
  padding: 11px 16px;
  border-radius: 12px;
  background: var(--purple-soft);
  color: var(--purple);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.5;
}
body.show-tech .tech-pill { display: flex; }
.tech-pill .zap { flex: none; margin-top: 1px; }

/* 질문형 타이틀 */
.q-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -.4px;
  margin-bottom: 10px;
}
.q-title br { display: none; } /* PC에서는 한 줄로 — 모바일 폴백에서만 줄바꿈 */
.q-title b { color: var(--blue); font-weight: 700; }
.q-sub {
  font-size: 16.5px;
  color: var(--sub);
  line-height: 1.6;
  margin-bottom: 36px;
}

/* ---------- 인트로 ---------- */
.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-dark);
  background: var(--blue-soft);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.intro-illust {
  font-size: 56px;
  line-height: 1;
  margin: 6px 0 22px;
}
.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.benefit-list li {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 20px;
  border-radius: var(--radius);
  background: var(--fill);
}
.benefit-list .b-ic {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(25,31,40,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
}
.benefit-list .b-tit { font-size: 15.5px; font-weight: 700; line-height: 1.4; }
.benefit-list .b-desc { font-size: 13.5px; color: var(--muted); margin-top: 3px; line-height: 1.5; }

/* ---------- 선택 카드 (탭 한 번으로 선택) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.card-grid .select-card { margin-bottom: 0; align-items: flex-start; }

.select-card {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: left;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--fill);
  border: 2px solid transparent;
  margin-bottom: 12px;
  transition: all .15s;
}
.select-card:hover { border-color: var(--blue); background: var(--blue-soft); }
.select-card:active { transform: scale(.99); }
.select-card .sc-ic {
  flex: none;
  width: 50px; height: 50px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(25,31,40,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.select-card .sc-body { flex: 1; min-width: 0; }
.select-card .sc-tit {
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.select-card .sc-desc { display: block; font-size: 14px; color: var(--muted); margin-top: 3px; line-height: 1.5; word-break: keep-all; }
.select-card .chev { color: var(--muted); flex: none; }

.rec-chip {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--blue-dark);
  background: var(--blue-soft);
  border-radius: 999px;
  padding: 3px 9px;
}
.select-card:hover .rec-chip { background: #fff; }

/* 간편인증 아이콘 묶음 */
.ids { display: flex; gap: 4px; margin-top: 8px; }
.ids i {
  width: 24px; height: 24px;
  border-radius: 8px;
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---------- 정보 확인 리스트 (기본정보) ---------- */
.confirm-list {
  border-radius: var(--radius);
  background: var(--fill);
  padding: 8px 28px;
  margin-bottom: 16px;
}
.confirm-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid #eceff2;
}
.confirm-list li:last-child { border-bottom: none; }
.cl-label { flex: none; width: 110px; font-size: 14px; color: var(--muted); }
.cl-value { flex: 1; font-size: 15.5px; font-weight: 600; min-width: 0; word-break: keep-all; }
.cl-value input {
  width: 100%;
  max-width: 320px;
  font-weight: 600;
  border-bottom: 2px solid var(--blue);
  padding: 2px 0 4px;
  border-radius: 0;
}
.cl-edit {
  flex: none;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue);
  padding: 7px 12px;
  border-radius: 9px;
}
.cl-edit:hover { background: var(--blue-soft); }
.lock-tag, .auto-tag {
  display: inline-flex;
  align-items: center;
  gap: 3.5px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  padding: 3px 9px;
  vertical-align: 2px;
  margin-left: 8px;
}
.lock-tag { color: var(--muted); background: var(--fill-2); }
.auto-tag { color: var(--green); background: var(--green-soft); }

/* ---------- 자료 연계(스크래핑) 리스트 ---------- */
.fetch-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}
.fetch-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 15px;
  background: var(--fill);
}
.fetch-list .f-ic { font-size: 23px; flex: none; }
.fetch-list .f-body { flex: 1; min-width: 0; }
.fetch-list .f-tit { font-size: 15.5px; font-weight: 700; }
.fetch-list .f-src { font-size: 13px; color: var(--muted); }
.fetch-list .f-state { flex: none; width: 24px; height: 24px; position: relative; }
.fetch-list .f-state .spin {
  display: none;
  width: 18px; height: 18px;
  border: 2.5px solid var(--line-2);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: rot .7s linear infinite;
}
.fetch-list .f-state .ok {
  display: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  align-items: center;
  justify-content: center;
  animation: pop .25s ease both;
}
.fetch-list li.is-loading .spin { display: block; }
.fetch-list li.is-done .ok { display: flex; }
@keyframes rot { to { transform: rotate(360deg); } }
@keyframes pop { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ---------- 항목 확인 카드 (근무처·경력·학력 등) ---------- */
.item-card {
  border-radius: var(--radius);
  background: var(--fill);
  padding: 20px 24px;
  margin-bottom: 12px;
}
.item-card .ic-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.item-card .ic-tit { font-size: 17px; font-weight: 700; flex: 1; min-width: 0; word-break: keep-all; }
.item-card .ic-sub { font-size: 14px; color: var(--sub); margin-top: 3px; }
.item-card .ic-meta { font-size: 13px; color: var(--muted); margin-top: 2px; }
.item-card .ic-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 11px;
}
.chip.ok   { color: var(--green); background: var(--green-soft); }
.chip.wait { color: var(--amber); background: var(--amber-soft); }
.chip.info { color: var(--blue-dark); background: var(--blue-soft); }
.chip.gray { color: var(--muted); background: var(--fill-2); }

/* 포함/제외 스위치 */
.toggle { position: relative; flex: none; display: inline-block; width: 46px; height: 27px; }
.toggle input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; z-index: 2; }
.toggle .track {
  position: absolute; inset: 0;
  border-radius: 999px;
  background: #d3dae2;
  transition: background .18s;
}
.toggle .track::after {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 21px; height: 21px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
  transition: transform .18s;
}
.toggle input:checked + .track { background: var(--blue); }
.toggle input:checked + .track::after { transform: translateX(19px); }
.item-card.is-off { opacity: .45; }

/* 선택 상태 (라디오형 카드) */
.select-card.is-selected {
  border-color: var(--blue);
  background: var(--blue-soft);
}
.select-card.is-selected .sc-tit { color: var(--blue-dark); }

/* 경력 행 미니 액션 (마감·연장·보완) */
.mini-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.mini-btn {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--sub);
  background: #fff;
  box-shadow: 0 1px 3px rgba(25,31,40,.1);
  border-radius: 10px;
  padding: 9px 16px;
  transition: all .15s;
}
.mini-btn:hover { color: var(--blue); background: var(--blue-soft); box-shadow: none; }

/* 담은 신고(장바구니) 목록 */
.cart-rows { margin-top: 18px; }
.cart-rows .cart-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding: 11px 2px;
  border-bottom: 1px solid var(--line);
}
.cart-rows .cart-row:last-child { border-bottom: none; }
.cart-rows .cart-row .c-type {
  flex: none;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue-dark);
  background: var(--blue-soft);
  border-radius: 999px;
  padding: 3px 9px;
}
.cart-rows .cart-row .c-name { flex: 1; min-width: 0; font-weight: 600; word-break: keep-all; }
.cart-rows .cart-row .c-del {
  flex: none;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  padding: 5px 9px;
  border-radius: 8px;
}
.cart-rows .cart-row .c-del:hover { color: var(--red); background: #fdecee; }

/* 시트 내 입력 필드 */
.sheet .sheet-field {
  margin-top: 18px;
  border-radius: 14px;
  background: var(--fill);
  padding: 13px 16px;
}
.sheet .sheet-field label { display: block; font-size: 12.5px; font-weight: 700; color: var(--muted); margin-bottom: 4px; }
.sheet .sheet-field input { width: 100%; font-size: 16px; font-weight: 700; }

/* 추가하기 고스트 버튼 */
.ghost-add {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 17px;
  border-radius: var(--radius);
  border: 1.5px dashed #d6dce3;
  color: var(--sub);
  font-size: 15px;
  font-weight: 600;
  transition: all .15s;
  margin-bottom: 12px;
}
.ghost-add:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-soft); }

/* ---------- 한 화면 한 질문 입력 ---------- */
.big-input-wrap {
  max-width: 520px;
  border-bottom: 2px solid var(--blue);
  padding: 6px 2px 12px;
  margin-bottom: 18px;
}
.big-input-wrap input {
  width: 100%;
  font-size: 26px;
  font-weight: 700;
}
.big-input-wrap input::placeholder { color: #c4ccd4; font-weight: 600; }
.suggest-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.suggest-chips button {
  font-size: 14px;
  font-weight: 600;
  color: var(--sub);
  background: var(--fill);
  border-radius: 999px;
  padding: 9px 16px;
  transition: all .15s;
}
.suggest-chips button:hover { background: var(--blue-soft); color: var(--blue-dark); }
.suggest-cap { font-size: 13px; color: var(--muted); margin: 0 0 10px; }

.date-fields { display: flex; gap: 14px; max-width: 560px; }
.date-fields .df {
  flex: 1;
  border-radius: 15px;
  background: var(--fill);
  padding: 14px 16px;
}
.date-fields label { display: block; font-size: 12.5px; font-weight: 700; color: var(--muted); margin-bottom: 4px; }
.date-fields input { width: 100%; font-size: 16.5px; font-weight: 700; }
.field-note { font-size: 13.5px; color: var(--muted); margin-top: 16px; line-height: 1.6; }

/* ---------- 안내/경고 배너 ---------- */
.notice {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  border-radius: 14px;
  padding: 15px 18px;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 14px;
}
.notice .n-ic { flex: none; font-size: 16px; margin-top: 1px; }
.notice.blue  { background: var(--blue-soft);  color: #1957b8; }
.notice.warn  { background: var(--amber-soft); color: #9a6003; }
.notice.green { background: var(--green-soft); color: #067a41; }

/* ---------- 예상 인정 경력 (숫자로 보상) ---------- */
.est-hero {
  border-radius: var(--radius);
  background: linear-gradient(135deg, #e8f3ff 0%, #f1ecfe 100%);
  padding: 26px 30px;
  margin-bottom: 18px;
}
.est-hero .eh-label { font-size: 14px; font-weight: 700; color: var(--blue-dark); }
.est-hero .eh-num {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1.2px;
  color: var(--ink);
  margin: 5px 0 7px;
  font-variant-numeric: tabular-nums;
}
.est-hero .eh-note { font-size: 13px; color: var(--sub); }

.est-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-dark);
  background: var(--blue-soft);
  border-radius: 999px;
  padding: 9px 18px;
  margin: -14px 0 24px;
  font-variant-numeric: tabular-nums;
}

/* ---------- 검토(요약 아코디언) ---------- */
.acc {
  border-radius: var(--radius);
  background: var(--fill);
  margin-bottom: 10px;
  overflow: hidden;
}
.acc-head {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  padding: 19px 24px;
}
.acc-head .a-ic { font-size: 20px; flex: none; }
.acc-head .a-tit { flex: 1; font-size: 16px; font-weight: 700; }
.acc-head .a-cnt { font-size: 14.5px; font-weight: 700; color: var(--blue); }
.acc-head .a-chev { color: var(--muted); transition: transform .2s; flex: none; }
.acc.open .a-chev { transform: rotate(180deg); }
.acc-body { display: none; padding: 0 24px 16px; }
.acc.open .acc-body { display: block; }
.acc-body .row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  padding: 9px 0;
  border-top: 1px solid #eceff2;
}
.acc-body .row .r-name { color: var(--ink); font-weight: 600; min-width: 0; word-break: keep-all; }
.acc-body .row .r-sub { color: var(--muted); flex: none; }

/* ---------- 완료 ---------- */
.done-wrap { text-align: center; padding-top: 30px; }
.done-check {
  width: 92px; height: 92px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pop .4s cubic-bezier(.2,1.4,.5,1) both;
}
.done-check svg { width: 46px; height: 46px; }
.done-check path {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: check-draw .45s .35s ease forwards;
}
@keyframes check-draw { to { stroke-dashoffset: 0; } }
.done-title { font-size: 27px; font-weight: 700; letter-spacing: -.4px; }
.done-sub { font-size: 15.5px; color: var(--sub); margin-top: 10px; line-height: 1.65; }
.receipt-card {
  max-width: 480px;
  margin: 30px auto 14px;
  border-radius: var(--radius);
  background: var(--fill);
  padding: 22px 26px;
  text-align: left;
}
.receipt-card .rc-row {
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
  padding: 8px 0;
}
.receipt-card .rc-row .k { color: var(--muted); }
.receipt-card .rc-row .v { font-weight: 700; }
.done-wrap .notice { max-width: 480px; margin: 0 auto; text-align: left; }

/* ---------- 하단 CTA (PC: 콘텐츠 폭 정렬, 우측 주버튼) ---------- */
.cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  z-index: 30;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 16px max(32px, calc((100% - var(--content)) / 2 + 32px)) 20px;
}
.cta {
  height: 54px;
  border-radius: 15px;
  background: var(--blue);
  color: #fff;
  font-size: 16.5px;
  font-weight: 700;
  transition: all .15s;
  flex: none;
  min-width: 300px;
  padding: 0 40px;
  margin-left: auto;
}
.cta:hover { background: var(--blue-dark); }
.cta:active { transform: scale(.98); }
.cta:disabled { background: #d3dae2; cursor: default; transform: none; }
.cta.ghost {
  min-width: 0;
  padding: 0 26px;
  background: var(--fill-2);
  color: var(--sub);
  margin-left: 0;
}
.cta.ghost:hover { background: #e8ebef; }
.cta.ghost + .cta { margin-left: 0; } /* 고스트가 있으면 나란히 우측 정렬 */
.cta.ghost:first-child { margin-left: auto; }

/* ---------- 다이얼로그 (모바일 바텀시트 → PC 중앙 모달) ---------- */
.sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(25,31,40,.5);
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.sheet-overlay.on { display: flex; }
.sheet {
  width: 100%;
  max-width: 440px;
  background: #fff;
  border-radius: 22px;
  padding: 30px 28px 26px;
  box-shadow: 0 20px 60px rgba(25,31,40,.25);
  animation: sheet-in .25s cubic-bezier(.2,.9,.3,1) both;
}
@keyframes sheet-in { from { transform: translateY(18px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.sheet h3 { font-size: 20px; font-weight: 700; letter-spacing: -.2px; }
.sheet .s-desc { font-size: 15px; color: var(--sub); margin-top: 9px; line-height: 1.6; }
.sheet .s-actions { display: flex; gap: 10px; margin-top: 26px; }
.sheet .s-actions .cta { height: 50px; font-size: 15.5px; min-width: 0; flex: 1; margin-left: 0; padding: 0 18px; }
.sheet .s-actions .cta.ghost { flex: none; }

/* ---------- 토스트 ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 110px;
  transform: translateX(-50%) translateY(10px);
  background: rgba(25,31,40,.92);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: all .25s;
  z-index: 70;
  white-space: nowrap;
}
.toast.on { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- 랜딩(index) ---------- */
.landing {
  max-width: 880px;
  margin: 0 auto;
  padding: 88px 32px 80px;
}
.landing .hello { font-size: 34px; font-weight: 700; line-height: 1.35; letter-spacing: -.4px; margin: 26px 0 6px; }
.landing .hello-sub { font-size: 16.5px; color: var(--sub); margin-bottom: 34px; }
.path-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.path-list .select-card { margin-bottom: 0; box-shadow: 0 1px 6px rgba(25,31,40,.06); background: #fff; border: 2px solid var(--line); }
.path-list .select-card:hover { border-color: var(--blue); background: var(--blue-soft); }
.landing-foot { margin-top: 40px; font-size: 13px; color: var(--muted); line-height: 1.75; }
.landing-foot a { color: var(--blue); font-weight: 600; }
.kocea-mini {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--sub);
}

/* ============================================================
   모바일 폴백 (768px 이하) — 원래의 모바일 문법으로 축소
   ============================================================ */
@media (max-width: 768px) {
  .top-inner { padding: 0 8px; gap: 8px; }
  .top-brand .brand-label { display: none; }
  .top-divider { display: none; }
  .screen { padding: 104px 22px 150px; }
  .q-title { font-size: 24px; }
  .q-title br { display: inline; }
  .q-sub { font-size: 15px; margin-bottom: 26px; }
  .benefit-list { grid-template-columns: 1fr; gap: 10px; }
  .benefit-list li { flex-direction: row; align-items: flex-start; padding: 15px 16px; }
  .card-grid { grid-template-columns: 1fr; }
  .fetch-list { grid-template-columns: 1fr; }
  .cl-label { width: 84px; }
  .cta-bar { padding: 12px 20px 18px; }
  .cta { min-width: 0; flex: 1; margin-left: 0; padding: 0 16px; }
  .cta.ghost { flex: none; }
  .sheet-overlay { align-items: flex-end; padding: 0; }
  .sheet { max-width: none; border-radius: 22px 22px 0 0; }
  .landing { padding: 44px 22px 60px; }
  .landing .hello { font-size: 25px; }
  .path-list { grid-template-columns: 1fr; }
}
