/* ============================================================
   PROJECT PAGE CSS — MOBILE
   ============================================================ */

/* ── BODY ── */
.proj-body { background: var(--wh); }

/* ── HEADER (project용 추가) ── */
.proj-body .m-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

/* PROGRESS BAR */
.m-progress-wrap {
  height: 3px;
  background: var(--gray2);
  border-radius: 2px;
  overflow: hidden;
}
.m-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--g);
  transition: width .1s linear;
}

/* MENU BUTTON */
.m-menu-btn {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--bk);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

/* ── DRAWER ── */
.m-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: 280px;
  height: 100%;
  background: var(--bk);
  z-index: 200;
  transition: right .3s var(--ease);
  overflow-y: auto;
}
.m-drawer.open { right: 0; }

.m-drawer-bg {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.m-drawer-bg.open { opacity: 1; pointer-events: all; }

.m-drawer-inner { padding: 0 0 40px; }

.m-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #222;
}
.m-drawer-header span {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--g);
  text-transform: uppercase;
}
.m-drawer-close {
  background: none;
  border: none;
  color: var(--wh);
  font-size: 18px;
  cursor: pointer;
}

.m-drawer-nav { display: flex; flex-direction: column; }
.d-link {
  display: block;
  padding: 14px 20px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  border-bottom: 1px solid #1a1a1a;
  transition: color .2s, background .2s;
}
.d-link:active,
.d-link.active { color: var(--g); background: #0d0d0d; }

/* ── CHAPTER DIVIDER ── */
.ch-divider {
  background: var(--g);
  padding: 24px var(--pad);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ch-divider.dark-bg { background: var(--bk); }

.ch-num {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: rgba(0,0,0,.4);
  text-transform: uppercase;
}
.ch-divider.dark-bg .ch-num { color: var(--g); }

.ch-title {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1;
  color: var(--bk);
}
.ch-divider.dark-bg .ch-title { color: var(--wh); }

.ch-sub {
  font-family: var(--font-h);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(0,0,0,.5);
  text-transform: uppercase;
}
.ch-divider.dark-bg .ch-sub { color: rgba(255,255,255,.4); }

/* ── HERO (PROJECT) ── */
.p-hero {
  position: relative;
  height: 100svh;
  min-height: 580px;
  overflow: hidden;
}
.p-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 40%, rgba(0,0,0,.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--pad) 90px;
  color: var(--wh);
}
.p-hero-title {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 86px;
  line-height: .86;
  text-transform: uppercase;
  letter-spacing: -.02em;
  margin: 10px 0 12px;
}
.p-hero-sub {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.8);
}
.p-hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,.5);
  font-family: var(--font-h);
  font-size: 10px;
  letter-spacing: .2em;
  animation: bounce 1.8s infinite;
}

/* ── SECTION BASE ── */
.p-sec {
  padding: 48px var(--pad);
}
.p-sec.bg-light { background: var(--gray); }

.p-sec-intro { margin-bottom: 32px; }
.p-sec-title {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 36px;
  line-height: .95;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.p-sec-desc {
  font-size: 13px;
  color: var(--gray4);
  line-height: 1.6;
}

.sec-sub-h {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 16px;
}

/* ── 01 WHY ── */
.why-list { display: flex; flex-direction: column; gap: 2px; }

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 16px;
}
.why-item.green { background: var(--g); }
.why-item.dark  { background: var(--bk); color: var(--wh); }

.why-icon-wrap {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.why-item.green .why-icon-wrap { background: rgba(0,0,0,.15); }
.why-item.dark  .why-icon-wrap { background: rgba(255,255,255,.1); }

.why-text h3 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 4px;
}
.why-text p {
  font-size: 13px;
  line-height: 1.6;
  opacity: .85;
}

