/* ==========================================================
   訪談工作流頁專用元件（iw- 前綴，避免與 resources/style.css 衝突）
   色票沿用 style.css 的 :root（--accent #F97316 / --bg #FFF8F3 / --text #1A1A1A）
   ========================================================== */

/* ==========================================================
   A. 易讀性覆寫（本頁限定，不影響另外兩本手冊）
   目標讀者含 40–59 歲，字級整體放大、行高加寬、正文顏色加深
   本檔載入順序在 style.css 之後，同權重後者勝
   ========================================================== */

body { font-size: 17px; line-height: 1.8; }

.hero-sub { font-size: 19px; color: #6B6058; }
.hero-body { font-size: 18px; line-height: 1.95; color: #2E2E2E; }

.chapter h2 { font-size: 29px; }
.chapter-body { font-size: 17px; line-height: 1.95; color: #2E2E2E; }

.section-label { font-size: 13px; }
.chapter-tag { font-size: 12.5px; }

.toc-list li a { font-size: 16px; padding: 13px 16px; }
.toc-num { font-size: 13px; min-width: 26px; }

.step { padding: 18px 20px; }
.step-num { width: 30px; height: 30px; min-width: 30px; font-size: 14px; }
.step-content h4 { font-size: 18px; line-height: 1.5; margin-bottom: 10px; }
.step-content p { font-size: 16px; line-height: 1.85; color: #3A3A3A; }

.callout { font-size: 16.5px; line-height: 1.9; color: #2E2E2E; padding: 18px 22px; }

.compare-table { font-size: 15.5px; }
.compare-table thead th { font-size: 14.5px; padding: 13px 16px; }
.compare-table tbody td { padding: 14px 16px; line-height: 1.7; }

.badge { font-size: 12.5px; padding: 4px 10px; }

.footer-author { font-size: 15px; }

@media (max-width: 600px) {
  body { font-size: 16.5px; }
  .hero-body { font-size: 16.5px; }
  .chapter h2 { font-size: 23px; }
  .chapter-body { font-size: 16px; }
  .step-content h4 { font-size: 17px; }
  .step-content p { font-size: 15.5px; }
  .callout { font-size: 15.5px; }
}

/* ==========================================================
   B. 問題／解法 結構化拆解（取代整坨文字）
   ========================================================== */

.iw-qa {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 12px;
}

.iw-qa-row {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 13px;
  align-items: start;
}

.iw-qa-l {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 4px 0;
  border-radius: 6px;
  margin-top: 3px;
  white-space: nowrap;
}

.iw-qa-row--p .iw-qa-l { background: #F2E4D6; color: #8A5426; }
.iw-qa-row--s .iw-qa-l { background: var(--accent); color: #FFFFFF; }
.iw-qa-row--n .iw-qa-l { background: #ECE6E0; color: #5A4E46; }

.iw-qa-row p {
  margin: 0;
  font-size: 16px;
  line-height: 1.85;
  color: #3A3A3A;
}

.iw-qa-row p + p { margin-top: 7px; }

.iw-qa-row strong { color: var(--text); }

@media (max-width: 600px) {
  .iw-qa-row { grid-template-columns: 52px 1fr; gap: 10px; }
  .iw-qa-l { font-size: 11.5px; }
  .iw-qa-row p { font-size: 15.5px; }
}

/* ==========================================================
   C. 成熟度階梯
   ========================================================== */

.iw-ladder {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
}

.iw-level {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 17px 19px;
  align-items: start;
}

.iw-level--here {
  border-color: var(--accent);
  background: #FFF3E9;
}

.iw-level-n {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-align: center;
  border-right: 1px solid var(--border);
  padding-right: 14px;
  line-height: 1.5;
}

.iw-level--here .iw-level-n { color: var(--accent); border-right-color: #F5D5B8; }

.iw-level-n b {
  display: block;
  font-size: 25px;
  line-height: 1.15;
  color: var(--text);
}

.iw-level--here .iw-level-n b { color: var(--accent); }

.iw-level h4 {
  font-size: 17.5px;
  font-weight: 800;
  margin: 0 0 6px;
  line-height: 1.45;
}

.iw-level p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.8;
  color: #4A423C;
}

.iw-level-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  background: var(--accent);
  color: #fff;
  border-radius: 5px;
  padding: 2px 9px;
  margin-left: 8px;
  vertical-align: 2px;
}

@media (max-width: 600px) {
  .iw-level { grid-template-columns: 1fr; gap: 10px; }
  .iw-level-n {
    text-align: left;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 8px;
  }
  .iw-level-n b { display: inline; font-size: 20px; margin-right: 8px; }
}

/* ==========================================================
   D. 三十秒摘要（人與 AI 都先讀這塊）
   ========================================================== */

.iw-tldr {
  background: var(--bg-card);
  border: 2px solid var(--accent);
  border-radius: 14px;
  padding: 22px 24px;
  margin: 32px 0 0;
}

.iw-tldr-h {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 12px;
}

.iw-tldr ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.iw-tldr li {
  font-size: 16.5px;
  line-height: 1.8;
  color: #2E2E2E;
  padding-left: 20px;
  position: relative;
}

.iw-tldr li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
}

.iw-tldr li strong { font-weight: 800; }

/* ==========================================================
   E. 下一步行動
   ========================================================== */

.iw-next {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}

@media (max-width: 760px) { .iw-next { grid-template-columns: 1fr; } }

.iw-next-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  border-radius: 4px 4px 12px 12px;
  padding: 18px 19px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.iw-next-who {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--accent);
}

.iw-next-card h4 {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
  margin: 0;
}

.iw-next-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #4A423C;
  margin: 0;
}

.iw-next-do {
  margin-top: auto;
  padding-top: 11px;
  border-top: 1px dashed var(--border);
  font-size: 14.5px;
  line-height: 1.75;
  color: #4A423C;
}

.iw-next-do b {
  display: block;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 3px;
}

/* ── HERO 數據列 ── */
.iw-stats {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 32px;
}

.iw-stat {
  background: var(--bg-card);
  padding: 16px 18px;
}

.iw-stat--hero { background: #FFF3E9; }

.iw-stat-k {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 4px;
}

.iw-stat-v {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  font-variant-numeric: tabular-nums;
}

.iw-stat-v s {
  color: var(--muted);
  font-weight: 600;
  text-decoration-thickness: 1.5px;
}

.iw-stat-v em {
  font-style: normal;
  color: var(--accent);
}

@media (max-width: 600px) {
  .iw-stats { grid-template-columns: 1fr; }
  .iw-stat-v { font-size: 18px; }
}

/* ── 主張塊 ── */
.iw-thesis {
  margin-top: 28px;
  border-left: 3px solid var(--accent);
  background: var(--accent-light);
  border-radius: 0 10px 10px 0;
  padding: 20px 22px;
}

.iw-thesis-t {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}

.iw-thesis-t em { font-style: normal; color: var(--accent); }

.iw-thesis p {
  font-size: 14px;
  color: #444;
  line-height: 1.85;
  margin: 0;
}

@media (max-width: 600px) {
  .iw-thesis-t { font-size: 16px; }
}

/* ── 定義塊 ── */
.iw-def {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 20px 22px;
  margin: 24px 0;
}

.iw-def-k {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 6px;
}

.iw-def-a {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
}

@media (max-width: 600px) { .iw-def-a { font-size: 15px; } }

/* ── 三張「不是」卡 ── */
.iw-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.iw-cards--2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 700px) {
  .iw-cards, .iw-cards--2 { grid-template-columns: 1fr; }
}

.iw-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
}

.iw-card h4 {
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 6px;
}

.iw-card p {
  font-size: 13px;
  color: #555;
  line-height: 1.75;
  margin: 0;
}

/* ── 完整地圖 ── */
.iw-map {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 28px 0 8px;
}

.iw-map-src {
  width: 100%;
  max-width: 420px;
  text-align: center;
  color: #fff;
  background: linear-gradient(165deg, #F97316, #C2560C);
  border-radius: 12px;
  padding: 16px 20px;
}

.iw-map-src .k {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  opacity: 0.92;
}

.iw-map-src .v {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 2px 0 3px;
}

.iw-map-src .m {
  font-size: 12.5px;
  opacity: 0.95;
  line-height: 1.6;
}

.iw-map-stem {
  width: 2px;
  height: 22px;
  background: var(--accent);
  opacity: 0.45;
}

.iw-map-prep {
  width: 100%;
  max-width: 520px;
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 13px 18px;
  text-align: center;
}

.iw-map-prep .t {
  font-size: 14px;
  font-weight: 700;
}

.iw-map-prep .t span { color: var(--accent); }

.iw-map-prep .d {
  font-size: 12.5px;
  color: #666;
  line-height: 1.6;
  margin-top: 2px;
}

.iw-fan {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 4px;
}

@media (max-width: 480px) { .iw-fan { grid-template-columns: repeat(2, 1fr); } }

.iw-fan-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 3px 3px 10px 10px;
  padding: 11px 10px 12px;
  text-align: center;
}

.iw-fan-item .l {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.iw-fan-item .n {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  margin-top: 1px;
}

.iw-fan-item .f {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.45;
  margin-top: 3px;
}

/* ── 時間對照條 ── */
.iw-bars {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 22px;
  margin: 28px 0;
}

.iw-bars-h {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.iw-bar-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.iw-bar-lb {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-align: right;
}

.iw-bar-track { position: relative; }

.iw-bar {
  height: 30px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding: 0 11px;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.iw-bar--was { background: #D9CFC6; color: #4A4038; }
.iw-bar--now { background: var(--accent); }

.iw-bars-note {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
  border-top: 1px dashed var(--border);
  padding-top: 12px;
  margin-top: 14px;
}

.iw-bars-note strong { color: var(--text); }

/* ── 六個零件 ── */
.iw-parts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

@media (max-width: 700px) { .iw-parts { grid-template-columns: 1fr; } }

.iw-part {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 17px 19px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.iw-part-n {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.iw-part h4 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0;
}

.iw-part p {
  font-size: 13px;
  color: #555;
  line-height: 1.78;
  margin: 0;
}

.iw-part-map {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px dashed var(--border);
  font-size: 12.5px;
  color: #555;
  line-height: 1.7;
}

.iw-part-map b {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 2px;
}

/* ── 產線軌道 ── */
.iw-track {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin: 12px 0;
}

.iw-track-head {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-wrap: wrap;
  padding: 12px 18px;
  background: #FDF4EC;
  border-bottom: 1px solid var(--border);
  border-left: 4px solid var(--accent);
}

.iw-track-letter {
  width: 28px;
  height: 28px;
  flex: none;
  border-radius: 7px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.iw-track-name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.iw-track-fmt {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 5px;
  padding: 2px 8px;
}

.iw-track-body { padding: 15px 18px 4px; }

.iw-block { margin-bottom: 14px; }

.iw-block-l {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 5px;
}

.iw-block p {
  font-size: 13.5px;
  color: #444;
  line-height: 1.8;
  margin: 0;
}

.iw-block ol {
  margin: 0;
  padding-left: 1.3em;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.iw-block ol li {
  font-size: 13.5px;
  color: #444;
  line-height: 1.75;
}

.iw-block ol li::marker {
  color: var(--accent);
  font-weight: 700;
}

.iw-track-foot {
  border-top: 1px dashed var(--border);
  background: var(--bg);
  padding: 11px 18px 12px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.7;
}

.iw-track-foot b { color: #555; }

.iw-mono {
  font-family: "SF Mono", "Fira Code", Menlo, Consolas, monospace;
  font-size: 0.9em;
}

/* ── 鐵則 ── */
.iw-rules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

@media (max-width: 700px) { .iw-rules { grid-template-columns: 1fr; } }

.iw-rule {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 15px 17px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.iw-rule-n {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.iw-rule h4 {
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}

.iw-rule p {
  font-size: 13px;
  color: #555;
  line-height: 1.75;
  margin: 0;
}

.iw-rule-cost {
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px dashed var(--border);
  font-size: 12.5px;
  color: #777;
  line-height: 1.6;
}

.iw-rule-cost b { color: var(--accent); }

/* ── 語意自檢 ── */
.iw-gate {
  background: var(--accent-light);
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 19px 21px;
  margin: 24px 0;
}

.iw-gate h4 {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 6px;
}

.iw-gate-s {
  font-size: 13.5px;
  color: #555;
  line-height: 1.8;
  margin: 0 0 14px;
}

.iw-gate-qs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media (max-width: 700px) { .iw-gate-qs { grid-template-columns: 1fr; } }

.iw-gate-q {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 13px 15px;
}

.iw-gate-q h5 {
  font-size: 13.5px;
  font-weight: 700;
  margin: 0 0 4px;
}

.iw-gate-q p {
  font-size: 12.5px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* ── 坑：左右對照 ── */
.iw-pit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin: 10px 0;
}

@media (max-width: 600px) { .iw-pit { grid-template-columns: 1fr; } }

.iw-pit-side { padding: 14px 17px; }

.iw-pit-side--was { background: #FAF4EE; }

.iw-pit-l {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 5px;
}

.iw-pit-side--now .iw-pit-l { color: var(--accent); }

.iw-pit-side p {
  font-size: 13px;
  color: #444;
  line-height: 1.75;
  margin: 0;
}

/* ── 四個問題 ── */
.iw-ask {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 24px;
  margin: 24px 0;
}

.iw-ask ol {
  margin: 0;
  padding-left: 1.3em;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.iw-ask li {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.iw-ask li::marker {
  color: var(--accent);
  font-weight: 800;
}

.iw-ask li span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #555;
  line-height: 1.8;
  margin-top: 3px;
}

/* ── 結尾雙 CTA ── */
.iw-cta {
  border-top: 1px solid var(--border);
  padding: 64px 0 8px;
}

.iw-cta h2 {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

@media (max-width: 600px) { .iw-cta h2 { font-size: 21px; } }

.iw-cta-body {
  font-size: 15.5px;
  color: #444;
  line-height: 1.9;
}

.iw-cta-body p { margin-bottom: 14px; }

.iw-cta-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 24px;
  margin-top: 28px;
}

.iw-cta-card--accent {
  border-color: var(--accent);
  background: #FFF3E9;
}

.iw-cta-card .lb {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 7px;
}

.iw-cta-card h3 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
  margin-bottom: 8px;
}

.iw-cta-card p {
  font-size: 13.5px;
  color: #555;
  line-height: 1.8;
  margin: 0 0 16px;
}

.iw-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 26px;
  text-decoration: none;
  transition: filter 0.18s;
}

.iw-btn:hover {
  filter: brightness(0.93);
  text-decoration: none;
  color: #fff;
}

.iw-cta-sub {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 12px;
}

.iw-kit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.iw-kit-list li {
  font-size: 13.5px;
  color: #444;
  line-height: 1.6;
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.iw-kit-list li b {
  color: var(--accent);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  min-width: 22px;
}


/* 視覺隱藏但複製得到、螢幕閱讀器與 AI 讀得到 */
.iw-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================
   F. 定時解鎖畫面
   .iw-locked 由 <head> 的 inline script 加在 <html> 上，
   時間到之後由倒數腳本移除，全站其餘元素在鎖定期間隱藏
   ========================================================== */

#iw-lock { display: none; }

.iw-locked #iw-lock {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 48px 22px 64px;
  background: var(--bg);
}

.iw-locked nav,
.iw-locked main,
.iw-locked #progress-bar { display: none !important; }

.iw-lock__inner {
  width: 100%;
  max-width: 560px;
  text-align: center;
}

.iw-lock__eyebrow {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 16px;
}

.iw-lock__title {
  font-size: clamp(27px, 6vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
}

.iw-lock__sub {
  font-size: 17px;
  color: #5A4E46;
  margin: 0 0 28px;
}

.iw-lock__sub b { color: var(--accent); font-weight: 800; }

.iw-lock__timer {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  background: var(--bg-card);
  border: 2px solid var(--accent);
  border-radius: 14px;
  padding: 22px 20px;
}

.iw-lock__num {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: clamp(26px, 7.6vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.iw-lock__unit {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

.iw-lock__note {
  font-size: 13.5px;
  color: var(--muted);
  margin: 12px 0 0;
}

.iw-lock__peek {
  margin-top: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 22px;
  text-align: left;
}

.iw-lock__peek-h {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 12px;
}

.iw-lock__peek ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.iw-lock__peek li {
  font-size: 15.5px;
  line-height: 1.8;
  color: #3A3A3A;
  padding-left: 20px;
  position: relative;
}

.iw-lock__peek li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
}

.iw-lock__kit {
  margin-top: 20px;
  background: #FFF3E9;
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 20px 22px;
  text-align: left;
}

.iw-lock__kit-h {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
}

.iw-lock__kit-p {
  font-size: 14.5px;
  color: #4A423C;
  line-height: 1.8;
  margin: 0 0 14px;
}

.iw-lock__back {
  margin-top: 24px;
  font-size: 14.5px;
}

.iw-lock__back a {
  color: var(--muted);
  text-decoration: none;
}

.iw-lock__back a:hover { color: var(--accent); }
