/* why? — the app's own palette. Near-black paper, warm ink, and the wordmark
   in ui-serif, which resolves to New York on Apple devices: the same typeface
   the app icon and the shield are drawn in. */
:root {
  --bg: #0d0c0b;
  --bg2: #141311;
  --ink: #f0eee7;
  --ink2: #a8a49a;
  --ink3: #78746b;
  --line: rgba(240, 238, 231, 0.09);
  --card: rgba(240, 238, 231, 0.035);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.75;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, sans-serif;
  -webkit-font-smoothing: antialiased;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px 90px;
}

header.site {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 44px;
}

header.site img {
  width: 52px;
  height: 52px;
  border-radius: 13px;
}

.brand {
  font-family: ui-serif, "New York", Georgia, serif;
  font-size: 23px;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.crumb {
  color: var(--ink3);
  font-size: 13px;
}

h1 {
  font-size: 34px;
  letter-spacing: -0.8px;
  font-weight: 500;
  margin: 8px 0 4px;
}

.meta {
  color: var(--ink3);
  font-size: 13px;
  margin-bottom: 30px;
}

h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 40px 0 8px;
  letter-spacing: -0.2px;
  color: var(--ink);
}

h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 22px 0 6px;
  color: var(--ink);
}

p,
li {
  color: var(--ink2);
  font-size: 15px;
}

ul {
  padding-left: 20px;
  margin: 8px 0;
}

li {
  margin: 4px 0;
}

a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--ink3);
}

a:hover {
  text-decoration-color: var(--ink);
}

.lead {
  font-size: 16.5px;
  color: var(--ink2);
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
  margin: 22px 0;
}

.card p:first-child {
  margin-top: 0;
}

.card p:last-child {
  margin-bottom: 0;
}

footer.site {
  margin-top: 70px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  color: var(--ink3);
  font-size: 13px;
}

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

footer.site a:hover {
  color: var(--ink);
}

.toplinks {
  margin-left: auto;
  display: flex;
  gap: 16px;
}

/* Landing page only. */
.hero {
  padding: 90px 0 20px;
}

.wordmark {
  font-family: ui-serif, "New York", Georgia, serif;
  font-size: clamp(64px, 16vw, 108px);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
  font-weight: 400;
}

.tagline {
  font-size: 19px;
  color: var(--ink2);
  margin: 22px 0 0;
}

/* The hero's second paragraph: quieter and narrower than the tagline above it,
   so the two do not read as one block of the same grey. */
.hero .lead {
  margin: 20px 0 0;
  max-width: 48ch;
  color: var(--ink3);
}

.soon {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 14px;
  color: var(--ink2);
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--ink2);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .dot { animation: none; }
}

.points {
  margin-top: 70px;
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.point {
  background: var(--bg2);
  padding: 22px 24px;
}

.point h3 {
  margin: 0 0 5px;
}

.point p {
  margin: 0;
  font-size: 14.5px;
}
