:root {
  --bg: #fff8f6;
  --text: #1a1a1a;
  --muted: #6b7280;
  --mint: #00c9a7;
  --mint-deep: #0d9488;
  --orange: #ff7a45;
  --pink: #ff6b9d;
  --card: rgba(255, 255, 255, 0.92);
  --line: rgba(0, 0, 0, 0.06);
  --shadow: 0 18px 40px rgba(255, 122, 69, 0.08), 0 8px 20px rgba(0, 0, 0, 0.04);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Pretendard", "Noto Sans KR", "Segoe UI", "Malgun Gothic", sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--bg);
  position: relative;
  overflow-x: hidden;
}
body::before,
body::after {
  content: "";
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
  pointer-events: none;
}
body::before {
  top: -120px;
  right: -80px;
  background: rgba(255, 107, 157, 0.35);
}
body::after {
  bottom: -140px;
  left: -100px;
  background: rgba(255, 154, 72, 0.28);
}
.topbar,
.wrap {
  position: relative;
  z-index: 1;
}
.topbar {
  max-width: 920px;
  margin: 0 auto;
  padding: 18px 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.brand-lock {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ff6b9d, #ff7a45);
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  box-shadow: 0 8px 18px rgba(255, 107, 157, 0.35);
}
.brand-text {
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}
.brand-text span {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.kakao {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
}
.kakao .ico {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fee500;
  color: #191919;
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  font-weight: 900;
}
.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 28px 20px 72px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  flex: 1;
  max-width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 69, 0.55));
}
.eyebrow::after {
  background: linear-gradient(90deg, rgba(255, 122, 69, 0.55), transparent);
}
h1 {
  margin: 0;
  font-size: 1.7rem;
  letter-spacing: -0.03em;
  font-weight: 900;
}
h1 .grad {
  background: linear-gradient(90deg, #ff7a45, #ff6b9d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.meta {
  color: var(--muted);
  font-size: 0.84rem;
  margin-top: 10px;
}
.panel {
  margin-top: 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
h2 {
  font-size: 1.02rem;
  margin: 26px 0 8px;
  color: #111;
  letter-spacing: -0.02em;
}
.panel h2:first-child { margin-top: 0; }
p, li { color: #374151; font-size: 0.92rem; }
ul { padding-left: 1.15em; }
li { margin: 5px 0; }
.note {
  margin-top: 24px;
  background: linear-gradient(135deg, #e8fff8, #fff4ec);
  border: 1px solid rgba(13, 148, 136, 0.12);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 0.86rem;
  color: #4b5563;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
  font-size: 0.86rem;
  font-weight: 700;
}
.nav a {
  color: #111;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.nav a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
}
.nav a:nth-child(2)::before { background: var(--orange); }
.nav a:nth-child(3)::before { background: var(--pink); }
.nav a:hover { color: var(--mint-deep); }
.nav a .ext { color: var(--muted); font-weight: 600; }
dl { margin: 0; }
dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  margin-top: 16px;
  letter-spacing: 0.04em;
}
dd {
  margin: 4px 0 0;
  font-size: 0.98rem;
  font-weight: 600;
}
