:root {
  color-scheme: light;
  --ink: #10110f;
  --paper: #f2f3ee;
  --card: #fff;
  --muted: #6f726a;
  --accent: #b8ff45;
  --sans: Montserrat, "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --body: "Source Sans Pro", "Helvetica Neue", Arial, sans-serif;
  --shell: min(760px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.5;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  border-bottom: 1px solid #282a26;
  background: var(--ink);
  color: #f6f6f1;
}

.header-inner {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-size: 11px;
  text-decoration: none;
}

.wordmark-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  background: var(--accent);
  color: #172000;
  font-family: Georgia, serif;
  font-size: 18px;
  font-style: italic;
  letter-spacing: 0;
}

.empty-preview {
  margin: clamp(48px, 12vw, 110px) auto 32px;
  padding: clamp(28px, 7vw, 56px);
  border: 1px solid #cfd2ca;
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 18px 55px rgba(20, 24, 17, 0.08);
  text-align: center;
}

.eyebrow {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1 {
  margin: 9px 0 0;
  font-family: var(--sans);
  font-size: clamp(32px, 7vw, 52px);
  letter-spacing: -0.05em;
  line-height: 1.03;
}

p {
  max-width: 500px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 16px;
}

.primary-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 0 22px;
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.primary-link:hover,
.primary-link:focus-visible {
  background: #292c26;
  outline: 2px solid #65a700;
  outline-offset: 3px;
}

@media (max-width: 480px) {
  .header-inner > span {
    display: none;
  }

  .empty-preview {
    margin-top: 30px;
  }
}
