@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=DM+Sans:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --ink: #0d0d0d;
  --ink-muted: #555;
  --ink-faint: #aaa;
  --surface: #ffffff;
  --surface-alt: #f5f3ff;
  --accent: #5b21b6;
  --accent-2: #ec4899;
  --accent-light: #ede9fe;
  --accent-2-light: #fce7f3;
  --rule: rgba(0,0,0,0.08);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --grad: linear-gradient(135deg, #5b21b6 0%, #ec4899 100%);
}
body { font-family: var(--sans); background: var(--surface); color: var(--ink); font-size: 15px; line-height: 1.7; -webkit-font-smoothing: antialiased; }

/* NAV */
nav { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 4rem; border-bottom: 0.5px solid var(--rule); position: sticky; top: 0; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); z-index: 100; }
.logo { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--ink); text-decoration: none; }
.logo span { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
nav ul { list-style: none; display: flex; gap: 2rem; align-items: center; }
nav ul a { font-size: 13px; color: var(--ink-muted); text-decoration: none; letter-spacing: 0.04em; text-transform: uppercase; transition: color 0.2s; }
nav ul a:hover { color: var(--accent); }
.nav-cta { background: var(--grad); color: #fff !important; padding: 0.5rem 1.3rem; border-radius: 100px; font-size: 13px !important; text-decoration: none; }

/* POLICY HERO */
.policy-hero { background: var(--ink); padding: 4rem 4rem 3rem; }
.breadcrumb { font-size: 12px; color: rgba(255,255,255,0.35); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1rem; text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; transition: color 0.2s; }
.breadcrumb:hover { color: rgba(255,255,255,0.6); }
.policy-hero h1 { font-family: var(--serif); font-size: clamp(2rem,4vw,3.2rem); font-weight: 500; color: #fff; line-height: 1.15; margin-bottom: 0.75rem; }
.policy-hero .meta { font-size: 13px; color: rgba(255,255,255,0.35); }
.policy-hero .meta span { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 500; }

/* POLICY BODY */
.policy-body { max-width: 780px; margin: 0 auto; padding: 4rem 2rem 6rem; }
.policy-body section { margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 0.5px solid var(--rule); }
.policy-body section:last-child { border-bottom: none; }
.policy-body h2 { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; color: var(--ink); margin-bottom: 1rem; line-height: 1.2; }
.policy-body h3 { font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 0.6rem; margin-top: 1.5rem; }
.policy-body p { font-size: 14px; color: var(--ink-muted); line-height: 1.8; margin-bottom: 0.75rem; }
.policy-body ul { list-style: none; margin: 0.5rem 0 1rem; }
.policy-body ul li { font-size: 14px; color: var(--ink-muted); line-height: 1.7; padding: 0.35rem 0 0.35rem 1.25rem; position: relative; border-bottom: 0.5px solid var(--rule); }
.policy-body ul li:last-child { border-bottom: none; }
.policy-body ul li::before { content: ''; position: absolute; left: 0; top: 0.85rem; width: 5px; height: 5px; border-radius: 50%; background: var(--grad); }
.policy-body a { color: var(--accent); text-decoration: none; }
.policy-body a:hover { text-decoration: underline; }
.callout { background: var(--accent-2-light); border-left: 3px solid var(--accent-2); border-radius: 0 10px 10px 0; padding: 1rem 1.25rem; margin: 1rem 0; }
.callout p { color: var(--ink-muted); font-size: 13px; margin: 0; }
.callout strong { color: var(--ink); }
.highlight-box { background: var(--accent-light); border-radius: 10px; padding: 1.25rem 1.5rem; margin: 1rem 0; }
.highlight-box p { color: var(--accent); font-size: 13px; margin: 0; font-weight: 500; }

/* FOOTER */
footer { background: var(--ink); padding: 2.5rem 4rem; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 2rem; padding-bottom: 2rem; border-bottom: 0.5px solid rgba(255,255,255,0.08); margin-bottom: 1.5rem; }
.footer-brand .logo { color: #fff; }
.footer-brand p { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 0.5rem; max-width: 260px; line-height: 1.6; }
.footer-links-group { display: flex; gap: 3rem; }
.footer-col h4 { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 0.75rem; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 0.4rem; transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-bottom p span { color: rgba(255,255,255,0.4); }

@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  nav ul { display: none; }
  .policy-hero { padding: 2.5rem 1.5rem 2rem; }
  .policy-body { padding: 2.5rem 1.5rem 4rem; }
  footer { padding: 2rem 1.5rem; }
  .footer-top { flex-direction: column; }
  .footer-links-group { flex-direction: column; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
