:root {
  --bg: #f4f7f6;
  --bg-muted: #eef2f0;
  --surface: #ffffff;
  --border: #dde6e1;
  --text: #14221c;
  --text-muted: #5b6963;
  --brand: #0ea66c;
  --brand-soft: #e7f7ef;
  --shadow: 0 18px 50px rgba(18, 34, 27, 0.06);
  font-family: Inter, 'Noto Sans KR', 'Apple SD Gothic Neo', system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,p { margin: 0; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(820px, calc(100% - 32px)); }
.topbar { position: sticky; top: 0; z-index: 30; border-bottom: 1px solid rgba(20,34,28,.08); backdrop-filter: blur(16px); background: rgba(244,247,246,.88); }
.topbar__inner,.footer__inner { display:flex; align-items:center; justify-content:space-between; gap:20px; padding:16px 0; }
.brand { font-size:1.15rem; font-weight:800; letter-spacing:-.03em; }
.nav { display:flex; gap:18px; color:var(--text-muted); font-size:.95rem; }
.hero,.section { padding:88px 0; }
.hero__grid,.split,.detailGrid { display:grid; grid-template-columns:1.1fr .9fr; gap:28px; align-items:center; }
.eyebrow { display:inline-flex; align-items:center; min-height:36px; padding:0 12px; border-radius:999px; background:var(--brand-soft); color:#0b8f5b; font-size:.92rem; font-weight:700; }
h1,.pageTitle { margin-top:18px; font-size:clamp(2.2rem,4vw,4.2rem); line-height:1.1; letter-spacing:-.04em; }
h2 { font-size:clamp(1.6rem,2.4vw,2.6rem); line-height:1.2; letter-spacing:-.03em; }
h3 { font-size:1.08rem; line-height:1.35; }
.hero__copy,.pageCopy,.sectionTitle p,.card p,.heroCard p,.panel p,.previewCard p,.faqItem p,.bossCard p,.detailCard p { color:var(--text-muted); }
.hero__copy,.pageCopy { margin-top:16px; max-width:680px; font-size:1.05rem; }
.hero__actions,.ctaActions { display:flex; flex-wrap:wrap; gap:12px; margin-top:28px; }
.button { display:inline-flex; align-items:center; justify-content:center; min-height:48px; padding:0 18px; border-radius:14px; border:1px solid transparent; font-weight:700; }
.button--primary { background:var(--brand); color:#fff; box-shadow:var(--shadow); }
.button--secondary { background:var(--surface); border-color:var(--border); }
.button--full { width:100%; }
.hero__meta,.tagRow { display:flex; flex-wrap:wrap; gap:10px; margin-top:22px; }
.hero__meta span,.tagRow span,.bossCard__meta { display:inline-flex; align-items:center; min-height:34px; padding:0 12px; border-radius:999px; background:var(--surface); border:1px solid var(--border); color:#51605a; font-size:.92rem; }
.heroCardWrap,.cardGrid,.previewGrid,.faqList,.listGrid { display:grid; gap:18px; }
.heroCard,.card,.panel,.previewCard,.faqItem,.ctaBox,.bossCard,.detailCard { background:var(--surface); border:1px solid var(--border); border-radius:24px; box-shadow:var(--shadow); }
.heroCard,.card,.panel,.previewCard,.faqItem,.bossCard,.detailCard,.ctaBox { padding:24px; }
.heroCard--sub { margin-left:44px; }
.heroCard__label { display:inline-block; margin-bottom:14px; color:#0b8f5b; font-size:.84rem; font-weight:800; }
.section--muted { background:var(--bg-muted); }
.sectionTitle { margin-bottom:28px; }
.sectionTitle--left { margin-bottom:20px; }
.cardGrid--three,.previewGrid { grid-template-columns:repeat(3,minmax(0,1fr)); }
.bulletList { margin:0; padding-left:20px; }
.bulletList li+li { margin-top:12px; }
.previewCard--link,.textLink { transition:transform .18s ease,border-color .18s ease; }
.previewCard--link:hover,.textLink:hover { transform:translateY(-2px); }
.pageIntro { padding-bottom:36px; }
.listGrid { grid-template-columns:repeat(3,minmax(0,1fr)); }
.bossCard__meta { margin-bottom:14px; width:fit-content; }
.bossCard h2 { font-size:1.3rem; }
.bossCard p { margin-top:12px; min-height:72px; }
.textLink { display:inline-flex; margin-top:18px; font-weight:700; color:#0b8f5b; }
.detailCard--side { align-self:start; }
.ctaSection { padding-top:20px; }
.ctaBox { display:flex; justify-content:space-between; gap:24px; }
.footer { padding:28px 0 40px; color:#63726c; border-top:1px solid rgba(20,34,28,.08); background:#f0f4f2; }
.footer__inner--stack { display:grid; gap:18px; align-items:start; }
.footer__brandBlock { display:grid; gap:6px; }
.footer__brandBlock strong { font-size:1rem; color:var(--text); }
.footer__brandBlock span,.footer__bottom span { color:#697771; font-size:.92rem; }
.footer__infoGrid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; padding:16px 0; border-top:1px solid rgba(20,34,28,.06); border-bottom:1px solid rgba(20,34,28,.06); }
.footer__label { display:block; margin-bottom:6px; color:#8a9791; font-size:.8rem; font-weight:700; letter-spacing:.02em; text-transform:uppercase; }
.footer__infoGrid p { color:var(--text); font-size:.96rem; }
.footer__bottom { display:flex; flex-wrap:wrap; justify-content:space-between; gap:12px 20px; }
@media (max-width:980px){ .hero__grid,.split,.detailGrid,.cardGrid--three,.previewGrid,.listGrid,.ctaBox,.footer__infoGrid{ grid-template-columns:1fr; display:grid; } .heroCard--sub{ margin-left:0; } }
@media (max-width:720px){ .container,.narrow{ width:min(100% - 24px,1120px); } .topbar__inner,.footer__inner,.nav,.footer__bottom{ flex-direction:column; align-items:flex-start; } .hero,.section{ padding:72px 0; } .heroCard,.card,.panel,.previewCard,.faqItem,.bossCard,.detailCard,.ctaBox{ padding:20px; border-radius:20px; } }
