/* ─────────────────────────────────────────────────────────────
   Unite — shared foundation
   Single source of truth for the design tokens, reset, and the
   nav + footer chrome. Linked (in <head>, before each page's own
   <style>) by index + the legal pages, so brand colours, the nav,
   and the footer are edited in ONE place.
   Page-specific styles stay inline in each page's <style> block.
   (delete-account.html is intentionally standalone — different nav
   + extra tokens for the account-deletion flow.)
   ───────────────────────────────────────────────────────────── */

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --bg:#111;--bg2:#181818;--card:#1C1C1C;--border:#252525;--border2:#333;
  --teal:#5DD3D3;--teal-dim:rgba(93,211,211,.12);--teal-glow:rgba(93,211,211,.25);
  --sand:#D4C5B0;--sand2:#B8A894;--sage:#A8B5A0;--clay:#C9A88E;
  --text:#F2EEE8;--muted:#585450;--muted2:#888;
  --serif:'Cormorant Garamond',Georgia,serif;
  --sans:'DM Sans',sans-serif;
  --r:14px;
}
html{scroll-behavior:smooth}
body{background:var(--bg);color:var(--text);font-family:var(--sans);font-size:16px;font-weight:300;line-height:1.7;-webkit-font-smoothing:antialiased;overflow-x:clip}

/* ── NAV ── */
nav{position:fixed;top:0;left:0;right:0;z-index:500;padding:20px 48px;display:flex;align-items:center;justify-content:space-between;transition:transform .4s cubic-bezier(.23,1,.32,1)}
nav.hide{transform:translateY(-100%)}
.nav-blur{position:absolute;inset:0;background:linear-gradient(to bottom,rgba(17,17,17,.88) 60%,transparent);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);z-index:-1}
.logo{display:flex;align-items:center;gap:10px;text-decoration:none}
.logo-svg{width:28px;height:28px}
.logo-img{width:32px;height:32px;object-fit:contain}
.logo-name{font-family:var(--serif);font-size:18px;font-weight:600;letter-spacing:.06em;color:var(--text)}
.nav-links{display:flex;align-items:center;gap:28px;list-style:none}
.nav-links a{color:var(--muted2);text-decoration:none;font-size:12px;letter-spacing:.14em;text-transform:uppercase;transition:color .2s;font-weight:400}
.nav-links a:hover{color:var(--teal)}
.nav-cta{background:var(--teal)!important;color:#0a0a0a!important;padding:9px 22px;border-radius:100px;font-weight:500!important;letter-spacing:.04em!important;transition:opacity .2s!important}
.nav-cta:hover{opacity:.85}

/* ── PRIMARY BUTTON ── */
.btn-p{background:var(--teal);color:#0a0a0a;padding:15px 34px;border-radius:100px;text-decoration:none;font-size:14px;font-weight:500;letter-spacing:.08em;text-transform:uppercase;transition:opacity .2s,transform .2s;display:inline-block}
.btn-p:hover{opacity:.88;transform:translateY(-1px)}

/* ── FOOTER ── */
footer{padding:48px;border-top:1px solid var(--border);display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:20px}
.foot-copy{font-size:13px;color:var(--muted);letter-spacing:.06em}
.foot-note{font-size:13px;color:var(--muted);font-style:italic;font-family:var(--serif)}
.foot-links{display:flex;gap:20px}
.foot-links a{text-decoration:none;transition:color .2s}
.foot-links a:hover{color:var(--teal)}

@media(max-width:768px){nav{padding:16px 20px}.nav-links li:not(:last-child){display:none}}
@media(max-width:600px){footer{padding:32px 20px;flex-direction:column;text-align:center}}
