/* ==========================================================================
   모노랩 Careers — DREXLY 템플릿 (slug: monolab-careers)
   정본: 00-디자인보드.png (색·활자·컴포넌트·사이트맵) + 02-페이지시안.png (각 면 세부)
   레이아웃 원형: Magazine + Sidebar + Data Grid
   ========================================================================== */

:root {
  /* 색 — 디자인보드 「컬러」 */
  --cobalt: #1E4FFF;
  --cobalt-press: #1740D6;
  --cobalt-wash: #EEF2FF;
  --cobalt-line: #C3D0FF;
  --charcoal: #111111;
  --gray600: #666666;
  --gray400: #9A9A9A;
  --gray200: #E5E5E5;
  --gray100: #F0F1F3;
  --gray050: #F7F8FA;
  --paper: #FFFFFF;
  --danger: #D92D20;
  --danger-wash: #FEF3F2;
  --success: #067647;

  /* 활자 — 디자인보드 「타이포그래피」 Pretendard */
  --sans: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
    system-ui, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  --h1: clamp(30px, 4.2vw, 50px);
  --h2: clamp(23px, 2.4vw, 32px);
  --h3: clamp(18px, 1.5vw, 21px);

  /* 간격 — 8px 체계 */
  --s1: 8px;  --s2: 16px; --s3: 24px; --s4: 32px;
  --s5: 40px; --s6: 56px; --s7: 72px; --s8: 96px;
  --section: 96px;
  --wrap: 1200px;
  --gutter: 32px;
  --header-h: 72px;

  /* 반경·테두리·그림자 */
  --radius: 6px;
  --radius-lg: 12px;
  --radius-pill: 999px;
  --line: var(--gray200);
  --shadow-sm: 0 1px 2px rgba(17, 17, 17, 0.05);
  --shadow-lg: 0 24px 60px rgba(17, 17, 17, 0.14);

  /* z-index 층 */
  --z-sticky: 40;
  --z-scrim: 80;
  --z-drawer: 90;
  --z-sheet: 100;
  --z-toast: 120;

  --ease: cubic-bezier(0.22, 0.7, 0.28, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  margin: 0;
  background: var(--paper);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.011em;
  /* 한국어는 어절 단위로 끊는다 — 「2층」·「정규직」이 갈라지지 않게 */
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

[hidden] { display: none !important; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; line-height: 1.25; letter-spacing: -0.028em; font-weight: 700; }
h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); font-weight: 600; letter-spacing: -0.022em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
table { border-collapse: collapse; width: 100%; }
fieldset { margin: 0; padding: 0; border: 0; }
legend { padding: 0; }

:focus-visible {
  outline: 2px solid var(--cobalt);
  outline-offset: 3px;
  border-radius: 3px;
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: 880px; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--cobalt); color: #fff; padding: 12px 20px; font-size: 14px; font-weight: 600;
}
.skip:focus { left: 0; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.ico {
  width: 20px; height: 20px; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}
.ico-sm { width: 16px; height: 16px; stroke-width: 1.8; }
.ico-lg { width: 26px; height: 26px; stroke-width: 1.4; }

.frame { display: block; overflow: hidden; background: var(--gray100); }
.frame img { width: 100%; height: 100%; object-fit: cover; }

/* ------------------------------------------------------------- 활자 유틸 */
.eyebrow {
  display: inline-block;
  font-size: 12px; line-height: 16px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--cobalt);
}
.lead { font-size: clamp(15px, 1.3vw, 18px); line-height: 1.75; color: var(--gray600); }
.caption { font-size: 12px; line-height: 16px; color: var(--gray600); }
.dot { color: var(--cobalt); }

