:root {
  --accent: #d76683;
  --accent-soft: #fdebf0;
  --ink: #18151a;
  --muted: #68616b;
  --line: #e9e3e9;
  --surface: #fff;
  --background: #faf8fa;
}

* { box-sizing: border-box; }
html { color-scheme: light; }
body {
  margin: 0;
  background: var(--background);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Pretendard", "Segoe UI", sans-serif;
  line-height: 1.68;
}
a { color: var(--accent); }
.shell { max-width: 820px; margin: 0 auto; padding: 32px 20px 80px; }
nav { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 48px; }
nav .brand { color: var(--ink); font-weight: 800; text-decoration: none; margin-right: auto; }
nav a:not(.brand) { color: var(--muted); font-size: 14px; text-decoration: none; }
.mark { display: inline-block; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); margin-right: 8px; }
header { margin-bottom: 36px; }
.eyebrow { color: var(--accent); font-weight: 750; letter-spacing: .06em; text-transform: uppercase; font-size: 12px; }
h1 { margin: 8px 0 12px; font-size: clamp(36px, 7vw, 64px); line-height: 1.02; letter-spacing: -.045em; }
h2 { margin: 38px 0 10px; font-size: 22px; letter-spacing: -.02em; }
h3 { margin: 24px 0 6px; font-size: 17px; }
p, li { color: #332e35; }
.lede { color: var(--muted); font-size: 18px; max-width: 670px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 22px; margin: 18px 0; }
.notice { background: var(--accent-soft); border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0; }
.button { display: inline-block; padding: 12px 18px; border-radius: 999px; background: var(--accent); color: white; text-decoration: none; font-weight: 700; }
.button.secondary { background: white; color: var(--ink); border: 1px solid var(--line); }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th, td { border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; padding: 12px 8px; }
th { color: var(--muted); font-weight: 650; }
footer { color: var(--muted); border-top: 1px solid var(--line); margin-top: 60px; padding-top: 24px; font-size: 13px; }
.hisstory { --accent: #6f76dd; --accent-soft: #eeefff; }
@media (max-width: 560px) {
  nav { align-items: flex-start; }
  nav .brand { flex-basis: 100%; }
  .shell { padding-top: 22px; }
  .card { padding: 18px; }
}
