@font-face {
  font-family: "Pretendard Variable";
  src: url("/fonts/PretendardVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: #3f3945;
  background: #f7f1e9;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --canvas: #f7f1e9;
  --surface: #fffdf9;
  --ink: #3f3945;
  --muted: #756e78;
  --line: #e8ddd3;
  --lilac-soft: #eee5f0;
  --plum: #66566f;
  --coral: #e86f54;
  --shadow: 0 16px 44px rgba(82, 67, 73, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--canvas);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 85% 4%, rgba(216, 196, 221, 0.34), transparent 23rem),
    var(--canvas);
  color: var(--ink);
  line-height: 1.7;
  word-break: keep-all;
  overflow-wrap: break-word;
}

a {
  color: var(--plum);
  font-weight: 680;
  text-underline-offset: 3px;
}

a:focus-visible {
  outline: 3px solid rgba(232, 111, 84, 0.42);
  outline-offset: 4px;
}

.site-header {
  border-bottom: 1px solid rgba(130, 112, 118, 0.12);
  background: rgba(255, 253, 249, 0.9);
  backdrop-filter: blur(14px);
}

.header-inner,
.page-shell,
.footer-inner {
  width: min(100% - 36px, 760px);
  margin-inline: auto;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 820;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.language-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  padding: 0 15px;
  color: var(--plum);
  font-size: 14px;
  text-decoration: none;
}

.page-shell {
  padding-block: 48px 72px;
}

.hero {
  margin-bottom: 24px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(30px, 7vw, 48px);
  line-height: 1.14;
  letter-spacing: -0.045em;
}

.lede {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.meta {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.summary,
.policy-section {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.summary {
  padding: 22px;
}

.summary h2,
.policy-section h2 {
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.025em;
}

.summary h2 {
  font-size: 20px;
}

.summary ul,
.policy-section ul {
  margin: 14px 0 0;
  padding-left: 21px;
}

.summary li + li,
.policy-section li + li {
  margin-top: 8px;
}

.policy-stack {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.policy-section {
  padding: 24px;
}

.policy-section h2 {
  font-size: 22px;
}

.policy-section p {
  margin: 12px 0 0;
  color: var(--muted);
}

.data-table-wrap {
  margin-top: 16px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 14px;
}

th,
td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--lilac-soft);
  color: var(--ink);
}

tr:last-child td {
  border-bottom: 0;
}

.note {
  border-left: 3px solid var(--coral);
  padding-left: 14px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.78);
}

.footer-inner {
  padding-block: 28px 40px;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

@media (max-width: 520px) {
  .page-shell {
    padding-block: 34px 56px;
  }

  .summary,
  .policy-section {
    border-radius: 18px;
    padding: 19px;
  }

  .header-inner {
    min-height: 64px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }
}
