:root {
  --purple: #5B21B6;
  --purple-deep: #3B0764;
  --lilac: #F3EEFF;
  --card: #FFFFFF;
  --ink: #2E1065;
  --muted: #5B4B7A;
  --line: #DDD6FE;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: var(--lilac);
  color: var(--ink);
  line-height: 1.75;
}

svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 0 14px;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
}

.brand svg {
  width: 32px;
  height: 32px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.nav a {
  background: var(--lilac);
  color: var(--purple);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
}

.nav a:hover,
.nav a:focus {
  background: var(--purple);
  color: #fff;
}

.hero {
  text-align: center;
  padding: 42px 0 20px;
}

.hero-icons {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 22px;
}

.hero-icons span {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-icons svg {
  width: 34px;
  height: 34px;
}

.hero h1 {
  font-size: 28px;
  line-height: 1.35;
  margin-bottom: 14px;
}

.hero p {
  max-width: 40em;
  margin: 0 auto 10px;
  color: var(--muted);
}

.honey {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 18px;
  padding: 10px 0 36px;
}

.honey article {
  background: var(--card);
  border-radius: 28px;
  padding: 22px 20px 20px;
  box-shadow: 0 8px 0 #E9D5FF;
}

.honey article:nth-child(2),
.honey article:nth-child(5) {
  margin-top: 28px;
}

.icon-round {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #EDE9FE;
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.icon-round svg {
  width: 28px;
  height: 28px;
}

h2 {
  font-size: 23px;
  line-height: 1.4;
  margin: 8px 0 12px;
}

p {
  margin-bottom: 12px;
}

.hover-strip {
  background: var(--purple-deep);
  color: #F5F3FF;
  border-radius: 20px;
  padding: 28px 26px;
  margin: 12px 0 36px;
}

.hover-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.hover-steps li {
  list-style: none;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 14px;
}

.roster {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  margin: 8px 0 32px;
}

.roster th,
.roster td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.roster th {
  background: #EDE9FE;
}

.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 36px;
}

.two article {
  background: #fff;
  border-radius: 24px;
  padding: 22px;
}

.bound {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 36px;
}

.bound article {
  background: #fff;
  border-radius: 24px;
  padding: 22px;
  border: 2px solid var(--line);
}

ul.plain {
  margin: 6px 0 12px 1.2em;
}

ul.plain li {
  margin-bottom: 8px;
}

.faq details {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 12px;
  padding: 4px 18px 8px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 12px 0;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.site-footer {
  background: var(--purple-deep);
  color: #EDE9FE;
  padding: 28px 0 36px;
  font-size: 13px;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
}

.site-footer p {
  margin-bottom: 8px;
}

@media (max-width: 800px) {
  .honey,
  .hover-steps,
  .two,
  .bound {
    grid-template-columns: 1fr;
  }

  .honey article:nth-child(2),
  .honey article:nth-child(5) {
    margin-top: 0;
  }
}
