64 bytes (512 bits) matches the recommendation for Django’s SECRET_KEY, Rails’ secret_key_base, and similar application frameworks. It provides more than enough entropy to resist brute-force attacks for the foreseeable future — many frameworks require at least this much or will warn you at startup.
Application secret keys (Django, Rails, Phoenix, Laravel), webhook signing secrets (Stripe, GitHub, Slack), session encryption keys, CSRF secret keys, and any environment where a framework or service asks you to generate a random secret. Paste it directly into your .env or secrets manager.
Because generation happens entirely in your browser, the secret never touches a network. You can generate your production secret_key_base without trusting a third-party server — the bytes come straight from crypto.getRandomValues.