
:root {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --text: #15171a;
  --muted: #626b78;
  --line: #e4e8ef;
  --brand: #2563eb;
  --brand-dark: #1746b5;
  --soft: #eef4ff;
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, #eef5ff 0, #f7f8fb 360px, var(--bg) 100%);
  line-height: 1.72;
  word-break: keep-all;
}
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); text-decoration: underline; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.24);
  font-weight: 900;
}
.nav { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.nav a { color: #334155; font-size: 14px; font-weight: 650; }
.nav a.active { color: var(--brand); }
main { max-width: 1080px; margin: 0 auto; padding: 42px 22px 70px; }
.hero {
  padding: 56px 0 34px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}
.eyebrow { color: var(--brand); font-weight: 800; letter-spacing: 0.08em; font-size: 13px; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.25; letter-spacing: -0.04em; }
h1 { margin: 12px 0 16px; font-size: clamp(34px, 6vw, 58px); }
h2 { margin: 0 0 18px; font-size: clamp(26px, 4vw, 36px); }
h3 { margin: 34px 0 12px; font-size: 23px; }
h4 { margin: 24px 0 10px; font-size: 18px; }
p { margin: 0 0 14px; }
.lead { font-size: 18px; color: #475569; max-width: 720px; }
.hero-card, .card, .policy-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card { padding: 28px; }
.hero-card ul { padding-left: 20px; margin: 10px 0 0; color: #475569; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  background: var(--brand);
  color: white;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22);
}
.button.secondary { background: var(--surface); color: var(--brand); border: 1px solid #bfdbfe; box-shadow: none; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.card { padding: 22px; }
.card h3 { margin-top: 0; font-size: 20px; }
.card p { color: #52606f; }
.page-title { padding: 28px 0 22px; }
.meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 18px;
  background: var(--soft);
  border: 1px solid #dbeafe;
  border-radius: 18px;
  margin: 18px 0 28px;
  color: #334155;
}
.meta div { display: flex; gap: 8px; }
.meta strong { min-width: 90px; color: #172033; }
.policy-card { padding: 34px; }
.policy-card > section { padding-top: 2px; }
.policy-card section + section { border-top: 1px solid var(--line); margin-top: 32px; padding-top: 30px; }
.policy-card ol, .policy-card ul { padding-left: 24px; margin-top: 8px; }
.policy-card li { margin: 6px 0; }
.table-wrap { overflow-x: auto; margin: 14px 0 20px; border: 1px solid var(--line); border-radius: 16px; }
table { width: 100%; border-collapse: collapse; min-width: 640px; background: #fff; }
th, td { text-align: left; padding: 13px 15px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: #f1f5f9; color: #273449; font-weight: 800; }
tr:last-child td { border-bottom: 0; }
.notice {
  padding: 16px 18px;
  border-radius: 16px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #7c2d12;
}
.footer {
  border-top: 1px solid var(--line);
  background: #fff;
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 26px 22px;
  color: var(--muted);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; padding-top: 34px; }
  .grid { grid-template-columns: 1fr; }
  .meta { grid-template-columns: 1fr; }
  .policy-card { padding: 24px 18px; }
  .header-inner { align-items: flex-start; flex-direction: column; }
  .nav { gap: 10px 14px; }
  table { min-width: 560px; }
}

/* Context Clip final refinements */
strong { font-weight: 800; }
.hero-card li + li { margin-top: 8px; }
@media (max-width: 520px) {
  main { padding: 28px 18px 56px; }
  .hero { padding-top: 26px; gap: 22px; }
  h1 { font-size: clamp(32px, 10vw, 44px); }
  .lead { font-size: 16px; }
  .button { width: 100%; }
  .actions { gap: 10px; }
  .hero-card { padding: 22px 18px; }
  .footer-inner { flex-direction: column; }
}
