:root {
  color: #17231c;
  background: #f6f8f7;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f6f8f7;
}

a {
  color: inherit;
}

.shell {
  min-height: 100vh;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
  padding: 0 7vw;
  border-bottom: 1px solid rgb(23 35 28 / 9%);
  background: rgb(250 252 251 / 92%);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: #07c160;
  color: #fff;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: #5b6b61;
  font-size: 12px;
  font-weight: 700;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.links a {
  border-radius: 8px;
  padding: 10px 12px;
  color: #2b3f34;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.links a:hover,
.links a:focus-visible {
  background: #e8f6ef;
  color: #047a40;
  outline: 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  gap: 52px;
  align-items: center;
  padding: 86px 7vw 58px;
}

.eyebrow {
  display: inline-flex;
  border: 1px solid rgb(7 193 96 / 24%);
  border-radius: 8px;
  padding: 7px 10px;
  background: #fff;
  color: #047a40;
  font-size: 13px;
  font-weight: 850;
}

h1,
h2,
h3 {
  margin: 0;
  color: #102018;
}

.hero h1 {
  max-width: 680px;
  margin-top: 22px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero p,
.section p,
.legal p,
.legal li {
  color: #53655b;
  line-height: 1.8;
}

.hero p {
  max-width: 660px;
  margin: 20px 0 0;
  font-size: 18px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 0 18px;
  background: #07c160;
  color: #fff;
  font-weight: 850;
  text-decoration: none;
}

.button.secondary {
  border: 1px solid rgb(23 35 28 / 13%);
  background: #fff;
  color: #102018;
}

.visual {
  overflow: hidden;
  border: 1px solid rgb(23 35 28 / 10%);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 68px rgb(16 32 24 / 12%);
}

.visual img {
  display: block;
  width: 100%;
}

.section {
  padding: 44px 7vw;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.card {
  min-height: 172px;
  border: 1px solid rgb(23 35 28 / 10%);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
}

.card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: #047a40;
  font-size: 24px;
}

.card p {
  margin: 10px 0 0;
  font-size: 14px;
}

.band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 36px;
  margin: 34px 7vw;
  border-radius: 14px;
  padding: 34px;
  background: #102018;
  color: #fff;
}

.band h2,
.band p {
  color: #fff;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  border-radius: 8px;
  padding: 14px 16px;
  background: rgb(255 255 255 / 10%);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 34px 7vw;
  border-top: 1px solid rgb(23 35 28 / 9%);
  color: #5b6b61;
  font-size: 14px;
}

.legal {
  max-width: 930px;
  margin: 0 auto;
  padding: 52px 22px 74px;
}

.legal h1 {
  font-size: clamp(34px, 5vw, 52px);
}

.meta {
  margin: 12px 0 28px;
  color: #6b7b71;
}

.legal section {
  margin-top: 30px;
  border-top: 1px solid rgb(23 35 28 / 10%);
  padding-top: 24px;
}

.legal h2 {
  font-size: 22px;
}

.legal ul {
  padding-left: 22px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid rgb(23 35 28 / 10%);
  border-radius: 8px;
  background: #fff;
}

.table th,
.table td {
  border-bottom: 1px solid rgb(23 35 28 / 9%);
  padding: 13px 14px;
  color: #53655b;
  text-align: left;
  vertical-align: top;
}

.table th {
  color: #102018;
  font-weight: 850;
}

.notice {
  border-left: 4px solid #07c160;
  border-radius: 8px;
  padding: 16px 18px;
  background: #fff;
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 20px;
  }

  .links {
    justify-content: flex-start;
  }

  .hero,
  .band {
    grid-template-columns: 1fr;
  }

  .hero,
  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .band {
    margin-left: 20px;
    margin-right: 20px;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}