.section { padding: var(--section) 0; }
.section-tight { padding: var(--s7) 0; }
.section-head { margin-bottom: var(--s6); max-width: 720px; }
.section-head h2 { margin-bottom: var(--s2); }
.head-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: var(--s3); flex-wrap: wrap; margin-bottom: var(--s5);
}
.head-row .section-head { margin-bottom: 0; }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------------------------------------------------------- 버튼 컴포넌트 */
.btn {
  --btn-bg: transparent; --btn-fg: var(--charcoal); --btn-bd: var(--line);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 22px;
  border: 1px solid var(--btn-bd); border-radius: var(--radius);
  background: var(--btn-bg); color: var(--btn-fg);
  font-size: 15px; font-weight: 600; letter-spacing: -0.015em;
  cursor: pointer; text-align: center;
  transition: background 0.22s var(--ease), color 0.22s var(--ease),
    border-color 0.22s var(--ease), transform 0.14s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn[disabled], .btn[aria-disabled="true"] {
  background: var(--gray200); color: var(--gray400); border-color: var(--gray200);
  cursor: not-allowed; pointer-events: none;
}
.btn-primary { --btn-bg: var(--cobalt); --btn-fg: #fff; --btn-bd: var(--cobalt); }
.btn-primary:hover { --btn-bg: var(--cobalt-press); --btn-bd: var(--cobalt-press); }
.btn-secondary { --btn-bg: var(--paper); --btn-fg: var(--cobalt); --btn-bd: var(--cobalt-line); }
.btn-secondary:hover { --btn-bd: var(--cobalt); --btn-bg: var(--cobalt-wash); }
.btn-quiet { --btn-bg: var(--paper); --btn-fg: var(--charcoal); --btn-bd: var(--line); }
.btn-quiet:hover { --btn-bd: var(--charcoal); }
.btn-on-cobalt { --btn-bg: #fff; --btn-fg: var(--cobalt); --btn-bd: #fff; }
.btn-on-cobalt:hover { --btn-bg: var(--cobalt-wash); --btn-bd: var(--cobalt-wash); }
.btn-on-dark { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,0.4); }
.btn-on-dark:hover { --btn-bg: #fff; --btn-fg: var(--charcoal); --btn-bd: #fff; }
.btn-sm { min-height: 40px; padding: 0 16px; font-size: 14px; }
.btn-block { width: 100%; }

.tlink {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--cobalt); font-size: 15px; font-weight: 600;
  padding: 6px 0; border: 0; background: none; cursor: pointer;
  transition: gap 0.22s var(--ease);
}
.tlink:hover { gap: 11px; }
.tlink .ico { width: 16px; height: 16px; }

/* ------------------------------------------------------------ 태그·배지 */
.tag {
  display: inline-flex; align-items: center; height: 28px; padding: 0 12px;
  border: 1px solid var(--line); border-radius: var(--radius-pill);
  font-size: 12px; line-height: 16px; color: var(--gray600); white-space: nowrap;
}
.badge {
  display: inline-flex; align-items: center; height: 24px; padding: 0 10px;
  border: 1px solid var(--line); border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 700; line-height: 16px; color: var(--gray600);
  white-space: nowrap; letter-spacing: 0;
}
.badge-soon { color: var(--cobalt); border-color: var(--cobalt-line); background: var(--cobalt-wash); }
.badge-new { color: #fff; background: var(--cobalt); border-color: var(--cobalt); }
.badge-closed { color: var(--gray400); background: var(--gray100); border-color: var(--gray100); }

/* --------------------------------------------------------------- 헤더 §06 */
.site-header {
  position: sticky; top: 0; z-index: var(--z-sticky);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; gap: var(--s5); height: var(--header-h); }
.brand { display: inline-flex; align-items: baseline; gap: 7px; }
.brand-name { font-size: 20px; font-weight: 800; letter-spacing: 0.01em; }
.brand-tag { font-size: 15px; font-weight: 700; color: var(--cobalt); letter-spacing: -0.02em; }
.navlinks { display: flex; align-items: center; gap: var(--s4); margin-right: auto; }
.navlinks a {
  position: relative; font-size: 15px; font-weight: 500; color: var(--gray600);
  padding: 6px 0; transition: color 0.22s var(--ease);
}
.navlinks a:hover { color: var(--charcoal); }
.navlinks a[aria-current] { color: var(--charcoal); font-weight: 700; }
.navlinks a[aria-current]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--cobalt);
}
.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.menu-btn {
  display: none; width: 44px; height: 44px; align-items: center; justify-content: center;
  background: none; border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer;
}

/* 모바일 서랍 */
.drawer {
  position: fixed; inset: 0 0 0 auto; width: min(360px, 88vw); z-index: var(--z-drawer);
  background: var(--paper); border-left: 1px solid var(--line);
  padding: 20px var(--s3) var(--s5); overflow-y: auto;
  display: flex; flex-direction: column;
  transform: translateX(101%); transition: transform 0.38s var(--ease);
}
.drawer.open { transform: none; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; height: 52px; margin-bottom: var(--s2); }
.drawer-close {
  width: 44px; height: 44px; display: grid; place-items: center;
  background: none; border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer;
}
.drawer nav { display: flex; flex-direction: column; }
.drawer nav a {
  font-size: 19px; font-weight: 700; letter-spacing: -0.025em;
  padding: 16px 0; border-bottom: 1px solid var(--gray100);
}
.drawer nav a[aria-current] { color: var(--cobalt); }
.drawer-actions { margin-top: var(--s4); display: grid; gap: 10px; }
.drawer-note { margin-top: var(--s3); font-size: 13px; color: var(--gray600); }
.drawer-note a { color: var(--cobalt); font-weight: 600; }
.scrim {
  position: fixed; inset: 0; z-index: var(--z-scrim);
  background: rgba(17, 17, 17, 0.45);
  opacity: 0; visibility: hidden; transition: opacity 0.38s var(--ease), visibility 0.38s;
}
.scrim.open { opacity: 1; visibility: visible; }

/* ================================================== PAGE 01 — 채용 홈 */
.home-hero { padding: clamp(48px, 7vw, 96px) 0 0; }
.home-hero h1 { max-width: 15ch; }
.home-hero .mark {
  display: inline-block; width: 0.42em; height: 0.42em; margin-left: 0.12em;
  border-radius: 50%; background: var(--cobalt); vertical-align: 0.06em;
}
.hero-copy { display: grid; gap: var(--s3); max-width: 760px; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: var(--s1); }

.hero-media {
  margin-top: var(--s6);
  display: grid; grid-template-columns: 1.55fr 1fr;
  max-width: 1560px; margin-left: auto; margin-right: auto;
}
.hero-media .frame { height: 520px; }
.hero-panel {
  background: var(--charcoal); color: #fff;
  padding: var(--s6) var(--s5); display: flex; flex-direction: column; justify-content: flex-end; gap: var(--s3);
}
.hero-panel p {
  font-size: clamp(18px, 1.7vw, 24px); font-weight: 700; line-height: 1.5; letter-spacing: -0.026em;
}
.hero-panel .tlink { color: #fff; }

.stats { border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: var(--s6) var(--s3) var(--s6) 0; }
.stat + .stat { border-left: 1px solid var(--line); padding-left: var(--s4); }
.stat b {
  display: block; font-size: clamp(30px, 3.4vw, 42px); font-weight: 800;
  color: var(--cobalt); letter-spacing: -0.04em; line-height: 1.1;
}
.stat b span { font-size: 0.5em; font-weight: 700; margin-left: 2px; }
.stat span.label { display: block; margin-top: 6px; font-size: 13px; color: var(--gray600); }

/* 홈 — 지금 열린 포지션(랜딩 직무 검색) */
.quick { background: var(--gray050); }
.quick-search { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: var(--s3); }
.quick-search .searchbox { flex: 1 1 320px; }
.quick-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: var(--s4); }
.quick-list { border-top: 1px solid var(--gray200); background: var(--paper); }
.quick-row {
  display: grid; grid-template-columns: 116px minmax(0, 1fr) 112px 84px 128px 32px;
  align-items: center; gap: var(--s3);
  padding: 18px var(--s3); border-bottom: 1px solid var(--gray100);
  transition: background 0.2s var(--ease);
}
.quick-row:hover { background: var(--cobalt-wash); }
.quick-row .team { font-size: 13px; color: var(--gray600); }
.quick-row .title { font-size: 16px; font-weight: 700; letter-spacing: -0.022em; }
.quick-row .meta { font-size: 13px; color: var(--gray600); }
.quick-row .go { justify-self: end; color: var(--cobalt); display: inline-flex; }
.quick-foot { display: flex; justify-content: space-between; align-items: center; gap: var(--s3); flex-wrap: wrap; margin-top: var(--s4); }
.quick-empty { padding: var(--s5) var(--s3); background: var(--paper); border-bottom: 1px solid var(--gray100); text-align: center; color: var(--gray600); font-size: 14px; }

.cobalt-band { background: var(--cobalt); color: #fff; text-align: center; }
.cobalt-band h2 { margin-bottom: var(--s2); }
.cobalt-band p { color: rgba(255, 255, 255, 0.82); margin-bottom: var(--s4); }
.cobalt-band .band-inner { padding: var(--s8) 0; display: grid; justify-items: center; gap: 0; }

.news-list { border-top: 1px solid var(--charcoal); }
.news-item {
  display: grid; grid-template-columns: 108px minmax(0, 1fr) 160px;
  gap: var(--s4); align-items: center; padding: var(--s4) 0;
  border-bottom: 1px solid var(--line);
}
.news-item .date { font-size: 13px; color: var(--gray600); font-variant-numeric: tabular-nums; }
.news-item h3 { transition: color 0.2s var(--ease); }
.news-item p { margin-top: 6px; font-size: 14px; color: var(--gray600); }
.news-item:hover h3 { color: var(--cobalt); }
.news-item .frame { width: 160px; height: 108px; border-radius: var(--radius); }

/* ================================================== PAGE 02 — 팀 */
.teams-hero {
  display: grid; grid-template-columns: 1fr 426px; gap: var(--s8);
  align-items: center; padding: clamp(48px, 6vw, 88px) 0;
}
.teams-hero .frame { width: 426px; height: 452px; border-radius: var(--radius-lg); }
.teams-hero .hero-copy { gap: var(--s3); }

.dark-band { background: var(--charcoal); color: #fff; }
.dark-band .band-inner { padding: var(--s8) 0; display: grid; grid-template-columns: 1fr 1.35fr; gap: var(--s7); align-items: start; }
.dark-band h2 { letter-spacing: -0.03em; }
.creed { display: grid; gap: var(--s3); }
.creed li { display: flex; gap: 14px; align-items: flex-start; font-size: clamp(16px, 1.4vw, 19px); line-height: 1.6; }
.creed .ico { color: var(--cobalt); margin-top: 3px; }

.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s4); }
.story .frame { height: 210px; border-radius: var(--radius); margin-bottom: var(--s3); }
.story h3 { margin-bottom: 10px; min-height: 2.5em; }
.story .by { font-size: 13px; color: var(--gray600); }
.story .when { font-size: 12px; color: var(--gray400); font-variant-numeric: tabular-nums; margin-top: 2px; }

.numbers { background: var(--gray050); }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s4); padding: var(--s7) 0; text-align: center; }
.numbers .ico-lg { color: var(--cobalt); margin: 0 auto 14px; }
.numbers b { display: block; font-size: clamp(26px, 3vw, 36px); font-weight: 800; color: var(--cobalt); letter-spacing: -0.04em; }
.numbers-grid > div > span { display: block; margin-top: 6px; font-size: 13px; color: var(--gray600); }

