:root {
  color-scheme: light;
  --bg: #f7f8fb;
  --panel: #ffffff;
  --text: #17202a;
  --muted: #5c6672;
  --border: #d9dee7;
  --accent: #3057d5;
}

* {
  box-sizing: border-box;
}

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

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

.page {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0 28px;
}

.header a {
  font-weight: 700;
  text-decoration: none;
}

.hero {
  padding: 84px 0 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(2.3rem, 7vw, 4.8rem);
  line-height: 1;
}

h2 {
  margin: 32px 0 10px;
  font-size: 1.25rem;
}

.lede {
  max-width: 620px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.18rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--border);
}

.notice,
.content {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
  padding: 28px;
}

.content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

ul {
  padding-left: 1.25rem;
}

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

code {
  overflow-wrap: anywhere;
}

@media (max-width: 560px) {
  .page {
    width: min(100% - 24px, 920px);
    padding-top: 16px;
  }

  .hero {
    padding: 48px 0 36px;
  }

  .notice,
  .content {
    padding: 20px;
  }
}
