/* ==========================================================================
   Simple pages — About, Social, Terms, Privacy
   ==========================================================================
   Deliberately plain: a logo, a measure of text, and a way back. These exist
   so the waitlist's links go somewhere real, not to make an impression.
   Self-contained (no styles.css) so a legal page can never be broken by a
   change to the marketing site.
   ========================================================================== */

:root {
  --ink: #0a0c0e;
  --paper: #fffcfa;
  --muted: rgb(255 252 250 / 0.62);
  --faint: rgb(255 252 250 / 0.38);
  --rule: rgb(255 252 250 / 0.12);
  --teal: #0f8f86;
  --coral: #e66c5d;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Figtree, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.pg {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px 96px;
}

/* --- header: wordmark left, back link right --- */
.pg__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 48px;
}
.pg__logo img {
  display: block;
  width: 132px;
  height: auto;
}
.pg__back {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.pg__back:hover,
.pg__back:focus-visible { color: var(--paper); }

/* --- type --- */
h1 {
  margin: 0 0 8px;
  font-family: Gabarito, Figtree, sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 6vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
h2 {
  margin: 44px 0 10px;
  font-family: Gabarito, Figtree, sans-serif;
  font-weight: 700;
  font-size: clamp(21px, 2.6vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
p { margin: 0 0 16px; color: rgb(255 252 250 / 0.86); }
ul { margin: 0 0 16px; padding-left: 22px; color: rgb(255 252 250 / 0.86); }
li { margin-bottom: 8px; }
strong { color: var(--paper); font-weight: 600; }

.pg__stamp {
  margin: 0 0 40px;
  font-size: 14px;
  color: var(--faint);
}

a { color: var(--paper); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--coral); }

/* --- social list --- */
.soc { list-style: none; margin: 8px 0 0; padding: 0; }
.soc li { border-top: 1px solid var(--rule); margin: 0; }
.soc li:last-child { border-bottom: 1px solid var(--rule); }
.soc a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 2px;
  font-size: 19px;
  font-weight: 600;
  text-decoration: none;
  color: var(--paper);
  transition: color 0.2s ease;
}
.soc a:hover { color: var(--coral); }
.soc .soc__handle { font-weight: 400; font-size: 15px; color: var(--faint); }

/* --- footer --- */
.pg__foot {
  margin-top: 72px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--faint);
}
.pg__foot a { color: var(--muted); text-decoration: none; }
.pg__foot a:hover { color: var(--paper); }
.pg__footlinks { display: flex; gap: 10px; align-items: center; }

@media (max-width: 560px) {
  .pg { padding: 28px 20px 72px; }
  .pg__top { padding-bottom: 34px; }
  .pg__logo img { width: 108px; }
  body { font-size: 16px; }
}
