/* 웰로그 웹 — 앱 디자인 토큰과 동일 팔레트 */
:root {
  --primary: #00B8A9;
  --primary-dark: #009688;
  --secondary: #FF7B6B;
  --accent: #FFC542;
  --bg: #F6F8FA;
  --card: #FFFFFF;
  --ink: #1F2937;
  --sub: #6B7280;
  --line: #E5E7EB;
  --success: #34C759;
  --danger: #FF4D4F;
  --radius: 20px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo",
    "Noto Sans KR", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  word-break: keep-all;
}
a { color: var(--primary); text-decoration: none; }
.container { max-width: 960px; margin: 0 auto; padding: 0 20px; }

/* Nav */
nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 248, 250, 0.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
nav .container { display: flex; align-items: center; justify-content: space-between; height: 60px; }
.logo { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 19px; color: var(--ink); }
.logo svg { width: 26px; height: 26px; }
nav .links { display: flex; gap: 18px; font-size: 14px; font-weight: 600; }
nav .links a { color: var(--sub); }
nav .links a.cta { color: #fff; background: var(--primary); padding: 8px 16px; border-radius: 999px; }

/* Hero */
.hero { padding: 72px 0 56px; text-align: center; }
.hero .mascot { width: 130px; height: 130px; margin: 0 auto 18px; animation: bob 2.4s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-8px);} }
.hero h1 { font-size: clamp(30px, 5.5vw, 46px); font-weight: 900; line-height: 1.3; }
.hero h1 .hl { color: var(--primary); }
.hero p.lead { margin: 16px auto 0; max-width: 560px; color: var(--sub); font-size: 17px; }
.badges { margin-top: 28px; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.store-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: #fff; font-weight: 700; font-size: 15px;
  padding: 13px 24px; border-radius: 14px;
}
.store-btn.soon { background: var(--card); color: var(--sub); border: 1.5px solid var(--line); }
.privacy-pill {
  display: inline-block; margin-top: 18px; font-size: 13px; font-weight: 600;
  color: var(--primary-dark); background: rgba(0, 184, 169, 0.1);
  padding: 7px 14px; border-radius: 999px;
}

/* Sections */
section { padding: 56px 0; }
section h2 { font-size: clamp(24px, 4vw, 32px); font-weight: 900; text-align: center; }
section p.sub { text-align: center; color: var(--sub); margin: 10px auto 36px; max-width: 520px; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 16px; }
.card {
  background: var(--card); border-radius: var(--radius); padding: 26px 22px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.card .icon {
  width: 46px; height: 46px; border-radius: 13px; display: flex;
  align-items: center; justify-content: center; font-size: 22px; margin-bottom: 14px;
}
.card h3 { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.card p { font-size: 14px; color: var(--sub); }

/* Steps */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.step { background: var(--card); border-radius: var(--radius); padding: 26px 22px; box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
.step::before {
  counter-increment: step; content: counter(step);
  display: inline-flex; width: 34px; height: 34px; border-radius: 50%;
  background: var(--primary); color: #fff; font-weight: 800;
  align-items: center; justify-content: center; margin-bottom: 12px;
}

/* Pricing */
.price-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; max-width: 640px; margin: 0 auto; }
.price {
  background: var(--card); border-radius: var(--radius); padding: 30px 24px; text-align: center;
  border: 2px solid var(--line);
}
.price.best { border-color: var(--primary); position: relative; }
.price.best .tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--secondary); color: #fff; font-size: 12px; font-weight: 800;
  padding: 4px 14px; border-radius: 999px;
}
.price .amount { font-size: 34px; font-weight: 900; margin: 8px 0 2px; }
.price .per { color: var(--sub); font-size: 14px; }
.price .trial { color: var(--success); font-weight: 800; font-size: 14px; margin-top: 8px; }
.price .note { color: var(--sub); font-size: 12px; margin-top: 10px; }

/* Disclaimer + Footer */
.disclaimer {
  max-width: 640px; margin: 0 auto; font-size: 13px; color: var(--sub);
  background: var(--card); border-radius: 14px; padding: 18px 20px; text-align: center;
}
footer { border-top: 1px solid var(--line); padding: 36px 0 48px; margin-top: 24px; }
footer .container { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; font-size: 13px; color: var(--sub); }
footer .links { display: flex; gap: 16px; }
footer .links a { color: var(--sub); }

/* Legal pages */
.legal { max-width: 760px; margin: 0 auto; padding: 48px 20px 80px; }
.legal h1 { font-size: 28px; font-weight: 900; margin-bottom: 6px; }
.legal .date { color: var(--sub); font-size: 13px; margin-bottom: 32px; }
.legal h2 { font-size: 19px; font-weight: 800; margin: 32px 0 10px; }
.legal p, .legal li { font-size: 15px; color: #374151; margin-bottom: 8px; }
.legal ul { padding-left: 22px; }
.legal .notice {
  background: rgba(255, 197, 66, 0.15); border-radius: 12px; padding: 14px 16px;
  font-size: 13px; color: #92600a; margin-bottom: 28px;
}
