03 · Men & Health

The problem isn’t curiosity. It’s compulsion.

Young men are reporting erectile difficulties at rates that surprised the doctors studying them. The research points to a specific culprit — not pornography in the abstract, but use that has become compulsive and escalating.

78%
Of men report watching pornography.
Covenant Eyes statistics roundup
~21%
Of men aged 18–35 who attempted intercourse reported some degree of erectile dysfunction.
JMIR Public Health, 2021 (n=3,419)
27.7%
Of men with ED reported needing more or more extreme porn to reach the same arousal — vs 18.9% without ED.
JMIR Public Health, 2021
The key distinction

It’s problematic use that tracks with dysfunction — not porn by itself.

This is the most important and most misreported part of the science, so we’ll be precise. The largest recent study — nearly 3,500 men aged 18 to 35 — did not find that watching pornography, on its own, was associated with erectile dysfunction. What it found was that men whose use had become problematic — compulsive, escalating, hard to control — had a significantly higher probability of ED, even after controlling for other factors. Masturbation frequency, notably, was not the driver.

The mechanism
More than a quarter of men with ED reported needing more, or more extreme, pornography to reach the same level of arousal — a habituation pattern. Researchers describe a cycle where novelty keeps feeding the behavior while real-world responsiveness dulls.
JMIR Public Health and Surveillance, 2021

Earlier clinical reviews pointed the same direction: a documented surge in sexual dysfunction among men under 40, with several studies linking it to heavy consumption — especially of extreme material — and clinical reports suggesting that stopping can reverse it for some men.

Where the science is still arguing Not every researcher agrees, and you should know that. Some studies find no direct link between porn and erectile function, and a few even find higher arousal among frequent viewers in lab settings. Much of this evidence is cross-sectional — a snapshot, not a film — so it can’t fully separate cause from effect. The responsible read: there is a real, replicated association between problematic use and ED in young men, and a plausible mechanism, but the case isn’t closed. We’d rather you carry an accurate claim than a viral one.
What it feels like from inside

The signs that use has tipped into compulsion.

  • Needing more time, or more extreme material, to feel the same thing.
  • Reaching for it on autopilot — bored, stressed, lonely — rather than from desire.
  • Difficulty becoming or staying aroused with a real partner, but not with a screen.
  • Trying to cut back and finding you can’t, or hiding the extent of it.
  • Anxiety, low mood, or shame that deepens the loop instead of breaking it.

Recognizing the pattern is not a verdict on your character. It’s the first piece of information you need to change it.

What the evidence says helps

The path back is unglamorous and it works.

Clinicians who treat this commonly start with a structured break to let the arousal system recalibrate, paired with addressing the anxiety or avoidance underneath. For compulsive patterns, evidence-based therapy — and ruling out physical causes with a physician — beats willpower alone. This is a health issue, and it responds to being treated like one.

A practical reset guide and a vetted directory of clinicians who treat compulsive sexual behavior are in development and will be linked here.

Habituation — the loop that dims its own reward
Getting help

Start with a person, not a forum.

A licensed therapist (look for AASECT-certified clinicians) or your primary-care physician is the right first step — both for compulsive use and to rule out physical causes of ED, which are common and treatable. If distress is severe, in the U.S. you can call or text 988 any time.

/* ============================================================ art.js — custom SVG artworks injected into each page hero. Abstract, non-literal imagery: shattered glass, static, shadow, fracture, severed threads. No photography, no depiction of people beyond anonymous silhouette/shadow. Renders crisp at any size. Each function returns an SVG string; a small loader places the right one into [data-art=”…”] containers. ============================================================ */ (function(){ // —- shared defs: grain, glow, gradients —- const DEFS = ` `; function frame(inner){ return `${DEFS} ${inner} `; } // deterministic pseudo-random for reproducible art function rng(seed){return function(){seed=(seed*9301+49297)%233280;return seed/233280;};} // ———- HOME: shattered glass radiating from a single point ———- function home(){ const r=rng(7); let shards=”; const cx=600,cy=360; for(let i=0;i<46;i++){ const a1=r()*Math.PI*2, a2=a1+(0.12+r()*0.4); const d1=120+r()*520, d2=120+r()*520; const x1=cx+Math.cos(a1)*d1, y1=cy+Math.sin(a1)*d1; const x2=cx+Math.cos(a2)*d2, y2=cy+Math.sin(a2)*d2; const op=(0.04+r()*0.16).toFixed(3); shards+=“; } let cracks=”; for(let i=0;i<60;i++){ const a=r()*Math.PI*2, len=140+r()*560; const x=cx+Math.cos(a)*len, y=cy+Math.sin(a)*len; cracks+=“; } return frame(` ${shards} ${cracks} `); } // ———- YOUTH: small silhouette dwarfed by looming screen-glow ———- function youth(){ return frame(` ${Array.from({length:7}).map((_,i)=>“).join(”)} `); } // ———- WOMEN/INDUSTRY: figure dissolving into pixels / sold as product ———- function women(){ const r=rng(19); let px=”; // a silhouette that fragments into drifting squares on the right side for(let i=0;i0.82 ? ‘#e8a33d’ : ‘#1b1b22’; px+=“; } return frame(` ${px} ${Array.from({length:34}).map((_,i)=>“).join(”)} `); } // ———- MEN: looping spiral / habituation, dimming feedback ———- function men(){ let spiral=”; const cx=600,cy=380; for(let i=0;i<520;i++){ const a=i*0.16, rad=i*0.85; const x=cx+Math.cos(a)*rad, y=cy+Math.sin(a)*rad*0.62; const op=(0.5*(1-i/520)).toFixed(3); const c = i%40<20 ? '#e8a33d':'#2a2a33'; spiral+=“; } // diminishing-return bars receding into dark let bars=”; for(let i=0;i<11;i++){ const h=240*Math.pow(0.86,i); bars+=“; } return frame(` ${spiral} ${bars} `); } // ———- MARRIAGE: two halves pulled apart, frayed thread between ———- function marriage(){ const r=rng(31); let threads=”; for(let i=0;i0.45; const op=(0.15+r()*0.4).toFixed(3); if(snap){ threads+=“; threads+=“; } else { threads+=“; } } return frame(` ${threads} `); } const ART={home,youth,women,men,marriage}; function init(){ document.querySelectorAll(‘[data-art]’).forEach(el=>{ const key=el.getAttribute(‘data-art’); if(ART[key]) el.innerHTML=ART[key](); }); } if(document.readyState!==’loading’) init(); else document.addEventListener(‘DOMContentLoaded’,init); })(); const io=new IntersectionObserver((es)=>es.forEach(e=>{if(e.isIntersecting)e.target.classList.add(‘in’)}),{threshold:.15}); document.querySelectorAll(‘.reveal’).forEach(el=>io.observe(el));