:root {
  color-scheme: light;
  --bg: #fbfbfa;
  --ink: #171717;
  --muted: #5f6368;
  --line: #dedbd3;
  --panel: #ffffff;
  --accent: #111111;
}

* {
  box-sizing: border-box;
}

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

a {
  color: var(--accent);
  font-weight: 700;
}

.page {
  margin: 0 auto;
  max-width: 1040px;
  padding: 28px 20px 56px;
}

.nav {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding-bottom: 18px;
}

.brand {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero,
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 22px;
  padding: 24px;
}

.hero {
  padding: 34px;
}

.eyebrow {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 8px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.02;
  margin: 0;
  max-width: 820px;
}

h2 {
  font-size: 24px;
  line-height: 1.2;
  margin: 0 0 10px;
}

p {
  color: var(--muted);
  margin: 10px 0 0;
}

ul,
ol {
  color: var(--muted);
  margin: 12px 0 0;
  padding-left: 22px;
}

.grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 22px;
}

.button {
  background: var(--ink);
  border-radius: 8px;
  color: #ffffff;
  display: inline-block;
  margin-top: 18px;
  padding: 12px 16px;
  text-decoration: none;
}

.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 18px;
}

.notice {
  background: #fff8e5;
  border: 1px solid #ead59a;
  border-radius: 8px;
  margin-top: 18px;
  padding: 14px;
}

.checkbox-example {
  align-items: flex-start;
  display: flex;
  gap: 12px;
}

.empty-checkbox {
  background: #ffffff;
  border: 2px solid #8d8a82;
  border-radius: 4px;
  display: inline-block;
  flex: 0 0 auto;
  height: 20px;
  margin-top: 2px;
  width: 20px;
}
