/* 공개 사이트 — 앱과 같은 남색·호박색 계열. 로그인 없이 보는 페이지. */
:root { --bg: #0c1220; --bg2: #101a2e; --panel: rgba(255,255,255,0.035); --line: rgba(255,255,255,0.09); --text: #e9edf5; --muted: rgba(233,237,245,0.62); --faint: rgba(233,237,245,0.34); --brand: #f0b429; --link: #9cc4ff; --good: #3ecf8e; --warn: #f0b429; --bad: #ff5d5d; --orange: #ff9b45; --font: 'Noto Sans KR','Segoe UI',system-ui,sans-serif; }
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: linear-gradient(180deg, var(--bg), var(--bg2)); color: var(--text); font-family: var(--font); line-height: 1.7; font-size: 15px; min-height: 100vh; }
a { color: var(--link); text-decoration: none; } a:hover { text-decoration: underline; }
.wrap { max-width: 980px; margin: 0 auto; padding: 0 20px; }
header { position: sticky; top: 0; background: rgba(12,18,32,0.92); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); z-index: 10; }
header .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 62px; gap: 12px; flex-wrap: wrap; padding-top: 8px; padding-bottom: 8px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--text); font-weight: 900; } .brand .bar { width: 8px; height: 28px; background: var(--brand); border-radius: 2px; } .brand small { display: block; font-weight: 400; font-size: 10px; color: var(--faint); letter-spacing: .12em; }
nav { display: flex; gap: 2px; flex-wrap: wrap; } nav a { padding: 6px 10px; border-radius: 6px; font-size: 13px; font-weight: 600; color: var(--muted); } nav a.on, nav a:hover { color: var(--brand); background: rgba(240,180,41,0.12); text-decoration: none; }
main { padding: 48px 0 56px; }
.kicker { font-size: 11px; font-weight: 700; letter-spacing: .16em; color: var(--brand); margin-bottom: 8px; }
h1 { font-size: clamp(26px, 4.2vw, 40px); font-weight: 900; line-height: 1.22; margin-bottom: 14px; max-width: 820px; }
h2 { font-size: 20px; font-weight: 800; margin: 40px 0 12px; } h3 { font-size: 15px; font-weight: 700; margin: 16px 0 6px; }
p { color: var(--muted); margin-bottom: 12px; } .lead { font-size: 17px; color: rgba(233,237,245,0.8); max-width: 760px; }
.grid { display: grid; gap: 12px; } .g2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); } .g3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 20px; } .card h3 { margin-top: 0; }
.btn, button { display: inline-block; font: inherit; font-weight: 700; font-size: 14px; color: var(--text); background: rgba(255,255,255,0.06); border: 1px solid var(--line); border-radius: 8px; padding: 10px 16px; cursor: pointer; }
.btn.primary, button.primary { background: var(--brand); color: #1a1200; border-color: transparent; } .btn:hover, button:hover { text-decoration: none; background: rgba(255,255,255,0.11); } .btn.primary:hover, button.primary:hover { background: #ffc94d; }
input, select, textarea { font: inherit; color: var(--text); background: rgba(0,0,0,0.25); border: 1px solid var(--line); border-radius: 8px; padding: 10px 12px; width: 100%; } textarea { min-height: 120px; resize: vertical; }
label { display: block; font-size: 13px; color: var(--muted); font-weight: 600; margin-bottom: 4px; } .field { margin-bottom: 14px; }
.chk { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--text); margin-bottom: 10px; } .chk input { width: auto; margin-top: 4px; }
table { width: 100%; border-collapse: collapse; font-size: 14px; } th, td { text-align: left; padding: 9px 8px; border-bottom: 1px solid var(--line); vertical-align: top; } th { font-size: 11px; letter-spacing: .06em; color: var(--faint); text-transform: uppercase; }
.price { font-size: 26px; font-weight: 900; } .price small { font-size: 12px; color: var(--muted); font-weight: 400; }
.tag { font-size: 11px; padding: 2px 7px; border-radius: 4px; background: rgba(255,255,255,0.07); color: var(--muted); } .tag.on { color: var(--good); } .tag.dev { color: var(--warn); } .tag.no { color: var(--faint); }
.note { border: 1px solid rgba(240,180,41,0.35); background: rgba(240,180,41,0.07); border-radius: 10px; padding: 12px 14px; font-size: 13px; color: #ffe2a3; }
.good { border-color: rgba(62,207,142,0.4); background: rgba(62,207,142,0.08); color: #bdf2da; }
.steps { counter-reset: s; list-style: none; } .steps li { counter-increment: s; padding: 10px 0 10px 44px; position: relative; border-bottom: 1px dashed var(--line); color: var(--text); } .steps li::before { content: counter(s); position: absolute; left: 0; top: 10px; width: 30px; height: 30px; border-radius: 50%; background: rgba(240,180,41,0.16); color: var(--brand); font-weight: 900; display: flex; align-items: center; justify-content: center; }
footer { border-top: 1px solid var(--line); padding: 22px 0; font-size: 12px; color: var(--faint); } footer .wrap { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.small { font-size: 12px; } .muted { color: var(--muted); } .faint { color: var(--faint); } .mono { font-family: Consolas, monospace; font-size: 12px; }
@media (max-width: 720px) { main { padding: 28px 0 40px; } }
@media print { header, footer, nav, .noprint { display: none !important; } body { background: #fff; color: #111; } .card { border-color: #ccc; background: #fff; } }
