@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,400;0,600;1,400&family=Source+Serif+4:opsz,wght@8..60,500&display=swap');

/* Tokens copied from docs/product/design-system/styles.css: this site ships without the kit. */
:root {
  color-scheme: light;
  --canvas: #ffffff;
  --paper: #f8f9f6;
  --ink: #20251f;
  --ink-soft: #3f4940;
  --ink-muted: #667066;
  --hedge: #365a3b;
  --hedge-ink: #f7f8f4;
  --attention-readable: #9b4d35;
  --border: rgba(32, 37, 31, 0.12);
  --link: #2f6a45;
  --font-sans: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --canvas: #181c18;
    --paper: #232823;
    --ink: #edf0e9;
    --ink-soft: #c7cec3;
    --ink-muted: #aab3a6;
    --hedge: #243a2a;
    --hedge-ink: #f3f5f0;
    --attention-readable: #e5a287;
    --border: rgba(239, 243, 235, 0.1);
    --link: #b5d0a4;
  }
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
}

.masthead {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 64px;
  padding: 0 24px;
  background: var(--hedge);
  color: var(--hedge-ink);
}

.masthead img {
  display: block;
  width: 104px;
}

.masthead nav {
  display: flex;
  gap: 18px;
  margin-left: auto;
}

.masthead nav a {
  color: var(--hedge-ink);
  font-size: 15px;
  text-decoration: none;
  text-underline-offset: 3px;
}

.masthead nav a:hover,
.masthead nav a[aria-current='page'] {
  text-decoration: underline;
}

.page {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 96px;
}

.kicker {
  margin: 0 0 12px;
  color: var(--attention-readable);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 46px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h2 {
  margin: 40px 0 8px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h3 {
  margin: 24px 0 4px;
  font-size: 18px;
  font-weight: 600;
}

p,
li {
  color: var(--ink-soft);
}

ul {
  padding-left: 22px;
}

li + li {
  margin-top: 6px;
}

a {
  color: var(--link);
  text-underline-offset: 3px;
}

strong {
  color: var(--ink);
}

code {
  font-size: 0.9em;
  overflow-wrap: anywhere;
}

.meta {
  margin: 12px 0 0;
  color: var(--ink-muted);
  font-size: 15px;
}

.callout {
  margin: 24px 0;
  padding: 14px 18px;
  border-left: 3px solid var(--hedge);
  background: var(--paper);
}

.callout p {
  margin: 0;
}

.links {
  display: grid;
  gap: 10px;
  margin-top: 32px;
}

.links a {
  display: block;
  padding: 14px 16px;
  border-left: 3px solid var(--hedge);
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
}

.links span {
  display: block;
  color: var(--ink-muted);
  font-size: 15px;
}

.foot {
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--ink-muted);
  font-size: 15px;
}
