:root {
  --bg: #0a0b0e;
  --card: #14171f;
  --card-border: #222634;
  --text: #f0f2f8;
  --text-muted: #8a90a0;
  --accent: #00e676;
  --gold: #ffd54f;
  --max-width: 960px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

header.site {
  padding: 28px 0;
  border-bottom: 1px solid var(--card-border);
}

header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 20px;
  color: var(--text);
}

.brand .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

nav.site-nav a {
  color: var(--text-muted);
  margin-left: 24px;
  font-size: 14px;
  font-weight: 600;
}

nav.site-nav a:hover {
  color: var(--text);
  text-decoration: none;
}

/* Hero */
.hero {
  padding: 96px 0 72px;
  text-align: center;
}

.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--gold);
  background: rgba(255, 213, 79, 0.12);
  border: 1px solid rgba(255, 213, 79, 0.35);
  border-radius: 8px;
  padding: 5px 12px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.hero h1 span {
  color: var(--accent);
}

.hero p.sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 12px;
  border: 1px solid var(--card-border);
  background: var(--card);
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  cursor: default;
  opacity: 0.7;
}

.store-badge .coming-soon {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  display: block;
}

/* Feature grid */
.features {
  padding: 40px 0 80px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 640px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 34px;
  }
}

.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 24px;
}

.card .icon {
  font-size: 22px;
  margin-bottom: 14px;
  display: block;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.card.pro {
  border-color: rgba(255, 213, 79, 0.35);
  background: linear-gradient(180deg, rgba(255,213,79,0.06), rgba(20,23,31,1));
}

.card.pro h3 {
  color: var(--gold);
}

/* Legal pages */
.legal {
  padding: 56px 0 96px;
}

.legal h1 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 4px;
}

.legal .updated {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 40px;
}

.legal h2 {
  font-size: 18px;
  font-weight: 800;
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal p, .legal li {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.legal ul {
  padding-left: 20px;
}

.legal strong {
  color: var(--text);
}

footer.site {
  border-top: 1px solid var(--card-border);
  padding: 28px 0;
  color: var(--text-muted);
  font-size: 13px;
}

footer.site .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

footer.site a {
  color: var(--text-muted);
  margin-left: 18px;
}

footer.site a:first-child {
  margin-left: 0;
}
