/* ── TOKENS (Preserving ntagz Brand Identity) ── */

    /* ── TOP STRIP ── */

    /* ── NAV ── */

    /* ── CONTENT LAYOUT ── */
    .wrap {
      max-width: 1100px;
      margin: auto;
      padding: 0 24px;
    }

    .policy-container {
      padding: 60px 0 120px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
    }

    @media (min-width: 768px) {
      .policy-container {
        grid-template-columns: 280px 1fr;
      }
    }

    /* Sidebar Navigation */
    .policy-sidebar {
      position: sticky;
      top: 100px;
      height: max-content;
    }

    @media (min-width: 768px) {
      .policy-sidebar {
        position: sticky;
      }
    }

    .policy-sidebar h3 {
      font-family: var(--ff-head);
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--ink-3);
      margin-bottom: 16px;
    }

    .sidebar-menu {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .sidebar-menu a {
      font-size: 14px;
      font-weight: 500;
      color: var(--ink-2);
      transition: all 0.2s var(--ease);
    }

    .sidebar-menu a:hover {
      color: var(--tagz);
      padding-left: 4px;
    }

    /* Main Content Styling */
    .policy-content h1 {
      font-family: var(--ff-head);
      font-size: clamp(32px, 5vw, 44px);
      font-weight: 700;
      letter-spacing: -0.03em;
      margin-bottom: 16px;
    }

    .policy-content .subtitle {
      font-size: 16px;
      color: var(--ink-2);
      margin-bottom: 40px;
    }

    .policy-section {
      margin-bottom: 48px;
      scroll-margin-top: 90px;
    }

    .policy-section h2 {
      font-family: var(--ff-head);
      font-size: 20px;
      font-weight: 700;
      letter-spacing: -0.01em;
      margin-bottom: 16px;
      color: var(--ink);
    }

    .policy-section p {
      font-size: 15px;
      color: var(--ink-2);
      margin-bottom: 16px;
    }

    /* Highlights & Cards */
    .highlight-box {
      background: #fff;
      border: 1px solid var(--paper);
      border-radius: var(--r);
      padding: 24px;
      margin: 24px 0;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    }

    .grid-metrics {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      margin-top: 16px;
    }

    @media (min-width: 540px) {
      .grid-metrics { grid-template-columns: 1fr 1fr; }
    }

    .metric-card {
      background: var(--warm);
      padding: 16px;
      border-radius: var(--r);
      text-align: center;
    }

    .metric-card span {
      display: block;
      font-family: var(--ff-head);
      font-size: 24px;
      font-weight: 700;
      color: var(--tagz);
    }

    .metric-card label {
      font-size: 12px;
      color: var(--ink-3);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    /* Callout Alert Banner */
    .block-alert {
      background: var(--tagz-lt);
      border-left: 4px solid var(--tagz);
      padding: 16px;
      border-radius: 0 var(--r) var(--r) 0;
      font-size: 14px;
      color: var(--ink-2);
      margin-top: 16px;
    }

    /* ── FOOTER STYLES ── */
