/* ✅ '로그인으로 기록'을 배경색처럼 숨김 (드래그/선택하면 보임) */
.secret-word{
  background: transparent;
  color: transparent;      /* 평소엔 안 보이게 */
  padding: 2px 6px;
  border-radius: 6px;
  position: relative;
}

/* 선택(드래그)하면 글자 보이기 */
.secret-word::selection{
  color: #111;
  background: #ffd54f;     /* 선택했을 때 하이라이트 */
}

/* 드래그 유도: 아주 약한 점선 밑줄 */
.secret-word{
  border-bottom: 1px dashed rgba(0,0,0,.25);
}

/* ✅ reveal 영역 */
.episode-reveal__wrap{
  border-top: 1px dashed #e5e5e5;
  padding-top: 12px;
  overflow: hidden;
}

/* 슬라이더로 열리는 컨텐츠 */
.episode-reveal__content{
  width: var(--reveal, 0%);
  overflow: hidden;
  transition: width 120ms linear;
}

/* 단계별 강조(슬라이더 값에 따라) */
.step-reveal{
  opacity: 0.15;
  transform: translateY(4px);
  transition: all 200ms ease;
}
.step-reveal.is-on{
  opacity: 1;
  transform: translateY(0);
}

.zubuz-section-title.center { text-align: center; }

.no-wrap-title{
  display: inline-block;  /* 핵심: 글자 너비만큼만 박스 생성 */
  white-space: nowrap;
  margin-left: auto;
  margin-right: auto;
  max-width: none;
}

/* 모바일에서는 줄바꿈 허용(안전) */
@media (max-width: 576px){
  .no-wrap-title{
    white-space: normal;
  }
}

.title-full{
  max-width: none !important;
}


/* Pages / 하단 CTA 상단 보조 문구 */
.cta-subtitle {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #d1d5db; /* 배경 어두울 때 기준 */ 
  letter-spacing: -0.2px;
}


/* CTA 상단 보조 문구 */
.cta-subtitle {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #d1d5db;
  letter-spacing: -0.2px;
}

/* 신청 결과 메시지 */
.cta-messages {
  margin-top: 16px;
  margin-bottom: 12px;
}

.cta-message {
  padding: 10px 12px;
  border-radius: 10px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.4;
}

.cta-message.success { background: #ecfdf5; color: #065f46; }
.cta-message.info    { background: #eff6ff; color: #1e40af; }
.cta-message.error   { background: #fef2f2; color: #991b1b; }

/* 사장님 메시지 박스 */
.owner-message-box {
  background: #f8fafc;
  border-radius: 16px;
  padding: 36px 32px;
  margin-top: 40px;
  border: 1px solid #e5e7eb;
}

/* 제목 */
.owner-message-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #111827;
}

/* 설명 문구 */
.owner-message-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 24px;
}

/* 포인트 묶음 */
.owner-message-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* 개별 포인트 */
.owner-message-points .point-item {
  background: #ffffff;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  color: #111827;
  border: 1px solid #e5e7eb;
}

/* 모바일 대응 */
@media (max-width: 767px) {
  .owner-message-box {
    padding: 28px 20px;
  }

  .owner-message-title {
    font-size: 20px;
  }

  .owner-message-points {
    flex-direction: column;
  }
}

/* 메시지 박스 하단 액션 영역 */
.owner-message-action {
  margin-top: 24px;
}

/* 뒤로가기 / 기능 더보기 버튼 */
.owner-back-btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  background-color: #111827; /* 진한 네이비/블랙 */
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.owner-back-btn:hover {
  background-color: #1f2937;
  color: #ffffff;
  transform: translateY(-1px);
}

/* 홈 화면 요금제 요약(카드 없이) */
.ws-price-summary{
  max-width: 760px;
  margin: 0 auto;
}

/* 한 줄 = 3컬럼 그리드 */
.ws-price-row{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  align-items: center;

  padding: 16px 18px;

  /* ✅ 기존 테두리 제거 */
  border: 0;

  /* ✅ 구분선이 보이도록 대비 */
  background: transparent;
}

/* 실제 구분선은 가상요소로 */
.ws-price-row::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #e5e7eb;
}

/* ✅ 구분선: border로 확실하게 */
.ws-price-row + .ws-price-row{
  border-top: 1px solid #d1d5db; /* 더 진하게 */
}


/* 컬럼 정렬 */
.ws-plan{
  font-weight: 700;
  text-align: left;
}

.ws-people{
  text-align: center;
  color: #6b7280;
}

.ws-price{
  text-align: right;
  font-weight: 800;
}

/* 인기 행 */
.ws-price-row.is-popular{
  background: #f8fafc;
  border-radius: 10px;
  margin: 10px 0;

  /* 인기행 위아래 경계는 따로 그림 */
  border-top: 1px solid #d1d5db;
  border-bottom: 1px solid #d1d5db;
}

/* 인기행 다음 줄의 border-top은 중복되니 제거 */
.ws-price-row.is-popular + .ws-price-row{
  border-top: 0;
}

/* 인기 행은 구분선 제거 */
.ws-price-row.is-popular::after{
  display: none;
}

