:root {
  --paper: #f5f0e5;
  --paper-deep: #ece5d6;
  --ink: #153543;
  --ink-soft: #52646a;
  --navy: #103746;
  --teal: #237e79;
  --teal-soft: #dcebe6;
  --yellow: #f2b84b;
  --white: #fffdf8;
  --line: #cec8ba;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--navy);
  color: white;
  padding: 10px 14px;
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.section-shell, .site-header, .utility-inner { width: min(1420px, calc(100% - 80px)); margin-inline: auto; }

.site-header {
  height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}
.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-weight: 800;
  letter-spacing: -.03em;
  font-size: 17px;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
}
.site-header nav { display: flex; align-items: center; gap: 42px; font-size: 14px; font-weight: 700; color: #506168; }
.site-header nav a:hover { color: var(--teal); }
.header-cta {
  justify-self: end;
  background: var(--navy);
  color: #fff;
  min-height: 46px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 800;
}
.header-cta:hover { background: var(--teal); }

.utility-bar {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 70;
  width: 100%;
  border-bottom: 1px solid rgba(21,53,67,.18);
  background: rgba(245,240,229,.96);
  box-shadow: 0 8px 22px rgba(16,55,70,.06);
  backdrop-filter: blur(12px);
}
.utility-inner { min-height: 56px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.section-jump { min-width: 0; display: flex; align-items: center; gap: 7px; overflow-x: auto; scrollbar-width: none; }
.section-jump::-webkit-scrollbar { display: none; }
.section-jump > span { flex: 0 0 auto; margin-right: 4px; color: #748285; font-size: 9px; font-weight: 900; letter-spacing: .08em; }
.section-jump a { flex: 0 0 auto; min-height: 36px; padding: 0 12px; display: inline-flex; align-items: center; border: 1px solid transparent; border-radius: 999px; color: #52676c; font-size: 10px; font-weight: 850; }
.section-jump a:hover, .section-jump a[aria-current="location"] { border-color: #a9bdb7; background: #fffdf8; color: var(--teal); }
.view-mode-switcher { flex: 0 0 auto; margin: 0; padding: 3px; display: flex; align-items: center; gap: 2px; border: 1px solid #aebdb8; border-radius: 999px; }
.view-mode-switcher legend { float: left; margin: 0 7px 0 6px; padding: 0; color: #68797d; font-size: 9px; font-weight: 900; }
.view-mode-switcher label { position: relative; cursor: pointer; }
.view-mode-switcher input { position: absolute; inset: 0; opacity: 0; pointer-events: none; }
.view-mode-switcher label span { min-width: 52px; min-height: 34px; padding: 0 10px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; color: #5e7074; font-size: 10px; font-weight: 850; }
.view-mode-switcher input:checked + span { background: var(--navy); color: #fff; }
.view-mode-switcher input:focus-visible + span { outline: 3px solid var(--yellow); outline-offset: 2px; }

.hero {
  min-height: 560px;
  padding: 60px 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 78px;
  align-items: stretch;
}
.hero-copy { padding-top: 7px; }
.eyebrow, .section-kicker { margin: 0; color: var(--teal); font-size: 12px; font-weight: 900; letter-spacing: .14em; }
.eyebrow { display: flex; align-items: center; gap: 14px; }
.eyebrow span { display: block; width: 38px; height: 2px; background: var(--teal); }
.hero h1 {
  margin: 27px 0 26px;
  font-size: clamp(48px, 5.1vw, 76px);
  line-height: 1.07;
  letter-spacing: -.055em;
  font-weight: 850;
}
.hero-intro { margin: 0; color: #677378; font-size: 17px; line-height: 1.75; letter-spacing: -.02em; }
.search-wrap {
  margin-top: 32px;
  width: min(850px, 100%);
  min-height: 66px;
  display: grid;
  grid-template-columns: 26px 1fr auto;
  align-items: center;
  gap: 12px;
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 8px 8px 0 #dce9e5;
  padding: 5px 6px 5px 20px;
}
.search-icon {
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  color: var(--ink);
}
.search-icon::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  background: currentColor;
  right: -6px;
  bottom: -3px;
  transform: rotate(45deg);
  transform-origin: left center;
}
.search-wrap input, .inline-search input { border: 0; outline: 0; width: 100%; min-width: 0; color: var(--ink); background: transparent; }
.search-wrap input { font-size: 16px; }
input::placeholder { color: #929a9b; }
.search-button {
  border: 0;
  min-height: 52px;
  min-width: 112px;
  display: inline-grid;
  place-items: center;
  background: var(--teal);
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}
.search-button:hover { background: var(--navy); }
.quick-topics { margin-top: 20px; display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.quick-topics > span { margin-right: 7px; color: #657479; font-size: 12px; }
.quick-topics button, .category-filters button { border: 1px solid #c8c5bc; background: rgba(255,253,248,.46); cursor: pointer; }
.quick-topics button { padding: 8px 13px; font-size: 12px; }
.quick-topics button:hover { border-color: var(--teal); color: var(--teal); }

.trust-panel {
  align-self: stretch;
  background: var(--navy);
  color: #fff;
  border-top: 8px solid var(--yellow);
  padding: 35px 31px 25px;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}
.trust-kicker { color: #a9d0c8; font-family: var(--serif); font-size: 15px; font-style: italic; }
.trust-panel h2 { margin: 20px 0 17px; color: #fff; font-size: 28px; line-height: 1.38; letter-spacing: -.04em; }
.trust-panel > p { margin: 0; color: #bbcbcf; font-size: 13px; line-height: 1.8; }
.trust-panel ul { list-style: none; margin: auto 0 0; padding: 0; }
.trust-panel li { min-height: 43px; display: flex; align-items: center; gap: 10px; border-top: 1px solid rgba(255,255,255,.16); font-size: 12px; font-weight: 750; }
.trust-panel li span { width: 19px; height: 19px; display: inline-grid; place-items: center; border-radius: 50%; background: var(--yellow); color: var(--navy); font-size: 11px; }

.process {
  min-height: 106px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
}
.section-side-label span { color: var(--teal); font-family: var(--serif); font-size: 13px; font-style: italic; }
.section-side-label h2 { margin: 6px 0 0; font-size: 17px; letter-spacing: -.03em; }
.process-list { display: grid; grid-template-columns: repeat(4,1fr); margin: 0; padding: 0; list-style: none; }
.process-list li { min-width: 0; display: grid; grid-template-columns: 36px 1fr auto; align-items: center; gap: 10px; padding: 0 15px; }
.step-number { width: 31px; height: 31px; border: 1px solid #77aaa3; border-radius: 50%; display: grid; place-items: center; color: var(--teal); font-family: var(--serif); font-size: 11px; font-weight: 800; }
.process-list strong, .process-list small { display: block; }
.process-list strong { font-size: 14px; }
.process-list small { margin-top: 5px; color: #7a8588; font-size: 10px; }
.step-arrow { color: #8c9b9b; font-size: 18px; }

.starter-section { padding: 96px 0 104px; border-bottom: 1px solid var(--line); }
.starter-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 60px; align-items: end; }
.starter-heading h2 { margin: 13px 0 0; font-size: clamp(32px,3vw,46px); line-height: 1.2; letter-spacing: -.05em; }
.starter-heading > p { justify-self: end; max-width: 540px; margin: 0; color: #637478; font-size: 13px; line-height: 1.8; }
.starter-essential { margin-top: 34px; min-height: 68px; padding: 15px 20px; display: grid; grid-template-columns: 180px 1fr 1fr; align-items: center; gap: 18px; border: 1px solid #b8cec6; background: var(--teal-soft); }
.starter-essential strong { color: var(--teal); font-size: 11px; letter-spacing: .04em; }
.starter-essential span { color: #425f65; font-size: 11px; font-weight: 750; line-height: 1.55; }
.starter-essential b { margin-right: 7px; color: var(--teal); }
.starter-grid { margin-top: 18px; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--ink); border-left: 1px solid var(--line); }
.starter-grid article { min-height: 310px; padding: 25px 22px 21px; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,253,248,.46); }
.starter-grid article:nth-child(even) { background: rgba(220,235,230,.28); }
.starter-number { color: var(--teal); font-family: var(--serif); font-size: 19px; font-weight: 900; }
.starter-grid h3 { margin: 22px 0 13px; font-size: 17px; letter-spacing: -.03em; }
.starter-grid p { margin: 0; color: #596e73; font-size: 11px; line-height: 1.8; }
.starter-grid p strong { color: var(--ink); }
.starter-grid a { margin-top: auto; min-height: 40px; padding-top: 12px; display: flex; align-items: center; justify-content: space-between; gap: 8px; border-top: 1px solid var(--line); color: var(--teal); font-size: 10px; font-weight: 850; }
.starter-grid a:hover { color: var(--navy); }
.starter-note { padding: 18px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; border-bottom: 1px solid var(--line); }
.starter-note p { margin: 0; color: #68797d; font-size: 10px; line-height: 1.75; }
.starter-note strong { color: var(--ink); }

.numbers-section { padding: 102px 0 108px; }
.numbers-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 50px; align-items: end; margin-bottom: 40px; }
.numbers-heading .section-kicker { grid-column: 1 / -1; }
.numbers-heading h2, .rounds-heading h2, .documents-heading h2, .examples-heading h2, .faq-heading h2, .laws-intro h2, .help-copy h2 { margin: 0; font-size: clamp(32px,3vw,46px); line-height: 1.2; letter-spacing: -.05em; }
.numbers-heading > p:last-child { justify-self: end; max-width: 520px; margin: 0; color: #68777b; font-size: 14px; line-height: 1.75; }
.number-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.number-grid article { min-height: 220px; padding: 27px 26px; border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.number-grid article:first-child { border-left: 1px solid var(--line); }
.number-grid article > span { color: var(--teal); font-size: 11px; font-weight: 900; }
.number-grid strong { margin-top: 24px; font-family: var(--serif); font-size: clamp(43px,4.3vw,62px); line-height: 1; letter-spacing: -.045em; }
.number-grid strong em { margin-left: 5px; font-family: var(--sans); font-size: 13px; font-style: normal; font-weight: 800; }
.number-grid article > p { margin: auto 0 0; color: #66767a; font-size: 12px; line-height: 1.65; }
.number-grid article > p small { color: #869092; font-size: 10px; }
.number-grid .highlight-number { background: var(--teal-soft); border-color: #9cbcb4; }
.number-note { margin: 17px 0 0; color: #7b8688; font-size: 10px; line-height: 1.6; }

.rounds-section { padding: 104px 0 112px; background: #e7eee8; border-top: 1px solid #c7d2c9; border-bottom: 1px solid #c7d2c9; }
.rounds-heading, .examples-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 60px; align-items: end; }
.rounds-heading h2, .examples-heading h2 { margin-top: 13px; }
.rounds-heading > p, .examples-heading > p { justify-self: end; max-width: 540px; margin: 0; color: #637478; font-size: 13px; line-height: 1.8; }
.rounds-alert { margin-top: 36px; min-height: 92px; display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 17px; padding: 18px 20px; background: var(--navy); color: #fff; }
.rounds-alert-mark { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--yellow); color: var(--navy); font-family: var(--serif); font-size: 19px; font-weight: 900; }
.rounds-alert strong { display: block; font-size: 13px; }
.rounds-alert p { margin: 6px 0 0; max-width: 900px; color: #b9cbce; font-size: 10px; line-height: 1.7; }
.rounds-alert > a { min-height: 38px; padding: 0 13px; display: inline-flex; align-items: center; gap: 14px; border: 1px solid rgba(255,255,255,.28); color: #fff; font-size: 10px; font-weight: 850; }
.rounds-alert > a:hover { background: var(--yellow); border-color: var(--yellow); color: var(--navy); }
.round-list { margin: 32px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.round-item { min-height: 230px; display: grid; grid-template-columns: 72px minmax(0,1fr) 235px; gap: 26px; padding: 29px 27px 29px 18px; border-bottom: 1px solid #bcc9c1; background: rgba(255,253,248,.32); }
.round-item:nth-child(even) { background: rgba(255,253,248,.6); }
.round-item.round-attendance { box-shadow: inset 5px 0 0 var(--yellow); background: rgba(255,253,248,.82); }
.round-number { width: 56px; height: 56px; display: flex; align-items: baseline; justify-content: center; gap: 2px; padding-top: 11px; border: 1.5px solid var(--teal); border-radius: 50%; color: var(--teal); font-family: var(--serif); }
.round-number span { font-size: 25px; line-height: 1; font-weight: 800; letter-spacing: -.05em; }
.round-number small { font-family: var(--sans); font-size: 9px; font-weight: 900; }
.round-main { min-width: 0; }
.round-title-line { display: flex; align-items: center; flex-wrap: wrap; gap: 11px; }
.round-title-line h3 { margin: 0; font-size: 21px; letter-spacing: -.035em; }
.round-title-line > span { min-height: 25px; display: inline-flex; align-items: center; padding: 0 9px; border: 1px solid #88aaa3; color: var(--teal); font-size: 9px; font-weight: 900; }
.round-main > p { max-width: 780px; margin: 16px 0 0; color: #52686d; font-size: 12px; line-height: 1.85; }
.round-main ul { margin: 15px 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 6px 24px; }
.round-main li { position: relative; padding-left: 13px; color: #6a7a7e; font-size: 10px; line-height: 1.6; }
.round-main li::before { content: ""; position: absolute; top: .62em; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--yellow); }
.round-side { align-self: stretch; padding-left: 25px; border-left: 1px solid #bcc9c1; display: flex; flex-direction: column; }
.round-side > strong { margin-bottom: 7px; color: var(--teal); font-size: 9px; letter-spacing: .1em; }
.round-side a { min-height: 40px; display: flex; align-items: center; justify-content: space-between; gap: 10px; border-bottom: 1px solid #c5d0c8; color: var(--ink); font-size: 10px; font-weight: 800; }
.round-side a:hover { color: var(--teal); border-color: var(--teal); }
.recipient-guide { margin-top: 34px; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid #aebdb4; border-left: 1px solid #aebdb4; }
.recipient-guide article { min-height: 190px; padding: 23px 22px; border-right: 1px solid #aebdb4; border-bottom: 1px solid #aebdb4; }
.recipient-guide span { color: var(--teal); font-size: 9px; font-weight: 900; letter-spacing: .05em; }
.recipient-guide strong { display: block; margin-top: 15px; font-size: 15px; line-height: 1.45; letter-spacing: -.025em; }
.recipient-guide p { margin: 15px 0 0; color: #637579; font-size: 10px; line-height: 1.75; }
.recipient-guide article > a { margin-top: 14px; display: inline-flex; align-items: center; gap: 8px; border-bottom: 1px solid currentColor; color: var(--teal); font-size: 9px; font-weight: 850; }
.rounds-footnote { margin: 18px 0 0; color: #647579; font-size: 10px; line-height: 1.75; }
.rounds-footnote a { border-bottom: 1px solid currentColor; color: var(--teal); font-weight: 800; }

.documents-section { padding: 112px 0 104px; }
.documents-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 60px; align-items: end; }
.documents-heading h2 { margin-top: 13px; }
.documents-heading > p { justify-self: end; max-width: 540px; margin: 0; color: #637478; font-size: 13px; line-height: 1.8; }
.documents-alert { margin-top: 34px; padding: 17px 20px; display: grid; grid-template-columns: 100px 1fr; align-items: center; gap: 18px; border: 1px solid #bdd0c9; background: var(--teal-soft); }
.documents-alert strong { color: var(--teal); font-size: 10px; letter-spacing: .07em; }
.documents-alert ul { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; list-style: none; }
.documents-alert li { position: relative; padding-left: 15px; color: #566d71; font-size: 10px; line-height: 1.65; }
.documents-alert li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 900; }
.documents-swipe-hint { display: none; }
.documents-grid { margin-top: 18px; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--ink); border-left: 1px solid var(--line); }
.documents-grid article { min-height: 340px; padding: 25px 22px 21px; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,253,248,.44); }
.documents-grid article:nth-child(2n) { background: rgba(220,235,230,.28); }
.document-title { min-height: 52px; display: flex; align-items: flex-start; gap: 13px; border-bottom: 1px solid var(--line); }
.document-title span { padding-top: 3px; color: var(--teal); font-family: var(--serif); font-size: 11px; }
.document-title h3 { margin: 0; color: var(--ink); font-size: 15px; line-height: 1.45; letter-spacing: -.025em; }
.documents-grid dl { margin: 18px 0 22px; }
.documents-grid dl div { display: grid; grid-template-columns: 42px 1fr; gap: 8px; }
.documents-grid dl div + div { margin-top: 11px; }
.documents-grid dt { color: var(--teal); font-size: 9px; font-weight: 900; }
.documents-grid dd { margin: 0; color: #5c7074; font-size: 10px; line-height: 1.65; }
.documents-grid article > a { margin-top: auto; min-height: 36px; padding-top: 11px; display: flex; align-items: center; justify-content: space-between; gap: 8px; border-top: 1px solid var(--line); color: var(--teal); font-size: 9px; font-weight: 850; }
.documents-grid article > a:hover { color: var(--navy); }
.documents-bottom { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-bottom: 1px solid var(--line); }
.documents-bottom p { max-width: 940px; margin: 0; color: #647579; font-size: 10px; line-height: 1.75; }
.documents-bottom p strong { color: var(--ink); }
.documents-bottom > a { flex: 0 0 auto; color: var(--teal); font-size: 10px; font-weight: 850; }

.examples-section { padding: 112px 0 96px; }
.example-tools { margin-top: 20px; display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.example-search { flex: 0 0 360px; }
.example-filters { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px; }
.example-filters button { min-height: 36px; padding: 0 14px; border: 1px solid #aebdb8; background: transparent; color: #52676c; font-size: 10px; font-weight: 800; cursor: pointer; }
.example-filters button.active, .example-filters button:hover { background: var(--teal); border-color: var(--teal); color: #fff; }
.example-filters button [data-example-filter-count] { margin-left: 5px; opacity: .72; font-variant-numeric: tabular-nums; }
.example-popular-note { margin: 12px 0 0; color: #637579; font-size: 10px; line-height: 1.6; }
.example-popular-note span { color: #7b5510; font-weight: 900; }
.example-grid { margin-top: 18px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--ink); border-left: 1px solid var(--line); }
.example-card { min-height: 270px; padding: 23px 22px 20px; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,253,248,.46); }
.example-card.is-representative { box-shadow: inset 4px 0 0 rgba(242,184,75,.9); }
.example-card:nth-child(6n+2), .example-card:nth-child(6n+4), .example-card:nth-child(6n+6) { background: rgba(220,235,230,.34); }
.example-card p { margin: 0; color: #50656b; font-size: 11px; line-height: 1.8; }
.example-meta { display: flex; align-items: center; gap: 9px; min-height: 25px; }
.example-meta strong { color: var(--teal); font-size: 10px; }
.example-meta .popular-badge { margin-left: auto; padding: 5px 7px; border: 1px solid #d5a039; border-radius: 999px; background: #fff3cf; color: #76520f; font-size: 8px; line-height: 1; font-weight: 900; white-space: nowrap; }
.example-question { margin-top: 15px !important; color: var(--ink) !important; font-size: 14px !important; line-height: 1.62 !important; font-weight: 800; letter-spacing: -.02em; }
.example-card p span { color: var(--teal); font-size: 9px; font-weight: 900; letter-spacing: .04em; }
.example-answer { margin-top: 18px; border-top: 1px solid var(--line); }
.example-answer summary { min-height: 44px; display: flex; align-items: center; justify-content: space-between; gap: 12px; list-style: none; cursor: pointer; color: var(--teal); font-size: 10px; font-weight: 900; }
.example-answer summary::-webkit-details-marker { display: none; }
.example-answer-icon { width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid #aac0b9; border-radius: 50%; font-size: 15px; transition: transform .18s ease; }
.example-answer[open] .example-answer-icon { transform: rotate(45deg); }
.example-answer-copy { margin: 0 0 13px !important; padding: 14px 15px; border-left: 3px solid var(--teal); background: rgba(220,235,230,.55); }
.example-related { margin-top: auto; min-height: 42px; padding: 0; display: flex; align-items: center; justify-content: space-between; border: 0; border-top: 1px solid var(--line); background: transparent; color: var(--teal); font-size: 10px; font-weight: 850; cursor: pointer; }
.example-related:hover { color: var(--navy); }
.example-card[hidden] { display: none; }
.example-empty { padding: 50px 20px; text-align: center; border-bottom: 1px solid var(--line); color: #637579; }
.example-empty strong { display: block; color: var(--ink); font-size: 15px; }
.example-empty p { margin: 8px 0 20px; font-size: 11px; }
.example-empty button { border: 0; border-bottom: 1px solid currentColor; background: transparent; padding: 3px 0; color: var(--teal); font-size: 11px; font-weight: 800; cursor: pointer; }
.examples-more-row { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-bottom: 1px solid var(--line); }
.examples-more-row p { margin: 0; color: #6b7b7e; font-size: 10px; }
.examples-more-row button { min-height: 44px; padding: 0 18px; display: inline-flex; align-items: center; gap: 22px; border: 1px solid var(--teal); background: transparent; color: var(--teal); font-size: 11px; font-weight: 850; cursor: pointer; }
.examples-more-row button:hover { background: var(--teal); color: #fff; }
.examples-noscript { margin: 14px 0 0; color: #68797d; font-size: 10px; line-height: 1.75; }
.example-tools[hidden], .example-popular-note[hidden], .example-grid[hidden], .example-empty[hidden], .examples-more-row[hidden] { display: none; }
.examples-disclaimer { margin: 14px 0 0; color: #68797d; font-size: 10px; line-height: 1.75; }

.faq-section { padding: 40px 0 116px; }
.faq-heading { display: flex; justify-content: space-between; gap: 50px; align-items: end; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.faq-heading h2 { margin-top: 13px; }
.faq-heading > p { margin: 0; text-align: right; color: #718083; font-size: 12px; line-height: 1.7; }
.faq-tools { padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-bottom: 1px solid var(--line); }
.inline-search { width: 360px; min-height: 44px; display: grid; grid-template-columns: 20px 1fr auto; align-items: center; gap: 12px; border-bottom: 1.5px solid var(--ink); padding: 0 4px 0 3px; }
.inline-search .search-icon { width: 13px; height: 13px; }
.inline-search input { font-size: 13px; }
.inline-search button { border: 0; background: transparent; cursor: pointer; font-size: 22px; color: #879193; }
.category-filters { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px; }
.category-filters button { min-height: 36px; padding: 0 14px; font-size: 11px; font-weight: 750; }
.category-filters button.active, .category-filters button:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.result-line { min-height: 58px; display: flex; align-items: center; justify-content: space-between; color: #68777b; font-size: 11px; }
.result-line strong { color: var(--teal); font-size: 15px; }
.result-line button, .empty-state button { border: 0; border-bottom: 1px solid currentColor; background: transparent; padding: 3px 0; cursor: pointer; color: var(--teal); font-size: 11px; font-weight: 800; }
.faq-list { border-top: 1px solid var(--ink); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { min-height: 92px; display: grid; grid-template-columns: 55px 1fr 40px; align-items: center; gap: 18px; list-style: none; cursor: pointer; outline: 0; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover .faq-question { color: var(--teal); }
.faq-index { font-family: var(--serif); font-size: 14px; color: #8c9695; }
.faq-question { display: flex; align-items: center; gap: 30px; font-size: 17px; font-weight: 800; letter-spacing: -.025em; transition: color 160ms ease; }
.faq-question small { width: 72px; flex: 0 0 auto; color: var(--teal); font-size: 10px; font-weight: 900; }
.faq-toggle { justify-self: end; width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid #a9afaa; border-radius: 50%; font-family: var(--serif); font-size: 20px; transition: transform 180ms ease, background-color 180ms ease, color 180ms ease; }
.faq-item[open] .faq-toggle { transform: rotate(45deg); background: var(--teal); border-color: var(--teal); color: #fff; }
.faq-item[open] summary { border-bottom: 1px solid #ded8ca; }
.faq-answer { padding: 31px 52px 38px 73px; background: rgba(255,253,248,.56); }
.answer-lead { max-width: 960px; margin: 0; display: grid; grid-template-columns: 38px 1fr; gap: 16px; color: #3c535a; font-size: 14px; line-height: 1.9; }
.answer-lead > span { font-family: var(--serif); font-size: 25px; font-style: italic; color: var(--teal); }
.answer-meta { margin: 29px 0 0 54px; padding-top: 24px; border-top: 1px solid #d5d0c4; display: grid; grid-template-columns: 1fr 300px; gap: 70px; }
.answer-meta h3 { margin: 0 0 12px; color: var(--teal); font-size: 10px; letter-spacing: .08em; }
.answer-meta ul { margin: 0; padding-left: 16px; color: #647579; font-size: 11px; line-height: 1.8; }
.source-box { display: flex; flex-direction: column; }
.source-box a { min-height: 30px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #d5d0c4; color: var(--ink); font-size: 11px; font-weight: 750; }
.source-box a:hover { color: var(--teal); }
.empty-state { padding: 70px 30px; text-align: center; border-bottom: 1px solid var(--line); }
.empty-state strong { font-size: 20px; }
.empty-state p { margin: 12px 0 20px; color: #718083; font-size: 13px; }

.laws-section { background: var(--navy); color: #fff; }
.laws-inner { padding-top: 100px; padding-bottom: 88px; display: grid; grid-template-columns: 330px 1fr; gap: 80px; }
.section-kicker.light { color: #a5d1c8; }
.laws-intro h2 { margin-top: 17px; color: #fff; }
.laws-intro > p:not(.section-kicker) { margin: 23px 0 0; color: #aebfc3; font-size: 12px; line-height: 1.85; }
.law-status { margin-top: 29px; border-top: 1px solid rgba(255,255,255,.18); }
.law-status span { min-height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border-bottom: 1px solid rgba(255,255,255,.18); color: #b9c9cc; font-size: 10px; }
.law-status b { color: #fff; }
.law-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.24); border-left: 1px solid rgba(255,255,255,.24); }
.law-grid article { min-height: 280px; padding: 27px 29px; border-right: 1px solid rgba(255,255,255,.24); border-bottom: 1px solid rgba(255,255,255,.24); }
.law-index { color: var(--yellow); font-family: var(--serif); font-size: 12px; }
.law-grid h3 { margin: 16px 0 7px; font-size: 20px; letter-spacing: -.035em; }
.law-grid article > p { margin: 0 0 21px; color: #9fb2b6; font-size: 10px; }
.law-links { display: flex; flex-wrap: wrap; gap: 7px; }
.law-links a { min-height: 31px; display: inline-flex; align-items: center; gap: 8px; padding: 0 11px; border: 1px solid rgba(255,255,255,.23); color: #d5e1e3; font-size: 10px; }
.law-links a:hover { background: var(--yellow); border-color: var(--yellow); color: var(--navy); }
.law-primary-links { grid-column: 2; display: grid; grid-template-columns: repeat(3,1fr); margin-top: -55px; transform: translateY(72px); background: var(--yellow); color: var(--navy); }
.law-primary-links a { min-height: 70px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; border-right: 1px solid rgba(16,55,70,.22); font-size: 11px; font-weight: 850; }
.law-primary-links a:hover { background: #ffca63; }

.help-section { padding: 145px 0 110px; display: grid; grid-template-columns: 330px 1fr; gap: 45px 80px; }
.help-label { color: var(--teal); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.help-copy h2 { margin-top: 15px; }
.help-copy p { margin: 22px 0 0; color: #68777b; font-size: 12px; line-height: 1.8; }
.help-checklist { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.help-checklist li { min-height: 86px; display: grid; grid-template-columns: 50px 1fr; align-items: center; gap: 15px; border-bottom: 1px solid var(--line); }
.help-checklist li > span { font-family: var(--serif); color: var(--teal); font-size: 12px; }
.help-checklist strong { font-size: 14px; }
.help-checklist p { margin: 6px 0 0; color: #738084; font-size: 11px; }
.help-actions { grid-column: 2; display: flex; gap: 9px; flex-wrap: wrap; }
.help-actions a { min-height: 48px; padding: 0 18px; display: inline-flex; align-items: center; gap: 12px; border: 1px solid var(--ink); font-size: 11px; font-weight: 800; }
.help-actions .primary-action { background: var(--teal); border-color: var(--teal); color: #fff; }
.help-actions a:hover { background: var(--navy); border-color: var(--navy); color: #fff; }

footer { background: #e9e2d4; border-top: 1px solid var(--line); }
.footer-inner { min-height: 205px; padding: 43px 0; display: grid; grid-template-columns: 300px 1fr 220px; gap: 55px; align-items: start; }
.footer-brand .brand-mark { width: 29px; height: 29px; font-size: 17px; }
.footer-inner > div:first-child > p { margin: 17px 0 0; color: #738084; font-size: 10px; }
.disclaimer { display: grid; grid-template-columns: 58px 1fr; gap: 18px; }
.disclaimer strong { color: var(--teal); font-size: 10px; }
.disclaimer p, .footer-date { margin: 0; color: #6d7a7d; font-size: 10px; line-height: 1.8; }
.footer-date { text-align: right; }

.back-to-top { position: fixed; right: 18px; bottom: 18px; z-index: 90; min-width: 58px; min-height: 52px; padding: 0 13px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; border: 1px solid var(--navy); border-radius: 999px; background: var(--navy); color: #fff; box-shadow: 0 10px 28px rgba(16,55,70,.25); font-size: 10px; font-weight: 850; cursor: pointer; }
.back-to-top:hover { background: var(--teal); border-color: var(--teal); }
.back-to-top[hidden] { display: none; }

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

@media (max-width: 1100px) {
  .section-shell, .site-header, .utility-inner { width: min(100% - 48px,980px); }
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { grid-template-columns: minmax(0,1fr) 310px; gap: 38px; }
  .process { grid-template-columns: 130px 1fr; }
  .process-list li { padding: 0 8px; }
  .process-list small { display: none; }
  .number-grid { grid-template-columns: 1fr 1fr; }
  .number-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .round-item { grid-template-columns: 62px minmax(0,1fr) 190px; gap: 20px; }
  .recipient-guide { grid-template-columns: 1fr 1fr; }
  .starter-grid { grid-template-columns: 1fr 1fr; }
  .starter-grid article { min-height: 270px; }
  .documents-grid { grid-template-columns: repeat(2,1fr); }
  .example-grid { grid-template-columns: 1fr 1fr; }
  .laws-inner, .help-section { grid-template-columns: 260px 1fr; gap: 60px; }
  .footer-inner { grid-template-columns: 220px 1fr; }
  .footer-date { grid-column: 2; text-align: left; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 70px; }
  .section-shell, .site-header { width: calc(100% - 36px); }
  .utility-inner { width: calc(100% - 20px); min-height: 56px; gap: 9px; }
  .section-jump { gap: 3px; }
  .section-jump > span, .view-mode-switcher legend { display: none; }
  .section-jump a { min-height: 40px; padding: 0 10px; }
  .view-mode-switcher { padding: 2px; }
  .view-mode-switcher label span { min-width: 44px; min-height: 38px; padding: 0 7px; }
  .site-header { height: 72px; }
  .brand { gap: 9px; font-size: 14px; }
  .brand-mark { width: 28px; height: 28px; font-size: 17px; }
  .header-cta { min-height: 38px; padding: 0 13px; font-size: 11px; }
  .hero { padding: 39px 0 35px; display: block; min-height: 0; }
  .hero h1 { margin: 22px 0 20px; font-size: clamp(42px,13vw,58px); }
  .hero-intro { font-size: 14px; }
  .desktop-break { display: none; }
  .search-wrap { min-height: 58px; margin-top: 27px; padding-left: 16px; box-shadow: 5px 5px 0 #dce9e5; }
  .search-wrap input { font-size: 13px; }
  .search-button { min-height: 45px; min-width: 75px; font-size: 12px; }
  .quick-topics > span { flex-basis: 100%; }
  .trust-panel { margin-top: 40px; min-height: 350px; padding: 29px 25px 21px; }
  .process { display: block; padding: 25px 0 10px; }
  .section-side-label { margin-bottom: 20px; }
  .process-list { grid-template-columns: 1fr 1fr; }
  .process-list li { min-height: 69px; border-top: 1px solid var(--line); }
  .process-list li:nth-child(odd) { border-right: 1px solid var(--line); }
  .step-arrow { display: none; }
  .starter-section { padding: 72px 0 76px; }
  .starter-heading { display: block; }
  .starter-heading h2 { margin-top: 12px; font-size: 34px; }
  .starter-heading > p { margin-top: 17px; font-size: 12px; }
  .starter-essential { grid-template-columns: 1fr; gap: 8px; margin-top: 24px; }
  .starter-grid { grid-template-columns: 1fr; }
  .starter-grid article { min-height: 0; }
  .starter-grid p { margin-bottom: 22px; }
  .starter-note { grid-template-columns: 1fr; gap: 10px; }
  .numbers-section { padding: 76px 0 80px; }
  .numbers-heading { display: block; margin-bottom: 26px; }
  .numbers-heading h2, .rounds-heading h2, .documents-heading h2, .examples-heading h2, .faq-heading h2, .laws-intro h2, .help-copy h2 { margin-top: 12px; font-size: 34px; }
  .numbers-heading > p:last-child { margin-top: 17px; font-size: 12px; }
  .number-grid article { min-height: 190px; padding: 21px 18px; }
  .number-grid strong { font-size: 39px; }
  .number-grid article > p { font-size: 10px; }
  .rounds-section { padding: 76px 0 80px; }
  .rounds-heading, .documents-heading, .examples-heading { display: block; }
  .rounds-heading > p, .documents-heading > p, .examples-heading > p { margin-top: 17px; font-size: 12px; }
  .rounds-alert { grid-template-columns: 34px 1fr; padding: 18px; }
  .rounds-alert > a { grid-column: 2; justify-self: start; }
  .round-item { min-height: 0; grid-template-columns: 45px minmax(0,1fr); gap: 15px; padding: 24px 15px 23px 10px; }
  .round-number { width: 42px; height: 42px; padding-top: 8px; }
  .round-number span { font-size: 20px; }
  .round-main > p { font-size: 11px; }
  .round-main ul { display: block; }
  .round-main li + li { margin-top: 4px; }
  .round-side { grid-column: 2; padding: 17px 0 0; border-left: 0; border-top: 1px solid #bcc9c1; }
  .round-side a { min-height: 37px; }
  .recipient-guide { grid-template-columns: 1fr; }
  .recipient-guide article { min-height: 0; }
  .documents-section { padding: 80px 0 70px; }
  .documents-alert { grid-template-columns: 1fr; gap: 8px; margin-top: 24px; }
  .documents-alert ul { grid-template-columns: 1fr; gap: 6px; }
  .documents-swipe-hint { margin: 13px 0 -4px; display: block; color: #647579; font-size: 10px; font-weight: 750; }
  .documents-swipe-hint span { margin-right: 6px; color: var(--teal); }
  .documents-grid { margin-right: -18px; padding-right: 18px; display: flex; gap: 12px; overflow-x: auto; border-left: 0; border-top: 0; scroll-snap-type: x mandatory; scrollbar-width: thin; }
  .documents-grid article { flex: 0 0 min(86vw,360px); min-height: 330px; border: 1px solid var(--line); scroll-snap-align: start; }
  .documents-bottom { align-items: flex-start; flex-direction: column; gap: 12px; padding: 18px 0; }
  .examples-section { padding: 80px 0 70px; }
  .example-tools { align-items: stretch; flex-direction: column; gap: 14px; }
  .example-search { width: 100%; flex-basis: auto; }
  .example-filters { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 5px; scrollbar-width: thin; scroll-snap-type: x proximity; }
  .example-filters button { flex: 0 0 auto; }
  .example-grid { grid-template-columns: 1fr; }
  .example-card { min-height: 0; padding: 21px 18px 18px; }
  .example-card:nth-child(odd) { background: rgba(255,253,248,.38); }
  .example-card:nth-child(even) { background: rgba(220,235,230,.36); }
  .example-related { margin-top: 18px; }
  .examples-more-row { align-items: stretch; flex-direction: column-reverse; gap: 10px; padding: 18px 0; }
  .examples-more-row button { width: 100%; justify-content: space-between; }
  .faq-section { padding: 20px 0 78px; }
  .faq-heading { display: block; }
  .faq-heading > p { margin-top: 16px; text-align: left; }
  .faq-tools { align-items: stretch; flex-direction: column; }
  .inline-search { width: 100%; }
  .category-filters { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .category-filters button { flex: 0 0 auto; }
  .faq-item summary { min-height: 86px; grid-template-columns: 30px 1fr 28px; gap: 8px; }
  .faq-question { display: block; font-size: 14px; line-height: 1.5; }
  .faq-question small { display: block; width: auto; margin-bottom: 4px; }
  .faq-toggle { width: 27px; height: 27px; }
  .faq-answer { padding: 24px 17px 29px; }
  .answer-lead { grid-template-columns: 29px minmax(0,1fr); gap: 8px; font-size: 12px; line-height: 1.8; }
  .answer-meta { margin: 24px 0 0; grid-template-columns: minmax(0,1fr); gap: 24px; }
  .answer-meta > div, .source-box { width: 100%; min-width: 0; }
  .answer-meta h3 { margin-bottom: 10px; font-size: 11px; }
  .answer-meta ul { padding-left: 20px; font-size: 12px; line-height: 1.75; }
  .answer-meta li + li { margin-top: 8px; }
  .source-box a { width: 100%; min-height: 44px; padding: 9px 0; align-items: flex-start; gap: 12px; line-height: 1.55; overflow-wrap: anywhere; }
  .laws-inner { padding-top: 75px; padding-bottom: 48px; display: block; }
  .law-status { margin-bottom: 37px; }
  .law-grid { grid-template-columns: 1fr; }
  .law-grid article { min-height: 240px; }
  .law-primary-links { grid-column: auto; grid-template-columns: 1fr; margin: 0; transform: translateY(82px); }
  .law-primary-links a { min-height: 58px; border-bottom: 1px solid rgba(16,55,70,.2); }
  .help-section { padding: 125px 0 78px; display: block; }
  .help-checklist { margin-top: 37px; }
  .help-actions { margin-top: 26px; }
  .help-actions a { width: 100%; justify-content: space-between; }
  .footer-inner { padding: 37px 0; display: block; }
  .disclaimer { margin-top: 35px; grid-template-columns: 1fr; gap: 9px; }
  .footer-date { margin-top: 27px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

/* 사용자가 화면 폭과 관계없이 모바일 보기를 선택한 경우 */
html[data-view-mode="mobile"] body { background: #e8e2d7; }
html[data-view-mode="mobile"] .site-header,
html[data-view-mode="mobile"] main,
html[data-view-mode="mobile"] footer { max-width: 460px; margin-inline: auto; }
html[data-view-mode="mobile"] main { overflow: hidden; background: var(--paper); box-shadow: 0 0 34px rgba(16,55,70,.08); }
html[data-view-mode="mobile"] .section-shell,
html[data-view-mode="mobile"] .site-header { width: calc(100% - 36px); }
html[data-view-mode="mobile"] .utility-inner { width: min(440px, calc(100% - 20px)); min-height: 56px; gap: 9px; }
html[data-view-mode="mobile"] .section-jump { gap: 3px; }
html[data-view-mode="mobile"] .section-jump > span,
html[data-view-mode="mobile"] .view-mode-switcher legend { display: none; }
html[data-view-mode="mobile"] .section-jump a { min-height: 40px; padding: 0 10px; }
html[data-view-mode="mobile"] .view-mode-switcher { padding: 2px; }
html[data-view-mode="mobile"] .view-mode-switcher label span { min-width: 44px; min-height: 38px; padding: 0 7px; }
html[data-view-mode="mobile"] .site-header { height: 72px; grid-template-columns: 1fr auto; }
html[data-view-mode="mobile"] .site-header nav { display: none; }
html[data-view-mode="mobile"] .brand { gap: 9px; font-size: 14px; }
html[data-view-mode="mobile"] .brand-mark { width: 28px; height: 28px; font-size: 17px; }
html[data-view-mode="mobile"] .header-cta { min-height: 38px; padding: 0 13px; font-size: 11px; }
html[data-view-mode="mobile"] .hero { padding: 39px 0 35px; display: block; min-height: 0; }
html[data-view-mode="mobile"] .hero h1 { margin: 22px 0 20px; font-size: clamp(42px,13vw,58px); }
html[data-view-mode="mobile"] .hero-intro { font-size: 14px; }
html[data-view-mode="mobile"] .desktop-break { display: none; }
html[data-view-mode="mobile"] .search-wrap { min-height: 58px; margin-top: 27px; padding-left: 16px; }
html[data-view-mode="mobile"] .quick-topics > span { flex-basis: 100%; }
html[data-view-mode="mobile"] .trust-panel { margin-top: 40px; min-height: 350px; padding: 29px 25px 21px; }
html[data-view-mode="mobile"] .process { display: block; padding: 25px 0 10px; }
html[data-view-mode="mobile"] .section-side-label { margin-bottom: 20px; }
html[data-view-mode="mobile"] .process-list { grid-template-columns: 1fr 1fr; }
html[data-view-mode="mobile"] .process-list li { min-height: 69px; border-top: 1px solid var(--line); }
html[data-view-mode="mobile"] .process-list li:nth-child(odd) { border-right: 1px solid var(--line); }
html[data-view-mode="mobile"] .step-arrow { display: none; }
html[data-view-mode="mobile"] .starter-section { padding: 72px 0 76px; }
html[data-view-mode="mobile"] .starter-heading,
html[data-view-mode="mobile"] .numbers-heading,
html[data-view-mode="mobile"] .rounds-heading,
html[data-view-mode="mobile"] .documents-heading,
html[data-view-mode="mobile"] .examples-heading { display: block; }
html[data-view-mode="mobile"] .starter-heading h2,
html[data-view-mode="mobile"] .numbers-heading h2,
html[data-view-mode="mobile"] .rounds-heading h2,
html[data-view-mode="mobile"] .documents-heading h2,
html[data-view-mode="mobile"] .examples-heading h2,
html[data-view-mode="mobile"] .faq-heading h2,
html[data-view-mode="mobile"] .laws-intro h2,
html[data-view-mode="mobile"] .help-copy h2 { margin-top: 12px; font-size: 34px; }
html[data-view-mode="mobile"] .starter-heading > p,
html[data-view-mode="mobile"] .rounds-heading > p,
html[data-view-mode="mobile"] .documents-heading > p,
html[data-view-mode="mobile"] .examples-heading > p { margin-top: 17px; font-size: 12px; }
html[data-view-mode="mobile"] .starter-essential { grid-template-columns: 1fr; gap: 8px; margin-top: 24px; }
html[data-view-mode="mobile"] .starter-grid,
html[data-view-mode="mobile"] .starter-note { grid-template-columns: 1fr; }
html[data-view-mode="mobile"] .starter-grid article { min-height: 0; }
html[data-view-mode="mobile"] .starter-grid p { margin-bottom: 22px; }
html[data-view-mode="mobile"] .starter-note { gap: 10px; }
html[data-view-mode="mobile"] .numbers-section { padding: 76px 0 80px; }
html[data-view-mode="mobile"] .number-grid { grid-template-columns: 1fr 1fr; }
html[data-view-mode="mobile"] .number-grid article { min-height: 190px; padding: 21px 18px; }
html[data-view-mode="mobile"] .number-grid strong { font-size: 39px; }
html[data-view-mode="mobile"] .rounds-section { padding: 76px 0 80px; }
html[data-view-mode="mobile"] .rounds-alert { grid-template-columns: 34px 1fr; padding: 18px; }
html[data-view-mode="mobile"] .rounds-alert > a { grid-column: 2; justify-self: start; }
html[data-view-mode="mobile"] .round-item { min-height: 0; grid-template-columns: 45px minmax(0,1fr); gap: 15px; padding: 24px 15px 23px 10px; }
html[data-view-mode="mobile"] .round-number { width: 42px; height: 42px; padding-top: 8px; }
html[data-view-mode="mobile"] .round-side { grid-column: 2; padding: 17px 0 0; border-left: 0; border-top: 1px solid #bcc9c1; }
html[data-view-mode="mobile"] .recipient-guide { grid-template-columns: 1fr; }
html[data-view-mode="mobile"] .documents-section,
html[data-view-mode="mobile"] .examples-section { padding: 80px 0 70px; }
html[data-view-mode="mobile"] .documents-alert { grid-template-columns: 1fr; gap: 8px; margin-top: 24px; }
html[data-view-mode="mobile"] .documents-alert ul { grid-template-columns: 1fr; gap: 6px; }
html[data-view-mode="mobile"] .documents-swipe-hint { margin: 13px 0 -4px; display: block; color: #647579; font-size: 10px; font-weight: 750; }
html[data-view-mode="mobile"] .documents-grid { margin-right: -18px; padding-right: 18px; display: flex; grid-template-columns: none; gap: 12px; overflow-x: auto; border: 0; scroll-snap-type: x mandatory; }
html[data-view-mode="mobile"] .documents-grid article { flex: 0 0 min(86vw,360px); min-height: 330px; border: 1px solid var(--line); scroll-snap-align: start; }
html[data-view-mode="mobile"] .documents-bottom { align-items: flex-start; flex-direction: column; gap: 12px; padding: 18px 0; }
html[data-view-mode="mobile"] .example-tools { align-items: stretch; flex-direction: column; gap: 14px; }
html[data-view-mode="mobile"] .example-search { width: 100%; flex-basis: auto; }
html[data-view-mode="mobile"] .example-filters { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 5px; }
html[data-view-mode="mobile"] .example-filters button { flex: 0 0 auto; }
html[data-view-mode="mobile"] .example-grid { grid-template-columns: 1fr; }
html[data-view-mode="mobile"] .example-card { min-height: 0; padding: 21px 18px 18px; }
html[data-view-mode="mobile"] .example-related { margin-top: 18px; }
html[data-view-mode="mobile"] .examples-more-row { align-items: stretch; flex-direction: column-reverse; gap: 10px; padding: 18px 0; }
html[data-view-mode="mobile"] .examples-more-row button { width: 100%; justify-content: space-between; }
html[data-view-mode="mobile"] .faq-section { padding: 20px 0 78px; }
html[data-view-mode="mobile"] .faq-heading { display: block; }
html[data-view-mode="mobile"] .faq-heading > p { margin-top: 16px; text-align: left; }
html[data-view-mode="mobile"] .faq-tools { align-items: stretch; flex-direction: column; }
html[data-view-mode="mobile"] .inline-search { width: 100%; }
html[data-view-mode="mobile"] .category-filters { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
html[data-view-mode="mobile"] .faq-item summary { min-height: 86px; grid-template-columns: 30px 1fr 28px; gap: 8px; }
html[data-view-mode="mobile"] .faq-answer { padding: 24px 17px 29px; }
html[data-view-mode="mobile"] .answer-lead { grid-template-columns: 29px minmax(0,1fr); gap: 8px; font-size: 12px; line-height: 1.8; }
html[data-view-mode="mobile"] .answer-meta { margin: 24px 0 0; grid-template-columns: minmax(0,1fr); gap: 24px; }
html[data-view-mode="mobile"] .answer-meta > div,
html[data-view-mode="mobile"] .source-box { width: 100%; min-width: 0; }
html[data-view-mode="mobile"] .answer-meta h3 { margin-bottom: 10px; font-size: 11px; }
html[data-view-mode="mobile"] .answer-meta ul { padding-left: 20px; font-size: 12px; line-height: 1.75; }
html[data-view-mode="mobile"] .answer-meta li + li { margin-top: 8px; }
html[data-view-mode="mobile"] .source-box a { width: 100%; min-height: 44px; padding: 9px 0; align-items: flex-start; gap: 12px; line-height: 1.55; overflow-wrap: anywhere; }
html[data-view-mode="mobile"] .laws-inner,
html[data-view-mode="mobile"] .help-section,
html[data-view-mode="mobile"] .footer-inner { display: block; }
html[data-view-mode="mobile"] .law-grid,
html[data-view-mode="mobile"] .law-primary-links { grid-template-columns: 1fr; }
html[data-view-mode="mobile"] .help-checklist { margin-top: 37px; }
html[data-view-mode="mobile"] .help-actions a { width: 100%; justify-content: space-between; }
html[data-view-mode="mobile"] .disclaimer { margin-top: 35px; grid-template-columns: 1fr; gap: 9px; }

/* 사용자가 좁은 화면에서도 PC 보기를 선택한 경우 */
html[data-view-mode="desktop"] body { min-width: 0; overflow-x: auto; }
html[data-view-mode="desktop"] .utility-bar { left: 0; width: 100vw; min-width: 0; }
html[data-view-mode="desktop"] .site-header { width: min(1420px, calc(100% - 80px)); min-width: 1100px; height: 88px; grid-template-columns: 1fr auto 1fr; }
html[data-view-mode="desktop"] main,
html[data-view-mode="desktop"] footer { min-width: 1180px; }
html[data-view-mode="desktop"] main .section-shell,
html[data-view-mode="desktop"] footer .section-shell { width: min(1420px, calc(100% - 80px)); }
html[data-view-mode="desktop"] .site-header nav { display: flex; }
html[data-view-mode="desktop"] .brand { gap: 13px; font-size: 17px; }
html[data-view-mode="desktop"] .brand-mark { width: 34px; height: 34px; font-size: 20px; }
html[data-view-mode="desktop"] .header-cta { min-height: 46px; padding: 0 21px; font-size: 14px; }
html[data-view-mode="desktop"] .hero { min-height: 560px; padding: 60px 0 48px; display: grid; grid-template-columns: minmax(0,1fr) 350px; gap: 78px; }
html[data-view-mode="desktop"] .hero h1 { margin: 27px 0 26px; font-size: clamp(58px,5.5vw,92px); }
html[data-view-mode="desktop"] .trust-panel { margin-top: 0; min-height: 0; }
html[data-view-mode="desktop"] .process { padding: 0 0 33px; display: grid; grid-template-columns: 170px 1fr; }
html[data-view-mode="desktop"] .process-list { grid-template-columns: repeat(4,1fr); }
html[data-view-mode="desktop"] .process-list li { min-height: 0; border-top: 0; border-right: 0; }
html[data-view-mode="desktop"] .step-arrow { display: block; }
html[data-view-mode="desktop"] .starter-heading,
html[data-view-mode="desktop"] .numbers-heading,
html[data-view-mode="desktop"] .rounds-heading,
html[data-view-mode="desktop"] .documents-heading,
html[data-view-mode="desktop"] .examples-heading { display: grid; grid-template-columns: 1fr 1fr; }
html[data-view-mode="desktop"] .starter-essential { grid-template-columns: 180px 1fr 1fr; }
html[data-view-mode="desktop"] .starter-grid { grid-template-columns: repeat(4,1fr); }
html[data-view-mode="desktop"] .starter-note { grid-template-columns: 1fr 1fr; }
html[data-view-mode="desktop"] .number-grid { grid-template-columns: repeat(4,1fr); }
html[data-view-mode="desktop"] .round-item { min-height: 230px; grid-template-columns: 72px minmax(0,1fr) 235px; gap: 26px; padding: 29px 27px 29px 18px; }
html[data-view-mode="desktop"] .round-number { width: 56px; height: 56px; padding-top: 11px; }
html[data-view-mode="desktop"] .round-side { grid-column: auto; padding: 0 0 0 25px; border-top: 0; border-left: 1px solid #bcc9c1; }
html[data-view-mode="desktop"] .recipient-guide { grid-template-columns: repeat(4,1fr); }
html[data-view-mode="desktop"] .documents-alert { grid-template-columns: 100px 1fr; }
html[data-view-mode="desktop"] .documents-alert ul { grid-template-columns: repeat(3,1fr); }
html[data-view-mode="desktop"] .documents-swipe-hint { display: none; }
html[data-view-mode="desktop"] .documents-grid { margin: 18px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4,1fr); gap: 0; overflow: visible; border-top: 1px solid var(--ink); border-left: 1px solid var(--line); }
html[data-view-mode="desktop"] .documents-grid article { min-height: 340px; border-top: 0; border-left: 0; scroll-snap-align: none; }
html[data-view-mode="desktop"] .documents-bottom { min-height: 82px; align-items: center; flex-direction: row; }
html[data-view-mode="desktop"] .example-tools { align-items: end; flex-direction: row; }
html[data-view-mode="desktop"] .example-search { width: auto; flex-basis: 360px; }
html[data-view-mode="desktop"] .example-filters { justify-content: flex-end; flex-wrap: wrap; overflow: visible; }
html[data-view-mode="desktop"] .example-grid { grid-template-columns: repeat(3,1fr); }
html[data-view-mode="desktop"] .examples-more-row { min-height: 76px; align-items: center; flex-direction: row; }
html[data-view-mode="desktop"] .faq-heading { display: flex; }
html[data-view-mode="desktop"] .faq-heading > p { margin: 0; text-align: right; }
html[data-view-mode="desktop"] .faq-tools { align-items: center; flex-direction: row; }
html[data-view-mode="desktop"] .inline-search { width: 360px; }
html[data-view-mode="desktop"] .category-filters { justify-content: flex-end; flex-wrap: wrap; overflow: visible; }
html[data-view-mode="desktop"] .laws-inner { display: grid; grid-template-columns: 310px 1fr; }
html[data-view-mode="desktop"] .law-grid { grid-template-columns: repeat(2,1fr); }
html[data-view-mode="desktop"] .law-primary-links { grid-template-columns: repeat(3,1fr); }
html[data-view-mode="desktop"] .help-section { display: grid; grid-template-columns: 310px 1fr; }
html[data-view-mode="desktop"] .footer-inner { display: grid; grid-template-columns: 310px 1fr 210px; }

@media print {
  .utility-bar, .back-to-top { display: none !important; }
  html[data-view-mode] .site-header,
  html[data-view-mode] main,
  html[data-view-mode] footer { min-width: 0; max-width: none; width: auto; box-shadow: none; }
}
