a {
  color: #2FB4E0;
  text-decoration: none;
}
a:hover {
  color: #7FD3EE;
}

.background {
  padding: clamp(20px, 4vh, 56px) clamp(16px, 4vw, 40px);
  box-sizing: border-box;
}

.card {
  position: relative;
  width: min(880px, 100%);
  max-height: 100%;
  overflow-y: auto;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(30, 64, 82, 0.42), rgba(9, 20, 27, 0.40));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(150, 205, 225, 0.32);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.card__header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px clamp(28px, 4vw, 52px);
  background: rgba(10, 20, 27, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(150, 205, 225, 0.16);
}

.card__header .logo {
  height: 42px;
  width: auto;
  display: block;
}

.card__header .back-link {
  font-family: var(--font-mono);
  font-size: 13px;
  color: #9FB2BC;
}
.card__header .back-link:hover {
  color: #fff;
}

.imp {
  padding: clamp(30px, 4vw, 52px);
}
.imp h2 {
  margin: 44px 0 14px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.imp h2:first-child {
  margin-top: 0;
}
.imp h3 {
  margin: 30px 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: #DCE6EB;
}
.imp h4 {
  margin: 22px 0 6px;
  font-size: 14.5px;
  font-weight: 700;
  color: #B4C4CE;
}
.imp h5 {
  margin: 18px 0 6px;
  font-size: 14.5px;
  font-weight: 700;
  color: #B4C4CE;
}
.imp p {
  margin: 0 0 14px;
  font-size: 14.5px;
  line-height: 1.72;
  color: #9FB2BC;
  text-wrap: pretty;
}
.imp ul {
  margin: 0 0 14px;
  padding-left: 20px;
}
.imp li {
  font-size: 14.5px;
  line-height: 1.7;
  color: #9FB2BC;
  margin-bottom: 9px;
}
.imp li.term {
  list-style: none;
  margin-left: -20px;
}
.imp .addr {
  font-size: 15px;
  line-height: 1.85;
  color: #DCE6EB;
}

.imp .divider {
  margin: 44px 0;
  height: 1px;
  background: rgba(150, 205, 225, 0.14);
}

.imp .footer-row {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(150, 205, 225, 0.14);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.imp .footer-row .copyright {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #6E828C;
}
.imp .footer-row a {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #9FB2BC;
}
.imp .footer-row a:hover {
  color: #fff;
}