/* ── 02 BRAND ANALYSIS ── */
.brand-timeline {
  background: var(--wh);
  padding: 20px;
  margin-bottom: 28px;
  border-radius: 4px;
}
.timeline-items { display: flex; flex-direction: column; gap: 0; }
.tl-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray2);
}
.tl-item:last-child { border-bottom: none; }
.tl-item.bad  .tl-year { color: #c00; }
.tl-item.highlight .tl-year { color: var(--g); font-size: 18px; }
.tl-item.highlight { background: rgba(68,214,44,.06); padding: 12px 8px; border-radius: 4px; }

.tl-year {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 16px;
  min-width: 52px;
  letter-spacing: .02em;
}
.tl-item p { font-size: 13px; line-height: 1.5; color: var(--gray4); }
.tl-item p strong { color: var(--bk); }

/* CHART BLOCK */
.chart-block {
  background: var(--wh);
  padding: 20px;
  margin-bottom: 16px;
  border-radius: 4px;
}
.chart-unit {
  font-size: 11px;
  color: var(--gray3);
  margin-bottom: 12px;
}
.chart-wrap { height: 220px; position: relative; }

/* VALUE BARS */
.value-block {
  background: var(--wh);
  padding: 20px;
  margin-bottom: 16px;
  border-radius: 4px;
}
.val-bars { display: flex; flex-direction: column; gap: 14px; }
.val-row { display: flex; align-items: center; gap: 10px; }
.val-name {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  min-width: 112px;
  letter-spacing: .03em;
}
.val-track {
  flex: 1;
  height: 7px;
  background: var(--gray2);
  border-radius: 4px;
  overflow: hidden;
}
.val-fill {
  height: 100%;
  width: 0%;
  background: var(--g);
  border-radius: 4px;
  transition: width 1.1s var(--ease);
}
.val-fill.dark { background: var(--bk); }
.val-pct {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13px;
  min-width: 28px;
  text-align: right;
}

/* DNA BLOCK */
.dna-block {
  background: var(--wh);
  padding: 20px;
  margin-bottom: 16px;
  border-radius: 4px;
}
.dna-list { display: flex; flex-direction: column; gap: 14px; }
.dna-item { display: flex; gap: 12px; align-items: flex-start; }
.dna-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}
.dna-dot.green { background: var(--g); }
.dna-item strong {
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}
.dna-item p { font-size: 12px; color: var(--gray4); line-height: 1.5; }

/* ── 03 RESEARCH ── */
.research-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 28px;
}
.research-photos .ph-sq { border-radius: 4px; }

.research-items { display: flex; flex-direction: column; gap: 2px; }
.ri-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--gray);
}
.ri-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.ri-icon.green { background: var(--g); color: var(--bk); }
.ri-icon.dark  { background: var(--bk); color: var(--wh); }
.ri-text h4 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.ri-text p { font-size: 12px; color: var(--gray4); line-height: 1.5; }

/* ── 04 FORM → RESULT ── */
.form-pairs { display: flex; flex-direction: column; gap: 24px; }

.form-pair {
  background: var(--wh);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--gray2);
}
.form-side {
  padding: 16px;
}
.input-side { background: var(--wh); }
.output-side { background: rgba(68,214,44,.07); }

.form-badge {
  display: inline-block;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--bk);
  color: var(--wh);
  padding: 3px 10px;
  margin-bottom: 10px;
}
.form-badge.green { background: var(--g); color: var(--bk); }

.form-side > p {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--gray4);
  margin-top: 8px;
  text-align: center;
}

.form-arrow-v {
  text-align: center;
  padding: 6px 0;
  background: var(--gray2);
  font-size: 20px;
  color: var(--g);
}

/* ── 05 ITEM SELECT ── */
.select-steps { display: flex; flex-direction: column; gap: 28px; margin-bottom: 28px; }

.ss-block { }
.ss-tag {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--bk);
  color: var(--g);
  padding: 6px 14px;
  display: inline-block;
  margin-bottom: 12px;
}
.ss-cards { display: flex; flex-direction: column; gap: 2px; }
.ss-card {
  background: var(--wh);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bg-light .ss-card { background: var(--wh); }
.ss-card i { color: var(--g); font-size: 20px; margin-bottom: 4px; }
.ss-card h4 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
}
.ss-card p { font-size: 12px; color: var(--gray4); line-height: 1.5; }