/* 컬럼 정렬 */
.ws-plan{ font-weight: 700; text-align: left; }
.ws-people{ text-align: center; color: #6b7280; }
.ws-price{ text-align: right; font-weight: 800; }

/* badge 정렬 안정화 */
/* badge */
.ws-popular-badge{
  display: inline-block;
  margin-left: 8px;
  font-size: 0.85em;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  vertical-align: middle;
}

/* 모바일 */
@media (max-width: 767px){
  .ws-price-row{
    flex-direction: column;
    align-items: flex-start;
  }
  .ws-plan, .ws-people, .ws-price{
    min-width: auto;
    text-align: left;
  }
}

/* 에피소드 라벨(P) - 작게/가볍게 */
.episode-label{
  margin: 0;
  font-size: 14px;          /* 작게 */
  color: #6c757d;           /* muted 느낌 */
  letter-spacing: 0.08em;
  text-transform: uppercase; /* 필요 없으면 삭제 */
}

/* 출근기록 설명(H2) - 메인 타이틀처럼 크게 */
.episode-headline{
  margin: 0;
  font-size: 36px;          /* 크게 */
  line-height: 1.2;
  font-weight: 800;
}

/* 아래 보조 설명은 기존 p 느낌 유지 */
.episode-sub{
  color: #6c757d;
  margin-top: 10px;
}

/* ===== Workstamp Beta Page ===== */

.ws-btn-pill{
  border-radius: 999px !important;
  padding: 10px 18px !important;
  font-weight: 700;
}

.ws-beta-hero{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 34px 26px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.ws-beta-hero__badge{
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #111;
  border: 1px solid rgba(0,0,0,.1);
  background: #f8f9fa;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.ws-beta-hero__title{
  font-size: 36px;
  line-height: 1.15;
  font-weight: 900;
  margin: 0 0 10px 0;
}

.ws-beta-hero__desc{
  color: #6c757d;
  margin: 0;
  font-size: 15px;
}

.ws-beta-hero__cta{
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ws-beta-card{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
  height: 100%;
}

.ws-beta-card__title{
  font-weight: 800;
  margin-bottom: 6px;
}

.ws-beta-card__desc{
  color: #6c757d;
  font-size: 14px;
  margin: 0;
}

.ws-price{
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
}

/* ===== Centered Price Card (Color 개선) ===== */

.ws-price--center{
  display: flex;
  justify-content: center;
}

.ws-price__single{
  max-width: 420px;
  width: 100%;
  padding: 34px 28px;
  border-radius: 22px;

  /* 🔥 배경 컬러 수정 */
  background: #0f172a; /* dark navy */
  color: #f8fafc;

  text-align: center;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.35);
}

/* 상단 태그 */
.ws-price__single .ws-price__tag{
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;

  /* 🔥 포인트 컬러 */
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.35);
}

/* 가격 */
.ws-price__single .ws-price__title{
  font-size: 38px;
  font-weight: 900;
  margin: 10px 0 4px;
  color: #ffffff;
  letter-spacing: -0.02em;
}

/* 기간 설명 */
.ws-price__single .ws-price__note{
  font-size: 14px;
  color: #cbd5e1; /* 밝은 회색 */
}

/* 기능 리스트 */
.ws-price__single .ws-check{
  list-style: none;
  padding: 0;
  margin: 0;
}

.ws-price__single .ws-check li{
  margin-bottom: 10px;
  font-weight: 600;
  color: #e5e7eb;
}

.ws-price__single .ws-check li:before{
  content: "✓ ";
  font-weight: 900;
  color: #38bdf8; /* 체크 포인트 */
}

/* 버튼 */
.ws-price__single .btn{
  margin-top: 14px;
  background: #ffffff;
  color: #0f172a;
  border: none;
  font-weight: 800;
}

.ws-price__single .btn:hover{
  background: #e2e8f0;
  color: #0f172a;
}

/* 하단 주의 문구 */
.ws-price__single .ws-price__fine{
  margin-top: 12px;
  font-size: 12px;
  color: #94a3b8;
}



@media (max-width: 991px){
  .ws-price{ grid-template-columns: 1fr; }
}

.ws-price__left{
  padding: 24px;
}

.ws-price__right{
  padding: 24px;
  background: #0b0f14;
  color: #fff;
}

.ws-price__tag{
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.08);
  margin-bottom: 10px;
}

.ws-price__title{
  font-size: 24px;
  font-weight: 900;
  margin: 0 0 8px 0;
}

.ws-price__sub{
  color: #6c757d;
  margin: 0 0 16px 0;
}

.ws-check{
  list-style: none;
  padding: 0;
  margin: 0;
}

.ws-check li{
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: #495057;
  font-weight: 600;
}

.ws-check li:before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
}

.ws-price__amount{
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.ws-price__num{
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.ws-price__won{
  font-size: 16px;
  font-weight: 800;
  opacity: .9;
}

.ws-price__note{
  opacity: .85;
  margin-top: 4px;
}

.ws-price__fine{
  opacity: .75;
}

.ws-beta-panel{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
  height: 100%;
}

.ws-beta-panel__title{
  font-weight: 900;
  margin-bottom: 10px;
}

.ws-dot{
  margin: 0;
  padding-left: 18px;
  color: #6c757d;
}

.ws-dot li{
  margin-bottom: 8px;
}

.ws-faq{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
}

.ws-faq__title{
  font-weight: 900;
  margin-bottom: 14px;
}

.ws-faq__item{
  padding: 12px 0;
  border-top: 1px solid rgba(0,0,0,.06);
}

.ws-faq__item:first-of-type{
  border-top: 0;
}

.ws-faq__q{
  font-weight: 900;
  margin-bottom: 6px;
}

.ws-faq__a{
  color: #6c757d;
  margin: 0;
}

.ws-bottom-cta{
  padding: 22px 14px;
}


