@charset "utf-8";
/* =========================================================================
   무표시행 채용 사이트 — 디자인 시스템
   Pretendard / 단일 액센트 / 라이트-다크 교차 리듬
   ========================================================================= */

@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.min.css");

:root {
  /* 색 */
  --ink: #111111;
  --ink-2: #3d3d3d;
  --muted: #767676;
  --muted-dark: #a0a0a0;
  --line: #e6e6e6;
  --line-dark: #333333;
  --bg: #ffffff;
  --bg-soft: #f5f5f5;
  --dark: #111111;
  --dark-2: #1a1a1a;

  /* 액센트: 큰 글씨·면적용 */
  --accent: #ff5050;
  /* 액센트: 흰 배경 위 작은 글씨용 (WCAG AA 4.5:1 확보) */
  --accent-ink: #d63a3a;

  /* 레이아웃 */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 40px);
  --nav-h: 64px;

  /* 모션 */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 리셋 ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
    system-ui, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  word-break: keep-all;
  overflow-wrap: anywhere;
  -webkit-font-smoothing: antialiased;
}
img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p, figure, blockquote, ul, ol, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

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

/* 키보드 사용자용 본문 바로가기 */
.skip-link {
  position: absolute; left: 12px; top: -100px; z-index: 200;
  padding: 12px 18px; background: var(--ink); color: #fff;
  border-radius: 8px; font-weight: 700; transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- 레이아웃 ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 10vw, 132px); }
.section--tight { padding-block: clamp(56px, 7vw, 92px); }
.section--dark { background: var(--dark); color: #fff; }
.section--soft { background: var(--bg-soft); }
.section--dark .t-muted,
.section--dark .caption { color: var(--muted-dark); }
.section--dark .accent { color: var(--accent); }

/* ---------- 타이포 ---------- */
.t-display { font-size: clamp(32px, 5.6vw, 58px); font-weight: 700; line-height: 1.28; letter-spacing: -0.025em; }
.t-h1      { font-size: clamp(28px, 4.4vw, 48px); font-weight: 700; line-height: 1.3;  letter-spacing: -0.022em; }
.t-h2      { font-size: clamp(23px, 3.1vw, 36px); font-weight: 700; line-height: 1.34; letter-spacing: -0.018em; }
.t-h3      { font-size: clamp(19px, 1.9vw, 23px); font-weight: 700; line-height: 1.4;  letter-spacing: -0.012em; }
.t-h4      { font-size: clamp(17px, 1.5vw, 19px); font-weight: 700; line-height: 1.5; }
.t-lead    { font-size: clamp(17px, 1.6vw, 19px); font-weight: 400; line-height: 1.75; }
.t-body    { font-size: clamp(15px, 1.3vw, 17px); font-weight: 400; line-height: 1.75; }
.t-muted   { color: var(--muted); }
.caption   { font-size: 14px; color: var(--muted); line-height: 1.6; }
.accent    { color: var(--accent-ink); }
.section--dark .t-display,
.section--dark .t-h1,
.section--dark .t-h2 { letter-spacing: -0.02em; }

/* 섹션 위 작은 라벨 */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent-ink); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; }
.section--dark .eyebrow { color: var(--accent); }

.stack > * + * { margin-top: 16px; }
.stack-lg > * + * { margin-top: 28px; }
.measure { max-width: 62ch; }

