:root {
  color-scheme: light;
  --bg: #fbf8f2;
  --paper: #fffdf8;
  --ink: #1f2523;
  --muted: #65706b;
  --line: #ded8cc;
  --green: #2f6f5e;
  --green-dark: #234f45;
  --red: #b9543f;
  --blue: #426a8c;
  --yellow: #f0c761;
  --shadow: 0 18px 50px rgba(39, 44, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Pretendard,
    "Noto Sans KR",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 0 5vw;
  background: rgba(251, 248, 242, 0.9);
  border-bottom: 1px solid rgba(222, 216, 204, 0.8);
  backdrop-filter: blur(16px);
}

.brand,
.top-nav,
.site-footer nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
}

.top-nav {
  gap: 18px;
  color: var(--muted);
  font-size: 15px;
}

.top-nav a:hover,
.site-footer a:hover {
  color: var(--green-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 44px;
  align-items: center;
  padding: 64px 5vw 44px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow,
.section-kicker,
.tag {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(38px, 5.2vw, 66px);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.28;
}

.hero-text,
.section-heading p,
.guide-card p,
.site-footer p,
.feature-list span,
.ad-slot p {
  color: var(--muted);
}

.hero-text {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-action,
.secondary-action,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 800;
}

.primary-action {
  padding: 0 20px;
  color: #fff;
  background: var(--green);
}

.secondary-action {
  padding: 0 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
}

.hero-media {
  position: relative;
  margin: 0;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #eee6d7;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.ad-slot {
  display: grid;
  place-items: center;
  max-width: 1120px;
  min-height: 112px;
  margin: 0 auto;
  padding: 18px;
  text-align: center;
  border: 1px dashed #bfb6a8;
  background: rgba(255, 253, 248, 0.7);
}

.ad-slot span {
  color: var(--blue);
  font-weight: 800;
}

.ad-slot p {
  margin: 4px 0 0;
  font-size: 14px;
}

.section {
  padding: 76px 5vw;
}

.intro-grid,
.feature-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
  gap: 42px;
  align-items: start;
}

.path-grid,
.guide-grid {
  display: grid;
  gap: 16px;
}

.path-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.path-card,
.guide-card,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.path-card {
  min-height: 132px;
  padding: 20px;
}

.path-card strong,
.path-card span,
.feature-list strong,
.feature-list span {
  display: block;
}

.path-card strong {
  margin-bottom: 8px;
  font-size: 18px;
}

.path-card span {
  color: var(--muted);
  font-size: 15px;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 28px;
}

.section-heading.compact {
  max-width: 680px;
}

.guide-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guide-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 24px;
}

.tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #f7e4db;
}

.guide-card p {
  flex: 1;
}

.text-button {
  width: fit-content;
  min-height: 40px;
  padding: 0;
  color: var(--green-dark);
  border: 0;
  background: transparent;
  cursor: pointer;
}

.text-button:hover {
  text-decoration: underline;
}

.checklist-section {
  background: #eef3ee;
}

.checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.checklist label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  min-height: 58px;
  padding: 16px;
  border: 1px solid #d6dfd5;
  border-radius: 8px;
  background: #fff;
}

.checklist input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--green);
}

.feature-band {
  background: var(--green-dark);
  color: #fff;
}

