:root {
  color-scheme: light;
  font-family:
    "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ede9df;
  color: #050608;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 50% 35%, rgb(255 255 255 / 0.36), transparent 34rem),
    #e8e3d8;
}

.shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
}

.hero {
  display: grid;
  width: min(100%, 760px);
  justify-items: center;
  text-align: center;
}

.logo {
  width: min(62vw, 360px);
  height: auto;
  margin-bottom: 28px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(4rem, 14vw, 8.5rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
}

.summary {
  max-width: 520px;
  margin: 24px 0 0;
  font-size: clamp(1rem, 2.4vw, 1.22rem);
  font-weight: 600;
  line-height: 1.55;
  color: rgb(5 6 8 / 0.72);
}

a {
  color: #050608;
  font-weight: 800;
  text-decoration-color: rgb(5 6 8 / 0.34);
  text-underline-offset: 0.24em;
}

a:hover {
  text-decoration-color: #050608;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 34px;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.document-shell {
  min-height: 100vh;
  padding: 32px 20px 56px;
}

.policy {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 56px);
  border: 1px solid rgb(5 6 8 / 0.12);
  background: rgb(248 245 238 / 0.78);
  box-shadow: 0 22px 70px rgb(5 6 8 / 0.10);
}

.back-link {
  display: inline-flex;
  margin-bottom: 34px;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.policy-header {
  margin-bottom: 42px;
}

.policy-logo {
  width: 86px;
  height: auto;
  margin-bottom: 20px;
}

.policy h1 {
  max-width: 780px;
  font-size: clamp(2.7rem, 9vw, 5.8rem);
}

.policy h2 {
  margin: 38px 0 14px;
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  line-height: 1.2;
}

.policy p,
.policy li {
  font-size: 1rem;
  font-weight: 560;
  line-height: 1.75;
  color: rgb(5 6 8 / 0.76);
}

.policy p {
  margin: 0 0 16px;
}

.policy ul {
  margin: 0 0 18px;
  padding-left: 1.2rem;
}

.policy li + li {
  margin-top: 10px;
}

@media (max-width: 640px) {
  .shell {
    padding: 24px;
  }

  .document-shell {
    padding: 16px 12px 36px;
  }

  .policy {
    padding: 22px;
  }
}
