/* ProveItPal shared shell - nav, footer, palette, page-hero pattern.
   Used by privacy, terms, survey, delete-account. Sample A includes
   these tokens inline; everything here matches Sample A exactly.       */

:root{
  --bg: #FFFBEC;
  --bg-soft: #FEF4D6;
  --bg-tint: #FFFDF7;
  --ink: #16221C;
  --ink-soft: #4B5750;
  --ink-mute: #82897F;
  --pru-skin: #48CE86;
  --pru-shell: #3DCC89;
  --pru-deep: #017D75;
  --c-mint: #D5F2D8;
  --c-yellow: #FFF1A8;
  --c-lavender: #E9D5FF;
  --c-peach: #FFD9C2;
  --c-sky: #C6E6F2;
  --c-rose: #FFD5DE;
  --emerald: #2A8E5C;
  --coral: #FF8A65;
  --terracotta: #C65A3E;
  --cerulean: #7FB3C9;
  --shell-blue: #2c819d;
  --line: #ECE3CC;
  --shadow-ink: 4px 4px 0 var(--ink);
  --radius: 20px;
  --radius-pill: 999px;
}

*{ box-sizing: border-box; margin: 0; padding: 0; }
html{ scroll-behavior: smooth; }
body{
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg); color: var(--ink); line-height: 1.55;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
  background-image:
    radial-gradient(circle at 12% 8%, var(--c-lavender) 0%, transparent 20%),
    radial-gradient(circle at 88% 12%, var(--c-yellow) 0%, transparent 20%),
    radial-gradient(circle at 90% 60%, var(--c-peach) 0%, transparent 22%),
    radial-gradient(circle at 8% 80%, var(--c-mint) 0%, transparent 24%);
  background-attachment: fixed;
}
a{ color: inherit; }

/* NAV */
.nav{ position: sticky; top: 0; z-index: 100;
  background: rgba(255,251,236,.92); backdrop-filter: blur(14px);
  border-bottom: 2.5px solid var(--ink); }
.nav-inner{ max-width: 1200px; margin: 0 auto; padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between; }
.brand{ display: flex; align-items: center; gap: 10px; text-decoration: none;
  font-family: 'Titan One', cursive; font-size: 22px; letter-spacing: 1px; }
.brand-mark{ width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%;
  background: var(--c-mint); border: 2.5px solid var(--ink); overflow: hidden;
  display: flex; align-items: center; justify-content: center; }
.brand-mark img{ width: 100%; height: 100%; object-fit: cover; }
.brand-name{ font-weight: 400; }
.brand-name .prove{ color: var(--shell-blue); }
.brand-name .pal{ color: var(--coral); }
.nav-links{ display: flex; align-items: center; gap: 26px; list-style: none;
  font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 15px; color: var(--ink-soft); }
.nav-links a{ text-decoration: none; }
.nav-links a:hover{ color: var(--emerald); }
.nav-cta{ background: var(--ink); color: #fff !important; padding: 10px 22px;
  border-radius: var(--radius-pill); font-weight: 700; font-size: 14px;
  box-shadow: var(--shadow-ink); transition: transform .15s ease, box-shadow .15s ease; }
.nav-cta:hover{ transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }

/* PAGE HERO (shared header for sub-pages) */
.page-hero{ position: relative; padding: 64px 32px 32px; text-align: center; }
.page-hero h1{ font-family: 'Titan One', cursive; font-weight: 400;
  font-size: clamp(40px, 6vw, 68px); line-height: 1; letter-spacing: 0.5px;
  color: var(--ink); margin-bottom: 12px; }
.page-hero h1 .accent{ color: var(--shell-blue); }
.page-hero .subtitle{ font-size: 17px; color: var(--ink-soft); max-width: 540px;
  margin: 0 auto; font-weight: 500; }
.page-hero .updated{ font-size: 13px; color: var(--ink-mute); margin-top: 14px; }

/* CONTENT */
.content-wrap{ max-width: 760px; margin: 0 auto; padding: 32px 24px 64px;
  position: relative; z-index: 2; }
.policy-section{ background: #fff; border: 2.5px solid var(--ink);
  border-radius: var(--radius); padding: 28px; margin-bottom: 18px;
  box-shadow: var(--shadow-ink); }
.policy-section.tone-mint{ background: var(--c-mint); }
.policy-section.tone-lavender{ background: var(--c-lavender); }
.policy-section.tone-yellow{ background: var(--c-yellow); }
.policy-section.tone-peach{ background: var(--c-peach); }
.policy-section.tone-rose{ background: var(--c-rose); }
.policy-section.tone-sky{ background: var(--c-sky); }
.policy-section h2{ font-family: 'Manrope', sans-serif; font-size: 19px;
  font-weight: 800; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.policy-section h2 .icon{ width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  background: #fff; border: 2px solid var(--ink); flex-shrink: 0; }
.policy-section p{ font-size: 15px; color: var(--ink-soft); margin-bottom: 10px; line-height: 1.65; }
.policy-section p:last-child{ margin-bottom: 0; }
.policy-section ul{ padding-left: 22px; margin-bottom: 10px; }
.policy-section li{ font-size: 15px; color: var(--ink-soft); margin-bottom: 6px; line-height: 1.55; }
.policy-section li strong{ color: var(--ink); }
.policy-section a{ color: var(--shell-blue); text-decoration: none; font-weight: 600; }
.policy-section a:hover{ text-decoration: underline; }

/* FOOTER */
.footer{ background: var(--bg-soft); border-top: 2.5px solid var(--ink);
  padding: 40px 32px; }
.footer-inner{ max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-brand{ display: flex; align-items: center; gap: 10px;
  font-family: 'Titan One', cursive; font-size: 18px; letter-spacing: 1px; font-weight: 400; }
.footer-brand-mark{ width: 36px; height: 36px; border-radius: 50%;
  background: var(--c-mint); border: 2px solid var(--ink); overflow: hidden;
  display: flex; align-items: center; justify-content: center; }
.footer-brand-mark img{ width: 100%; height: 100%; object-fit: cover; }
.footer-brand .prove{ color: var(--shell-blue); }
.footer-brand .pal{ color: var(--coral); }
.footer-links{ display: flex; gap: 22px; font-family: 'Manrope', sans-serif;
  font-size: 14px; font-weight: 600; }
.footer-links a{ color: var(--ink-soft); text-decoration: none; }
.footer-links a:hover{ color: var(--emerald); }
.footer-bottom{ max-width: 1100px; margin: 24px auto 0; padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px; color: var(--ink-mute); text-align: center; }
.footer-bottom a{ color: var(--coral); text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 760px){
  .nav-inner{ padding: 12px 16px; }
  .nav-links li:not(.nav-cta-li){ display: none; }
  .brand{ font-size: 16px; gap: 8px; }
  .brand-mark{ width: 36px; height: 36px; }
  .nav-cta{ padding: 8px 14px; font-size: 12px; }
  .page-hero{ padding: 40px 24px 24px; }
  .content-wrap{ padding: 24px 16px 48px; }
  .policy-section{ padding: 22px 20px; }
}
