:root {
  --deep-blue: #2e3a59;
  --gold: #b8893a;
  --parchment: #f4f1ea;
  --slate: #44464f;
  --hairline: #e2dccf;
  --bg: #fbfaf7;
}

* {
  box-sizing: border-box;
}

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

.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 20px 64px;
}

header.site {
  border-bottom: 1px solid var(--hairline);
  background: #fff;
}

header.site .wrap {
  padding: 20px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--deep-blue);
  text-decoration: none;
}

nav a {
  color: var(--deep-blue);
  text-decoration: none;
  margin-left: 16px;
  font-size: 15px;
}

nav a:hover {
  text-decoration: underline;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--deep-blue);
  line-height: 1.25;
}

h1 {
  font-size: 32px;
  margin-bottom: 4px;
}

h2 {
  font-size: 22px;
  margin-top: 32px;
}

h3 {
  font-size: 18px;
  margin-top: 24px;
}

a {
  color: var(--gold);
}

.meta {
  color: #8a8a8a;
  font-size: 14px;
  margin-top: 0;
}

.draft {
  background: #fff7e6;
  border: 1px solid var(--gold);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  margin: 20px 0;
}

.card {
  background: var(--parchment);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 20px 0;
}

ul {
  padding-left: 22px;
}

footer.site {
  border-top: 1px solid var(--hairline);
  color: #8a8a8a;
  font-size: 13px;
}

footer.site .wrap {
  padding: 24px 20px;
  text-align: center;
}

.tile {
  display: block;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 12px 0;
  text-decoration: none;
  color: var(--deep-blue);
}

.tile:hover {
  border-color: var(--gold);
}

.tile .t {
  font-weight: 600;
  font-size: 17px;
}

.tile .d {
  color: var(--slate);
  font-size: 14px;
}

/* --- Marketing landing --- */
.hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #fff 0%, var(--parchment) 100%);
  padding: 48px 20px;
}

.hero-inner {
  max-width: 680px;
  text-align: center;
}

.kicker {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--gold);
  margin: 0 0 8px;
}

.hero-title {
  font-size: 52px;
  margin: 0 0 16px;
}

.hero-sub {
  font-size: 20px;
  line-height: 1.6;
  color: var(--slate);
  margin: 0 auto 16px;
  max-width: 600px;
}

.hero-note {
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 28px;
}

.hero-points {
  display: inline-block;
  text-align: left;
  color: var(--slate);
}

.hero-points > div {
  margin: 8px 0;
}

.hero-points span {
  color: var(--gold);
  margin-right: 8px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
}

.app-link a {
  color: var(--deep-blue);
  font-weight: 600;
}

.fineprint {
  padding-top: 4px;
}

@media (max-width: 520px) {
  .hero-title {
    font-size: 40px;
  }
  .hero-sub {
    font-size: 18px;
  }
}