/* CONCLUSION */
.select-conclusion {
  background: var(--bk);
  color: var(--wh);
  padding: 24px 20px;
  border-radius: 4px;
}
.concl-header { margin-bottom: 18px; }
.concl-badge {
  display: inline-block;
  background: var(--g);
  color: var(--bk);
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: .16em;
  padding: 3px 12px;
  margin-bottom: 10px;
}
.concl-header h3 {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 26px;
  text-transform: uppercase;
}
.concl-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.concl-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
}
.concl-list li i { color: var(--g); margin-top: 3px; flex-shrink: 0; }
.concl-list li strong { color: var(--wh); }

/* ── 06 AESTHETIC ── */
.aes-tabs {
  display: flex;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--gray2);
}
.aes-tab {
  flex: 1;
  background: none;
  border: none;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 12px 0;
  color: var(--gray3);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color .2s, border-color .2s;
}
.aes-tab.active { color: var(--bk); border-bottom-color: var(--g); }

.aes-panel { display: none; flex-direction: column; gap: 16px; }
.aes-panel.active { display: flex; }

.aes-card { background: var(--wh); border-radius: 4px; overflow: hidden; }
.aes-card h4 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  padding: 12px 14px 4px;
}
.aes-card p { font-size: 13px; color: var(--gray4); line-height: 1.6; padding: 0 14px 16px; }

/* ── 07 ERGONOMICS ── */
.ergo-table-wrap { margin-bottom: 20px; }
.ergo-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.ergo-table {
  width: 100%;
  min-width: 360px;
  border-collapse: collapse;
  font-size: 12px;
}
.ergo-table th {
  background: var(--bk);
  color: var(--wh);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  padding: 10px 10px;
  text-align: left;
  letter-spacing: .05em;
}
.ergo-table td {
  padding: 10px;
  border-bottom: 1px solid var(--gray2);
  color: var(--gray4);
}
.ergo-table tr:last-child td { border-bottom: none; }
.ergo-table td.applied {
  color: var(--g);
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 14px;
}
.ergo-table tr:hover td { background: rgba(68,214,44,.04); }

/* ── 08 DESIGN PROCESS ── */
.phase-block { margin-bottom: 36px; }
.phase-header { margin-bottom: 14px; }
.phase-chip {
  display: inline-block;
  background: var(--g);
  color: var(--bk);
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: .14em;
  padding: 3px 12px;
  margin-bottom: 6px;
}
.phase-header h3 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
}
.phase-header p { font-size: 12px; color: var(--gray4); margin-top: 4px; }

/* HORIZONTAL SCROLL STRIP */
.photo-scroll-x {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}
.photo-scroll-x::-webkit-scrollbar { height: 3px; }
.photo-scroll-x::-webkit-scrollbar-thumb { background: var(--gray2); border-radius: 2px; }
.photo-scroll-x > .ph { scroll-snap-align: start; border-radius: 4px; }

/* PRINT FLOW */
.print-flow {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}
.pf-item { flex-shrink: 0; width: 120px; text-align: center; }
.pf-item p {
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 600;
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.pf-arrow { color: var(--gray3); font-size: 14px; flex-shrink: 0; }
.ver {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 2px;
}
.ver.rejected  { background: var(--gray2); color: var(--gray3); }
.ver.modified  { background: #fff3cd; color: #856404; }
.ver.final-tag { background: var(--g); color: var(--bk); }

/* ── 09 FINAL ── */
.final-block { margin-bottom: 36px; }

.how-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.how-item { text-align: center; }
.how-num {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 36px;
  color: var(--g);
  line-height: 1;
  margin-bottom: 8px;
}
.how-item h5 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  margin-top: 8px;
  margin-bottom: 3px;
}
.how-item p { font-size: 11px; color: var(--gray4); }

/* JIBBITZ BLOCK */
.jibbitz-block {
  background: var(--bk);
  color: var(--wh);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0;
}
.jibbitz-top { padding: 24px 20px; }
.jibbitz-top h3 {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 36px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.jibbitz-top > p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
}
.jibbitz-feats {
  display: flex;
  gap: 20px;
}
.jf {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-family: var(--font-h);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
}
.jf i { font-size: 22px; color: var(--g); }
.jibbitz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 0 0 2px;
}

