:root{
  --brand:#1d4ed8;
  --brand-dark:#1e3a8a;
  --brand-light:#dbeafe;
  --accent:#f59e0b;
  --ok:#059669;
  --warn:#dc2626;
  --ink:#0f172a;
  --muted:#475569;
  --line:#e2e8f0;
  --bg:#f8fafc;
  --white:#ffffff;

  --radius-sm:8px;
  --radius:12px;
  --radius-lg:18px;

  --shadow-sm:0 1px 2px rgba(15,23,42,.06);
  --shadow:0 4px 14px rgba(15,23,42,.08);
  --shadow-lg:0 12px 40px rgba(15,23,42,.16);

  --font:'Pretendard','Apple SD Gothic Neo','Malgun Gothic',-apple-system,sans-serif;

  --header-h:56px;
  --content-max:980px;
}

*,*::before,*::after{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:var(--font);
  background:var(--bg);
  color:var(--ink);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
a{color:var(--brand);text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%;display:block}
button{font-family:inherit}
