
    /* ══════════════════════════════════════
       RESET & TOKENS
       ══════════════════════════════════════ */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
    a { color: inherit; text-decoration: none; }
    ul, li { list-style: none; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }

    :root {
      --white: #FFFFFF;
      --off-white: #F4F4F2;
      --dark: #0a0a0a;
      --blue: #306BFF;
      --blue-700: #1a3bcc;
      --blue-glow: rgba(48,107,255,0.40);
      --zinc-300: #d4d4d8;
      --zinc-400: #a1a1aa;
      --zinc-500: #71717a;
      --zinc-700: #3f3f46;
      --zinc-800: #27272a;
      --zinc-900: #18181b;
      --dark-card-border: rgba(255,255,255,0.10);
      --dark-card-border-hover: rgba(255,255,255,0.20);
      --font-heading: 'DM Sans', sans-serif;
      --font-accent: 'Cormorant Garamond', Georgia, serif;
      --font-body: 'Rubik', sans-serif;
      --gm: 196px;
      --mw: 1920px;
      --ease: cubic-bezier(0.16, 1, 0.3, 1);
    }

    body {
      font-family: var(--font-heading);
      font-size: 20px;
      font-weight: 400;
      line-height: 1.5;
      color: var(--white);
      background: var(--dark);
      overflow-x: hidden;
    }

    /* ══════════════════════════════════════
       INNER WRAPPER
       ══════════════════════════════════════ */
    .inner {
      max-width: var(--mw);
      margin: 0 auto;
      padding-left: var(--gm);
      padding-right: var(--gm);
    }

    /* ══════════════════════════════════════
       DIVIDER
       ══════════════════════════════════════ */
    .divider { height: 1px; background: rgba(255,255,255,0.30); }
    .divider--dark { height: 1px; background: rgba(0,0,0,0.12); }

    /* ══════════════════════════════════════
       SCROLL REVEAL
       ══════════════════════════════════════ */
    .sr {
      opacity: 0;
      transform: translateY(44px);
      transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    }
    .sr.vis { opacity: 1; transform: translateY(0); }
    .sr-d1 { transition-delay: 0.1s; }
    .sr-d2 { transition-delay: 0.2s; }
    .sr-d3 { transition-delay: 0.3s; }

    /* ══════════════════════════════════════
       HERO — centered single-column pattern
       ══════════════════════════════════════ */
    #hero-main {
      background: var(--dark);
      position: relative;
      overflow: visible;
      padding-bottom: 80px;
    }
    .h2-hero-gradient {
      position: absolute;
      top: -20%;
      left: 50%;
      transform: translateX(-50%);
      width: 1270px;
      height: 1270px;
      object-fit: contain;
      pointer-events: none;
      z-index: 0;
    }
    .h2-wrap {
      max-width: var(--mw);
      margin: 0 auto;
      padding: 180px var(--gm) 0;
      display: grid;
      grid-template-columns: 1fr;
      position: relative;
      z-index: 1;
    }
    .h2-left {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .h2-title {
      font-family: var(--font-heading);
      font-size: 85px;
      font-weight: 400;
      text-transform: uppercase;
      line-height: 1;
      color: var(--white);
      margin-bottom: 24px;
    }
    .h2-title em {
      font-family: var(--font-accent);
      font-style: italic;
      font-weight: 600;
      font-size: 95px;
      line-height: 1;
    }
    .h2-hero-desc {
      font-family: var(--font-heading);
      font-size: 20px;
      font-weight: 400;
      line-height: 1.5;
      color: var(--white);
      max-width: 600px;
      margin-bottom: 36px;
    }
    .h2-left .btn-cta {
      align-self: center;
    }

    /* ══════════════════════════════════════
       POLICY CONTENT
       ══════════════════════════════════════ */
    .policy-section {
      padding: 80px 0 0;
      margin-top: -140px;
      position: relative;
      z-index: 1;
    }

    .policy-content {
      max-width: 860px;
      margin: 0 auto;
    }

    /* Table of Contents */
    .toc-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--dark-card-border);
      border-radius: 20px;
      padding: 40px;
      margin-bottom: 64px;
    }
    .toc-title {
      font-family: var(--font-heading);
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--zinc-500);
      margin-bottom: 24px;
    }
    .toc-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px 40px;
    }
    .toc-list li { list-style: none; }
    .toc-list a, .toc-list .toc-arrow { color: var(--white) !important; }
    .toc-list a:hover { color: var(--zinc-400) !important; }
    .toc-list a {
      font-family: var(--font-heading);
      font-size: 16px;
      font-weight: 400;
      color: var(--white);
      transition: color 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    .toc-list a:hover { color: var(--zinc-400); }
    .toc-arrow {
      color: var(--white);
      font-size: 14px;
      flex-shrink: 0;
    }

    /* Section headings */
    .policy-content h2 {
      font-family: var(--font-heading);
      font-size: 40px;
      font-weight: 500;
      line-height: 1.15;
      color: var(--white);
      margin-top: 72px;
      margin-bottom: 24px;
      scroll-margin-top: 120px;
    }
    .policy-content h2:first-of-type {
      margin-top: 0;
    }
    .policy-content .sr {
      margin-bottom: 64px;
    }
    .policy-content h3 {
      font-family: var(--font-heading);
      font-size: 24px;
      font-weight: 500;
      color: var(--white);
      margin-top: 40px;
      margin-bottom: 16px;
    }
    .policy-content h4 {
      font-family: var(--font-heading);
      font-size: 18px;
      font-weight: 600;
      color: var(--white);
      margin-top: 28px;
      margin-bottom: 12px;
    }

    /* Body text */
    .policy-content p {
      font-family: var(--font-heading);
      font-size: 17px;
      font-weight: 400;
      line-height: 1.8;
      color: var(--white);
      margin-bottom: 16px;
    }
    .policy-content ul,
    .policy-content ol {
      margin-bottom: 20px;
      margin-left: 0;
      padding-left: 0;
    }
    .policy-content li {
      font-family: var(--font-heading);
      font-size: 17px;
      line-height: 1.8;
      color: var(--white);
      margin-bottom: 8px;
      padding-left: 20px;
      position: relative;
      list-style: none;
    }
    .policy-content li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 12px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--blue);
    }
    .policy-content strong {
      color: var(--white);
      font-weight: 600;
    }
    .policy-content a {
      color: var(--blue);
      transition: opacity 0.3s ease;
    }
    .policy-content a:hover { opacity: 0.75; }
    .policy-content em {
      color: var(--blue);
      font-style: italic;
    }

    /* Contact box */
    .contact-box {
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--dark-card-border);
      border-radius: 16px;
      padding: 28px 32px;
      margin: 24px 0;
      display: flex;
      align-items: center;
      gap: 20px;
    }
    .contact-icon {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      background: rgba(48,107,255,0.10);
      border: 1px solid rgba(48,107,255,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      flex-shrink: 0;
    }
    .contact-info h4 {
      font-family: var(--font-heading);
      font-size: 18px;
      font-weight: 600;
      color: var(--white);
      margin: 0 0 4px 0;
    }
    .contact-info p {
      font-size: 15px;
      color: var(--white);
      margin: 0;
      line-height: 1.6;
    }

    /* Highlight box */
    .highlight-box {
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--dark-card-border);
      border-radius: 16px;
      padding: 28px 32px;
      margin: 32px 0;
    }
    .highlight-box strong {
      color: var(--white);
    }
    .highlight-box p {
      margin-bottom: 0;
    }

    /* Data table */
    .data-table-wrap {
      margin: 24px 0;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--dark-card-border);
    }
    .data-table {
      width: 100%;
      border-collapse: collapse;
      background: rgba(255,255,255,0.02);
    }
    .data-table th,
    .data-table td {
      padding: 16px 20px;
      text-align: left;
      font-family: var(--font-heading);
      font-size: 15px;
      border-bottom: 1px solid var(--dark-card-border);
    }
    .data-table th {
      background: rgba(255,255,255,0.05);
      font-weight: 600;
      color: var(--white);
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .data-table tr:last-child td { border-bottom: none; }
    .data-table td {
      color: var(--white);
    }
    .data-table td strong {
      color: var(--white);
    }

    /* Footer CTA box */
    .policy-footer-cta {
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--dark-card-border);
      border-radius: 20px;
      padding: 48px;
      margin-top: 72px;
      text-align: center;
    }
    .policy-footer-cta h3 {
      margin-top: 0;
      font-size: 30px;
      margin-bottom: 16px;
    }
    .policy-footer-cta p {
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }

    /* ══════════════════════════════════════
       RESPONSIVE
       ══════════════════════════════════════ */
    @media (max-width: 1800px) {
      :root { --gm: 140px; }
      .h2-hero-gradient { width: 1100px; height: 1100px; }
      .h2-title { font-size: 85px; }
      .h2-title em { font-size: 95px; }
    }

    @media (max-width: 1600px) {
      :root { --gm: 100px; }
      .h2-hero-gradient { width: 1000px; height: 1000px; }
      .h2-title { font-size: 72px; }
      .h2-title em { font-size: 76px; }
    }

    @media (max-width: 1440px) {
      :root { --gm: 100px; }
      .h2-title { font-size: 64px; }
      .h2-title em { font-size: 68px; }
    }

    @media (max-width: 1280px) {
      :root { --gm: 60px; }
      .h2-title { font-size: 56px; }
      .h2-title em { font-size: 60px; }
      .h2-hero-gradient { width: 800px; height: 800px; }
      .policy-content h2 { font-size: 34px; }
      .policy-content h3 { font-size: 22px; }
    }

    @media (max-width: 1024px) {
      :root { --gm: 40px; }
      .h2-title { font-size: 48px; }
      .h2-title em { font-size: 52px; }
      .h2-wrap { padding-top: 160px; }
      .h2-hero-gradient { width: 700px; height: 700px; }
      .policy-content h2 { font-size: 30px; }
      .toc-list { grid-template-columns: 1fr; }
    }

    @media (max-width: 768px) {
      :root { --gm: 24px; }
      .h2-title { font-size: 60px; }
      .h2-title em { font-size: 64px; }
      .h2-wrap { padding-top: 160px; }
      .h2-hero-gradient { width: 500px; height: 500px; }
      #hero-main { padding-bottom: 60px; }
      .policy-section { padding: 60px 0; }
      .policy-content h2 { font-size: 28px; margin-top: 56px; }
      .policy-content h3 { font-size: 20px; }
      .toc-card { padding: 32px 24px; }
      .contact-box { flex-direction: column; align-items: flex-start; gap: 16px; padding: 24px; }
      .data-table th, .data-table td { padding: 12px 14px; font-size: 13px; }
      .policy-footer-cta { padding: 36px 24px; }
    }

    @media (max-width: 640px) {
      .h2-title { font-size: 56px; }
      .h2-title em { font-size: 60px; }
    }

    @media (max-width: 480px) {
      :root { --gm: 16px; }
      .h2-title { font-size: 52px; }
      .h2-title em { font-size: 56px; }
      .h2-wrap { padding-top: 160px; }
      .h2-hero-gradient { width: 380px; height: 380px; }
      #hero-main { padding-bottom: 0; }
      .policy-section { padding: 0; margin-top: 0; }
      .policy-content p,
      .policy-content li { font-size: 16px; }
      .policy-content h2 { font-size: 24px; margin-top: 48px; }
      .policy-content h3 { font-size: 18px; }
      .highlight-box { padding: 20px; }
      .toc-card { padding: 24px 20px; }
      .toc-list a { font-size: 15px; }
      .policy-footer-cta { padding: 32px 20px; }
      .policy-footer-cta h3 { font-size: 24px; }
    }
  

/* Breadcrumbs — top-left of the hero (matches case study) */
.breadcrumbs { align-self: flex-start; display: flex; align-items: center; flex-wrap: nowrap; gap: 10px; font-family: var(--font-heading); font-size: 16px; font-weight: 500; color: var(--zinc-400); margin: 0 0 66px 0; position: relative; z-index: 2; text-align: left; min-width: 0; max-width: 100%; }
.breadcrumbs a { color: var(--zinc-400); transition: color 0.3s ease; flex-shrink: 0; white-space: nowrap; }
.breadcrumbs a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.30); flex-shrink: 0; }
.breadcrumb-current { color: var(--white); min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@media (max-width: 480px) { .breadcrumbs { font-size: 14px; gap: 8px; margin-bottom: 40px; } }

/* Breadcrumb: 135px from top, header-edge aligned, compact 24px block */
#hero-main { position: relative; }
#hero-main > .breadcrumbs {
  position: absolute;
  top: 135px;
  left: 0; right: 0;
  margin: 0 auto;
  max-width: var(--mw, 1920px);
  padding: 0 var(--gm, 196px);
  height: 24px;
  z-index: 3;
}

/* gap between breadcrumb and page title */
#hero-main .h2-title { margin-top: 20px; }
