/* Shared style for the Naya legal pages (privacy / terms). Clean and
   readable — the Buddy palette without the video, so long-form text stays legible. */
:root {
  --peach: #ffe6d2;
  --cream: #fff1e6;
  --ink: #2a1e16;
  --coral: #ff6b4a;
  --orange: #ff8c42;
  --display: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
  --body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--peach) 60%);
  background-attachment: fixed;
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}
a { color: var(--coral); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; border-radius: 6px; }
.wrap { width: min(760px, calc(100% - 44px)); margin: 0 auto; }

.topbar { padding: 22px 0; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 700; font-size: 18px; color: var(--ink); }
.buddy { width: 30px; height: 30px; border-radius: 50%; background: radial-gradient(circle at 38% 32%, #ff8763, var(--coral) 62%, #f0532f); display: grid; place-items: center; box-shadow: 0 8px 20px rgba(255,107,74,0.25); }
.buddy i { display: flex; gap: 4px; }
.buddy i b { width: 4px; height: 9px; background: #fff; border-radius: 3px; display: block; }

main { padding: 14px 0 70px; }
h1 { font-family: var(--display); font-weight: 800; font-size: clamp(34px, 6vw, 50px); letter-spacing: -0.02em; line-height: 1.05; margin: 24px 0 8px; }
.updated { color: rgba(42,30,22,0.55); font-size: 14px; font-weight: 600; margin: 0 0 18px; }
.lede { font-size: 18px; color: rgba(42,30,22,0.74); margin: 0; }
h2 { font-family: var(--display); font-weight: 700; font-size: 24px; letter-spacing: -0.01em; margin: 40px 0 10px; }
h3 { font-family: var(--display); font-weight: 700; font-size: 17px; margin: 22px 0 4px; }
p, li { color: rgba(42,30,22,0.82); }
ul { padding-left: 20px; margin: 8px 0; }
li { margin: 7px 0; }
strong { color: var(--ink); font-weight: 700; }
.box { background: #fff; border-radius: 18px; padding: 20px 24px; box-shadow: 0 18px 40px rgba(42,30,22,0.08); margin: 24px 0; }
.box h2, .box h3 { margin-top: 0; }
.box p:last-child { margin-bottom: 0; }
hr { border: none; border-top: 1px solid rgba(42,30,22,0.12); margin: 44px 0; }

.legal-footer { margin-top: 50px; padding: 26px 0 60px; font-size: 14px; color: rgba(42,30,22,0.55); display: flex; gap: 18px; flex-wrap: wrap; justify-content: space-between; align-items: center; border-top: 1px solid rgba(42,30,22,0.12); }
.legal-footer a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