/* ════════════════════════════════════
   NEW SECTIONS CSS (PDF 내용 반영)
════════════════════════════════════ */

/* ── HERO 팀명 ── */
.p-hero-team {
  font-family: var(--font-h);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,.5);
  margin-top: 6px;
  text-transform: uppercase;
}

/* ── EXPLORE GRID ── */
.explore-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}
.exp-ph { border-radius: 4px; }
.explore-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.etag {
  background: var(--bk);
  color: var(--wh);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .06em;
  padding: 5px 12px;
  border-radius: 2px;
}

/* ── INSIGHT CARDS ── */
.insight-cards { display: flex; flex-direction: column; gap: 2px; }
.ins-card {
  background: var(--wh);
  padding: 22px 18px;
  border-left: 4px solid var(--bk);
  position: relative;
}
.ins-card:nth-child(2) { border-left-color: var(--g); }
.ins-num {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 48px;
  color: rgba(0,0,0,.06);
  position: absolute;
  top: 10px; right: 14px;
  line-height: 1;
}
.ins-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bk);
  color: var(--wh);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  margin-bottom: 12px;
}
.ins-icon.green { background: var(--g); color: var(--bk); }
.ins-card h3 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 4px;
}
.ins-sub {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 12px;
  color: var(--g);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.ins-card p { font-size: 13px; line-height: 1.7; color: var(--gray4); margin-bottom: 12px; }
.ins-card p strong { color: var(--bk); }
.ins-keywords {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.ins-keywords span {
  background: var(--gray);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .04em;
  padding: 3px 10px;
  color: var(--gray4);
}

/* ── WEEK TIMELINE ── */
.week-timeline { display: flex; flex-direction: column; gap: 3px; }
.wk-item {
  background: var(--wh);
  padding: 20px 18px;
  border-top: 3px solid var(--gray2);
}
.wk-item:first-child { border-top-color: var(--bk); }
.wk-item:nth-child(3),
.wk-item:nth-child(4) { border-top-color: var(--g); }
.wk-badge {
  display: inline-block;
  background: var(--bk);
  color: var(--g);
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: .16em;
  padding: 3px 12px;
  margin-bottom: 10px;
}
.wk-badge.wk-green { background: var(--g); color: var(--bk); }
.wk-body h4 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin-bottom: 8px;
  line-height: 1.2;
}
.wk-keywords {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 10px;
}
.wk-keywords span {
  background: rgba(68,214,44,.15);
  color: #2a8a1a;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .04em;
  padding: 2px 8px;
}
.wk-body p { font-size: 13px; line-height: 1.7; color: var(--gray4); }
.wk-body p strong { color: var(--bk); }
.wk-task {
  margin-top: 14px;
  background: var(--gray);
  padding: 14px;
  border-radius: 4px;
}
.wk-task strong {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bk);
  display: block;
  margin-bottom: 8px;
}
.wk-task ul { padding-left: 16px; }
.wk-task ul li { font-size: 12px; color: var(--gray4); line-height: 1.7; }

/* ── TARGET SECTION ── */
.target-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 24px;
}
.th-item {
  background: var(--wh);
  padding: 18px 14px;
  text-align: center;
}
.th-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bk);
  color: var(--wh);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  margin: 0 auto 10px;
}
.th-icon.green { background: var(--g); color: var(--bk); }
.th-item h4 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 6px;
}
.th-item p { font-size: 12px; color: var(--gray4); line-height: 1.5; }