.culture-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s5); }
.culture-item .ico-lg { color: var(--cobalt); margin-bottom: var(--s2); }
.culture-item h3 { color: var(--cobalt); margin-bottom: 10px; font-size: 17px; }
.culture-item p { font-size: 14px; color: var(--gray600); line-height: 1.7; }

.tabs { display: flex; gap: 4px; flex-wrap: wrap; border-bottom: 1px solid var(--line); margin-bottom: var(--s5); }
.tab {
  appearance: none; background: none; border: 0; border-bottom: 2px solid transparent;
  padding: 12px 14px; font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--gray600); cursor: pointer; transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.tab:hover { color: var(--charcoal); }
.tab[aria-selected="true"] { color: var(--cobalt); border-bottom-color: var(--cobalt); }

.team-rows { display: grid; gap: 2px; }
.team-row {
  display: grid; grid-template-columns: 190px minmax(0, 1fr) 168px;
  gap: var(--s4); align-items: center;
  padding: var(--s4) var(--s3) var(--s4) var(--s4);
  border-left: 3px solid var(--cobalt); background: var(--gray050);
  transition: background 0.2s var(--ease);
}
.team-row:hover { background: var(--cobalt-wash); }
.team-row .kicker { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; color: var(--cobalt); }
.team-row .kicker + p { margin-top: 6px; font-size: 13px; color: var(--gray600); }
.team-row h3 { letter-spacing: -0.028em; }
.team-row .desc { margin-top: 8px; font-size: 14px; color: var(--gray600); line-height: 1.65; }
.team-row .open-n { justify-self: end; text-align: right; display: grid; justify-items: end; }
.team-row .open-n b { display: block; font-size: 22px; font-weight: 800; color: var(--charcoal); line-height: 1.2; }
.team-row .open-n span { font-size: 12px; color: var(--gray600); }