.feature-band .section-kicker {
  color: var(--yellow);
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list div {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.feature-list strong {
  margin-bottom: 4px;
  font-size: 19px;
}

.feature-list span {
  color: rgba(255, 255, 255, 0.78);
}

.faq {
  max-width: 980px;
  margin: 0 auto;
}

details {
  padding: 20px 22px;
}

details + details {
  margin-top: 12px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 5vw;
  border-top: 1px solid var(--line);
  background: #f4efe5;
}

.site-footer p {
  max-width: 520px;
  margin: 8px 0 0;
}

.site-footer nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  color: var(--muted);
}

.guide-dialog {
  width: min(760px, calc(100vw - 32px));
  max-height: min(760px, calc(100vh - 32px));
  padding: 30px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.guide-dialog::backdrop {
  background: rgba(24, 28, 26, 0.52);
}

.guide-dialog h2 {
  margin-top: 6px;
}

.guide-dialog li + li {
  margin-top: 8px;
}

.close-button {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 38px;
  height: 38px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.page-main {
  max-width: 920px;
  min-height: 70vh;
  margin: 0 auto;
  padding: 72px 5vw;
}

.page-main article {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.page-main p,
.page-main li {
  color: var(--muted);
}

@media (max-width: 920px) {
  .hero,
  .intro-grid,
  .feature-band {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 40px;
  }

  .path-grid,
  .guide-grid,
  .checklist {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .top-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-media,
  .hero-media img {
    min-height: 290px;
  }

  .section {
    padding: 54px 5vw;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

.wide-page {
  max-width: 1180px;
}

.lead {
  max-width: 760px;
  font-size: 18px;
}

.article-page article p {
  font-size: 17px;
}

.article-note {
  margin: 30px 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8f3ea;
}

.article-note h2 {
  font-size: 24px;
}

.article-list,
.mini-link-grid {
  display: grid;
  gap: 14px;
}

.article-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-link,
.mini-link-grid a {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 152px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.article-link span {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.article-link strong {
  font-size: 19px;
  line-height: 1.3;
}

.article-link em {
  color: var(--muted);
  font-style: normal;
}

.mini-link-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-link-grid a {
  justify-content: center;
  min-height: 90px;
  color: var(--green-dark);
  font-weight: 800;
}

.quiz-promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #f4ead8;
}

.quiz-promo p {
  max-width: 680px;
  color: var(--muted);
}

.quiz-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1.22fr);
  gap: 34px;
}

.quiz-form,
.quiz-result {
  display: grid;
  gap: 16px;
}

.quiz-form fieldset,
.quiz-result {
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.quiz-form legend {
  padding: 0 4px;
  font-weight: 800;
}

.quiz-form label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 12px;
  color: var(--muted);
}

.quiz-form input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--green);
}

.quiz-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.quiz-result {
  grid-column: 2;
  background: #eef3ee;
}

.result-type {
  color: var(--green-dark);
  font-weight: 800;
}

@media (max-width: 920px) {
  .article-list,
  .mini-link-grid,
  .quiz-shell {
    grid-template-columns: 1fr;
  }

  .quiz-result {
    grid-column: auto;
  }

  .quiz-promo {
    align-items: flex-start;
    flex-direction: column;
  }
}

.hub-hero,
.planner-hero {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.hub-tools {
  display: grid;
  gap: 18px;
  margin: 24px 0;
}

.search-box {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.search-box input,
.planner-input input {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-tabs button {
  min-height: 38px;
  padding: 0 13px;
  color: var(--green-dark);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}

.category-tabs button.active {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}

.improved-list .article-link {
  min-height: 190px;
}

.article-link small {
  margin-top: auto;
  color: var(--blue);
  font-weight: 800;
}

.interactive-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 42px;
  padding-bottom: 42px;
}

.interactive-strip a {
  min-height: 132px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.interactive-strip strong,
.interactive-strip span {
  display: block;
}

.interactive-strip strong {
  margin-bottom: 8px;
  font-size: 22px;
}

.interactive-strip span {
  color: var(--muted);
}

.mini-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 10px;
  width: fit-content;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.mini-stat strong {
  color: var(--green-dark);
}

.mini-stat span {
  color: var(--muted);
}

.visual-result {
  display: grid;
  grid-template-columns: minmax(180px, 0.65fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.result-art {
  display: grid;
  place-items: center;
  min-height: 240px;
  border-radius: 8px;
  overflow: hidden;
}

.result-art.apartment { background: linear-gradient(135deg, #dfe8ef, #8fb0c7); }
.result-art.officetel { background: linear-gradient(135deg, #dfe5df, #7ca092); }
.result-art.studio { background: linear-gradient(135deg, #f4ead8, #d59c67); }
.result-art.villa { background: linear-gradient(135deg, #e6eedf, #86a96f); }
.result-art.share { background: linear-gradient(135deg, #eee0ef, #b987ba); }

.house-shape {
  display: grid;
  place-items: center;
  width: 152px;
  height: 132px;
  color: #fff;
  background: rgba(31, 37, 35, 0.78);
  clip-path: polygon(50% 0, 100% 36%, 100% 100%, 0 100%, 0 36%);
}

.house-shape span {
  margin-top: 22px;
  font-weight: 900;
  letter-spacing: 0;
}

.result-copy {
  align-self: center;
}

.planner-input {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
  margin-top: 22px;
}

.planner-input label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.planner-input button {
  border: 0;
  cursor: pointer;
}

.timeline {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 140px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.timeline-item span {
  color: var(--red);
  font-weight: 900;
}

.timeline-item p {
  margin: 0;
}

.empty-state {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

@media (max-width: 920px) {
  .interactive-strip,
  .visual-result,
  .timeline-item {
    grid-template-columns: 1fr;
  }
}


.tool-hero {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.inspection-grid,
.question-board,
.template-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.check-tile,
.question-card,
.template-card,
.score-panel {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.check-tile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 12px;
  cursor: pointer;
}

.check-tile input {
  grid-row: span 2;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: var(--green);
}

.check-tile span,
.question-card p,
.template-card p,
.score-panel p {
  color: var(--muted);
}

.score-panel {
  margin-top: 18px;
  background: #eef3ee;
}

.question-card span,
.template-card span {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.question-card strong {
  display: block;
  margin: 8px 0;
  font-size: 26px;
}

.question-card button,
.template-card button {
  min-height: 38px;
  padding: 0 12px;
  color: #fff;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  cursor: pointer;
}

@media (max-width: 920px) {
  .inspection-grid,
  .question-board,
  .template-list {
    grid-template-columns: 1fr;
  }
}


.active-nav {
  color: var(--green-dark);
  font-weight: 900;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: 42px;
  align-items: center;
  padding: 66px 5vw 48px;
}

.home-hero-copy h1 {
  margin-bottom: 22px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.05;
}

.home-dashboard {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dash-card {
  min-height: 154px;
  padding: 22px;
  border-radius: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(39, 44, 40, 0.08);
}

.dash-card.large {
  grid-column: span 2;
  min-height: 210px;
  background: linear-gradient(135deg, #fffdf8, #e8f0ea);
}

.dash-card span,
.tool-icon {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.dash-card strong,
.dash-card p {
  display: block;
}

.dash-card strong {
  margin: 8px 0;
  font-size: 25px;
  line-height: 1.2;
}

.dash-card p {
  color: var(--muted);
}

.dash-card.green { background: #e9f2ed; }
.dash-card.blue { background: #e6eef4; }
.dash-card.red { background: #f6e8e1; }

.tool-launcher {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding-top: 34px;
}

.tool-launcher a {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.tool-launcher strong,
.tool-launcher p {
  display: block;
}

.tool-launcher strong {
  margin: 16px 0 8px;
  font-size: 21px;
}

.tool-launcher p {
  color: var(--muted);
}

.reading-lanes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.reading-lanes a,
.featured-article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.reading-lanes span,
.featured-article span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.reading-lanes strong,
.featured-article strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
  line-height: 1.3;
}

.article-hub-hero {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #fffdf8, #e8f0ea);
}

.hub-summary {
  display: grid;
  place-items: center;
  min-width: 150px;
  border-left: 1px solid var(--line);
}

.hub-summary strong {
  font-size: 54px;
  line-height: 1;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 14px;
  margin: 18px 0 24px;
}

.featured-article:first-child {
  background: #eef3ee;
}

.featured-article p {
  color: var(--muted);
}

.sticky-tools {
  position: sticky;
  top: 68px;
  z-index: 10;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 248, 242, 0.94);
  backdrop-filter: blur(14px);
}

.readable-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.readable-list .article-link {
  min-height: 174px;
  padding: 24px;
}

.readable-list .article-link strong {
  font-size: 22px;
}

.quiz-redesign {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1.28fr);
  gap: 28px;
}

.quiz-side {
  position: sticky;
  top: 92px;
  align-self: start;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(160deg, #fffdf8, #f4ead8);
}

.progress-dots {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.progress-dots span {
  width: 36px;
  height: 8px;
  border-radius: 99px;
  background: var(--green);
}

.stacked fieldset {
  padding: 24px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.choice-grid label {
  display: block;
  margin: 0;
}

.choice-grid input {
  position: absolute;
  opacity: 0;
}

.choice-grid span {
  display: grid;
  place-items: center;
  min-height: 62px;
  padding: 12px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.choice-grid input:checked + span {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}

.result-stage {
  margin-top: 28px;
}

.poster-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--paper);
}

.poster-art {
  display: grid;
  place-items: center;
  min-height: 360px;
}

.poster-card.apartment .poster-art { background: linear-gradient(135deg, #dfe8ef, #8fb0c7); }
.poster-card.officetel .poster-art { background: linear-gradient(135deg, #dfe5df, #7ca092); }
.poster-card.studio .poster-art { background: linear-gradient(135deg, #f4ead8, #d59c67); }
.poster-card.villa .poster-art { background: linear-gradient(135deg, #e6eedf, #86a96f); }
.poster-card.share .poster-art { background: linear-gradient(135deg, #eee0ef, #b987ba); }

.poster-building {
  display: grid;
  grid-template-columns: repeat(2, 34px);
  grid-auto-rows: 34px;
  gap: 12px;
  width: 160px;
  height: 220px;
  padding: 34px 28px;
  border-radius: 8px 8px 2px 2px;
  background: rgba(31, 37, 35, 0.82);
}

.poster-building i {
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.82);
}

.poster-copy {
  padding: 34px;
}

.point-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 24px;
}

.point-chips span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #eef3ee;
  color: var(--green-dark);
  font-weight: 800;
}

.compare-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.room-input,
.winner-card,
.risk-result,
.mission-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.room-input label {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 800;
}

.room-input input[type="number"] {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.winner-card,
.risk-result,
.mission-card {
  margin-top: 18px;
  background: #eef3ee;
}

.risk-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.risk-list label {
  display: flex;
  gap: 10px;
  min-height: 74px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.mission-hero {
  min-height: 360px;
  padding: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, #eef3ee, #f4ead8);
}

.mission-hero button {
  border: 0;
  cursor: pointer;
}

.mission-card span {
  color: var(--red);
  font-weight: 900;
}

.mission-card strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
}

@media (max-width: 920px) {
  .home-hero,
  .quiz-redesign,
  .poster-card,
  .compare-board,
  .risk-list,
  .featured-grid,
  .reading-lanes,
  .tool-launcher,
  .readable-list {
    grid-template-columns: 1fr;
  }

  .quiz-side,
  .sticky-tools {
    position: static;
  }

  .home-dashboard {
    grid-template-columns: 1fr;
  }

  .dash-card.large {
    grid-column: auto;
  }

  .article-hub-hero {
    flex-direction: column;
  }

  .hub-summary {
    justify-items: start;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 18px;
  }

  .choice-grid {
    grid-template-columns: 1fr;
  }
}
