:root {
  --bg: #f2eff8;
  --surface: #ffffff;
  --border: #ddd;
  --text: #111827;
  --muted: #687385;
  --primary: #5850ec;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: ui-sans-serif, system-ui; background: var(--bg); color: var(--text); }
.topbar { display:flex; justify-content:space-between; align-items:center; padding:12px 20px; background:#fff; border-bottom:1px solid var(--border); position:sticky; top:0; z-index:20; }
.brand { display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--text); font-weight:700; }
.brand img { width:28px; height:28px; border-radius:8px; }
nav { display:flex; align-items:center; gap:10px; }
nav a { text-decoration:none; color:var(--text); padding:8px 10px; border-radius:8px; }
nav a:hover { background:#f6f6fb; }
.store-cta {
  background: #16a34a;
  color: #fff !important;
  font-weight: 700;
  border-radius: 10px;
  padding: 9px 12px !important;
}
.store-cta:hover { background:#15803d; }
main { max-width:1100px; margin:20px auto; padding:0 16px 30px; }
.site-footer { max-width:1100px; margin:0 auto 24px; padding:0 16px; display:flex; flex-wrap:wrap; gap:10px 16px; }
.site-footer a { color:var(--muted); text-decoration:none; font-size:14px; }
.site-footer a:hover { text-decoration:underline; }
.hero { display:grid; grid-template-columns:1.3fr .9fr; gap:16px; }
.card { background:var(--surface); border:1px solid var(--border); border-radius:14px; padding:14px; }
.promo ul { margin:10px 0 0 18px; }
.actions { display:flex; gap:10px; margin-top:14px; }
.btn { border:1px solid var(--border); background:#fff; color:var(--text); border-radius:10px; padding:10px 14px; cursor:pointer; text-decoration:none; display:inline-flex; align-items:center; justify-content:center; }
.btn.primary { background:var(--primary); color:#fff; border-color:transparent; }
.store-hero-cta {
  background:#16a34a;
  color:#fff;
  border-color:#16a34a;
  font-weight:700;
}
.store-hero-cta:hover { background:#15803d; border-color:#15803d; }
.btn.ghost { background:transparent; }
.hidden { display:none !important; }
.auth-wrap { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.auth-card form { display:flex; flex-direction:column; gap:10px; }
input, textarea { width:100%; border:1px solid var(--border); border-radius:10px; padding:10px; font:inherit; }
.search { margin:8px 0 14px; }
.grid { display:grid; gap:10px; }
.notice { display:flex; gap:12px; align-items:flex-start; }
.notice h3 { margin:0 0 2px; font-size:18px; }
.notice small { color:var(--muted); }
.tags { display:flex; flex-wrap:wrap; gap:6px; margin-top:8px; }
.tag { background:#eef0ff; color:#3047d4; border-radius:999px; padding:3px 8px; font-size:12px; }
.muted { color:var(--muted); }
.notice-actions { display:flex; gap:8px; margin-top:10px; }
.steps { margin-top:12px; display:grid; gap:10px; }
.step img { width:100%; max-height:260px; object-fit:cover; border-radius:10px; margin-top:8px; }
.legal-page { background:var(--surface); border:1px solid var(--border); border-radius:14px; padding:18px; }
.legal-page h1 { margin-top:0; margin-bottom:6px; }
.legal-page h2 { margin-top:18px; margin-bottom:6px; font-size:20px; }
.legal-page p, .legal-page li { line-height:1.55; }
.legal-page ul { padding-left:20px; }
.legal-form { display:grid; gap:8px; max-width:620px; }
.legal-form label { font-weight:600; font-size:14px; }
.checkline { display:flex; align-items:flex-start; gap:8px; font-weight:400 !important; }
.checkline input { width:auto; margin-top:3px; }
@media (max-width: 860px) {
  .hero, .auth-wrap { grid-template-columns:1fr; }
  .store-cta { order:-1; }
}

