AvatarRiskReport
Click Copy, then paste into Webflow embed element for AvatarRiskReport.com
Copy Code for AvatarRiskReport
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>AvatarRiskReport.com</title> <link rel="preconnect" href="https://fonts.googleapis.com" /> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> <link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=DM+Mono:wght@400;500&display=swap" rel="stylesheet" /> <style> :root { --accent: #C0392B; --accent-glow: rgba(192,57,43,0.15); --bg: #0D1117; --bg-mid: #161B22; --bg-card: #1C2333; --border: #21262D; --text: #F0F6FC; --text-sec: #8B949E; --text-muted: #484F58; --white: #FFFFFF; } *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; } body { background: var(--bg); color: var(--text); font-family: 'DM Sans', sans-serif; min-height: 100vh; overflow-x: hidden; } 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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"); pointer-events: none; z-index: 0; opacity: 0.3; } .page { position: relative; z-index: 1; min-height: 100vh; display: grid; grid-template-columns: 1fr 480px; gap: 0; } /* LEFT PANEL */ .left { padding: 60px 64px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; } .left-glow { position: absolute; top: -100px; left: -100px; width: 600px; height: 600px; background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%); pointer-events: none; } .grid-bg { position: absolute; inset: 0; background-image: linear-gradient(var(--accent-glow) 1px, transparent 1px), linear-gradient(90deg, var(--accent-glow) 1px, transparent 1px); background-size: 48px 48px; mask-image: radial-gradient(ellipse 80% 80% at 30% 50%, black 20%, transparent 100%); opacity: 0.4; } .eyebrow { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 24px; opacity: 0; animation: fadeUp 0.6s ease forwards 0.1s; } .headline { font-family: 'Bebas Neue', sans-serif; font-size: clamp(64px, 8vw, 110px); line-height: 0.92; letter-spacing: 0.02em; color: var(--text); margin-bottom: 32px; opacity: 0; animation: fadeUp 0.7s ease forwards 0.25s; } .subhead { font-size: 20px; font-weight: 500; color: var(--accent); margin-bottom: 20px; opacity: 0; animation: fadeUp 0.7s ease forwards 0.35s; } .body-text { font-size: 16px; color: var(--text-sec); line-height: 1.8; font-weight: 300; max-width: 520px; margin-bottom: 40px; opacity: 0; animation: fadeUp 0.7s ease forwards 0.45s; } .chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 48px; opacity: 0; animation: fadeUp 0.7s ease forwards 0.55s; } .chip { display: inline-flex; align-items: center; gap: 8px; background: var(--bg-mid); border: 1px solid var(--border); padding: 6px 14px; border-radius: 2px; font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.06em; color: var(--text-sec); } .chip::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; } .ecosystem-line { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.1em; color: var(--text-muted); opacity: 0; animation: fadeUp 0.7s ease forwards 0.65s; } .ecosystem-line a { color: var(--accent); text-decoration: none; } .ecosystem-line a:hover { text-decoration: underline; } /* RIGHT PANEL */ .right { background: var(--bg-mid); border-left: 1px solid var(--border); padding: 60px 48px; display: flex; flex-direction: column; justify-content: center; position: relative; } .form-domain { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 0.14em; color: var(--accent); margin-bottom: 8px; } .form-title { font-family: 'Bebas Neue', sans-serif; font-size: 32px; letter-spacing: 0.06em; color: var(--text); margin-bottom: 6px; line-height: 1; } .form-offer { font-size: 13px; color: var(--text-muted); margin-bottom: 36px; line-height: 1.6; font-weight: 300; padding-bottom: 24px; border-bottom: 1px solid var(--border); } .form-group { margin-bottom: 16px; } .form-group label { display: block; font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; } .form-group input { width: 100%; background: var(--bg); border: 1px solid var(--border); color: var(--text); padding: 13px 16px; font-size: 14px; font-family: 'DM Sans', sans-serif; border-radius: 3px; outline: none; transition: border-color 0.2s; } .form-group input:focus { border-color: var(--accent); } .form-group input::placeholder { color: var(--text-muted); } .form-submit { width: 100%; background: var(--accent); color: white; border: none; padding: 15px 24px; font-size: 15px; font-weight: 600; font-family: 'DM Sans', sans-serif; letter-spacing: 0.04em; border-radius: 3px; cursor: pointer; transition: opacity 0.2s, transform 0.2s; margin-top: 8px; } .form-submit:hover { opacity: 0.9; transform: translateY(-1px); } .form-disclaimer { font-size: 11px; color: var(--text-muted); text-align: center; margin-top: 16px; line-height: 1.6; font-weight: 300; } .divider { height: 1px; background: var(--border); margin: 28px 0; } .insuremyavatar-link { display: flex; align-items: center; justify-content: space-between; gap: 16px; } .ima-text p { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; } .ima-text strong { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 0.06em; color: var(--text); } .ima-btn { display: inline-flex; align-items: center; gap: 6px; color: var(--accent); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; font-family: 'DM Mono', monospace; border: 1px solid var(--accent); padding: 8px 16px; border-radius: 2px; transition: background 0.2s, color 0.2s; white-space: nowrap; flex-shrink: 0; } .ima-btn:hover { background: var(--accent); color: white; } .dfti-link { margin-top: 16px; text-align: center; } .dfti-link a { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.1em; color: var(--text-muted); text-decoration: none; text-transform: uppercase; } .dfti-link a:hover { color: var(--text-sec); } @keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } } @media (max-width: 900px) { .page { grid-template-columns: 1fr; } .left { padding: 48px 24px; } .right { border-left: none; border-top: 1px solid var(--border); padding: 40px 24px; } .headline { font-size: clamp(52px, 14vw, 80px); } } </style> </head> <body> <div class="page"> <div class="left"> <div class="left-glow"></div> <div class="grid-bg"></div> <div class="eyebrow">Free Personal Assessment</div> <div class="headline"><span>WHAT IS YOUR</span><br><span>AVATAR RISK</span><br><span>SCORE?</span></div> <div class="subhead">Find out how exposed your digital identity is right now.</div> <p class="body-text">Your face, voice, and online persona can be copied, cloned, and weaponized without your knowledge. The Avatar Risk Report gives you a clear, honest picture of your personal exposure level and what to do about it.</p> <div class="chips"> <span class="chip">Personal Exposure Assessment</span> <span class="chip">Deepfake Vulnerability</span> <span class="chip">Voice Clone Risk</span> <span class="chip">Protection Checklist</span> </div> <div class="ecosystem-line"> Part of the InsureMyAvatar ecosystem — <a href="https://www.insuremyavatar.com" target="_blank">InsureMyAvatar.com</a> </div> </div> <div class="right"> <div class="form-domain">AvatarRiskReport.com</div> <div class="form-title">Get Early Access</div> <p class="form-offer">Free personal risk assessment + Q1 2026 DFTI Intelligence Brief</p> <form id="captureForm"> <div class="form-group"> <label>First Name</label> <input type="text" placeholder="Your first name" required /> </div> <div class="form-group"> <label>Email Address</label> <input type="email" placeholder="your@email.com" required /> </div> <button type="submit" class="form-submit">Get Your Free Risk Report →</button> </form> <p class="form-disclaimer">No spam. Unsubscribe anytime.<br>Published by Social Impressions Inc.</p> <div class="divider"></div> <div class="insuremyavatar-link"> <div class="ima-text"> <p>Protect your digital identity</p> <strong>InsureMyAvatar.com</strong> </div> <a href="https://www.insuremyavatar.com" target="_blank" class="ima-btn">Visit →</a> </div> <div class="dfti-link"> <a href="https://www.deepfakethreatindex.com" target="_blank">See the Q1 2026 Deepfake Threat Index →</a> </div> </div> </div> <script> document.getElementById('captureForm').addEventListener('submit', async function(e) { e.preventDefault(); const btn = this.querySelector('.form-submit'); const firstName = this.querySelector('input[type="text"]').value.trim(); const email = this.querySelector('input[type="email"]').value.trim(); btn.textContent = 'One moment...'; btn.disabled = true; btn.style.opacity = '0.7'; try { await fetch('https://little-union-6931.quiet-lab-79c3.workers.dev', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ email, firstName }) }); } catch(err) { /* fail silently, still deliver */ } // Deliver the DFTI report as a bonus const link = document.createElement('a'); link.href = 'https://cdn.prod.website-files.com/68a9ce94d0b649b2fe323aa7/69d02601a401e124b1960e96_DFTI_Q1_2026.pdf'; link.target = '_blank'; document.body.appendChild(link); link.click(); document.body.removeChild(link); btn.textContent = 'Your report is on its way.'; btn.style.background = '#27AE60'; btn.style.opacity = '1'; document.querySelector('.form-disclaimer').textContent = 'Check your downloads folder for the report.'; }); </script> </body> </html>