@font-face {
  font-family: "NanumSquareRound";
  src: url("/assets/site/NanumSquareRoundR.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "NanumSquareRound";
  src: url("/assets/site/NanumSquareRoundB.woff2") format("woff2");
  font-weight: 600 700;
  font-display: swap;
}
@font-face {
  font-family: "NanumSquareRound";
  src: url("/assets/site/NanumSquareRoundEB.woff2") format("woff2");
  font-weight: 800 900;
  font-display: swap;
}
@font-face {
  font-family: Bara Sans;
  src: url("/assets/site/Pretendard-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Bara Sans;
  src: url("/assets/site/Pretendard-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Bara Sans;
  src: url("/assets/site/Pretendard-Bold.woff2") format("woff2");
  font-weight: 600 900;
  font-display: swap;
}
:root {
  --ink: #422e28;
  --muted: #786a64;
  --accent: #8c5639;
  --accent-hover: #efbc9e;
  --button: #e09a74;
  --button-ink: #472b20;
  --cream: #fcf6f2;
  --peach: #f9e8dd;
  --line: #ecdfd7;
  --sage: #eef2ec;
  --white: #fff;
  --radius: 28px;
  --page: 1200px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family:
    "Bara Sans",
    Pretendard,
    -apple-system,
    BlinkMacSystemFont,
    "Noto Sans JP",
    "Yu Gothic",
    Meiryo,
    sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.35;
  letter-spacing: -0.04em;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
button,
summary {
  font: inherit;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
svg {
  width: 24px;
  height: 24px;
  flex: none;
}
a,
button,
summary {
  touch-action: manipulation;
}
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
::selection {
  background: #f7d8c5;
  color: var(--ink);
}
.wrap {
  width: min(var(--page), calc(100% - 80px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 16px;
  padding: 10px 20px;
  border-radius: 10px;
  background: white;
  transform: translateY(-180%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  height: 92px;
  position: relative;
  z-index: 20;
  background: var(--cream);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  width: 218px;
  flex-shrink: 0;
}
.brand img {
  width: 100%;
}
.header-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-links > a {
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
}
.header-links > a:not(.pill):hover,
.footer-links a:hover {
  color: var(--accent);
}
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 11px 23px;
  border: 1px solid var(--button);
  border-radius: 100px;
  background: var(--button);
  color: var(--button-ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  transition:
    background 0.2s,
    transform 0.2s;
}
.pill:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
}
.pill.outline {
  background: #fffaf6;
  color: var(--accent);
}
.pill.outline:hover {
  background: #fff3eb;
}
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  background: white;
  align-items: center;
  justify-content: center;
}
.language-select {
  position: relative;
  font-size: 14px;
}
.language-select summary {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  min-height: 44px;
  list-style: none;
}
.language-select summary::-webkit-details-marker {
  display: none;
}
.language-select summary::after {
  content: "⌄";
  margin-left: 2px;
}
.language-options {
  position: absolute;
  right: 0;
  top: 100%;
  min-width: 146px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 8px 30px #422e2810;
}
.language-options a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  border-radius: 8px;
}
.language-options a:hover,
.language-options [aria-current] {
  background: var(--cream);
  color: var(--accent);
}
/* 휴대폰 묶음의 아랫부분을 잘라 사용자가 선택한 히어로 구도를 유지한다. */
.home-hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero-inner {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
}
.hero-copy {
  position: relative;
  width: 47%;
  z-index: 2;
  padding: 18px 0 74px;
}
.eyebrow {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 27px;
}
.hero-copy h1 {
  margin-bottom: 32px;
}
.hero-wordmark {
  width: 495px;
}
.hero-description {
  font-size: 18px;
  line-height: 1.9;
  letter-spacing: -0.035em;
  color: #5f4d43;
}
.store-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-top: 32px;
}
.store-button {
  display: flex;
  align-items: center;
  gap: 13px;
  width: 256px;
  max-width: 100%;
  min-height: 58px;
  padding: 14px 22px;
  border: 1px solid #dfbda8;
  border-radius: 18px;
  background: #fffdfa;
  color: #513d32;
  font-family: "Bara Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease;
}
.store-button:hover {
  background: #f9e8dd;
  border-color: #cc9e81;
}
.store-button img {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  object-fit: contain;
}
.store-button span {
  white-space: nowrap;
}
.store-buttons .pill {
  width: 250px;
  white-space: nowrap;
  min-height: 54px;
  font-size: 16px;
  gap: 12px;
}
.hero-art {
  position: absolute;
  width: 509px;
  height: 950px;
  left: 63%;
  top: -20px;
  pointer-events: none;
  transform: rotate(31deg);
  transform-origin: 0 0;
}
.phone-grid {
  display: grid;
  grid-template-columns: repeat(2, 242px);
  gap: 25px;
}
.phone-column {
  display: grid;
  gap: 25px;
}
.phone-column:nth-child(2) {
  padding-top: 0;
  transform: translateY(-110px);
}
.phone {
  height: 504px;
  padding: 9px;
  background: #fff;
  border: 1px solid #e6e1dd;
  border-radius: 35px;
  box-shadow:
    6px 9px 10px #69534316,
    inset 0 0 0 3px #f4f1ef;
  overflow: hidden;
  position: relative;
}
.phone::before {
  content: "";
  position: absolute;
  top: 8px;
  left: calc(50% - 22px);
  width: 44px;
  height: 4px;
  background: #dedbd7;
  border-radius: 8px;
  z-index: 1;
}
.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 26px;
}

.stories {
  padding-top: 136px;
}
.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.055em;
}
.story-list {
  display: grid;
  gap: 26px;
  margin-top: 56px;
}
.story {
  height: 364px;
  min-height: 0;
  display: grid;
  grid-template-columns: 41% 59%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
}
.story.reverse {
  grid-template-columns: 59% 41%;
  background: var(--sage);
}
.story-copy {
  padding: 40px 38px;
  align-self: center;
  position: relative;
  z-index: 1;
}
.story-number {
  display: block;
  font-size: 55px;
  line-height: 1;
  font-weight: 700;
  color: #d8795e;
  opacity: 0.5;
  letter-spacing: -0.055em;
  margin-bottom: 20px;
}
.reverse .story-number {
  color: #86a28a;
}
.story-phase {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}
.story h3 {
  font-size: 24px;
  letter-spacing: -0.05em;
  margin-bottom: 12px;
  word-break: keep-all;
}
.story-copy > p:last-child {
  font-size: 16px;
  color: var(--muted);
  word-break: keep-all;
}
.story-visual {
  position: relative;
  overflow: hidden;
  height: 364px;
  min-height: 0;
  padding: 28px 28px 0 0;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.reverse .story-visual {
  padding: 28px 0 0 28px;
}
.screen-card {
  border: 5px solid white;
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px #49322909;
  overflow: hidden;
}
.screen-card img {
  width: 100%;
}
.story-products {
  width: 57%;
  margin-top: 24px;
  flex-shrink: 0;
}
.story-checklist {
  width: 40%;
}
.story-checklist img {
  margin-bottom: 0;
}
.story-sale {
  width: 55%;
  margin-top: 10px;
  flex-shrink: 0;
}
.story-prepayment {
  width: 40%;
}
.story-statistics {
  width: 100%;
  margin-top: 12px;
}

.special {
  padding-top: 144px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}
.feature {
  display: flex;
  gap: 18px;
  align-items: center;
  min-height: 119px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feature:nth-child(3n) {
  border-right: 0;
}
.feature:nth-child(n + 4) {
  border-bottom: 0;
}
.feature svg {
  width: 34px;
  height: 34px;
  color: #a65c40;
  stroke-width: 1.4;
}
.feature h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.035em;
}
.closing {
  margin-top: 104px;
  margin-bottom: 112px;
  border-radius: 28px;
  background: var(--peach);
  padding: 38px 48px;
  display: flex;
  align-items: center;
  gap: 36px;
  position: relative;
  overflow: hidden;
  min-height: 172px;
}
.closing h2 {
  font-size: 28px;
  flex: 1;
  word-break: keep-all;
}
.closing img {
  width: 106px;
  align-self: flex-end;
  margin-bottom: -42px;
}
.closing .pill {
  white-space: nowrap;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 52px 0 24px;
  background: #fffdfa;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 64px;
}
.footer-brand {
  display: block;
  width: 205px;
  margin-bottom: 22px;
}
.business {
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
}
.business a {
  text-decoration: none;
}
.footer-links h2 {
  font-size: 14px;
  margin-bottom: 15px;
}
.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li {
  margin: 9px 0;
  font-size: 13px;
  color: var(--muted);
}
.footer-links a {
  text-decoration: none;
}
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  color: var(--muted);
}
/* 공개 안내·법적 문서는 본문 구조와 시행일을 보존하고 같은 읽기 레이아웃을 공유한다. */
.document-hero {
  background: var(--cream);
  padding: 61px 0 64px;
}
.breadcrumb {
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 24px;
}
.breadcrumb a {
  text-decoration: none;
}
.document-hero h1 {
  font-size: 44px;
  margin-bottom: 20px;
  word-break: keep-all;
}
.document-hero p {
  max-width: 750px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  word-break: keep-all;
}
.effective-date,
.date {
  display: inline-block;
  margin-top: 24px;
  color: #86533c;
  font-size: 13px;
}
.archive-badge {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 18px;
}
.document-layout {
  display: grid;
  grid-template-columns: 236px minmax(0, 1fr);
  gap: 72px;
  align-items: start;
  padding-top: 64px;
  padding-bottom: 112px;
}
.document-sidebar {
  position: sticky;
  top: 32px;
  font-size: 13px;
}
.doc-toc summary {
  font-size: 14px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
  margin-bottom: 16px;
}
.doc-toc summary::-webkit-details-marker {
  display: none;
}
.doc-toc nav {
  display: grid;
  gap: 4px;
  border-left: 1px solid var(--line);
  padding-left: 16px;
}
.doc-toc a {
  display: block;
  text-decoration: none;
  color: var(--muted);
  padding: 6px 0;
  line-height: 1.65;
}
.doc-toc a:hover,
.doc-toc a[aria-current] {
  color: var(--accent);
}
.side-help {
  margin-top: 32px;
  padding: 20px;
  background: var(--cream);
  border-radius: 16px;
}
.side-help p {
  margin-bottom: 8px;
}
.side-help a {
  color: var(--accent);
}
.document {
  min-width: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #5c4b42;
  overflow-wrap: anywhere;
}
.document h2 {
  font-size: 24px;
  color: var(--ink);
  margin: 48px 0 20px;
  scroll-margin-top: 40px;
}
.document > .section:first-child h2,
.document > h2:first-child,
.document .contact:first-child h2,
.document > .method-card:first-child h2 {
  margin-top: 0;
}
.document h3,
.info-card-title,
.rights-title,
.data-category-title,
.response-time-title,
.contact-info-title {
  font-size: 16px;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 10px;
}
.document p {
  margin-bottom: 16px;
}
.document ul,
.document ol {
  padding-left: 23px;
  margin: 14px 0 20px;
}
.document li {
  padding-left: 3px;
  margin-bottom: 8px;
}
.document li::marker {
  color: #ac735b;
}
.document a {
  color: #ad482d;
}
.document .section + .section {
  padding-top: 8px;
}
.info-card,
.rights-card,
.box,
.notice,
.data-category,
.contact-info-box {
  background: var(--cream);
  border: 1px solid #f2e8e1;
  border-radius: 18px;
  padding: 23px 26px;
  margin: 18px 0;
}
.info-card ul:last-child,
.rights-card ul:last-child,
.data-category ul:last-child {
  margin-bottom: 0;
}
.contact-card,
.contact-section,
.contact {
  background: var(--cream);
  border-radius: 24px;
  padding: 32px;
  margin: 0 0 36px;
  text-align: left;
}
.contact-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}
.document .contact-card .contact-title {
  font-size: 18px;
  margin: 0 0 8px;
}

.contact-email {
  font-size: clamp(17px, 2.1vw, 25px);
  font-weight: 700;
  letter-spacing: -0.025em;
  overflow-wrap: anywhere;
}
.contact-email a {
  text-decoration: none;
}
.response-time {
  border-top: 1px solid var(--line);
  margin-top: 24px;
  padding-top: 22px;
  font-size: 14px;
}
.contact-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
}
.contact-icon,
.faq-icon,
.method-icon {
  display: none;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  margin: 12px 0;
  background: white;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 21px 56px 21px 24px;
  position: relative;
  list-style: none;
  color: var(--ink);
  line-height: 1.6;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 18px;
  font-size: 24px;
  color: var(--accent);
  font-weight: 400;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item[open] {
  background: var(--cream);
}
.faq-answer {
  padding: 0 24px 22px;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}
.method-card {
  display: flex;
  gap: 22px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  margin-bottom: 20px;
}
.method-number {
  width: 38px;
  height: 38px;
  background: var(--peach);
  color: var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-weight: 700;
}
.document .method-title {
  font-size: 21px;
  margin: 3px 0 10px;
}
.method-description {
  font-size: 15px;
}
.data-policy-section {
  margin-top: 40px;
}
.contact-section {
  margin-top: 40px;
}
.legal-list {
  margin: 32px 0;
}
.legal-row {
  display: grid;
  grid-template-columns: 175px minmax(0, 1fr);
  gap: 24px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}
.legal-row dt {
  font-weight: 700;
  color: var(--ink);
}
.legal-row dd {
  margin: 0;
}
.document pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font: inherit;
  line-height: 2;
}
.document-end {
  margin-top: 48px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.download-page {
  max-width: 620px;
  margin: 64px auto 96px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 44px;
  background: var(--cream);
}
.download-page .app-icon {
  margin: 0 auto 24px;
  border-radius: 24px;
  width: 88px;
  height: 88px;
}
.download-page h1 {
  font-size: 30px;
  margin-bottom: 20px;
}
.download-page .description {
  color: var(--muted);
}
.download-page .status {
  font-size: 14px;
  margin: 28px 0 16px;
  color: var(--accent);
}
.download-page .store-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  max-width: 300px;
  margin: auto;
}
.download-page .store-button {
  padding-inline: 14px;
  gap: 10px;
  font-size: 14px;
}
.download-page .store-link {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--accent);
  border-radius: 99px;
  min-height: 52px;
  text-decoration: none;
  color: var(--accent);
  font-weight: 700;
}
.download-page .store-link.primary {
  background: var(--button);
  color: var(--button-ink);
}
.download-page .fallback {
  font-size: 13px;
  color: var(--muted);
  margin-top: 24px;
}
@media (min-width: 1700px) {
  .hero-art {
    left: 63%;
    width: 509px;
  }
  .hero-inner {
    min-height: 700px;
  }
}
@media (max-width: 1100px) {
  .header-links {
    gap: 22px;
  }
  .brand {
    width: 188px;
  }
  .hero-inner {
    min-height: 610px;
  }
  .hero-copy {
    width: 46%;
  }
  .hero-art {
    left: 65%;
    transform: rotate(31deg) scale(0.91);
    top: 0;
  }
  .hero-description {
    font-size: 16px;
  }
  .story-copy {
    padding: 32px 28px;
  }
  .story h3 {
    font-size: 22px;
  }
  .story-visual {
    height: 340px;
  }
  .feature {
    padding: 24px 20px;
    gap: 12px;
  }
  .feature h3 {
    font-size: 15px;
  }
  .document-layout {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 40px;
  }
  .closing h2 {
    font-size: 25px;
  }
  .footer-top {
    gap: 40px;
  }
}
@media (max-width: 800px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 76px;
  }
  .brand {
    width: 185px;
  }
  .header-inner {
    gap: 16px;
  }
  .js .menu-toggle {
    display: flex;
  }
  .js .header-links {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 68px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 12px 28px #49322916;
  }
  .js .header-links.is-open {
    display: flex;
  }
  .header-links > a {
    padding: 12px;
  }
  .header-links .language-select summary {
    padding: 10px 12px;
  }
  .language-options {
    position: static;
    box-shadow: none;
  }
  .hero-inner {
    min-height: 610px;
  }
  .hero-copy {
    width: 51%;
    padding-bottom: 66px;
  }
  .hero-art {
    left: 67%;
    top: 50px;
    transform: rotate(29deg) scale(0.8);
  }
  .hero-wordmark {
    width: 100%;
  }
  .hero-description {
    font-size: 15px;
  }
  .eyebrow {
    font-size: 13px;
    margin-bottom: 23px;
  }
  .store-buttons .pill {
    width: 224px;
    font-size: 14px;
    min-height: 50px;
  }
  .stories {
    padding-top: 96px;
  }
  .section-title {
    font-size: 30px;
  }
  .story-list {
    margin-top: 40px;
    gap: 22px;
  }
  .story {
    grid-template-columns: 1fr 1.25fr;
    height: 310px;
  }
  .story.reverse {
    grid-template-columns: 1.25fr 1fr;
  }
  .story-copy {
    padding: 28px 24px;
  }
  .story-number {
    font-size: 44px;
    margin-bottom: 16px;
  }
  .story h3 {
    font-size: 20px;
  }
  .story-copy > p:last-child {
    font-size: 14px;
  }
  .story-visual {
    height: 310px;
    padding-top: 25px;
    gap: 12px;
  }
  .special {
    padding-top: 104px;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 36px;
  }
  .feature:nth-child(3n) {
    border-right: 1px solid var(--line);
  }
  .feature:nth-child(2n) {
    border-right: 0;
  }
  .feature:nth-child(n + 4) {
    border-bottom: 1px solid var(--line);
  }
  .feature:nth-child(n + 5) {
    border-bottom: 0;
  }
  .feature {
    min-height: 102px;
  }
  .closing {
    padding: 32px;
    gap: 24px;
    margin-top: 72px;
    margin-bottom: 80px;
  }
  .closing h2 {
    font-size: 24px;
  }
  .closing img {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-identity {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }
  .document-hero {
    padding: 36px 0 44px;
  }
  .document-hero h1 {
    font-size: 34px;
  }
  .document-hero p {
    font-size: 16px;
  }
  .document-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 32px;
    padding-bottom: 72px;
  }
  .document-sidebar {
    position: static;
  }
  .side-help {
    display: none;
  }
  .doc-toc {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px 20px;
  }
  .doc-toc summary {
    pointer-events: auto;
    cursor: pointer;
    margin: 0;
  }
  .doc-toc summary::after {
    content: "⌄";
    float: right;
  }
  .doc-toc nav {
    margin-top: 18px;
    max-height: 260px;
    overflow: auto;
  }
  .document {
    font-size: 15px;
  }
  .document h2 {
    font-size: 23px;
  }
  .legal-row {
    grid-template-columns: 150px 1fr;
    gap: 20px;
  }
  .download-page {
    margin: 40px auto 64px;
  }
}
@media (max-width: 540px) {
  .hero-inner {
    display: block;
    min-height: 750px;
    padding-top: 31px;
  }
  .hero-copy {
    width: 100%;
    padding: 0;
    max-width: 345px;
  }
  .hero-copy h1 {
    margin-bottom: 19px;
  }
  .hero-wordmark {
    width: 310px;
  }
  .eyebrow {
    margin-bottom: 19px;
  }
  .hero-description {
    font-size: 15px;
    line-height: 1.85;
  }
  .store-buttons {
    gap: 18px;
    margin-top: 23px;
  }
  .store-buttons .pill {
    width: 220px;
    min-height: 47px;
    font-size: 14px;
  }
  .hero-art {
    left: 44%;
    top: 340px;
    transform: rotate(30deg) scale(0.65);
    transform-origin: 0 0;
  }
  .hero-copy {
    pointer-events: none;
  }
  .hero-copy a {
    pointer-events: auto;
  }

  .stories {
    padding-top: 76px;
  }
  .section-title {
    font-size: 27px;
    letter-spacing: -0.055em;
  }
  .story-list {
    margin-top: 32px;
    gap: 24px;
  }
  .story,
  .story.reverse {
    height: auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .story-copy {
    padding: 29px 26px 23px;
    order: 0;
  }
  .story-number {
    font-size: 42px;
    margin-bottom: 12px;
  }
  .story h3 {
    font-size: 23px;
  }
  .story-phase {
    font-size: 13px;
    margin-bottom: 8px;
  }
  .story-visual,
  .reverse .story-visual {
    order: 1;
    min-height: 0;
    height: 250px;
    flex-shrink: 0;
    padding: 0 21px;
    gap: 12px;
  }
  .story-products {
    margin-top: 20px;
  }
  .story-checklist {
    max-height: 225px;
    width: 39%;
  }
  .story-sale {
    margin-top: 0;
  }
  .story-prepayment {
    width: 41%;
    margin-top: 14px;
  }
  .story-statistics {
    margin-top: 4px;
  }
  .story-statistics img {
    width: 460px;
    max-width: none;
  }

  .special {
    padding-top: 86px;
  }
  .feature-grid {
    margin-top: 30px;
    border-radius: 20px;
  }
  .feature {
    flex-direction: column;
    align-items: flex-start;
    padding: 21px 18px;
    gap: 13px;
    min-height: 128px;
  }
  .feature svg {
    width: 30px;
    height: 30px;
  }
  .feature h3 {
    font-size: 14px;
    word-break: keep-all;
    line-height: 1.5;
  }
  .closing {
    margin-top: 64px;
    margin-bottom: 72px;
    padding: 33px 26px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .closing h2 {
    font-size: 25px;
    max-width: 260px;
  }
  .site-footer {
    padding-top: 34px;
  }
  .footer-top {
    column-gap: 20px;
  }
  .footer-brand {
    width: 185px;
  }
  .business {
    font-size: 11px;
  }
  .document-hero h1 {
    font-size: 30px;
  }
  .document-hero p br {
    display: none;
  }
  .document-layout {
    padding-top: 28px;
  }
  .contact-card,
  .contact-section,
  .contact {
    padding: 24px 20px;
  }
  .document h2 {
    font-size: 21px;
    letter-spacing: -0.04em;
  }
  .info-card,
  .rights-card,
  .box,
  .notice,
  .data-category,
  .contact-info-box {
    padding: 20px;
  }
  .method-card {
    padding: 21px 18px;
    gap: 14px;
  }
  .document .method-title {
    font-size: 19px;
  }
  .method-number {
    width: 32px;
    height: 32px;
  }
  .legal-row {
    display: block;
    padding: 20px 0;
  }
  .legal-row dt {
    margin-bottom: 9px;
  }
  .download-page {
    padding: 32px 24px;
  }
  .download-page h1 {
    font-size: 24px;
  }
  .document-end {
    flex-wrap: wrap;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

:lang(ja) .document-hero h1,
:lang(ja) .document-hero p {
  word-break: normal;
  overflow-wrap: anywhere;
}
.breadcrumb {
  flex-wrap: wrap;
}
@media (min-width: 801px) and (max-width: 1100px) {
  .story {
    height: 340px;
  }
  .store-buttons .pill {
    width: 240px;
  }
}
@media (max-width: 800px) {
  html:not(.js) .site-header {
    height: auto;
  }
  html:not(.js) .header-inner {
    flex-wrap: wrap;
    padding-block: 20px;
  }
  html:not(.js) .header-links {
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* 둥근 서체와 스크롤 구간을 따라 안내하는 emol 방식의 하단 내비게이션. */
.home-page,
:lang(ko) .document-hero,
:lang(ko) .document h2,
:lang(ko) .header-links,
:lang(ko) .pill {
  font-family: "NanumSquareRound", "Bara Sans", sans-serif;
}
.home-page h2,
.home-page h3 {
  font-weight: 800;
  letter-spacing: -0.035em;
}
.home-page .hero-description {
  font-size: 19px;
  letter-spacing: -0.015em;
  line-height: 1.8;
}
.home-page .hero-description,
.home-page .story-copy > p,
.home-page .eyebrow,
.home-page .section-companion p {
  font-family: "Bara Sans", sans-serif;
  font-weight: 500;
}
.home-page .story-copy > p:last-child {
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: -0.015em;
}
.home-page {
  padding-bottom: 82px;
}
.home-page .site-header {
  position: fixed;
  inset: auto 0 0;
  height: 82px;
  border-top: 1px solid #ead8cc;
  background: #fcf6f2f5;
  backdrop-filter: blur(12px);
}
.home-page .hero-inner {
  min-height: 742px;
}
.home-page .header-links,
.home-page .js .header-links {
  display: flex;
  position: static;
  flex-direction: row;
  align-items: center;
  gap: 27px;
}
.home-page .header-links > a:not(.pill) {
  position: relative;
  padding: 16px 0;
}
.home-page .header-links > a[aria-current]::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: calc(50% - 3px);
  background: var(--button);
}
.section-companion {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
}
.section-companion p {
  font-size: 14px;
  padding: 10px 17px;
  border: 1px solid #dfc8b8;
  border-radius: 18px;
  background: #fffdfa;
  line-height: 1.5;
  min-width: 245px;
  text-align: center;
}
.section-companion img {
  width: 58px;
  height: 58px;
  transform-origin: 50% 90%;
}
.home-page .feature svg {
  transition: transform 0.3s ease;
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .home-page .feature:hover svg {
    transform: rotate(-6deg) scale(1.08);
  }
}
@media (max-width: 1100px) {
  .home-page .header-links {
    gap: 20px;
  }
  .section-companion p {
    min-width: 0;
    max-width: 255px;
    font-size: 13px;
  }
  .section-companion img {
    width: 48px;
    height: 48px;
  }
  .home-page .hero-inner {
    min-height: 702px;
  }
}
@media (max-width: 800px) {
  .home-page {
    padding-bottom: 73px;
  }
  .home-page .site-header {
    height: 73px;
  }
  .home-page .header-inner {
    gap: 14px;
  }
  .home-page .header-links,
  .js .home-page .header-links {
    display: flex;
    position: static;
    flex-direction: row;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    gap: 22px;
  }
  .section-companion p {
    display: none;
  }
  .section-companion {
    gap: 0;
  }
  .home-page .header-links > a {
    font-size: 14px;
  }
  .home-page .hero-inner {
    min-height: 682px;
  }
  .home-page .hero-description {
    font-size: 17px;
  }
}
@media (max-width: 540px) {
  .home-page {
    padding-bottom: 65px;
  }
  .home-page .site-header {
    height: 65px;
  }
  .home-page .header-inner {
    width: calc(100% - 24px);
    gap: 0;
  }
  .home-page .header-links,
  .js .home-page .header-links {
    gap: 0;
    justify-content: space-between;
    width: 100%;
  }
  .home-page .header-links > a {
    font-size: 13px;
  }
  .home-page .header-links .pill {
    padding: 10px 13px;
    min-height: 40px;
    font-size: 13px;
    gap: 5px;
  }
  .home-page .header-links .pill svg {
    width: 16px;
    height: 16px;
  }
  .section-companion {
    display: none;
  }
  .home-page .hero-inner {
    min-height: 750px;
    padding-top: 42px;
  }
  .home-page .hero-description {
    font-size: 16px;
  }
  .home-page .story-copy > p:last-child {
    font-size: 15px;
  }
  .home-page .story h3 {
    font-size: 24px;
  }
}
@media print {
  .home-page .site-header {
    display: none;
  }
  .home-page {
    padding-bottom: 0;
  }
}
@media print {
  .site-header,
  .site-footer,
  .document-sidebar,
  .document-end,
  .skip-link {
    display: none;
  }
  .document-hero {
    padding: 0 0 24px;
    background: none;
  }
  .document-layout {
    display: block;
    padding: 0;
  }
  .wrap {
    width: 100%;
  }
  .document {
    font-size: 11pt;
    color: #000;
  }
  .document h2 {
    break-after: avoid;
  }
  .info-card,
  .contact-card {
    break-inside: avoid;
  }
  .faq-item .faq-answer {
    display: block !important;
  }
  a {
    color: inherit !important;
  }
}