/* ================================================== PAGE 03 — 직무 목록 */
.roles-head { padding: clamp(40px, 5vw, 72px) 0 var(--s5); }
.roles-layout { display: grid; grid-template-columns: 252px minmax(0, 1fr); gap: var(--s6); padding-bottom: var(--section); align-items: start; }

.searchbox { position: relative; display: block; }
.searchbox .ico { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--gray400); pointer-events: none; }
.searchbox input {
  width: 100%; height: 52px; padding: 0 48px 0 46px;
  border: 1px solid var(--line); border-radius: var(--radius);
  font: inherit; font-size: 15px; color: var(--charcoal); background: var(--paper);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.searchbox input::placeholder { color: var(--gray400); }
.searchbox input::-webkit-search-cancel-button { display: none; }
.searchbox input:hover { border-color: var(--gray400); }
.searchbox input:focus { outline: none; border-color: var(--cobalt); box-shadow: 0 0 0 3px rgba(30, 79, 255, 0.14); }
.search-clear {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; display: none; place-items: center;
  background: none; border: 0; border-radius: var(--radius); color: var(--gray600); cursor: pointer;
}
.search-clear.show { display: grid; }
.search-clear:hover { background: var(--gray100); color: var(--charcoal); }

.facets { position: sticky; top: calc(var(--header-h) + 16px); display: grid; gap: var(--s3); }
.facet { border-bottom: 1px solid var(--line); padding-bottom: var(--s3); }
.facet:last-of-type { border-bottom: 0; }
.facet legend { font-size: 13px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 12px; }
.facet-list { display: grid; gap: 2px; }
.check { display: flex; align-items: center; gap: 10px; min-height: 36px; cursor: pointer; font-size: 14px; color: var(--gray600); }
.check:hover { color: var(--charcoal); }
.check input { position: absolute; opacity: 0; width: 0; height: 0; }
.check .box {
  width: 18px; height: 18px; flex: none; display: grid; place-items: center;
  border: 1px solid var(--gray400); border-radius: 4px; background: var(--paper); color: transparent;
  transition: background 0.16s var(--ease), border-color 0.16s var(--ease), color 0.16s var(--ease);
}
.check .box .ico { width: 12px; height: 12px; stroke-width: 3; }
.check input:checked + .box { background: var(--cobalt); border-color: var(--cobalt); color: #fff; }
.check input:focus-visible + .box { outline: 2px solid var(--cobalt); outline-offset: 2px; }
.check input:checked ~ .check-text { color: var(--charcoal); font-weight: 600; }
.check .n { margin-left: auto; font-size: 12px; color: var(--gray400); font-variant-numeric: tabular-nums; }
.check-text { flex: 1; }
.facet-reset { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.filter-panel { position: static; }
.sheet-apply { display: none; }
.sheet-grab { display: none; }
#roleSkeleton[hidden] { display: none; }

.results-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s3); flex-wrap: wrap; margin: var(--s3) 0 var(--s2);
}
.results-bar .count { font-size: 14px; color: var(--gray600); }
.results-bar .count b { color: var(--charcoal); font-weight: 700; }
.bar-actions { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.roles-main { min-width: 0; }
.empty-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: var(--s2); }
.select {
  height: 44px; padding: 0 40px 0 14px;
  border: 1px solid var(--line); border-radius: var(--radius);
  font: inherit; font-size: 14px; color: var(--charcoal); background-color: var(--paper);
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9.5l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.select:hover { border-color: var(--gray400); }
.select:focus { outline: none; border-color: var(--cobalt); box-shadow: 0 0 0 3px rgba(30, 79, 255, 0.14); }

.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: var(--s2); }
.chip {
  display: inline-flex; align-items: center; gap: 7px; height: 34px; padding: 0 8px 0 13px;
  border: 1px solid var(--cobalt-line); background: var(--cobalt-wash); color: var(--cobalt);
  border-radius: var(--radius-pill); font-size: 13px; font-weight: 600; cursor: pointer;
}
.chip:hover { background: #E2E9FF; }
.chip .ico { width: 14px; height: 14px; }
.chip-toggle {
  display: inline-flex; align-items: center; gap: 6px; height: 38px; padding: 0 16px;
  border: 1px solid var(--line); background: var(--paper); color: var(--gray600);
  border-radius: var(--radius-pill); font-size: 14px; font-weight: 600; cursor: pointer;
  transition: all 0.18s var(--ease);
}
.chip-toggle:hover { border-color: var(--charcoal); color: var(--charcoal); }
.chip-toggle[aria-pressed="true"] { background: var(--cobalt); border-color: var(--cobalt); color: #fff; }

.job-table { border-top: 1px solid var(--charcoal); }
.job-table th {
  text-align: left; font-size: 12px; font-weight: 700; color: var(--gray600);
  letter-spacing: 0.04em; padding: 12px var(--s2); border-bottom: 1px solid var(--line); white-space: nowrap;
}
.job-table td { padding: 16px var(--s2); border-bottom: 1px solid var(--gray100); vertical-align: middle; font-size: 14px; color: var(--gray600); }
.job-table tbody tr { transition: background 0.18s var(--ease); }
.job-table tbody tr:hover { background: var(--gray050); }
.job-table .c-title { width: 40%; }
.job-open {
  display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap;
  background: none; border: 0; padding: 4px 0; cursor: pointer; text-align: left;
  font-size: 16px; font-weight: 700; color: var(--charcoal); letter-spacing: -0.022em;
}
.job-open:hover { color: var(--cobalt); }
.job-open .sub { display: block; width: 100%; font-size: 13px; font-weight: 400; color: var(--gray600); margin-top: 2px; }
.c-save { width: 56px; text-align: right; }
.save-btn {
  width: 44px; height: 44px; display: inline-grid; place-items: center;
  background: none; border: 1px solid transparent; border-radius: var(--radius);
  color: var(--gray400); cursor: pointer; transition: color 0.18s var(--ease), background 0.18s var(--ease);
}
.save-btn:hover { color: var(--cobalt); background: var(--cobalt-wash); }
.save-btn[aria-pressed="true"] { color: var(--cobalt); }
.save-btn[aria-pressed="true"] .ico { fill: currentColor; }

.skeleton-row { height: 62px; border-bottom: 1px solid var(--gray100); background:
  linear-gradient(90deg, var(--gray100) 25%, var(--gray050) 37%, var(--gray100) 63%);
  background-size: 400% 100%; animation: shimmer 1.2s linear infinite; }
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: 0 0; } }

.empty {
  display: grid; justify-items: center; gap: var(--s2); text-align: center;
  padding: var(--s8) var(--s3); border-bottom: 1px solid var(--gray100);
}
.empty .ico-lg { color: var(--gray400); }
.empty h3 { font-size: 18px; }
.empty p { font-size: 14px; color: var(--gray600); max-width: 40ch; }

.sheet-open {
  display: none; align-items: center; gap: 7px; height: 44px; padding: 0 16px;
  border: 1px solid var(--line); background: var(--paper); border-radius: var(--radius);
  font-size: 14px; font-weight: 600; cursor: pointer; position: relative;
}
.sheet-open .n {
  position: absolute; top: -6px; right: -6px; min-width: 20px; height: 20px; padding: 0 5px;
  display: grid; place-items: center; background: var(--cobalt); color: #fff;
  border-radius: var(--radius-pill); font-size: 11px; font-weight: 700;
}
.sheet-head { display: none; }

/* JD 서랍 */
.jd-panel {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: var(--z-drawer);
  width: min(560px, 92vw); background: var(--paper);
  box-shadow: var(--shadow-lg); transform: translateX(101%);
  transition: transform 0.4s var(--ease);
  display: flex; flex-direction: column;
}
.jd-panel.open { transform: none; }
.jd-top { display: flex; justify-content: flex-end; padding: 14px 14px 0; }
.jd-close {
  width: 44px; height: 44px; display: grid; place-items: center;
  background: none; border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer;
}
.jd-body { flex: 1; overflow-y: auto; padding: var(--s2) var(--s5) var(--s5); }
.jd-body h2 { margin-bottom: var(--s2); }
.jd-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: var(--s5); }
.jd-sec { margin-top: var(--s5); }
.jd-sec h3 { margin-bottom: 14px; }
.jd-sec p { font-size: 15px; color: var(--gray600); line-height: 1.75; }
.bullets { display: grid; gap: 10px; }
.bullets li { position: relative; padding-left: 16px; font-size: 15px; line-height: 1.7; color: var(--gray600); }
.bullets li::before { content: ""; position: absolute; left: 0; top: 11px; width: 5px; height: 5px; border-radius: 50%; background: var(--cobalt); }
.jd-foot { padding: var(--s3) var(--s5) var(--s5); border-top: 1px solid var(--line); display: grid; gap: 10px; background: var(--paper); }

