:root {
  --purple: #5746e3;
  --lavender: #eeedfc;
  --ink: #1f1f1f;
  --muted: #5f6368;
  --line: #dadada;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: #fff;
}

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

.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  background: var(--purple);
  color: #fff;
  padding: 64px 0 56px;
  text-align: center;
}

header .mark {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 18px;
  background: #fff;
  display: grid;
  place-items: center;
}

header .mark svg {
  width: 44px;
  height: 44px;
}

header h1 {
  margin: 0 0 8px;
  font-size: 34px;
  letter-spacing: -0.02em;
}

header p {
  margin: 0 auto;
  max-width: 30em;
  opacity: 0.85;
}

nav {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  font-size: 14px;
}

nav .wrap {
  display: flex;
  gap: 20px;
  align-items: center;
}

nav .brand {
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  margin-right: auto;
}

section {
  padding: 48px 0;
}

h2 {
  font-size: 22px;
  margin: 32px 0 12px;
}

h3 {
  font-size: 17px;
  margin: 24px 0 8px;
}

ol {
  padding-left: 20px;
}

ol li {
  margin-bottom: 8px;
}

.features {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  padding: 0;
  list-style: none;
}

.features li {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}

.features strong {
  display: block;
  margin-bottom: 4px;
}

.features span {
  color: var(--muted);
  font-size: 14px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 12px 0;
}

th,
td {
  border: 1px solid var(--line);
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--lavender);
}

.note {
  background: var(--lavender);
  border-radius: 12px;
  padding: 16px;
  font-size: 14px;
}

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 48px;
  color: var(--muted);
  font-size: 13px;
}

footer a {
  margin-right: 16px;
}

.updated {
  color: var(--muted);
  font-size: 14px;
}

.shots {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin: 20px 0 8px;
}

.shots figure {
  margin: 0;
}

.shots img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: block;
}

.shots figcaption {
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
}
