/* Hyperaxis site-wide chrome styles.
   Loaded by every legal/marketing page (privacy.html, terms.html, etc.).
   The home page (index.html) keeps its inline style block since it has the
   full dashboard mockup CSS as well; this file holds only the shared chrome
   so the legal pages stay consistent with home automatically. */

.consultant-theme {
  --bg-cream: #faf9f6;
  --bg-white: #ffffff;
  --bg-stone: #f4f4f5;
  --text-ink: #0f172a;
  --text-slate: #334155;
  --text-muted: #64748b;
  --accent-gold: #b4975a;
  --accent-ink-blue: #1e3a8a;
  --border-subtle: #e2e8f0;
  --border-strong: #cbd5e1;

  font-family: 'Inter', sans-serif;
  background-color: var(--bg-cream);
  color: var(--text-ink);
}

.font-editorial { font-family: 'Onest', 'Inter', -apple-system, sans-serif; letter-spacing: -0.01em; }
.font-mono     { font-family: 'JetBrains Mono', ui-monospace, monospace; }

.nav-scrolled {
  background-color: rgba(250, 249, 246, 0.95);
  border-bottom-color: var(--border-subtle);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
.nav-transparent { background-color: transparent; border-bottom-color: transparent; }

.brand-logo {
  font-family: "Onest", "Inter", -apple-system, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  color: var(--text-ink);
}
.brand-logo-light {
  filter: brightness(0) invert(1);
  opacity: 0.92;
  color: #ffffff;
}

.btn-premium { position: relative; overflow: hidden; z-index: 1; transition: transform .2s ease, box-shadow .2s ease; }
.btn-premium:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(15,23,42,0.12); }
.btn-premium-outline { border: 1px solid var(--text-ink); background: transparent; transition: background .2s ease, color .2s ease; }
.btn-premium-outline:hover { background: var(--text-ink); color: #ffffff; }

/* Long-form copy defaults for /privacy /terms /cookies /security /dpa /disclosure /regulations */
.prose-doc h1 {
  font-family: 'Onest', sans-serif;
  font-weight: 600;
  font-size: 2.25rem;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text-ink);
  margin-bottom: 0.5rem;
}
.prose-doc h2 {
  font-family: 'Onest', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--text-ink);
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.prose-doc h3 {
  font-family: 'Onest', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--text-ink);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.prose-doc p {
  color: var(--text-slate);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.prose-doc ul, .prose-doc ol {
  color: var(--text-slate);
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.prose-doc ul { list-style: disc; }
.prose-doc ol { list-style: decimal; }
.prose-doc li { margin-bottom: 0.4rem; }
.prose-doc a {
  color: var(--accent-ink-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.prose-doc a:hover { color: var(--accent-gold); }
.prose-doc strong { color: var(--text-ink); font-weight: 600; }
.prose-doc code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875em;
  background: var(--bg-stone);
  border: 1px solid var(--border-subtle);
  padding: 0.1em 0.35em;
  border-radius: 3px;
}
.prose-doc .doc-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
}
.prose-doc table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.9375rem;
}
.prose-doc th, .prose-doc td {
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.625rem 0.875rem;
  text-align: left;
  vertical-align: top;
  color: var(--text-slate);
}
.prose-doc th {
  font-family: 'Onest', sans-serif;
  font-weight: 600;
  color: var(--text-ink);
  background: var(--bg-stone);
}