/* ================================================== PAGE 04 — 직무 상세 */
.jd-head { padding: var(--s4) 0 var(--s6); }
.crumb { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--gray600); margin-bottom: var(--s4); }
.crumb:hover { color: var(--cobalt); }
.jd-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--s4); flex-wrap: wrap; }
.jd-title-row h1 { max-width: 18ch; }
.detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: var(--s8); padding-bottom: var(--section); align-items: start; }
.detail-main > section + section { margin-top: var(--s7); }
.detail-main h2 { font-size: clamp(20px, 1.8vw, 24px); margin-bottom: var(--s3); padding-bottom: 12px; border-bottom: 1px solid var(--charcoal); }

.team-card { display: grid; grid-template-columns: 360px minmax(0, 1fr); gap: var(--s4); align-items: center; }
.team-card .frame { width: 360px; height: 210px; border-radius: var(--radius); }
.team-card h3 { margin-bottom: 10px; }
.team-card p { font-size: 15px; color: var(--gray600); line-height: 1.75; margin-bottom: 12px; }

.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s2); }
.process-step { text-align: center; position: relative; padding-top: var(--s1); }
.process-step .ring {
  width: 60px; height: 60px; margin: 0 auto 14px; display: grid; place-items: center;
  border: 1.5px solid var(--cobalt-line); border-radius: 50%; color: var(--cobalt); background: var(--paper);
}
.process-step h3 { font-size: 15px; color: var(--cobalt); margin-bottom: 6px; }
.process-step p { font-size: 13px; color: var(--gray600); line-height: 1.6; }
.process-step:not(:last-child)::after {
  content: ""; position: absolute; top: 38px; right: -8px; width: 16px; height: 1px; background: var(--cobalt-line);
}
.process-note { margin-top: var(--s4); font-size: 13px; color: var(--gray400); }

.apply-aside { position: sticky; top: calc(var(--header-h) + 24px); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--s4); }
.apply-aside h2 { font-size: 17px; margin-bottom: var(--s3); }
.summary { display: grid; gap: 0; margin-bottom: var(--s4); }
.summary div { display: flex; justify-content: space-between; gap: var(--s2); padding: 11px 0; border-bottom: 1px solid var(--gray100); font-size: 14px; }
.summary dt { color: var(--gray600); }
.summary dd { margin: 0; font-weight: 600; text-align: right; }
.aside-actions { display: grid; gap: 10px; }
.aside-note { margin-top: var(--s3); font-size: 12px; color: var(--gray600); line-height: 1.6; }

.strip { background: var(--cobalt); color: #fff; }
.strip-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s4); flex-wrap: wrap; padding: var(--s6) 0; }
.strip h2 { font-size: clamp(20px, 2vw, 27px); }
.strip p { color: rgba(255,255,255,0.82); font-size: 14px; margin-top: 8px; }