.target-quote {
  margin-bottom: 28px;
}
.target-quote blockquote {
  border-left: 4px solid var(--g);
  padding: 14px 16px;
  background: var(--gray);
  font-size: 14px;
  line-height: 1.7;
  color: var(--bk);
  font-style: italic;
  margin: 0;
}

/* DEV CHART */
.dev-chart { background: var(--wh); padding: 20px; border-radius: 4px; margin-bottom: 24px; }
.dev-rows { display: flex; flex-direction: column; gap: 14px; }
.dev-row {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px;
  background: var(--gray);
  border-radius: 4px;
}
.dev-left, .dev-right {
  flex: 1;
  font-size: 12px;
  line-height: 1.5;
}
.dev-tag {
  display: inline-block;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--bk);
  color: var(--wh);
  padding: 2px 8px;
  margin-bottom: 5px;
}
.dev-tag.green { background: var(--g); color: var(--bk); }
.dev-left strong, .dev-right strong { display: block; font-size: 13px; margin-bottom: 3px; }
.dev-left p, .dev-right p { color: var(--gray4); }
.dev-arrow { color: var(--g); font-size: 18px; flex-shrink: 0; }

/* MODE CARDS */
.mode-cards {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mode-card {
  padding: 20px 18px;
  background: var(--wh);
}
.mode-card.focus { border-top: 4px solid var(--bk); }
.mode-card.free  { border-top: 4px solid var(--g); }
.mode-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bk);
  color: var(--wh);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  margin-bottom: 10px;
}
.mode-icon.green { background: var(--g); color: var(--bk); }
.mode-card h4 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.mode-sub {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 11px;
  color: var(--g);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.mode-card p { font-size: 13px; color: var(--gray4); line-height: 1.6; margin-bottom: 12px; }
.mode-acts { display: flex; gap: 6px; flex-wrap: wrap; }
.mode-acts span {
  background: var(--gray);
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  color: var(--gray4);
}
.mode-divider {
  text-align: center;
  padding: 8px;
  background: var(--g);
  font-size: 20px;
  color: var(--bk);
}

/* ── PERSONA ── */
.persona-card {
  background: var(--wh);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}
.persona-header {
  display: flex;
  gap: 16px;
  padding: 22px 18px;
  align-items: flex-start;
}
.persona-header.child { background: var(--bk); color: var(--wh); }
.persona-header.parent { background: rgba(68,214,44,.1); }

.persona-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--g);
  color: var(--bk);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.persona-avatar.green { background: var(--g); color: var(--bk); }
.persona-header.child .persona-avatar { background: rgba(68,214,44,.2); color: var(--g); }

.persona-type {
  display: inline-block;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--g);
  color: var(--bk);
  padding: 2px 8px;
  margin-bottom: 5px;
}
.persona-header.parent .persona-type { background: var(--bk); color: var(--g); }

.persona-basic h3 {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.persona-header.child h3 { color: var(--wh); }
.persona-header.parent h3 { color: var(--bk); }

.persona-age {
  font-size: 18px;
  opacity: .6;
}
.persona-basic p {
  font-size: 12px;
  line-height: 1.6;
  opacity: .7;
  margin-bottom: 8px;
}
.persona-quote {
  font-size: 12px;
  font-style: italic;
  line-height: 1.6;
  border-left: 3px solid var(--g);
  padding-left: 10px;
  margin: 0;
}
.persona-header.child .persona-quote { color: rgba(255,255,255,.8); }
.persona-header.parent .persona-quote { color: var(--gray4); }

/* behaviors */
.persona-behaviors { padding: 18px; border-bottom: 1px solid var(--gray2); }
.pb-title {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 14px;
}
.pb-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 14px; }
.pb-item { }
.pb-label {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
  display: block;
  margin-bottom: 4px;
}
.pb-bar-wrap {
  height: 6px;
  background: var(--gray2);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 3px;
}
.pb-bar {
  height: 100%;
  background: var(--bk);
  border-radius: 3px;
}
.pb-bar.green-bar { background: var(--g); }
.pb-note { font-size: 11px; color: var(--gray3); }
.pb-hashtags { display: flex; flex-wrap: wrap; gap: 6px; }
.pb-hashtags span {
  background: var(--gray);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 11px;
  padding: 3px 10px;
  color: var(--gray4);
}