/* ---------- 헤더 ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
/* 히어로 위에서는 투명 + 흰 글씨, 스크롤하면 흰 배경 */
.site-header { color: #fff; }
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom-color: var(--line);
  color: var(--ink);
}
.brand-logo { display: flex; align-items: center; }
.brand-logo img { height: 26px; width: auto; transition: filter .3s var(--ease); filter: invert(1) brightness(2); }
.site-header.is-scrolled .brand-logo img { filter: none; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative; padding: 8px 14px; border-radius: 999px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
  transition: background .2s var(--ease), opacity .2s var(--ease); opacity: .88;
}
.nav a:hover { opacity: 1; background: rgba(127, 127, 127, 0.16); }
.nav a[aria-current="page"] { opacity: 1; }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px;
  height: 2px; background: var(--accent); border-radius: 2px;
}
.nav .btn-nav {
  margin-left: 8px; padding: 9px 18px; background: var(--accent); color: #fff;
  opacity: 1; border-radius: 999px;
}
.nav .btn-nav:hover { background: #ff3838; }
.nav .btn-nav::after { display: none; }

.nav-toggle { display: none; width: 44px; height: 44px; margin-right: -10px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: currentColor; margin: 5px auto; border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease); }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; color: var(--ink);
    padding: 12px var(--gutter) 28px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  .nav a { padding: 16px 4px; font-size: 17px; border-radius: 0; opacity: 1; }
  .nav a:hover { background: none; }
  .nav a[aria-current="page"]::after { left: 4px; right: auto; width: 18px; bottom: 8px; }
  .nav .btn-nav { margin: 12px 0 0; text-align: center; padding: 15px; }
  .nav-open .nav { opacity: 1; transform: none; pointer-events: auto; }
  .nav-open .site-header { background: #fff; color: var(--ink); border-bottom-color: transparent; }
  .nav-open .brand-logo img { filter: none; }
}

/* ---------- 히어로 ---------- */
.hero {
  position: relative; display: grid; align-items: center;
  min-height: clamp(460px, 78vh, 720px);
  padding-block: calc(var(--nav-h) + 48px) 64px;
  background: var(--dark); color: #fff; overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media video, .hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.42) 45%, rgba(0,0,0,.68) 100%);
}
.hero__inner { position: relative; z-index: 1; }
.hero__wordmark { width: min(420px, 68vw); margin-top: 32px; }
.hero--split .hero__inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero--split figure { margin: 0; }
.hero--split img { width: 100%; border-radius: 14px; }
@media (max-width: 860px) {
  .hero--split .hero__inner { grid-template-columns: 1fr; }
  .hero--split figure { order: -1; }
  .hero--split img { max-height: 320px; object-fit: cover; }
}

/* 스크롤 유도 */
.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; z-index: 1; translate: -50% 0;
  font-size: 11px; letter-spacing: .18em; color: rgba(255,255,255,.75);
}
.scroll-cue::after {
  content: ""; display: block; width: 1px; height: 26px; margin: 8px auto 0;
  background: linear-gradient(180deg, rgba(255,255,255,.8), transparent);
  animation: cue 2s var(--ease) infinite;
}
@keyframes cue { 0% { transform: scaleY(.2); transform-origin: top; } 60%,100% { transform: scaleY(1); transform-origin: top; } }

/* ---------- 버튼 ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px; border-radius: 999px; font-size: 16px; font-weight: 700;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: #ff3838; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; }
.btn--ghost { border: 1.5px solid currentColor; }
.btn--ghost:hover { background: currentColor; }
.btn--ghost:hover span { color: var(--dark); }
.section--dark .btn--ghost:hover span { color: var(--dark); }
.btn--lg { padding: 18px 40px; font-size: 17px; }

/* ---------- 통계 ---------- */
.stat-grid {
  display: grid; gap: 1px; background: var(--line-dark);
  grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line-dark); border-radius: 14px; overflow: hidden;
}
.stat {
  background: var(--dark); padding: clamp(24px, 3vw, 38px);
  display: flex; flex-direction: column; gap: 6px;
}
.stat__label { font-size: 15px; font-weight: 600; color: var(--muted-dark); }
.stat__value { font-size: clamp(30px, 4vw, 44px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.2; }
.stat__value em { font-style: normal; color: var(--accent); }
.stat__note { font-size: 13px; color: var(--muted-dark); }
@media (max-width: 760px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .stat-grid { grid-template-columns: 1fr; } }

/* ---------- 브랜드 ---------- */
.brand-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center;
}
.brand-row + .brand-row { margin-top: clamp(64px, 8vw, 112px); }
.brand-row:nth-child(even) figure { order: 2; }
.brand-row figure { margin: 0; }
.brand-row img.brand-shot { width: 100%; border-radius: 14px; }
.brand-mark { height: 34px; width: auto; margin-bottom: 22px; }
.brand-row--dark .brand-mark { filter: brightness(0) invert(1); }
@media (max-width: 860px) {
  .brand-row { grid-template-columns: 1fr; }
  .brand-row:nth-child(even) figure { order: 0; }
}