/* ================================================== PAGE 05 — 지원 */
.apply-head { padding: clamp(40px, 5vw, 72px) 0 var(--s4); }
.apply-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: var(--s7); padding-bottom: var(--s8); align-items: start; }

.stepper { display: flex; align-items: flex-start; margin: var(--s5) 0 var(--s3); }
.step-node { display: grid; justify-items: center; gap: 8px; flex: none; width: 92px; }
.step-node .bubble {
  width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%;
  border: 1.5px solid var(--gray200); background: var(--paper); color: var(--gray400);
  font-size: 14px; font-weight: 700; transition: all 0.24s var(--ease);
}
.step-node .name { font-size: 13px; color: var(--gray400); font-weight: 600; white-space: nowrap; }
.step-node[data-state="current"] .bubble { background: var(--cobalt); border-color: var(--cobalt); color: #fff; }
.step-node[data-state="current"] .name { color: var(--cobalt); }
.step-node[data-state="done"] .bubble { background: var(--cobalt-wash); border-color: var(--cobalt-line); color: var(--cobalt); }
.step-node[data-state="done"] .name { color: var(--charcoal); }
.step-line { flex: 1; height: 1px; background: var(--gray200); margin-top: 17px; min-width: 12px; }
.step-line.done { background: var(--cobalt-line); }

.form-status {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: var(--radius); font-size: 14px;
  background: var(--gray050); color: var(--gray600); border: 1px solid var(--gray100);
}
.form-status .ico { color: var(--cobalt); }
.form-status[data-tone="error"] { background: var(--danger-wash); border-color: #FDA29B; color: var(--danger); }
.form-status[data-tone="error"] .ico { color: var(--danger); }
.form-status[data-tone="done"] { background: #ECFDF3; border-color: #ABEFC6; color: var(--success); }
.form-status[data-tone="done"] .ico { color: var(--success); }

.step-panel { margin-top: var(--s5); }
.step-panel[hidden] { display: none; }
.step-panel > h2 { font-size: clamp(20px, 1.9vw, 25px); }
.req-note { margin-top: 8px; font-size: 13px; color: var(--gray600); }
.req { color: var(--danger); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3) var(--s3); margin-top: var(--s4); }
.field { display: grid; gap: 8px; align-content: start; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13.5px; font-weight: 600; }
.control {
  width: 100%; min-height: 50px; padding: 13px 16px;
  border: 1px solid var(--line); border-radius: var(--radius);
  font: inherit; font-size: 15px; color: var(--charcoal); background: var(--paper);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.control::placeholder { color: var(--gray400); }
.control:hover { border-color: var(--gray400); }
.control:focus { outline: none; border-color: var(--cobalt); box-shadow: 0 0 0 3px rgba(30, 79, 255, 0.14); }
textarea.control { min-height: 148px; resize: vertical; line-height: 1.7; }
select.control {
  appearance: none; padding-right: 44px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9.5l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.field.invalid .control { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(217, 45, 32, 0.12); }
.err { display: none; align-items: center; gap: 6px; font-size: 13px; color: var(--danger); }
.err .ico { width: 15px; height: 15px; }
.field.invalid .err { display: flex; }
.hint { font-size: 12.5px; color: var(--gray600); }
.counter { justify-self: end; font-size: 12px; color: var(--gray400); font-variant-numeric: tabular-nums; }

.dropzone {
  width: 100%; margin-top: 8px; padding: var(--s5) var(--s3);
  border: 1.5px dashed var(--gray200); border-radius: var(--radius);
  background: var(--gray050); color: var(--gray600); text-align: center;
  font: inherit; font-size: 14px; cursor: pointer; display: grid; gap: 6px; justify-items: center;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.dropzone:hover { border-color: var(--cobalt-line); background: var(--cobalt-wash); }
.dropzone b { font-size: 15px; color: var(--charcoal); font-weight: 600; }
.dropzone small { font-size: 12px; color: var(--gray400); }

.consent { margin-top: var(--s3); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--s3); }
.consent > p { font-size: 13.5px; color: var(--gray600); line-height: 1.7; margin-bottom: 12px; }
.consent a { color: var(--cobalt); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.consent .check { font-size: 14.5px; color: var(--charcoal); }
.consent.invalid { border-color: var(--danger); background: var(--danger-wash); }
.consent.invalid .err { display: flex; margin-top: 10px; }

.review { margin-top: var(--s4); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.review dl { display: grid; }
.review dl > div { display: grid; grid-template-columns: 152px minmax(0, 1fr); gap: var(--s2); padding: 14px var(--s3); border-bottom: 1px solid var(--gray100); font-size: 14.5px; }
.review dl > div:last-child { border-bottom: 0; }
.review dt { color: var(--gray600); }
.review dd { margin: 0; font-weight: 600; }
.review dd.blank { color: var(--gray400); font-weight: 400; }
.review-edit { display: flex; justify-content: flex-end; padding: 12px var(--s3); background: var(--gray050); border-bottom: 1px solid var(--gray100); }

.form-nav { display: flex; gap: 10px; justify-content: space-between; margin-top: var(--s5); padding-top: var(--s4); border-top: 1px solid var(--line); }
.form-nav .right { display: flex; gap: 10px; }

.done-card { display: none; margin-top: var(--s5); border: 1px solid #ABEFC6; background: #F6FEF9; border-radius: var(--radius-lg); padding: var(--s6); text-align: center; }
.done-card.show { display: block; }
.done-card .ico-lg { color: var(--success); margin: 0 auto var(--s3); }
.done-card h2 { margin-bottom: 12px; }
.done-card p { color: var(--gray600); font-size: 15px; margin-bottom: var(--s4); }
.done-card .actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

.apply-side { position: sticky; top: calc(var(--header-h) + 24px); display: grid; gap: var(--s3); }
.side-card { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--s3); }
.side-card h2 { font-size: 15px; margin-bottom: 14px; }
.side-card .summary div { padding: 9px 0; font-size: 13.5px; }
.side-card p { font-size: 13px; color: var(--gray600); line-height: 1.7; }

.proc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s3); }
.proc-card { border: 1px solid var(--line); border-radius: var(--radius); padding: var(--s3); }
.proc-card .n { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; color: var(--cobalt); }
.proc-card h3 { font-size: 16px; margin: 8px 0 8px; }
.proc-card p { font-size: 13.5px; color: var(--gray600); line-height: 1.65; }

.accordion { border-top: 1px solid var(--line); max-width: 840px; }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--s3);
  padding: 20px 4px; background: none; border: 0; cursor: pointer;
  font-size: 16px; font-weight: 600; text-align: left; letter-spacing: -0.018em;
}
.acc-trigger:hover { color: var(--cobalt); }
.acc-trigger .ico { color: var(--gray600); transition: transform 0.28s var(--ease); }
.acc-trigger[aria-expanded="true"] .ico { transform: rotate(180deg); color: var(--cobalt); }
.acc-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.32s var(--ease); }
.acc-item.open .acc-body { grid-template-rows: 1fr; }
.acc-body > div { overflow: hidden; }
.acc-body p { padding: 0 4px 22px; font-size: 15px; line-height: 1.8; color: var(--gray600); }

/* --------------------------------------------------------------- 푸터 */
.site-footer { background: var(--charcoal); color: #fff; padding: var(--s7) 0 var(--s4); }
.foot-top { display: flex; align-items: baseline; gap: var(--s4); flex-wrap: wrap; margin-bottom: var(--s5); }
.foot-top .brand-name { color: #fff; }
.foot-tag { font-size: 14px; color: rgba(255, 255, 255, 0.62); }
.foot-nav { display: flex; gap: var(--s5); flex-wrap: wrap; padding-bottom: var(--s4); border-bottom: 1px solid rgba(255,255,255,0.14); }
.foot-nav a { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.86); transition: color 0.2s var(--ease); }
.foot-nav a:hover { color: var(--cobalt); }
.foot-social { display: flex; gap: 10px; padding: var(--s4) 0; }
.foot-social a {
  width: 44px; height: 44px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius);
  color: rgba(255,255,255,0.72); transition: all 0.2s var(--ease);
}
.foot-social a:hover { border-color: var(--cobalt); color: #fff; background: var(--cobalt); }
.foot-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s3); flex-wrap: wrap;
  padding-top: var(--s3); border-top: 1px solid rgba(255,255,255,0.14);
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.foot-legal { display: flex; gap: var(--s3); flex-wrap: wrap; }
.foot-legal a:hover { color: #fff; }

/* --------------------------------------------------------------- 토스트 */
.toast {
  position: fixed; left: 50%; bottom: 28px; z-index: var(--z-toast);
  transform: translate(-50%, 18px);
  min-width: 260px; max-width: calc(100vw - 32px);
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px; background: var(--charcoal); color: #fff;
  border-radius: var(--radius); font-size: 14px; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  /* 알림일 뿐이므로 아래의 폭 전체 제출 버튼을 가로막지 않는다 */
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.toast .ico { color: var(--cobalt); }

.spinner {
  width: 15px; height: 15px; border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff; border-radius: 50%; animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --------------------------------------------------------------- 등장 효과 */
/* IntersectionObserver 는 빠른 스크롤에서 요소를 놓친다(실측). 위치를 직접 잰다. */
.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

/* =============================================================== 반응형 */
@media (max-width: 1180px) {
  :root { --wrap: 1024px; --section: 80px; --gutter: 28px; }
  .navlinks { gap: var(--s3); }
  .roles-layout { grid-template-columns: 216px minmax(0, 1fr); gap: var(--s5); }
  .detail-layout { grid-template-columns: minmax(0, 1fr) 300px; gap: var(--s6); }
  .apply-layout { grid-template-columns: minmax(0, 1fr) 280px; gap: var(--s5); }
  .teams-hero { grid-template-columns: 1fr 360px; gap: var(--s6); }
  .teams-hero .frame { width: 360px; height: 382px; }
  .team-card { grid-template-columns: 300px minmax(0, 1fr); }
  .team-card .frame { width: 300px; height: 175px; }
}

@media (max-width: 1024px) {
  .navlinks, .nav-actions .btn { display: none; }
  .menu-btn { display: inline-flex; }
  .nav { gap: var(--s3); }
  .hero-media { grid-template-columns: 1fr; }
  .hero-media .frame { height: 380px; }
  .hero-panel { padding: var(--s5) var(--s4); }
  .teams-hero { grid-template-columns: 1fr; gap: var(--s5); }
  .teams-hero .frame { width: 100%; height: 340px; }
  .dark-band .band-inner { grid-template-columns: 1fr; gap: var(--s4); }
  .culture-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s4); }
  .proc-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-layout { grid-template-columns: 1fr; gap: var(--s5); }
  .apply-aside { position: static; }
  .apply-layout { grid-template-columns: 1fr; }
  .apply-side { position: static; grid-template-columns: 1fr 1fr; }
  .team-row { grid-template-columns: 160px minmax(0, 1fr); }
  .team-row .open-n { grid-column: 2; justify-self: start; justify-items: start; text-align: left; }
  .quick-row { grid-template-columns: 104px minmax(0, 1fr) 96px 116px 34px; }
  .quick-row .meta.hide-md { display: none; }

  /* 필터는 하단 시트로 전환 — 같은 DOM 을 자리만 옮긴다 */
  .roles-layout { grid-template-columns: 1fr; }
  .sheet-open { display: inline-flex; }
  .filter-panel {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-sheet);
    max-height: 86vh; overflow-y: auto; background: var(--paper);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    box-shadow: var(--shadow-lg); padding: 0 var(--s3) var(--s3);
    transform: translateY(101%); transition: transform 0.36s var(--ease);
  }
  .filter-panel.open { transform: none; }
  .facets { position: static; }
  .sheet-head {
    display: flex; align-items: center; justify-content: space-between; gap: var(--s2);
    position: sticky; top: 0; background: var(--paper); padding: var(--s2) 0 12px; z-index: 1;
  }
  .sheet-head h2 { font-size: 17px; }
  .sheet-grab { width: 40px; height: 4px; border-radius: 2px; background: var(--gray200); margin: 10px auto 0; }
  /* 조건이 길어도 「결과 보기」는 늘 손 닿는 곳에 둔다 */
  .sheet-apply {
    display: block; position: sticky; bottom: 0; margin-top: var(--s3);
    box-shadow: 0 -14px 18px 6px var(--paper);
  }
}

@media (max-width: 900px) {
  /* 데이터 그리드 → 카드 (같은 DOM) */
  .job-table { border-top: 0; }
  .job-table thead { display: none; }
  .job-table, .job-table tbody, .job-table tr, .job-table td { display: block; width: 100%; }
  .job-table tbody tr {
    position: relative; border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 16px 60px 12px 16px; margin-bottom: 12px;
  }
  .job-table tbody tr:hover { background: var(--paper); }
  .job-table td { border: 0; padding: 0; }
  .job-table .c-title { width: auto; margin-bottom: 10px; }
  .job-table .c-team, .job-table .c-exp, .job-table .c-type, .job-table .c-loc {
    display: inline-flex; width: auto; align-items: center; height: 26px; padding: 0 10px; margin: 0 6px 6px 0;
    border: 1px solid var(--line); border-radius: var(--radius-pill); font-size: 12px; color: var(--gray600);
  }
  .job-table .c-save { position: absolute; top: 10px; right: 10px; width: auto; }
  .skeleton-row { border: 1px solid var(--gray100); border-radius: var(--radius-lg); margin-bottom: 12px; height: 108px; }
}

@media (max-width: 767px) {
  :root { --gutter: 20px; --section: 64px; --s8: 64px; --s7: 48px; --s6: 40px; }
  body { font-size: 15.5px; }

  /* 터치 영역 최소 44px */
  button, .btn, a[role="button"] { min-height: 44px; }
  .btn-sm { min-height: 44px; }
  .tab { min-height: 44px; }
  .check { min-height: 44px; }

  .hero-media { margin-top: var(--s5); }
  .hero-media .frame { height: 300px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: var(--s3) var(--s2) var(--s3) 0; border-top: 1px solid var(--line); }
  .stat:nth-child(-n+2) { border-top: 0; }
  .stat + .stat { padding-left: var(--s3); }
  .stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .quick-row { grid-template-columns: minmax(0, 1fr) 32px; gap: 6px 12px; padding: 16px var(--s2); }
  .quick-row .team { order: -1; }
  .quick-row .title { grid-column: 1; }
  .quick-row .go { grid-row: 1 / span 3; grid-column: 2; align-self: center; }
  .quick-row .meta { font-size: 12.5px; }
  .news-item { grid-template-columns: minmax(0, 1fr) 96px; gap: var(--s3); }
  .news-item .date { grid-column: 1; }
  .news-item .frame { width: 96px; height: 72px; grid-row: 1 / span 2; grid-column: 2; }
  .news-item .body { grid-column: 1; }

  .story-grid { grid-template-columns: 1fr; gap: var(--s5); }
  .story .frame { height: 220px; }
  .numbers-grid { grid-template-columns: 1fr 1fr; gap: var(--s5); }
  .culture-grid { grid-template-columns: 1fr; gap: var(--s4); }
  .culture-item { display: grid; grid-template-columns: 30px minmax(0, 1fr); gap: var(--s2); align-items: start; }
  .culture-item .ico-lg { margin-bottom: 0; }
  .team-row { grid-template-columns: 1fr; gap: 10px; padding: var(--s3); }
  .team-row .open-n { grid-column: 1; }

  .team-card { grid-template-columns: 1fr; }
  .team-card .frame { width: 100%; height: 200px; }
  .process { grid-template-columns: 1fr 1fr; gap: var(--s4) var(--s2); }
  .process-step:not(:last-child)::after { display: none; }
  .detail-main h2 { font-size: 20px; }
  .strip-inner { padding: var(--s5) 0; }
  .strip-inner .btn { width: 100%; }

  .form-grid { grid-template-columns: 1fr; }
  .apply-side { grid-template-columns: 1fr; }
  .proc-grid { grid-template-columns: 1fr; }
  .step-node { width: auto; flex: 1 1 0; min-width: 0; }
  .step-node .name { font-size: 11px; }
  .step-line { min-width: 6px; margin-top: 16px; }
  .form-nav { flex-direction: column-reverse; gap: 10px; }
  .form-nav .right { flex-direction: column; }
  .form-nav .btn { width: 100%; }
  .review dl > div { grid-template-columns: 1fr; gap: 4px; }

  .jd-panel { width: 100vw; }
  .jd-body { padding: var(--s2) var(--s3) var(--s4); }
  .jd-foot { padding: var(--s2) var(--s3) var(--s3); }
  .foot-nav { gap: var(--s3) var(--s4); }
  .foot-bottom { justify-content: flex-start; }
}

@media (max-width: 380px) {
  .hero-actions .btn { width: 100%; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-left: 0 !important; padding-left: 0 !important; }
  .numbers-grid { grid-template-columns: 1fr; }
  .step-node .name { font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .drawer, .scrim, .toast, .jd-panel, .filter-panel, .sheet-open { display: none !important; }
  body { background: #fff; }
}
