:root {
  font-family: Inter, "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #20242c;
  background: #f4f5f7;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
header {
  max-width: 1180px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 34px 36px;
  font-size: 14px;
  color: #676d78;
}
.brand {
  font-size: 26px;
  font-weight: 850;
  letter-spacing: -2px;
  color: #215ae9;
}
.brand span {
  color: #20242c;
}
.badge {
  margin-left: auto;
  background: #e7ebf3;
  border-radius: 30px;
  padding: 7px 13px;
  font-size: 12px;
}
main {
  max-width: 1180px;
  margin: 70px auto 90px;
  padding: 0 36px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: center;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 700;
  color: #215ae9;
}
h1 {
  font-size: 54px;
  line-height: 1.28;
  letter-spacing: -2px;
  margin: 22px 0;
}
.lead {
  font-size: 17px;
  line-height: 1.9;
  color: #696f78;
}
ul {
  list-style: none;
  padding: 0;
  margin: 35px 0 0;
}
li {
  font-size: 14px;
  margin: 20px 0;
}
li:before {
  content: "✓";
  color: #215ae9;
  padding-right: 13px;
}
.plan {
  padding: 36px;
  background: white;
  border: 1px solid #e4e6eb;
  border-radius: 20px;
  box-shadow: 0 20px 70px #252e4210;
}
.plan-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.plan-top h2 {
  font-size: 20px;
  margin: 0;
}
.plan-top span {
  font-size: 12px;
  color: #747b87;
}
.price {
  font-size: 68px;
  letter-spacing: -3px;
  font-weight: 700;
  margin: 30px 0;
}
.price > span {
  font-size: 30px;
  vertical-align: 18px;
  margin-right: 8px;
}
.price small {
  font-size: 15px;
  letter-spacing: 0;
  color: #747b87;
  font-weight: 400;
}
.rule {
  height: 1px;
  background: #e9ebef;
}
dl {
  margin: 25px 0 30px;
}
dl > div {
  display: flex;
  justify-content: space-between;
  margin: 18px 0;
  font-size: 14px;
}
dt {
  color: #747b87;
}
dd {
  margin: 0;
  font-weight: 600;
}
button {
  border: 0;
  border-radius: 10px;
  background: #e8edfb;
  color: #4666b1;
  padding: 15px;
  width: 100%;
  font-size: 15px;
  font-weight: 600;
  cursor: not-allowed;
}
.note {
  font-size: 12px;
  line-height: 1.8;
  color: #7a818c;
  margin: 17px 0 0;
}
footer {
  max-width: 1180px;
  padding: 25px 36px;
  margin: auto;
  border-top: 1px solid #e1e4eb;
  color: #7a818c;
  font-size: 12px;
  line-height: 1.8;
}
footer a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 800px) {
  header {
    padding: 25px 24px;
  }
  main {
    margin: 30px auto 45px;
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 0 24px;
  }
  h1 {
    font-size: 42px;
  }
  .plan {
    padding: 27px;
  }
  footer {
    padding: 24px;
  }
  .lead {
    font-size: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }
}
