/* For-you quiz */
.quiz-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 140px 28px 80px; }
.quiz { max-width: 640px; width: 100%; }
.quiz-progress { display: flex; gap: 6px; margin-bottom: 56px; }
.quiz-progress span { flex: 1; height: 2px; background: var(--line-1); border-radius: 2px; transition: background 240ms ease; }
.quiz-progress span.on { background: #4DA3FF; }

.quiz .step-num { color: var(--ink-3); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; font-weight: 600; }
.quiz h1 { font-size: clamp(1.75rem, 3.4vw, 2.4rem); font-weight: 500; letter-spacing: -0.02em; line-height: 1.25; margin: 0 0 12px; text-wrap: balance; color: var(--ink-1); }
.quiz .lede { color: var(--ink-2); font-size: 16px; line-height: 1.55; margin: 0 0 40px; max-width: 520px; text-wrap: pretty; }

.opts { display: flex; flex-direction: column; gap: 10px; }
.opt { padding: 18px 22px; border: 1px solid var(--line-1); border-radius: 14px; cursor: pointer; transition: border-color 200ms ease, background 200ms ease, transform 200ms ease; font-size: 16px; color: var(--ink-1); }
.opt:hover { border-color: var(--line-3); background: rgba(255,255,255,0.02); transform: translateY(-1px); }
.opt.sel { border-color: #4DA3FF; background: rgba(77,163,255,0.06); color: var(--ink-1); }

.quiz-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 48px; gap: 20px; }
.quiz-foot .small { color: var(--ink-3); font-size: 12px; max-width: 360px; }
.next { padding: 0 22px; height: 44px; border-radius: 999px; border: 1px solid var(--line-2); background: transparent; color: var(--ink-1); font: inherit; font-weight: 500; font-size: 14px; cursor: pointer; transition: border-color 200ms ease, background 200ms ease; }
.next:not(:disabled):hover { border-color: var(--line-3); background: rgba(255,255,255,0.02); }
.next:disabled { opacity: 0.4; cursor: not-allowed; }

.quiz-result { max-width: 640px; width: 100%; text-align: center; }
.quiz-result-h { font-size: clamp(1.875rem, 4vw, 2.6rem); font-weight: 500; letter-spacing: -0.025em; line-height: 1.15; color: var(--ink-1); margin: 16px 0 36px; text-wrap: balance; }
.quiz-result-h em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--ink-2); }
.quiz-result-card { display: flex; gap: 0; align-items: stretch; max-width: 540px; margin: 0 auto; border: 1px solid var(--line-1); border-radius: 16px; overflow: hidden; text-decoration: none; color: inherit; transition: border-color 240ms ease, transform 240ms ease; text-align: left; }
.quiz-result-card:hover { opacity: 1; border-color: var(--line-3); transform: translateY(-2px); }
.qrc-art { width: 160px; flex-shrink: 0; background-size: cover; background-position: center; min-height: 160px; }
.qrc-body { padding: 24px 28px; flex: 1; }
.qrc-eye { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: #4DA3FF; font-weight: 600; margin-bottom: 8px; }
.qrc-body h3 { margin: 0 0 8px; font-size: 1.4rem; font-weight: 500; letter-spacing: -0.015em; color: var(--ink-1); }
.qrc-body p { margin: 0; color: var(--ink-2); font-size: 0.95rem; line-height: 1.55; }
.quiz-result-sub { color: var(--ink-3); font-size: 14px; margin: 28px 0; }

@media (max-width: 600px) {
  .quiz-result-card { flex-direction: column; }
  .qrc-art { width: 100%; aspect-ratio: 16 / 10; min-height: 0; }
  .quiz-foot { flex-direction: column; align-items: flex-start; gap: 16px; }
  .next { width: 100%; }
}
