  @font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: optional;
  }
  @font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-v20-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: optional;
  }
  @font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfair-display-v40-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: optional;
  }


  :root {
    --bg: #f3f3f7;
    --bg2: #ebebee;
    --bg3: #e4e4e4;
    --accent: #0066cc;
    --accent2: #1a7add;
    --text: #191a1f;
    --muted: #66656a;
    --border: rgba(1,1,8,0.1);
    --border-accent: rgba(0,102,204,0.3);
    --mono: 'Inter', sans-serif;
    --sans: 'Playfair Display', serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--mono);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
  }

  .skip-link {
    position: fixed;
    top: 1rem; left: 1rem;
    z-index: 200;
    transform: translateY(-160%);
    padding: 0.65rem 1rem;
    background: var(--accent);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s;
  }
  .skip-link:focus { transform: translateY(0); }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(rgba(0,102,204,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,102,204,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 3rem;
    background: rgba(248,248,250,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  .nav-logo {
    font-family: var(--sans);
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.05em;
    color: var(--text);
    text-decoration: none;
  }
  .nav-logo span { color: var(--accent); }
  .nav-links { display: flex; gap: 1.8rem; list-style: none; }
  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--accent); }
  a:focus-visible, button:focus-visible {
    outline: 3px solid #0066cc;
    outline-offset: 4px;
    border-radius: 8px;
  }
  .nav-cta {
    background: var(--accent) !important;
    color: #ffffff !important;
    padding: 0.5rem 1.1rem !important;
    border-radius: 4px;
    transition: opacity 0.2s, transform 0.15s !important;
  }
  .nav-cta:hover { color: #ffffff !important; opacity: 0.88; transform: translateY(-1px); }

  /* PAGE */
  .page-wrap {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
    padding: 9rem 3rem 6rem;
  }

  .section-tag {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .section-tag::before {
    content: '';
    display: block;
    width: 24px; height: 1px;
    background: var(--accent);
  }

  h1 {
    font-family: var(--sans);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 0.4rem;
  }

  .policy-meta {
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 0.2rem;
  }
  .policy-meta strong { color: var(--text); font-weight: 500; }

  .policy-sub {
    font-size: 0.72rem;
    color: var(--muted);
    font-style: italic;
    margin-bottom: 2rem;
  }

  /* INFO BOX */
  .info-box {
    background: rgba(0,102,204,0.06);
    border-left: 3px solid var(--accent);
    padding: 1.2rem 1.5rem;
    margin-bottom: 2.5rem;
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.8;
  }
  .info-box p + p { margin-top: 0.6rem; }

  .note-box {
    background: rgba(254,188,46,0.08);
    border-left: 3px solid #febc2e;
    padding: 1.2rem 1.5rem;
    margin: 1.2rem 0;
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.8;
  }

  .contact-box {
    background: rgba(0,102,204,0.06);
    border-left: 3px solid var(--accent);
    padding: 1.2rem 1.5rem;
    margin: 1.2rem 0;
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.9;
  }
  .contact-box a { color: var(--accent); text-decoration: none; }
  .contact-box a:hover { text-decoration: underline; }

  /* POLICY BODY */
  .policy-body h2 {
    font-family: var(--sans);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    margin-top: 3rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-accent);
  }

  .policy-body h3 {
    font-family: var(--mono);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 1.8rem;
    margin-bottom: 0.5rem;
  }

  .policy-body p {
    font-size: 0.86rem;
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 0.9rem;
  }
  .policy-body p strong { color: var(--text); font-weight: 500; }

  .policy-body ul {
    margin: 0.4rem 0 1rem 1.4rem;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.9;
  }
  .policy-body ul li { margin-bottom: 0.3rem; }
  .policy-body ul li strong { color: var(--text); font-weight: 500; }

  .policy-body a { color: var(--accent); text-decoration: none; }
  .policy-body a:hover { text-decoration: underline; }

  /* OPERATOR TABLE */
  .operator-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2rem 0 1.8rem;
    font-size: 0.83rem;
  }
  .operator-table td {
    padding: 0.65rem 1rem;
    border: 1px solid var(--border);
    vertical-align: top;
    line-height: 1.7;
  }
  .operator-table td:first-child {
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    width: 160px;
    background: var(--bg2);
  }
  .operator-table td:last-child { color: var(--muted); }
  .operator-table a { color: var(--accent); text-decoration: none; }

  /* PURPOSES TABLE */
  .purposes-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2rem 0 1.8rem;
    font-size: 0.82rem;
  }
  .purposes-table th {
    background: var(--text);
    color: #fff;
    padding: 0.65rem 1rem;
    text-align: left;
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
  }
  .purposes-table td {
    padding: 0.65rem 1rem;
    border: 1px solid var(--border);
    vertical-align: top;
    line-height: 1.7;
    color: var(--muted);
  }
  .purposes-table td:first-child {
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    background: var(--bg2);
  }
  .purposes-table tr:nth-child(even) td { background: var(--bg3); }
  .purposes-table tr:nth-child(even) td:first-child { background: var(--bg2); }

  /* COOKIES TABLE */
  .cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2rem 0 1.8rem;
    font-size: 0.82rem;
  }
  .cookies-table th {
    background: var(--text);
    color: #fff;
    padding: 0.65rem 1rem;
    text-align: left;
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
  }
  .cookies-table td {
    padding: 0.65rem 1rem;
    border: 1px solid var(--border);
    vertical-align: top;
    line-height: 1.7;
    color: var(--muted);
  }
  .cookies-table td:first-child { font-weight: 600; color: var(--text); background: var(--bg2); }
  .cookies-table .req-yes { color: #28a745; font-weight: 500; }
  .cookies-table .req-no { color: var(--muted); }
  .cookies-table .req-cond { color: #febc2e; font-weight: 500; }

  /* APP TABLE */
  .app-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2rem 0 1.8rem;
    font-size: 0.82rem;
  }
  .app-table th {
    background: var(--text);
    color: #fff;
    padding: 0.65rem 1rem;
    text-align: left;
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
  }
  .app-table td {
    padding: 0.65rem 1rem;
    border: 1px solid var(--border);
    vertical-align: top;
    line-height: 1.7;
    color: var(--muted);
  }
  .app-table td:first-child {
    font-weight: 700;
    color: var(--accent);
    text-align: center;
    width: 48px;
    background: var(--bg2);
  }
  .app-table td:nth-child(2) { font-weight: 600; color: var(--text); background: var(--bg2); width: 220px; }
  .app-table tr:nth-child(even) td { background: var(--bg3); }
  .app-table tr:nth-child(even) td:first-child,
  .app-table tr:nth-child(even) td:nth-child(2) { background: var(--bg2); }

  /* OAIC BOX */
  .oaic-box {
    background: rgba(0,102,204,0.04);
    border: 1px solid var(--border-accent);
    padding: 1.2rem 1.5rem;
    margin: 1.2rem 0;
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.9;
  }
  .oaic-box .oaic-label {
    font-weight: 700;
    color: var(--accent);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
  }
  .oaic-box a { color: var(--accent); text-decoration: none; }

  /* FOOTER NOTE */
  .policy-footer-note {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-size: 0.75rem;
    color: var(--muted);
    font-style: italic;
    line-height: 1.8;
  }

  /* SITE FOOTER */
  .divider {
    height: 1px;
    background: var(--border);
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  footer {
    border-top: 1px solid var(--border);
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    font-size: 0.72rem;
    color: var(--muted);
    position: relative;
    z-index: 1;
  }
  footer a { color: var(--muted); text-decoration: none; }
  footer a:hover { color: var(--accent); }

  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: rgba(0,102,204,0.3); border-radius: 2px; }

  @media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .page-wrap { padding: 7rem 1.5rem 4rem; }
    .operator-table td:first-child { width: auto; white-space: normal; }
    footer { padding: 2rem 1.5rem; flex-direction: column; gap: 0.5rem; text-align: center; }
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      scroll-behavior: auto !important;
      transition-duration: 0.01ms !important;
    }
  }
