/* [project]/app/globals.css [app-client] (css) */
:root {
  --bg: #fbfbfa;
  --surface: #fff;
  --border: #e6e4e0;
  --text: #1f1e1c;
  --muted: #6b6862;
  --accent: #c65f3f;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #191817;
    --surface: #212020;
    --border: #34322e;
    --text: #f2f0ed;
    --muted: #a39e96;
    --accent: #e08161;
  }
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Apple SD Gothic Neo, Noto Sans KR, sans-serif;
  line-height: 1.6;
}

.page {
  max-width: 44rem;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}

.eyebrow {
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 .75rem;
  font-size: .75rem;
  font-weight: 600;
  display: inline-block;
}

h1 {
  letter-spacing: -.02em;
  margin: 0 0 .75rem;
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  line-height: 1.2;
}

.lead {
  color: var(--muted);
  margin: 0 0 2.5rem;
  font-size: 1.05rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 1.25rem;
  padding: 1.5rem;
}

.card h2 {
  margin: 0 0 .35rem;
  font-size: .95rem;
  font-weight: 600;
}

.card p {
  color: var(--muted);
  margin: 0 0 1.25rem;
  font-size: .875rem;
}

.badge {
  border: 1px solid var(--border);
  color: var(--muted);
  vertical-align: middle;
  border-radius: 999px;
  margin-left: .5rem;
  padding: .15rem .5rem;
  font-size: .7rem;
  font-weight: 600;
  display: inline-block;
}

.counter {
  align-items: center;
  gap: .75rem;
  display: flex;
}

.counter button {
  border: 1px solid var(--border);
  background: var(--bg);
  width: 2.5rem;
  height: 2.5rem;
  color: var(--text);
  cursor: pointer;
  border-radius: 8px;
  font-size: 1.15rem;
  transition: border-color .15s;
}

.counter button:hover {
  border-color: var(--accent);
}

.counter output {
  font-variant-numeric: tabular-nums;
  text-align: center;
  min-width: 3rem;
  font-size: 1.5rem;
  font-weight: 600;
}

dl {
  grid-template-columns: auto 1fr;
  gap: .6rem 1.5rem;
  margin: 0;
  font-size: .875rem;
  display: grid;
}

dt {
  color: var(--muted);
}

dd {
  font-variant-numeric: tabular-nums;
  margin: 0;
}

code {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: .1rem .35rem;
  font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, monospace;
  font-size: .85em;
}

footer {
  color: var(--muted);
  text-align: center;
  margin-top: 2.5rem;
  font-size: .8rem;
}

/*# sourceMappingURL=app_globals_0yg4wg8.css.map*/