@font-face {
  font-family: "PP Pangram Sans";
  src: url("fonts/PPPangramSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PP Pangram Sans";
  src: url("fonts/PPPangramSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family: "PP Pangram Sans", "Helvetica Neue", Arial, sans-serif;
  background-color: #e1dcd4;
  color: #191919;
  position: relative;
}

/* Monotone noise overlay (Figma: size 0.5, density 61%) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0.61 0.61 0.61 0 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  opacity: 0.14;
}

.page {
  position: relative;
  z-index: 2;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(40px, 7vh, 84px) 24px;
}

.logo {
  width: clamp(180px, 17vw, 330px);
  height: auto;
}

.content {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: clamp(28px, 5vh, 56px);
  /* optically center between logo and bottom of viewport */
  padding-bottom: clamp(40px, 12vh, 140px);
}

.headline {
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 62px);
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.body-text {
  font-weight: 400;
  font-size: clamp(17px, 1.2vw, 22px);
  line-height: 1.5;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 1.2em;
}

.body-text a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.signature {
  margin-top: 0.6em;
}
