:root {
  --paper: #f8f6f1;
  --paper-deep: #efebe3;
  --ink: #171512;
  --muted: #5e584f;
  --line: rgba(23, 21, 18, 0.14);
  --blue: #9ed0ff;
  --yellow: #f4dc59;
  --sage: #b5e0c7;
  --rose: #f0b7a8;
  --green: #006b49;
  --serif: "Noto Serif KR", Georgia, serif;
  --sans: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Noto Sans KR", sans-serif;
  --shadow: 0 24px 80px rgba(28, 24, 18, 0.1);
  --soft-shadow: 0 14px 44px rgba(28, 24, 18, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font: 18px/1.72 var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.hero-cinema-active { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }

.skip-link {
  position: fixed; left: 16px; top: 12px; z-index: 200;
  padding: 10px 16px; border-radius: 8px; background: #fff; color: #111;
  transform: translateY(-150%); transition: transform .2s;
}
.skip-link:focus { transform: none; }

.topbar {
  position: fixed; inset: 0 0 auto; z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px; color: #fff; mix-blend-mode: difference;
  pointer-events: none;
}
.topbar .brand { pointer-events: auto; font-weight: 850; text-decoration: none; letter-spacing: .01em; }
.topbar .co { font-size: 12px; font-weight: 700; letter-spacing: .15em; opacity: .72; }

.container { width: min(760px, calc(100% - 48px)); margin: 0 auto; }
.container.wide { width: min(1120px, calc(100% - 48px)); }
.section { padding: clamp(96px, 12vw, 170px) 0; }
.section-head { max-width: 800px; margin-bottom: 54px; }
.eyebrow { color: var(--green); font-size: 13px; font-weight: 800; letter-spacing: .14em; margin-bottom: 14px; }
h2 { font: 700 clamp(34px, 5.3vw, 62px)/1.35 var(--serif); letter-spacing: -.025em; word-break: keep-all; }
.lead { margin-top: 22px; max-width: 760px; color: var(--muted); font-size: clamp(18px, 2.1vw, 22px); word-break: keep-all; }
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.65,.25,1); }
.reveal.on { opacity: 1; transform: none; }

.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 58px; padding: 15px 28px; border: 0; border-radius: 999px;
  background: var(--green); color: #fff; text-decoration: none;
  font-weight: 800; cursor: pointer; box-shadow: var(--soft-shadow);
  transition: transform .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); background: #005c3f; }
