:root {
  --bg: #0a0a0a;
  --panel: #161618;
  --text: #f2f2f2;
  --muted: #9a9aa0;
  --accent: #7c5cff;
  --border: #2a2a2e;
  --radius: 16px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--bg);
  color: var(--text);
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 880px; margin: 0 auto; padding: 0 24px; }

header.site {
  position: sticky; top: 0; z-index: 10;
  background: rgba(10,10,10,.8); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
header.site .wrap { display: flex; align-items: center; gap: 14px; height: 60px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 19px; color: var(--text); text-decoration: none; }
.logo .mark { width: 30px; height: 30px; border-radius: 8px; background: linear-gradient(135deg, #7c5cff, #4bc0ff); display: inline-flex; align-items: center; justify-content: center; font-size: 16px; }
nav.top { margin-left: auto; display: flex; gap: 20px; }
nav.top a { color: var(--muted); text-decoration: none; font-size: 15px; }
nav.top a:hover { color: var(--text); }

.hero { text-align: center; padding: 84px 0 48px; }
.hero h1 { font-size: 52px; line-height: 1.1; letter-spacing: -0.02em; }
.hero h1 span { background: linear-gradient(135deg, #7c5cff, #4bc0ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.tag { color: var(--muted); font-size: 21px; margin: 18px auto 0; max-width: 560px; }

.store-badges { display: flex; gap: 14px; justify-content: center; margin: 34px 0 8px; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px; border-radius: 14px; text-decoration: none;
  border: 1px solid var(--border); font-weight: 600; font-size: 16px;
}
.badge.appstore { background: var(--text); color: #000; border-color: transparent; }
.badge.play { background: transparent; color: var(--muted); cursor: default; }
.badge.play small { font-weight: 400; }

.shots { display: flex; gap: 16px; justify-content: center; padding: 44px 0 10px; flex-wrap: wrap; }
.shot {
  width: 230px; aspect-ratio: 9 / 19.5; border-radius: 28px;
  border: 1px solid var(--border); background: var(--panel);
  object-fit: cover; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 14px;
}
img.shot { display: block; }

section.features { padding: 56px 0; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-top: 28px; }
.card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.card h3 { font-size: 17px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }
h2.sec { font-size: 30px; text-align: center; letter-spacing: -0.01em; }

article.legal { padding: 56px 0 80px; max-width: 760px; margin: 0 auto; }
article.legal h1 { font-size: 34px; margin-bottom: 6px; }
article.legal p.updated { color: var(--muted); font-size: 14px; margin-bottom: 30px; }
article.legal h2 { font-size: 21px; margin: 34px 0 10px; }
article.legal p, article.legal li { color: #cfcfd4; font-size: 16px; }
article.legal ul { padding-left: 22px; margin: 10px 0; }
article.legal a { color: var(--accent); }
article.legal table { border-collapse: collapse; width: 100%; margin: 14px 0; font-size: 15px; }
article.legal th, article.legal td { text-align: left; padding: 9px 12px; border-bottom: 1px solid var(--border); }
article.legal th { color: var(--muted); font-weight: 600; }

footer.site { border-top: 1px solid var(--border); padding: 34px 0 44px; color: var(--muted); font-size: 14px; }
footer.site .wrap { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
footer.site a { color: var(--muted); text-decoration: none; }
footer.site a:hover { color: var(--text); }
footer.site .spacer { flex: 1; }

@media (max-width: 640px) {
  .hero h1 { font-size: 36px; }
  .hero p.tag { font-size: 18px; }
  nav.top { display: none; }
}
