From dcc8202efb94f1ac63ea54c8515ff44368e13122 Mon Sep 17 00:00:00 2001 From: martbost Date: Tue, 1 Sep 2026 09:40:07 -0500 Subject: [PATCH] Angle squeeze pages: fit headline, video and CTA above the fold Co-Authored-By: Claude Fable 5 --- public/join.js | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/public/join.js b/public/join.js index 9084de5..38cbdcc 100644 --- a/public/join.js +++ b/public/join.js @@ -150,10 +150,14 @@ document.documentElement.setAttribute('data-squeeze','1'); var s=document.createElement('section'); s.className='hero wrap'; - s.innerHTML='

'+a.h+'

'+ - '
'+ - '
'+ - ''+ + // Headline, video and button must all sit above the fold: the video is + // sized from the viewport height (nav + headline + button ≈ 360px), and + // the card shrinks to fit it rather than holding the full-page 860px width. + s.style.padding='16px 0 28px'; + s.innerHTML='

'+a.h+'

'+ + '
'+ + '
'+ + ''+ '
Independent team training resource • Participation involves risk • No income is guaranteed
'; main.appendChild(s); var hp=document.getElementById('hookPlayer'),cta=document.getElementById('hookCta');