/* ProMentor landing — design tokens mirror apps/mobile/lib/theme.ts /
   hifi/promentor/ds.css (warm base, indigo brand, Newsreader display). */
:root {
  --bg-base: #F7F5EF;
  --surface: #FFFFFF;
  --ink: #1C1C21;
  --muted: #6E6E78;
  --faint: #9C9CA6;
  --indigo: #5457E6;
  --indigo-tint: #ECEDFB;
  --indigo-line: #D7D9F6;
  --line-card: #EBE7DC;
  --amber-tint: #FAEFDD;
  --amber-deep: #B5701F;
}

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

body {
  background: var(--bg-base);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrap {
  width: min(680px, calc(100% - 48px));
  margin: 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 56px 0;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
}

.wordmark .tile {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--indigo);
  display: grid;
  place-items: center;
}

.badge-tile {
  width: 88px; height: 88px;
  border-radius: 26px;
  background: var(--amber-tint);
  display: grid;
  place-items: center;
  margin: 0 auto 26px;
  border: 1px solid var(--line-card);
  box-shadow: 0 18px 42px -34px rgba(28, 28, 33, .75);
}

h1 {
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(34px, 6vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}

.sub {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  max-width: 46ch;
  margin: 0 auto 38px;
}

/* QA-074 — wide store-badge banner */
.store-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 22px 26px;
  background: var(--surface);
  border: 1px solid var(--line-card);
  border-radius: 22px;
  box-shadow: 0 18px 42px -34px rgba(28, 28, 33, .75);
}

.store-badge { display: inline-flex; transition: transform .15s ease, opacity .15s ease; }
.store-badge:hover { transform: translateY(-2px); opacity: .92; }
.store-badge svg { height: 56px; width: auto; display: block; }

.coming-soon {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--faint);
}

.lock-note {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #EFEDE4;
  border-radius: 14px;
  padding: 12px 18px;
  font-size: 13.5px;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.5;
}

footer {
  text-align: center;
  padding: 22px;
  color: var(--faint);
  font-size: 12.5px;
}
footer a { color: var(--muted); text-decoration: none; }

/* ── long-form document pages (/terms, /privacy, /support) ─────────────── */
.doc {
  width: min(680px, calc(100% - 48px));
  margin: 0 auto;
  padding: 48px 0 72px;
  text-align: left;
  flex: 1;
}
.doc .wordmark { margin-bottom: 28px; }
.doc h1 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  font-size: clamp(30px, 5vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 6px;
}
.doc .updated { color: var(--faint); font-size: 14px; margin-bottom: 28px; }
.doc h2 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  margin: 32px 0 10px;
}
.doc h3 { font-size: 15px; margin: 18px 0 6px; }
.doc p, .doc li { color: var(--muted); font-size: 15.5px; line-height: 1.65; }
.doc p + p { margin-top: 10px; }
.doc ul { padding-left: 22px; margin: 8px 0; }
.doc li { margin: 5px 0; }
.doc strong { color: var(--ink); font-weight: 600; }
.doc a { color: var(--indigo); text-decoration: none; }
.doc a:hover { text-decoration: underline; }
.doc .card {
  background: var(--surface);
  border: 1px solid var(--line-card);
  border-radius: 14px;
  padding: 20px 22px;
  margin: 16px 0;
}
footer .footlinks { display: flex; gap: 18px; justify-content: center; margin-top: 6px; }
footer .footlinks a { color: var(--faint); text-decoration: none; font-size: 13px; }
footer .footlinks a:hover { color: var(--indigo); }
