/* simpct.com */

:root {
  --bg: #f8f8f7;
  --surface: #ffffff;
  --text: #1a1a1c;
  --muted: #707078;
  --accent: #654ea3;
  --border: #e2e2e0;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0e0e14;
    --surface: #161622;
    --text: #e6e6ee;
    --muted: #88889a;
    --accent: #9b87f5;
    --border: #28283c;
  }
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 48px 24px 32px;
  gap: 32px;
}

.hdr {
  text-align: center;
  max-width: 480px;
}

.hdr h1 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.tagline {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.products {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 480px;
}

.card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.card:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.card-body {
  padding: 24px;
}

.card-body h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.card-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 10px;
}

.card-link {
  font-size: 12px;
  color: var(--accent);
}

.site-footer {
  text-align: center;
  padding: 24px 16px;
  font-size: 13px;
  border-top: 1px solid var(--border);
  margin-top: auto;
  width: 100%;
  max-width: 480px;
}

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