/* ─── DESIGN TOKENS ─────────────────────────────────────────────── */
    :root {
      --brand: #8327D2;
      --brand-dark: #6A1FB0;
      --brand-deep: #510F92;
      --brand-light: #9F45E8;
      --brand-pale: #F3EAFD;
      --brand-soft: #EAD8FA;
      --brand-mid: #C598F0;

      --surface: #FFFFFF;
      --canvas: #F9F7FD;
      --canvas-alt: #F2EEF9;
      --border: #E6DFF5;
      --border-soft: #EDE8F6;

      --ink-900: #0F0B1A;
      --ink-700: #2D2240;
      --ink-500: #5E4D78;
      --ink-400: #8474A0;
      --ink-300: #B0A2C8;
      --ink-200: #D7CEED;
      --ink-100: #EDE8F6;

      --success: #12B76A;
      --warning: #F79009;
      --danger: #F04438;

      --ff-heading: 'Sora', sans-serif;
      --ff-body: 'DM Sans', sans-serif;

      --r-sm: 8px;
      --r-md: 12px;
      --r-lg: 16px;
      --r-xl: 24px;
      --r-full: 999px;

      --shadow-xs: 0 1px 2px rgba(131, 39, 210, 0.06);
      --shadow-sm: 0 2px 8px rgba(131, 39, 210, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
      --shadow-md: 0 4px 20px rgba(131, 39, 210, 0.12), 0 2px 6px rgba(0, 0, 0, 0.05);
      --shadow-lg: 0 12px 48px rgba(131, 39, 210, 0.16), 0 4px 12px rgba(0, 0, 0, 0.06);
      --shadow-glow: 0 0 0 3px rgba(131, 39, 210, 0.16);
    }

    /* ─── RESET & BASE ──────────────────────────────────────────────── */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: var(--ff-body);
      background: var(--canvas);
      color: var(--ink-700);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: var(--canvas);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--ink-200);
      border-radius: 99px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--brand-mid);
    }

    /* ─── TYPOGRAPHY ────────────────────────────────────────────────── */
    h1,
    h2,
    h3,
    h4 {
      font-family: var(--ff-heading);
      color: var(--ink-900);
      letter-spacing: -0.025em;
      line-height: 1.2;
    }

    h1 {
      font-size: clamp(2.2rem, 4vw, 3.25rem);
      font-weight: 800;
    }

    h2 {
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      font-weight: 700;
    }

    h3 {
      font-size: 1.125rem;
      font-weight: 600;
    }

    p {
      color: var(--ink-500);
      font-size: 1rem;
      line-height: 1.75;
    }

    .label {
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--brand);
    }

    /* ─── LAYOUT ────────────────────────────────────────────────────── */
    .pp-page-wrapper {
      background: var(--canvas);
      padding-top: 80px;
      /* account for navbar height */
    }

    .pp-container {
      /* max-width: 1200px;
                margin-inline: auto;
                padding-inline: clamp(1.25rem, 4vw, 5rem); */
      max-width: 1600px;
      margin-inline: auto;
      padding: 0 100px 0 100px;
    }

    @media (max-width: 560px) {
      .pp-container {
        /* max-width: 1200px; */
        margin-inline: auto;
        /* padding-inline: clamp(1.25rem, 4vw, 5rem); */
        padding: 0 20px 0 20px;
      }
    }

    /* ─── PAGE HEADER ───────────────────────────────────────────────── */
    .pp-hero {
      position: relative;
      padding: 5rem 0 4rem;
      overflow: hidden;
    }

    /* Subtle decorative orbs */
    .pp-hero::before {
      content: '';
      position: absolute;
      top: -160px;
      right: -120px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(131, 39, 210, 0.09) 0%, transparent 65%);
      pointer-events: none;
    }

    .pp-hero::after {
      content: '';
      position: absolute;
      bottom: -80px;
      left: -80px;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(131, 39, 210, 0.05) 0%, transparent 65%);
      pointer-events: none;
    }

    /* grid overlay */
    .pp-hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(131, 39, 210, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(131, 39, 210, 0.035) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 0%, transparent 80%);
      pointer-events: none;
    }

    .pp-hero-inner {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .pp-hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.3125rem 0.875rem;
      border-radius: var(--r-full);
      background: var(--brand-pale);
      border: 1px solid var(--brand-soft);
      font-size: 0.75rem;
      font-weight: 600;
      font-family: var(--ff-heading);
      color: var(--brand-dark);
      width: fit-content;
    }

    .pp-hero-badge svg {
      color: var(--brand);
    }

    .pp-hero-title {
      max-width: 640px;
    }

    .pp-hero-title em {
      font-style: normal;
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .pp-hero-desc {
      max-width: 560px;
      font-size: 1.0625rem;
      line-height: 1.75;
      color: var(--ink-500);
    }

    /* Last updated pill */
    .pp-updated {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.4375rem 1rem;
      border-radius: var(--r-full);
      background: var(--surface);
      border: 1.5px solid var(--border);
      box-shadow: var(--shadow-xs);
      font-size: 0.8125rem;
      font-family: var(--ff-heading);
      font-weight: 500;
      color: var(--ink-400);
      width: fit-content;
    }

    .pp-updated svg {
      color: var(--brand);
      flex-shrink: 0;
    }

    .pp-updated strong {
      color: var(--ink-700);
      font-weight: 600;
    }

    /* ─── DIVIDER ────────────────────────────────────────────────────── */
    .pp-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border), transparent);
      margin: 0;
    }

    /* ─── CONTENT BODY ──────────────────────────────────────────────── */
    .pp-body {
      padding: 5rem 0 6rem;
    }

    .pp-layout {
      display: grid;
      grid-template-columns: 240px 1fr;
      gap: 4rem;
      align-items: start;
    }

    /* ─── STICKY TOC SIDEBAR ────────────────────────────────────────── */
    .pp-toc {
      position: sticky;
      top: 96px;
    }

    .pp-toc-inner {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: 20px;
      padding: 1.625rem 1.5rem;
      box-shadow: var(--shadow-sm);
    }

    .pp-toc-title {
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--brand);
      margin-bottom: 1.125rem;
      display: flex;
      align-items: center;
      gap: 0.375rem;
    }

    .pp-toc-list {
      display: flex;
      flex-direction: column;
      gap: 0.125rem;
    }

    .pp-toc-item a {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.4375rem 0.625rem;
      border-radius: var(--r-sm);
      font-size: 0.8125rem;
      font-family: var(--ff-body);
      font-weight: 500;
      color: var(--ink-500);
      transition: all 0.18s ease;
      line-height: 1.35;
    }

    .pp-toc-item a:hover,
    .pp-toc-item a.toc-active {
      background: var(--brand-pale);
      color: var(--brand-dark);
    }

    .pp-toc-item a .toc-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--ink-300);
      flex-shrink: 0;
      transition: background 0.18s ease;
    }

    .pp-toc-item a:hover .toc-dot,
    .pp-toc-item a.toc-active .toc-dot {
      background: var(--brand);
    }

    /* Divider in TOC */
    .pp-toc-sep {
      height: 1px;
      background: var(--border-soft);
      margin: 0.875rem 0;
    }

    /* Contact card in TOC */
    .pp-toc-contact {
      margin-top: 1rem;
      background: var(--canvas-alt);
      border: 1.5px solid var(--border);
      border-radius: var(--r-lg);
      padding: 1rem;
    }

    .pp-toc-contact-label {
      font-family: var(--ff-heading);
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--ink-700);
      margin-bottom: 0.25rem;
    }

    .pp-toc-contact-link {
      font-size: 0.8125rem;
      color: var(--brand);
      font-weight: 500;
      transition: color 0.18s;
    }

    .pp-toc-contact-link:hover {
      color: var(--brand-dark);
    }

    /* ─── MAIN POLICY CONTENT ───────────────────────────────────────── */
    .pp-content {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    /* Individual section block */
    .pp-section {
      padding: 2.75rem 0;
      border-bottom: 1px solid var(--border-soft);
    }

    .pp-section:last-child {
      border-bottom: none;
    }

    /* Section number + heading row */
    .pp-section-head {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .pp-section-num {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: var(--r-sm);
      background: var(--brand-pale);
      border: 1.5px solid var(--brand-soft);
      font-family: var(--ff-heading);
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--brand);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .pp-section-num-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: var(--r-sm);
      background: var(--brand-pale);
      border: 1.5px solid var(--brand-soft);
      color: var(--brand);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .pp-section h3 {
      font-size: 1.1875rem;
      font-weight: 700;
      color: var(--ink-900);
      letter-spacing: -0.02em;
      line-height: 1.3;
    }

    .pp-section p {
      color: var(--ink-500);
      font-size: 0.9375rem;
      line-height: 1.75;
      margin-bottom: 1rem;
    }

    .pp-section p:last-child {
      margin-bottom: 0;
    }

    /* Sub-heading inside a section */
    .pp-sub-heading {
      font-family: var(--ff-heading);
      font-size: 0.8125rem;
      font-weight: 700;
      color: var(--ink-700);
      letter-spacing: 0.01em;
      margin: 1.375rem 0 0.625rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    /* Policy list */
    .pp-list {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }

    .pp-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.625rem;
      font-size: 0.9375rem;
      color: var(--ink-500);
      line-height: 1.65;
    }

    .pp-list li .pp-bullet {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--brand-pale);
      border: 1px solid var(--brand-soft);
      flex-shrink: 0;
      margin-top: 3px;
    }

    .pp-list li .pp-bullet svg {
      color: var(--brand);
    }

    .pp-list li strong {
      color: var(--ink-700);
      font-weight: 600;
    }

    /* Inline highlight callout box */
    .pp-callout {
      display: flex;
      align-items: flex-start;
      gap: 0.875rem;
      padding: 1.125rem 1.375rem;
      background: var(--brand-pale);
      border: 1.5px solid var(--brand-soft);
      border-radius: var(--r-lg);
      margin: 1.25rem 0;
    }

    .pp-callout-icon {
      width: 34px;
      height: 34px;
      border-radius: var(--r-sm);
      background: var(--brand);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: #fff;
    }

    .pp-callout-text {
      font-size: 0.9rem;
      color: var(--ink-700);
      line-height: 1.65;
    }

    .pp-callout-text strong {
      font-weight: 600;
      color: var(--brand-dark);
    }

    /* Warning callout (orange tint) */
    .pp-callout.pp-callout-warn {
      background: #FFF9EC;
      border-color: #FDEFC6;
    }

    .pp-callout.pp-callout-warn .pp-callout-icon {
      background: var(--warning);
    }

    .pp-callout.pp-callout-warn .pp-callout-text {
      color: #7A4F10;
    }

    /* ─── SUBSECTION CARD (for types of cookies etc.) ─────────────────── */
    .pp-cards-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.875rem;
      margin: 1rem 0;
    }

    .pp-mini-card {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: var(--r-lg);
      padding: 1rem 1.125rem;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .pp-mini-card:hover {
      border-color: var(--brand-soft);
      box-shadow: var(--shadow-sm);
    }

    .pp-mini-card-label {
      font-family: var(--ff-heading);
      font-size: 0.8125rem;
      font-weight: 700;
      color: var(--ink-900);
      margin-bottom: 0.3125rem;
      display: flex;
      align-items: center;
      gap: 0.375rem;
    }

    .pp-mini-card-label svg {
      color: var(--brand);
    }

    .pp-mini-card p {
      font-size: 0.84375rem;
      color: var(--ink-400);
      line-height: 1.6;
      margin: 0;
    }

    /* ─── CONTACT SECTION ───────────────────────────────────────────── */
    .pp-contact-section {
      margin-top: 0;
      padding: 2.75rem 0 0;
    }

    .pp-contact-card {
      background: var(--ink-900);
      border-radius: 24px;
      padding: 3rem 3.5rem;
      position: relative;
      overflow: hidden;
    }

    .pp-contact-card::before {
      content: '';
      position: absolute;
      top: -120px;
      right: -120px;
      width: 380px;
      height: 380px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(131, 39, 210, 0.3) 0%, transparent 65%);
      pointer-events: none;
    }

    .pp-contact-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
      background-size: 48px 48px;
      pointer-events: none;
    }

    .pp-contact-inner {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .pp-contact-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      padding: 0.3125rem 0.875rem;
      border-radius: var(--r-full);
      background: rgba(131, 39, 210, 0.25);
      border: 1px solid rgba(197, 152, 240, 0.3);
      font-size: 0.75rem;
      font-weight: 600;
      font-family: var(--ff-heading);
      color: var(--brand-mid);
      margin-bottom: 1rem;
    }

    .pp-contact-card h3 {
      color: #fff;
      font-size: 1.375rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 0.5rem;
    }

    .pp-contact-card p {
      color: rgba(255, 255, 255, 0.55);
      font-size: 0.9375rem;
      line-height: 1.65;
      margin: 0;
    }

    .pp-contact-details {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      flex-shrink: 0;
    }

    .pp-contact-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.875rem 1.25rem;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--r-lg);
      transition: background 0.2s ease, border-color 0.2s ease;
      min-width: 260px;
    }

    .pp-contact-item:hover {
      background: rgba(131, 39, 210, 0.18);
      border-color: rgba(197, 152, 240, 0.35);
    }

    .pp-contact-item-icon {
      width: 34px;
      height: 34px;
      border-radius: var(--r-sm);
      background: rgba(131, 39, 210, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--brand-mid);
      flex-shrink: 0;
    }

    .pp-contact-item-text {
      display: flex;
      flex-direction: column;
      gap: 0.125rem;
    }

    .pp-contact-item-label {
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.4);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .pp-contact-item-val {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.85);
      font-weight: 500;
    }

    /* ─── ANIMATIONS ─────────────────────────────────────────────────── */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(18px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .pp-hero-inner>* {
      animation: fadeUp 0.55s ease both;
    }

    .pp-hero-inner>*:nth-child(1) {
      animation-delay: 0.05s;
    }

    .pp-hero-inner>*:nth-child(2) {
      animation-delay: 0.15s;
    }

    .pp-hero-inner>*:nth-child(3) {
      animation-delay: 0.25s;
    }

    .pp-hero-inner>*:nth-child(4) {
      animation-delay: 0.35s;
    }

    /* Scroll reveal for sections */
    .pp-section {
      opacity: 0;
      transform: translateY(14px);
      transition: opacity 0.45s ease, transform 0.45s ease;
    }

    .pp-section.pp-visible {
      opacity: 1;
      transform: none;
    }

    /* ─── RESPONSIVE ────────────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .pp-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .pp-toc {
        position: static;
        display: none;
        /* hide sidebar on mobile; replaced by in-page TOC chip strip */
      }

      .pp-mobile-toc {
        display: block;
      }
    }

    @media (min-width: 1025px) {
      .pp-mobile-toc {
        display: none;
      }
    }

    @media (max-width: 640px) {
      .pp-cards-grid {
        grid-template-columns: 1fr;
      }

      .pp-contact-card {
        padding: 2rem 1.5rem;
      }

      .pp-contact-inner {
        flex-direction: column;
      }

      .pp-contact-item {
        min-width: unset;
        width: 100%;
      }

      .pp-section-head {
        gap: 0.75rem;
      }
    }

    /* ─── MOBILE TOC STRIP ──────────────────────────────────────────── */
    .pp-mobile-toc {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: 20px;
      padding: 1.25rem 1.5rem;
      box-shadow: var(--shadow-sm);
    }

    .pp-mobile-toc-title {
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--brand);
      margin-bottom: 0.875rem;
    }

    .pp-mobile-toc-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .pp-mobile-toc-chips a {
      display: inline-flex;
      align-items: center;
      padding: 0.3125rem 0.75rem;
      border-radius: var(--r-full);
      background: var(--canvas-alt);
      border: 1.5px solid var(--border);
      font-size: 0.8rem;
      font-family: var(--ff-heading);
      font-weight: 500;
      color: var(--ink-500);
      transition: all 0.18s ease;
    }

    .pp-mobile-toc-chips a:hover {
      background: var(--brand-pale);
      border-color: var(--brand-soft);
      color: var(--brand-dark);
    }