:root {
  --color-bg: #ffffff;
  --color-text: #16181d;
  --color-text-muted: #5a5f6b;
  --color-ink: #0c0e13;
  --color-accent: #3a5ddb;
  --color-accent-dark: #2944a8;
  --color-border: #e6e8ef;
  --font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  --font-mono: "SF Mono", "Consolas", monospace;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: var(--font-base); color: var(--color-text); background: #eef0f5; line-height: 1.65; }
.page { max-width: 760px; margin: 0 auto; background: #fff; padding: 56px 56px 40px; }
a { color: var(--color-accent-dark); }
h2 { font-size: 1.25rem; margin: 0 0 14px; }
p { color: var(--color-text-muted); margin: 0 0 12px; }

.p-header { text-align: center; border-bottom: 2px solid var(--color-ink); padding-bottom: 20px; margin-bottom: 32px; }
.logo { display: flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-mono); font-weight: 800; font-size: 1.6rem; margin: 0; color: var(--color-ink); }
.logo img { display: block; }
.logo span { color: var(--color-accent); }
.tagline { margin: 6px 0 0; font-size: 0.95rem; }

.p-section { margin-bottom: 44px; }
.check-list { padding-left: 0; list-style: none; }
.check-list li { padding: 8px 0 8px 26px; border-bottom: 1px dashed var(--color-border); position: relative; color: var(--color-text); font-size: 0.95rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--color-accent); font-weight: 800; }
.check-list li:last-child { border-bottom: none; }

.timeline { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.timeline li { display: flex; gap: 14px; align-items: flex-start; }
.timeline-num { display: flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 50%; background: var(--color-accent); color: #fff; font-family: var(--font-mono); font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }
.timeline strong { display: block; font-size: 0.95rem; margin-bottom: 2px; color: var(--color-text); }
.timeline p { margin: 0; font-size: 0.86rem; }

.sample-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 16px; }
.sample { display: flex; flex-direction: column; gap: 8px; font-size: 0.82rem; font-weight: 700; color: var(--color-text); text-decoration: none; }
.swatch { display: block; height: 60px; border-radius: 8px; }
.s1 { background: linear-gradient(135deg, #7c9885, #5e7a68); }
.s2 { background: linear-gradient(135deg, #2a1f14, #c79a56); }
.s3 { background: linear-gradient(135deg, #2bb3a3, #1d8f82); }
.s4 { background: linear-gradient(135deg, #0d1b2e, #2e6fd9); }
.s5 { background: linear-gradient(135deg, #5c4632, #2f3b52); }
.s6 { background: linear-gradient(135deg, #14161c, #6a5cff); }

.price-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.price-table th, .price-table td { padding: 9px 8px; border-bottom: 1px solid var(--color-border); text-align: left; }
.price-table th { color: var(--color-text-muted); font-weight: 700; font-size: 0.8rem; }
.price-table td:nth-child(2) { font-family: var(--font-mono); white-space: nowrap; }
.hint { font-size: 0.78rem; margin-top: 8px; }

.cta-section { text-align: center; background: var(--color-ink); color: #fff; padding: 36px 28px; border-radius: 14px; }
.cta-section h2 { color: #fff; }
.cta-section p { color: rgba(255,255,255,0.72); }
.btn-cta { display: inline-block; margin: 8px 6px 0; padding: 12px 22px; background: var(--color-accent); color: #fff; border-radius: 6px; font-weight: 700; text-decoration: none; }
.btn-cta:hover { background: var(--color-accent-dark); }
.btn-cta-ghost { background: transparent; border: 1px solid rgba(255,255,255,0.5); color: #fff; }
.btn-cta-ghost:hover { background: rgba(255,255,255,0.1); }

.p-footer { text-align: center; margin-top: 28px; font-size: 0.76rem; color: var(--color-text-muted); font-style: italic; }

@media (max-width: 640px) {
  .page { padding: 32px 20px; }
  .sample-grid { grid-template-columns: repeat(2, 1fr); }
}

@media print {
  body { background: #fff; }
  .page { box-shadow: none; }
}

/* Mobile line-wrap fix: Korean text wraps at word boundaries, not mid-syllable */
body { word-break: keep-all; overflow-wrap: break-word; }
@media (max-width: 640px) {
  .lg-break { display: none; }
}
