.privacy-header,
.privacy-main {
  --bg: #0a0b0d;
  --surface: #111317;
  --surface-2: #0d1712;
  --green-deep: #0c1812;
  --green-solid: #31cf85;
  --green: #91e2b9;
  --ink: #f2f0ec;
  --ink-soft: #acb8b1;
  --ink-mute: #82948a;
  --line: rgb(255 255 255 / 10%);
}

.privacy-header {
  border-bottom: 1px solid var(--line);
}

.privacy-header .wordmark > span {
  font-family: "Fraunces", Georgia, serif;
  font-size: 18px;
  letter-spacing: .03em;
}

.privacy-header .wordmark small {
  font-family: "Epilogue", Arial, sans-serif;
}

.privacy-header {
  position: relative;
  width: min(100%, var(--max));
  min-height: 84px;
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.privacy-back {
  min-height: 46px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: var(--green-solid);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  transition: background-color .25s ease, transform .25s ease;
}

.privacy-back:hover {
  background: var(--green);
  transform: translateY(-2px);
}

.privacy-back svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-main {
  width: min(100%, var(--max));
  min-height: calc(100vh - 84px);
  margin-inline: auto;
  padding: clamp(58px, 7vw, 104px) var(--gutter) 40px;
}

.privacy-intro {
  position: relative;
  max-width: 1100px;
  padding: clamp(34px, 5vw, 70px);
  overflow: hidden;
  border-radius: 24px;
  background: var(--green-deep);
  border: 1px solid rgb(49 207 133 / 28%);
}

.privacy-intro::after {
  content: "";
  position: absolute;
  width: 260px;
  aspect-ratio: 1;
  right: -90px;
  bottom: -150px;
  border-radius: 50%;
  background: var(--green-solid);
  opacity: .22;
}

.privacy-intro h1 {
  position: relative;
  z-index: 1;
  max-width: 880px;
  font-size: clamp(48px, 7vw, 92px);
}

.privacy-lead {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-top: 26px;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.5vw, 20px);
  line-height: 1.7;
}

.privacy-list {
  margin-top: clamp(52px, 7vw, 90px);
  display: grid;
  gap: 12px;
}

.privacy-list section {
  padding: clamp(26px, 4vw, 48px);
  display: grid;
  grid-template-columns: 56px minmax(0, 850px);
  gap: 20px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.privacy-list section:nth-child(even) {
  margin-left: clamp(0px, 5vw, 76px);
  border-radius: 18px;
  background: var(--surface-2);
}

.privacy-list section > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #14110b;
  font-family: "Fraunces", Georgia, serif;
  font-size: 14px;
}

.privacy-list h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.privacy-list section p {
  max-width: 820px;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.72;
}

.privacy-list section a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.privacy-footer {
  min-height: 110px;
  padding: 26px 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--ink-mute);
  font-size: 12px;
}

.privacy-footer a {
  min-height: 48px;
  padding: 11px 18px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--green-solid);
  color: #14110b;
  font-weight: 700;
}

@media (max-width: 640px) {
  .privacy-header {
    min-height: 72px;
  }

  .privacy-header .wordmark small {
    display: none;
  }

  .privacy-back {
    padding-inline: 13px;
  }

  .privacy-main {
    padding-top: 38px;
  }

  .privacy-intro {
    padding: 34px 24px 64px;
    border-radius: 32px 32px 78px 32px;
  }

  .privacy-intro h1 {
    font-size: 46px;
  }

  .privacy-list section,
  .privacy-list section:nth-child(even) {
    margin-left: 0;
    padding: 24px 20px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    border-radius: 26px;
  }

  .privacy-list section > span {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .privacy-list h2 {
    font-size: 28px;
  }

  .privacy-footer {
    padding-top: 30px;
    align-items: flex-start;
    flex-direction: column;
  }
}
