/* 정적 정책 페이지(/privacy /terms /refund /safety /pricing) 공용 스타일 */
:root {
  --paper: #0a0a0b;
  --cream: #050506;
  --surface: #18181b;
  --surface-hi: #27272a;
  --bright: #f4f4f5;
  --dim: #a1a1aa;
  --limewash: #c6f84e;
  --field: #a8e030;
  --border: rgba(255, 255, 255, 0.08);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--cream);
  color: var(--bright);
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100dvh;
}
a { color: inherit; }
header.site {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 5, 6, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
header.site .row {
  max-width: 56rem;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.back, .brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  text-decoration: none;
  color: var(--bright);
}
.back {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--surface);
  border-radius: 9999px;
  padding: 8px 14px;
  font-size: 13px;
  min-height: 40px;
}
.back:hover { border-color: var(--limewash); }
.back:active { transform: scale(0.97); background: var(--surface-hi); }
.brand img { width: 32px; height: 32px; border-radius: 8px; }
.brand .domain {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-weight: 600;
  color: rgba(244, 244, 245, 0.5);
  margin-left: 6px;
  font-size: 12px;
}
article {
  max-width: 56rem;
  margin: 0 auto;
  padding: 48px 20px 32px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--surface);
  border-radius: 9999px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--field);
}
.kicker .dot { width: 6px; height: 6px; border-radius: 9999px; background: currentColor; }
h1 {
  margin: 18px 0 12px;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.effective {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 244, 245, 0.55);
}
.intro {
  margin-top: 26px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(244, 244, 245, 0.82);
}
section.block { margin-top: 36px; }
section.block h2 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.01em;
}
section.block h3 {
  margin: 18px 0 8px;
  font-size: 16px;
  font-weight: 800;
  color: var(--limewash);
}
section.block p, section.block li {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(244, 244, 245, 0.78);
}
section.block ul, section.block ol {
  padding-left: 22px;
  margin: 8px 0 0;
}
section.block ul li, section.block ol li { margin-top: 6px; }
section.block strong { color: var(--bright); }
.callout {
  margin-top: 40px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 18px;
  padding: 22px;
}
.callout p { margin: 0; }
.callout .label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 244, 245, 0.55);
}
.callout a {
  color: var(--limewash);
  font-weight: 700;
  text-decoration: none;
  margin-top: 6px;
  display: inline-block;
}
.callout a:hover { text-decoration: underline; }
.plan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}
.plan {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 20px;
  padding: 24px;
}
.plan h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--bright);
}
.plan .price {
  margin-top: 6px;
  font-size: 28px;
  font-weight: 900;
  color: var(--limewash);
}
.plan .price small {
  font-size: 12px;
  font-weight: 700;
  color: rgba(244, 244, 245, 0.6);
}
.plan p.tagline {
  margin: 10px 0 14px;
  font-size: 14px;
  color: rgba(244, 244, 245, 0.7);
  line-height: 1.6;
}
.plan ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.plan ul li {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(244, 244, 245, 0.82);
  padding: 6px 0 6px 22px;
  position: relative;
}
.plan ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: var(--limewash);
}
footer.site {
  border-top: 1px solid var(--border);
  padding: 28px 20px 40px;
  margin-top: 32px;
}
footer.site .row {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(244, 244, 245, 0.55);
}
footer.site nav { display: flex; flex-wrap: wrap; gap: 4px 8px; }
footer.site nav a {
  text-decoration: none;
  font-weight: 700;
  color: rgba(244, 244, 245, 0.78);
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 10px;
  border-radius: 9999px;
}
footer.site nav a:hover { color: var(--bright); background: var(--surface); }
footer.site nav a:active { transform: scale(0.97); background: var(--surface-hi); color: var(--bright); }
.table-like {
  margin-top: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.table-like .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}
.table-like .row:last-child { border-bottom: 0; }
.table-like .row:nth-child(odd) { background: var(--surface); }
.table-like .head { font-weight: 800; color: var(--bright); font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; }
.table-like .cell { font-size: 14px; color: rgba(244, 244, 245, 0.82); }
@media (min-width: 640px) {
  h1 { font-size: 44px; }
  article { padding-top: 64px; }
  .intro { font-size: 17px; }
  section.block p, section.block li { font-size: 16px; }
  .plan-grid { grid-template-columns: 1fr 1fr; }
}
