/* Shared look for the marketing pages (landing + account). The base reset,
   typography, link/image defaults, the top nav, and the .btn family live here
   so the two pages stay consistent; page-specific layout (hero, features,
   gallery, account card) stays inline in each page. Ships verbatim — not
   bundled, not denylisted by tools/build.mjs. */

:root { color-scheme: dark; }
* { box-sizing: border-box; }

body {
  margin: 0; padding: 0;
  background: #0d0d0d; color: #ddd;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  line-height: 1.6; font-size: 15px;
}
a { color: #9ab1ff; }
a:hover { text-decoration: underline; }
img { image-rendering: pixelated; }

main { max-width: 880px; margin: 0 auto; padding: 0 20px 72px; }

/* Top nav — brand on the left, the auth chip (#account-link) on the right. */
.site-nav {
  max-width: 880px; margin: 0 auto; padding: 16px 20px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.site-nav .brand {
  text-decoration: none; color: #fff; letter-spacing: 2px;
  text-transform: uppercase; font-size: 15px;
}
.site-nav .brand:hover { text-decoration: none; color: #9ab1ff; }

/* Call-to-action buttons. */
.cta { margin: 28px 0 8px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.btn {
  display: inline-block; text-decoration: none;
  padding: 12px 22px; border-radius: 6px;
  border: 1px solid #3a3a3a; color: #ddd; background: #161616;
  font-size: 15px; letter-spacing: 0.5px; white-space: nowrap;
}
.btn:hover { border-color: #6a7bd0; text-decoration: none; background: #1c1c1c; }
.btn.primary { background: #9ab1ff; border-color: #9ab1ff; color: #0d0d0d; font-weight: 700; }
.btn.primary:hover { background: #b3c4ff; border-color: #b3c4ff; }