/* NPG */
.persona-npg {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.npg-col { }
.npg-col h5 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.npg-col.needs h5 { color: var(--g); }
.npg-col.pain  h5 { color: #d63c3c; }
.npg-col.goal  h5 { color: #3c7dd6; }
.npg-col ul { padding-left: 0; list-style: none; }
.npg-col ul li {
  font-size: 12px;
  color: var(--gray4);
  line-height: 1.7;
  padding-left: 12px;
  position: relative;
}
.npg-col ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gray3);
}

/* ── FUNC CONCEPT ── */
.func-big-quote {
  background: var(--bk);
  color: var(--wh);
  padding: 24px 20px;
  border-radius: 4px;
  margin-bottom: 28px;
  text-align: center;
}
.func-big-quote p {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: rgba(255,255,255,.85);
}
.func-effects { background: var(--wh); padding: 20px; border-radius: 4px; }
.fe-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fe-item { text-align: center; padding: 10px 6px; }
.fe-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bk);
  color: var(--wh);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  margin: 0 auto 10px;
}
.fe-icon.green { background: var(--g); color: var(--bk); }
.fe-item h5 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.fe-item p { font-size: 12px; color: var(--gray4); line-height: 1.5; }

/* ── AESTHETIC FORM ANALYSIS ── */
.aes-form-grid { display: flex; flex-direction: column; gap: 16px; }
.aes-form-card {
  background: var(--wh);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--gray2);
}
.afc-badge {
  display: inline-block;
  background: var(--bk);
  color: var(--wh);
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  margin: 12px 0 0 12px;
}
.afc-insights { padding: 12px 14px 16px; }
.afc-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray2);
}
.afc-row:last-child { border-bottom: none; }
.afc-feature {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--bk);
}
.afc-arrow {
  color: var(--g);
  font-weight: 900;
  font-size: 16px;
}
.afc-apply {
  font-size: 12px;
  color: var(--gray4);
  line-height: 1.5;
  padding-left: 8px;
  border-left: 2px solid var(--g);
}

/* OTHER PRODUCTS */
.other-products { background: var(--wh); padding: 20px; border-radius: 4px; }
.op-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.op-item {
  padding: 14px;
  background: var(--gray);
  border-radius: 4px;
  text-align: center;
}
.op-icon { font-size: 24px; margin-bottom: 8px; }
.op-item h5 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.op-item p { font-size: 12px; color: var(--gray4); line-height: 1.5; }

