:root {
  color-scheme: light;
  --ink: #24212a;
  --muted: #625d68;
  --line: rgba(58, 48, 68, 0.14);
  --soft: #f8f1f4;
  --panel: #ffffff;
  --accent: #7b3f68;
  --blue: #466f86;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fffafc;
}

header,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 252, 0.9);
}

footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  color: var(--muted);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
}

.brand img {
  border-radius: 8px;
}

main {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
}

.title-block {
  padding: 72px 0 38px;
}

.kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1;
}

h2 {
  margin-bottom: 12px;
  font-size: 23px;
}

p,
li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.updated {
  color: var(--blue);
  font-weight: 700;
}

.notice {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.notice ul {
  margin: 0;
  padding-left: 20px;
}

.policy {
  padding: 34px 0 70px;
}

article {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

article:last-child {
  border-bottom: 0;
}

@media (max-width: 720px) {
  header,
  footer {
    padding: 16px 18px;
  }

  .title-block {
    padding-top: 46px;
  }

  .notice {
    padding: 18px;
  }
}
