:root {
  --bg: #f7f6fd;
  --surface: #ffffff;
  --heading: #2d2a5a;
  --text: #3b3860;
  --muted: #6e6a8f;
  --primary: #6c5ce7;
  --border: #e4e0f5;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo',
    'Malgun Gothic', system-ui, sans-serif;
  line-height: 1.75;
  font-size: 16px;
}
.wrap { max-width: 720px; margin: 0 auto; padding: 40px 20px 80px; }
header { display: flex; align-items: center; gap: 10px; margin-bottom: 32px; }
header a { color: var(--primary); font-weight: 700; text-decoration: none; font-size: 20px; }
h1 { color: var(--heading); font-size: 28px; line-height: 1.35; margin: 0 0 8px; }
h2 { color: var(--heading); font-size: 19px; margin: 36px 0 10px; }
.meta { color: var(--muted); font-size: 14px; margin: 0 0 28px; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
}
p { margin: 0 0 14px; }
ul { margin: 0 0 14px; padding-left: 20px; }
li { margin-bottom: 6px; }
a { color: var(--primary); }
.notice {
  background: #edeafb;
  border-radius: 16px;
  padding: 18px 20px;
  margin: 24px 0;
  color: var(--heading);
}
.steps { counter-reset: step; list-style: none; padding: 0; }
.steps li { counter-increment: step; padding-left: 36px; position: relative; margin-bottom: 14px; }
.steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 2px;
  width: 24px; height: 24px; border-radius: 12px;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}
footer { margin-top: 48px; color: var(--muted); font-size: 14px; text-align: center; }