/* SUMMARY REVEAL */
.summary-reveal { background: var(--wh); padding: 24px 18px; border-radius: 4px; text-align: center; }
.sum-headline { margin-bottom: 28px; }
.sum-icon { font-size: 32px; margin-bottom: 12px; }
.sum-headline h3 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 17px;
  text-transform: uppercase;
  line-height: 1.3;
}
.sum-elements {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.sum-el { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.se-circle {
  width: 60px; height: 60px;
  border-radius: 50%;
}
.se-circle.round  { background: #e8d4c2; border: 3px solid #bbb; }
.se-circle.pastel { background: linear-gradient(135deg, #b8deb8, #deb8d4, #b8c8de); }
.se-circle.hole   { background: var(--bk); position: relative; overflow: hidden; }
.se-circle.hole::after {
  content: ''; position: absolute;
  width: 18px; height: 18px;
  background: var(--gray);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.sum-el span {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.sum-plus {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 24px;
  color: var(--g);
}

/* ── COLOR ANALYSIS ── */
.color-tiers { display: flex; flex-direction: column; gap: 3px; margin-bottom: 24px; }
.ct-tier {
  background: var(--wh);
  padding: 18px 16px;
  border-bottom: 1px solid var(--gray2);
}
.ct-tier.kids { background: rgba(68,214,44,.05); border: 2px solid var(--g); border-radius: 4px; }
.ct-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 4px;
}
.ct-product {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
}
.ct-target {
  font-family: var(--font-h);
  font-size: 11px;
  color: var(--gray3);
  background: var(--gray);
  padding: 3px 8px;
}
.target-kids { background: var(--g) !important; color: var(--bk) !important; font-weight: 700; }
.ct-swatches {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}
.swatch {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,.1);
}
.ct-tier p { font-size: 12px; color: var(--gray4); line-height: 1.5; }
.ct-tier p strong { color: var(--bk); }
.ct-apply-badge {
  display: inline-block;
  background: var(--g);
  color: var(--bk);
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-top: 8px;
}
.color-chart-block {
  background: var(--wh);
  padding: 20px;
  border-radius: 4px;
}

/* ── POSITIONING MAP ── */
.pos-map-wrap { margin-bottom: 28px; }
.pos-map {
  position: relative;
  width: 100%;
  padding-top: 100%;
  background: var(--wh);
  border: 1px solid var(--gray2);
  border-radius: 4px;
  overflow: hidden;
}
.pos-axis-y-top,
.pos-axis-y-bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-align: center;
  color: var(--bk);
  line-height: 1.2;
}
.pos-axis-y-top    { top: 6px; }
.pos-axis-y-bottom { bottom: 6px; }
.pos-axis-x-left,
.pos-axis-x-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-align: center;
  color: var(--bk);
  line-height: 1.2;
}
.pos-axis-x-left  { left: 4px; }
.pos-axis-x-right { right: 4px; }
.pos-line-h {
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: rgba(0,0,0,.15);
}
.pos-line-v {
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: rgba(0,0,0,.15);
}
.pos-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.pos-dot.competitor { background: var(--gray3); border: 2px solid var(--gray3); }
.pos-dot.jibi       { background: var(--g); border: 3px solid var(--bk); width: 16px; height: 16px; }
.pd-label {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 10px;
  white-space: nowrap;
  color: var(--gray4);
  text-align: center;
  line-height: 1.2;
}
.jibi-label {
  color: var(--bk) !important;
  font-weight: 900 !important;
  font-size: 11px !important;
  white-space: nowrap;
  top: 18px;
}

.pos-insight { }
.pi-cards { display: flex; flex-direction: column; gap: 14px; }
.pi-card {
  padding: 18px 16px;
  border-radius: 4px;
}
.pi-card.problem { background: #fff5f5; border-left: 4px solid #d63c3c; }
.pi-card.solution { background: rgba(68,214,44,.06); border-left: 4px solid var(--g); }
.pi-card h5 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 6px;
}
.pi-card.problem h5 { color: #d63c3c; }
.pi-card.solution h5 { color: #2a8a1a; }
.pi-card ul { padding-left: 0; list-style: none; }
.pi-card ul li {
  font-size: 12px;
  color: var(--gray4);
  line-height: 1.7;
  padding-left: 12px;
  position: relative;
}
.pi-card ul li::before { content: '·'; position: absolute; left: 0; }
.pi-card ul li strong { color: var(--bk); }

/* ── SIZE ANALYSIS ── */
.growth-data {
  background: var(--wh);
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.gd-flow {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  justify-content: center;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.gd-item { text-align: center; }
.gd-age {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.gd-height {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13px;
  color: var(--g);
  margin-bottom: 6px;
}
.gd-bar {
  width: 40px;
  background: var(--bk);
  border-radius: 2px 2px 0 0;
  margin: 0 auto;
}
.gd-grow {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--g);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 11px;
  padding-bottom: 16px;
}
.gd-note { font-size: 12px; color: var(--gray4); text-align: center; }
.gd-note strong { color: var(--bk); }

.knee-table {
  background: var(--wh);
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.kt-table-wrap { overflow-x: auto; }
.kt-table {
  width: 100%;
  min-width: 300px;
  border-collapse: collapse;
  font-size: 13px;
}
.kt-table th {
  background: var(--bk);
  color: var(--wh);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  padding: 10px;
  letter-spacing: .04em;
  text-align: center;
}
.kt-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--gray2);
  text-align: center;
  color: var(--gray4);
}
.kt-table tr:last-child td { border-bottom: none; }
.highlight-cell {
  color: var(--bk) !important;
  font-family: var(--font-h);
  font-weight: 900 !important;
  font-size: 15px !important;
}

.similar-products {
  background: var(--wh);
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.sp-grid { display: flex; flex-direction: column; gap: 2px; margin-bottom: 12px; }
.sp-item {
  padding: 14px;
  background: var(--gray);
  border-radius: 2px;
}
.sp-item h5 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sp-dims { display: flex; flex-wrap: wrap; gap: 6px; }
.sp-dims span {
  background: var(--wh);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 11px;
  padding: 3px 8px;
  color: var(--gray4);
  border: 1px solid var(--gray2);
}
.sp-note { font-size: 12px; color: var(--gray4); line-height: 1.6; }

.final-size { margin-top: 0; }
.fs-sub { font-size: 13px; color: var(--gray4); margin-bottom: 20px; line-height: 1.6; }
.fs-cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 8px; }
.fs-card {
  border-radius: 4px;
  overflow: hidden;
}
.fs-card.desk  { border: 3px solid var(--bk); }
.fs-card.chair { border: 3px solid var(--g); }
.fsc-title {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 10px 16px;
}
.fs-card.desk  .fsc-title { background: var(--bk); color: var(--wh); }
.fs-card.chair .fsc-title { background: var(--g); color: var(--bk); }
.fsc-dims { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.fsc-dim {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fsc-dim.main .fsc-value { font-size: 22px; }
.fsc-label {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray3);
  min-width: 32px;
}
.fsc-value {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 17px;
  color: var(--bk);
}
.fsc-note {
  font-size: 11px;
  color: var(--gray3);
  padding: 8px 16px;
  background: var(--gray);
  border-top: 1px solid var(--gray2);
}

/* ── FINAL CONCEPT ── */
.final-big { margin-bottom: 32px; }
.final-hero-ph { min-height: 240px; border-radius: 4px; }

.concept-points { display: flex; flex-direction: column; gap: 2px; margin-bottom: 32px; }
.cp-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 16px;
  background: var(--wh);
  border-bottom: 1px solid var(--gray2);
}
.cp-item:nth-child(even) { background: rgba(68,214,44,.04); }
.cp-num {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 32px;
  color: var(--g);
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
}
.cp-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bk);
  color: var(--wh);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.cp-icon.green { background: var(--g); color: var(--bk); }
.cp-item h4 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 6px;
}
.cp-item p { font-size: 12px; color: var(--gray4); line-height: 1.7; }
.cp-item p strong { color: var(--bk); }

/* ── REFERENCES ── */
.ref-list { display: flex; flex-direction: column; gap: 3px; }
.ref-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--wh);
  padding: 14px 16px;
  border-radius: 2px;
}
.ref-num {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 16px;
  color: var(--g);
  flex-shrink: 0;
  min-width: 28px;
}
.ref-item p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--gray4);
}
.ref-item em { color: var(--gray3); word-break: break-all; }

/* ── END SCHOOL ── */
.p-end-school {
  font-family: var(--font-h);
  font-size: 11px;
  letter-spacing: .1em;
  opacity: .5;
  text-transform: uppercase;
}

/* ── END SECTION ── */
.p-end {
  background: var(--g);
  padding: 72px var(--pad) 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.p-end h2 {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 56px;
  line-height: .88;
  text-transform: uppercase;
}
.p-end > p {
  font-size: 14px;
  color: rgba(0,0,0,.65);
}
.p-end .m-btn-main {
  width: auto;
  padding: 14px 28px;
}
