/* ════════════════════════════════════════════════════════════════
   SMONEYLAB SHOP — 베이지 미니멀 하우스 토큰 (smoneylab-landing 재사용)
   ════════════════════════════════════════════════════════════════ */
:root {
  --bg:          #E8E6E0;
  --panel:       #F6F4EF;
  --ink:         #0E0E0E;
  --body:        #5A5A55;
  --accent:      #1F8A5B;
  --accent-soft: rgba(31,138,91,0.08);
  --rule:        #D6D2C8;
  --ink-inv:     #F6F4EF;

  --mono: 'IBM Plex Mono', ui-monospace, monospace;
  --sans: 'Pretendard', system-ui, -apple-system, sans-serif;
  --maxw: 1080px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }

.mono {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--accent);
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 3rem 1.25rem;
  text-align: center;
}
.hero h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; }
.hero .sub { color: var(--body); max-width: 34rem; }

.btn {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.7rem 1.4rem;
  background: var(--ink);
  color: var(--ink-inv);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
}
.btn:hover { background: var(--accent); }

footer {
  border-top: 1px solid var(--rule);
  background: var(--panel);
  color: var(--body);
  font-size: 0.82rem;
  text-align: center;
  padding: 1.1rem 1.25rem;
}
footer a { color: var(--body); }
