    :root {
      --bg: #0a0a0f; --surface: #111118; --surface2: #18181f;
      --border: rgba(255,255,255,0.07); --accent: #6c63ff;
      --text: #e8e8f0; --muted: #7a7a99; --card-bg: #14141c;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'Space Grotesk', sans-serif;
      background: var(--bg); color: var(--text);
      min-height: 100vh; line-height: 1.7;
    }

    body::before {
      content: ''; position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none; z-index: 1000; opacity: 0.4;
    }

    header {
      position: sticky; top: 0; z-index: 900;
      background: rgba(10,10,15,0.85); backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }

    .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

    .header-inner { display: flex; justify-content: space-between; align-items: center; height: 68px; }

    .logo a {
      font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 800;
      color: var(--text); text-decoration: none; letter-spacing: -0.5px;
      display: flex; align-items: center; gap: 8px;
    }

    .logo-dot {
      width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.4); opacity: 0.6; }
    }

    nav { display: flex; align-items: center; gap: 4px; }

    nav a {
      text-decoration: none; color: var(--muted); font-weight: 500;
      font-size: 14px; padding: 8px 14px; border-radius: 8px; transition: all 0.2s;
    }

    nav a:hover { color: var(--text); background: var(--surface2); }

    /* CONTENT */
    .page-wrap { max-width: 780px; margin: 0 auto; padding: 60px 24px 80px; }

    .page-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(108,99,255,0.1); border: 1px solid rgba(108,99,255,0.3);
      color: var(--accent); font-size: 11px; font-weight: 600;
      padding: 5px 12px; border-radius: 999px; margin-bottom: 24px;
      letter-spacing: 0.08em; text-transform: uppercase;
      font-family: 'JetBrains Mono', monospace;
    }

    .page-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(30px, 4vw, 48px); font-weight: 800;
      letter-spacing: -2px; line-height: 1.1; margin-bottom: 12px;
      background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.6) 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }

    .update-date {
      font-family: 'JetBrains Mono', monospace; font-size: 12px;
      color: var(--muted); margin-bottom: 40px; display: block;
    }

    .policy-section {
      background: var(--card-bg); border: 1px solid var(--border);
      border-radius: 16px; padding: 28px; margin-bottom: 16px;
      animation: fadeUp 0.4s ease both;
    }

    .policy-section:nth-child(1) { animation-delay: 0.0s; }
    .policy-section:nth-child(2) { animation-delay: 0.05s; }
    .policy-section:nth-child(3) { animation-delay: 0.1s; }
    .policy-section:nth-child(4) { animation-delay: 0.15s; }
    .policy-section:nth-child(5) { animation-delay: 0.2s; }
    .policy-section:nth-child(6) { animation-delay: 0.25s; }
    .policy-section:nth-child(7) { animation-delay: 0.3s; }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(12px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .policy-section h2 {
      font-family: 'Syne', sans-serif;
      font-size: 17px; font-weight: 700; margin-bottom: 14px;
      display: flex; align-items: center; gap: 10px;
      color: var(--text);
    }

    .section-num {
      font-family: 'JetBrains Mono', monospace; font-size: 11px;
      color: var(--accent); background: rgba(108,99,255,0.1);
      padding: 3px 8px; border-radius: 4px; flex-shrink: 0;
    }

    .policy-section p {
      color: var(--muted); font-size: 14px; line-height: 1.75; margin-bottom: 10px;
    }

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

    .policy-section p a { color: var(--accent); text-decoration: none; }
    .policy-section p a:hover { text-decoration: underline; }

    .data-list {
      list-style: none; margin-top: 12px; display: flex; flex-direction: column; gap: 8px;
    }

    .data-list li {
      display: flex; align-items: center; gap: 10px;
      color: var(--muted); font-size: 14px;
      padding: 10px 14px;
      background: var(--surface2);
      border-radius: 8px;
      border: 1px solid var(--border);
    }

    .data-list li::before {
      content: '→'; color: var(--accent); font-family: 'JetBrains Mono', monospace;
      font-size: 12px; flex-shrink: 0;
    }

    footer {
      background: var(--surface); border-top: 1px solid var(--border); padding: 36px 0;
    }

    .footer-inner {
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 16px;
    }

    .footer-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 18px; color: var(--text); }
    .footer-copy { color: var(--muted); font-size: 13px; font-family: 'JetBrains Mono', monospace; margin-top: 4px; }
    .footer-links { display: flex; flex-wrap: wrap; gap: 4px; }

    .footer-links a {
      color: var(--muted); text-decoration: none; font-size: 13px;
      padding: 6px 12px; border-radius: 6px; transition: all 0.2s;
    }

    .footer-links a:hover { color: var(--text); background: var(--surface2); }

    @media (max-width: 600px) { nav a { padding: 8px 10px; font-size: 13px; } }