:root {
  color-scheme: light;
  --bg: #fbfaf9;
  --ink: #002e15;
  --muted: #5a595b;
  --gold: #f7d452;
  --green: #738b4d;
  font-family: Raleway, sans-serif;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-width: 320px;
}

.site {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 2rem 1.25rem 3rem;
  text-align: center;
}

.brand {
  margin: 0;
  color: var(--ink);
  font-family: Bungee, sans-serif;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.lede {
  margin: 0;
  max-width: 22rem;
  color: var(--muted);
}

.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1.6rem;
  border-radius: 24px;
  background: var(--green);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.note {
  margin: 0;
  max-width: 24rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.note a {
  color: var(--ink);
}
