/* Page styles for compliance — auto-extracted from inline <style> blocks */
/* DO NOT add inline styles back to the HTML. Edit this file instead. */

/* NAV */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(248, 247, 244, 0.92);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
      padding: 0 2rem;
    }
    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 2rem;
      height: 64px;
    }
    .logo {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.25rem;
      color: var(--ink);
      text-decoration: none;
      letter-spacing: -0.02em;
      flex-shrink: 0;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.75rem;
      margin-left: 1rem;
      flex: 1;
    }
    .nav-links a {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.15s;
    }
    .nav-links a:hover { color: var(--ink); }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-left: auto;
    }

    /* HERO */
    .compliance-hero {
      text-align: center;
      padding: 4rem 2rem 2rem;
      max-width: 800px;
      margin: 0 auto;
    }
    .compliance-hero h1 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      letter-spacing: -0.03em;
      color: var(--ink);
      margin-bottom: 0.75rem;
    }
    .compliance-hero p {
      font-size: 1.05rem;
      color: var(--muted);
      line-height: 1.6;
    }

    /* TOC */
    .toc {
      max-width: 800px;
      margin: 0 auto 2rem;
      padding: 1.25rem 2rem;
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
    }
    .toc h2 {
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--muted);
      margin-bottom: 0.75rem;
    }
    .toc ol {
      list-style: none;
      counter-reset: toc;
      padding: 0;
    }
    .toc ol li {
      counter-increment: toc;
      margin-bottom: 0.35rem;
    }
    .toc ol li a {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--accent);
      text-decoration: none;
      transition: color 0.15s;
    }
    .toc ol li a::before {
      content: counter(toc) ". ";
      color: var(--muted);
      font-weight: 600;
    }
    .toc ol li a:hover { color: var(--ink); text-decoration: underline; }

    /* LEGAL SECTIONS */
    .legal-container {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 2rem 4rem;
    }
    .legal-section {
      margin-bottom: 2.5rem;
      padding: 2rem;
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
    }
    .legal-section h2 {
      font-family: var(--font-display);
      font-size: 1.35rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--ink);
      margin-bottom: 1rem;
      padding-bottom: 0.75rem;
      border-bottom: 1px solid var(--border);
    }
    .legal-section h3 {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      color: var(--ink);
      margin: 1.25rem 0 0.5rem;
    }
    .legal-section p,
    .legal-section li {
      font-size: 0.92rem;
      color: var(--charcoal);
      line-height: 1.7;
      margin-bottom: 0.6rem;
    }
    .legal-section ul {
      padding-left: 1.5rem;
      margin-bottom: 0.75rem;
    }
    .legal-section ul li {
      margin-bottom: 0.35rem;
    }
    .effective-date {
      font-size: 0.8rem;
      color: var(--muted);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 1rem;
      display: block;
    }

    /* FOOTER */
    footer {
      background: var(--ink);
      color: rgba(255,255,255,0.5);
      padding: 2rem;
      font-size: 0.85rem;
    }
    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .footer-links { display: flex; gap: 1.25rem; }
    .footer-links a {
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      font-size: 0.85rem;
      transition: color 0.15s;
    }
    .footer-links a:hover { color: #fff; }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .compliance-hero { padding: 3rem 1.25rem 1.5rem; }
      .legal-container { padding: 0 1rem 3rem; }
      .legal-section { padding: 1.5rem 1.25rem; }
      .toc { margin: 0 1rem 2rem; padding: 1rem 1.25rem; }
      .footer-inner { flex-direction: column; gap: 0.75rem; text-align: center; }
    }
  

/* Auto-extracted inline styles */
.ds-compliance-1 { color:var(--accent) }
.ds-compliance-2 { color:var(--gold) }
