/* :root{
  --text:#111;
  --muted:#555;
  --bg:#fff;
  --border:#e6e6e6;
  --accent:#0b57d0;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--text);font-family:-apple-system,BlinkMacSystemFont,"Apple SD Gothic Neo","Noto Sans KR","Malgun Gothic",Segoe UI,Roboto,Helvetica,Arial,sans-serif;line-height:1.65}
a{color:var(--accent)}
header{border-bottom:1px solid var(--border);background:#fafafa}
header .wrap{max-width:920px;margin:0 auto;padding:18px 20px;display:flex;gap:12px;align-items:baseline;justify-content:space-between}
header .brand{font-weight:700}
header nav a{margin-left:10px;font-size:14px;color:var(--muted);text-decoration:none}
header nav a:hover{text-decoration:underline}
main{max-width:920px;margin:0 auto;padding:28px 20px 64px}
h1{font-size:28px;margin:0 0 14px;letter-spacing:-0.02em}
h2{font-size:20px;margin:28px 0 10px}
h2 .sub{font-weight:600;color:var(--muted)}
h3{font-size:16px;margin:18px 0 8px}
p{margin:0 0 10px;color:var(--text)}
p.lead{color:var(--muted)}
ul{margin:6px 0 14px 20px}
li{margin:4px 0}
.policy-table{width:100%;border-collapse:collapse;margin:10px 0 18px;table-layout:auto}
.policy-table th,.policy-table td{border:1px solid var(--border);padding:10px 12px;vertical-align:top}
.policy-table th{background:#f6f7f9;font-weight:700}
footer{border-top:1px solid var(--border);background:#fafafa}
footer .wrap{max-width:920px;margin:0 auto;padding:16px 20px;color:var(--muted);font-size:13px}
.small{font-size:13px;color:var(--muted)}
.note{padding:12px 14px;border:1px solid var(--border);background:#fcfcff;border-radius:10px;margin:12px 0 16px} */

/* styles.css */
/* Premium, readable, print-friendly legal pages */

:root {
  --bg: #0b1020;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-2: rgba(255, 255, 255, 0.10);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --faint: rgba(255, 255, 255, 0.55);
  --line: rgba(255, 255, 255, 0.14);
  --accent: #7dd3fc;
  --accent-2: #a78bfa;
  --ok: #34d399;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.32);

  --max: 1120px;
  --side: 280px;

  --font: system-ui, -apple-system, Segoe UI, Roboto, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1200px 500px at 15% 10%, rgba(125, 211, 252, 0.20), transparent 55%),
    radial-gradient(1200px 500px at 85% 20%, rgba(167, 139, 250, 0.18), transparent 60%),
    radial-gradient(900px 420px at 50% 110%, rgba(52, 211, 153, 0.10), transparent 60%),
    var(--bg);
  line-height: 1.65;
  letter-spacing: -0.2px;
}

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

a:focus {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 8px;
}

::selection {
  background: rgba(125, 211, 252, 0.28);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 20px 44px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, rgba(11, 16, 32, 0.85), rgba(11, 16, 32, 0.45));
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
}

.logo {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: radial-gradient(circle at 25% 20%, rgba(125, 211, 252, 0.9), rgba(167, 139, 250, 0.55) 55%, rgba(255, 255, 255, 0.08) 70%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.brand .title {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand .title strong {
  font-weight: 820;
  letter-spacing: -0.4px;
}

.brand .title span {
  font-size: 12.5px;
  color: var(--muted);
}

.actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  color: var(--muted);
  font-size: 13px;
}

.pill code {
  font-family: var(--mono);
  color: var(--text);
  font-size: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.18), rgba(167, 139, 250, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-soft);
  color: var(--text);
  font-size: 13px;
  cursor: pointer;
}

.btn:hover {
  filter: brightness(1.06);
}

.btn:active {
  transform: translateY(1px);
}

.layout {
  display: grid;
  grid-template-columns: var(--side) 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 18px;
}

.sidebar {
  position: sticky;
  top: 78px;
  align-self: start;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.side-head {
  padding: 16px 16px 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.side-head .kicker {
  font-size: 12px;
  color: var(--faint);
}

.side-head .h {
  margin-top: 4px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.nav {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nav a {
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.10);
  color: var(--text);
}

.nav a[aria-current="page"] {
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.16), rgba(167, 139, 250, 0.14));
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text);
}

.nav .badge {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.10);
}

.content {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero {
  padding: 22px 22px 18px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(900px 300px at 20% 20%, rgba(125, 211, 252, 0.12), transparent 60%),
    radial-gradient(900px 300px at 80% 20%, rgba(167, 139, 250, 0.10), transparent 60%),
    rgba(255, 255, 255, 0.03);
}

.hero h1 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.6px;
}

.hero .sub {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.meta {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12.5px;
}

.article {
  padding: 22px;
}

.article h2 {
  margin: 22px 0 10px;
  font-size: 16px;
  letter-spacing: -0.3px;
}

.article h3 {
  margin: 18px 0 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: -0.2px;
}

.article p {
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.88);
}

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

.article .faint {
  color: var(--faint);
}

.hr {
  height: 1px;
  background: var(--line);
  margin: 18px 0;
}

blockquote {
  margin: 14px 0;
  padding: 12px 14px;
  border-left: 3px solid rgba(125, 211, 252, 0.55);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.86);
}

ul,
ol {
  margin: 10px 0 10px 18px;
  padding: 0;
}

li {
  margin: 6px 0;
  color: rgba(255, 255, 255, 0.88);
}

.code {
  font-family: var(--mono);
  font-size: 12.5px;
  padding: 2px 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

th,
td {
  text-align: left;
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  vertical-align: top;
}

th {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.70);
  font-weight: 750;
  letter-spacing: -0.2px;
  background: rgba(255, 255, 255, 0.04);
}

td {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

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

.footer {
  padding: 16px 22px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--faint);
  font-size: 12.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mobile-nav {
  display: none;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.mobile-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 980px) {
  :root {
    --side: 260px;
  }
}

@media (max-width: 860px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: none;
  }

  .mobile-nav {
    display: flex;
  }

  .topbar-inner {
    align-items: flex-start;
  }

  .brand {
    min-width: auto;
  }
}

/* Print */
@media print {
  body {
    background: #fff !important;
    color: #111 !important;
  }

  .topbar,
  .sidebar,
  .footer .right,
  .actions,
  .mobile-nav {
    display: none !important;
  }

  .content {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
    background: #fff !important;
  }

  .hero {
    background: #fff !important;
    border-bottom: 1px solid #ddd !important;
  }

  .article p,
  li {
    color: #111 !important;
  }

  th,
  td {
    border-bottom: 1px solid #ddd !important;
  }

  th {
    background: #f6f6f6 !important;
    color: #333 !important;
  }
}