/* ---------- 카드 격자 ---------- */
.grid { display: grid; gap: clamp(16px, 2.2vw, 28px); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) { .grid--3 { grid-template-columns: 1fr; } .grid--2 { grid-template-columns: 1fr; } }

.card {
  border: 1px solid var(--line); border-radius: 14px; padding: clamp(22px, 2.6vw, 32px);
  background: #fff; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.section--dark .card { background: var(--dark-2); border-color: var(--line-dark); }
.card--media { padding: 0; overflow: hidden; }
.card--media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.card--media .card__body { padding: clamp(20px, 2.2vw, 26px); }
.card__num {
  display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: .08em;
  color: var(--accent-ink); margin-bottom: 10px;
}
.section--dark .card__num { color: var(--accent); }

/* ---------- 가치·핏 리스트 ---------- */
.value-list { display: grid; gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.section--dark .value-list { background: var(--line-dark); border-color: var(--line-dark); }
.value {
  background: var(--bg); padding: clamp(24px, 3vw, 34px) 0;
  display: grid; grid-template-columns: 76px 1fr; gap: clamp(12px, 2vw, 32px); align-items: start;
}
.section--dark .value { background: var(--dark); }
.value__num { font-size: clamp(15px, 1.5vw, 17px); font-weight: 800; color: var(--accent-ink); letter-spacing: .04em; padding-top: 4px; }
.section--dark .value__num { color: var(--accent); }
@media (max-width: 620px) { .value { grid-template-columns: 1fr; gap: 8px; } }

/* "잘 안 맞을 수 있어요" 라인 */
.misfit {
  display: flex; gap: 8px; margin-top: 14px; padding: 12px 16px;
  background: var(--bg-soft); border-radius: 10px; font-size: 14px; color: var(--muted); line-height: 1.6;
}
.section--dark .misfit { background: var(--dark-2); }
.misfit b { color: var(--ink-2); font-weight: 700; flex: none; }
.section--dark .misfit b { color: #ddd; }

/* ---------- 복지 ---------- */
.perk { display: flex; gap: 16px; align-items: flex-start; }
.perk__icon { font-size: 26px; line-height: 1.2; flex: none; }

/* ---------- 인용 ---------- */
.quote {
  border-left: 3px solid var(--accent); padding: 4px 0 4px 24px; margin: 0;
  font-size: clamp(18px, 2vw, 22px); font-weight: 600; line-height: 1.66; letter-spacing: -0.012em;
}
.quote--box {
  border-left: 0; background: var(--bg-soft); border-radius: 14px;
  padding: clamp(24px, 3vw, 34px); font-size: clamp(16px, 1.5vw, 18px); font-weight: 400;
}
.quote cite { display: block; margin-top: 14px; font-size: 14px; font-weight: 700; font-style: normal; color: var(--muted); }

/* ---------- 채용 공고 ---------- */
.job-card {
  display: block; border: 1px solid var(--line); border-radius: 14px;
  padding: clamp(24px, 3vw, 34px);
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.job-card:hover { border-color: var(--ink); transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,.07); }
.job-card__top { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.tag {
  display: inline-block; padding: 5px 12px; border-radius: 999px;
  background: var(--bg-soft); font-size: 13px; font-weight: 600; color: var(--ink-2);
}
.tag--live { background: #ffecec; color: var(--accent-ink); }
.job-card__meta { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 16px; font-size: 15px; color: var(--muted); }
.job-card__meta span { display: inline-flex; gap: 6px; }
.job-card__meta b { color: var(--ink-2); font-weight: 600; }

.empty-state {
  border: 1px dashed var(--line); border-radius: 14px; padding: clamp(32px, 5vw, 56px); text-align: center;
}

/* 공고 상세 메타 표 */
.job-meta {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
}
.job-meta div { background: #fff; padding: 20px clamp(16px, 2vw, 24px); }
.job-meta dt { font-size: 13px; font-weight: 700; color: var(--muted); margin-bottom: 6px; }
.job-meta dd { font-size: 16px; font-weight: 600; }
@media (max-width: 760px) { .job-meta { grid-template-columns: repeat(2, 1fr); } }

/* 공고 본문 */
.jd { max-width: 760px; }
.jd h2 {
  font-size: clamp(22px, 2.6vw, 30px); font-weight: 700; letter-spacing: -0.02em;
  margin-top: clamp(48px, 6vw, 76px); margin-bottom: 22px;
  padding-left: 16px; border-left: 4px solid var(--accent); line-height: 1.35;
}
.jd h2:first-child { margin-top: 0; }
.jd h3 { font-size: clamp(17px, 1.7vw, 19px); font-weight: 700; margin-top: 30px; margin-bottom: 8px; }
.jd h3 .n { color: var(--accent-ink); margin-right: 8px; }
.jd p { font-size: clamp(15px, 1.3vw, 17px); line-height: 1.85; color: var(--ink-2); }
.jd p + p { margin-top: 14px; }
.jd ul { margin-top: 10px; display: grid; gap: 9px; }
.jd ul li {
  position: relative; padding-left: 18px;
  font-size: clamp(15px, 1.3vw, 17px); line-height: 1.75; color: var(--ink-2);
}
.jd ul li::before {
  content: ""; position: absolute; left: 2px; top: .72em;
  width: 6px; height: 1.5px; background: var(--muted);
}
.jd .note { font-size: 14px; color: var(--muted); line-height: 1.8; }
.jd hr { border: 0; border-top: 1px solid var(--line); margin: clamp(40px, 5vw, 64px) 0; }

/* 절차 스텝 */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; counter-reset: step; }
.step {
  position: relative; padding: 22px 18px; border: 1px solid var(--line);
  border-radius: 12px; text-align: center;
}
.step__n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; margin-bottom: 10px; border-radius: 50%;
  background: var(--ink); color: #fff; font-size: 13px; font-weight: 700;
}
.step__t { font-size: 16px; font-weight: 700; }
.step__d { font-size: 13px; color: var(--muted); margin-top: 4px; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .steps { grid-template-columns: 1fr; } }

/* ---------- CTA 밴드 ---------- */
.cta-band { text-align: center; }
.cta-band .btn { margin-top: 32px; }

/* ---------- 연락처 ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-item + .contact-item { margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--line); }
.contact-item dt { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; border-bottom: 1.5px solid currentColor; padding-bottom: 2px; }
.link-arrow:hover { color: var(--accent-ink); }

/* ---------- 푸터 ---------- */
.site-footer { background: var(--bg-soft); padding-block: clamp(48px, 6vw, 72px) 40px; }
.site-footer .container { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; }
.site-footer .foot-nav { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.site-footer .foot-nav a { font-size: 14px; font-weight: 600; color: var(--ink-2); }
.site-footer .foot-nav a:hover { color: var(--accent-ink); }
.site-footer small { display: block; color: var(--muted); font-size: 13px; line-height: 1.8; }

/* 맨 위로 */
.to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--ink); color: #fff; font-size: 11px; font-weight: 700;
  display: grid; place-items: center;
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.to-top.is-on { opacity: 1; pointer-events: auto; transform: none; }

/* ---------- 스크롤 등장 ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

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

/* ---------- 인쇄 ---------- */
@media print {
  .site-header, .to-top, .site-footer, .scroll-cue, .hero__media { display: none !important; }
  .hero { min-height: auto; background: none; color: #000; padding-block: 0 24px; }
  .section { padding-block: 16px; }
  .reveal { opacity: 1; transform: none; }
}
