HEAVY: 6-Week Progressive Overload
/* --- MODERN CSS VARIABLES & THEME --- */ :root { --color-bg: #ffffff; --color-text-main: #111111; --color-text-muted: #6a6a6a; --color-primary: #0070f3; /* Electric Blue */ --col or-primary-hover: #0051b3; --color-accent: #e00020; /* Modern Red */ --color-surface: #f8f9fa; /* Soft grey card background */ --color-border: #e2e8f0; --font-sans: system-ui, sans-serif; --radius-md: 16px; --radius-sm: 8px; --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1); } /* --- CORE RESET & STYLES --- */ html { scroll-behavior: smooth; } body { font-family: var(--font-sans); background-color: var(--color-bg); color: var(--color-text-main); margin: 0; padding: 0; line-height: 1.6; -webkit-font-smoothing: antialiased; } .hv-container { max-width: 1000px; margin: 0 auto; padding: clamp(1.5rem, 7vw, 4rem); } /* --- PITCH DECK SLIDE SPACING --- */ .hv-deck-slide { margin-top: clamp(4rem, 14vh, 12rem); margin-bottom: clamp(4rem, 14vh, 12rem); } .hv-deck-slide:first-of-type { margin-top: clamp(1rem, 5vh, 4rem); } /* --- TYPOGRAPHY & HEADERS --- */ .hv-title { font-size: clamp(3rem, 10vw, 6rem); font-weight: 900; text-align: center; text-transform: uppercase; margin-bottom: 0.5rem; color: var(--color-text-main); letter-spacing: -0.05em; line-height: 0.85; } .hv-subtitle { text-align: center; letter-spacing: 0.35em; color: var(--color-primary); font-weight: 800; font-size: clamp(0.8rem, 2.5vw, 1.1rem); margin-bottom: clamp(2rem, 8vh, 5rem); text-transform: uppercase; } /* Hook Box */ .hv-hook { color: var(--color-text-main); font-weight: 700; text-align: center; padding: clamp(2rem, 5vw, 3.5rem); border: 2px solid var(--color-text-main); background: var(--color-bg); margin: 3rem 0; font-size: clamp(1rem, 2.8vw, 1.35rem); line-height: 1.5; letter-spacing: -0.01em; border-radius: var(--radius-md); box-shadow: 0 20px 40px rgba(0,0,0,0.04); } .hv-hook span { color: var(--color-accent); } /* Slide Headings */ .hv-section-head { display: flex; align-items: center; gap: 16px; color: var(--color-text-main); font-weight: 900; text-transform: uppercase; margin-bottom: clamp(1.5rem, 4vh, 2.5rem); font-size: clamp(1.4rem, 3.5vw, 2rem); letter-spacing: -0.03em; } .hv-num { background: var(--color-text-main); color: var(--color-bg); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 1.1rem; font-weight: 900; flex-shrink: 0; } .hv-intro-text { font-size: clamp(1.1rem, 2.8vw, 1.35rem); max-width: 800px; margin: 0 0 clamp(2rem, 5vh, 3.5rem) 0; color: var(--color-text-muted); line-height: 1.5; } /* --- DATA & CHARTS --- */ .hv-graph-box { margin: 2rem 0; background: var(--color-surface); padding: clamp(1.5rem, 5vw, 3rem); border-radius: var(--radius-md); border: 1px solid var(--color-border); } .hv-graph-box h3 { margin-top: 0; margin-bottom: 0.75rem; font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; } .hv-graph-box p { color: var(--color-text-muted); font-size: clamp(0.95rem, 2vw, 1.1rem); margin-bottom: 2rem; } /* Trajectory Chart */ .hv-bars { display: flex; align-items: flex-end; gap: 8px; height: 160px; padding-bottom: 12px; border-bottom: 2px solid var(--color-border); } .hv-bar { flex: 1; background: var(--color-primary); border-radius: 6px 6px 0 0; transition: var(--transition); } .hv-bar:hover { background: var(--color-primary-hover); } .hv-bar.peak { background: var(--color-accent); } .hv-labels-container { display: flex; justify-content: space-between; gap: 15px; margin-top: 1rem; } .hv-bar-label { text-align: center; font-size: clamp(10px, 1.8vw, 13px); color: var(--color-text-muted); font-weight: 700; text-transform: uppercase; flex: 1; line-height: 1.4; } /* --- FIXED ASYMMETRIC GRID ARCHITECTURES --- */ .hv-pillar-grid { display: flex; flex-wrap: wrap; gap: 2rem; margin: 2.5rem 0; justify-content: center; } .hv-card { background: var(--color-bg); padding: clamp(1.5rem, 4vw, 2.5rem); border-radius: var(--radius-md); border: 1px solid var(--color-border); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02); display: flex; flex-direction: column; justify-content: space-between; transition: var(--transition); /* Square dynamic proportions on desktop layout */ flex: 1 1 calc(50% - 2rem); min-width: 280px; max-width: calc(50% - 1rem); box-sizing: border-box; } /* Section 4 Blueprint Refactor: Transforms thin layout into premium square slides */ .hv-blueprint-layout { display: flex; flex-wrap: wrap; gap: 2rem; margin: 2.5rem 0; } .hv-blueprint-layout .hv-card { flex: 1 1 calc(50% - 1rem); max-width: calc(50% - 1rem); } /* Style row 1 card as a hero slide header block */ .hv-blueprint-layout .hv-card.hv-hero-block { flex: 1 1 100%; max-width: 100%; border-left: 6px solid var(--color-primary); } .hv-blueprint-layout .hv-card.hv-hero-block .hv-bullet-group { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; } .hv-blueprint-layout .hv-card.hv-hero-block ul { padding-left: 0; list-style: none; display: contents; } .hv-blueprint-layout .hv-card.hv-hero-block li { background: var(--color-surface); padding: 1.25rem; border-radius: var(--radius-sm); margin-bottom: 0; border: 1px solid var(--color-border); } @media (max-width: 850px) { .hv-blueprint-layout .hv-card { flex: 1 1 100%; max-width: 100%; } } .hv-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06); border-color: var(--color-text-main); } .hv-card h3 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--color-text-muted); margin: 0 0 0.75rem 0; font-weight: 700; } .hv-card h4 { font-size: clamp(1.25rem, 3vw, 1.6rem); font-weight: 800; line-height: 1.2; margin: 0 0 1.25rem 0; letter-spacing: -0.02em; } .hv-card p { font-size: clamp(0.95rem, 2vw, 1.05rem); color: var(--color-text-muted); margin: 0 0 1.5rem 0; line-height: 1.6; } .hv-card ul { margin: 0; padding-left: 1.2rem; color: var(--color-text-muted); } .hv-card li { font-size: clamp(0.9rem, 1.8vw, 1rem); margin-bottom: 0.75rem; line-height: 1.5; } .hv-card li strong { display: inline; color: var(--color-text-main); text-transform: none; letter-spacing: normal; font-size: inherit; } .hv-card > strong { font-size: 0.85rem; display: block; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; margin-top: auto; } /* --- WEEKLY TIMELINE STYLING --- */ .hv-timeline { display: flex; flex-direction: column; gap: 1.5rem; margin: 3rem 0; } .hv-timeline-row { display: grid; grid-template-columns: 180px 1fr; border-left: 4px solid var(--color-text-main); padding-left: 1.5rem; transition: var(--transition); } .hv-timeline-row:hover { border-left-color: var(--color-primary); } .hv-timeline-day { font-weight: 900; text-transform: uppercase; font-size: clamp(1.1rem, 2.5vw, 1.4rem); letter-spacing: -0.02em; color: var(--color-text-main); line-height: 1.2; } .hv-timeline-meta { font-size: 0.8rem; font-weight: 800; color: var(--color-primary); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.25rem; } .hv-timeline-content h4 { margin: 0 0 0.5rem 0; font-size: clamp(1.2rem, 3vw, 1.5rem); font-weight: 800; letter-spacing: -0.02em; } .hv-timeline-vibe { font-size: clamp(0.95rem, 2vw, 1.1rem); color: var(--color-text-muted); line-height: 1.5; } @media (max-width: 650px) { .hv-timeline-row { grid-template-columns: 1fr; gap: 0.5rem; padding-bottom: 1rem; } } /* --- EQUIPMENT CONTAINER --- */ .hv-equip-grid { display: flex; flex-wrap: wrap; gap: 1.25rem; margin: 2.5rem 0; justify-content: center; } .hv-equip-item { background: var(--color-bg); border: 2px solid var(--color-border); padding: 1.25rem 1.5rem; border-radius: var(--radius-sm); text-align: center; font-weight: 800; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-text-main); transition: var(--transition); flex: 0 1 auto; min-width: 140px; } .hv-equip-item:hover { border-color: var(--color-text-main); background: var(--color-surface); } /* Deck Style Lists */ .hv-graph-box ul { padding-left: 1.5rem; margin-top: 1.5rem; margin-bottom: 0; } .hv-graph-box li { margin-bottom: 0.75rem; font-size: clamp(1rem, 2vw, 1.15rem); } /* Presentation Ending Callout */ .hv-final-head { text-align: center; font-size: clamp(2rem, 7vw, 4.5rem); font-weight: 900; letter-spacing: -0.04em; margin-top: clamp(4rem, 12vh, 10rem); margin-bottom: 1rem; text-transform: uppercase; line-height: 0.9; } .hv-dominance-p { font-size: clamp(1.1rem, 3vw, 1.4rem); max-width: 750px; margin: 0 auto clamp(3rem, 8vh, 6rem) auto; text-align: center; color: var(--color-text-muted); line-height: 1.6; } /* --- PREMIUM BUY NOW DECK PANEL --- */ .hv-cta-block { background: var(--color-text-main); color: var(--color-bg); border-radius: var(--radius-md); padding: clamp(3rem, 8vw, 5rem) clamp(1.5rem, 5vw, 3.5rem); text-align: center; margin-top: 4rem; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15); width: 100%; box-sizing: border-box; } .hv-cta-title { font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 900; text-transform: uppercase; letter-spacing: -0.03em; margin: 0 0 1rem 0; } .hv-cta-desc { color: #a1a1aa; font-size: clamp(1rem, 2.5vw, 1.25rem); max-width: 600px; margin: 0 auto 3rem auto; line-height: 1.5; } .hv-price-layout { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 2rem; } .hv-price-old { font-size: clamp(1.25rem, 3vw, 1.75rem); color: #71717a; text-decoration: line-through; font-weight: 600; } .hv-price-new { font-size: clamp(3.5rem, 9vw, 5rem); font-weight: 900; color: var(--color-bg); letter-spacing: -0.04em; } .hv-buy-btn { display: inline-block; background: var(--color-primary); color: var(--color-bg); text-decoration: none; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; padding: 1.5rem 3.5rem; border-radius: var(--radius-sm); font-size: clamp(1rem, 2vw, 1.2rem); transition: var(--transition); box-shadow: 0 10px 25 rgba(0, 112, 243, 0.4); width: 100%; max-width: 420px; box-sizing: border-box; } .hv-buy-btn:hover { background: var(--color-primary-hover); transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0, 112, 243, 0.5); } .hv-cta-guarantee { font-size: 0.85rem; text-transform: uppercase; color: #71717a; letter-spacing: 0.15em; margin-top: 2rem; font-weight: 700; } /* --- RESPONSIVE MOBILE ADJUSTMENTS --- */ @media (max-width: 600px) { .hv-labels-container { flex-direction: column; align-items: center; gap: 6px; margin-top: 1.5rem; } .hv-bar-label { text-align: center; width: 100%; } .hv-section-head { margin-bottom: 1.25rem; } } HEAVY Highlight-reel performance, head turning physique IF YOU ARE SWITCHING WORKOUTS WEEK BY WEEK, YOU ARE DESTROYING YOUR CHANCE FOR SERIOUS GAINS.THIS IS THE SYSTEM TO FIX IT. 1 The Overload Trajectory This workout program forces adaptation by systematically overloading four key variables: Load, Volume, Density, and Complexity. Taking progression seriously guarantees your body will never plateau. WEEKS 1 & 2(Foundation) WEEKS 3 & 4(Intensity Build) WEEKS 5 & 6(PEAK OVERLOAD) 2 Commercial Gym EQUIPMENT This program is engineered explicitly for high-performance execution within a standard commercial gym space. Dumbbells Barbell Bench Pullup Bar Cables Kettlebell 3 The Core Pillars of Physical Dominance Strength Block Maximal Force Generation We build raw, explosive power using heavy compound lifts. This forces your core to stabilize while lifting massive loads. The focus is training you for real-life impact resistance. Goal: Lift Heavier Than You Thought Possible Synergy Training Upper Body Integration Tackles PUSH and PULL movements together. This forces your chest to stabilize the shoulder while you press, building a resilient, balanced upper body capable of all motions. Goal: Balanced Strength in Every Motion Active Recovery Injury Prevention One of the most overlooked skills. We restore natural joint range of motion (hips, spine). Mobility isn't rest, it's preparing your system to run without locking up. Goal: Train for a Lifetime, Not Just Six Weeks Metabolic Overload Sustained Output Power The finisher circuits test your willpower. We train you to push through the burning fatigue, building a mental fortitude that lasts long after the workout ends. Goal: Finish Stronger Than When You Started 4 The Strategic Blueprint An program calibrated explicitly to build high-performance athleticism without sacrificing your real-world productivity. Execution Strategy 1. Built For Your Busy Life Pack maximum physical return into a streamlined 5-day weekly commitment. Every session is pre-structured into hyper-focused strength and accessory phases to eliminate wasted time. Instant Access: The standalone PDF format gives you a permanent, zero-fuss blueprint you can open instantly on your phone or print out for the gym floor. Joint Longevity: The mid-week active recovery day ensures you stay pain-free and flexible for your daily life outside the gym. Familiar Environments: The programming uses standard commercial gym equipment, meaning you never have to hunt down niche gear. Performance Tier 2. Unlocking True Physical Dominance This intermediate-to-advanced training plan is designed for experienced lifters who want to break through frustrating strength plateaus. You will build a body that performs as athletic as it looks. All-In-One Capability: Develop raw lifting power, dense muscle hypertrophy, and conditioning in a single, cohesive routine. Built-In Injury Prevention: Explicit technique safeguards and mandatory warm-up circuits protect your spine and joints from burnout. Listen To Your Body: The Reps-in-Reserve (RIR) framework lets you adjust intensity based on your daily sleep and stress levels. The Timeline 3. The Science of the Six-Week Peak Eliminate fitness guesswork with a systematic model that forces your body to adapt. This structured timeline guarantees noticeable physical changes in just forty-two days. Four-Dimensional Overload: Force continuous growth by lifting heavier, adding volume, increasing training density, and slowing down movement tempos. The Hardening Phase: The workload steps up every two weeks, building mental toughness alongside physical armor. Fatigue Management: Learn to perform confidently under cumulative exhaustion, skyrocketing your real-world stamina and energy levels. 5 The Weekly Training Structure Five hyper-focused vectors organized strategically across seven days to completely optimize physical output and structural system repair. Day 1 60–75 Min Day 1: Raw Strength & Power Foundation Vibe: Very High Intensity, Heavy Lifting, Finisher Burnout Day 2 60–75 Min Day 2: Structural Strength & Control Vibe: Controlled Tension, Compound Lifts, Focused Squeezing Day 3 15–30 Min Day 3: Active Recovery / Mobility Vibe: Low Intensity, Fluid Movement Day 4 60–75 Min Day 4: Volume & Density / Hypertrophy Vibe: High Work Capacity, Supersetting, "Pump" Focus Day 5 75–90+ Min Day 5: Power Endurance / Metabolic Conditioning Vibe: Extremely High Intensity, Minimal Rest, Failure Simulation 6 The Art of Tempo Control Tempo is where most people fail. We teach you to control the eccentric (lowering) phase—this slow, controlled negative motion builds unparalleled tendon resilience. Eccentric Mastery: The 3-Second Count When you lower the weight (eccentric), resist gravity slowly over a 3-count. This deliberate slowdown forces maximum time under tension, creating profound tissue adaptation that prevents injury. START SLOW CONTROL (3 SEC) TENSION 7 The Mental Game This program requires dedication to the process. You must respect the cues, listen to your body, and show up for every single day. The 6-Week Mandate We demand a commitment hierarchy: Form »» Weight: Flawless mechanics are non-negotiable. Mobility »» Muscle Mass: A massive muscle that can't move properly is useless. Conditioning = Longevity: True fitness is surviving the long haul. THE FINAL GOAL PHYSICAL DOMINANCE Physical Dominance isn't just about moving numbers on a barbell — it is the ruthless composition of functional athleticism, biological resilience, and absolute mental authority over fatigue. When you cross the threshold of week 6, your body will no longer just look built; it will function as an optimized, multi-system tactical machine primed for any challenge. Claim Your COPY Get instant access to the complete 6-Week HEAVY progressive overload workout program. Get Started Now Risk-Free • 100% SATISFACTION Guarantee