.button-light { background: var(--paper); color: var(--ink); }
.button-light:hover { background: #fff; }
.text-link { display: inline-block; margin-top: 18px; color: var(--green); font-weight: 800; text-underline-offset: 4px; }

/* 01 · 숫자 시네마 */
#hero {
  --hero-accent: var(--blue);
  position: relative; isolation: isolate; height: 100vh; height: 100svh; min-height: 620px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  background: #0e1115; color: var(--paper);
}
#hero.is-running { cursor: pointer; touch-action: none; }
#hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 78%, transparent);
}
.blob { position: absolute; z-index: -2; border-radius: 50%; filter: blur(110px); opacity: .16; animation: drift 26s ease-in-out infinite alternate; }
.blob.b1 { width: 55vw; height: 55vw; background: #227acb; top: -18vw; right: -12vw; }
.blob.b2 { width: 45vw; height: 45vw; background: #00a56c; bottom: -16vw; left: -10vw; animation-delay: -8s; }
.blob.b3 { width: 30vw; height: 30vw; background: #d9af58; top: 40%; left: 55%; animation-delay: -16s; }
@keyframes drift { to { transform: translate(-6vw, 4vw) scale(1.15); } }
.hero-stage { position: absolute; inset: 0; }
.hero-beat {
  --number-color: var(--hero-accent);
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 100px max(24px, 7vw) 116px; text-align: center;
  opacity: 0; visibility: hidden; transform: translateY(20px) scale(.985); pointer-events: none;
  transition: opacity .55s ease, transform .65s cubic-bezier(.2,.7,.2,1), visibility .55s;
}
.hero-beat.is-active { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.hero-number {
  color: var(--number-color); font-size: clamp(116px, 29vw, 330px); font-weight: 850;
  line-height: .82; letter-spacing: -.075em; font-variant-numeric: tabular-nums;
  text-shadow: 0 0 70px color-mix(in srgb, var(--number-color) 18%, transparent);
}
.hero-beat:nth-child(2) { --number-color: var(--yellow); }
.hero-beat:nth-child(3) { --number-color: var(--sage); }
.hero-beat:nth-child(4) { --number-color: var(--rose); }
.hero-beat:nth-child(3) .hero-number, .hero-beat:nth-child(4) .hero-number { font-size: clamp(96px, 23vw, 260px); }
.hero-copy { max-width: 780px; margin-top: clamp(34px, 5vh, 58px); font: 600 clamp(22px, 3.2vw, 37px)/1.45 var(--serif); word-break: keep-all; }
.hero-source { margin-top: 22px; color: rgba(249,247,243,.52); font-size: clamp(12px, 1.45vw, 14px); line-height: 1.5; }
.hero-source a { color: inherit; text-underline-offset: 3px; }
.hero-conclusion { max-width: 980px; }
.hero-kicker { margin-bottom: 28px; color: var(--blue); font-size: 13px; font-weight: 800; letter-spacing: .18em; }
.hero-conclusion-main { font: 700 clamp(31px, 5vw, 58px)/1.42 var(--serif); letter-spacing: -.025em; word-break: keep-all; }
.hero-conclusion-sub { max-width: 800px; margin: 24px auto 0; color: rgba(249,247,243,.76); font-size: clamp(17px, 2.2vw, 22px); word-break: keep-all; }
.hero-conclusion-close { margin-top: 10px; color: var(--paper); font-size: clamp(18px, 2.35vw, 24px); font-weight: 800; word-break: keep-all; }
.hero-conclusion .button { margin-top: 38px; box-shadow: 0 18px 48px rgba(0,0,0,.28); }
.hero-start-button { gap: 10px; }
.button-hand { display: inline-block; font-size: 24px; line-height: 1; transform: translateY(-1px); }
.hero-button-note { margin-top: 14px; color: rgba(249,247,243,.68); font-size: 14px; line-height: 1.55; word-break: keep-all; }
.hero-reduced-facts { display: none; }
.hero-progress { position: absolute; left: 50%; bottom: 44px; z-index: 4; display: grid; grid-template-columns: repeat(5, minmax(28px, 64px)); gap: 8px; width: min(360px, calc(100% - 48px)); transform: translateX(-50%); }
.hero-progress span { height: 2px; overflow: hidden; background: rgba(255,255,255,.18); }
.hero-progress span::after { content: ""; display: block; width: 100%; height: 100%; background: var(--paper); transform: scaleX(0); transform-origin: left; transition: transform .45s ease; }
.hero-progress span.is-past::after, .hero-progress span.is-active::after { transform: scaleX(1); }
#hero.is-complete .hero-progress { bottom: 16px; }
.hero-hint { position: absolute; right: max(24px, 3vw); bottom: 38px; z-index: 4; color: rgba(249,247,243,.52); font-size: 12px; transition: opacity .35s; }
#hero.is-complete .hero-hint { opacity: 0; }

/* 02 · 버튼 뒤 안내 시네마 */
.guided-scene { position: relative; min-height: 100vh; min-height: 100svh; background: #e8e2d7; overflow: hidden; }
.guide-stage { position: relative; min-height: 100vh; min-height: 100svh; }
.guide-beat { min-height: 100vh; min-height: 100svh; display: grid; align-content: center; max-width: 980px; margin: 0 auto; padding: 110px 36px; }
.guide-beat + .guide-beat { border-top: 1px solid var(--line); }
.guided-scene.is-enhanced .guide-beat { position: absolute; inset: 0; opacity: 0; visibility: hidden; transform: translateY(24px); transition: opacity .55s ease, transform .65s ease, visibility .55s; }
.guided-scene.is-enhanced .guide-beat.is-active { opacity: 1; visibility: visible; transform: none; }
.guide-count { color: #004e36; font-size: 14px; font-weight: 850; letter-spacing: .16em; }
.guide-beat h2 { margin-top: 24px; max-width: 940px; font-size: clamp(36px, 5.7vw, 66px); }
.guide-beat h2 strong { color: var(--green); }
.guide-copy { margin-top: 26px; max-width: 720px; color: var(--muted); font-size: clamp(18px, 2.1vw, 23px); word-break: keep-all; }
.guide-instruction { width: fit-content; margin-top: 38px; padding: 11px 17px; border: 1px solid rgba(0,78,54,.2); border-radius: 999px; background: rgba(255,255,255,.5); color: #004e36; font-size: clamp(14px, 1.5vw, 17px); font-weight: 800; line-height: 1.45; word-break: keep-all; }
.guide-instruction-scroll { display: flex; align-items: center; gap: 10px; padding-right: 20px; }
.guide-instruction-scroll span { font-size: 25px; line-height: 1; animation: scroll-cue 1.2s ease-in-out infinite; }
@keyframes scroll-cue { 50% { transform: translateY(5px); } }
.guide-progress { position: absolute; left: 50%; bottom: 44px; z-index: 3; display: grid; grid-template-columns: repeat(3, minmax(50px, 90px)); gap: 8px; transform: translateX(-50%); }
.guide-progress span { height: 3px; background: rgba(23,21,18,.15); }
.guide-progress span.is-active, .guide-progress span.is-past { background: var(--green); }

/* 03 · 실제 고객 이야기 */
.people-section { background: var(--paper); }
.people-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; align-items: start; }
.person-card { min-height: 230px; display: flex; flex-direction: column; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--soft-shadow); }
.person-card-featured { grid-column: 1 / -1; min-height: 0; display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr); padding: 0; overflow: hidden; color: var(--ink); text-decoration: none; transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; }
.person-card-featured:hover, .person-card-featured:focus-visible { transform: translateY(-5px); border-color: rgba(12,107,75,.48); box-shadow: var(--shadow); }
.person-card-featured:focus-visible { outline: 3px solid rgba(12,107,75,.22); outline-offset: 4px; }
.person-card-image { min-height: 380px; overflow: hidden; background: #e8e5de; }
.person-card-image img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .4s ease; }
.person-card-featured:hover .person-card-image img { transform: scale(1.025); }
.person-card-copy { display: flex; min-width: 0; flex-direction: column; padding: 34px 36px; }
.person-kicker { margin-top: 18px; color: var(--muted); font-size: 14px; font-weight: 750; line-height: 1.55; word-break: keep-all; }
.person-title { margin-top: 12px; font: 700 clamp(24px, 2.5vw, 32px)/1.42 var(--serif); word-break: keep-all; }
.person-description { margin-top: 20px; color: var(--muted); font-size: 15px; line-height: 1.7; word-break: keep-all; }
.person-card-link { margin-top: auto; padding-top: 28px; color: var(--green); font-size: 14px; font-weight: 850; }
.person-meta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; }
.person-meta span { color: var(--green); font-size: 14px; font-weight: 850; }
.person-card h3 { margin-top: 26px; font: 700 clamp(22px, 2.2vw, 28px)/1.4 var(--serif); word-break: keep-all; }
.person-card p { margin-top: auto; padding-top: 18px; color: var(--muted); font-size: 15px; line-height: 1.65; word-break: keep-all; }

/* 03 · 결과 */
.section-ink { background: #111316; color: var(--paper); }
.section-ink .eyebrow { color: var(--blue); }
.section-ink .lead, .section-ink .video-copy p, .section-ink .channel-card p { color: rgba(248,246,241,.66); }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-bottom: 64px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.16); }
.metric { min-height: 180px; display: flex; flex-direction: column; justify-content: center; padding: 28px 32px; background: #111316; }
.metric strong { color: var(--yellow); font-size: clamp(42px, 6vw, 72px); line-height: 1; letter-spacing: -.05em; }
.metric span { margin-top: 15px; color: rgba(248,246,241,.62); font-size: 15px; }
.featured-video { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(280px, .75fr); gap: 42px; align-items: center; padding: 24px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); background: rgba(255,255,255,.035); }
.video-frame { position: relative; aspect-ratio: 16/9; overflow: hidden; border-radius: 14px; background: #000; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.card-label { color: var(--green); font-size: 12px; font-weight: 850; letter-spacing: .14em; }
.section-ink .card-label { color: var(--blue); }
.video-copy h3, .proof-copy h3 { margin-top: 10px; font: 700 clamp(25px, 3vw, 36px)/1.38 var(--serif); word-break: keep-all; }
.video-copy p:not(.card-label), .proof-copy p:not(.card-label) { margin-top: 16px; word-break: keep-all; }
.section-ink .text-link { color: var(--blue); }
.channel-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 26px; border: 1px solid rgba(255,255,255,.16); }
.channel-card { min-height: 290px; display: flex; flex-direction: column; padding: 28px; text-decoration: none; border-right: 1px solid rgba(255,255,255,.16); transition: background .2s, transform .2s; }
.channel-card:last-child { border-right: 0; }
.channel-card:hover { background: rgba(255,255,255,.07); transform: translateY(-4px); }
.channel-no { color: #a9adb2; font-size: 12px; font-weight: 800; }
.channel-card h3 { margin-top: 54px; font-size: 20px; line-height: 1.35; word-break: keep-all; }
.channel-card p { margin-top: 14px; font-size: 15px; line-height: 1.65; word-break: keep-all; }
.card-arrow { margin-top: auto; padding-top: 24px; color: var(--blue); font-size: 14px; font-weight: 800; }

/* 04 · 함께할 수 있는 일 */
.work-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.work-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; color: var(--ink); text-decoration: none; box-shadow: var(--soft-shadow); transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; }
.work-card:hover, .work-card:focus-visible { transform: translateY(-5px); border-color: rgba(12,107,75,.48); box-shadow: var(--shadow); }
.work-card:focus-visible { outline: 3px solid rgba(12,107,75,.22); outline-offset: 4px; }
.work-card-media { position: relative; display: block; aspect-ratio: 16/10; overflow: hidden; background: #e8e5de; }
.work-card-media::after { content: ""; position: absolute; inset: auto 0 0; height: 34%; background: linear-gradient(transparent, rgba(0,0,0,.18)); pointer-events: none; }
.work-card-media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .4s ease; }
.work-card:hover .work-card-media img { transform: scale(1.035); }
.work-card-copy { display: flex; min-height: 180px; flex-direction: column; padding: 24px; }
.work-card-copy small { color: var(--muted); font-size: 14px; }
.work-card-copy strong { margin-top: 7px; font-size: clamp(19px, 2vw, 23px); line-height: 1.45; word-break: keep-all; }
.work-card-copy b { margin-top: auto; padding-top: 24px; color: var(--green); font-size: 14px; }

/* 05 · 독학 */
.section-sage { background: #dfe7dd; }
.learning-steps { list-style: none; border-top: 1px solid rgba(23,21,18,.22); }
.learning-steps li { display: grid; grid-template-columns: 80px 1fr; gap: 20px; padding: 30px 0; border-bottom: 1px solid rgba(23,21,18,.22); }
.learning-steps li > span { color: var(--green); font-size: 13px; font-weight: 850; letter-spacing: .1em; }
.learning-steps strong { font-size: 22px; }
.learning-steps p { margin-top: 6px; color: var(--muted); word-break: keep-all; }
.learning-close { margin-top: 34px; font: 600 24px/1.7 var(--serif); word-break: keep-all; }

/* 06 · 재출발 */
.restart { background: #181713; color: var(--paper); }
.restart .eyebrow { color: var(--rose); }
.restart-title { max-width: 850px; color: var(--yellow); font-size: clamp(50px, 9vw, 108px); line-height: 1.18; }
.restart-copy { margin-top: 58px; display: grid; gap: 22px; color: rgba(248,246,241,.72); font-size: clamp(19px, 2.2vw, 23px); }
.restart-copy p { word-break: keep-all; }
.restart-quote { margin-top: 70px; padding-top: 38px; border-top: 1px solid rgba(255,255,255,.2); font: 500 clamp(25px, 3.6vw, 38px)/1.75 var(--serif); word-break: keep-all; }
.restart-quote strong { color: #fff; }

/* 07 · 이야기 */
/* 여기서 하는 일 — 햄PD 문장 (2026-08-11). 카드 없이 띠로만 둔다 */
.choice-quote { width: min(100%, 860px); margin-inline: auto; text-align: center; font: 500 clamp(22px, 3.4vw, 40px)/1.7 var(--serif); word-break: keep-all; overflow-wrap: break-word; }
.choice-quote strong { display: inline-block; margin-top: .5em; }

.section-paper { background: var(--paper-deep); }
.section-paper > .container { width: min(calc(100% - 48px), 980px); }
.section-paper .section-head, .section-paper .story-intro, .section-paper .story-form { width: min(100%, 760px); margin-inline: auto; }
.witness-line { margin-top: 30px; font: 500 clamp(22px, 3.5vw, 32px)/1.8 var(--serif); }
.witness-line strong { color: var(--green); }
.vows { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 70px; }
.vows div { min-height: 190px; padding: 26px; border-radius: var(--radius-sm); background: #fff; box-shadow: var(--soft-shadow); }
.vows strong, .vows span { display: block; word-break: keep-all; }
.vows strong { min-height: 3.2em; font-size: 18px; line-height: 1.6; }
.vows span { margin-top: 10px; color: var(--muted); font-size: 15px; }
.story-intro { margin-bottom: 28px; padding: 40px; border-radius: var(--radius); background: #fff; }
.story-intro blockquote { font: 600 clamp(22px, 3.3vw, 29px)/1.85 var(--serif); word-break: keep-all; }
.story-intro p { margin-top: 20px; color: var(--muted); }
.story-form { padding: clamp(28px, 5vw, 50px); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.story-form > label:not(.consent) { display: block; margin: 26px 0 8px; font-weight: 800; }
.story-form > label:first-child { margin-top: 0; }
.hint { margin-left: 6px; color: var(--muted); font-size: 14px; font-weight: 500; }
.story-form input[type="text"], .story-form textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); color: var(--ink); font-size: 17px; }
.story-form textarea { min-height: 220px; resize: vertical; }
.privacy { margin-top: 20px; color: var(--muted); font-size: 14px; word-break: keep-all; }
.privacy-box { margin-top: 16px; padding: 14px 17px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); color: var(--muted); font-size: 14px; }
.privacy-box summary { cursor: pointer; color: var(--ink); font-weight: 750; }
.privacy-box ul { margin: 12px 0 0 20px; }
.consent { display: flex; gap: 10px; align-items: flex-start; margin-top: 18px; cursor: pointer; font-weight: 700; }
.consent input { width: 19px; height: 19px; margin-top: 5px; flex: none; }
.story-form .button { margin-top: 26px; }
.form-msg { display: none; margin-top: 18px; font-weight: 800; }
.form-msg.ok { display: block; color: var(--green); }.form-msg.err { display: block; color: #b42318; }
.mini-cta { position: fixed; right: 22px; bottom: 22px; z-index: 70; padding: 13px 21px; border-radius: 999px; background: var(--green); color: #fff; font-size: 14px; font-weight: 800; text-decoration: none; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity .35s, transform .35s; }
.mini-cta.show { opacity: 1; pointer-events: auto; transform: none; }

/* 08 · 도움 */
.help { background: #e8e2d7; padding-bottom: 52px; }
.help > .container { width: min(calc(100% - 48px), 980px); }
.help-box { padding: clamp(36px, 6vw, 68px); border: 1px solid rgba(23,21,18,.2); border-radius: var(--radius); background: rgba(255,255,255,.58); }
.help-box h2 { max-width: 760px; margin-top: 22px; color: var(--green); font-size: clamp(48px, 7vw, 78px); line-height: 1.22; letter-spacing: -.045em; }
.help-story { margin-top: 46px; }
.help-story > p { color: #4f4b45; font-size: clamp(18px, 2.2vw, 21px); line-height: 1.85; word-break: keep-all; }
.help-story > p + p { margin-top: 20px; }
.help-opening { font: 600 clamp(22px, 3vw, 29px)/1.75 var(--serif); color: var(--ink) !important; }
.small-actions { display: flex; flex-wrap: wrap; gap: 9px; margin: 20px 0 24px; padding: 0; list-style: none; }
.small-actions li { padding: 11px 15px; border: 1px solid rgba(12,107,75,.26); border-radius: 999px; background: #fff; color: var(--green); font-size: 15px; font-weight: 800; }
.help-alone { color: var(--ink) !important; font-weight: 750; }
.help-cheer { margin-top: 38px !important; padding-top: 32px; border-top: 1px solid rgba(23,21,18,.16); color: var(--green) !important; font: 700 clamp(31px, 4.8vw, 48px)/1.45 var(--serif) !important; }
.care-note { margin-top: 42px; padding: 22px 24px; border-radius: 14px; background: rgba(23,21,18,.055); color: var(--muted); font-size: 15px; line-height: 1.75; word-break: keep-all; }
.care-note strong { color: var(--ink); }
.help-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 32px; }
.help-links a { padding: 22px; border: 1px solid var(--line); border-radius: 14px; background: #fff; text-decoration: none; }
.help-links strong, .help-links span { display: block; }
.help-links strong { color: var(--green); font-size: 22px; }
.help-links span { margin-top: 5px; color: var(--muted); font-size: 13px; }
.help-source { margin-top: 24px; color: var(--muted); font-size: 13px; }
.help-source a { text-underline-offset: 3px; }
footer { display: grid; gap: 4px; margin-top: 70px; padding-top: 28px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
footer a { text-underline-offset: 3px; }

@media (max-width: 900px) {
  .people-grid { grid-template-columns: repeat(2, 1fr); }
  .person-card { grid-column: auto; }
  .person-card-featured { grid-column: 1 / -1; grid-template-columns: 1fr; }
  .person-card-image { min-height: 0; aspect-ratio: 16 / 9; }
  .featured-video { grid-template-columns: 1fr; }
  .channel-grid { grid-template-columns: repeat(2, 1fr); }
  .channel-card:nth-child(2) { border-right: 0; }
  .channel-card:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.16); }
  .work-card-grid { grid-template-columns: repeat(2, 1fr); }
  .vows { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  body { font-size: 17px; }
  .topbar { padding: 16px 19px; }
  .container, .container.wide { width: min(100% - 32px, 760px); }
  .section { padding: 88px 0; }
  .hero-beat { padding: 88px 20px 100px; }
  .hero-number { font-size: clamp(104px, 36vw, 170px); }
  .hero-beat:nth-child(3) .hero-number, .hero-beat:nth-child(4) .hero-number { font-size: clamp(87px, 25vw, 118px); }
  .hero-copy { margin-top: 34px; font-size: clamp(21px, 6.1vw, 27px); }
  .hero-source { max-width: 310px; margin-top: 18px; }
  .hero-conclusion-main { font-size: clamp(28px, 8.1vw, 40px); }
  .hero-conclusion-sub { margin-top: 18px; font-size: 16px; }
  .hero-conclusion-close { font-size: 17px; }
  .hero-conclusion .button { width: 100%; max-width: 330px; margin-top: 28px; font-size: 16px; }
  .button-hand { font-size: 22px; }
  .hero-button-note { font-size: 13px; }
  .hero-hint { left: 50%; right: auto; bottom: 62px; transform: translateX(-50%); white-space: nowrap; }
  .hero-progress { bottom: 32px; }
  .guide-beat { padding: 96px 24px; }
  .guide-beat h2 { font-size: clamp(32px, 9.5vw, 46px); }
  .guide-instruction { max-width: 100%; margin-top: 30px; font-size: 14px; }
  .guide-progress { bottom: 52px; }
  .people-grid { grid-template-columns: 1fr; }
  .person-card { grid-column: auto; min-height: 0; }
  .person-card-featured { grid-column: auto; min-height: 0; }
  .person-card-copy { padding: 26px 22px 28px; }
  .person-kicker { margin-top: 26px; }
  .person-title { font-size: clamp(24px, 7vw, 31px); }
  .person-card-link { margin-top: 28px; padding-top: 0; }
  .person-card h3 { margin-top: 38px; }
  .metric-row { grid-template-columns: 1fr; }
  .metric { min-height: 130px; }
  .featured-video { padding: 12px; gap: 20px; }
  .video-copy { padding: 8px 10px 18px; }
  .channel-grid { grid-template-columns: 1fr; }
  .channel-card { min-height: 220px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .channel-card:last-child { border-bottom: 0; }
  .channel-card h3 { margin-top: 34px; }
  .work-card-grid { grid-template-columns: 1fr; }
  .work-card-copy { min-height: 154px; padding: 22px; }
  .learning-steps li { grid-template-columns: 48px 1fr; }
  .restart-title { font-size: clamp(48px, 17vw, 76px); }
  .section-paper > .container { width: min(calc(100% - 32px), 760px); }
  .story-intro { padding: 30px 24px; }
  .story-form { padding: 30px 22px; }
  .help > .container { width: min(calc(100% - 32px), 760px); }
  .help-box { padding: 34px 24px; }
  .help-box h2 { font-size: clamp(44px, 13vw, 64px); }
  .help-title-break { display: none; }
  .help-story { margin-top: 34px; }
  .help-cheer { font-size: clamp(30px, 9vw, 42px) !important; }
  .help-links { grid-template-columns: 1fr; }
  .mini-cta { right: 14px; bottom: 14px; }
}

@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; }
  .hero-beat { display: none; }
  .hero-beat:last-child { display: flex; opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
  .hero-reduced-facts { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 16px; margin-bottom: 24px; color: rgba(249,247,243,.65); font-size: 13px; }
  .hero-progress, .hero-hint, .guide-progress { display: none; }
  .guide-instruction-auto { display: none; }
  .guide-instruction-scroll span { animation: none; }
  .guided-scene.is-enhanced .guide-stage { min-height: auto; }
  .guided-scene.is-enhanced .guide-beat { position: relative; opacity: 1; visibility: visible; transform: none; }
}

/* 4박자: 전문가의 말 (2026-08-10 앞판 교체) */
.hero-quote {
  font: 700 clamp(30px, 5.6vw, 62px)/1.5 var(--serif);
  word-break: keep-all;
  max-width: 900px;
  text-shadow: 0 0 60px rgba(244, 220, 89, .12);
}

/* 문패 명찰 — 네 사람이 또렷이 보이게 (2026-08-10 햄PD 지적) */
.hero-kicker-chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  letter-spacing: 0; font-size: unset;
}
.hero-kicker-chips span {
  display: inline-block;
  font-size: clamp(16px, 2.2vw, 21px);
  font-weight: 800;
  color: var(--yellow, #F4DC59);
  border: 1.5px solid color-mix(in srgb, var(--yellow, #F4DC59) 65%, transparent);
  background: color-mix(in srgb, var(--yellow, #F4DC59) 10%, transparent);
  border-radius: 999px;
  padding: 9px 20px;
  word-break: keep-all;
}
