:root {
  /* Straight from Sources/UI/Theme.swift — cream paper, pastel yarn. */
  --paper: #F6F2E9;
  --paper-raised: #FEFCF8;
  --board-surface: #FDFBF6;
  --cell-empty: #EDE4D5;
  --line: #E7DCCC;

  --ink: #453C33;
  --ink-muted: #8B7F70;
  --ink-faint: #B8AB9A;

  /* Blossom palette accents */
  --rose: #F2B0C3;
  --rose-deep: #E95D85;
  --lavender: #978DD8;
  --lavender-deep: #5F4FC7;
  --sage: #C1D8AE;
  --sky: #75C9ED;
  --sky-deep: #2BB0E9;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px 64px;
}

.logo {
  display: inline-grid;
  grid-template-columns: repeat(5, 52px);
  grid-template-rows: repeat(2, 52px);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 36px;
}

.logo .cell {
  background: var(--board-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
}

.logo .dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
}

.logo .dot.green { background: var(--sage); }
.logo .dot.blue { background: var(--sky); }

.card {
  width: 100%;
  max-width: 560px;
  background: var(--board-surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px 32px;
}

h1 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 4px;
}

section:first-of-type h1 {
  margin-top: 0;
}

.subtitle {
  color: var(--ink-muted);
  font-size: 14px;
  margin: 0 0 28px;
}

.divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 36px 0;
}

h2 {
  font-size: 15px;
  font-weight: 600;
  margin: 28px 0 8px;
}

h2:first-of-type { margin-top: 0; }

p, li {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}

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

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

a {
  color: var(--sky-deep);
  text-decoration: none;
}

a:hover { text-decoration: underline; }

footer {
  margin-top: 32px;
  font-size: 13px;
  color: var(--ink-faint);
  text-align: center;
}

.email {
  font-weight: 600;
  color: var(--sky-deep);
}
