/* 노리트레일 — 내추럴 파스텔 (라이트 고정, 디자인_가이드라인.md) */
:root {
  --bg: #FAF7E6; --surface: #FFFFFF; --leaf: #CFE39A; --leaf-soft: #E9F1CF;
  --apricot: #F7D389; --accent: #4E7A2A; --ink: #3B3F2A; --muted: #6E7355; --line: #E7E0C2;
  color-scheme: only light;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg); color: var(--ink);
  font-family: Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", system-ui, sans-serif;
  line-height: 1.65; word-break: keep-all; overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 860px; margin: 0 auto; padding: 0 22px; }
a { color: var(--accent); }

header.site { padding: 18px 0; }
header.site .wrap { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 800; color: var(--accent); font-size: 17px; text-decoration: none; }
.logo small { color: var(--muted); font-weight: 600; }
nav a { margin-left: 16px; font-size: 14px; text-decoration: none; color: var(--muted); }

.hero { padding: 64px 0 40px; position: relative; overflow: hidden; }
.hero h1 { font-size: clamp(30px, 6vw, 46px); line-height: 1.3; letter-spacing: -0.01em; }
.hero p.lead { margin-top: 14px; font-size: 17px; color: var(--muted); max-width: 34em; }
.blob { position: absolute; border-radius: 48% 52% 55% 45%/55% 45% 55% 45%; z-index: -1; }
.b1 { width: 300px; height: 260px; background: var(--leaf-soft); top: -80px; right: -60px; }
.b2 { width: 200px; height: 170px; background: #F8ECCB; bottom: -60px; left: -70px; }

.badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.badge { background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 14px; font-size: 13px; font-weight: 700; color: var(--accent); }

section { padding: 44px 0; }
h2.sec { font-size: 24px; margin-bottom: 6px; }
p.sub { color: var(--muted); margin-bottom: 24px; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 20px; }
.step .no { width: 30px; height: 30px; border-radius: 50%; background: var(--leaf); color: #33401D;
  font-weight: 800; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.step h3 { font-size: 16px; margin-bottom: 6px; }
.step p { font-size: 13.5px; color: var(--muted); }

.axes { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; }
.axis { background: var(--leaf-soft); border-radius: 16px; padding: 18px 20px; }
.axis b { display: block; margin-bottom: 4px; color: var(--accent); }
.axis span { font-size: 13.5px; color: var(--ink); }

.safe { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 26px 28px; }
.safe ul { list-style: none; }
.safe li { padding-left: 26px; position: relative; margin-bottom: 12px; font-size: 15px; }
.safe li::before { content: ''; position: absolute; left: 0; top: 8px; width: 12px; height: 12px;
  border-radius: 50%; background: var(--leaf); }
.safe li b { color: var(--accent); }
.honest { margin-top: 16px; font-size: 14px; color: var(--muted); border-top: 1px dashed var(--line); padding-top: 16px; }

.cta { background: var(--leaf-soft); border-radius: 20px; padding: 34px; text-align: center; }
.cta h2 { font-size: 22px; margin-bottom: 8px; }
.cta p { color: var(--muted); margin-bottom: 18px; }
.btn { display: inline-block; background: var(--leaf); color: #33401D; font-weight: 800;
  padding: 13px 26px; border-radius: 14px; text-decoration: none; }

footer.site { border-top: 1px solid var(--line); padding: 28px 0 40px; margin-top: 30px; }
footer.site .wrap { font-size: 12.5px; color: var(--muted); }
footer.site a { color: var(--muted); }
footer.site .links { margin-bottom: 10px; }
footer.site .links a { margin-right: 14px; font-weight: 700; }

/* 문서 페이지 */
.doc { background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
  padding: 34px 34px 40px; margin: 30px 0 50px; }
.doc h1 { font-size: 26px; margin-bottom: 4px; }
.doc .meta { color: var(--muted); font-size: 13px; margin-bottom: 26px; }
.doc h2 { font-size: 18px; margin: 28px 0 10px; color: var(--accent); }
.doc p, .doc li { font-size: 15px; margin-bottom: 8px; }
.doc ul, .doc ol { padding-left: 22px; margin-bottom: 10px; }
.doc table { width: 100%; border-collapse: collapse; margin: 10px 0 16px; font-size: 14px; }
.doc th, .doc td { border: 1px solid var(--line); padding: 8px 11px; text-align: left; vertical-align: top; }
.doc th { background: var(--bg); }
.doc .note { background: var(--leaf-soft); border-radius: 12px; padding: 14px 16px; font-size: 13.5px; margin: 14px 0; }
@media (max-width: 560px) { .doc { padding: 24px 18px 30px; } .doc table { font-size: 12.5px; } }
