:root {
  --bg: #0a0a0f;
  --panel: #13131b;
  --border: #23232e;
  --ink: #f4f4f6;
  --muted: #9a9aa8;
  --faint: #6b6b78;
  --accent: #7c7cff;
  --accent-2: #b07cff;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.wrap { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.prose { max-width: 760px; }

/* Header */
header.site {
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0;
  background: rgba(10,10,15,0.8);
  backdrop-filter: blur(10px);
  z-index: 10;
}
.site .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.wordmark { font-weight: 700; font-size: 19px; letter-spacing: -0.02em; }
.wordmark .dot { background: linear-gradient(90deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav a { color: var(--muted); font-size: 14px; margin-left: 22px; transition: color .15s; }
.nav a:hover { color: var(--ink); }

/* Hero */
.hero { padding: 96px 0 56px; text-align: center; }
.eyebrow { color: var(--accent); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.hero h1 { font-size: clamp(34px, 6vw, 56px); line-height: 1.08; letter-spacing: -0.03em; margin: 18px 0; font-weight: 800; }
.hero h1 .grad { background: linear-gradient(90deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p { color: var(--muted); font-size: clamp(16px, 2.5vw, 20px); max-width: 620px; margin: 0 auto; }

/* Products */
.products { padding: 24px 0 80px; }
.grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 640px) { .grid { grid-template-columns: 1fr; } }
.card {
  display: block; background: var(--panel); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px; transition: border-color .15s, transform .15s;
}
.card:hover { border-color: #3a3a52; transform: translateY(-2px); }
.card .name { font-weight: 700; font-size: 18px; display: flex; align-items: center; gap: 8px; }
.card .name .arrow { color: var(--faint); font-size: 15px; transition: transform .15s, color .15s; }
.card:hover .name .arrow { color: var(--accent); transform: translateX(3px); }
.card .domain { color: var(--accent); font-size: 13px; margin-top: 2px; }
.card .desc { color: var(--muted); font-size: 14.5px; margin-top: 10px; }

/* Footer */
footer.site { border-top: 1px solid var(--border); padding: 32px 0; }
footer .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
footer .copy { color: var(--faint); font-size: 13px; }
footer .links a { color: var(--muted); font-size: 13px; margin-left: 18px; }
footer .links a:first-child { margin-left: 0; }
footer .links a:hover { color: var(--ink); }

/* Legal pages */
.legal { padding: 56px 0 80px; }
.legal h1 { font-size: 34px; letter-spacing: -0.02em; font-weight: 800; }
.legal .updated { color: var(--faint); font-size: 14px; margin-top: 8px; }
.legal h2 { font-size: 20px; margin-top: 36px; font-weight: 700; }
.legal p { color: var(--muted); margin-top: 14px; }
.legal ul { color: var(--muted); margin-top: 12px; padding-left: 22px; }
.legal li { margin-top: 8px; }
.legal a { color: var(--accent); }
.legal strong { color: var(--ink); font-weight: 600; }
.legal code { background: var(--panel); border: 1px solid var(--border); border-radius: 5px; padding: 1px 6px; font-size: 13px; }
.legal .lead { color: var(--ink); font-size: 17px; }
