    .legal-hero {
      background: #07090c;
      padding: 120px 0 60px;
      text-align: center;
      border-bottom: 1px solid rgba(34,197,94,.15);
      position: relative;
      overflow: hidden;
    }
    .legal-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(34,197,94,.07) 0%, transparent 70%);
      pointer-events: none;
    }
    .legal-hero-badge {
      display: inline-block;
      font-family: var(--fh);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .15em;
      color: var(--gd);
      border: 1px solid rgba(34,197,94,.3);
      border-radius: 4px;
      padding: 4px 12px;
      margin-bottom: 20px;
      text-transform: uppercase;
    }
    .legal-hero h1 {
      font-family: var(--fh);
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 700;
      color: var(--tx-light);
      margin: 0 0 14px;
      letter-spacing: .04em;
    }
    .legal-hero h1 em { color: var(--gd); font-style: normal; }
    .legal-hero-meta {
      font-family: var(--fb);
      font-size: .85rem;
      color: var(--tx-muted);
    }
    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      justify-content: center;
      margin-bottom: 28px;
      font-family: var(--fb);
      font-size: .8rem;
      color: var(--tx-muted);
    }
    .breadcrumb a { color: var(--gd); text-decoration: none; }
    .breadcrumb a:hover { color: var(--gl); }
    .breadcrumb span { opacity: .45; }

    .legal-body {
      background: #07090c;
      padding: 64px 0 96px;
    }
    .legal-container {
      max-width: 860px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .risk-note {
      background: rgba(34,197,94,.06);
      border: 1px solid rgba(34,197,94,.25);
      border-left: 4px solid var(--gd);
      border-radius: 8px;
      padding: 18px 22px;
      margin-bottom: 48px;
      font-family: var(--fb);
      font-size: .88rem;
      color: var(--tx-muted);
      line-height: 1.7;
    }
    .risk-note strong { color: var(--gl); }

    .legal-section {
      margin-bottom: 52px;
      padding-bottom: 52px;
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .legal-section:last-child { border-bottom: none; margin-bottom: 0; }
    .section-number {
      display: inline-block;
      font-family: var(--fh);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .15em;
      color: var(--gd);
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .legal-section h2 {
      font-family: var(--fh);
      font-size: 1.45rem;
      font-weight: 700;
      color: var(--tx-light);
      margin: 0 0 20px;
      letter-spacing: .03em;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(34,197,94,.2);
    }
    .legal-section p,
    .legal-section li {
      font-family: var(--fb);
      font-size: .93rem;
      color: var(--tx-muted);
      line-height: 1.8;
      margin-bottom: 14px;
    }
    .legal-section ul, .legal-section ol { padding-left: 22px; margin-bottom: 14px; }
    .legal-section li { margin-bottom: 8px; }
    .legal-section strong { color: var(--tx-light); }
    .legal-section a { color: var(--gd); text-decoration: none; }
    .legal-section a:hover { color: var(--gl); text-decoration: underline; }

    /* Highlight box for demo account info */
    .demo-box {
      background: rgba(34,197,94,.05);
      border: 1px solid rgba(34,197,94,.2);
      border-radius: 8px;
      padding: 20px 22px;
      margin: 20px 0;
    }
    .demo-box h3 {
      font-family: var(--fh);
      font-size: 1rem;
      font-weight: 700;
      color: var(--gl);
      margin: 0 0 10px;
      letter-spacing: .05em;
      text-transform: uppercase;
    }
    .demo-box p {
      font-family: var(--fb);
      font-size: .88rem;
      color: var(--tx-muted);
      margin-bottom: 0;
      line-height: 1.7;
    }

    /* Prohibited uses grid */
    .prohib-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 10px;
      margin: 16px 0;
    }
    .prohib-list li {
      background: rgba(239,68,68,.05);
      border: 1px solid rgba(239,68,68,.15);
      border-radius: 6px;
      padding: 10px 14px;
      font-family: var(--fb);
      font-size: .85rem;
      color: var(--tx-muted);
      margin: 0;
      display: flex;
      gap: 10px;
      align-items: flex-start;
      line-height: 1.5;
    }
    .prohib-list li::before {
      content: '✕';
      color: #ef4444;
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px;
    }

    @media (max-width: 600px) {
      .legal-hero { padding: 100px 16px 48px; }
      .legal-container { padding: 0 16px; }
      .prohib-list { grid-template-columns: 1fr; }
    }
  
