:root {
  --bg: #184971;
  --ink: #EFDD99;
  --ink-soft: rgba(239, 221, 153, 0.62);
  --rule: rgba(239, 221, 153, 0.22);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 640px;
  margin: 0 auto;
  padding: 64px 24px 48px;
}

.wordmark {
  font-family: 'Crimson Pro', Georgia, serif;
  font-weight: 700;
  font-size: 52px;
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
}

.tagline {
  font-family: 'Crimson Pro', Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.35;
  color: var(--ink);
  margin: 18px 0 0;
}

.label {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin: 0;
}

h1.page-title {
  font-family: 'Crimson Pro', Georgia, serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 12px 0 0;
  color: var(--ink);
}

h2 {
  font-family: 'Crimson Pro', Georgia, serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  margin: 36px 0 12px;
  color: var(--ink);
}

p {
  margin: 0 0 16px;
  color: var(--ink);
}

p.muted {
  color: var(--ink-soft);
}

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

a:hover {
  text-decoration-thickness: 2px;
}

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

ul li {
  margin-bottom: 8px;
}

.rule {
  border: 0;
  border-top: 1px dashed var(--rule);
  margin: 40px 0;
}

.screenshots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 40px auto 0;
  width: calc(100vw - 48px);
  max-width: 1200px;
  margin-left: 50%;
  transform: translateX(-50%);
}

.screenshots img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .screenshots {
    grid-template-columns: repeat(2, 1fr);
    max-width: 640px;
  }
}

@media (max-width: 520px) {
  .screenshots {
    grid-template-columns: 1fr;
    max-width: 360px;
    gap: 24px;
  }
}

.section + .section {
  margin-top: 40px;
}

.site-footer {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px dashed var(--rule);
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 12px;
  color: var(--ink-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: baseline;
}

.site-footer nav {
  display: flex;
  gap: 16px;
}

.site-footer a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

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

@media (max-width: 480px) {
  .container { padding: 40px 20px 32px; }
  .wordmark { font-size: 40px; }
  .tagline { font-size: 19px; }
  h1.page-title { font-size: 28px; }
  h2 { font-size: 19px; }
}
