/* Remind Us - landing + legal pages. Warm, calm, brand-consistent. */
:root {
  --bg: #f5f0e8;
  --bg-soft: #efe7da;
  --card: #ffffff;
  --ink: #2b2420;
  --muted: #6b6258;
  --faint: #9a9087;
  --brand: #bd6447;
  --brand-dark: #a14f38;
  --brand-tint: #f3e2d9;
  --border: #e7dccb;
  --radius: 18px;
  --shadow: 0 1px 2px rgba(43, 36, 32, 0.04), 0 12px 32px rgba(43, 36, 32, 0.07);
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1a1613;
    --bg-soft: #221d18;
    --card: #241f1a;
    --ink: #f3ece2;
    --muted: #b6ab9d;
    --faint: #8a8073;
    --brand: #d57d5f;
    --brand-dark: #e8987c;
    --brand-tint: #33251e;
    --border: #3a312a;
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.2), 0 12px 32px rgba(0, 0, 0, 0.35);
  }
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--brand-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 960px; margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 720px; }

/* Header */
header.site {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: saturate(140%) blur(10px);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom: 1px solid var(--border);
}
header.site .bar { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; letter-spacing: -0.3px; color: var(--ink); }
.brand img { width: 30px; height: 30px; border-radius: 8px; }
header.site nav a { color: var(--muted); font-weight: 600; font-size: 14px; margin-left: 20px; }
header.site nav a:hover { color: var(--ink); text-decoration: none; }

/* Hero */
.hero { padding: 64px 0 40px; text-align: center; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 0.4px;
  color: var(--brand-dark); background: var(--brand-tint);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 22px;
}
h1.title { font-size: clamp(34px, 6vw, 56px); line-height: 1.07; letter-spacing: -1.2px; margin: 0 0 18px; font-weight: 800; }
.title .accent { color: var(--brand); }
.lede { font-size: clamp(17px, 2.4vw, 21px); color: var(--muted); max-width: 620px; margin: 0 auto 30px; }

/* Store buttons */
.cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.store {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--ink); color: var(--bg);
  padding: 13px 20px; border-radius: 14px; font-weight: 700; font-size: 15px;
  border: 1px solid transparent;
}
.store:hover { text-decoration: none; transform: translateY(-1px); }
.store small { display: block; font-size: 10px; font-weight: 600; opacity: 0.75; letter-spacing: 0.3px; text-transform: uppercase; }
.store b { font-size: 16px; font-weight: 800; line-height: 1.1; }
.store .sg { display: flex; flex-direction: column; line-height: 1.05; }
.store svg { width: 22px; height: 22px; fill: currentColor; }
.note { margin-top: 16px; font-size: 13px; color: var(--faint); }

/* Sections */
section { padding: 40px 0; }
h2.sec { font-size: clamp(24px, 4vw, 32px); letter-spacing: -0.6px; margin: 0 0 8px; font-weight: 800; text-align: center; }
.sub { text-align: center; color: var(--muted); max-width: 600px; margin: 0 auto 36px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.feature {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
}
.feature .ico { width: 42px; height: 42px; border-radius: 12px; background: var(--brand-tint);
  display: flex; align-items: center; justify-content: center; font-size: 21px; margin-bottom: 14px; }
.feature h3 { margin: 0 0 6px; font-size: 17px; font-weight: 800; letter-spacing: -0.2px; }
.feature p { margin: 0; color: var(--muted); font-size: 15px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; counter-reset: step; }
.step { padding: 22px; }
.step .n { width: 34px; height: 34px; border-radius: 50%; background: var(--brand); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 12px; }
.step h3 { margin: 0 0 4px; font-size: 16px; font-weight: 800; }
.step p { margin: 0; color: var(--muted); font-size: 14px; }

/* Callout / final CTA */
.callout {
  background: var(--card); border: 1px solid var(--border); border-radius: 24px;
  padding: 44px 28px; text-align: center; box-shadow: var(--shadow);
}
.callout h2 { margin: 0 0 10px; }
.callout p { color: var(--muted); margin: 0 0 24px; }

/* Footer */
footer.site { border-top: 1px solid var(--border); padding: 34px 0; margin-top: 48px; color: var(--faint); font-size: 14px; }
footer.site .bar { display: flex; flex-wrap: wrap; gap: 14px 24px; align-items: center; justify-content: space-between; }
footer.site a { color: var(--muted); font-weight: 600; }
footer.site .links a { margin-left: 18px; }

/* Legal / doc pages */
.doc { padding: 48px 0 8px; }
.doc h1 { font-size: clamp(28px, 5vw, 40px); letter-spacing: -0.8px; margin: 0 0 6px; }
.doc .updated { color: var(--faint); font-size: 14px; margin-bottom: 30px; }
.doc h2 { font-size: 21px; margin: 34px 0 8px; letter-spacing: -0.3px; }
.doc h3 { font-size: 17px; margin: 22px 0 6px; }
.doc p, .doc li { color: var(--ink); font-size: 16px; }
.doc ul { padding-left: 22px; }
.doc .card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 4px 26px 22px; box-shadow: var(--shadow); }
.back { display: inline-block; margin: 28px 0; font-weight: 700; }

/* Open-in-app page */
.open { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 40px 0; }
.open .panel { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 40px 30px; max-width: 420px; width: 100%; box-shadow: var(--shadow); }
.open img.logo { width: 64px; height: 64px; border-radius: 16px; margin-bottom: 18px; }
.open .code { font-family: "SFMono-Regular", Menlo, Consolas, monospace; font-size: 30px; font-weight: 800; letter-spacing: 8px; color: var(--brand-dark); background: var(--bg-soft); border: 1px solid var(--border); border-radius: 12px; padding: 14px; margin: 18px 0; }
.btn { display: inline-block; background: var(--brand); color: #fff; padding: 13px 24px; border-radius: 14px; font-weight: 700; }
.btn:hover { background: var(--brand-dark); text-decoration: none; }
.btn.ghost { background: transparent; color: var(--brand-dark); border: 1px solid var(--border); }
