/* RxRules coming-soon site — standalone static brand artifact. */
:root {
  --brand: #25a8df;
  --brand-dark: #149fe3;
  --ink: #40444d;
  --muted: #6b7280;
  --line: #e5e7eb;
  --bg: #ffffff;
  --tint: #e8f6fc;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: "Proxima Nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a { color: var(--brand-dark); }
a:hover { color: var(--brand); }

/* ── Coming-soon home ───────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 20px;
  background: radial-gradient(120% 120% at 50% 0%, var(--tint) 0%, #ffffff 55%);
}

.hero .logo { width: min(340px, 78vw); height: auto; }

.hero .soon {
  margin-top: 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.hero h1 {
  margin: 10px 0 0;
  font-size: clamp(28px, 6vw, 44px);
  font-weight: 600;
  color: var(--ink);
}

.hero p {
  margin: 14px 0 0;
  max-width: 440px;
  color: var(--muted);
  font-size: 16px;
}

/* ── Footer ─────────────────────────────────────────── */
.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-size: 13px;
  color: var(--muted);
}
.site-footer a { text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer .dot { color: var(--line); }

/* ── Legal pages (terms / privacy) ──────────────────── */
.doc {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 22px 80px;
}
.doc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.doc-head img { height: 34px; width: auto; }
.doc-head a { margin-left: auto; font-size: 14px; text-decoration: none; }

.doc h1 { font-size: 28px; font-weight: 600; margin: 0 0 4px; }
.doc .updated { color: var(--muted); font-size: 13px; margin: 0 0 24px; }
.doc h2 { font-size: 18px; font-weight: 600; margin: 30px 0 8px; }
.doc p, .doc li { color: #374151; font-size: 15px; }
.doc ul { padding-left: 20px; }

.draft {
  background: var(--tint);
  border: 1px solid #bfe3f3;
  color: #0b5e86;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13px;
  margin-bottom: 24px;
}
