:root {
  color-scheme: light dark;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: #20252d;
  background: #f6f7f9;
  font-size: 17px;
  line-height: 1.7;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 28px;
}
main {
  max-width: 760px;
  margin: auto;
}
header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 100px;
  font-weight: 600;
}
header a {
  text-decoration: none;
  color: inherit;
}
h1 {
  font-size: clamp(38px, 7vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.045em;
  margin: 18px 0 28px;
}
h2 {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.025em;
}
a {
  color: #3155a6;
  text-underline-offset: 3px;
}
.eyebrow {
  font-size: 14px;
  letter-spacing: 0.03em;
  color: #596576;
}
.intro {
  font-size: 22px;
  max-width: 640px;
}
section {
  margin: 48px 0;
}
footer {
  border-top: 1px solid #d8dce4;
  padding: 26px 0 36px;
  margin-top: 60px;
  font-size: 14px;
}
li {
  margin: 12px 0;
}
.policy header {
  margin-bottom: 60px;
}
.policy h1 {
  font-size: 42px;
}
@media (prefers-color-scheme: dark) {
  :root {
    background: #11151c;
    color: #e6eaf0;
  }
  a {
    color: #a6beff;
  }
  .eyebrow {
    color: #acb7c8;
  }
  footer {
    border-color: #303844;
  }
}
@media (max-width: 480px) {
  body {
    padding: 22px;
  }
  header {
    margin-bottom: 70px;
  }
  .intro {
    font-size: 20px;
  }
}
